/* 登录、注册、绑定手机、找回密码 通用样式*/
.account-header {
    margin-bottom: 50px;
}
.account-header .wrapper .logo {
    width: 265px;
    height: 62px;
    line-height: 300px;
    background-image: url(../../images/pc/logo_20200703.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 40px;
}
.account-header .wrapper .logo a {
    display: block;
    width: 265px;
    height: 62px;
    color: #fff;
}
.account-section {padding-bottom: 100px;}
.account{
    width: 503px;
    margin: 0 auto;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
}
.account .account-wrapper {
    padding: 40px 52px 20px;
}
.account .account-title {
    text-align: center;
    font-size: 33px;
    font-weight: 600;
    color: #303A56;
    margin-bottom: 15px;
}
.account .input-item {
    position: relative;
    margin-bottom: 40px;
    border-bottom: 1px solid #E0E0E0;
}
.account .input-item input {
    border: none;
    display: block;
    height: 40px;
    line-height: normal;
    padding-left: 25px;
    padding-right: 22px;
    width: 100%;
    font-size: 14px;
}
.account .input-icon{
    width: 18px;
    height: 18px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 7px;
    vertical-align: middle;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.account .input-clear-icon{
    width: 13px;
    height: 13px;
    background-image: url(../../images/pc/input-clear.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.account .mobile .input-icon{
    background-image: url(../../images/pc/login-mobile.png);
}
.account .password .input-icon,
.account .confirm-password .input-icon {
    background-image: url(../../images/pc/login-password.png);
}
.account .vcode .input-icon{
    background-image: url(../../images/pc/login-vcode.png);
}
.account .error-tip {
    position: absolute;
    color: #FF0A0A;
    left: 0;
    bottom: -40px;
    opacity: 0;
    transform: translate3d(0,-20px,0);
    transition: all 0.3s;
}
.account .error-tip.show {
    opacity: 1;
    transform: translate3d(0,-10px,0);
}
.account .vcode .get-code {
    width: 130px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border: 1px solid #956330;
    border-radius: 20px;
    color: #956330;
    cursor: pointer;
}
.account .vcode .get-code.disabled {
    cursor: not-allowed;
    background-image: none;
    background-color: #fff;
    border-color: #ebeef5;
    color: #c0c4cc;
}
.account .account-btn {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    background-color: #AA7550;
    border-radius: 30px;
    margin-bottom: 20px;
    cursor: pointer;
}
.account .account-btn:hover {background-color: #C5743C;}
.account .protocol {
    color: #ADAEAF;
    text-align: center;
}
.account .to-regist,
.account .to-login {
    height: 62px;
    line-height: 62px;
    text-align: center;
    background-color: #F6F6F6;
    color: #7C7C7C;
    margin-top: 19px;
}
.account .protocol a,
.account .to-regist a,
.account .to-login a {
    color: #55B6DA;
}