/* 登录注册弹窗 */

.popup-bg {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
}

.popup-bg .popup {
    width: 490px;
    height: 600px;
    background: #ffffff;
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding: 10px 20px;
}

.popup .popup-close {
    width: 100%;
    height: 26px;
    line-height: 26px;
    text-align: right;
}

.popup .popup-close span {
    font-weight: bold;
    cursor: pointer;
}

.popup .popup-con .popup-con-item {
    display: none;
}

.popup .popup-con .popup-title {
    font-size: 22px;
    line-height: 50px;
    height: 50px;
    text-align: center;
    border-bottom: 1px dashed #cccccc;
}

.popup .popup-con .form-con {
    width: 400px;
    margin: 20px auto;
}

.popup-con .form-con .form-item {
    padding: 20px 0;
}

.popup-con .register-con-item .form-con .form-item {
    padding: 12px 0;
}

.popup-con .form-con .form-item .form-item-label {
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    text-align: justify;
    float: left;
}

.popup-con .form-con .form-item input {
    display: block;
    width: calc(100% - 120px);
    height: 40px;
    float: right;
    border: 1px solid #cccccc;
    padding: 0 10px;
}

.popup-con .form-con .form-item .form-item-input {
    display: block;
    width: calc(100% - 120px);
    height: 40px;
    float: right;
}

.popup-con .form-con .form-item-input input {
    width: 100%;
    float: none;
    border: 1px solid #cccccc;
}

.popup-con .form-con .form-item-input span {
    color: #666666;
}

.popup-con .form-btn {
    width: 100%;
    height: 40px;
}

.popup-con .form-btn button {
    display: block;
    width: 400px;
    height: 100%;
    background: #036fb8;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    color: #ffffff;
    margin: 0 auto;
}

.popup-con .form-tip {
    width: 400px;
    margin: 0 auto;
    padding: 10px 0;
}

.popup-con .form-tip .next-btn {
    display: flex;
    align-items: center;
}

.popup-con .register-con-item .form-tip .next-btn {
    justify-content: center;
}

.popup-con .form-tip .auto-login {
    width: 14px;
    height: 14px;
    border: 1px solid #cccccc;
    margin-right: 5px;
    border-radius: 3px;
}

.popup-con .form-tip .auto-login:checked {
    background: url(../img/icon_checked.png) no-repeat center/cover;
}

.popup-con .login-methods {
    text-align: center;
    color: #666666;
    padding-top: 36px;
}

.popup-con .login-methods .method-list {
    margin: 10px auto;
}

.popup-con .login-methods .method-list a {
    margin: 0 10px;
}

.popup-con .popup-bottom {
    text-align: right;
    margin: 50px auto 0;
}

.popup-con .popup-bottom.register {
    margin-top: 20px;
}

.popup-con .popup-bottom .to-register {
    color: #036fb8;
}

#regist-btn.disabled {
    background: #cccccc;
    color: #ffffff;
}