/* ===== 各页面专属样式 ===== */

/* 登录页 */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
}

.login-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.login-card .login-title {
    text-align: center;
    margin-bottom: 32px;
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.login-card .form-group {
    margin-bottom: 20px;
}

.login-card .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 1rem;
}

/* 首页 Banner */
.home-banner {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    margin-bottom: 32px;
}

.home-banner h1 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.home-banner p {
    opacity: 0.85;
    font-size: 0.95rem;
}

/* 板块列表 */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 1.2rem;
}

.view-all {
    font-size: 0.85rem;
    font-weight: 500;
}

/* 报告详情 */
.report-detail {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.report-detail-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.report-detail-header .meta {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.report-detail-body {
    padding: 24px;
}

.report-detail-body iframe {
    width: 100%;
    border: none;
    min-height: 600px;
}

/* 修改密码页 */
.change-password-form {
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}