.login{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
}
.login .picture{
    width: 71%;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.login .picture .background{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.login .picture .text{
    margin: 80px 0 0 0;
}
.login .picture .text span{
    font-size: 56px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    display: block;
    margin: 0 0 19px 0;
}
.login .picture .text p{
    font-size: 22px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
}
.login .the_right{
    width: 29%;
    background: #F5F5F5;
    position: relative;
}
.login .the_right .headline{
    width: 100%;
    height: 80px;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
    padding: 0 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.login .the_right .headline .list{
    display: flex;
    align-items: center;
}
.login .the_right .headline .list .iconfont{
    color: rgba(102, 102, 102, 1);
    font-size: 14px;
    margin: 2px 7px 0 0;
}
.login .the_right .headline .list .language,.login .the_right .headline .list .language a{
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: rgba(102, 102, 102, 1);
}

.login .the_right .content{
    margin: 40px auto 0;
    width: 420px;
    background: #fff;
}
.login .the_right .content .title{
    width: 100%;
    height: 68px;
    display: flex;
    border-bottom: 1px solid rgba(230, 230, 230, 1);
}
.login .the_right .content .title a{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: rgba(153, 153, 153, 1);
    position: relative;
    transition: 0.6s;
}
.login .the_right .content .title a:after{
    content: '';
    position: absolute;
}
.login .the_right .content .title a:not(:last-child):after{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 16px;
    background: #E6E6E6;
}
.login .the_right .content .title a:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #004BAA;
    transition: 0.4s;
}
.login .the_right .content .title a.on:before{
    width: 80px;
}
.login .the_right .content .details .matter{
    display: none;
}
.login .the_right .content .details .matter.on{
    display: block;
}
.login .the_right .content .details .matter{
    padding: 55px 45px 59px 45px;
}
.login .the_right .content .details .matter.register{
    padding: 24px 45px 21px 45px;
}
.login .the_right .content .details form .border{
    width: 330px;
    height: 46px;
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    display: flex;
    align-items: center;
    padding: 0 0 0 14px;
    position: relative;
    margin: 0 0 33px 0;
}
.login .the_right .content .details .register form .border{
    margin: 0 0 9px 0;
}

.login .the_right .content .details form .border .iconfont{
    color: rgba(102, 102, 102, 1);
    font-size: 20px;
}

.login .the_right .content .details form .border .line{
    width: 1px;
    height: 16px;
    background: #CCCCCC;
    margin: 0 11px 0 14px;
}
.login .the_right .content .details form .border.pull_down{
    cursor: pointer;
    -webkit-appearance: none;
    position: relative;
}
.login .the_right .content .details form .border.pull_down .hide{
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background: #fff;
    border: 1px solid #E6E6E6;
    z-index: 76;
    display: none;
}
.login .the_right .content .details form .border.pull_down.on .hide{
    display: block;
}
.login .the_right .content .details form .border.pull_down .hide a{
    line-height: 25px;
    color: #666;
    display: block;
    font-size: 14px;
    padding: 0 0 0 15px;
}
.login .the_right .content .details form .border.pull_down input{
    pointer-events: none;
}
.login .the_right .content .details form .border.pull_down .triangle{
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-top: 7px solid #666666;
    border-right: 6px solid transparent;
}
.login .the_right .content .details form .border input{
    width: inherit;
    height: 100%;
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    border: none;
}
.login .the_right .content .details form .border input::placeholder{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #999999;
}
.login .the_right .content .details form .border.gain .gain_code{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #004BAA;
    cursor: pointer;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 0;
}
.login .the_right .content .details form .widget{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 17px 0;
}
.login .the_right .content .details .register form .widget{
    margin: 20px 0 15px 0;
}
.login form .widget .keep{
    display: flex;
    align-items: center;
    cursor: pointer;
}

.login form .widget .keep .tick{
    width: 16px;
    height: 16px;
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 9px 0 0;
    transition: 0.6s;
}
.login form .widget .keep .tick svg,.login form .widget .keep .tick svg path{
    max-width: 90%;
    max-height: 90%;
    fill: #fff;
    transition: 0.6s;
}
.login form .widget .keep.on .tick{
    border: 1px solid transparent;
    background: #004BAA;
}
.login form .widget .keep.on .tick p{
    opacity: 1;
}
.login form .widget .keep p{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #999999;
}
.login form .widget .mandatory{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #999999;
}
.login form .widget .forget{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #004BAA;
}
.login form button{
    width: 330px;
    height: 56px;
    background: #004BAA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
}
.login .content .foo{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 32px;
    font-size: 14px;
    font-family: ITCAvantGardeStd bk;
    font-weight: normal;
    color: #666666;
    line-height: 22px;
    text-align: center;
    width: 420px;
}
@media screen and (max-width: 1600px) {
    .login .picture .text span {
        font-size: 40px;
    }
    .login .picture {
        width: 65%;
    }
    .login .the_right {
        width: 35%;
    }
}
@media screen and (max-width: 1380px) {
    .login .the_right .content .details {
        height: 53vh;
        overflow: hidden;
        overflow-y: scroll;
    }
}
@media screen and (max-width: 1300px) {
    .login .the_right {
        width: 100%;
    }
    .login .picture {
        display: none;
    }
}
@media screen and (max-width: 500px) {
    .login .the_right .content {
        width: 90%;
    }
    .login .the_right .content .details form .border {
        width: 100%;
    }
    .login form button {
        width: 100%;
    }
    .login .the_right .content .details .matter.register,.login .the_right .content .details .matter {
        padding: 24px 25px 21px 25px;
    }
    .login {
        min-height: 100vh;
        height: auto;
    }
    .login .content .foo {
        position: unset;
        bottom: unset;
        left: unset;
        transform: unset;
        width: 90%;
        display: block;
        margin: auto;
        padding-bottom: 20px;
    }
    .login form button {
        height: 40px;
    }
}
