:root {
    --gyxq-crimson: #9b1c31;
    --gyxq-crimson-deep: #6e1222;
    --gyxq-gold: #d4a24e;
    --gyxq-gold-light: #f0d9a8;
    --gyxq-ink: #1c2434;
    --gyxq-ink-soft: #3d4a5c;
    --gyxq-paper: #faf7f2;
    --gyxq-paper-2: #f3ede3;
    --gyxq-muted: #7a8494;
    --gyxq-shadow: 0 24px 60px rgba(30, 20, 20, 0.12);
    --gyxq-radius: 28px;
    --gyxq-radius-md: 20px;
    --gyxq-radius-sm: 14px;
    --gyxq-serif: "Noto Serif SC", "Songti SC", "SimSun", serif;
    --gyxq-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.gyxq-page {
    --gyxq-content-max: 1280px;
    margin: 0 -15px 0;
    padding-bottom: 48px;
    font-family: var(--gyxq-sans);
    color: var(--gyxq-ink);
    max-width: 100%;
    box-sizing: border-box;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(212, 162, 78, 0.14), transparent 55%),
        linear-gradient(180deg, var(--gyxq-paper) 0%, #fff 40%, var(--gyxq-paper-2) 100%);
}

/* ── 顶部公益主题区 ── */
.gyxq-banner {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(125deg, var(--gyxq-crimson-deep) 0%, var(--gyxq-crimson) 42%, #b83248 100%);
    color: #fff;
    padding: 56px 24px 0;
    margin: 12px;
    border-radius: var(--gyxq-radius);
}
.gyxq-banner-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.gyxq-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
}
.gyxq-banner-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 162, 78, 0.22) 0%, transparent 70%);
    top: -200px;
    right: -120px;
    pointer-events: none;
}
.gyxq-banner-inner {
    position: relative;
    z-index: 2;
    max-width: var(--gyxq-content-max);
    margin: 0 auto;
}
.gyxq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gyxq-gold-light);
    margin-bottom: 16px;
    font-weight: 500;
}
.gyxq-eyebrow::before,
.gyxq-eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gyxq-gold));
}
.gyxq-eyebrow::after {
    background: linear-gradient(90deg, var(--gyxq-gold), transparent);
}
.gyxq-title {
    font-family: var(--gyxq-serif);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 16px;
    letter-spacing: 0.06em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.gyxq-title em,
.gyxq-title-glow {
    position: relative;
    display: inline-block;
    font-style: normal;
    color: #f0d9a8;
    z-index: 1;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
.gyxq-title-glow::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 52%;
    width: 130%;
    height: 200%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255, 238, 190, 0.75) 0%, rgba(212, 162, 78, 0.35) 42%, transparent 72%);
    z-index: -1;
    pointer-events: none;
    filter: blur(10px);
    animation: gyxq-lamp-glow 3.2s ease-in-out infinite;
    will-change: opacity, transform;
}
@keyframes gyxq-lamp-glow {
    0%, 100% {
        opacity: 0.28;
        transform: translate(-50%, -50%) scale(0.92);
    }
    50% {
        opacity: 0.95;
        transform: translate(-50%, -50%) scale(1.06);
    }
}
.gyxq-title-sep {
    opacity: 0.45;
    font-weight: 400;
    margin: 0 0.12em;
}
.gyxq-lead {
    max-width: 640px;
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.85;
    opacity: 0.92;
    margin: 0 0 32px;
    letter-spacing: 0.03em;
}
.gyxq-banner-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}
.gyxq-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(180deg, #f5d78a 0%, var(--gyxq-gold) 100%);
    color: var(--gyxq-crimson-deep);
    font-weight: 700;
    font-size: 16px;
    border-radius: 999px;
    text-decoration: none !important;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}
.gyxq-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
    color: var(--gyxq-crimson-deep);
}
.gyxq-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff !important;
    border-radius: 999px;
    text-decoration: none !important;
    font-size: 14px;
    transition: background 0.2s;
}
.gyxq-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
}

/* 数据条 */
.gyxq-stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    max-width: var(--gyxq-content-max);
    margin: 0 auto;
    padding: 0 0 28px;
    position: relative;
    z-index: 3;
}
.gyxq-stat {
    backdrop-filter: blur(12px);
    padding: 22px 20px;
    text-align: center;
    border-radius: var(--gyxq-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s, border-color 0.25s;
}
.gyxq-stat:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 162, 78, 0.35);
}
.gyxq-stat-num {
    font-family: var(--gyxq-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--gyxq-gold);
    line-height: 1.1;
    display: block;
}
.gyxq-stat-label {
    font-size: 13px;
    opacity: 0.85;
    margin-top: 6px;
    letter-spacing: 0.05em;
}

/* 滚动头像带（融入 banner） */
.gyxq-marquee-wrap {
    position: relative;
    z-index: 2;
    max-width: var(--gyxq-content-max);
    margin: 0 auto;
    padding: 8px 0 28px;
}
.gyxq-marquee {
    backdrop-filter: blur(8px);
    border-radius: var(--gyxq-radius-md);
    padding: 20px 0 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.gyxq-marquee-label {
    text-align: center;
    font-size: 12px;
    color: var(--gyxq-gold-light);
    letter-spacing: 0.18em;
    margin-bottom: 16px;
    font-weight: 500;
    opacity: 0.9;
}
.gyxq-marquee-track-wrap {
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    overflow: hidden;
    max-width: 100%;
}
.gyxq-marquee-track {
    display: flex;
    gap: 28px;
    animation: gyxq-marquee 45s linear infinite;
    width: max-content;
    will-change: transform;
}
.gyxq-marquee-track:hover { animation-play-state: paused; }
@keyframes gyxq-marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}
.gyxq-marquee-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 72px;
    text-decoration: none !important;
    transition: transform 0.25s;
}
.gyxq-marquee-item:hover { transform: translateY(-4px); }
.gyxq-marquee-item img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25), 0 0 0 2px rgba(212, 162, 78, 0.45);
    background: var(--gyxq-paper);
}
.gyxq-marquee-item span {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
}

/* 主内容区 */
.gyxq-main {
    max-width: var(--gyxq-content-max);
    margin: 40px auto 0;
    padding: 0 24px;
}
.gyxq-section-head {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(155, 28, 49, 0.08);
}
.gyxq-section-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
}
.gyxq-section-title-row h2 {
    font-family: var(--gyxq-serif);
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    font-weight: 700;
    margin: 0;
    color: var(--gyxq-ink);
    letter-spacing: 0.04em;
    line-height: 1.25;
    flex: 0 0 auto;
}
.gyxq-section-title-row h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin-top: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gyxq-gold), var(--gyxq-crimson));
}
.gyxq-section-tagline {
    --gyxq-tagline-line: 1.55em;
    flex: 1 1 240px;
    max-width: 520px;
}
.gyxq-tagline-viewport {
    height: var(--gyxq-tagline-line);
    overflow: hidden;
    position: relative;
}
.gyxq-tagline-track {
    animation: gyxq-tagline-roll 8s ease-in-out infinite;
    will-change: transform;
}
.gyxq-tagline-track p {
    margin: 0;
    height: var(--gyxq-tagline-line);
    line-height: var(--gyxq-tagline-line);
    font-family: var(--gyxq-serif);
    font-size: clamp(0.92rem, 1.6vw, 1.05rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--gyxq-crimson);
    display: block;
    box-sizing: border-box;
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
    .gyxq-tagline-track p {
        background: linear-gradient(118deg, var(--gyxq-crimson-deep) 0%, var(--gyxq-crimson) 38%, #c46830 72%, var(--gyxq-gold) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }
}
@keyframes gyxq-tagline-roll {
    0%, 28% { transform: translate3d(0, 0, 0); }
    33%, 58% { transform: translate3d(0, -33.333333%, 0); }
    63%, 100% { transform: translate3d(0, -66.666667%, 0); }
}

/* 卡片网格 */
.gyxq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.gyxq-flip {
    perspective: 1200px;
    aspect-ratio: 3/4.2;
}
.gyxq-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}
.gyxq-flip-inner.is-flipped { transform: rotateY(180deg); }
.gyxq-flip-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: var(--gyxq-radius-md);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 28px rgba(28, 36, 52, 0.1);
    border: 1px solid rgba(212, 162, 78, 0.2);
}
.gyxq-flip-face.gyxq-flip-back { transform: rotateY(180deg); }

.gyxq-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none !important;
    color: inherit;
}
.gyxq-card-photo {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #ebe6df, #f8f4ee);
}
.gyxq-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gyxq-card-link:hover .gyxq-card-photo img { transform: scale(1.06); }
.gyxq-card-ribbon {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: linear-gradient(135deg, var(--gyxq-crimson), #d63850);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 13px;
    letter-spacing: 0.1em;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(155, 28, 49, 0.35);
}
.gyxq-card-body {
    padding: 14px 16px 16px;
    background: #fff;
    border-top: 1px solid var(--gyxq-paper-2);
}
.gyxq-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}
.gyxq-card-name {
    font-family: var(--gyxq-serif);
    font-size: 17px;
    font-weight: 700;
    color: var(--gyxq-ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gyxq-card-gender {
    flex-shrink: 0;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 500;
}
.gyxq-card-gender.boy { background: #e8f2fc; color: #1565c0; }
.gyxq-card-gender.girl { background: #fce8ef; color: #ad1457; }
.gyxq-card-gender.unknown { background: #f0f0f0; color: #888; }
.gyxq-card-meta {
    font-size: 13px;
    color: var(--gyxq-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.gyxq-card-meta i { color: var(--gyxq-gold); }

/* 联络侧栏 */
.gyxq-aside {
    position: sticky;
    top: 24px;
}
.gyxq-contact-card {
    background: linear-gradient(160deg, var(--gyxq-ink) 0%, #2a3548 100%);
    color: #fff;
    border-radius: var(--gyxq-radius);
    overflow: hidden;
    box-shadow: var(--gyxq-shadow);
}
.gyxq-contact-header {
    padding: 28px 24px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(212, 162, 78, 0.15) 0%, transparent 100%);
}
.gyxq-contact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gyxq-gold), #e8c06a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gyxq-crimson-deep);
    box-shadow: 0 8px 24px rgba(212, 162, 78, 0.35);
}
.gyxq-contact-header h3 {
    font-family: var(--gyxq-serif);
    font-size: 20px;
    margin: 0 0 8px;
    font-weight: 700;
}
.gyxq-contact-header p {
    margin: 0;
    font-size: 13px;
    opacity: 0.75;
    line-height: 1.6;
}
.gyxq-contact-list {
    padding: 8px 0 16px;
}
.gyxq-contact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.gyxq-contact-row:last-child { border-bottom: none; }
.gyxq-contact-ico {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 162, 78, 0.18);
    color: var(--gyxq-gold);
    font-size: 15px;
    border: 1px solid rgba(212, 162, 78, 0.28);
}
.gyxq-contact-val {
    flex: 1;
    font-weight: 600;
    text-align: right;
    word-break: break-all;
    color: var(--gyxq-gold-light);
    line-height: 1.5;
}
.gyxq-contact-cta {
    display: block;
    margin: 0 20px 20px;
    padding: 14px;
    text-align: center;
    background: var(--gyxq-gold);
    color: var(--gyxq-crimson-deep) !important;
    font-weight: 700;
    border-radius: var(--gyxq-radius-sm);
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
}
.gyxq-contact-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 162, 78, 0.4);
    color: var(--gyxq-crimson-deep) !important;
}
.gyxq-quote-banner {
    flex: 0 0 auto;
    margin: 0;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    max-width: min(100%, 400px);
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 243, 0.98) 100%);
    border: 1px solid rgba(155, 28, 49, 0.12);
    box-shadow: 0 2px 12px rgba(155, 28, 49, 0.06);
    overflow: visible;
}
.gyxq-quote-banner::before {
    display: none;
}
.gyxq-quote-banner cite {
    margin-top: 0;
    flex: 0 0 auto;
    display: inline;
    font-size: 11px;
    color: var(--gyxq-muted);
    white-space: nowrap;
}
.gyxq-quote-banner cite::before {
    content: "·";
    margin: 0 8px;
    color: rgba(212, 162, 78, 0.9);
    font-weight: 700;
}
.gyxq-quote,
.gyxq-quote-banner {
    border-radius: var(--gyxq-radius-md);
    position: relative;
}
.gyxq-quote-banner {
    border-radius: 999px;
}
.gyxq-quote::before,
.gyxq-quote-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gyxq-crimson), var(--gyxq-gold));
}
.gyxq-quote p,
.gyxq-quote-banner p {
    margin: 0;
    font-family: var(--gyxq-serif);
    font-size: 13px;
    line-height: 1.45;
    color: var(--gyxq-ink-soft);
    letter-spacing: 0.02em;
}
.gyxq-quote cite,
.gyxq-quote-banner cite {
    font-size: 12px;
    color: var(--gyxq-muted);
    font-style: normal;
}
.gyxq-quote cite {
    display: block;
    margin-top: 10px;
}

/* 空状态 */
.gyxq-empty {
    display: none;
    text-align: center;
    padding: 80px 32px;
    background: #fff;
    border-radius: var(--gyxq-radius);
    box-shadow: var(--gyxq-shadow);
    max-width: 560px;
    margin: 48px auto;
}
.gyxq-empty.is-visible { display: block; }
.gyxq-empty-symbol {
    font-size: 56px;
    margin-bottom: 20px;
    opacity: 0.7;
}
.gyxq-empty h2 {
    font-family: var(--gyxq-serif);
    font-size: 24px;
    margin: 0 0 12px;
}
.gyxq-empty p {
    color: var(--gyxq-muted);
    margin: 0 0 28px;
    line-height: 1.7;
}

/* 页脚 */
.gyxq-footer {
    max-width: var(--gyxq-content-max);
    margin: 48px auto 0;
    padding: 28px 24px;
    text-align: center;
    border-top: 1px solid rgba(212, 162, 78, 0.35);
}
.gyxq-footer-mission {
    font-family: var(--gyxq-serif);
    font-size: 18px;
    color: var(--gyxq-ink);
    margin: 0 0 10px;
    letter-spacing: 0.08em;
}
.gyxq-footer-source {
    font-size: 13px;
    color: var(--gyxq-muted);
    margin: 0;
}
.gyxq-footer-source a {
    color: var(--gyxq-crimson);
    text-decoration: none;
}
.gyxq-footer-source a:hover { text-decoration: underline; }
.gyxq-footer-heart {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    margin-left: 4px;
    transform: translateY(-1px);
}

.gyxq-contact-mobile-toggle { display: none; }

@media (prefers-reduced-motion: reduce) {
    .gyxq-marquee-track { animation: none; }
    .gyxq-banner-canvas { display: none; }
    .gyxq-title-glow::before { animation: none; opacity: 0.55; }
    .gyxq-tagline-track { animation: none; }
    .gyxq-tagline-viewport { height: auto; }
    .gyxq-tagline-track p[aria-hidden="true"] { display: none; }
    .gyxq-tagline-track p + p { margin-top: 6px; }
}

@media (max-width: 1100px) {
    .gyxq-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── 平板 / 手机 ── */
@media (max-width: 768px) {
    .gyxq-page {
        margin: 0;
        padding-bottom: 32px;
        overflow-x: hidden;
        overflow-x: clip;
        width: 100%;
    }

    /* Hero：压缩高度，减少一屏占用 */
    .gyxq-banner {
        margin: 0;
        padding: 28px 16px 0;
        border-radius: 0 0 20px 20px;
        width: 100%;
        box-sizing: border-box;
    }
    .gyxq-banner-glow {
        width: 280px;
        height: 280px;
        top: -120px;
        right: -80px;
    }
    .gyxq-eyebrow {
        font-size: 11px;
        letter-spacing: 0.12em;
        margin-bottom: 10px;
        gap: 6px;
    }
    .gyxq-eyebrow::before,
    .gyxq-eyebrow::after { width: 16px; }
    .gyxq-title {
        font-size: clamp(1.35rem, 6vw, 1.75rem);
        letter-spacing: 0.03em;
        margin-bottom: 10px;
        line-height: 1.35;
    }
    .gyxq-title-glow::before { filter: blur(6px); }
    .gyxq-lead {
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 18px;
        opacity: 0.88;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .gyxq-banner-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 20px;
    }
    .gyxq-btn-primary,
    .gyxq-btn-ghost {
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }
    .gyxq-btn-primary {
        padding: 12px 20px;
        font-size: 15px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    }
    .gyxq-btn-ghost {
        padding: 11px 20px;
        font-size: 14px;
    }

    /* 数据条：保持双列，更紧凑 */
    .gyxq-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding-bottom: 16px;
    }
    .gyxq-stat {
        padding: 12px 10px;
        border-radius: 12px;
        box-shadow: none;
    }
    .gyxq-stat-num {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
    }
    .gyxq-stat-label {
        font-size: 11px;
        margin-top: 4px;
    }

    /* 滚动头像：缩小 + 恢复自动滚动 */
    .gyxq-marquee-wrap {
        padding: 0 0 18px;
        max-width: 100%;
        overflow: hidden;
    }
    .gyxq-marquee {
        padding: 12px 0 18px;
        border-radius: 12px;
        overflow: hidden;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .gyxq-marquee-label {
        font-size: 11px;
        letter-spacing: 0.1em;
        margin-bottom: 10px;
    }
    .gyxq-marquee-track { gap: 18px; }
    .gyxq-marquee-item { width: 56px; }
    .gyxq-marquee-item img {
        width: 48px;
        height: 48px;
        border-width: 2px;
    }
    .gyxq-marquee-item span {
        font-size: 10px;
        max-width: 56px;
        margin-top: 5px;
    }

    /* 主内容区 */
    .gyxq-main {
        margin-top: 24px;
        padding: 0 12px;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    .gyxq-section-head {
        margin-bottom: 18px;
        padding-bottom: 16px;
    }
    .gyxq-section-title-row {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px 10px;
        max-width: 100%;
        overflow: hidden;
    }
    .gyxq-section-title-row h2 {
        font-size: 1.15rem;
        flex: 0 0 auto;
        line-height: 1.35;
        white-space: nowrap;
    }
    .gyxq-section-title-row h2::after {
        display: none;
    }
    .gyxq-section-tagline {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
        max-width: none;
        --gyxq-tagline-line: 22px;
        padding-top: 0;
        align-self: center;
        overflow: hidden;
    }
    .gyxq-tagline-viewport {
        height: var(--gyxq-tagline-line);
        overflow: hidden;
    }
    .gyxq-tagline-track p {
        font-size: 10px;
        height: var(--gyxq-tagline-line);
        line-height: var(--gyxq-tagline-line);
        background: none;
        -webkit-text-fill-color: var(--gyxq-crimson);
        color: var(--gyxq-crimson);
        letter-spacing: 0.02em;
    }

    /* 移动端性能：关闭高开销效果 */
    .gyxq-banner-canvas { display: none; }
    .gyxq-title-glow::before { animation: none; opacity: 0.45; filter: none; }
    .gyxq-stat { backdrop-filter: none; -webkit-backdrop-filter: none; }
    .gyxq-marquee-track-wrap {
        overflow: hidden;
    }
    .gyxq-marquee-track {
        animation: gyxq-marquee 50s linear infinite;
        will-change: transform;
    }
    .gyxq-marquee-item span {
        line-height: 1.2;
        padding-bottom: 2px;
    }
    .gyxq-flip {
        perspective: none;
        aspect-ratio: 3 / 4.1;
    }
    .gyxq-flip-inner {
        transform: none !important;
        transition: none;
    }
    .gyxq-flip-back { display: none; }
    .gyxq-flip-face {
        transform: none !important;
        backface-visibility: visible;
        border-radius: 14px;
        box-shadow: 0 2px 12px rgba(28, 36, 52, 0.08);
        border-color: rgba(212, 162, 78, 0.15);
    }

    /* 卡片网格 */
    .gyxq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .gyxq-card-photo {
        background:
            radial-gradient(circle at 50% 40%, rgba(155, 28, 49, 0.06) 0%, transparent 55%),
            linear-gradient(160deg, #ece7df 0%, #f7f3ec 100%);
    }
    .gyxq-card-ribbon {
        top: 8px;
        left: 8px;
        font-size: 10px;
        padding: 3px 9px;
        box-shadow: 0 2px 8px rgba(155, 28, 49, 0.25);
    }
    .gyxq-card-body {
        padding: 10px 10px 11px;
        border-top: none;
        margin-top: -8px;
        position: relative;
        z-index: 2;
        border-radius: 12px 12px 0 0;
        box-shadow: 0 -4px 12px rgba(28, 36, 52, 0.04);
    }
    .gyxq-card-head { margin-bottom: 4px; gap: 4px; }
    .gyxq-card-name {
        font-size: 14px;
        font-weight: 700;
    }
    .gyxq-card-gender {
        font-size: 10px;
        padding: 2px 7px;
    }
    .gyxq-card-meta {
        font-size: 11px;
        line-height: 1.4;
        align-items: flex-start;
    }
    .gyxq-card-meta i { margin-top: 2px; }

    /* 页脚 */
    .gyxq-footer {
        margin-top: 32px;
        padding: 20px 16px;
    }
    .gyxq-footer-mission {
        font-size: 14px;
        letter-spacing: 0.04em;
        line-height: 1.6;
    }
    .gyxq-footer-source { font-size: 12px; }

    @supports (padding: max(0px)) {
        .gyxq-banner {
            padding-left: max(16px, env(safe-area-inset-left));
            padding-right: max(16px, env(safe-area-inset-right));
        }
        .gyxq-page { padding-bottom: max(32px, env(safe-area-inset-bottom)); }
    }
}

@media (max-width: 768px) and (hover: none) {
    .gyxq-card-link:hover .gyxq-card-photo img { transform: none; }
    .gyxq-stat:hover { transform: none; }
    .gyxq-btn-primary:hover { transform: none; }
}

/* ── 小屏手机 ── */
@media (max-width: 480px) {
    .gyxq-banner { padding: 22px 14px 0; }
    .gyxq-eyebrow { display: none; }
    .gyxq-title { font-size: 1.3rem; }
    .gyxq-lead {
        -webkit-line-clamp: 2;
        margin-bottom: 14px;
    }
    .gyxq-stats-bar { gap: 6px; }
    .gyxq-stat { padding: 10px 8px; }
    .gyxq-stat-num { font-size: 1.2rem; }
    .gyxq-marquee-wrap { padding-bottom: 12px; }
    .gyxq-main { padding: 0 10px; }
    .gyxq-grid { gap: 8px; }
    .gyxq-flip { aspect-ratio: 3 / 3.85; }
    .gyxq-card-body { padding: 8px 8px 9px; }
    .gyxq-card-name { font-size: 13px; }
    .gyxq-card-meta { font-size: 10px; }
}