@charset "UTF-8";

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form,
	fieldset, input, textarea, p, blockquote, th, td, button {
	padding: 0;
	margin: 0;
}

ul, li, dl, dt, ol, u, dd {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.m-table {
	width: 100%;
	height: 50px;
	line-height: 50px;
	background: #000;
}

.m-table ul li {
	width: 33%;
	float: left;
	color: #fff;
	font-size: 14px;
	text-align: center;
}

.m-table.in-table {
	/*padding-left: 20%;*/
	padding-top: 9px;
}

.in-table ul li {
	height: 40px;
	background: #fff;
	color: #333;
	line-height: 40px;
	cursor: pointer;
	border-right: 1px solid #9e720d;
}

.in-table ul li:first-child {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.in-table ul li:last-child {
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
	border-right: none;
}

.in-table ul li.action {
	background: #9e720d;
	color: #fff;
}

.hs-center {
	padding: 0.5rem 0.6rem 0;
}

.hs-box {
	width: 100%;
	margin-bottom: 0.4rem;
}

.hs-box h3, .hs-box2 h3 {
	color: #d90000;
	height: 45px;
	line-height: 45px;
	font-size: 20px;
	text-align: center;
}

.hs-box .title {
	height: 45px;
	line-height: 45px;
	width: 100%;
	background: #9e720d;
}

.hs-box .title span, .hs-box ul li span {
	display: block;
	width: 33.3%;
	float: left;
	color: #fff;
	text-align: center;
	font-size: 18px;
}

.hs-box ul li {
	width: 100%;
	height: 45px;
	line-height: 45px;
	background: #fff;
}

.hs-box ul li:nth-child(2n) {
	background: #ddd;
}

.hs-box ul li span {
	color: #333;
	font-size: 16px;
}

.hs-box>p {
	padding: 0 15px;
	margin: 10px 0;
	color: #666;
	font-size: 14px;
}

#login {
	float: right;
	width: 80%;
	position: absolute; /*让节点脱离文档流,我的理解就是,从页面上浮出来,不再按照文档其它内容布局*/
	top: 13%; /*节点脱离了文档流,如果设置位置需要用top和left,right,bottom定位*/
	left: 10%;
	z-index: 2; /*个人理解为层级关系,由于这个节点要在顶部显示,所以这个值比其余节点的都大*/
	background: white;
}

#over {
	width: 100%;
	height: 100%;
	opacity: 0.5; /*设置背景色透明度,1为完全不透明,IE需要使用filter:alpha(opacity=80);*/
	filter: alpha(opacity = 80);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: silver;
}

#close {
	font-size: 18px;
	float: right;
	position: absolute;
	right: 10px;
	top: 5px;
	color: #fff;
}