body {
    padding: 0;
    margin: 0;
}

.content {
    height: 100vh;
    width: 100vw;
    min-width: 1200px;
    background: url(../img/bg.png) no-repeat;
    background-size: 100% 100%;
}

.logo {
    position: absolute;
    left: 7%;
    top: 3%;
    width: 196px;
}

.icon2 {
    width: 450px;
    position: absolute;
    left: 7%;
    top: 10%;
}

.icon1 {
    width: 760px;
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.from {
    position: absolute;
    right: 5%;
    background: #fff;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #EDEDED;
    box-shadow: 0px 18px 27px 0px #E9E9E9;
    border-radius: 20px;
    width: 600px;
    padding: 48px 100px;
    box-sizing: border-box;
}

.el-input__inner {
    border: none;
    border-bottom: 1px solid #DCDFE6;
    border-radius: 0;
    font-size: 16px;
}

.el-checkbox__input.is-checked+.el-checkbox__label {

    color: #ADADAD;
}

.el-checkbox__label {

    color: #ADADAD;
}

.el-checkbox__input.is-checked .el-checkbox__inner,
.el-checkbox__input.is-indeterminate .el-checkbox__inner {
    background-color: #ff7f1f;
    border-color: #ff7f1f;
}

.el-checkbox__input.is-focus .el-checkbox__inner {
    border-color: #ff7f1f;
}

.el-checkbox__inner:hover {
    border-color: #ff7f1f;
}

.forgetCon {
    display: flex;
    justify-content: space-between;
}

.forget {
    color: #ff7f1f;
    font-size: 14px;
}

.loginBtn {
    width: 100%;
    height: 50px;
    margin: 36px 0 80px;
    background: #ff7f1f;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-color: #ff7f1f;
    border-radius: 8px;
}

.loginBtn:hover,
.loginBtn:focus {
    background: #f67615;
    color: #fff;
}

.el-form-item__label::before {
    display: none;
}

.el-form-item__label {
    font-weight: 600;
    color: #1D1D1D;
    font-size: 18px;
}

.title {
    font-size: 32px;
    color: #1D1D1D;
    font-weight: 600;
}

.el-input.is-active .el-input__inner,
.el-input__inner:focus {
    border-color: #ff7f1f;
}

.el-message {
    left: unset;
    right: 5%;
    transform: translateX(-100px);
}

@media screen and (max-width: 1200px) {
    /*屏幕宽度小于等于768px的样式*/
    .logo {
        left: 1%;
    }
    .icon2 {
        left: 1%;
    }
    .icon1 {
        left: 1%;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {
    /*屏幕宽度大于等于1200px的样式*/
    .from {
        right: 7%;
    }
    .logo {
        left: 3%;
    }
    .icon2 {
        left: 3%;
    }
    .icon1 {
        left: 3%;
    }
}
@media screen and (min-width: 1600px) {
    /*屏幕宽度大于等于1600px的样式*/
    .from {
        right: 12%;
    }
}