 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
        :root { 
            --bg: #000; 
            --text: #fff; 
            --blue: #0066FF; 
        }
        body { 
            background: var(--bg); 
            color: var(--text); 
            font-family: 'Inter', sans-serif; 
            margin: 0; 
            overflow-x: hidden; 
            font-size: 18px; /* 设置最小字号为18px */
        }
        * {
            font-size: inherit; /* 继承body的字体大小 */
        }
        a, button { 
            background: none!important; 
            outline: none!important; 
            transition: 0.3s; 
        }
        .nav-blur { 
            background: rgba(0,0,0,0.9); 
            backdrop-filter: blur(20px); 
            border-bottom: 1px solid rgba(255,255,255,0.1); 
        }
        .btn-shiny { 
            position: relative; 
            overflow: hidden; 
            background: var(--blue)!important; 
            box-shadow: 0 0 20px rgba(0,102,255,0.4); 
            border-radius: 0.75rem; 
        }
        .btn-shiny::after { 
            content: ""; 
            position: absolute; 
            top: -50%; 
            left: -150%; 
            width: 200%; 
            height: 200%; 
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent); 
            transform: rotate(45deg); 
            transition: 0.6s; 
        }
        .btn-shiny:hover::after { 
            left: 150%; 
        }
        
        .btn-docs {
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 99px;
            color: rgba(255,255,255,0.9);
            transition: all 0.3s ease;
        }
        .btn-docs:hover {
            background-color: rgba(0, 102, 255, 0.9) !important;
            color: white !important;
            border-color: rgba(0, 102, 255, 0.9);
            box-shadow: 0 0 25px rgba(0, 102, 255, 0.5);
        }
        
        .glass-card { 
            border: 1px solid rgba(255,255,255,0.1); 
            background: rgba(255,255,255,0.02); 
            border-radius: 2rem; 
            transition: 0.4s; 
        }
        .glass-card:hover { 
            border-color: rgba(255,255,255,0.2); 
            background: rgba(255,255,255,0.05); 
            transform: translateY(-5px); 
        }
        
        #mobile-menu { 
            position: fixed; 
            top: 0; 
            right: 0; 
            width: 100%; 
            height: 100vh; 
            z-index: 40; 
            transition: 0.5s; 
            transform: translateX(100%); 
            background: rgba(0,0,0,0.98); 
            backdrop-filter: blur(20px);
            padding: 120px 40px; 
            display: flex; 
            flex-direction: column; 
            gap: 2rem; 
        }
        #mobile-menu.active { 
            transform: translateX(0); 
        }
        
        .nav-item .dropdown-menu { 
            opacity: 0; 
            visibility: hidden; 
            position: absolute; 
            top: 100%; 
            left: 0; 
            background: rgba(0,0,0,0.95); 
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1); 
            padding: 1rem; 
            width: 240px; 
            transition: 0.3s; 
            border-radius: 1rem;
            z-index: 100;
        }
        .nav-item:hover .dropdown-menu { 
            opacity: 1; 
            visibility: visible; 
        }
        
        /* 核心技术页面新增样式 */
        .tech-hero {
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0,0,0,0) 100%);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        
        .tech-architecture {
            background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0, 102, 255, 0.03) 100%);
        }
        
        .tech-timeline {
            position: relative;
            padding-left: 40px;
        }
        
        .tech-timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, var(--blue) 0%, rgba(0, 102, 255, 0.3) 100%);
            border-radius: 3px;
        }
        
        .tech-timeline-item {
            position: relative;
            margin-bottom: 40px;
        }
        
        .tech-timeline-item::before {
            content: '';
            position: absolute;
            left: -46px;
            top: 5px;
            width: 16px;
            height: 16px;
            background: var(--blue);
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
        }
        
        .tech-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .tech-table th {
            background: rgba(0, 102, 255, 0.1);
            padding: 1.2rem 1.5rem;
            text-align: left;
            font-weight: 700;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .tech-table td {
            padding: 1.2rem 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        
        .tech-table tr:last-child td {
            border-bottom: none;
        }
        
        .tech-table tr:hover {
            background: rgba(255,255,255,0.02);
        }
        
        .tech-badge {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: rgba(0, 102, 255, 0.1);
            border-radius: 99px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
            border: 1px solid rgba(0, 102, 255, 0.3);
        }
        
        .tech-progress {
            height: 8px;
            background: rgba(255,255,255,0.1);
            border-radius: 4px;
            overflow: hidden;
        }
        
        .tech-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--blue) 0%, rgba(0, 102, 255, 0.7) 100%);
            border-radius: 4px;
        }
        
        .tech-demo {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 1.5rem;
            border: 1px solid rgba(255,255,255,0.1);
            overflow: hidden;
        }
        
        .tech-demo-header {
            background: rgba(0, 0, 0, 0.5);
            padding: 1.2rem 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .tech-demo-body {
            padding: 2rem;
            min-height: 300px;
        }
        
        .code-block {
            font-family: 'Courier New', monospace;
            background: rgba(0, 0, 0, 0.5);
            padding: 1.5rem;
            border-radius: 0.75rem;
            overflow-x: auto;
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .tech-spec-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .tech-spec-item {
            background: rgba(255,255,255,0.02);
            border-radius: 1rem;
            padding: 1.5rem;
            border: 1px solid rgba(255,255,255,0.05);
        }
        
        .tech-spec-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--blue);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        /* 调整整体字体大小 */
        h1, h2, h3, h4, h5, h6 {
            line-height: 1.2;
        }
        
        p, span, a, button, li {
            font-size: 1.1rem !important; /* 默认文字大小 */
        }
        
        .text-sm {
            font-size: 1rem; /* 调整小字大小 */
        }
        
        .text-xs {
            font-size: 0.95rem !important; /* 调整超小字大小 */
        }
        
        /* 确保导航栏字体大小合适 */
        nav a, nav button {
            font-size: 1.1rem;
        }
        
        /* 新增粒子特效样式 */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            pointer-events: none;
        }
        
        /* 动态数据流样式 */
        .data-stream {
            position: relative;
            overflow: hidden;
        }
        
        .data-stream::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.8), transparent);
            animation: dataFlow 3s linear infinite;
        }
        
        @keyframes dataFlow {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }
        
        /* 浮动粒子 */
        .floating-particles {
            position: absolute;
            pointer-events: none;
            z-index: -1;
            display: none; /* 默认隐藏，移动端不显示 */
        }
        
        .particle {
            position: absolute;
            background: rgba(0, 102, 255, 0.1);
            border-radius: 50%;
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(100px, 100px) rotate(90deg);
            }
            50% {
                transform: translate(0, 200px) rotate(180deg);
            }
            75% {
                transform: translate(-100px, 100px) rotate(270deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }
        
        /* 动态数字计数器 */
        .counter {
            font-variant-numeric: tabular-nums;
        }
        
        /* 脉冲效果 */
        .pulse-effect {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.4);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(0, 102, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
            }
        }
        
        /* 技术架构图动态效果 */
        .tech-architecture .glass-card {
            position: relative;
            overflow: hidden;
        }
        
        .tech-architecture .glass-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(
                from 0deg,
                transparent,
                rgba(0, 102, 255, 0.1),
                rgba(0, 102, 255, 0.3),
                rgba(0, 102, 255, 0.1),
                transparent 30%
            );
            animation: rotate 10s linear infinite;
            z-index: -1;
        }
        
        @keyframes rotate {
            100% {
                transform: rotate(360deg);
            }
        }
        
        /* 数据点动画 */
        .data-point {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(0, 102, 255, 0.8);
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
            animation: dataPoint 3s infinite;
            display: none; /* 默认隐藏，移动端不显示 */
        }
        
        @keyframes dataPoint {
            0%, 100% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.5);
                opacity: 1;
            }
        }
        
        /* 首屏小圆点增强效果 */
        .hero-pulse-dot {
            width: 16px;
            height: 16px;
            background: var(--blue);
            border-radius: 50%;
            animation: hero-pulse 1.5s infinite ease-in-out;
            box-shadow: 0 0 20px rgba(0, 102, 255, 0.8);
        }
        
        @keyframes hero-pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 0 20px rgba(0, 102, 255, 0.8);
                opacity: 1;
            }
            50% {
                transform: scale(1.3);
                box-shadow: 0 0 30px rgba(0, 102, 255, 1);
                opacity: 0.8;
            }
        }
        
        /* 移动端优化 */
        @media (max-width: 768px) {
            body {
                font-size: 16px;
            }
            
            .glass-card {
                padding: 1.5rem !important;
                border-radius: 1.5rem !important;
            }
            
            #mobile-menu {
                padding: 100px 25px;
            }
            
            #mobile-menu a {
                font-size: 1.8rem;
            }
            
            .tech-spec-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .tech-timeline {
                padding-left: 25px;
            }
            
            .tech-timeline-item::before {
                left: -32px;
                width: 14px;
                height: 14px;
            }
            
            .tech-hero h1 {
                font-size: 3rem !important;
                line-height: 1.1;
            }
            
            .tech-hero p {
                font-size: 1.1rem !important;
            }
            
            /* 移动端减少粒子数量 */
            #particles-js {
                opacity: 0.5; /* 降低移动端粒子透明度 */
            }
            
            /* 移动端隐藏浮动粒子和数据点 */
            .floating-particles {
                display: none !important;
            }
            
            .data-point {
                display: none !important;
            }
            
            /* 移动端首屏小圆点调整 */
            .hero-pulse-dot {
                width: 12px;
                height: 12px;
            }
            
            /* 移动端代码块优化 */
            .code-block {
                padding: 1rem;
                font-size: 0.9rem;
            }
            
            /* 移动端表格优化 */
            .tech-table th,
            .tech-table td {
                padding: 0.8rem 1rem;
                font-size: 0.9rem;
            }
            
            /* 移动端按钮优化 */
            .btn-shiny, .btn-docs {
                padding: 0.8rem 1.5rem !important;
                font-size: 1rem !important;
                width: 100%;
                margin-bottom: 0.5rem;
            }
            
            /* 移动端技术架构图优化 */
            .tech-demo-body {
                padding: 1.5rem;
            }
            
            /* 移动端进度条优化 */
            .tech-progress {
                height: 6px;
            }
            
            /* 移动端徽章优化 */
            .tech-badge {
                padding: 0.3rem 0.8rem;
                font-size: 0.85rem;
            }
        }
        
        /* 平板端优化 */
        @media (min-width: 769px) and (max-width: 1024px) {
            .tech-spec-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .tech-hero h1 {
                font-size: 4rem !important;
            }
            
            .glass-card {
                padding: 2rem !important;
            }
        }
        
        /* 桌面端确保最小字号 */
        @media (min-width: 1025px) {
            body {
                font-size: 18px;
            }
            
            /* 桌面端显示浮动粒子和数据点 */
            .floating-particles {
                display: block !important;
            }
            
            .data-point {
                display: block !important;
            }
            
            /* 桌面端首屏小圆点 */
            .hero-pulse-dot {
                width: 18px;
                height: 18px;
            }
        }
        
        /* 超大屏幕优化 */
        @media (min-width: 1600px) {
            .tech-hero h1 {
                font-size: 4.5rem !important;
				font-weight: 600;			
            }
        }
        
        /* 防止动画在用户减少运动设置时播放 */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        /* 触摸设备优化 */
        @media (hover: none) and (pointer: coarse) {
            .glass-card:hover {
                transform: none !important;
            }
            
            .nav-item .dropdown-menu {
                display: none;
            }
            
            .nav-item:active .dropdown-menu,
            .nav-item:focus .dropdown-menu {
                display: block;
            }
        }
        
        /* 性能优化 - 只在需要时触发GPU加速 */
        .gpu-accelerated {
            transform: translateZ(0);
            backface-visibility: hidden;
            perspective: 1000px;
        }
		        /* 新增的流程图样式 - 优化高度 */
        .flow-chart-container {
            position: relative;
            min-height: 320px; /* 减少高度 */
            padding: 1.5rem; /* 减少内边距 */
            overflow: hidden;
        }
        
        .flow-step {
            position: relative;
            background: rgba(0, 102, 255, 0.1);
            border: 1px solid rgba(0, 102, 255, 0.3);
            border-radius: 0.75rem; /* 减小圆角 */
            padding: 1rem; /* 减少内边距 */
            margin-bottom: 1.5rem; /* 减少间距 */
            transition: all 0.3s ease;
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(15px);
            height: 120px; /* 固定高度 */
            overflow: hidden;
        }
        
        .flow-step.active {
            background: rgba(0, 102, 255, 0.15);
            border-color: rgba(0, 102, 255, 0.6);
            box-shadow: 0 0 15px rgba(0, 102, 255, 0.2);
        }
        
        .flow-step-header {
            display: flex;
            align-items: center;
            gap: 0.75rem; /* 减少间隙 */
            margin-bottom: 0.5rem;
        }
        
        .step-number {
            width: 28px; /* 减小 */
            height: 28px; /* 减小 */
            background: var(--blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700; /* 减轻字重 */
            font-size: 1rem; /* 减小 */
            box-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
            flex-shrink: 0; /* 防止压缩 */
        }
        
        .step-title {
            font-size: 1.1rem; /* 减小 */
            font-weight: 600; /* 减轻字重 */
            color: white;
            white-space: nowrap; /* 防止换行 */
        }
        
        .step-processes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* 减小最小宽度 */
            gap: 0.5rem; /* 减小间隙 */
            margin-top: 0.5rem;
        }
        
        .process-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0.5rem; /* 减小圆角 */
            padding: 0.5rem; /* 减小内边距 */
            transition: all 0.2s ease;
            position: relative;
            overflow: hidden;
            font-size: 0.85rem; /* 减小字体 */
            height: 36px; /* 固定高度 */
            display: flex;
            align-items: center;
        }
        
        .process-item:hover {
            background: rgba(0, 102, 255, 0.1);
            transform: translateY(-2px); /* 减小悬停移动 */
        }
        
        .process-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .process-item:hover::before {
            left: 100%;
        }
        
        .process-icon {
            color: var(--blue);
            margin-right: 0.25rem; /* 减小 */
            font-size: 0.9rem; /* 减小 */
            flex-shrink: 0; /* 防止压缩 */
        }
        
        .process-item span {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .flow-connector {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            height: 20px; /* 大大减少连接线高度 */
            width: 2px;
            background: linear-gradient(180deg, rgba(0, 102, 255, 0.6), rgba(0, 102, 255, 0.3));
            z-index: 1;
        }
        
        .flow-connector.animated::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent, var(--blue), transparent);
            animation: flowDown 1.5s infinite linear; /* 加快动画 */
        }
        
        .flow-controls {
            display: flex;
            justify-content: center;
            gap: 0.75rem; /* 减小间隙 */
            margin-top: 1.5rem; /* 减小上边距 */
            padding-top: 0.5rem;
        }
        
        .flow-btn {
            background: rgba(0, 102, 255, 0.1);
            border: 1px solid rgba(0, 102, 255, 0.3);
            color: white;
            padding: 0.4rem 1rem; /* 减小内边距 */
            border-radius: 0.4rem; /* 减小圆角 */
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.85rem; /* 减小字体 */
            white-space: nowrap;
        }
        
        .flow-btn:hover {
            background: rgba(0, 102, 255, 0.2);
            border-color: var(--blue);
        }
        
        .flow-btn i {
            margin-right: 0.25rem; /* 减小 */
        }
        
        .data-flow {
            position: absolute;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--blue), transparent);
            animation: dataFlow 3s linear infinite;
            display: none;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes flowDown {
            0% {
                top: -100%;
            }
            100% {
                top: 100%;
            }
        }
        
        @keyframes dataFlow {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .flow-chart-container {
                min-height: 280px;
                padding: 1rem;
            }
            
            .flow-step {
                margin-bottom: 1.25rem;
                padding: 0.75rem;
                height: 110px;
            }
            
            .step-processes {
                grid-template-columns: 1fr;
                gap: 0.4rem;
            }
            
            .process-item {
                height: 34px;
                font-size: 0.8rem;
            }
            
            .step-number {
                width: 24px;
                height: 24px;
                font-size: 0.9rem;
            }
            
            .step-title {
                font-size: 1rem;
            }
            
            .flow-connector {
                height: 15px;
            }
            
            .flow-controls {
                flex-wrap: wrap;
                margin-top: 1rem;
            }
            
            .flow-btn {
                padding: 0.3rem 0.75rem;
                font-size: 0.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .flow-chart-container {
                min-height: 260px;
            }
            
            .flow-step {
                height: 135px; /* 在移动端增加高度以容纳更多内容 */
            }
            
            .step-title {
                font-size: 0.95rem;
            }
            
            .flow-controls {
                gap: 0.5rem;
            }
            
            .flow-btn {
                padding: 0.25rem 0.6rem;
                font-size: 0.75rem;
            }
        }
        
        /* 大屏幕优化 */
        @media (min-width: 1600px) {
            .flow-chart-container {
                min-height: 340px;
            }
            
            .flow-step {
                height: 130px;
            }
            
            .step-processes {
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            }
        }
        
        /* 超小屏幕 */
        @media (max-width: 360px) {
            .flow-chart-container {
                min-height: 240px;
            }
            
            .flow-step {
                height: 140px;
                padding: 0.6rem;
            }
            
            .step-processes {
                grid-template-columns: 1fr;
            }
        }
        
        /* 技术演示区域调整 */
        .tech-demo-body {
            padding: 1rem !important; /* 减少内边距 */
            min-height: 280px; /* 减少最小高度 */
        }
