/* 内容 */
.show{
	border-color: 1px red solid;
	background-color: #f3f3f3 !important;
	overflow: hidden;
}
.show-cont{
	box-sizing: border-box;
	width: 1200px;
	min-height: 650px;
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 10px;
	background-color: #fff;
	padding: 20px;
	box-shadow: 0px 0px 10px 1px #cccccc;
}
.show-cont>.title{
	text-align: center;
	color: #464646;
	font-size: 30px;
	line-height: 36px;
	font-weight: 300;
}
.show-cont>.tips{
	text-align: center;
	border-bottom: 1px solid #e5e5e5;
	color: #b6b6b6;
	padding-top: 5px;
	padding-bottom: 15px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.show-cont>.tips>span{
	margin: 0 12px;
}

.article{
	padding: 30px 20px;
	font-size: 18px;
	line-height: 1.5em;
	
}
.article>p{
	margin-top: 10px;
	margin-bottom: 10px;
}

.bottom{
	background-color: #f3f3f3;
}

/* 列表标题 */
.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;
}


/* 移动端 */
@media (max-width : 767px) {
	
	/* 内容 */
	.show-cont{
		width: 100%;
		margin-top: 10px;
		min-height: auto;
	}
	.article{
		padding: 10px 10px;
	}
}