.news{
	padding: 70px 0 110px;
}
.newsList li{
	margin-bottom: 50px;
}
.newsList li>a{
	display: flex;
}
.newsList li .imgBox{
	width: 350px;
	padding-right: 50px;
	flex: 0 0 auto;
}
.newsList .imgBox .img{
	width: 100%;
}
.newsList li .info{
	flex: 1;
	width: 0;
	border-bottom: 1px solid #eee;
	padding: 30px 150px 30px 0;
	position: relative;
}
.newsList .info .title{
	font-size: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-bottom: 20px;
}
.newsList .info .desc{
	color:#808080;
	line-height: 22px;
	word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.newsList .info .time2{
	display: none;
}
.newsList .info .time{
	width:80px;
	height: 80px;
	background: #f9f9f9;
	position: absolute;
	right: 0;
	top: 30px;
	color: #999;
	padding-top: 12px;
	text-align: center;
	transition: right 0.2s ease-in;
}
.newsList .info .time .day{
	font-size: 30px;
	margin-bottom: 5px;
}
.newsList li>a:hover{
	box-shadow: 0 5px 10px 1px rgba(0,56,132,0.08);
}
.newsList li>a:hover .title{
	color: #00d3dd;
}
.newsList li>a:hover .info .time{
	background: #00d3dd;
	color: #fff;
	right: 30px;
}

@media screen and (max-width:800px) {
	.news{
		padding: 30px 0 50px;
	}
	.newsList li{
		margin-bottom: 20px;
	}
	.newsList li>a{
		display: block;
	}
	.newsList li .imgBox{
		width: 100%;
		padding: 0;
	}
	.newsList li .info{
		width: 100%;
		padding: 20px 0;
	}
	.newsList .info .time{
		display: none;
	}
	.newsList .info .time2{
		display: block;
		color: #808080;
		margin-bottom: 15px;
	}
	.newsList .info .title{
		margin-bottom: 10px;
		font-size: 16px;
	}
}
