        /* 主容器样式 - 白色背景，避免使用body标签 */
        .white-sci-fi-container {
            font-family: 'Exo 2', 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            background-color: #ffffff;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }
        
        /* 内容区域 */
        .white-sci-fi-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        /* 白色背景下的科技网格 */
        .white-sci-fi-container::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 150, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 150, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 1;
            pointer-events: none;
        }
        
        /* 科幻标题样式 */
        .white-sci-fi-main-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.2rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 40px;
            background: linear-gradient(90deg, #0066ff, #00a2ff, #0066ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            padding-bottom: 20px;
            letter-spacing: 1px;
        }
        
        .white-sci-fi-main-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #0066ff, transparent);
            border-radius: 2px;
        }
        
        /* 科幻子标题 */
        .white-sci-fi-section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            margin: 50px 0 30px;
            background: linear-gradient(90deg, #0066ff, #00a2ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            padding-left: 20px;
            border-left: 4px solid #0066ff;
        }
        
        /* 科幻卡片样式 - 白色背景 */
        .white-sci-fi-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(0, 102, 255, 0.2);
            box-shadow: 
                0 10px 30px rgba(0, 102, 255, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .white-sci-fi-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #0066ff, #00a2ff, #0066ff);
        }
        
        .white-sci-fi-card:hover {
            transform: translateY(-5px);
            box-shadow: 
                0 15px 40px rgba(0, 102, 255, 0.12),
                0 0 0 1px rgba(255, 255, 255, 0.5);
            border-color: rgba(0, 102, 255, 0.3);
        }
        
        /* 科幻高亮区域 */
        .white-sci-fi-highlight {
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 162, 255, 0.03));
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            border: 1px solid rgba(0, 102, 255, 0.2);
            box-shadow: 0 5px 20px rgba(0, 102, 255, 0.05);
            position: relative;
        }
        
        .white-sci-fi-highlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(to bottom, #0066ff, #00a2ff);
            border-radius: 3px 0 0 3px;
        }
        
        /* 科幻网格布局 */
        .white-sci-fi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        
        /* 科幻功能项 */
        .white-sci-fi-feature {
            background: #f8fafc;
            border-radius: 10px;
            padding: 25px;
            border: 1px solid rgba(0, 102, 255, 0.15);
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .white-sci-fi-feature::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent, rgba(0, 102, 255, 0.02), transparent);
            z-index: 1;
            pointer-events: none;
        }
        
        .white-sci-fi-feature:hover {
            border-color: rgba(0, 102, 255, 0.3);
            box-shadow: 0 10px 25px rgba(0, 102, 255, 0.1);
        }
        
        .white-sci-fi-feature i {
            font-size: 2.5rem;
            background: linear-gradient(90deg, #0066ff, #00a2ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            display: block;
        }
        
        /* 科幻按钮 */
        .white-sci-fi-btn {
            display: inline-block;
            background: linear-gradient(135deg, #0066ff, #00a2ff);
            color: white;
            padding: 12px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-family: 'Orbitron', sans-serif;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .white-sci-fi-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .white-sci-fi-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
        }
        
        .white-sci-fi-btn:hover::before {
            left: 100%;
        }
        
        /* 科幻进度条/指示器样式 */
        .white-sci-fi-process-indicator {
            display: flex;
            justify-content: space-between;
            margin: 40px 0;
            position: relative;
        }
        
        .white-sci-fi-process-indicator::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #0066ff, #00a2ff, #0066ff);
            z-index: 1;
        }
        
        .white-process-step {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .white-step-circle {
            width: 40px;
            height: 40px;
            background: white;
            border: 3px solid #0066ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            color: #0066ff;
            font-weight: bold;
            font-family: 'Orbitron', sans-serif;
            box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
        }
        
        /* 插图容器 */
        .white-sci-fi-illustration {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 162, 255, 0.03));
            border-radius: 12px;
            margin: 25px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed rgba(0, 102, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .white-sci-fi-illustration::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, rgba(0, 162, 255, 0.05) 0%, transparent 20%);
        }
        
        .white-illustration-text {
            color: #0066ff;
            font-size: 1.2rem;
            font-weight: 500;
            text-align: center;
            z-index: 2;
        }
        
        /* 科幻数据展示 */
        .white-sci-fi-data-display {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 30px 0;
        }
        
        .white-data-item {
            text-align: center;
            padding: 20px;
            flex: 1;
            min-width: 150px;
        }
        
        .white-data-value {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(90deg, #0066ff, #00a2ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 5px;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .white-sci-fi-main-title {
                font-size: 2.2rem;
            }
            
            .white-sci-fi-section-title {
                font-size: 1.8rem;
            }
            
            .white-sci-fi-grid {
                grid-template-columns: 1fr;
            }
            
            .white-sci-fi-process-indicator {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }
            
            .white-sci-fi-process-indicator::before {
                display: none;
            }
        }
        
        /* 科幻动画效果 */
        @keyframes white-pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.5); }
            70% { box-shadow: 0 0 0 10px rgba(0, 102, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0); }
        }
        
        .white-pulse-animation {
            animation: white-pulse 2s infinite;
        }
        
        /* 科幻列表样式 */
        .white-sci-fi-list {
            list-style: none;
            padding-left: 0;
        }
        
        .white-sci-fi-list li {
            padding: 10px 0 10px 30px;
            position: relative;
            border-bottom: 1px solid rgba(0, 102, 255, 0.1);
        }
        
        .white-sci-fi-list li:before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #0066ff;
            font-size: 0.8rem;
        }
        
        /* 科幻标签 */
        .white-sci-fi-tag {
            display: inline-block;
            background: rgba(0, 102, 255, 0.1);
            color: #0066ff;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-right: 8px;
            margin-bottom: 8px;
            border: 1px solid rgba(0, 102, 255, 0.2);
        }
        
        /* 强调文本 */
        .white-highlight-text {
            color: #0066ff;
            font-weight: 600;
        }
        
        /* 渐变分隔线 */
        .white-gradient-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #0066ff, transparent);
            margin: 40px 0;
            width: 100%;
        }