/* 基础布局 */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background: url('/admin/images/logBak3.jpg') no-repeat center center;
    background-size: cover;
}

/* 主容器 */
.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}

/* logo样式 */
.logo {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 100;
}

.logo img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(76, 175, 80, 0.4));
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 110px;
}

.logo-text {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    text-align: justify;
    text-align-last: justify;
    text-justify: inter-ideograph;
    padding: 0 1px;
}

.logo-text-en {
    color: rgba(255, 255, 255, 0.6);
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    text-align: justify;
    text-align-last: justify;
    text-justify: inter-ideograph;
    padding: 0 1px;
}

/* 登录框主体样式优化 */
.login-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 400px;
    padding: 35px;
    backdrop-filter: blur(10px);
    animation: loginFadeIn 0.8s ease-out;
}

/* 登录标题样式优化 */
.login-title {
    text-align: center;
    color: #333;
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
    animation: titleSlideDown 0.6s ease-out;
    font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

.login-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #409EFF;
    transition: width 0.3s ease;
}

.login-title:hover::after {
    width: 60px;
}

/* 表单项样式优化 - 移除动画 */
.login-form .el-form-item {
    margin-bottom: 25px;
}

/* 输入框统一高度样式 */
.login-form .el-input__wrapper {
    height: 40px;
    line-height: 40px;
    transition: all 0.3s ease;
}

.login-form .el-input__inner {
    height: 40px;
    line-height: 40px;
}

/* 按钮样式优化 */
.login-form .el-button {
    width: 100%;
    height: 40px;
    font-size: 16px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.login-form .el-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 158, 255, 0.3);
}

.login-form .el-button:active {
    transform: translateY(0);
}

/* 验证码容器样式优化 */
.captcha-container {
    display: flex;
    gap: 12px;
    align-items: center; /* 确保验证码图片与输入框垂直居中对齐 */
    justify-content: space-between;
    width: 100%;
}

/* 验证码输入框样式 */
.captcha-container .el-input {
    width: calc(100% - 112px); /* 减去验证码图片宽度和间距 */
}

.captcha-container .el-input__wrapper {
    height: 40px;
    line-height: 40px;
}

.captcha-container .el-input__inner {
    height: 40px;
    line-height: 40px;
}

.captcha-image {
    width: 100px;
    height: 40px; /* 确保验证码图片高度与输入框一致 */
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.3s ease;
    object-fit: cover; /* 确保图片不变形 */
}

.captcha-image:hover {
    transform: scale(1.02);
}

/* 动画关键帧定义 */
@keyframes loginFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 页脚版权信息
.footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 12px;
} */

.footer {
    position: fixed;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    z-index: 100;
}

/* 响应式设计优化 */
@media screen and (max-width: 992px) {
    .login-section {
        width: 360px;
        padding: 30px;
    }
}

@media screen and (max-width: 480px) {
    .login-section {
        width: calc(100% - 30px);
        padding: 25px;
    }

    .login-form .el-form-item {
        margin-bottom: 20px;
    }

    .login-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .footer {
        display: none;
    }
}

/* 通知提醒 */
.new-platform-dialog {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.dialog-content {
    padding:0px 25px;
    line-height: 1.6;
    font-size: 1.2em;
}
.dialog-content p {
    margin-bottom: 15px;
}
.dialog-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    color: #409eff;
}
.dialog-content ul,
.dialog-content ol {
    margin-bottom: 15px;
}
.zy_content li{
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.dialog-footer {
    padding: 10px 20px;
    display: flex;
    justify-content: flex-end;
}
