 /* ===== 通用组件 ===== */
        .zapg-section {
            position: relative;
        }
        .zapg-bg-section {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .zapg-section-title {
            text-align: right;
            margin-bottom: 40px;
        }
        .zapg-section-title h2 {
            font-size: 44px;
            font-weight: 900;
            color: #222;
            margin-bottom: 8px;
        }
        .zapg-section-title p.desc {
            font-size: 22px;
            color: #555;
        }

        /* ===== 1、头部Banner ===== */
        .zapg-header-banner {
            min-height: 720px;
            height: 720px;
            display: flex;
            align-items: center;
        }
        .zapg-header-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }
        .zapg-header-text p.sub-title {
            font-size: 38px;
            color: #333;
            font-weight: bold;
            margin: 8px 0 16px;
        }
        .zapg-header-text p.sub-sitle {
            font-size: 28px;
            color: #333;
            margin: 8px 0 16px;
        }
        .zapg-header-banner img {
            flex: 1;
            min-width: 320px;
            padding-top: 50px;
        }
        .zapg-header-img img {
            max-width: 100%;
            height: auto;
        }

        /* ===== 2、配件模块 ===== */
        .zapg-accessory-section {
            min-height: 741px;
            height: 741px;
            display: flex;
            align-items: center;
            padding: 60px 0;
        }
        .zapg-accessory-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        .zapg-accessory-img,
        .zapg-accessory-list {
            flex: 1;
            min-width: 300px;
        }
        .zapg-accessory-img img {
            max-width: 100%;
        }
        .zapg-grid-8 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .zapg-accessory-item {
            text-align: center;
        }
        .zapg-accessory-item .zapg-icon-box {
            width: 80%;
            height: 200px;
            background: #eef2f7;
            border-radius: 8px;
            margin: 0 auto 2px;
            align-items: center;
            justify-content: center;
        }
        .zapg-accessory-item .zapg-icon-box img {
            width: 80%;
            display: block;
            float: left;
            margin-left: 10%;
        }
        .zapg-accessory-item span {
            font-size: 16px;
            color: #333;
            font-weight: bold;
            display: block;
            text-align: center;
            height: 50px;
            line-height: 50px;
            width: 100%;
        }

        /* ===== 3、眼动训练 ===== */
        .zapg-eye-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
			padding: 80px 0;
        }
        .zapg-eye-img-box {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
        }
        .zapg-eye-img-box img {
            width: 100%;
            display: block;
        }

        /* ===== 4、趣味游戏（标题 + 6个标签，竖线分隔） ===== */
        .game-module-wrapper {
            padding: 80px 0 60px 0;
        }
        .game-module-header {
            text-align: center;
            margin-bottom: 32px;
        }
        .game-module-header h2 {
            font-size: 36px;
            font-weight: 900;
            color: #1a1a2e;
            margin-bottom: 6px;
        }
        .game-module-header p {
            font-size: 26px;
            color: #555;
        }

        .game-module-tags {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 16px;
			padding-top:30px;
        }

        .game-module-tag {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            font-size: 14px;
            color: #444;
            cursor: default;
            transition: transform 0.2s;
            padding: 0 45px;
            border-right: 1.5px solid #dce0e6;
        }

        .game-module-tag:last-child {
            border-right: none;
        }

        .game-module-tag:hover {
            transform: translateY(-2px);
        }

        .game-module-tag img {
            display: block;
            margin: 0 auto 4px;
        }

        .game-module-tag p {
            font-weight: 600;
            color: #1a1a2e;
            margin-top: 2px;
        }

        /* ===== 5、数据互联 ===== */
        .zapg-data-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
			padding: 80px 0;
        }
        .zapg-data-img {
            width: 100%;
            margin-bottom: 30px;
        }
        .zapg-data-img img {
            width: 100%;
        }

        /* ===== 6、视频模块 ===== */
        .zapg-video-section {
            padding: 0;
        }
        .zapg-video-wrap {
            width: 100%;
            position: relative;
            background: #000;
            overflow: hidden;
            border-radius: 12px;
        }
        .zapg-video-wrap video {
            width: 100%;
            display: block;
        }
        .zapg-play-btn {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.7);
            border: none;
            font-size: 30px;
            cursor: pointer;
        }

        /* ===== 7、多图居中轮播（显示器效果） ===== */
        .carousel-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 92%;
            margin: 10px auto;
            gap: 14px;
        }

        .carousel-wrap {
            flex: 1 1 auto;
            min-width: 0;
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            background: transparent;
            padding: 20px 20px 10px 20px;
            box-shadow: none;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            gap: 32px;
            align-items: center;
            padding: 70px 0 140px 0;
        }

        .carousel-item {
            flex: 0 0 calc((100% - 2 * 32px) / 3);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            position: relative;
        }

        .media-wrapper {
            width: 100%;
            padding: 12px;
            background: #f0f2f5;
            border-radius: 16px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
            transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
        }

        .media-wrapper img {
            width: 100%;
            display: block;
            border-radius: 8px;
            object-fit: cover;
            transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            aspect-ratio: 16 / 9;
            background: #e8ecf0;
        }

        .carousel-item.active .media-wrapper {
            width: 100%;
            padding: 20px 20px 28px 20px;
            background: #111111;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25),
                        0 8px 20px rgba(0, 0, 0, 0.12);
            transform: scale(1.10);
        }

        .carousel-item.active .media-wrapper img {
            border-radius: 10px;
            transform: scale(1.08);
        }

        .carousel-item.active .media-wrapper::before {
            content: "";
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 12px;
            height: 12px;
            background: radial-gradient(circle at 40% 35%, #4a4a4a, #1a1a1a);
            border-radius: 50%;
            box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.06), 0 0 0 2px #222;
            z-index: 2;
        }

        .carousel-item.active .media-wrapper::after {
            content: "";
            position: absolute;
            bottom: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 8px;
            background: linear-gradient(180deg, #c8c9cc, #b0b2b6);
            border-radius: 4px 4px 8px 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
        }

        .pc-stand {
            position: absolute;
            bottom: -72px;
            left: 50%;
            transform: translateX(-50%) scale(0.85) translateY(12px);
            width: 68px;
            height: 40px;
            background: linear-gradient(160deg, #e8e9ec, #b8babe);
            border-radius: 6px 6px 18px 18px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15), inset 0 1px 2px rgba(255,255,255,0.8);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 5;
        }

        .pc-stand::after {
            content: "";
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 6px;
            background: #b8babe;
            border-radius: 50%;
            filter: blur(2px);
            opacity: 0.5;
        }

        .carousel-item.active .pc-stand {
            opacity: 1;
            transform: translateX(-50%) scale(1) translateY(0);
            pointer-events: auto;
        }

        .carousel-btn {
            flex: 0 0 48px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: none;
            background: rgba(118, 118, 118, 0.85);
            backdrop-filter: blur(6px);
            color: #FFFFFF;
            font-size: 22px;
            font-weight: 300;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s ease;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            user-select: none;
            -webkit-tap-highlight-color: transparent;
        }

        .carousel-btn:hover {
            background: #00b8b8;
            color: #fff;
            box-shadow: 0 6px 24px rgba(0, 184, 184, 0.30);
            transform: scale(1.06);
        }

        .carousel-btn:active {
            transform: scale(0.94);
        }

        .carousel-dots {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 32px;
            padding-bottom: 4px;
            align-items: center;
        }

        .dot {
            width: 32px;
            height: 4px;
            background: #dce0e6;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.35s ease;
            flex-shrink: 0;
            transform: scaleX(1);
            transform-origin: center center;
        }

        .dot.active {
            background: #00b8b8;
            box-shadow: 0 0 12px rgba(0, 184, 184, 0.25);
            transform: scaleX(1.5);
        }

        .dot:hover {
            background: #b0c4d8;
        }
        .dot.active:hover {
            background: #00b8b8;
        }

        /* ============================================================
                   响应式适配
                   ============================================================ */
        @media (max-width: 1680px) {
            .zapg-accessory-item .zapg-icon-box {
                height: 160px;
            }
        }

        @media (max-width: 1440px) {
            .zapg-header-banner,
            .zapg-eye-section,
            .zapg-data-section,
            .zapg-accessory-section {
                height: auto;
                min-height: auto;
                padding: 60px 0;
            }
        }

        @media (max-width: 1024px) {
            .carousel-wrapper {
                gap: 10px;
            }
            .carousel-item {
                flex: 0 0 calc((100% - 2 * 24px) / 2);
            }
            .carousel-track {
                gap: 24px;
                padding: 60px 0 120px 0;
            }
            .carousel-btn {
                flex: 0 0 42px;
                width: 42px;
                height: 42px;
                font-size: 18px;
            }
            .carousel-wrap {
                padding: 16px 16px 8px 16px;
            }
            .pc-stand {
                bottom: -60px;
            }
        }

        @media (max-width: 992px) {
            .zapg-grid-8 {
                grid-template-columns: repeat(2, 1fr);
            }
            .game-module-tag {
                padding: 0 20px;
            }
        }

        @media (max-width: 768px) {
            .zapg-section-title h2 {
                font-size: 22px;
            }
            .zapg-section-title p.desc {
                font-size: 18px;
            }
            .zapg-header-text p.sub-title {
                font-size: 28px;
            }
            .zapg-header-text p.sub-sitle {
                font-size: 22px;
            }
            .game-module-header h2 {
                font-size: 24px;
            }
            .game-module-header p {
                font-size: 18px;
            }
            .game-module-tag {
                padding: 0 14px;
                border-right: 1px solid #dce0e6;
            }
            .game-module-tag img {
                width: 40px;
            }
            .game-module-tag p {
                font-size: 12px;
            }
        }

        @media (max-width: 640px) {
            .carousel-wrapper {
                gap: 6px;
                width: 96%;
            }
            .carousel-item {
                flex: 0 0 100%;
            }
            .carousel-track {
                gap: 16px;
                padding: 50px 0 100px 0;
            }
            .media-wrapper {
                width: 92%;
            }
            .carousel-item.active .media-wrapper {
                padding: 16px 16px 24px 16px;
                transform: scale(1.06);
            }
            .carousel-item.active .media-wrapper img {
                transform: scale(1.04);
            }
            .carousel-item.active .media-wrapper::before {
                width: 10px;
                height: 10px;
                top: 8px;
            }
            .carousel-item.active .media-wrapper::after {
                width: 50px;
                height: 6px;
                bottom: 5px;
            }
            .pc-stand {
                width: 44px;
                height: 28px;
                bottom: -48px;
                border-radius: 5px 5px 14px 14px;
            }
            .carousel-btn {
                flex: 0 0 36px;
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
            .carousel-dots {
                margin-top: 24px;
                gap: 8px;
            }
            .dot {
                width: 24px;
                height: 3px;
            }
            .dot.active {
                transform: scaleX(1.5);
            }
            .game-module-tag {
                padding: 0 10px;
                border-right: 1px solid #dce0e6;
            }
            .game-module-tag img {
                width: 32px;
            }
            .game-module-tag p {
                font-size: 11px;
            }
        }

        @media (max-width: 400px) {
            .carousel-wrapper {
                gap: 4px;
                width: 98%;
            }
            .carousel-track {
                padding: 40px 0 80px 0;
                gap: 12px;
            }
            .pc-stand {
                width: 36px;
                height: 22px;
                bottom: -40px;
            }
            .carousel-item.active .media-wrapper {
                padding: 12px 12px 18px 12px;
                transform: scale(1.04);
            }
            .carousel-item.active .media-wrapper img {
                transform: scale(1.02);
            }
            .carousel-btn {
                flex: 0 0 30px;
                width: 30px;
                height: 30px;
                font-size: 13px;
            }
            .carousel-wrap {
                padding: 8px 8px 4px 8px;
            }
            .game-module-tag {
                padding: 0 8px;
                border-right: 1px solid #e8e8e8;
            }
            .game-module-tag img {
                width: 28px;
            }
            .game-module-tag p {
                font-size: 10px;
            }
        }