﻿:root {
    --proxy-primary: #1a68ff;
    --proxy-primary-dark: #0f3a9d;
    --proxy-dark: #0a1f3f;
    --proxy-muted: #5c6b7e;
    --proxy-soft: #eef3ff;
    --card-radius: 18px;
    --card-shadow: 0 18px 45px -25px rgba(9, 28, 58, 0.6);
}

.news-proxy {
    background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 55%);
    padding: clamp(120px, 16vw, 150px) 0 clamp(78px, 12vw, 120px);
    color: var(--proxy-dark);
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
}

.news-hero {
    position: relative;
    width: min(1180px, calc(100% - 64px));
    margin: 0 auto;
    padding: clamp(72px, 11vw, 118px) clamp(40px, 7vw, 108px) clamp(96px, 14vw, 138px);
    border-radius: clamp(28px, 4vw, 40px);
    overflow: hidden;
    background: linear-gradient(135deg, #29B3C3 0%, #0A64B0 100%);
    background-size: cover;
    background-position: center;
    box-shadow: 0 28px 65px -40px rgba(8, 24, 63, 0.8);
}

.news-hero::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -90px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.08) 55%, rgba(9, 84, 150, 0.22) 85%);
    opacity: 0.85;
    pointer-events: none;
}

.news-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.28) 0%, rgba(41, 178, 195, 0.16) 52%, rgba(12, 101, 176, 0.55) 100%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    color: #ffffff;
}

.hero-title {
    margin: clamp(8px, 2vw, 16px) 0 clamp(16px, 3.6vw, 26px);
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 3vw, 18px);
}

.hero-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-prefix,
.hero-volume {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(12, 41, 115, 0.32);
    font-size: clamp(13px, 1.3vw, 15px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-volume {
    background: rgba(255, 255, 255, 0.16);
    color: #10213d;
    border-color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.hero-title-main {
    display: block;
    font-size: clamp(34px, 4.8vw, 52px);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: 0.015em;
    text-shadow: 0 12px 24px rgba(9, 28, 58, 0.55);
}

.hero-title-sub {
    display: block;
    font-size: clamp(18px, 2.4vw, 22px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
}

.hero-meta .layui-icon {
    margin-right: 6px;
    font-size: 16px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags .tag {
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 24px -18px rgba(10, 31, 63, 0.9);
}

.hero-bottom {
    margin-top: clamp(24px, 5vw, 34px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 16px;
}

.hero-bottom .hero-tags {
    flex: 1 1 60%;
    min-width: 240px;
}

.hero-bottom .hero-btn {
    margin-left: auto;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--proxy-primary-dark);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 18px 38px -28px rgba(0, 0, 0, 0.8);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 45px -34px rgba(0, 0, 0, 0.85);
}

.news-body {
    width: min(1100px, calc(100% - 64px));
    margin: clamp(-60px, -8vw, -36px) auto 0;
    position: relative;
    z-index: 5;
}

.news-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: clamp(20px, 4vw, 30px);
    margin-bottom: clamp(24px, 5vw, 36px);
    align-items: stretch;
}

.news-card {
    background: #ffffff;
    border-radius: var(--card-radius);
    padding: clamp(26px, 3vw, 38px);
    box-shadow: var(--card-shadow);
}

.news-card h2,
.news-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--proxy-dark);
}

.news-intro {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.news-intro .intro-header h2 {
    margin: 0;
    font-size: 18px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--proxy-muted);
}

.news-intro .intro-lead {
    margin: 0;
    font-size: 17px;
    line-height: 1.9;
    color: var(--proxy-dark);
}

.intro-points {
    margin: 6px 0 0 0;
    padding-left: 20px;
    color: var(--proxy-dark);
}

.intro-points li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.intro-points li::marker {
    color: var(--proxy-primary);
    font-weight: 600;
}

.intro-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.intro-tags .tag {
    padding: 6px 14px;
    border-radius: 12px;
    background: var(--proxy-soft);
    color: var(--proxy-primary-dark);
    font-size: 13px;
    letter-spacing: 0.02em;
    box-shadow: inset 0 0 0 1px rgba(26, 104, 255, 0.12);
}

.news-side dl {
    margin: 0;
}

.news-side dt {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--proxy-muted);
    margin-top: 20px;
}

.news-side dt:first-of-type {
    margin-top: 0;
}

.news-side dd {
    margin: 8px 0 0;
    font-size: 16px;
    color: var(--proxy-dark);
    word-break: break-word;
}

.news-side dd a {
    color: var(--proxy-primary-dark);
    text-decoration: none;
}

.news-side dd a:hover {
    text-decoration: underline;
}

.share-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.copy-hint {
    font-size: 13px;
    color: var(--proxy-muted);
}

.copy-preview {
    font-size: 13px;
    color: var(--proxy-primary-dark);
    background: #f4f6fb;
    padding: 6px 10px;
    border-radius: 10px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-target {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.copy-btn {
    appearance: none;
    border: none;
    border-radius: 999px;
    padding: 8px 18px;
    background: var(--proxy-primary);
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.copy-btn:hover {
    background: var(--proxy-primary-dark);
    transform: translateY(-1px);
}

.copy-btn.copied {
    background: #21ba7a;
}

.news-note {
    background: #101d3a;
    color: #f8fbff;
    box-shadow: none;
    border-radius: var(--card-radius);
    margin-top: clamp(18px, 4vw, 30px);
    position: relative;
    padding-left: clamp(32px, 4vw, 48px);
}

.news-note::before {
    content: "提示";
    position: absolute;
    top: clamp(26px, 4vw, 34px);
    left: clamp(16px, 3vw, 24px);
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.news-note p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.news-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
    margin-top: clamp(22px, 4vw, 32px);
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    background: #e4e8f3;
    color: var(--proxy-dark);
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.action-btn:hover {
    background: #d4daec;
    transform: translateY(-1px);
}

.action-btn.action-primary {
    background: var(--proxy-primary);
    color: #ffffff;
    box-shadow: 0 16px 34px -24px rgba(26, 104, 255, 0.75);
}

.action-btn.action-primary:hover {
    background: var(--proxy-primary-dark);
}

.news-proxy .hero-eyebrow {
    display: none !important;
}

@media (max-width: 1024px) {
    .news-hero {
        padding: clamp(60px, 11vw, 88px) clamp(28px, 6vw, 60px) clamp(86px, 12vw, 120px);
    }

    .hero-inner {
        max-width: 520px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .news-hero {
        padding: 52px 22px 84px;
        border-radius: 26px;
    }

    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-body {
        margin-top: -30px;
        width: calc(100% - 32px);
    }

    .news-card {
        padding: 22px;
    }

    .copy-btn {
        width: 100%;
        text-align: center;
    }

    .news-actions {
        justify-content: center;
    }
    .hero-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-bottom .hero-btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

}

.news-proxy-page header .nav-container .logo2 {
    background-image: url('../img/IndexLLogo.svg') !important;
    background-position: 30px center !important;
    background-size: 180px auto !important;
    filter: none !important;
}



