#News {
	padding: 40px 0 80px;
}


.News-box {
	margin: 5px 0 0;
}
.News-box .item {
	display: flex;
	padding: 42.5px 0;
	justify-content: space-between;
	border-top: 1px solid #e8e8e8;
}
.News-box .item:first-child {
	border: none;
}
.News-box .item .imgBox {
	width: 20%;
	overflow: hidden;
}
.News-box .item .right_box {
	width: calc(75%);
	/* padding: 7px 0 0; */
}
.News-box .item .imgBox img{
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: all 0.4s ease-in 0s;
	-webkit-transition: all 0.4s ease-in 0s;
	-moz-transition: all 0.4s ease-in 0s;
	-o-transition: all 0.4s ease-in 0s;
}
.News-box .item .imgBox img:hover {
	transform: scale(1.1);
}
.News-box .item .right_box .time {
	line-height: 20px;
		font-size: 16px;
		color: #666666;
}
.News-box .item .right_box .title{
	line-height: 33px;
		font-size: 22px;
		color: #000000;
		/* margin: 25px 0 0; */
}
.News-box .item .right_box .msg{
 	line-height: 28px;
 	/* height: 56px; */
 	color: #333333;
 	margin: 20px 0 0;
}
.News-box .item .right_box .more {
	display: inline-block;
	line-height: 23px;
	font-size: 16px;
	color: #e00007;
	text-decoration: underline;
	margin: 20px 0 0;
}
@media (max-width:992px) {
	.News-box .item {
		flex-direction: column
	}
	#News .News-box> .item>div{
		/* margin: auto; */
		width: 100%;
	}
	
	/* .title-list .item{
		width: 100%;
	} */
}