#news {
	width: 100%;
	background: #fff;
}

/* ******* banner ******* */
#news .title-container,
#news .title-container>img {
	width: 100%;
}

/* ******* 新闻列表 ******* */
#news .news-info {
	margin-top: 0.60rem;
	padding: 0 2.30rem;
}

#news .news-info ul li {
	display: flex;
	cursor: pointer;
	margin-top: 0.20rem;
	/* justify-content: space-between; */
	position: relative;
	transition: margin-left 0.5s;
}

#news .news-info ul li:hover {
	margin-left: 0.20rem;
}

#news .news-info ul li:hover .news-title {
	color: #0DA0C6;
}

#news .news-info ul li:hover .news-time {
	background: #0DA0C6;
	border-color: #0DA0C6;
}

#news .news-info ul li:hover .news-time .day,
#news .news-info ul li:hover .news-time .time {
	color: #fff;
}

#news .news-info ul li .news-pic {
	width: 4rem;
	height: 2rem;
	border-radius: 0.04rem;
}

#news .news-info ul li .news-pic img {
	width: 4rem;
	height: 2rem;
}

#news .news-info ul li .news-detail {
	width: 6.20rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 0.80rem;
	border-right: 1px solid #E5E5E5;
	margin-left: 0.50rem;
}

#news .news-info ul li .news-title {
	font-size: 0.28rem;
	margin-bottom: 0.36rem;
}

#news .news-info ul li .news-desc {
	font-size: 0.16rem;
	color: #666666;
	line-height: 0.30rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-align: justify;
}

#news .news-info ul li .news-desc p {
	font-size: 16px
}

#news .news-info ul li .news-time {
	width: 1.24rem;
	height: 1.24rem;
	border: 1px solid #E5E5E5;
	margin: auto 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-left: 0.70rem;
}

#news .news-info ul li .news-time .day {
	font-size: 0.50rem;
	color: #666666;
	line-height: 0.30rem;
}

#news .news-info ul li .news-time .time {
	font-size: 0.20rem;
	color: #999999;
	line-height: 0.30rem;
	margin-top: 0.20rem;
}

/* 分页 */
#news .paging-container {
	margin: 0.80rem auto;
	text-align: center;
	display: flex;
	justify-content: center;
}

#news .paging-container .page {
	width: 0.40rem;
	height: 0.40rem;
	border: 1px solid #0DA0C6;
	border-radius: 50%;
	text-align: center;
	line-height: 0.40rem;
	font-size: 0.20rem;
	color: #0DA0C6;
	margin-right: 0.20rem;
	cursor: pointer;
}

#news .paging-container .page:nth-last-child(1) {
	margin-right: 0;
}

#news .paging-container .page:hover,
#news .paging-container .active {
	background: #0DA0C6;
	border-radius: 50%;
	color: #fff;
}