

        /* ================================================
           全局重置
        ================================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            width: 100%;
            overflow-x: hidden;
        }

        /* ================================================
           轮播图外层容器
           - width: 100vw 保证左右始终贴满屏幕
           - height 按 1920:630 比例动态计算，保持宽高比不变
        ================================================ */
        .carousel-wrapper {
            position: relative;
            width: 100vw;
            height: calc(100vw * 630 / 1920); /* 保持 1920:630 固定比例 */
            min-height: 100px;
            overflow: hidden;
            background: #000;
        }

        /* ================================================
           轮播轨道（所有图片横向排列）
           - transition 控制从右到左平滑移入效果
        ================================================ */
        .carousel-track {
            display: flex;
            width: 100%;
            height: 100%;
            will-change: transform;
            -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* ================================================
           单张轮播幻灯片
        ================================================ */
        .carousel-slide {
            position: relative;
            min-width: 100%;
            height: 100%;
            flex-shrink: 0;
            overflow: hidden;
        }

        /* ================================================
           ★ 图片区域 ★
           在每个 .carousel-slide 中修改 <img> 的 src 属性即可替换图片
           object-fit: cover 确保移动端可自动左右裁剪，比例不变
        ================================================ */
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            display: block;
            user-select: none;
            -webkit-user-drag: none;
        }

        /* ================================================
           ★ 文字标签 ★
           - 独立浮层，直接挂在 .carousel-wrapper 上
           - 不随轮播轨道移动，始终固定居中
           - z-index 高于图片层，低于圆点层
        ================================================ */
        .carousel-label {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            z-index: 10;
            color: #ffffff;
            font-size: 60px;
            font-weight: 700;
            font-family: '等线', 'DengXian', 'Microsoft YaHei', 'PingFang SC',
                         'Helvetica Neue', Arial, sans-serif;
            letter-spacing: 6px;
            text-align: center;
            white-space: nowrap;
            pointer-events: none;
            text-shadow:
                2px 4px 12px rgba(0, 0, 0, 0.45),
                0px 2px 6px  rgba(0, 0, 0, 0.45);
        }

        /* ================================================
           圆点指示器容器
           - 绝对定位在轮播图内部正下方居中
           - bottom: 10px 下间距10px
           - 图片仅1张时由 JS 控制 display:none
        ================================================ */
        .carousel-dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 20;
        }

        /* 默认圆点：白色 50% 透明度 */
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            -webkit-transition: background-color 0.35s ease, -webkit-transform 0.35s ease;
            transition: background-color 0.35s ease, transform 0.35s ease;
            flex-shrink: 0;
        }

        /* 当前激活圆点：#004599 不透明 100% */
        .dot.active {
            background-color: #004599;
            opacity: 1;
            -webkit-transform: scale(1.25);
            transform: scale(1.25);
        }

        .dot:hover {
            -webkit-transform: scale(1.3);
            transform: scale(1.3);
        }

        /* ================================================
           响应式适配 — 移动端
        ================================================ */
        @media (max-width: 1024px) {
            .carousel-label { font-size: 48px; letter-spacing: 4px; }
        }
        @media (max-width: 768px) {
            .carousel-label { font-size: 36px; letter-spacing: 3px; }
            .dot { width: 8px; height: 8px; }
        }
        @media (max-width: 480px) {
            .carousel-label { font-size: 26px; letter-spacing: 2px; }
            .dot { width: 7px; height: 7px; }
            .carousel-dots { gap: 7px; }
        }
        @media (max-width: 320px) {
            .carousel-label { font-size: 20px; letter-spacing: 1px; }
        }

    