/*对话框*/
.commonDialogMask {
	width: 100%;
	height: 100%;
	position: fixed;
	left: auto;
	top: 0px;
	background: #000000;
	opacity: 0.4;
	filter: alpha(opacity=40);
	display: none;
}

.commonDialog {
	box-sizing: border-box;
	width: 400px;
	height: auto;
	background: #ffffff;
	border: 0px;
	border-radius: 5px;
	position: fixed;
	left: 50%;
	top: 44%;
	box-sizing: border-box;
	padding: 0px 15px 0px 15px;
	transition: opacity 0.3s linear;
	opacity: 0.1;
	transform: translate(-50%, -50%);
	display: none;
}

.commonDialog * {
	font-family: "Roboto";
}

.commonDialog>.commonDialog_head {
	width: 100%;
	height: 55px;
	line-height: 30px;
	padding-top: 13px;
	padding-bottom: 12px;
	text-align: center;
	border-bottom: 1px #f0f0f0 solid;
	font-size: 1.3rem;
	box-sizing: border-box;
}

.commonDialog>.commonDialog_body {
	box-sizing: border-box;
	padding: 15px 10px 15px 10px;
	font-size: 1.2rem;
	line-height: 30px;
	background: #ffffff;
	word-break: break-all;
	word-wrap: break-word;
	overflow: auto;
}

.commonDialog>.commonDialog_foot {
	box-sizing: border-box;
	width: 100%;
	height: 55px;
	line-height: 30px;
	padding-top: 12px;
	padding-bottom: 13px;
	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.2rem;
	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.2rem;
	border: 0px;
	padding: 0px;
	background: none;
	cursor: pointer;
}