/* 列表标题 */
.list-title {
	list-style: none;
	background-color: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 20px;
	margin: 0;
}

.list-title>li {
	box-sizing: border-box;
}

.list-title>li>.active {
	position: relative;
}

.list-title>li>.active::after {
	position: absolute;
	content: '';
	display: block;
	width: 60%;
	height: 2px;
	margin: 0 auto;
	background-color: #006765;
	bottom: 2px;
	left: 20%;
}

.list-title>li>a {
	display: inline-block;
	padding: 20px 15px 15px 15px;
	font-size: 30px;
	font-family: 'Microsoft YaHei';
	font-weight: 200;
	color: #353535;
	text-decoration: none;
}

.list-title>li>a:hover {
	text-decoration: none;
}

/* 列表内容 */
.list-news {
	margin: 0;
	max-width: 1920px;
	min-width: 1200px;
	background-color: #fff;
	overflow: auto;
}

.list-news-cont {
	width: 1200px;
	margin: 0 auto;
	height: auto;
}

.list-news-cont>ul {
	padding: 0;
	margin: 0;
	list-style: none;
	background-color: #fff;
}

/* 带标题图的样式 */
.list-news-item {
	border: 1px #e7e7e7 solid;
	border-radius: 5px;
	background-color: #fafafa;
	margin: 20px 0px;
}

.list-news-item:hover {
	background-color: #eeeff3;
}

.list-news-item>a {
	text-decoration: none;
	box-sizing: border-box;
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	padding: 20px;
}

.list-news-item>a>.cont {
	width: 740px;
	color: #535353;
	/* border: 2px blue solid; */
}

.list-news-item>a>.cont>h2 {
	margin: 15px 0;
	padding: 0;
	font-weight: 500;
	font-size: 20px;

}

.list-news-item>a>.cont>h3 {
	margin: 15px 0;
	padding: 0;
	font-weight: 500;
	font-size: 16px;
	color: #757575;
	line-height: 1.5em;
	/* 超出3行显示省略号 */
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.list-news-item>a>.date {
	margin-top: 20px;
	width: 85px;
	height: 90px;
	border: 1px solid #dbdcdf;
	border-bottom: 2px solid #f29633;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-size: 18px;
	color: #757575;
}

.list-news-item>a>.date>h2 {
	padding: 0;
	margin: 0;
	font-size: 26px;
	font-weight: normal;
}

.list-news-item>a>.date_m {
	display: none;
	font-size: 16px;
	color: #757575;
}

/* 不带标题图样式 */
.list-news-item-noimg {
	border: 1px #e7e7e7 solid;
	border-radius: 5px;
	background-color: #fafafa;
	margin: 20px 0px;
}

.list-news-item-noimg:hover {
	background-color: #eeeff3;
}

.list-news-item-noimg>a {
	text-decoration: none;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	padding-left: 0px;
}


.list-news-item-noimg>a>h2 {
	width: 740px;
	color: #535353;
	margin: 0;
	padding: 0;
	font-weight: 500;
	font-size: 20px;
	height: 40px;
	line-height: 40px;
	padding-left: 10px;
	border-left: 3px #f29633 solid;

}

.list-news-item-noimg>a>.date {
	width: 120px;
	font-size: 18px;
	color: #757575;
	text-align: center;
}

.list-news-item-noimg>a>.date>h2 {
	padding: 0;
	margin: 0;
	font-size: 26px;
	font-weight: normal;
}

.list-news-item-noimg>a>.date_m {
	display: none;
	font-size: 16px;
	color: #757575;
}


/* 移动端 */
@media (max-width : 767px) {

	/* 列表内容 */
	.list-news {
		max-width: 100%;
		min-width: 100%;
	}

	.list-news-cont {
		width: 100%;
	}

	.list-news-item>a {
		flex-wrap: wrap;
	}

	.list-news-item>a>.date {
		display: none;
	}

	.list-news-item>a>.date_m {
		display: block;
	}

	/* 不带标题图 */
	.list-news-item-noimg>a {
		display: block;
	}

	.list-news-item-noimg>a>h2 {
		width: 100%;
		height: auto;
		line-height: 1.5em;
		display: inline;
	}
	
	.list-news-item-noimg>a>.date {
		display: inline;
		padding-left: 10px;
	}
}