.dialog-wrap{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.8);
	z-index:1003;
	font-size:1rem;
}
.dialog-wrap .dialog{
	margin:5% auto;
	background: #fff;
	text-align:center;
	padding:10px;
	box-shadow:0 0 3px #000;
	border:1px solid #e56f06;
	border-top:15px solid #e56f06;
	border-radius:3px;
	max-width:600px;
}
.dialog-wrap .dialog .desc{
	color:#333;
	word-wrap: break-word;
	margin-bottom:10px;
}
.dialog-wrap .dialog button{
	border:0;
	padding:5px;
	background: rgb(140, 178, 200);
	text-align:center;
	min-width:50px;
	margin:3px;
	cursor:pointer;
	color:#fff;
}
.dialog-wrap .dialog button.split{
	width:40%;
}
.dialog-wrap .dialog button:hover{
	background: rgb(120, 158, 180);
	transition:all .5s;
}