﻿/*弹窗   start*/
.pop-up{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:rgba(0,0,0,0.5) ;
    z-index: 99;
    display: none;
}
.pop-box{
    width: 85%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: #f8f8f8;
    border-radius: 4px;
    padding:15px 13px;
    text-align: center;
}
.pop-box h5{
    font-size: 17px;
    color: #333;
    line-height: 35px;
}
.pop-box span{
    display:inline-block;
    width: 80px;
    height:80px;
    background: url(../images/dui.png) center no-repeat;
    background-size: 100%;
    padding: 15px 0;
}
.pop-box p{
    font-size: 13px;
    line-height: 16px;
    color: #666;
    text-align: center;
    padding: 0 0 15px;
}
/*.auth-code{
	width: 100%;
	padding:13px 0;
	display: flex;
	display: -webkit-flex;
}
.auth-code input{
	width:70%;
	text-align: left;
	padding-left: 10px;
	font-size: 13px;
	height: 38px;
	line-height: 38px;
	border: 1px solid #e5e5e5;
	border-radius: 3px;
}
.auth-code button{
	font-size: 14px;
    font-size: 13px;
    height: 38px;
    line-height: 38px;
    color: #fff;
    width: 51%;
    background: #f6564d;
    margin-left: 10px;
}*/
.auth-code input{
    border: none;
    border-bottom: 1px solid #d7d7d7;
    background: none;
}
.pop-box a{
    display: inline-block;
    width: 100%;
    background:-webkit-linear-gradient(left,#29a3ff ,#4b7eff) ;
    text-align: center;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    vertical-align: middle;
    font-size: 15px;
    color: #fff;
    margin-bottom: 15px;
}
.red{color: #f6564d;}
.ps-pop{
    display: block;
    font-size: 13px;
    color: #8c8c8c;
    line-height: 40px;
}
.close-btn{
    width: 20px;
    height:20px;
    position: absolute;
    right: 10px;
    top: 10px;
    background: url(../images/close-btn.png) no-repeat;
    background-size: 100% 100%;
}
.pop-box .auth-code input{padding-left: 10px;}
/*弹窗 end*/