﻿/* 本地图片展示区域样式 */
.local-images {
    margin-top: 30px;
    padding: 0 30px;
}

/* 本地图片样式  */
.local-image {
    width: 100%;
    height: 80%; 
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease-in-out;
    animation: imagePulse 6s infinite ease-in-out;
}

/* 图片缩放动画  */
@keyframes imagePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    }
}


/* 图片响应式调整  */
@media (max-width: 768px) {
    .local-image {
        height: 180px; 
    }
}

/* 图片响应式调整 - 适配小屏幕 */
@media (max-width: 480px) {
    .local-image {
        height: 160px; 
    }
}

/* 全局样式重置 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-weight: 300;
}

/* 页面基础样式 */
body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    background-color: #f5f7fa;
    position: relative;
    min-height: 100vh;
}

/* 背景容器样式 - 渐变背景 */
.wrapper {
    background: #165DFF;
    background: linear-gradient(135deg, #165DFF 0%, #0A2463 100%);
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* 登录容器样式 - 主体卡片 */
.login-container {
    display: flex;
    width: 1000px;
    height: 600px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* 左侧面板样式 - 解决方案介绍区 */
.left-panel {
    width: 55%;
    background-color: #165DFF;
    color: white;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

/* 右侧面板样式 - 登录表单区 */
.right-panel {
    width: 45%;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 解决方案信息容器 */
.solution-info {
    position: relative;
    z-index: 2;
}

/* 标题与二维码对齐容器 */
.header-alignment {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.system-logo {
    margin-bottom: 0;
}

/* 二维码圆形容器 */
.logo-circle {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

/* 二维码图标样式 */
.logo-qrcode {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* 解决方案标题样式 */
.solution-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* 解决方案副标题样式 */
.solution-tagline {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 0;
}

/* 功能标签容器 */
.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    margin-top: 30px;
}

/* 功能标签样式 */
.feature-item {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

/* 功能标签图标 */
.feature-icon {
    margin-right: 5px;
    font-weight: bold;
}

/* 登录表单容器 */
.login-form-container {
    width: 100%;
    max-width: 300px;
    position: relative;
    z-index: 20;
}

/* 登录LOGO容器 */
.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

/* 登录LOGO圆形背景 */
.login-logo-circle {
    width: 100px;
    height: 100px;
    background-color: #165DFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 登录LOGO图片样式 */
.login-logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* 登录标题样式 */
.login-title {
    color: #333;
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
    text-align: center;
}

/* 系统副标题样式 */
.system-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 40px;
    opacity: 0.8;
    text-align: center;
}

/* 表单基础样式 */
form {
    width: 100%;
}

    /* 表单行容器 */
    form .row {
        position: relative;
        margin-bottom: 20px;
    }

    /* 表单输入框与按钮宽度统一 */
    form input, form button {
        width: 100%;
        box-sizing: border-box;
    }

    /* 输入框样式 */
    form input {
        font-size: 14px;
        outline: 0;
        border: 1px solid #ddd;
        background-color: #f9f9f9;
        border-radius: 6px;
        padding: 14px 15px 14px 40px;
        color: #333;
        transition: all 0.25s;
        position: relative;
        z-index: 20;
    }

        /* 输入框聚焦状态 */
        form input:focus {
            border-color: #165DFF;
            background-color: white;
            box-shadow: 0 0 0 3px rgba(22, 93, 255, 0.1);
        }

    /* 输入框图标样式 */
    form i {
        color: #999;
        top: 14px;
        left: 15px;
        z-index: 21;
        position: absolute;
        display: block;
        width: 16px;
        height: 16px;
        text-align: center;
        font-size: 16px !important;
        pointer-events: none;
    }

    /* 按钮样式 */
    form button {
        outline: 0;
        background-color: #165DFF;
        border: 0;
        padding: 14px 15px;
        color: #fff;
        border-radius: 6px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        transition: all 0.2s;
        position: relative;
        z-index: 20;
    }

        /* 按钮悬停状态 */
        form button:hover {
            background-color: #0E4CD1;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(22, 93, 255, 0.2);
        }

        /* 按钮点击状态 */
        form button:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(22, 93, 255, 0.2);
        }

/* 验证码行样式 */
.code-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

    /* 验证码输入框样式 */
    .code-row input {
        width: 65%;
        padding: 14px 15px;
        margin-bottom: 0;
    }

/* 验证码图片容器 */
.code-image-container {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    /* 验证码切换链接 */
    .code-image-container a {
        text-decoration: none;
        font-size: 12px;
        margin-bottom: 5px;
        color: #165DFF;
    }

/* 忘记密码链接容器 */
.forgot-password {
    text-align: right;
    margin-top: 15px;
    position: relative;
    z-index: 20;
}

    /* 忘记密码链接样式 */
    .forgot-password a {
        color: #165DFF;
        font-size: 14px;
        text-decoration: none;
        transition: color 0.2s;
        pointer-events: auto;
    }

        /* 忘记密码链接悬停状态 */
        .forgot-password a:hover {
            color: #0E4CD1;
            text-decoration: underline;
        }

/* 背景气泡容器 */
.bg-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

    /* 背景气泡样式 */
    .bg-bubbles li {
        position: absolute;
        list-style: none;
        display: block;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        bottom: -160px;
        animation: square 25s infinite;
        transition-timing-function: linear;
        border-radius: 50%;
    }

        /* 气泡位置与动画设置 */
        .bg-bubbles li:nth-child(1) {
            left: 10%;
        }

        .bg-bubbles li:nth-child(2) {
            left: 20%;
            width: 80px;
            height: 80px;
            animation-delay: 2s;
            animation-duration: 17s;
        }

        .bg-bubbles li:nth-child(3) {
            left: 25%;
            animation-delay: 4s;
        }

        .bg-bubbles li:nth-child(4) {
            left: 40%;
            width: 60px;
            height: 60px;
            animation-duration: 22s;
            background-color: rgba(255, 255, 255, 0.15);
        }

        .bg-bubbles li:nth-child(5) {
            left: 70%;
        }

        .bg-bubbles li:nth-child(6) {
            left: 80%;
            width: 120px;
            height: 120px;
            animation-delay: 3s;
            background-color: rgba(255, 255, 255, 0.12);
        }

        .bg-bubbles li:nth-child(7) {
            left: 32%;
            width: 160px;
            height: 160px;
            animation-delay: 7s;
        }

        .bg-bubbles li:nth-child(8) {
            left: 55%;
            width: 20px;
            height: 20px;
            animation-delay: 15s;
            animation-duration: 40s;
        }

        .bg-bubbles li:nth-child(9) {
            left: 25%;
            width: 10px;
            height: 10px;
            animation-delay: 2s;
            animation-duration: 40s;
            background-color: rgba(255, 255, 255, 0.2);
        }

        .bg-bubbles li:nth-child(10) {
            left: 90%;
            width: 160px;
            height: 160px;
            animation-delay: 11s;
        }

/* 气泡动画 */
@keyframes square {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
    }
}

/* 缩放动画 */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* 旋转动画 */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 浮动动画 */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* 二维码旋转动画应用 */
.animate-logo {
    animation: rotate 6s infinite linear;
}

/* LOGO浮动动画应用 */
.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* 禁用状态按钮 */
button[disabled] {
    background-color: #99b8ff;
    cursor: not-allowed;
}

/* 版权信息样式 */
.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    position: absolute;
    bottom: 20px;
    width: 100%;
    font-family: Microsoft Yahei;
    line-height: 25px;
    font-size: 14px;
    z-index: 10;
    pointer-events: none;
}

    /* 版权链接可点击 */
    .copyright a {
        pointer-events: auto;
    }

/* 登录提示容器 */
.login_tips {
    margin-top: 20px;
    height: 30px;
    position: relative;
    z-index: 20;
}

/* 提示消息样式 */
.tips_msg {
    height: 30px;
    line-height: 30px;
    color: #ff4d4f;
    margin: 0 auto;
    border-radius: 5px;
    width: 100%;
    font-size: 14px;
    text-align: center;
}

    /* 提示消息图标 */
    .tips_msg i {
        position: relative;
        top: 0.5px;
        font-size: 15px;
        padding-right: 5px;
    }

/* IE版本提示样式 */
#ieVersionCheck {
    position: relative;
    z-index: 30;
    background-color: #ffeeee;
    border: 1px solid #ffcccc;
    padding: 10px;
    text-align: center;
    color: #cc0000;
}

/* 中等屏幕响应式调整 */
@media (max-width: 1024px) {
    .login-container {
        width: 90%;
        max-width: 900px;
    }
}

/* 小屏幕响应式调整 */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        height: auto;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .left-panel, .right-panel {
        width: 100%;
    }

    .left-panel {
        padding: 30px;
        text-align: center;
    }

    .header-alignment {
        flex-direction: column;
        text-align: center;
    }

    .solution-features {
        justify-content: center;
    }

    .code-row {
        flex-direction: column;
    }

        .code-row input, .code-image-container {
            width: 100%;
        }
}
