*{ 
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
a {
	text-decoration: none;
	transition: all 0.2s ease-out 0s;
}
ul {
	list-style: none;
}
body {
	font-family: "Microsoft Yahei";
	color: #333;
}
.margin10 {
	margin-top: 10px;
}
.margin20 {
	margin-top: 20px;
}
.margin30 {
	margin-top: 30px;
}
.margin40 {
	margin-top: 40px;
}
.container {
	width: 1200px;
	margin: 0 auto;
}
.clearfix:before, .clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}
.pull-left{
	float: left;
}
.pull-right{
	float: right;
}

.fgwtop .time {
	height: 30px;
	line-height: 30px;
	color: #8996ad;
	font-size: 15px;
}
.top-right {
	height: 30px;
	line-height: 30px;
	font-size: 15px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.top-right li {
	border: 1px solid #8996ad;
	border-radius: 20px;
	margin-left: 15px;
	padding: 0 15px;
	color: #8996ad;
}
.top-right li a {
	color: #8996ad;
}
.top-right img {
	height: 20px;
	vertical-align: -3px;
	margin-right: 3px;
}
/* 搜索 */
.search-box {
	height: 50px;
	width: 350px;
	border-radius: 30px;
	background-color: #fff;
}
.fgwsearch {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	align-items: center;
}
.search-box #searchword {
	width: 72%;
	height: 100%;
	display: block;
	font-size: 15px;
	padding: 15px;
	border: none;
	background: transparent;
	outline: none;
	color: #7b7b7b;
}
.search-box .search-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 44px;
	width: 95px;
	color: #fff;
	margin-top: 3px;
	border-radius: 30px;
	background: linear-gradient(to top, #4472c4, #2257b7);
}
.search-box .search-btn img {
	margin-right: 3px;
}
/* 热词 */
.rc-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-self: center;
}
.rc-box a {
	color: #999;
	font-size: 14px;
	margin: 0 10px;
}
/* nav */
.nav-box {
	margin-top: 60px;
}
.nav-box ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.nav-box ul li {
	flex: 0.16;
	height: 60px;
	line-height: 60px;
	border-radius: 10px;
	background: linear-gradient(to top, #4472c4, #2257b7);
}

.nav-box ul li a {
	color: #fff;
	display: block;
	font-size: 18px;
	text-align: center;
}
.nav-box ul li img {
	height: 18px;
	margin-right: 5px;
}

.nav-box ul ul {
	display: none;
	flex-direction: column;
	background: linear-gradient(to top, #2257b7, #4472c4);
}
.nav-box ul ul li {
	width: 100%;
	border-radius: 0;
	border-top: 1px solid #fff;
	background: transparent;
}
.nav-box ul li.level2:hover {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.nav-box ul li.level2:hover ul {
	display: flex;
}