
/* listNews */
.news_item{position: relative; width: 32%; margin-right: 2%; padding-bottom: 84px;}
.news_item:nth-child(3n){margin-right: 0;}
.news_item:nth-child(n+4){margin-top: 32px;}
.news_pic_item .pic{padding-bottom: 65%;}
.news_info{margin-top: 20px; text-transform: capitalize;}
.news_info .date{color: var(--commonColor); font-family: 'Montserrat-Light';}
.news_info .title{font-family: 'Montserrat-Bold'; font-size: 24px; margin: 12px 0 8px; line-height: 1.34; overflow: hidden; display: block;}
.news_info .brief{color: #666; line-height: 28px; height: 84px; overflow: hidden; font-family: 'Montserrat-Light'; position: absolute; left: 0; bottom: 0;}
.news_info .brief *{font-family: inherit !important; background: none !important; font-size: inherit !important; line-height: inherit !important;}
.news_item:hover .news_info .title{color: var(--commonColor);}
.news_item:hover .news_info .brief{color: #333;}

@media only screen and (max-width: 1500px) {
	.news_info .title{font-size: 22px;}
}
@media only screen and (max-width: 1300px) {
	.news_info .title{font-size: 20px;}
	.news_item:nth-child(n+4){margin-top: 26px;}
}
@media only screen and (max-width: 980px) {
	.news_item{width: 100%; margin-right: 0; padding-bottom: 0;}
	.news_item:nth-child(n+1){margin-top: 20px;}
	.news_info{margin: 15px 0 0;}
	.news_info .title{font-size: 20px; max-height: unset; display: block; height: auto; margin: 12px 0 8px;}
	.news_info .brief{-webkit-line-clamp: 2; height: auto; position: static;}
}


/* innerNews */
.innerNews_img img{
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.innerNews_img:hover img{
	-webkit-transform: scale(1.06);
	-moz-transform: scale(1.06);
	-o-transform: scale(1.06);
	transform: scale(1.06);
}
.sub_th{margin-top: 20px;}
.innerNews_img{overflow: hidden;}

@media only screen and (max-width: 980px) {
	
}