.dialog-mask{
	width:100%;
	height:100%;
	display:none;
	position:fixed;
	background:#666;
	opacity:0.65;
	top:0px;
	left:0px;
	z-index:4001;
}
.dialog{
	width:400px;
	height:480px;
	position:fixed;
	background:#fff; 
	top:10%;
	left:10%;
	display:none;
	z-index:4002;
	overflow:hidden;
	border-radius:7px;
	box-shadow:0px 0px 12px #868686;
}
.dialog-title{
	font-size:20px;
	padding:12px 0 8px 0;
	height:24px;
	text-align:center;
}
.dialog-ok,
.dialog-cancel{
	width:128px;
	text-align:center;
	margin:0 5px;
	box-sizing:border-box;
	height:48px;
	font-size:15px;
	line-height:48px;
	position:relative;
	border-radius:32px;
	cursor:pointer;
}
.dialog-ok{
	color:#fff;
	background:#000;
}
.dialog-cancel{
	color:#f71;
}
.dialog-bottom-bar{
	position:absolute;
	bottom:12px;
	left:10%;
	height:50px;
	width:80%;
	box-sizing:border-box;
	display:flex;
    flex-direction:row;
	text-align:center;
}
.dialog-close{
	position:absolute;
	top:0px;
	right:0px;
	height:40px;
	width:40px;
	box-sizing:border-box;
	padding:0px;
	text-align:center;
	color:#868686;
	font-size:32px;
	line-height:36px;
	font-weight:300;
	z-index:1101;
	cursor:pointer;
	background:transparent;
}
.dialog-close:hover{
	color:#333;
}