html {
    /*background: rgb(255, 255, 255);*/
    background-image: url('/Public/image/logIn.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    color: white;
}

.leftSide-div {
    background: #353e54;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.leftSide-title-div {
    padding: 15px;
    margin-left: 70px;
}

.leftSide-title-div-image {
    width: 40px;
    height: 40px;
}

.leftSide-title-font {
    margin-left: 20px;
    font-size: 30px;
    font-weight: 700;
    color: #023989;
    display: inline-block;
    vertical-align: middle;
}

.leftSide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leftSide-lb-div {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-around;
}


.theRightSide-div{
    /*height: 100vh;*/
    display: flex;
    justify-content: space-around;
    margin-top: 80px;
}

.theRightSide-lgoIn-div{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.login-right-warp {
    /* 去掉原有的边框线条，若需要更细腻阴影可调整参数 */
    border: none;
    /* 更大更柔和的圆角，贴近设计图视觉效果 */
    border-radius: 20px;
    height: 600px;
    position: relative;
    overflow: hidden;
    /* 背景改为纯色白，也可根据实际用渐变等更贴近设计 */
    background-color: #ffffff;
    width: 500px;
    /* 可选：添加 subtle 阴影让浮层感更明显，可自行调整阴影参数 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.30);
}

.login-right-warp-main-title {
    height: 130px;
    line-height: 190px;
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    animation: logoAnimation .3s ease;
    animation-delay: .3s;
}

.login-right-warp-main-form {
    flex: 1;
    padding: 40px 70px 50px;
}

.login-right-lookOut{
    font-size:14px;
    margin-top:30px;
    color: #ACADAC;
    font-weight: bold;
}

.login-right-btn{
    background: #2C58F5;
    font-size: 20px;
    font-weight: bold;
}


.layui-tab-brief>.layui-tab-title .layui-this {
    color: #0f59a4;
}

.layui-tab-brief>.layui-tab-more li.layui-this:after, .layui-tab-brief>.layui-tab-title .layui-this:after {
    border-bottom: 2px solid #0f59a4;
}

.layui-input:hover, .layui-textarea:hover {
    border-color: #0f59a4 !important;
}

.layui-input:focus, .layui-textarea:focus {
    border-color: #0f59a4 !important;
}

.layui-btn-radius {
    border-radius: 5px;
}

/* 新增：针对小于 1098×944 尺寸的自适应调整 */
@media (max-width: 1098px) and (max-height: 944px) {
    /* 整体背景图适配 */
    html {
        background-size: auto 100vh;
        background-position: center;
    }

    /* 左侧标题区域调整 */
    .leftSide-title-div {
        margin-left: 30px; /* 缩小左侧边距 */
        padding: 10px; /* 减小内边距 */
    }

    .leftSide-title-div-image {
        width: 36px; /* 缩小图标 */
        height: 36px;
    }

    .leftSide-title-font {
        font-size: 26px; /* 缩小标题字体 */
        margin-left: 15px;
    }

    /* 右侧登录区域调整 */
    .theRightSide-div {
        margin-top: 1px; /* 减小顶部距离 */
    }

    .login-right-warp {
        width: 420px; /* 缩小登录框宽度 */
        height: 520px; /* 降低登录框高度 */
    }

    .login-right-warp-main-title {
        height: 100px; /* 降低标题区域高度 */
        line-height: 150px; /* 调整行高 */
        font-size: 28px; /* 缩小标题字体 */
    }

    .login-right-warp-main-form {
        padding: 20px 50px 30px; /* 减小内边距 */
    }

    /* 表单项优化 */
    .layui-form-item {
        margin-bottom: 10px; /* 减小表单项间距 */
    }

    .layui-input {
        height: 42px; /* 缩短输入框高度 */
        font-size: 14px; /* 缩小输入框字体 */
    }

    .login-right-btn {
        height: 44px; /* 调整按钮高度 */
        font-size: 18px; /* 缩小按钮字体 */
    }

    .login-right-lookOut {
        font-size: 12px; /* 缩小提示文字 */
        margin-top: 20px; /* 减小顶部距离 */
    }

    /* 底部版权信息调整 */
    .layui-row:last-child {
        margin-top: 100px !important; /* 减小底部距离 */
    }
}