.container{
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.main{
    visibility: visible;
    position: relative;
    height: auto;
    flex: 1 0 auto;
    background: url("../images/auth/login.jpg") center/cover no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
}

.bottom-nav{
    display: none;
}

.bottom-tab{
    display: none;
}

.title-row{
    margin-bottom: 20px;
    color: #fff;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.title-row .left{
    font-size: 24px;
}

.reg-steps{
    background-color: #fff;
    display: flex;
}

.reg-step{
    flex: 0 0 20%;
    line-height: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: center;
    padding-right: 40px;
    opacity: 0;
    visibility: hidden;
}

.reg-step.active,
.reg-step.completed{
    opacity: 1;
    visibility: visible;
}

.reg-step.completed::before{
    content: "";
    display: inline-block;
    margin-top: -2px;
    vertical-align: middle;
    margin-right: 8px;
    width: 16px;
    height: 16px;
    background: url("../images/icons/tick_circle.png") center/contain no-repeat;
}

.reg-pane{
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: 310px;
    display: flex;
    flex-direction: column;
}

.reg-pane>*{
    height: 100%;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.reg-pane>*>.row:last-of-type{
    margin-top: auto;
    margin-bottom: 0;
}

.reg-steps{
    background: center/cover no-repeat;
}

.reg-steps[data-index="0"]{
    background-image: url("../images/auth/reg_step0.jpg");
}

.reg-steps[data-index="1"]{
    background-image: url("../images/auth/reg_step1.jpg");
}

.reg-steps[data-index="2"]{
    background-image: url("../images/auth/reg_step2.jpg");
}

.reg-steps[data-index="3"]{
    background-image: url("../images/auth/reg_step3.jpg");
}

.reg-steps[data-index="4"]{
    background-image: url("../images/auth/reg_step4.jpg");
}

.reg-body{
    background: #fff;
}

.reg-ctn{
    width: 1000px;
    margin: 0 auto;
}

.reg-pane .m-form{
    width: 620px;
    margin: auto;
}

.reg-pane .hint{
    color: #999999;
    margin-top: 4px;
}

.reg-pane .input-ctn{
    width: 100%;
    position: relative;
    display: flex;
}

.reg-pane .input-ctn .prefix{
    position: absolute;
    left: 15px;
    z-index: 270;
    line-height: 24px;
    top: 8px;
}

.reg-pane .input-ctn .m-input{
    z-index: 240;
    flex: 1 0 auto;
}

.reg-pane .phone .m-input{
    padding-left: 48px;
}

.reg-pane .field.verify-code{
    display: flex;
}

.reg-pane .field .m-input{
    width: 100%;
}

.reg-pane .field.verify-code .m-button{
    padding-left: 0;
    padding-right: 0;
    width: 120px;
    border: 1px solid #e6e6e6;
    margin: 0;
}

.reg-pane.find-password label,
.reg-pane.find-password .label{
    width: 150px;
}

.reg-pane.find-password .field{
    width: calc(100% - 150px);
}

.reg-pane .field.verify-code .m-input{
    width: calc(100% - 120px);
}

.reg-pane .field.term-agree a{
    color: #e60012;
}

.reg-pane .field .btn-next{
    width: 240px;
}
.reg-pane .m-form .captcha-ctn img{
    margin-left: 0;
    object-fit: contain;
    width: 100px;
    background-color: #fff;
    border-left: none;
}
.title-row .right{
    color: #999999;
}

.title-row .right a{
    color: #ffffff;
}

.title-row .right a:hover{
    color: #ee4e5b;
}

#reg-qrcode{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 220px;
    overflow: hidden;
}

.qr-bottom-row{
    text-align: right;
    width: 140px;
    margin: 0 auto;
    align-items: flex-end;
}

.reg-pane .skip{
    cursor: pointer;
    line-height: 30px;
    color: #333333;
    border-bottom: 1px solid #333333;
}

.step3 .skip{
    margin-left: 10px;
    display: inline-block;
}

.reg-pane .skip:hover{
    color: #ee4e5b;
    border-bottom-color: #ee4e5b;
}

@media (max-width: 1280px) {
    .reg-step{
        line-height: 21px;
        padding-top: 6px;
        padding-bottom: 6px;
        font-size: 13px;
    }
    .reg-ctn{
        width: 100%;
    }
    .bottom-nav-mobile{
        display: none;
    }
}

@media (max-width: 960px) {
    .container{
        min-height: 1000px;
    }
}

@media (max-width: 750px) {
    .reg-pane .m-form .row{
        display: block;
        margin-bottom: 10px;
    }
    .reg-pane .m-form label, .m-form .label{
        width: 100%;
        display: block;
        text-align: left;
    }
    .reg-pane .m-form .field{
        width: 100%;
    }

    .reg-pane .m-form .field input{
        display: block;
        flex: 1 1 auto;
        width: 100%;
    }

    .reg-pane .m-form .field input[type="checkbox"]{
        display: none;
    }
    .reg-pane .m-form{
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .reg-steps{
        background-size: 100% 100%;
    }
    .reg-step{
        padding-right: 12px;
    }
    .reg-step.completed::before{
        display: block;
        margin: 0 auto 5px;
    }

    .reg-pane .field .btn-next{
        width: 100%;
    }

    .row .term-agree label{
        padding-right: 0;
    }

}