/* CSS Document */
.header_nav ul li:nth-child(6){
	background-color: red;
}

.news_list{display:flex;flex-wrap: wrap;padding-bottom:30px;}
.news_list .item{width:32%;margin-right:2%;margin-left:0;border: 1px solid #ddd;box-sizing: border-box;margin-bottom: 30px;}
.news_list .item:nth-child(3n){margin-right:0;}
.news_list .item .img{overflow:hidden;height: 240px;}
.news_list .item .img img{width:100%;height:100%;object-fit: cover;transition: all linear 0.4s;}
.news_list .item .info{padding:20px;}
.news_list .item h5{font-size:18px;font-weight: normal;text-align: left;margin-bottom: 10px;display: flex;align-items: flex-end;}
.news_list .item h5 a{color:#37474f;text-align: left;}
.news_list .item h5 a:last-child{font-size:14px;color:#d6251f;white-space: nowrap;margin-left:10px;}
.news_list .item h5 a:first-child{-ms-flex-positive: 1 !important;flex-grow: 1 !important;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.news_list .item p{color:#868686;font-size: 14px;text-align: justify;text-indent: 0;line-height: 2;height:8em;overflow: hidden;}



.news_list .item:hover .img img{transform: scale(1.2);}
.news_list .item a:hover {color:#d6251f;}
.news_list .item a:last-child:hover{color:#f60;}