*{
	margin: 0;
	padding: 0;
}
.container {
	width: 1200px;
	margin: auto;
}
.container h2 {
	margin: 10px 0;
	font-size: 24px;
	color: #333;
}
.container .box{
	margin-bottom: 10px;
	color: #666;
	display: flex;
	align-items: center;
}
.container .box input{
	height: 28px;
	padding: 0 5px;
	outline: none;
	border: 1px solid #aaa;
	border-radius: 6px;
}
.container .box span{
	margin-right: 5px;
}
table {
	border-collapse: collapse;
	margin: 0 auto;
	margin-bottom: 20px;
	width: 100%;
}

table td,
table th {
	border: 1px solid #cad9ea;
	color: #666;
	min-height: 35px;
	padding:10px;
}

table thead th {
	background-color: #CCE8EB;
	width: 100px;
}

table tr:nth-child(odd) {
	background: #fff;
}

table tr:nth-child(even) {
	background: #F5FAFA;
}

table caption {
	height: 40px;
	line-height: 40px;
	font-weight: bold;
	color: #111;
	background: #cad9ea;
}
table a{
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	width: 16px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	border-radius: 50%;
	background: #f1f2f3;
	color: #E6A23C;
	font-size: 12px;
	margin-left: 4px;
}
table a:hover{
	background: #E6A23C;
	color: #fff;
}
ul {
	background: #f1f2f3;
	margin-bottom: 20px;
	padding: 15px;
}

ul li {
	list-style: none;
	margin-bottom: 5px;
	color: #333;
	font-size: 14px;
	line-height: 20px;
}
#times tbody tr+tr{
	font-size: 14px;
}
.foot{
	margin-bottom: 20px;
	color: #999;
	font-size: 14px;
}

#flex_mode{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 9999;
}
#flex_mode .cont{
	position: absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	-webkit-transform:translate(-50%, -50%);
	background: #fff;
	border-radius: 6px;
	width: 980px;
	max-height: 90%;
	overflow: auto;
	opacity: 1;
	z-index: 99;
}
#flex_mode .showCont{
	animation: opacityShow 1s 1;
	-webkit-animation: opacityShow 1s 1;  
}
#flex_mode .fli{
	display: none;
	padding: 15px;
}
#flex_mode .fli h3{
	color: #333;
	margin-bottom: 15px;
}
#flex_mode .fli p{
	color: #666;
	font-size: 14px;
	line-height: 24px;
	margin-top: 10px;
}
#flex_mode .fli h4{
	margin-top: 10px;
	color: #333;
}
#flex_mode .fli table{
	margin-top: 10px;
}
@keyframes opacityShow {
	0%{opacity: 0;}
	100%{opacity: 1;}
}
@-webkit-keyframes opacityShow {
	0%{opacity: 0;}
	100%{opacity: 1;}
}