
/* listNews */
.news_item{position: relative; width: 32%; margin-right: 2%;}
.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);}
.news_info .title{font-family: 'Poppins-Bold'; font-size: 24px; margin: 12px 0 8px; line-height: 1.3; height: 2.6em; overflow: hidden; display: block;}
.news_info .brief{color: #666; line-height: 28px; max-height: 112px; overflow: hidden;/*  font-family: 'Montserrat-Light'; */}
.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;}
	.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{max-height: unset; /* -webkit-line-clamp: 3; */ display: block; height: auto;}
}


/* 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) {
	
}