.login-container{
    height: 100%;
    min-height: 600px;
    background: #E0E9F9;
}
.login-content{
    height: 100%;
    background: url('../image/login-bg.png') no-repeat left bottom;
    background-size: contain;
}
.login-header{
    height: 70px;
    padding: 20px 60px 0;
    box-sizing: border-box;
}
/* 左右布局，居中对齐 */
.flex-between{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.login-logo{
    height: 45px;
}
/* 图片自适应 */
.img-responsive{
    display: inline-block;
    height: 100%;
}
.login-select{
    border: none;
    outline: none;
    background: transparent;
}
.login-select>option{
    color: #000;
    padding: 5px 10px;
}
.icon-language{
    background: url('../image/language.svg') no-repeat center;
    vertical-align: sub;
}
/* 主体内容 */
.login-body{
    height: calc(100% - 120px);
    padding: 30px 100px 50px;
    box-sizing: border-box;
}
/* 主体内容布局 */
.login-block{
    height: 100%;
    display: flex;
    /* padding-top: 80px; */
    justify-content: center;
    box-sizing: border-box;
}
.login-block>div{
    width: 50%;
}
/* 标语 */
.slogan-phone{
    display: none;
}
.slogan-cn{
    font-size: 48px;
    color: #0091FF;
    line-height: 70px;
    letter-spacing: 6px;
}
.slogan-en{
    font-size: 24px;
    color: #0091FF;
    line-height: 30px;
    font-weight: 100;
}
.slogan-info{
    position: relative;
    display: inline-block;
    padding: 5px 7px;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 400;
    color: #0091FF;
    border: 1px solid #0091FF;
    border-right: none;
    border-radius: 4px 0 0 4px;
}
.slogan-info::after{
    position: absolute;
    left: 96%;
    top: 50%;
    content: '';
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-top: -14px;
    border: 1px solid #0091FF;
    border-left: none;
    border-bottom: none;
    border-radius: 0 4px 0 0;
    transform: rotate(45deg);
}
/* 登录框 */
.login-box{
    width: 380px;
    min-height: 320px;
    margin: 0 auto;
    padding: 40px 40px 50px;
    color: rgba(0,0,0,.65);
    background: #fff;
    box-shadow: 0 0 17px 8px rgba(0,0,0,.03);
    border-radius: 8px;
    box-sizing: border-box;
}
.login-title{
    font-size: 16px;
    color: rgba(0,0,0,.65);
    margin-bottom: 10px;
}
/* 账户或密码错误 */
.login-error-container{
    min-height: 28px;
    margin-top: 10px;
    margin-bottom: 5px;
}
.login-error{
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid #ffccc7;
    border-radius: 1px;
    background: #fff1f0;
}
.login-error.hidden{
    display: none;
}
.icon{
    display: inline-block;
    width: 14px;
    height: 14px;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
}
.icon-error{
    margin-right: 8px;
    border-radius: 50%;
    color: rgba(255,255,255,.65);
    background: #e86452;
}
.error-msg{
    flex: 1;
    font-size: 12px;
}
.icon-close{
    font-size: 18px;
    color: rgba(0,0,0,.45);
    cursor: pointer;
}
.icon-close:hover{
    color: rgba(0,0,0,.85);
}
.flex-center{
    display: flex;
    align-items: center;
}
.icon-user{
    background: url('../image/mty-user-icon02.png') no-repeat center;
    background-size: contain;
}
.icon-pwd{
    background: url('../image/mty-password-icon.png') no-repeat center;
    background-size: contain;
}
.icon-phone{
    height: 22px;
    background: url('../image/mty-user-mobile2.png') no-repeat center;
    background-size: cover;
}
.icon-graph-code{
    background: url('../image/mty-user-mcode.png') no-repeat center;
    background-size: cover;
}
.icon-sms-code{
    background: url('../image/mty-user-mcode.png') no-repeat center;
    background-size: cover;
}
.form-label{
    margin-bottom: 5px;
    color: rgba(0,0,0,.45);
}
.form-label .icon{
    margin-right: 8px;
}
.login-input{
    width: 100%;
    padding: 7px 0;
    border: none;
    outline: none;
    border-bottom: 1px solid rgba(0,0,0,.06);
    box-sizing: border-box;
}
.login-input:hover,.login-input:focus{
    border-bottom-color: #0091ff;
}
.login-input-error{
    border-bottom-color: #e86452 !important;
}
.login-input::-webkit-input-placeholder
{
    color: rgba(0,0,0,.25);
}
.login-input::-moz-placeholder{
    color: rgba(0,0,0,.25);
}
.login-input:-ms-input-placeholder{
    color: rgba(0,0,0,.25);
}
.login-input-info{
    min-height: 18px;
}
.login-input-error-msg{
    font-size: 12px;
    color: #e86452;
}
.login-input-error-msg.hidden{
    display: none;
}
/* 其他登录方式 */
.save-checkbox{
    color: rgba(0,0,0,.45);
}
.login-a{
    color: #0091ff;
    text-decoration: none;
}
.login-button{
    font-size: 14px;
    padding: 4px 15px;
    line-height: 1.5;
    color: rgba(0,0,0,.85);
    text-align: center;
    background: #fff;
    border: 1px solid rgba(0,0,0,.45);
    border-radius: 2px;
    cursor: pointer;
}
.login-button:hover{
    color: #0091ff;
    border-color: #0091ff;
}
.login-button-primary{
    color: #fff;
    background: #0091ff;
    border-color: #0091ff;
}
.login-button-primary:hover{
    color: #fff;
    background: #0091ff;
}
.login-button-small{
    height: 30px;
    font-size: 12px;
}
.login-button-large{
    height: 40px;
    font-size: 16px;
}
.login-button-block{
    width: 100%;
}
.login-footer{
    height: 50px;
    line-height: 50px;
    color: rgba(0,0,0,0.65);
}
/* 页签tabs */
.login-tabs{
    display: flex;
}
.login-tabs>div{
    margin: 0 25px;
    padding: 10px 0;
    text-align: center;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}
.login-tabs>div:first-child{
    margin-left: 0;
}
.login-tabs>div.active,.login-tabs>div:hover{
    color: rgba(0,0,0,.85);
    border-bottom-color: #0091FF;
}
/* 圆形带底色图标 */
.circle-icon{
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: rgba(0,0,0,0.25);
    border-radius: 50%;
}
.circle-icon:hover{
    background-color: #0091ff;
}
.icon-wechart{
    background-image: url('../image/wechart.svg');
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
.icon-c{
    background-image: url('../image/c.svg');
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
.icon-weibo{
    background-image: url('../image/weibo.svg');
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
/* 登录方式 */
.login-tool-phone{
    display: none;
}
.login-tool{
    margin-top: 20px;
}
.login-type>div{
    margin-right: 16px;
    color: rgba(0,0,0,.45);
}
.login-type>div:last-child{
    margin-right: 0;
}
.login-type-phone-text{
    display: none;
}
/* 手机端 */
@media screen and (max-width:1024px) {
    .login-container{
        background: #fff;
    }
    .login-content{
        background: none;
    }
    .login-header{
        /* padding: 20px 10px 0; */
        display: none;
    }
    .login-body{
        padding: 0;
    }
    .login-block>div:first-child{
        display: none;
    }
    .login-block>div:last-child{
        width: 100%;
    }
    .login-box{
        width: 100%;
        box-shadow: none;
    }
    .slogan-phone{
        display: block;
    }
    .slogan-phone-welcome{
        margin: 5px 0;
        font-size: 26px;
        line-height: 38px;
        color: rgba(0,0,0,.85);
    }
    .slogan-phone-title{
        font-size: 18px;
        line-height: 24px;
        color: rgba(0,0,0,.65);
    }
    .login-tabs{
        display: none;
    }
    .login-tool-phone{
        display: flex;
    }
    .login-tool-phone>div{
        position: relative;
        flex: 1;
        padding: 0 14px;
        text-align: center;
    }
    .login-tool-phone>div::after{
        content: '';
        position: absolute;
        top: 50%;
        left: 100%;
        height: 6px;
        margin-top: -3px;
        border-right: 1px solid rgba(0,0,0,.25);
    }
    .login-tool-phone>div:last-child::after{
        display: none;
    }
    .login-a-phone{
        color: rgba(0,0,0,.45);
        text-decoration: none;
    }
    .save-pwd{
        display: none;
    }
    .login-type-phone-text{
        display: flex;
        margin-top: 20px;
    }
    .login-type-phone-text::before,.login-type-phone-text::after{
        position: relative;
        top: 50%;
        width: 50%;
        border-top: 1px solid transparent;
        border-top-color: rgba(0,0,0,.06);
        border-bottom: 0;
        transform: translateY(50%);
        content: "";
    }
    .login-type-phone-text span{
        color: rgba(0,0,0,.35);
        padding: 0 10px;
        white-space: nowrap;
    }
    .new-account{
        display: none;
    }
    .login-type-text{
        display: none;
    }
    .login-type-phone{
        justify-content: center;
    }
    .circle-icon{
        width: 40px;
        height: 40px;
    }
    .icon-wechart{
        background-size: 60%;
    }
    .icon-c{
        background-size: 50%;
    }
    .icon-weibo{
        background-size: 60%;
    }
    .login-footer{
        display: none;
    }
    .icon-wechart,.icon-c{
        display: none;
    }
    .login-body{
        height: calc(100% - 120px)
    }
    .other-login{
        margin-top: 60px;
    }
}
@media screen and (min-width:1600px) {
    .login-body{
        padding-top: 150px;
    }
    .login-box{
        padding-bottom: 60px;
    }
    .text-container-en{
        margin-top: 0px !important;
    }
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
input{ filter: none !important;}

.text-container-en{
    margin-top: 60px;
}

.slogan-info-en {
    position: relative;
    display: inline-block;
    padding: 5px 7px;
    margin-top: 10px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #0091FF;
    border: 1px solid #0091FF;
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.slogan-info-en::after {
    position: absolute;
    right: -14px;
    top: calc(50% + 0.5px);
    content: '';
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-top: -14px;
    border: 1px solid #0091FF;
    border-left: none;
    border-bottom: none;
    border-radius: 0 4px 0 0;
    transform: rotate(45deg);
}