/*弹窗失败提示*/
/*弹窗*/
.prompt {
    border: 6px solid #e2e2e2;
    position: fixed;
    top: 50%;
    left: 50%;
    background: #FFF;
    z-index: 2001;
    width: 516px;
    height: 328px;
    margin-top: -164px;
    margin-left: -258px;
    display: block;
}
.prompt .title {
    padding: 0 20px;
    position: relative;
}
.prompt .title div{
	height: 50px;
	line-height: 50px;
	padding-bottom: 15px;
	margin: 22px 14px 0;
	border-bottom: 1px solid #e2e2e2;
}
.prompt .title img{
 	margin-right: 54px;
    float: left;
    display: inline-block;

}
.prompt .title p {
    font-size: 24px;
    float: left;
    display: inline-block;
}

.prompt .title .pop_close {
    font-size: 20px;
    width: 30px;
    height: 30px;
    text-align: center;
    position: absolute;
    right: 12px;
    top: 0;
    color: #666;
    text-decoration: none;
}
.prompt .title .pop_close:hover{
  	color:#ff9913;
}
.prompt .pop_body {
	padding-top: 26px;
	overflow-y: scroll;
	height:120px;
}
.prompt .pop_body p{
	width:406px;
	font-size: 16px;
	line-height: 30px;
	margin: 0 auto;
	display: inherit;
}
.prompt .pop_button {
    padding: 28px 0;
    text-align: center;
}
.prompt .agree{
    background: #ff9913;
    box-shadow: 0 1px 0 #c9c9c9;
    display: inline-block;
    padding: 0 100px;
    height: 44px;
    line-height: 44px;
    border-radius: 2px;
    color: #fff;
    font-size: 18px;
}
.transparent_background{
    min-height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    display: block;
    filter: alpha(opacity=50);
    background-color: black;
    opacity: 0.5;
    -moz-opacity: 0.5;
}