/* prompt styles */
.prompt {
	position: absolute;
	z-index: 1001;
	background-color: #ffffff;
}

.prompt.center {
	width: 80%;
	border-radius: 10px;
	position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -webkit-transform:translate(-50%,-50%);
    -o-transform:translate(-50%,-50%);
}
.header-img{
	margin: 25px auto 0 auto;
	width: 80px;
	height: 80px;
}
.header-img img{
	width: 80px;
	height: 80px;
}


.prompt-cover {
	z-index: 1000;
	background: #000;
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 0;
    opacity: 0.5;
    z-index: 3;
	background-color: #000;
	opacity: 0.7;
	filter: alpha(opacity=70);
	background-color: #000;
}
/* 以下 .prompt.center 开头的，全部为 弹出在中间位置的弹出框 的样式 */
.prompt.center .title {
	text-align: center;
	font-size: 20px;
	color: #555555	;
	padding-top: 25px;
	padding-bottom: 0px;
	margin-bottom: -5px;
}

.prompt.center .content {
	line-height: 24px;
	font-size: 18px;
	padding: 30px 8%;
	color: #888888;
}

.prompt.center .bottom {
	padding: 0 2%;
	border-top:	1px solid #e9e9e9;
}

.prompt.center .bottom .button {
	display: inline-block;
	font-size: 16px;
	height: 55px;
	line-height: 55px;
	text-align: center;
	border-radius: 3px;
}

/* 单个按钮 */
.prompt.center .bottom .button.single {
	width: 100%;
	/*background: #d64113;
	color: #fff;*/
}

/* 两个按钮中的OK */
.prompt.center .bottom .button.left {
	width: 50%;
	background: #ffffff;
	color: #a4752d;
	font-weight: 600;
	border-right: 2px solid #e9e9e9;
}

/* 两个按钮中的CANCEL */
.prompt.center .bottom .button.right {
	width: 50%;
	background: #ffffff;
	color: #a4752d;
	font-weight: 600;
	margin-left: -1px;
}

/*右上角关闭*/
.prompt.center .close-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 2px;
    right: 2px;
    background-color: #fff;
    -webkit-border-radius: 14px;
    border-radius: 14px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.prompt.center .close-icon .left {
    position: absolute;
    height: 2px;
    left: 4px;
    right: 4px;
    top: 15px;
    background-color: #adadad;
}

.prompt.center .close-icon .right {
    position: absolute;
    width: 2px;
    left: 15px;
    top: 4px;
    bottom:4px;
    background-color: #adadad;
}

/*iphone6 plus*/
@media only screen and (max-width:320px){
	.prompt.center .title {
	    text-align: center;
	    font-size: 18px;
	    color: #555555;
	    padding-top: 20px;
	    padding-bottom: 0px;
	    margin-bottom: -5px;
	}
	.prompt.center .content{
	    line-height: 20px;
	    font-size: 16px;
	    padding: 25px 6% 20px 6%;
	    color: #888888;
	}
	.prompt.center .bottom .button {
		display: inline-block;
		font-size: 14px;
		height: 45px;
		line-height: 45px;
		text-align: center;
		border-radius: 3px;
	}
	.prompt.center .close-icon {
	    position: absolute;
	    width: 28px;
	    height: 28px;
	    top: 4px;
	    right: 4px;
	    background-color: #fff;
	    -webkit-border-radius: 14px;
	    border-radius: 14px;
	    -webkit-transform: rotate(45deg);
	    transform: rotate(45deg);
	}

	.prompt.center .close-icon .left {
	    position: absolute;
	    height: 2px;
	    left: 4px;
	    right: 4px;
	    top: 13px;
	    background-color: #adadad;
	}

	.prompt.center .close-icon .right {
	    position: absolute;
	    width: 2px;
	    left: 13px;
	    top: 4px;
	    bottom:4px;
	    background-color: #adadad;
	}
}