html,body{ width: 100%; height: 100%; }
body{ font-size: 12px; }
body,div,p,a,ul,li{ margin: 0; padding: 0; }  
h1,h2,h3,h4,h4,h5,h6,h7{ margin: 0; padding: 0; font-size: 12px; }
em{ font-style: normal; }
a{ text-decoration: none; color: #000; }
a:hover{ text-decoration: none; }
img{ border: 0; vertical-align: middle; }
li{ list-style: none; }
label{ display: inline-block; }
table{ border-spacing: 0; border-collapse: collapse; }
form{ display: inline-block; width: 100%; }
input{ vertical-align: middle; outline: 0; }
textarea{ resize: none; line-height: 20px; overflow-y: auto;  }
button{ border: none; background: none; text-align: center; }

.detail{
	font-size: 12px;
	color: rgb(17, 136, 184);
	text-decoration: underline;
}

.container{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.container .main{
	width: 1920px;
	height: 100%;
	flex: 1;
}

.main .top{
	width: 960px;
	height: 55px;
	margin: 0 auto;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.main .top h1{
	font-size: 20px;
}

.main .top .nav{
	display: flex;
	height: 100%;
}

.main .top .nav a{
	display: block;
	width: 54px;
	height: 100%;
	display: flex;
	padding: 0 20px;
	justify-content: center;
	align-items: center;
}

.main .banner{
	width: 100%;
	height: 400px;
	background: yellowgreen;
}

.main .banner img{
	width: 100%;
}

.main .mainContainer{
	width: 960px;
	height: calc( 100% - 400px);
	min-height: 200px;
	background: transparent;
	margin: 0 auto;
	position: relative;
	top: -80px;
}

.main .mainContainer .nav{
	width: 100%;
	height: 44px;
	display: flex;
	margin: 0 auto;
}

.main .mainContainer .nav a{
	display: inline-block;
	width: 160px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	background: rgba(51, 51, 51, 0.5);
	flex: 1;
	justify-content: center;
	align-items: center;
	color: #fff;
}

.main .mainContainer .content{
	width: 960px;
	height: 80%;
	padding-bottom: 44px;
	overflow: hidden;
	background: #fff;
}

.main .mainContainer .content>div{
	width: 960px;
	height: 100%;
	display: none;
	/* overflow: scroll; */
	overflow: auto;
	padding-top: 50px;
	padding-bottom: 20px;
}

.main .mainContainer .content .block{
	display: block;
}

.main .mainContainer .content .title{
	width: 400px;
	height: auto;
	border-top: 1px solid #ccc;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: visible;
}

.main .mainContainer .content .title h2{
	font-size: 18px;
	padding: 0 10px;
	position: absolute;
	box-sizing: border-box;
	top: -10px;
	background: #fff;
}

.main .mainContainer .content .title p{
	font-size: 14px;
	margin-top: 15px;
}

.main .mainContainer .content .mainContent{
	width: 100%;
	box-sizing: border-box;
	margin-top: 29px;
	padding: 0 40px 10px 40px;
	display: flex;
}

.main .mainContainer .content .mainContent .img{
	width: 240px;
	height: 160px;
	background: #333;
	margin-right: 30px;
}

.main .mainContainer .content .mainContent .txt{
	flex: 1;
}

.main .mainContainer .content .mainContent p{
	color: #666;
	text-align: justify;
	font-size: 14px;
	line-height: 20px;
}

.main .mainContainer .content .mainContent h3{
	font-size: 16px;
	font-weight: bolder;
	margin-bottom: 8px;
}

.main .mainContainer .content .mainContent p.source{
	color: #d1d3d4;
	font-size: 12px;
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
}

.main .mainContainer .content .mainContent p.source span{
	display: block;
}

.main .mainContainer .content .table{
	width: 100%;
	height: 100%;
	padding: 0 40px;
	margin-top: 29px;
	box-sizing: border-box;
}

.main .mainContainer .content .table table{
	width: 100%;
	border-top: 1px solid #E2E3E4;
}

.main .mainContainer .content .table td{
	min-width: 116px;
	border: 1px solid #E2E3E4;
	border-top: 0;
	color: #666;
	text-align: center;
	font-size: 14px;
	padding: 10px 0;
}

tr:first-child{
	font-weight: bolder;
	background: #FCF4ED;
}

.container .footer{
	width: 100%;
	height: 58px;
	position: fixed;
	bottom: 0;
	background: #565E6F;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
}

.active{
	background: #DE742D !important;
	color: #fff;
}