
.news-wrap {
	width: 95%;
	margin: 10px auto;
}
.news-info {
	width: 100%;
	height: 250px;
	background-color: #0E9F9E;
	color: #FFFFFF;
}
.news-info-header {
	width: 90%;
	margin: 0 auto;
	font-size: 12px;
	line-height: 30px;
	padding-top: 5px;
}
.news-info-header a {
	color: #FFFFFF;
	font-size: 12px;
	padding-right: 5px;
	padding-left: 5px;
	display: inline-block;
}
.news-info-content {
	width: 100%;
	text-align: center;
}
.news-info-title {
	margin-top: 30px;
	font-size: 22px;
}
.news-info-desc {
	margin-top: 10px;
	font-size: 14px;
}
.news-menu {
	width: 600px;
	margin: 0 auto;
	
}
.news-menu-list {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}
.news-menu-item {
	width: 120px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	background-color: #007E7D;
	border-radius: 5px;
	font-size: 14px;
	position: relative;
	cursor: pointer;
}
.news-menu-item.active::after {
	content: "";
	position: absolute;
	top: 35px;
	left: 50%;
	width: 0;
	height: 0;
	margin-left: -5px;
	border-top: 8px solid;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	border-top-color: #007E7D;
}
.news-content {
	width: 80%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.news-content-list {
	width: 45%;
	position: relative;
	display: flex;
	margin-top: 35px;
	justify-content: space-between;
	align-items: center;
	padding: 0 10px;
}
.news-content-list::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -30px;
	width: 100%;
	height: 30px;
	background-image: url(../images/news-line.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.news-list-date {
	text-align: center;
	color: #BD0100;
	padding-right: 10px;
	border-right: 1px solid #DADADA;
}
.news-list-date .date {
	font-size: 28px;
}
.news-list-date .year {
	font-size: 14px;
}
.news-content-info {
	width: calc(100% - 80px);
}
.news-content-info-title {
	font-size: 18px;
	font-weight: bold;
	line-height: 35px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.news-content-info-desc {
	font-size: 14px;
	line-height: 25px;
	 text-overflow: -o-ellipsis-lastline;
	  overflow: hidden;
	  text-overflow: ellipsis;
	  display: -webkit-box;
	  -webkit-line-clamp: 2;
	  line-clamp: 2;
	  -webkit-box-orient: vertical;
}
.pagination {

	margin: 70px auto;
	text-align: center;
}

