﻿/* 织梦58（dede58.com）做最好的织梦整站模板下载网站 */
.dialog, .dialog__overlay {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.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;
}
.dialog__overlay {
	position: absolute;
	z-index: 1;
	background: rgba(55, 58, 71, 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: 5rem;
	padding: 0.2rem;
	border-radius: 0.2rem;
	margin: 0 auto;
	background: #FFF;
	text-align: center;
	position: relative;
	z-index: 5;
	float: left;
	opacity: 0;
}
.dialog--open .dialog__content {
	pointer-events: auto;
}
/* Content */
.dialog h2 {
	width: 5rem;
	text-align: center;
	color: #05b564;
	margin: 0 auto;
	font-weight: normal;
	font-size: 0.3rem;
	float: left;
	margin-bottom: 0.1rem;
}
.dialog h3 {
	width: 5rem;
	text-align: center;
	color: #444;
	margin: 0 auto;
	font-weight: normal;
	font-size: 0.24rem;
	float: left;
	margin-bottom: 0.1rem;
}
.dialog h3 b {
	color: #05b564;
	font-weight: normal;
	font-size: 0.24rem;
}
