        /* ========== 全局基础样式（与首页保持一致） ========== */
        :root {
            --primary-color: #2563eb;
            --primary-hover: #1d4ed8;
            --primary-light: #dbeafe;
            --accent-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
            --text-main: #111827;
            --text-muted: #4b5563;
            --text-light: #6b7280;
            --bg-light: #f9fafb;
            --bg-white: #ffffff;
            --border-color: #e5e7eb;
            --border-light: #f3f4f6;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 20px rgba(37, 99, 235, 0.08);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-full: 50px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
            color: var(--text-main);
            line-height: 1.7;
            background-color: var(--bg-white);
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

        /* 顶部导航 */
        header {
            border-bottom: 1px solid var(--border-light);
            position: sticky; top: 0;
            background-color: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 1000;
            transition: var(--transition);
        }
        header.scrolled { box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06); }
        .nav-wrapper { display: flex; justify-content: space-between; align-items: center; height: 72px; gap: 20px; }
        .logo-container { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
        .logo-svg { width: 36px; height: 36px; filter: drop-shadow(0 2px 6px rgba(37, 99, 235, 0.3)); transition: var(--transition); }
        .logo-container:hover .logo-svg { transform: scale(1.05); }
        .logo-text { font-size: 22px; font-weight: 700; color: var(--primary-color); letter-spacing: -0.5px; white-space: nowrap; }
        .logo-text span { background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        nav ul { display: flex; list-style: none; gap: 22px; align-items: center; }
        nav a { font-weight: 500; color: var(--text-muted); font-size: 14px; transition: var(--transition); position: relative; padding: 6px 2px; white-space: nowrap; }
        nav a::after { content: ''; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--accent-gradient); border-radius: 2px; transition: var(--transition); }
        nav a:hover, nav a.active { color: var(--primary-color); }
        nav a:hover::after, nav a.active::after { width: 100%; }

        /* ========== 实验室 Hero ========== */
        .lab-hero {
            background: linear-gradient(135deg, #0b1120 0%, #1e3a8a 50%, #2563eb 100%);
            color: #fff;
            padding: 90px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .lab-hero::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: radial-gradient(circle at 60% 30%, rgba(124, 58, 237, 0.2) 0%, transparent 60%);
            pointer-events: none;
            animation: pulseGlow 6s ease-in-out infinite alternate;
        }
        @keyframes pulseGlow {
            0% { transform: scale(1); opacity: 0.6; }
            100% { transform: scale(1.1); opacity: 1; }
        }
        .lab-hero .container { position: relative; z-index: 2; }
        .lab-hero h1 {
            font-size: 44px;
            font-weight: 800;
            letter-spacing: -1.5px;
            margin-bottom: 18px;
            background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .lab-hero p {
            font-size: 18px;
            color: rgba(255,255,255,0.85);
            max-width: 750px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }
        .hero-badge-lab {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.25);
            color: #fff;
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 28px;
        }
        .btn-white {
            display: inline-flex; align-items: center; gap: 10px;
            background: #fff; color: #2563eb; font-weight: 700;
            padding: 16px 40px; border-radius: var(--radius-full);
            font-size: 16px; transition: var(--transition);
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }
        .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

        /* 通用标题 */
        .section-title { text-align: center; font-size: 32px; margin-bottom: 14px; letter-spacing: -0.8px; font-weight: 800; color: var(--text-main); }
        .section-subtitle { text-align: center; font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto 48px; line-height: 1.7; }

        /* ========== 监测面板数据卡片 ========== */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        .metric-card {
            background: #fff;
            border-radius: 20px;
            padding: 26px 20px;
            text-align: center;
            border: 1px solid #eef2f6;
            box-shadow: 0 4px 16px rgba(0,0,0,0.02);
            transition: var(--transition);
        }
        .metric-card:hover {
            border-color: #bfdbfe;
            box-shadow: 0 12px 30px rgba(37,99,235,0.08);
            transform: translateY(-3px);
        }
        .metric-value {
            font-size: 36px;
            font-weight: 800;
            color: #2563eb;
            letter-spacing: -1px;
            margin-bottom: 6px;
        }
        .metric-label {
            font-size: 14px;
            color: #64748b;
            font-weight: 500;
        }

        /* ========== 技术研发管道 ========== */
        .pipeline-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }
        .pipeline-card {
            background: #fff;
            border-radius: 24px;
            padding: 32px 26px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid #eef2f6;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .pipeline-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(37,99,235,0.1);
            border-color: #dbeafe;
        }
        .pipeline-card::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; height: 4px;
            background: var(--accent-gradient);
            opacity: 0; transition: opacity 0.3s;
        }
        .pipeline-card:hover::after { opacity: 1; }
        .pipeline-icon { font-size: 36px; margin-bottom: 16px; }
        .pipeline-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: #0f172a; }
        .pipeline-card p { font-size: 14px; color: #475569; line-height: 1.7; }
        .pipeline-status {
            display: inline-block;
            margin-top: 12px;
            padding: 4px 14px;
            border-radius: 20px;
            background: #dcfce7;
            color: #16a34a;
            font-size: 12px;
            font-weight: 700;
        }

        /* ========== 效果验证对比 ========== */
        .comparison-chart {
            background: #fff;
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border: 1px solid #eef2f6;
            margin-top: 40px;
        }
        .chart-row {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }
        .chart-label {
            width: 100px;
            font-weight: 600;
            font-size: 14px;
            color: #475569;
        }
        .chart-track {
            flex: 1;
            height: 24px;
            background: #f1f5f9;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }
        .chart-fill {
            height: 100%;
            border-radius: 12px;
            background: linear-gradient(90deg, #2563eb, #7c3aed);
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding-right: 8px;
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            transition: width 1.2s ease;
        }
        .chart-fill.alt {
            background: linear-gradient(90deg, #94a3b8, #64748b);
        }

        /* ========== 节点质量评分表 ========== */
        .node-score-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 40px;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .node-score-table th, .node-score-table td {
            border: 1px solid var(--border-light);
            padding: 12px 16px;
            text-align: left;
            font-size: 14px;
        }
        .node-score-table th {
            background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
            font-weight: 700;
            color: var(--text-main);
        }
        .node-score-table tr:hover td { background-color: #fafbff; }
        .score-badge {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }
        .score-high { background: #dcfce7; color: #16a34a; }
        .score-medium { background: #fef9c3; color: #ca8a04; }
        .score-low { background: #fee2e2; color: #dc2626; }

        /* ========== 跨网互联研究摘要 ========== */
        .research-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }
        .research-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 24px;
            border: 1px solid #eef2f6;
            transition: var(--transition);
        }
        .research-card:hover {
            border-color: #bfdbfe;
            box-shadow: 0 12px 30px rgba(37,99,235,0.08);
        }
        .research-date {
            font-size: 12px;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .research-card h4 {
            font-size: 17px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 10px;
            line-height: 1.5;
        }
        .research-card p {
            font-size: 14px;
            color: #475569;
            line-height: 1.7;
        }

        /* ========== 时间线 ========== */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 60px auto 0;
            padding-left: 40px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 18px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, #2563eb, #7c3aed);
            border-radius: 3px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 32px;
            padding-left: 20px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -12px;
            top: 6px;
            width: 16px;
            height: 16px;
            background: #fff;
            border: 4px solid #2563eb;
            border-radius: 50%;
            box-shadow: 0 0 0 4px rgba(37,99,235,0.2);
        }
        .timeline-date {
            font-weight: 700;
            color: #2563eb;
            font-size: 14px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .timeline-content {
            background: #fff;
            border-radius: 16px;
            padding: 20px 24px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.03);
            border: 1px solid #eef2f6;
            margin-top: 8px;
        }
        .timeline-content h4 {
            font-size: 16px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 6px;
        }
        .timeline-content p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
        }

        /* ========== 页脚 ========== */
        footer {
            border-top: 1px solid var(--border-light);
            padding: 50px 0 30px;
            text-align: center;
            color: var(--text-muted);
            font-size: 13px;
            background-color: var(--bg-light);
        }
        .footer-links {
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
        }
        .footer-links a { color: var(--text-muted); font-weight: 500; font-size: 13px; transition: var(--transition); }
        .footer-links a:hover { color: var(--primary-color); }
        .footer-brand { font-weight: 700; color: var(--text-main); font-size: 14px; margin-bottom: 6px; }
        .footer-domain { color: var(--text-light); font-size: 12px; margin-bottom: 16px; }

        /* 响应式 */
        @media (max-width: 1024px) {
            nav ul { gap: 14px; }
            nav a { font-size: 13px; }
            .lab-hero h1 { font-size: 36px; }
        }
        @media (max-width: 768px) {
            .lab-hero { padding: 60px 0 50px; }
            .lab-hero h1 { font-size: 28px; letter-spacing: -0.5px; }
            .lab-hero p { font-size: 16px; }
            .section-title { font-size: 24px; }
            nav ul { gap: 10px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
            nav a { font-size: 12px; white-space: nowrap; }
            .nav-wrapper { height: 60px; gap: 10px; }
            .logo-text { font-size: 18px; }
            .pipeline-grid { grid-template-columns: 1fr; }
            .research-grid { grid-template-columns: 1fr; }
            .node-score-table { display: block; overflow-x: auto; }
        }
        @media (max-width: 480px) {
            .lab-hero h1 { font-size: 24px; }
            .lab-hero p { font-size: 14px; }
            .logo-text { font-size: 16px; }
            .logo-svg { width: 28px; height: 28px; }
            .container { padding: 0 16px; }
        }