index.scss 2.06 KB
.login-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;

    .el-form-item {
        border: 1px solid #dddddd;
        background: #ffffff;
        border-radius: 2px;
        color: #454545;
    }

    .el-input {
        height: 40px;
        input {
            background: transparent;
            border: 0px;
            -webkit-appearance: none;
            border-radius: 0px;
            padding: 12px 5px 12px 6px;
            color: #666666;
            height: 40px;
            text-indent: 28px;

            &:-webkit-autofill {
                box-shadow: 0 0 0px 1000px #fff inset !important;
            }
        }
    }

    .svg-container {
        color: #333;
        width: 16px;
        height: 16px;
        position: absolute;
        left:11px;
        line-height: 1;
        font-size: 16px;
        margin-top: 12px;

    }
}

.login-header {
    height: 60px;
    background: #ffffff;
}

.login-wrap {
    width: 1200px;
    //margin: 0 auto;
    //position: relative;
    //height: 100%;
}

.login-content {
    min-height: 440px;
    flex-grow: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(./img/login_bg.jpg);
    display: flex;
    justify-content: center;
    .login-wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
    }
}

.login-logo {
    margin-top: 12px;
    margin-left: 10px;
    height: 36px;
}

.login-form {
    width: 380px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 5px;
    padding: 35px 35px 15px 35px;
    margin-right: 270px;
}

.login-footer {
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 12px;
    color: #333333;
    background: #ffffff;
}
.login-code-item{
    position: relative;
    .el-form-item{
        width: 60%;
    }
}
.login-code-img{
    position: absolute;
    height: 40px;
    width: 110px;
    right: 0;
    top: 0;
    background-color: #e8e8e8;
    cursor: pointer;
}