ul{
	list-style: none;
}
a{
	text-decoration: none;
	color: #333;
}

.main{
	width: 80vw;
	margin: 0 auto;
	padding: 5vw 0;
}
.main .news_title{
	display: block;
	margin: 0 auto;
	margin-bottom: 3vw;
}
.new_container{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.news_item{
	width: 30.33%;
	cursor: pointer;
	margin-bottom: 20px;
	transition: transform 0.3s;
}
.news_item:hover{
	transform: scale(1.06);
}
.news_item .news_pic{
	width: 25vw;
}
.news_h{
	color: red;
	font-size: 1.5vw;
	font-family:"SHSC-L", "宋体" ;
	line-height:2vw;
	padding-bottom: 1vw;
	border-bottom: 1px solid #858585;
	margin: 1vw 0 1vw;
}
.news_p1{
	font-family: "SHSC-R", "宋体";
	font-size: 1.4vw;
	color: #999999;
}
.news_span{
	font-size: 0.8vw;
	border: 1px solid #999999;
	border-radius: 50px;
	padding: 4px 10px;
	float: right;
	margin-bottom: 5px;	
}
.news_p2{
	font-family: "SHSC-R", "宋体";
	font-size: 1.3vw;
	font-weight: bold;
	color: #333333;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	width: 25vw;
}
#news-pagination{
	text-align: center;
}
