

.container {
    width: 1200px;
    margin: 0 auto;
}

.container:before, .container:after {
    content: " ";
    display: table;
    clear: both;
}

.wrapper {
    width: 900px;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0 10px 0;
}

.header .logo {
    width: 200px;
    height: 60px;
}

.header .menu-right {
    text-align: right;
}

.passport {
    background-color: #fff;
    border-radius: 13px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 3px 12px rgba(0,36,153,.06);
    overflow: hidden;
}

.passport .ad-container {
    width: 380px;
    background-color:#d5ebfd;
    min-height:450px;
}
.passport .ad-container img {
    width:100%;
    height:100%;
}

.passport .sign-up {
    padding: 30px 0;
    width: 500px;
    position: relative;

}
.sign-up .sign-more{
    position: absolute;
    right:0;
    top:0;
    width:68px;
    height:68px;
    background-color:#eee;
    cursor: pointer;
}
.sign-up .qrcode-img{
    background: url('../img/login-qrcode.png') center center no-repeat;
    background-size:100% 100%;
}
.sign-up .normal-img{
    background: url('../img/login-normal.png') center center no-repeat;
    background-size:100% 100%;
}
.sign-qrcode .qrcode-title{
    font-size:20px;
    text-align: center;
    padding-top:30px;
}
.sign-qrcode .qrcode-bar{
    width:400px;
    margin:20px auto 0 auto;
    text-align: center;
}
.sign-qrcode .qrcode-tips{
    text-align: center;
    font-size:14px;
    padding:10px 0;
    color:#6c6c6c;
}
.sign-up-tab {
    width:80%;
    margin:45px auto 0 auto;
    height: 50px;
}
.sign-up-tab ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sign-up-tab li {
    position: relative;
    font-size: 20px;
    padding: 15px 0;
    text-align: center;
    width: 50%;
    cursor: pointer;
}
.sign-up-tab li.current{
    color:#FF8B00;
}
.sign-up-bar {
    padding-top: 20px;
    width:80%;
    margin:0 auto;
}

.sign-up-item {

}

.sign-up-item .form-item {
    position: relative;
    border: #ddd 1px solid;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 5px 0;
}

.sign-up-item .form-item i {
    text-align: center;
    color: #c9c9c9;
    font-size: 20px;
    position: absolute;
    left: 10px;
}

.sign-up-item .form-item .sign-inp {
    padding: 8px 10px 8px 10px;
    width: calc(100% - 90px);
    font-size: 14px;
}

.sign-up-item .form-item .btn-code {
    position: absolute;
    right: 5px;
    padding: 7px 15px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
}

.btn-login, .btn-regiter {
    width: 100%;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    border-radius: 5px;
    background-color: #FF8B00;
    color: #fff;
    cursor: pointer;
}

.btn-login:active, .btn-regiter:active {
    opacity: 0.8;
}

.btn-login:hover, .btn-regiter:hover {
    opacity: 0.9;
}

.sign-up-item .form-group {

}

.form-link {
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #9c9c9c;
}

.other-group {
    margin-top: 10px;
}

.other-label {
    text-align: center;
    position: relative;
}

.other-label::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: #eee 1px solid;
}

.other-label span {
    color: #9c9c9c;
    font-size: 14px;
    position: relative;
    top: 8px;
    background-color: #fff;
    padding: 2px 5px;
}

.agree-link {
    padding-bottom: 20px;
    font-size: 12px;
}

.agree-link a {
    font-size: 12px;
    color: #3B9DFF;
}

.sns-login {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.sns-login .wechat {
    width: 48px;
    height: 48px;
    background-color: #50B674;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sns-login .wechat i {
    font-size: 24px;
}

/**
找回密码
 */
.findme {
    width: 60%;
    margin: 0 auto;
    border-left: 0;
    padding-bottom: 60px;
}

@media only screen and (max-width: 767px) {
    body {
        padding: 0 15px;
    }

    .wrapper {
        width: 100%;
    }

    .header {
        padding: 20px 0 10px 0;
    }

    .ad-left {
        display: none;
    }

    .passport .sign-up {
        width: calc(100% - 60px);
        padding: 20px 30px;
        border: 0;
    }
    .findme{
        width: calc(100% - 60px);
        padding: 20px 30px;
        border: 0;
    }
}

/* Login page v2: focused single-column workspace */
body{
    min-height:100vh;
    padding:0;
    background:#f5f7f9;
    color:#2a2f38
}
.wrapper{
    width:900px;
    min-height:calc(100vh - 72px);
    margin:0 auto;
    box-sizing:border-box
}
.header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:30px 0 16px
}
.header .logo{
    width:190px;
    height:48px;
    margin:0
}
.header .logo a,.header .logo img{display:block;width:190px;height:48px}
.header .logo img{object-fit:contain;object-position:left center}
.header .menu-right a{
    display:inline-flex;
    align-items:center;
    gap:6px;
    height:36px;
    color:#727b85;
    font-size:13px
}
.header .menu-right a:hover{color:#ff700a}
.passport{
    display:block;
    width:480px;
    margin:26px auto 54px;
    overflow:hidden;
    border:1px solid #e9ecef;
    border-radius:8px;
    background:#fff;
    box-shadow:0 14px 40px rgba(31,45,61,.10)
}
.passport .sign-up{
    position:relative;
    width:100%;
    min-height:390px;
    padding:28px 0 34px;
    box-sizing:border-box
}
.sign-up .sign-more{
    top:0;
    right:0;
    width:56px;
    height:56px;
    background-color:#f6f7f8
}
.sign-up-tab{
    width:400px;
    height:48px;
    margin:20px auto 0
}
.sign-up-tab ul{height:48px;border-bottom:1px solid #edf0f2}
.sign-up-tab li{
    height:48px;
    padding:0;
    color:#4c535b;
    font-size:17px;
    line-height:48px
}
.sign-up-tab li:after{
    content:"";
    position:absolute;
    right:50%;
    bottom:-1px;
    left:50%;
    height:2px;
    background:#ff700a;
    transition:left .2s ease,right .2s ease
}
.sign-up-tab li.current{color:#ff700a;font-weight:600}
.sign-up-tab li.current:after{right:30%;left:30%}
.sign-up-bar{width:400px;margin:0 auto;padding-top:24px}
.sign-up-item .form-item{
    justify-content:flex-start;
    height:46px;
    margin-bottom:16px;
    padding:0;
    box-sizing:border-box;
    border:1px solid #dfe3e7;
    border-radius:6px;
    background:#fff
}
.sign-up-item .form-item:focus-within{
    border-color:#ff700a;
    box-shadow:0 0 0 3px rgba(255,112,10,.09)
}
.sign-up-item .form-item i{left:15px;color:#a7afb7;font-size:18px}
.sign-up-item .form-item .sign-inp{
    width:100%;
    height:44px;
    padding:0 18px 0 46px;
    box-sizing:border-box;
    background:transparent;
    color:#2f353b
}
.sign-up-item .form-item .btn-code{
    right:7px;
    padding:8px 13px;
    border-radius:4px;
    background:#fff3e8;
    color:#e85d00
}
.btn-login,.btn-regiter{
    height:46px;
    border-radius:6px;
    background:#ff700a;
    line-height:46px;
    transition:background .2s ease,box-shadow .2s ease
}
.btn-login:hover,.btn-regiter:hover{
    background:#e85d00;
    box-shadow:0 6px 16px rgba(255,112,10,.22);
    opacity:1
}
.form-link{padding-top:12px;color:#8c949d}
.form-link a{color:#68717b}
.form-link a:hover,.agree-link a{color:#ff700a}
.agree-link{padding:1px 0 18px;color:#8c949d;line-height:22px}
.sign-qrcode .qrcode-title{padding-top:34px;color:#2a2f38;font-weight:600}
.sign-qrcode .qrcode-bar{width:280px;margin-top:22px}
.sign-qrcode .qrcode-bar img{width:240px!important;height:240px!important}
.login-footer{
    min-height:72px;
    border-top:1px solid #e6e9ec;
    background:#fff
}
.login-footer-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:900px;
    min-height:72px;
    margin:0 auto;
    color:#8b949d;
    font-size:12px;
    line-height:20px
}
.login-footer-links{display:flex;gap:20px;margin-left:24px;white-space:nowrap}
.login-footer a{color:#7e8790}
.login-footer a:hover{color:#ff700a}
@media only screen and (max-width:767px){
    body{padding:0 15px}
    .wrapper{width:100%;min-height:calc(100vh - 100px)}
    .header{padding:18px 0 12px}
    .header .logo,.header .logo a,.header .logo img{width:160px;height:42px}
    .passport{width:100%;margin:14px auto 30px}
    .passport .sign-up{width:100%;padding:20px 20px 28px}
    .sign-up-tab,.sign-up-bar{width:100%}
    .login-footer{margin:0 -15px;padding:0 15px}
    .login-footer-inner{display:block;width:100%;padding:16px 0;text-align:center}
    .login-footer-links{justify-content:center;margin:7px 0 0;gap:14px}
}
