﻿* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background-color: #050a14;
            color: #ffffff;
            position: relative;
            -webkit-tap-highlight-color: transparent;
            user-select: none;
        }

        body.lightbox-open {
            overflow: hidden;
        }

        .logo-container {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 99;
            width: 120px;
            height: 50px;
            pointer-events: none;
            overflow: visible;
        }

        .site-logo {
            position: absolute;
            top: 0;
            left: 0;
            width: 120px;
            height: 75px;
            opacity: 0.85;
            transition: opacity 0.3s;
            pointer-events: auto;
            background: transparent;
            border: none;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .site-logo img {
            width: auto;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .site-logo:hover {
            opacity: 1;
        }

        #canvas-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(circle at center, #0b1a2f 0%, #020408 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 20px 20px 20px;
            width: 100%;
        }

        .hero {
            height: 32vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            width: 100%;
            margin-top: 50px;
        }

        .hero h1 {
            font-size: 4rem;
            color: #ffffff;
            margin-bottom: 10px;
            margin-top: 35px;
            opacity: 0;
            transform: translateY(30px);
        }

        .char-red {
            background: linear-gradient(135deg, #ff4d4d 0%, #c00000 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 28px rgba(255, 60, 60, 0.55);
        }

        .char-blue {
            background: linear-gradient(135deg, #00e0ff, #0055ff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 28px rgba(0, 180, 255, 0.55);
        }

        .char-yellow {
            background: linear-gradient(135deg, #ffff66 0%, #ffcc00 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 28px rgba(255, 170, 0, 0.55);
        }

        .hero p {
            font-size: 1.9rem;
            color: #ffffff;
            margin-bottom: 15px;
            opacity: 0;
            transform: translateY(30px);
        }

        .hero-date {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            font-size: 1.2rem;
            padding: 15px 30px;
            border-radius: 50px;
            opacity: 0;
            transform: translateY(30px);
        }

        .hero-time,
        .hero-location {
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1;
        }

        .hero-time img,
        .hero-location img {
            width: 26px;
            height: 26px;
            object-fit: contain;
            display: block;
            flex-shrink: 0;
        }

        .section {
            padding: 5px 0px 0 0px;
            width: 100%;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #00f2ff;
            margin: 15px auto 0;
            box-shadow: 0 0 10px #00f2ff;
        }

        .section-subtitle {
            text-align: center;
            color: #5fcff4;
            margin-bottom: 30px;
            font-size: 1rem;
        }

        /* ========== 新闻卡片 ========== */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .news-card {
            display: flex;
            gap: 15px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            overflow: hidden;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(50px);
            text-decoration: none;
            color: inherit;
            padding: 16px;
            align-items: center;
        }

        .news-card:hover {
            transform: translateY(-8px) !important;
            border-color: #00f2ff;
            box-shadow: 0 10px 35px rgba(0, 242, 255, 0.18);
        }

        .news-card-img {
            width: 100px;
            height: 100px;
            flex-shrink: 0;
            border-radius: 8px;
            overflow: hidden;
            background: #1a2639;
        }

        .news-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .news-card-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .news-card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #5fcff4;
            margin-bottom: 6px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-card-subtitle {
            font-size: 0.9rem;
            color: #a0aab5;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* ========== 金句海报画廊（三行横向滚动） ========== */
        .poster-gallery-row {
            margin-bottom: 40px;
        }

        .poster-gallery-title {
            font-size: 1.3rem;
            color: #5fcff4;
            margin-bottom: 12px;
            padding-left: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .poster-gallery-title::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 20px;
            background: #00f2ff;
            border-radius: 3px;
            box-shadow: 0 0 8px #00f2ff;
        }

        .poster-gallery-outer {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
            padding: 5px 0;
        }

        .poster-gallery-viewport {
            overflow: hidden;
            position: relative;
            border-radius: 12px;
            cursor: grab;
            user-select: none;
            touch-action: pan-y;
            padding: 8px 0;
            margin: -8px 0;
        }

        .poster-gallery-viewport:active {
            cursor: grabbing;
        }

        .poster-gallery-track {
            display: flex;
            gap: 16px;
            padding: 10px calc(50% - 80px);
            will-change: transform;
            transition: none;
            align-items: center;
            min-width: max-content;
        }

        .poster-gallery-card {
            flex-shrink: 0;
            width: 300px;
            border-radius: 10px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
            transform: scale(0.7);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
            will-change: transform;
            cursor: pointer;
            position: relative;
        }

        .poster-gallery-card::after {
            position: absolute;
            top: 8px;
            right: 8px;
            font-size: 14px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 6;
            filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.6));
        }

        .poster-gallery-card:hover::after {
            opacity: 0.9;
        }

        .poster-gallery-card.active {
            transform: scale(1.05);
            border-color: rgba(255, 204, 0, 0.7);
            box-shadow: 0 12px 35px rgba(255, 180, 30, 0.3);
            z-index: 5;
        }

        .poster-gallery-card.active::after {
            opacity: 0.9;
        }

        .poster-gallery-card img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            pointer-events: none;
            user-select: none;
        }

        .poster-gallery-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(10, 20, 40, 0.75);
            border: 1px solid rgba(255, 204, 0, 0.35);
            color: #ffcc00;
            font-size: 1rem;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(6px);
            pointer-events: auto;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .poster-gallery-arrow:hover {
            background: rgba(255, 200, 0, 0.15);
            border-color: #ffcc00;
            box-shadow: 0 0 20px rgba(255, 200, 0, 0.4);
        }

        .poster-gallery-arrow-left {
            left: 2px;
        }

        .poster-gallery-arrow-right {
            right: 2px;
        }

        .poster-gallery-arrow svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            pointer-events: none;
        }

        /* ========== 视频花絮 ========== */
        .video-section .section-subtitle {
            text-align: center;
            color: #5fcff4;
            margin-bottom: 30px;
            font-size: 1rem;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .video-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            overflow: hidden;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(50px);
            display: flex;
            flex-direction: column;
        }

        .video-card:hover {
            transform: translateY(-8px) !important;
            border-color: #00f2ff;
            box-shadow: 0 10px 35px rgba(0, 242, 255, 0.18);
        }

        .video-card .video-header {
            padding: 16px 20px 8px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .video-card .video-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #00f2ff;
            box-shadow: 0 0 10px rgba(0, 242, 255, 0.7);
            flex-shrink: 0;
            animation: dotPulse 2s infinite;
        }

        @keyframes dotPulse {
            0%,
            100% {
                box-shadow: 0 0 8px rgba(0, 242, 255, 0.5);
            }
            50% {
                box-shadow: 0 0 20px rgba(0, 242, 255, 1);
            }
        }

        .video-card .video-label {
            font-size: 1rem;
            font-weight: 600;
            color: #c8e6ff;
            letter-spacing: 0.5px;
        }

        .video-card video {
            width: 100%;
            display: block;
            border-radius: 0 0 12px 12px;
            background: #000;
            outline: none;
            aspect-ratio: 16 / 9;
            object-fit: cover;
        }

        /* ========== 直播回放模块 ========== */
        .replay-section {
            padding-bottom: 20px;
        }

        .replay-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-top: 10px;
        }

        .replay-qr-wrapper {
            position: relative;
            display: inline-block;
            padding: 12px;
            border-radius: 20px;
            background: rgba(0, 242, 255, 0.08);
            box-shadow: 0 0 30px rgba(0, 242, 255, 0.3), 0 0 15px rgba(0, 160, 255, 0.2);
            transition: all 0.4s ease;
        }

        .replay-qr-wrapper:hover {
            box-shadow: 0 0 45px rgba(0, 242, 255, 0.55), 0 0 25px rgba(0, 160, 255, 0.4);
            transform: translateY(-3px);
        }

        .replay-qr-inner {
            position: relative;
            width: 200px;
            height: 200px;
            border-radius: 16px;
            overflow: hidden;
            border: 2px solid rgba(0, 242, 255, 0.5);
            box-shadow: inset 0 0 20px rgba(0, 242, 255, 0.1);
        }

        .replay-qr-inner img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            background: #ffffff;
        }

        .replay-qr-wrapper::before,
        .replay-qr-wrapper::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border-color: #00f2ff;
            border-style: solid;
            z-index: 2;
            pointer-events: none;
        }

        .replay-qr-wrapper::before {
            top: 8px;
            left: 8px;
            border-width: 2px 0 0 2px;
            border-radius: 6px 0 0 0;
        }

        .replay-qr-wrapper::after {
            bottom: 8px;
            right: 8px;
            border-width: 0 2px 2px 0;
            border-radius: 0 0 6px 0;
        }

        .replay-hint {
            margin-top: 18px;
            font-size: 1.4rem;
            color: #5fcff4;
            letter-spacing: 1px;
            font-weight: 500;
            text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
        }

        /* ========== 精彩图片画廊 ========== */
        .gallery-section {
            position: relative;
            overflow: visible;
        }

        .gallery-outer {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
            padding: 10px 0 20px 0;
        }

        .gallery-viewport {
            overflow: hidden;
            position: relative;
            border-radius: 16px;
            cursor: grab;
            -webkit-user-select: none;
            user-select: none;
            touch-action: pan-y;
            padding: 20px 0;
            margin: -20px 0;
        }

        .gallery-viewport:active {
            cursor: grabbing;
        }

        .gallery-viewport.dragging {
            cursor: grabbing;
            touch-action: none;
        }

        .gallery-track {
            display: flex;
            gap: 20px;
            padding: 15px 0 15px calc(50% - 170px);
            /* 只保留左侧padding，右侧用spacer填补 */
            will-change: transform;
            transition: none;
            align-items: center;
            min-width: max-content;
        }

        .gallery-track.snapping {
            transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .gallery-card {
            flex-shrink: 0;
            width: 320px;
            border-radius: 14px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.45s ease;
            position: relative;
            z-index: 1;
            transform: scale(0.88);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            will-change: transform, box-shadow;
            cursor: pointer;
        }

        .gallery-card::after {
            position: absolute;
            top: 12px;
            right: 12px;
            font-size: 18px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 12;
            filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.7));
        }

        .gallery-card:hover::after {
            opacity: 0.9;
        }

        .gallery-card.active {
            transform: scale(1.08);
            z-index: 10;
            border-color: rgba(0, 242, 255, 0.6);
            box-shadow: 0 16px 50px rgba(0, 242, 255, 0.22), 0 0 35px rgba(0, 160, 255, 0.18), 0 8px 30px rgba(0, 0, 0, 0.45);
        }

        .gallery-card.active::after {
            opacity: 0.9;
        }

        .gallery-card img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            pointer-events: none;
            user-select: none;
        }

        .gallery-card .gallery-caption {
            text-align: center;
            padding: 12px 10px;
            font-size: 0.85rem;
            color: #a0aab5;
            letter-spacing: 0.5px;
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            pointer-events: none;
            user-select: none;
        }

        .gallery-card.active .gallery-caption {
            color: #c8e6ff;
        }

        .gallery-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: rgba(10, 20, 40, 0.75);
            border: 1px solid rgba(0, 242, 255, 0.35);
            color: #00f2ff;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 20;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
            pointer-events: auto;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
        }

        .gallery-arrow:hover {
            background: rgba(0, 200, 255, 0.18);
            border-color: #00f2ff;
            box-shadow: 0 0 28px rgba(0, 242, 255, 0.5);
            transform: translateY(-50%) scale(1.08);
        }

        .gallery-arrow:active {
            transform: translateY(-50%) scale(0.94);
        }

        .gallery-arrow-left {
            left: 10px;
        }

        .gallery-arrow-right {
            right: 10px;
        }

        .gallery-arrow svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            pointer-events: none;
        }

        .gallery-scroll-hint {
            text-align: center;
            color: rgba(0, 242, 255, 0.55);
            font-size: 0.8rem;
            margin-top: 12px;
            letter-spacing: 1px;
            animation: hintPulse 2.5s infinite;
            pointer-events: none;
        }

        @keyframes hintPulse {
            0%,
            100% {
                opacity: 0.35;
            }
            50% {
                opacity: 0.85;
            }
        }

        /* ========== 灯箱/Lightbox ========== */
        .lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.92);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: opacity 0.35s ease;
            cursor: pointer;
        }

        .lightbox-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .lightbox-container {
            position: relative;
            max-width: 92vw;
            max-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: default;
        }

        .lightbox-container img {
            max-width: 90vw;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 242, 255, 0.2);
            display: block;
            transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: scale(0.85);
        }

        .lightbox-overlay.active .lightbox-container img {
            transform: scale(1);
        }

        .lightbox-close {
            position: fixed;
            top: 20px;
            right: 24px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.35);
            color: #fff;
            font-size: 1.4rem;
            cursor: pointer;
            z-index: 10001;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            line-height: 1;
            padding: 0;
        }

        .lightbox-close:hover {
            background: rgba(255, 50, 50, 0.55);
            border-color: #ff4444;
            box-shadow: 0 0 22px rgba(255, 50, 50, 0.5);
            transform: rotate(90deg) scale(1.08);
        }

        .lightbox-close svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.5;
            stroke-linecap: round;
            pointer-events: none;
        }

        /* ========== Footer ========== */
        .footer {
            text-align: center;
            padding: 60px 0 30px;
            background: linear-gradient(to top, #020408, transparent);
            width: 100%;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.8rem;
            letter-spacing: 1px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: inline-block;
            width: auto;
        }

        /* ========== 响应式 ========== */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1.3rem;
            }
            .hero {
                margin-top: 40px;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .hero-date {
                font-size: 1rem;
            }
            .logo-container {
                top: 15px;
                left: 15px;
                width: 80px;
                height: 40px;
            }
            .site-logo {
                width: 80px;
                height: 30px;
            }
            .hero-time img,
            .hero-location img {
                width: 22px;
                height: 22px;
            }

            .news-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .video-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .video-card .video-label {
                font-size: 0.9rem;
            }

            .gallery-card {
                width: 260px;
            }
            .gallery-track {
                gap: 14px;
                padding: 10px 0 10px calc(50% - 135px);
            }
            .gallery-card.active {
                transform: scale(1.06);
            }
            .gallery-card {
                transform: scale(0.86);
            }
            .gallery-arrow {
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
            .gallery-arrow svg {
                width: 17px;
                height: 17px;
            }
            .gallery-arrow-left {
                left: 2px;
            }
            .gallery-arrow-right {
                right: 2px;
            }

            .poster-gallery-card {
                width: 130px;
            }
            .poster-gallery-track {
                gap: 10px;
                padding: 8px calc(50% - 65px);
            }
            .poster-gallery-card.active {
                transform: scale(1.04);
            }
            .poster-gallery-card {
                transform: scale(0.9);
            }
            .poster-gallery-arrow {
                width: 30px;
                height: 30px;
            }
            .poster-gallery-arrow svg {
                width: 15px;
                height: 15px;
            }

            .replay-qr-inner {
                width: 160px;
                height: 160px;
            }
            .replay-qr-wrapper {
                padding: 10px;
                border-radius: 16px;
            }
            .replay-hint {
                font-size: 0.9rem;
            }

            .lightbox-close {
                top: 14px;
                right: 14px;
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            .lightbox-container img {
                max-width: 95vw;
                max-height: 80vh;
            }
        }

        @media (max-width: 400px) {
            .logo-container {
                width: 70px;
                height: 35px;
            }
            .site-logo {
                width: 70px;
                height: 50px;
            }
            .news-card-img {
                width: 70px;
                height: 70px;
            }
            .news-card-title {
                font-size: 0.95rem;
            }
            .news-card-subtitle {
                font-size: 0.8rem;
            }
            .gallery-card {
                width: 230px;
            }
            .gallery-track {
                gap: 10px;
                padding: 8px 0 8px calc(50% - 118px);
            }
            .gallery-card.active {
                transform: scale(1.05);
            }
            .gallery-card {
                transform: scale(0.84);
            }
            .gallery-arrow {
                width: 32px;
                height: 32px;
            }
            .gallery-arrow svg {
                width: 15px;
                height: 15px;
            }
            .poster-gallery-card {
                width: 200px;
            }
            .poster-gallery-track {
                gap: 8px;
                padding: 6px calc(50% - 55px);
            }
            .poster-gallery-card.active {
                transform: scale(1.03);
            }
            .poster-gallery-card {
                transform: scale(0.88);
            }
            .replay-qr-inner {
                width: 140px;
                height: 140px;
            }
            .replay-hint {
                font-size: 0.85rem;
            }
        }