

.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;
    }
}