:root {
    --red: #C8171A;
    --red-light: #E53235;
    --green: #6DB82A;
    --green-dark: #4E8A1A;
    --black: #111111;
    --dark: #1A1A1A;
    --mid: #2E2E2E;
    --gray: #888888;
}

/* 复用部分全局样式，这里只提供页面特有样式，实际可合并 */
.page-hero {
    position: relative;
    height: 320px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: 30px;
}

    .page-hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 120px;
        height: 4px;
        background: var(--green);
        z-index: 3;
    }

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}

.hero-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.3) 60%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 48px 44px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.eyebrow-line {
    width: 32px;
    height: 2px;
    background: var(--green);
}

.eyebrow-label {
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--green);
}

.hero-date {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 0.95;
    text-transform: uppercase;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray);
    padding: 18px 48px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.detail-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 0;
    max-width: 1300px;
    margin: 0 auto;
}

.article-wrap {
    padding: 56px 56px 80px 48px;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.article-tag {
    font-family: 'Barlow', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
}

.article-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.article-img {
    width: 100%;
    display: block;
    margin-bottom: 32px;
    max-height: 480px;
    object-fit: cover;
}

.article-body {
    font-size: 15px;
    color: rgba(255,255,255,0.78);
    line-height: 2;
    margin-bottom: 40px;
}

.article-pager {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
    gap: 12px;
}

.pager-btn, .pager-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.2s;
    cursor: pointer;
    background: none;
}

    .pager-btn.disabled {
        opacity: 0.3;
        pointer-events: none;
    }

    .pager-btn:hover, .pager-back:hover {
        color: #fff;
        border-color: var(--green);
    }

.sidebar {
    padding: 48px 32px;
}

.sidebar-section {
    margin-bottom: 40px;
}

.sidebar-section-title {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .sidebar-section-title::before {
        content: '';
        display: inline-block;
        width: 16px;
        height: 2px;
        background: var(--green);
    }

.news-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.news-list-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--dark);
    cursor: pointer;
    transition: background 0.2s;
    border-left: 3px solid transparent;
    align-items: center;
}

    .news-list-item:hover {
        background: var(--mid);
    }

    .news-list-item.active {
        border-left-color: var(--green);
        background: rgba(109,184,42,0.07);
    }

.news-list-thumb {
    width: 56px;
    height: 44px;
    object-fit: cover;
    flex-shrink: 0;
    filter: brightness(0.8);
}

.news-list-date {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.news-list-excerpt {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.contact-card {
    background: var(--dark);
    padding: 24px;
    border-top: 3px solid var(--green);
}

    .contact-card h4 {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 14px;
    }

    .contact-card p {
        font-size: 13px;
        color: rgba(255,255,255,0.55);
        line-height: 1.9;
        margin-bottom: 4px;
    }

    .contact-card a {
        color: var(--green);
        text-decoration: none;
    }

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green);
    color: #fff;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 16px;
    transition: background 0.2s;
}

    .contact-btn:hover {
        background: var(--green-dark);
    }

@media (max-width: 1024px) {
    .detail-body {
        grid-template-columns: 1fr;
    }

    .article-wrap {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        padding: 40px 36px 48px;
    }

    .sidebar {
        padding: 36px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 24px 28px;
    }

    .breadcrumb {
        padding: 14px 24px;
    }

    .article-wrap {
        padding: 32px 24px 48px;
    }

    .sidebar {
        padding: 32px 24px;
    }

    .article-img {
        max-height: 300px;
    }
}
