        /* ========== 全局重置（关键！防止错位） ========== */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;  /* 防止padding/border撑大元素 */
        }

        html, body {
            max-width: 100%;
            overflow-x: hidden;
            position: relative;
        }

        body {
            background-color: var(--bg-primary);
            font-family: 'Inter', 'Roboto', sans-serif;
            color: var(--text-primary);
            line-height: 1.5;
            scroll-behavior: smooth;
            transition: background-color 0.3s ease, color 0.2s ease;
            width: 100%;
        }

        /* 全局变量 - 默认亮色主题 */
        :root {
            --bg-primary: #ffffff;
            --bg-secondary: rgba(0,0,0,0.02);
            --surface-card: rgba(255,255,255,0.8);
            --border-light: rgba(30,64,175,0.15);
            --text-primary: #0f172a;
            --text-secondary: #0f172a;
            --text-muted: #1e40af;
            --accent-blue: #1e40af;
            --accent-glow: rgba(30,64,175,0.1);
            --nav-bg: rgba(240,247,255,0.9);
            --table-header: #dbeafe;
            --detail-bg: rgba(0,0,0,0.02);
            --qa-bg: rgba(0,0,0,0.02);
            --overlay-dark: rgba(0,0,0,0.5);
        }

        body.dark-theme {
            --bg-primary: #0D0D0D;
            --bg-secondary: rgba(255,255,255,0.04);
            --surface-card: rgba(255,255,255,0.04);
            --border-light: rgba(255,255,255,0.1);
            --text-primary: #dbeafe;
            --text-secondary: #dbeafe;
            --text-muted: #1e40af;
            --accent-blue: #38bdf8;
            --accent-glow: rgba(0,180,216,0.2);
            --nav-bg: rgba(13,13,13,0.85);
            --table-header: #0f172a;
            --detail-bg: rgba(255,255,255,0.02);
            --qa-bg: rgba(255,255,255,0.02);
            --overlay-dark: rgba(0,0,0,0.65);
        }

        html {
            scroll-padding-top: 85px;
        }

        /* 自定义滚动条 */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent-blue);
            border-radius: 8px;
        }

        /* ========== 导航栏 ========== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 70px;
            background: var(--nav-bg);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            z-index: 1000;
        }
        .logo {
            font-weight: 700;
            font-size: 1.4rem;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-blue) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            white-space: nowrap;
        }
        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
            white-space: nowrap;
        }
        .nav-links a:hover {
            color: var(--accent-blue);
        }
        .theme-toggle {
            background: var(--surface-card);
            border: 1px solid var(--border-light);
            border-radius: 40px;
            padding: 0.3rem 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text-primary);
        }
        .menu-icon {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-primary);
            background: transparent;
            border: none;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            width: 100%;
        }

        /* 响应式导航 */
        @media (max-width: 768px) {
            .navbar { padding: 0 5%; height: 64px; }
            .menu-icon { display: block; }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 64px;
                left: 0;
                width: 100%;
                background: var(--nav-bg);
                backdrop-filter: blur(20px);
                padding: 1.5rem 0;
                gap: 1.2rem;
                text-align: center;
                border-bottom: 1px solid var(--border-light);
                z-index: 999;
            }
            .nav-links a { white-space: normal; }
            .nav-links.active { display: flex; }
            .theme-toggle { margin: 0 auto; width: fit-content; }
            .container { padding: 0 5%; }
        }

        /* ========== 海报大图区域 ========== */
        .hero-poster {
            position: relative;
            width: 100%;
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            overflow: hidden;
            margin-top: 70px;
            background-size: cover;
            background-position: center 35%;
            background-repeat: no-repeat;
        }
        .hero-poster::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay-dark);
            z-index: 1;
        }
        .hero-poster-content {
            position: relative;
            z-index: 2;
            max-width: 650px;
            margin-left: 8%;
            padding: 2rem;
            color: white;
            animation: fadeInUp 0.8s ease-out;
        }
        .hero-poster-content h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .hero-poster-content .highlight {
            background: linear-gradient(135deg, #fff 0%, #dbeafe 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-poster-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            opacity: 0.92;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }
        .hero-poster-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--accent-blue);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.2s ease, background 0.2s;
            font-size: 1rem;
            border: none;
            cursor: pointer;
        }
        .hero-poster-btn:hover {
            background: #0f172a;
            transform: translateY(-3px);
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @media (max-width: 768px) {
            .hero-poster { min-height: 70vh; margin-top: 64px; }
            .hero-poster-content { margin-left: 0; padding: 1.5rem; text-align: center; width: 100%; }
            .hero-poster-content h1 { font-size: 2rem; }
            .hero-poster-content p { font-size: 1rem; }
            .hero-poster-btn { margin: 0 auto; }
        }

        /* ========== 详细参数模块 ========== */
        .detail-spec-section {
            padding: 70px 0 40px;
            scroll-margin-top: 85px;
            width: 100%;
        }
        .section-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 2rem;
            border-left: 4px solid var(--accent-blue);
            padding-left: 1rem;
            word-break: break-word;
        }
        @media (max-width: 768px) {
            .section-title { font-size: 1.5rem; margin-bottom: 1.5rem; }
            .detail-spec-section { padding: 40px 0 30px; }
        }
        .detail-wrapper {
            background: var(--detail-bg);
            border-radius: 32px;
            border: 1px solid var(--border-light);
            overflow: hidden;
            width: 100%;
        }
        .detail-hero {
            display: flex;
            gap: 2rem;
            padding: 2rem;
            background: var(--surface-card);
            border-bottom: 1px solid var(--border-light);
            flex-wrap: wrap;
        }
        .detail-hero-img {
            flex: 1.2;
            min-width: 200px;
            max-width: 380px;
            border-radius: 24px;
            overflow: hidden;
            aspect-ratio: 4 / 3;
            background: #ffffff;
        }
        .detail-hero-img img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center;
        }
        .detail-hero-content {
            flex: 1;
            min-width: 0;
        }
        .detail-hero-content h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--accent-blue);
        }
        .detail-hero-content .sub {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .detail-hero-content p {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        .action-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 0.5rem;
        }
        .btn-custom {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0.7rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.25s ease;
            cursor: pointer;
            border: none;
            background: transparent;
        }
        .btn-primary-custom {
            background: var(--accent-blue);
            color: white;
            border: 1px solid var(--accent-blue);
        }
        .btn-primary-custom:hover {
            background: #0f172a;
            transform: translateY(-2px);
        }
        .btn-outline-custom {
            background: transparent;
            border: 1px solid var(--accent-blue);
            color: var(--accent-blue);
        }
        .btn-outline-custom:hover {
            background: var(--accent-glow);
            transform: translateY(-2px);
        }
        @media (max-width: 768px) {
            .detail-hero-img { max-width: 100%; aspect-ratio: 4 / 3; }
            .action-buttons { justify-content: flex-start; }
            .btn-custom { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
        }
        @media (max-width: 480px) {
            .action-buttons { flex-direction: column; width: 100%; }
            .btn-custom { justify-content: center; width: 100%; }
        }
        .detail-params { padding: 2rem; }
        .detail-params h4 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--accent-blue);
            flex-wrap: wrap;
        }
        
        /* 表格样式 */
        /* 参数表格 - 桌面端样式，移动端由 style.css 统一处理 */
        @media (min-width: 769px) {
        .spec-table-wrapper {
            width: 100%;
            overflow-x: auto;
            margin-bottom: 1rem;
            border-radius: 12px;
            background: #ffffff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            border: 1px solid #e8ecf0;
        }
        .param-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
        }
        .param-table th, .param-table td {
            padding: 12px 18px;
            text-align: left;
            border-bottom: 1px solid #e8ecf0;
            border-right: 1px solid #e8ecf0;
        }
        .param-table th {
            background: linear-gradient(180deg, #f5f7fa 0%, #edf1f5 100%);
            font-weight: 600;
            color: #3a4a5c;
            width: 15%;
            font-size: 0.9rem;
            border-top: 1px solid #e8ecf0;
            border-bottom: 1px solid #e8ecf0;
            border-right: 1px solid #e8ecf0;
        }
        .param-table td {
            color: #4a5a6c;
            font-size: 0.9rem;
            background: #ffffff;
        }
        .param-table th:first-child,
        .param-table td:first-child {
            border-left: 1px solid #e8ecf0;
        }
        .param-table th:last-child,
        .param-table td:last-child {
            border-right: none;
        }
        .param-table tbody tr:nth-child(even) td {
            background-color: #fafbfc;
        }
        .param-table tbody tr:hover td {
            background-color: #f5f8fb;
            transition: background 0.2s ease;
        }
        .param-table tr:last-child td, .param-table tr:last-child th {
            border-bottom: none;
        }
        }

        /* ========== 移动端（≤768px）：param-table 卡片化 ========== */
        @media (max-width: 768px) {
            /* 表格容器重置 */
            .param-table {
                border: none !important;
                border-collapse: collapse !important;
                border-spacing: 0 !important;
                border-radius: 0 !important;
                box-shadow: none !important;
                background: transparent !important;
                margin: 16px 0;
                overflow: visible;
            }

            /* 表格元素显示为块级 */
            .param-table,
            .param-table tbody,
            .param-table tr,
            .param-table td,
            .param-table th {
                display: block !important;
                width: 100% !important;
                box-sizing: border-box;
            }

            /* 每行变为独立卡片 */
            .param-table tr {
                margin-bottom: 18px;
                border: 1.5px solid var(--accent-blue, #1e40af);
                border-radius: 12px;
                background: #ffffff;
                box-shadow: 0 2px 12px rgba(22, 45, 69, 0.06);
                overflow: hidden;
            }

            /* 卡片hover效果 */
            .param-table tr:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 20px rgba(29, 86, 214, 0.12);
                border-color: var(--accent-blue, #1e40af);
            }

            /* 单元格flex布局 */
            .param-table th,
            .param-table td {
                display: flex !important;
                justify-content: space-between;
                align-items: center;
                padding: 10px 16px;
                border-bottom: 1px dashed #c8d6e4 !important;
                border-left: none !important;
                border-right: none !important;
                border-top: none !important;
                border-radius: 0 !important;
                text-align: right !important;
                background: transparent !important;
                color: var(--text-secondary, #4a5a6c) !important;
                font-weight: normal !important;
                font-size: inherit !important;
                min-height: 42px;
                width: 100% !important;
            }

            /* 最后单元格去边框 */
            .param-table th:last-child,
            .param-table td:last-child {
                border-bottom: none !important;
            }

            /* 第一列（th）样式特殊 */
            .param-table th {
                background: var(--bg-secondary, #f0f7ff) !important;
                font-weight: 700 !important;
                color: var(--text-primary, #0c3d7a) !important;
                font-size: inherit !important;
                padding-top: 14px;
                padding-bottom: 14px;
                border-bottom: 2px solid var(--accent-blue, #1e40af) !important;
                width: 100% !important;
            }

            /* 偶数行清除条纹 */
            .param-table tbody tr:nth-child(even) td {
                background: transparent !important;
            }
        }
        
        .text-block {
            margin-top: 2rem;
            padding: 1.5rem;
            background: var(--surface-card);
            border-radius: 24px;
            border-left: 4px solid var(--accent-blue);
        }
        .text-block p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .detail-hero { flex-direction: column; padding: 1.5rem; gap: 1.2rem; }
            .detail-hero-content h3 { font-size: 1.6rem; }
            .text-block { padding: 1rem; }
        }

        /* ========== 视频播放器模块（原生 HTML5，完美自适应） ========== */
        .video-showcase-section {
            padding: 50px 0 40px;
            scroll-margin-top: 85px;
            width: 100%;
        }
        .video-grid.single-video {
            display: flex;
            flex-direction: column;
            max-width: 1000px;
            margin: 0 auto;
        }
        .video-card {
            background: var(--surface-card);
            border: 1px solid var(--border-light);
            border-radius: 28px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .video-card:hover {
            transform: translateY(-6px);
            border-color: var(--accent-blue);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
        }
        .video-wrapper {
            position: relative;
            width: 100%;
            background: #000;
        }
        /* 关键：视频自适应比例，防止错位 */
        .custom-video {
            width: 100%;
            height: auto;
            display: block;
            aspect-ratio: 16 / 9;
            object-fit: cover;
        }
        .video-info {
            padding: 1.2rem 1.5rem 1.5rem;
        }
        .video-info h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--accent-blue);
        }
        .video-info p {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        @media (max-width: 768px) {
            .video-showcase-section { padding: 40px 0 30px; }
            .video-info h3 { font-size: 1rem; }
        }

        /* ========== 问答模块 ========== */
        .qa-section {
            padding: 50px 0 40px;
            scroll-margin-top: 85px;
            width: 100%;
        }
        .qa-grid {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .qa-item {
            background: var(--qa-bg);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            overflow: hidden;
        }
        .qa-question {
            padding: 1.2rem 1.5rem;
            background: var(--surface-card);
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .qa-question i {
            color: var(--accent-blue);
            transition: transform 0.25s ease;
        }
        .qa-question.active i {
            transform: rotate(180deg);
        }
        .qa-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
            padding: 0 1.5rem;
            color: var(--text-secondary);
        }
        .qa-answer.show {
            max-height: 300px;
            padding: 1rem 1.5rem 1.3rem;
            border-top: 1px solid var(--border-light);
        }
        @media (max-width: 768px) {
            .qa-section { padding: 40px 0 30px; }
            .qa-question { font-size: 0.95rem; padding: 1rem 1.2rem; }
        }

        /* ========== 下载模块 ========== */
        .resources-section {
            padding: 50px 0 50px;
            scroll-margin-top: 85px;
        }
        .download-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        .download-card {
            background: var(--surface-card);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            padding: 1.2rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .download-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent-blue);
        }
        .download-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex: 2;
            min-width: 160px;
        }
        .download-info i {
            font-size: 1.8rem;
            color: var(--accent-blue);
        }
        .download-details h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.2rem;
        }
        .download-meta {
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .download-btn-sm {
            background: transparent;
            border: 1px solid var(--accent-blue);
            border-radius: 40px;
            padding: 0.5rem 1.2rem;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--accent-blue);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }
        .download-btn-sm:hover {
            background: var(--accent-blue);
            color: white;
        }
        @media (max-width: 768px) {
            .download-grid { grid-template-columns: 1fr; gap: 1rem; }
            .download-card { padding: 1rem; justify-content: flex-start; }
            .download-info { justify-content: flex-start; }
            .resources-section { padding: 40px 0; }
        }

        .footer {
            padding: 2rem 0;
            border-top: 1px solid var(--border-light);
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        @media (max-width: 768px) {
            .footer { padding: 1.5rem 0; font-size: 0.75rem; }
        }

        /* ============================================
           通用表格样式 - 与产品详情页保持一致
           用于新闻详情页、专题内容页等
           桌面端样式，移动端由 style.css 统一处理
           ============================================ */
        @media (min-width: 769px) {
            .article-content table,
            .article-content .param-table {
                width: 100% !important;
                max-width: 100% !important;
                border-collapse: separate !important;
                border-spacing: 0 !important;
                margin: 1.5rem 0 !important;
                border-radius: 12px !important;
                padding: 0 !important;
                font-size: 0.88rem !important;
                background: #ffffff !important;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
                table-layout: auto !important;
                overflow: hidden !important;
                border: 1px solid #e8ecf0 !important;
            }

            /* 表头样式 - 桌面端（移动端由 style.css 处理） */
            .article-content table th,
            .article-content table tr:first-child td {
                background: linear-gradient(180deg, #f5f7fa 0%, #edf1f5 100%);
                color: #3a4a5c;
                font-weight: 600;
                padding: 12px 18px;
                border: none;
                border-bottom: 1px solid #e8ecf0;
                text-align: left;
                vertical-align: middle;
                letter-spacing: normal;
            }

            /* 单元格样式 */
            .article-content table td {
                padding: 12px 18px;
                border: none;
                border-bottom: 1px solid #e8ecf0;
                border-right: 1px solid #e8ecf0;
                text-align: left;
                vertical-align: middle;
                background-color: #ffffff;
                color: #4a5a6c;
                font-size: 0.9rem;
            }

            /* 最后一列去掉右边框 */
            .article-content table td:last-child,
            .article-content table th:last-child {
                border-right: none;
            }

            /* 偶数行极浅灰条纹 */
            .article-content table tbody tr:nth-child(even) td {
                background-color: #fafbfc;
            }

            /* 悬停效果 */
            .article-content table tbody tr:hover td {
                background-color: #f5f8fb;
                transition: background 0.2s ease;
            }

            /* 最后一行去掉底边框 */
            .article-content table tbody tr:last-child td {
                border-bottom: none;
            }

            /* 空单元格占位符 */
            .article-content table td:empty::before {
                content: "—";
                color: #c8d0d8;
                font-weight: 300;
                letter-spacing: 0.5px;
            }
        }

        /* ========== 暗黑模式 - 桌面端表格样式 ========== */
        @media (min-width: 769px) {
            body.dark-theme .spec-table-wrapper,
            body.dark-theme .param-table,
            body.dark-theme .article-content table,
            body.dark-theme .article-content .param-table {
                background: #252d38;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
                border: 1px solid #3a4555;
            }
            body.dark-theme .param-table th,
            body.dark-theme .param-table td,
            body.dark-theme .article-content table td {
                border-color: #3a4555;
            }
            body.dark-theme .param-table th {
                background: linear-gradient(180deg, #2e3844 0%, #252d38 100%);
                color: #c8d0d8;
                border-top-color: #3a4555;
                border-bottom-color: #3a4555;
                border-right-color: #3a4555;
            }
            body.dark-theme .param-table td,
            body.dark-theme .article-content table td {
                background: #252d38;
                color: #b0bac4;
            }
            body.dark-theme .param-table tbody tr:nth-child(even) td,
            body.dark-theme .article-content table tbody tr:nth-child(even) td {
                background: #2a3240;
            }
            body.dark-theme .param-table tbody tr:hover td,
            body.dark-theme .article-content table tbody tr:hover td {
                background: #333d4d;
            }
            body.dark-theme .article-content table th,
            body.dark-theme .article-content table tr:first-child td {
                background: linear-gradient(180deg, #2e3844 0%, #252d38 100%);
                color: #c8d0d8;
                border-bottom-color: #3a4555;
            }
            body.dark-theme .article-content table td:empty::before {
                color: rgba(160, 175, 190, 0.3);
            }
        }