body{
	background: #F8F8F8;
}

.header_tab{
	padding-top: 525px;
	box-sizing: border-box;
}
.header_tab ul{
	display: flex;
	justify-content: space-between;
	padding: 0 120px;
	height:35px;
}
.header_tab ul li{
	position: relative;
}
.header_tab ul li a{
	font-size: 14px;
	color:#ffffff;
}
.header_tab ul li.active:after{
	content:"";
	position:absolute;
	left:50%;
	transform:translateX(-50%);
	bottom:0;
	width:40px;
	height:8px;
	background:#fff;
	border-radius:4px;
}

.news_card{
	width:1400px;
	margin:auto;
	background:#fff;
	border-radius:8px;
	box-shadow:0 10px 30px rgba(0,0,0,.08);
	position:relative;
	overflow:hidden;
	padding-bottom: 40px;
}

.home_top{
	display: flex;
	justify-content: space-between;
	padding-right:20px;
	align-items: center;
}
.home_top p:nth-of-type(1){
	/* width: 120px; */
	height: 58px;
	padding: 0 20px;
	box-sizing: border-box;
	background: #EBEDF0;
	border-radius: 8px 0px 32px 0px;
	font-weight: bold;
	font-size: 18px;
	color: #333333;
	line-height: 58px;
	text-align: center;
}
.home_top p:nth-of-type(2){
	font-weight: 400;
	font-size: 12px;
	color: #333333;
	cursor: pointer;
}
.home_top img{
	width:32px;
	height:32px;
	cursor: pointer;
}
.news_list{width:1320px;margin: auto;padding-top: 20px;box-sizing: border-box;}

.news_item{
	display:flex;
	gap:26px;
	padding:18px 0;
	border-bottom:1px solid #f2f2f2;
}

.news_item:last-child{border-bottom:none;}

.date_box{
	width:110px;
	/*padding-top:6px;*/
	text-align:center;
	border-right:1px solid #f3f3f3;
	color:#333;
	display: flex;
	align-items: center;
}

.day{font-size:26px;font-weight:800;line-height:1;}

.my{display:flex;flex-direction: column;margin-top:6px;color:#666;font-size:12px;line-height:1.2;}

.my .m{ dmargin-right:6px;color:#666;}

.my .y{color:#999;}

.info{flex:1;min-width:0;}

.title{
	color:#333;
	font-size:15px;
	font-weight:700;
	text-decoration:none;
	display:block;
	margin-top:10px;
}

.title:hover{color:#c32626;}

.desc{
	margin-top:6px;
	color:#999;
	font-size:12px;
	line-height:1.6;
	overflow:hidden;
	text-overflow:ellipsis;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
}

.pager{
	display:flex;
	flex-direction:column;
	align-items:center;
	gap:10px;
	padding:18px 0 0;
}

.pager_info{font-size:12px;color:#999;}

.pager_btns{display:flex;gap:6px;align-items:center;}

.p{
	width:22px;
	height:22px;
	border:1px solid #eee;
	border-radius:3px;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:12px;
	color:#666;
	text-decoration:none;
}

.p.active{background:#c32626;color:#fff;border-color:#c32626;}


