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

/* 登录页 */
.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;
}

.home-sections-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.home-upload-button {
    min-height: 30px;
    padding: 4px 10px;
    border: 1px solid var(--gray-200);
    border-radius: 3px;
    background: var(--gray-100);
    color: var(--gray-700);
    font: inherit;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.home-upload-button:hover {
    border-color: var(--gray-300);
    background: var(--gray-200);
    color: var(--gray-900);
}

.home-report-list {
    min-height: 147px;
}

.home-report-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 147px;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.section-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
}

.view-all {
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 400;
}

.view-all:hover {
    color: var(--gray-700);
}

/* 报告详情 */
.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;
}

/* 个人设置页 */
.settings-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    max-width: 720px;
}

.settings-panel {
    background: #fff;
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.settings-panel h2 {
    font-size: 1.15rem;
    margin-bottom: 20px;
}
