/*对话框*/
.commonDialogMask {
	width: 100%;
	height: 100%;
	position: fixed;
	left: auto;
	top: 0px;
	background: #000000;
	opacity: 0.4;
	filter: alpha(opacity=40);
	display: none;
}

.commonDialog {
	width: 420px;
	height: auto;
	background: #ffffff;
	border: 0px;
	border-radius: 10px;
	position: fixed;
	left: 50%;
	top: 30%;
	margin-left: -210px;
	box-sizing: border-box;
	padding: 0px 15px 0px 15px;
	transition: opacity 0.3s linear;
	opacity: 0.1;
	display: none;
}

.commonDialog>.commonDialog_head {
	width: 100%;
	height: 40px;
	line-height: 40px;
	padding-top: 13px;
	padding-bottom: 12px;
	text-align: center;
	border-bottom: 1px #f0f0f0 solid;
	font-size: 1.25em;
}

.commonDialog>.commonDialog_body {
	box-sizing: border-box;
	padding: 15px 10px 15px 10px;
	font-size: 1.05em;
	line-height: 40px;
	background: #ffffff;
	word-break: break-all;
	word-wrap: break-word;
	overflow: auto;
}

.commonDialog>.commonDialog_foot {
	width: 100%;
	height: 60px;
	line-height: 64px;
	text-align: center;
	border-top: 1px #f0f0f0 solid;
}
.commonDialog>.commonDialog_foot:after {
	display: block;
	content: " ";
	clear: both;
}

.commonDialog .commonDialog__ok {
	float: left;
	width: 100%;
	color: #40b0e0;
	font-size: 1.1em;
	border: 0px;
	padding: 0px;
	background: none;
	cursor: pointer;
}
.commonDialog .commonDialog__ok:not(:last-child) { /*故意让其在IE9以下无效*/
	width: 50%;
}

.commonDialog .commonDialog__cancel {
	width: 50%;
	float: left;
	font-size: 1.1em;
	border: 0px;
	padding: 0px;
	background: none;
	cursor: pointer;
}

/*菜单*/
.menu {
	height: 71px;
	line-height: 71px;
	padding-left: 40px;
	padding-right: 40px;
	background: url("/images/topBg.gif");
}

.menu>.menu_logo {
	width: 300px;
	height: 100%;
	float: left;
	background: url("/images/menuLogo.png") left 18px no-repeat;
}

.menu>.menu_list {
	float: right;
}

.menu>.menu_list>a {
	display: block;
	line-height: 70px;
	float: left;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	margin-left: 20px;
	margin-right: 21px;
}

.menu>.menu_list>a.active {
	color: #000;
}

.menu>.menu_list:after {
	display: block;
	content: "";
	clear: both;
}

.menu:after {
	display: block;
	content: "";
	clear: both;
}
