body {
    background: #f3f3f3;
    min-width: 1024px;
}

.login-box {
    display: inline-block;
    position: absolute;
    top: 43%;
    transform: translate(0, -50%);
    right: 120px;
    padding-left: 30px;
    padding-right: 30px;
    border: 1px solid #e6e6e6;
    border-radius: 2px;
    background: #fff;
    width: 420px;
}

.login-box-header {
    margin-top: 28px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    font-size: 26px;
}

.login-box-footer {
    height: 90px;
    line-height: 90px;
    text-align: center;
    margin-bottom: 20px;
}

.layui-input {
    height: 40px;
    margin-top: 28px;
}

.layui-btn {
    background: #108ee9;
}


.login-box-body div {
    position: relative;
}

#captcha_img {
    box-sizing: border-box;
    border-radius: 2px;
    height: 38px;
    position: absolute;
    top: 1px;
    right: 1px;
}

/* 适配多设备 */
@media screen and (max-width: 768px) {
    body {
        height: 100%;
        width: 100%;
        min-width: 320px;
    }

    .login-box {
        min-width: 320px;
        box-sizing: border-box;
        top: 0px;
        right: 0px;
        width: 100%;
        height: 100%;
        margin: 0px;
        border: 0px;
        transform: translate(0, 0);
    }
}