.login-container {
    position: absolute;
    z-index: 2001;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    background-image: url('../images/bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    /* transform: scaleY(0.01) scaleX(0);
    animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; */
    /* display: none; */
}

@keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

.login-right {
    width: 550px;
    height: 516px;
    background: #FFFFFF;
    box-shadow: 0px 0px 8px 0px rgba(69, 129, 255, 0.3);
    border-radius: 10px;
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    padding: 81px 56px 0;
    box-sizing: border-box;
}

.name {
    height: 53px;
    font-weight: 500;
    font-size: 38px;
    color: #232323;
    line-height: 53px;
    text-align: left;
    font-style: normal;
    margin-bottom: 31px;
}

.login-right .el-form-item--large {
    margin-bottom: 30px;
}

.login-right .el-button {
    width: 100%;
    margin-top: 70px;
    height: 54px;
    font-size: 20px;
}

.login-right .el-input,
.login-right .el-input__inner {
    height: 54px !important;
}


input:-internal-autofill-previewed,
input:-internal-autofill-selected {
    -webkit-text-fill-color: #606266;
    caret-color: #333;
    transition: background-color 1000s ease-out 0.5s;
}

.lock-container {

    input:-internal-autofill-previewed,
    input:-internal-autofill-selected {
        -webkit-text-fill-color: #ffffff;
        caret-color: #ffffff;
        transition: background-color 1000s ease-out 0.5s;
    }
}



.mobile .login-container {
    background-image: url('../images/h5-bg.png');
}

.mobile .login-container .name {
    margin-bottom: 70px;
}

.mobile .login-right {
    background-color: transparent;
    width: 100%;
    height: auto;
    right: auto;
    padding: 0 35px;
    box-shadow: none;
}

.mobile .login-right .el-button {
    border-radius: 50px;
    margin-top: 35px;
}

.mobile .name {
    font-size: 32px;
}
.content.mobile .login-logo{
display:none;
}
.login-logo {
    position: absolute;
    top: 64px;
    left: 138px;
    display: flex;
}

.login-logo img {
    width: 723px;
    /* height: 100px; */
    /* margin-right: 17px; */
}

.login-logo .title {
    height: 90px;
    font-weight: normal;
    font-size: 78px;
    color: #4581FF;
    line-height: 90px;
    text-align: left;
    font-style: normal;
}