.news {
	padding: 52px 0 56px;
}

.news .news-list li {
	margin-top: -1px;
	transition: all .1s linear;
	position: relative;
	background: #fff;
	border: 1px solid #eee;
}

.news .news-list li a {
	display: flex;
	justify-content: space-between;
	padding: 31px 32px;
}

.news-list .pic {
	width: 23%;
	display: block;
	overflow: hidden;
}

.news-list .pic img {
	transition: all .3s linear
}

.news-list .news-body {
	width: 79%;
	padding-left: 2.5%;
	position: relative;
}

.news-list .news-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.news-list .news-title h3 {
	font-size: 22px;
	margin: 0;
	color: #333;
	line-height: 29px;
	font-weight: 400;
}

.news-list .news-title .news-view {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.news-list .news-title .news-view p {
	font-size: 16px;
	line-height: 24px;
	color: #333;
}

.news-list .news-title .news-view span {
	display: block;
	padding-left: 24px;
	color: #ccc;
	background-image: url('../img/icon24.png');
	background-repeat: no-repeat;
	background-position: left center;
}

.news-list .news-article {
	margin-top: 20px;
	font-size: 16px;
	line-height: 28px;
	color: #999;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.news-list .news-icon {
	width: 40px;
	height: 40px;
	background-image: url('../img/icon25.png');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	margin-top: 2%;
	transition: all 0.3s;
}

.news .news-list li:hover {
	box-shadow: 0 0 10px 6px #eeeeee;
	z-index: 99;
}

.news .news-list li:hover .pic img {
	transform: scale(1.1);
	opacity: .8;
}

.news .news-list li:hover .news-icon {
	background-image: url('../img/icon26.png');
}

@media (max-width: 992px){
	.news{
		padding: 5rem 0 3rem;
	}
	
	.news .news-list li{
		margin-bottom: 1rem;
	}
	
	.news .news-list li a{
		padding: 1rem;
	}
	
	.news-list .pic{
		width: 31%;
	}
	
	.news-list .news-body{
		width: 69%;
	}
	
	.news-list .news-title h3{
		font-size: 1.6rem;
		line-height: 1.4;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	
	.news-list .news-article{
		font-size: 1.4rem;
		line-height: 1.4;
		margin-top: 1rem;
	}
	
	.news-list .news-title .news-view,
	.news-list .news-icon{
		display: none;
	}
}