/**
 * 弹出框
 */
* {
	margin: 0;
	padding: 0;
}

.gk-popup-bg {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	background: #000;
	/* older safari/Chrome browsers */  
    -webkit-opacity: 0.15;  
    /* Netscape and Older than Firefox 0.9 */  
    -moz-opacity: 0.15;  
    /* Safari 1.x (pre WebKit!) 老式khtml内核的Safari浏览器*/  
    -khtml-opacity: 0.15;  
    /* IE9 + etc...modern browsers */  
    opacity: .15;  
    /* IE 4-9 */  
    filter:alpha(opacity=15);
}
.gk-popup-outer {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	font-family: 微软雅黑,tahoma,arial,'Hiragino Sans GB',宋体,sans-serif;
}
.gk-popup {
	position: static;
	display: table;
	width: 500px;
	height: 100%;
	margin: 0 auto;
}
.gk-popup-wrapper {
	height: auto;
	display: table-cell;
	vertical-align:middle;
	position: static;
}
.gk-popup-inner {
	position: relative;
	padding: 3px;
}
.gk-popup-boxbg {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1001;
	border-radius: 4px;
	background: #000;
	/* older safari/Chrome browsers */  
    -webkit-opacity: 0.2;  
    /* Netscape and Older than Firefox 0.9 */  
    -moz-opacity: 0.2;  
    /* Safari 1.x (pre WebKit!) 老式khtml内核的Safari浏览器*/  
    -khtml-opacity: 0.2;  
    /* IE9 + etc...modern browsers */  
    opacity: .2;  
    /* IE 4-9 */  
    filter:alpha(opacity=20);
}
.gk-popup-box {
	position: relative;
	z-index: 1002;
	background: #fff;
}
.gk-popup-hd {
	background: #f0f0f0;
	zoom: 1;
}
.gk-popup-hd:after {
	content: "";
	display: table;
	clear: both;
}
.gk-popup-hd span {
	float: left;
	padding: 0 10px;
	font-size: 14px;
	line-height: 32px;
}
.gk-popup-hd i {
	float: right;
	width: 32px;
	height: 32px;
	background: url(../image/dialog.png) 10px 9px no-repeat;
}
.gk-popup-bd {
	zoom: 1;
	padding: 20px 0 38px;
}
.gk-popup-bd:after {
	content: "";
	display: table;
	clear: both;
}
.gk-popup-box-icon {
	float: left;
	width: 50px;
	height: 100px;
	background: url(../image/icon48.png) -149px 0 no-repeat;
	background-size: auto 45px;
	margin: 0 8px 0 54px;
}
.gk-popup-box-main {
	float: left;
	width: 340px;
}
.gk-popup-box-main .gkpopup-tit {
	margin-top: 1px;
	font-size: 16px;
	line-height: 30px;
	color: #555;
}
.gk-popup-box-main .gkpopup-con {
	font-size: 12px;
	line-height: 20px;
	color: #979797;
}
.gkpopup-choice {
	zoom: 1;
	margin-top: 20px;
}
.gkpopup-choice:after {
	content: "";
	display: table;
	clear: both;
}
.gkpopup-choice a {
	float: left;
	width: 110px;
	height: 26px;
	text-align: center;
	font-size: 12px;
	line-height: 26px;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	margin-right: 30px;
}
.gkpopup-choice .gkpopup-choice-y {
	background: #db212b;
}
.gkpopup-choice .gkpopup-choice-n {
	background: #d0d0d0;
}