@charset "utf-8";

.news_box {
	width: 100%;
	height: 100%;
	background: #FAFBFD;
	background-image: url(../image/news_list_banner.png);
	background-size: auto 400px;
	background-repeat: no-repeat;
	background-position: top center;
	min-width: 1200px;
}
.news_box_title{
	font-family: PingFangSC, PingFang SC;
	font-weight: 600;
	font-size: 36px;
	color: #FFFFFF;
	margin-top: 44px;
}
.news_box_dec{
	margin-top: 10px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
}
.newsMainWrap {
	width: 100%;
	margin-top: 40px;
	overflow: hidden;
}

.news_left {
	float: left;
	width: 240px;
	background: linear-gradient(180deg, #FFEFEF 0%, #FFFFFF 100%);
	border-radius: 4px 4px 20px 4px;
	padding: 32px 0 28px 0;
	box-sizing: border-box;
}

.news_left li {
	width: 240px;
	height: 48px;
	border-radius: 4px;
	border-bottom: 1px solid #EAEAEA;
	padding: 12px 20px;
	box-sizing: border-box;
	font-family: PingFangSC, PingFang SC;
	font-weight: 400;
	font-size: 16px;
	color: #2B2E34;
	overflow: hidden;
	margin-top: 8px;
}

.news_left li.active {
	color: #FFFFFF;
	background: #C30D23;
}

.news_left li.active .news_more {
	background: url(../image/icon-more-news-hover.png) no-repeat;
	background-size: 100% 100%;
}

.news_left li .news_title {
	float: left;
}

.news_left li .news_more {
	float: right;
	width: 12px;
	height: 12px;
	background: url(../image/icon-more-news.png) no-repeat;
	background-size: 100% 100%;
	margin-top: 6px;
}

.news_left li:hover {
	color: #FFFFFF;
	background: #C30D23;
}

.news_left li:hover .news_more {
	background: url(../image/icon-more-news-hover.png) no-repeat;
	background-size: 100% 100%;
}

.news_right {
	float: right;
	width: 900px;

}

.news_title_list {
	width: 100%;
	height: 54px;
	background: #FFFFFF;
	border-radius: 4px;
	line-height: 54px;
	padding-left: 30px;
	box-sizing: border-box;
}

.news_list {
	width: 100%;
	margin-top: 2px;
	margin-bottom: 55px;
}

.news_list li {
	width: 100%;
	/* height: 164px; */
	background: #FFFFFF;
	border-radius: 4px 4px 20px 4px;
	padding: 22px 24px 0 30px;
	box-sizing: border-box;
	overflow: hidden;
}

.news_list_li_left {
	float: left;
	width: 746px;
	border-bottom: 1px solid #EAEAEA;
	padding-bottom: 20px;
	box-sizing: border-box;
}

.news_list li .news_img {
	width: 200px;
	height: 120px;
	border-radius: 4px;
	object-fit: cover;
	display: block;
	float: left;
	margin-right: 30px;
}

.news_list li .news_center {
	width: 516px;
	float: right;
}

.news_list li .news_center .news_center_title {
	font-family: PingFangSC, PingFang SC;
	font-weight: 500;
	font-size: 15px;
	color: #2B2E34;
	margin-top: 2px;
}

.news_list li .news_center .news_center_dec {
	margin-top: 14px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 400;
	font-size: 12px;
	color: rgba(43, 46, 52, 0.8);
	overflow: hidden;
	position: relative;
	line-height: 1.7em;
	/* 根据实际行高调整 */
	max-height: 3.4em;
	/* 行高 × 行数（2） */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news_list li .news_center .news_center_inscribe {
	font-family: PingFangSC, PingFang SC;
	font-weight: 400;
	font-size: 12px;
	color: #949598;
	margin-top: 26px;
}
.news_list li .news_date{
	width: 62px;
	height: 58px;
	background: #C30D23;
	border-radius: 8px 8px 8px 16px;
	float: right;
	
}
.news_list li .news_date p:nth-of-type(1){
	font-family: DINCondensed, DINCondensed;
	font-weight: bold;
	font-size: 18px;
	color: #FFFFFF;
	text-align: center;
	margin-top: 5px;
}
.news_list li .news_date p:nth-of-type(2){
	font-family: DINCond, DINCond;
	font-weight: 400;
	font-size: 11px;
	color: #FFFFFF;
	text-align: center;
}
.news_list li:hover{
	background: #F2F3F6;
	box-shadow: 0px 0px 6px 0px rgba(7,11,19,0.2);
}
.news_list li:hover .news_center .news_center_title{
	color: #C30D23;
}