.dialog,
.dialog__overlay {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	font-family: "Microsoft YaHei", "SimSun";
	font-size:1em;
	z-index:999;
}

.dialog {
	position: fixed;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	pointer-events: none;
	z-index:1000;
}

.dialog__overlay {
	position: absolute;
	z-index: 999;
	background: rgba(165, 42, 42, 0.9);
	opacity: 0;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	-webkit-backface-visibility: hidden;
}

.dialog--open .dialog__overlay {
	opacity: 1;
	pointer-events: auto;
}

.dialog__content {
	width: 90%;
    max-width: 720px;
	min-width: 320px;
	background: #fff;
	/*padding: 2em;*/
	text-align: center;
	position:relative;
	z-index: 1000;
	opacity: 0;
	background:#fff;
	/*border: 1px solid #dedede;*/
    -moz-border-radius: 10px;      /* Gecko browsers */
    -webkit-border-radius: 10px;   /* Webkit browsers */
    border-radius:10px;
	margin:20% auto;           
}

.dialog--open .dialog__content {
	pointer-events: auto;
}

/* Content */
.action{
	font-size:1.2em;
	padding:0.6em 2.4em;
	background:#ff4200;
	-moz-border-radius: 20px;      /* Gecko browsers */
    -webkit-border-radius: 20px;   /* Webkit browsers */
    border-radius:20px;            /* W3C syntax */
	color:#FFF;
	display:inline-block;
	margin:0.6em 0.2em;
	border:none;
}
.yellow{
	background:#ff9400;
}
.pop_img{ 
    display:block;
    width:96%;
	border-radius:10px;
	margin:0 auto;
}
.weixin{
	position:absolute;
	top:23%;
	left:7.2%;
	width:40%;
}