
        @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; 
            --green: #10B981; /* 新增出海主题色 */
            --purple: #8B5CF6; /* 新增AI主题色 */
        }
        body { 
            background: var(--bg); 
            color: var(--text); 
            font-family: 'Inter', sans-serif; 
            margin: 0; 
            overflow-x: hidden; 
            font-size: 18px;
        }
        * {
            font-size: inherit;
        }
		        /* 确保导航栏字体大小合适 */
        p, span, a, button, li {
            font-size: 1.1rem !important;
        }
        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(--green)!important; 
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.4); 
            border-radius: 99px;
        }
        .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(16, 185, 129, 0.9) !important;
            color: white !important;
            border-color: rgba(16, 185, 129, 0.9);
            box-shadow: 0 0 25px rgba(16, 185, 129, 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; 
        }
        
        /* 品牌AI出海页面新增样式 */
        .global-hero {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(0,0,0,0) 100%);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        
        .global-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
            gap: 1.5rem;
        }
        
        .service-card {
            border-radius: 1.5rem;
            padding: 2rem;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            background: rgba(255,255,255,0.05);
            border-color: rgba(16, 185, 129, 0.3);
            transform: translateY(-8px);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
        }
        
        .icon-chatgpt {
            background: linear-gradient(135deg, #10B981, #059669);
            color: white;
        }
        
        .icon-website {
            background: linear-gradient(135deg, #3B82F6, #1D4ED8);
            color: white;
        }
        
        .icon-multilingual {
            background: linear-gradient(135deg, #8B5CF6, #7C3AED);
            color: white;
        }
        
        .icon-automation {
            background: linear-gradient(135deg, #F59E0B, #D97706);
            color: white;
        }
        
        .icon-conversion {
            background: linear-gradient(135deg, #EF4444, #DC2626);
            color: white;
        }
        
        .icon-technology {
            background: linear-gradient(135deg, #06B6D4, #0891B2);
            color: white;
        }
        
        .advantage-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .advantage-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: rgba(16, 185, 129, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--green);
            font-size: 1.5rem;
        }
        
        .scenario-card {
            border-radius: 1.5rem;
            padding: 2.5rem;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .scenario-card:hover {
            background: rgba(255,255,255,0.05);
            border-color: rgba(16, 185, 129, 0.3);
        }
        
        .scenario-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--green);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 99px;
            font-weight: 700;
            font-size: 0.9rem;
        }
        
        .case-study-card {
            position: relative;
            overflow: hidden;
            border-radius: 1.5rem;
            height: 100%;
        }
        
        .case-study-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .case-study-card:hover .case-study-img {
            transform: scale(1.05);
        }
        
        .case-study-content {
            padding: 2rem;
            background: rgba(0,0,0,0.8);
            position: relative;
        }
        
        .case-study-badge {
            position: absolute;
            top: -1rem;
            right: 2rem;
            background: var(--green);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 99px;
            font-weight: 700;
            font-size: 0.9rem;
        }
        
        .tech-process {
            counter-reset: process-counter;
        }
        
        .process-step {
            position: relative;
            padding-left: 5rem;
            margin-bottom: 3rem;
        }
        
        .process-step::before {
            counter-increment: process-counter;
            content: counter(process-counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 4rem;
            height: 4rem;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--green);
            border: 2px solid rgba(16, 185, 129, 0.3);
        }
        
        .global-badge {
            display: inline-block;
            padding: 0.5rem 1.2rem;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 99px;
            font-size: 1rem;
            color: rgba(255,255,255,0.9);
            border: 1px solid rgba(16, 185, 129, 0.3);
        }
        
        /* 新增背景特效样式 - 出海主题 */
        .global-hero {
            position: relative;
            overflow: hidden;
        }

        /* 动态粒子背景 */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            pointer-events: none;
        }

        /* 渐变光环特效 */
        .halo-effect {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.1;
            z-index: -1;
            pointer-events: none;
        }

        .halo-green {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--green), transparent);
            top: 10%;
            left: 10%;
            animation: float-halo 25s infinite alternate ease-in-out;
        }

        .halo-blue {
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, var(--blue), transparent);
            bottom: 5%;
            right: 5%;
            animation: float-halo 30s infinite alternate-reverse ease-in-out;
        }

        @keyframes float-halo {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(100px, -50px) scale(1.05);
            }
            66% {
                transform: translate(-50px, 100px) scale(0.95);
            }
        }

        /* 扫描线效果 */
        .scanlines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                transparent 50%,
                rgba(16, 185, 129, 0.02) 51%
            );
            background-size: 100% 4px;
            z-index: 9999;
            pointer-events: none;
            opacity: 0.1;
            animation: scanlines 8s linear infinite;
        }

        @keyframes scanlines {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(100%);
            }
        }

        /* 标题流光效果 */
        .flowing-title {
            position: relative;
            display: inline-block;
            background: linear-gradient(90deg, 
                #fff 0%, 
                var(--green) 25%, 
                var(--purple) 50%, 
                var(--green) 75%, 
                #fff 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: flowing-text 3s linear infinite;
        }

        @keyframes flowing-text {
            0% {
                background-position: 0% center;
            }
            100% {
                background-position: 200% center;
            }
        }

        /* 按钮脉冲效果 */
        .btn-shiny {
            animation: pulse-green 2s infinite;
        }

        @keyframes pulse-green {
            0%, 100% {
                box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
            }
            50% {
                box-shadow: 0 0 40px rgba(16, 185, 129, 0.8);
            }
        }

        /* 页面滚动进度条 */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--green), var(--purple));
            z-index: 1000;
            transition: width 0.1s ease;
        }

        /* 段落渐显动画 */
        .reveal-text {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .reveal-text.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* 地图背景效果 */
        .world-map-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="50" viewBox="0 0 100 50"><path d="M10,25 Q25,10 40,25 T70,25" stroke="rgba(16,185,129,0.1)" fill="none" stroke-width="0.5"/><circle cx="20" cy="20" r="1" fill="rgba(16,185,129,0.2)"/><circle cx="50" cy="30" r="1" fill="rgba(16,185,129,0.2)"/><circle cx="80" cy="20" r="1" fill="rgba(16,185,129,0.2)"/></svg>');
            background-size: 200px;
            opacity: 0.05;
            z-index: -1;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            body {
                font-size: 16px;
            }
            
            .glass-card {
                padding: 2rem !important;
            }
            
            #mobile-menu {
                padding: 100px 30px;
            }
            
            #mobile-menu a {
                font-size: 2.2rem;
            }
            
            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }
            
            .global-grid {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                padding-left: 4rem;
            }
            
            .process-step::before {
                width: 3rem;
                height: 3rem;
                font-size: 1.5rem;
            }
            
            .halo-green, .halo-blue {
                display: none;
            }
            
            .scanlines {
                opacity: 0.05;
            }
        }
        
        @media (min-width: 769px) {
            body {
                font-size: 18px;
            }
        }
