        /* 全局精简风格 */
        :root {
            --primary-color: #2D65E6;
            --primary-dark: #1A4BC7;
            --primary-light: #E8EFFF;
            --dark-color: #1A1D21;
            --light-color: #FFFFFF;
            --gray-50: #FAFAFB;
            --gray-100: #F5F6F8;
            --gray-200: #E9EAEF;
            --gray-600: #6B7280;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 40px rgba(45, 101, 230, 0.12);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
            background-color: var(--gray-50);
            overflow-x: hidden;
        }
        
        /* 融资页面专用样式 */
        .financing-container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* 顶部横幅 - 更简洁 */
        .financing-banner {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            text-align: center;
            padding: 120px 20px 100px;
            position: relative;
            overflow: hidden;
            margin-bottom: 60px;
        }
        
        .financing-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--gray-50);
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        }
        
        .banner-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .financing-banner h1 {
            font-size: 3rem;
            font-weight: 600;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        
        .financing-banner p {
            font-size: 1.25rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 300;
        }
        
        .banner-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 0.875rem;
            margin-top: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        /* 内容区块 - 卡片式设计 */
        .section-card {
            background: var(--light-color);
            border-radius: var(--radius-lg);
            padding: 60px;
            margin-bottom: 40px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-200);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .section-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        
        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
            gap: 20px;
        }
        
        .section-number {
            width: 48px;
            height: 48px;
            background: var(--primary-light);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 600;
            flex-shrink: 0;
        }
        
        .section-title {
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--dark-color);
            line-height: 1.3;
        }
        
        .section-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .section-text {
            font-size: 1.125rem;
            line-height: 1.8;
            color: var(--gray-600);
        }
        
        .section-text p {
            margin-bottom: 24px;
        }
        
        .section-image {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-md);
        }
        
        .section-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-md);
            transition: transform 0.5s ease;
        }
        
        .section-card:hover .section-image img {
            transform: scale(1.02);
        }
        
        /* 数据展示 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin: 60px 0;
        }
        
        .stat-card {
            background: var(--light-color);
            border-radius: var(--radius-md);
            padding: 32px 24px;
            text-align: center;
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-md);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 8px;
            line-height: 1;
        }
        
        .stat-label {
            color: var(--gray-600);
            font-size: 0.875rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* 关键信息卡片 */
        .key-info {
            background: linear-gradient(135deg, var(--primary-light), #F0F5FF);
            border-radius: var(--radius-lg);
            padding: 40px;
            margin: 60px 0;
            border: 1px solid rgba(45, 101, 230, 0.1);
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        
        .info-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.125rem;
            flex-shrink: 0;
        }
        
        .info-content h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--dark-color);
        }
        
        .info-content p {
            font-size: 0.875rem;
            color: var(--gray-600);
            line-height: 1.6;
        }
        
        /* 投资方引用 */
        .quote-card {
            background: var(--light-color);
            border-radius: var(--radius-lg);
            padding: 60px;
            margin: 60px 0;
            position: relative;
            border-left: 4px solid var(--primary-color);
        }
        
        .quote-icon {
            font-size: 3rem;
            color: var(--primary-light);
            margin-bottom: 24px;
            line-height: 1;
        }
        
        .quote-text {
            font-size: 1.25rem;
            line-height: 1.8;
            color: var(--dark-color);
            font-style: italic;
            margin-bottom: 24px;
        }
        
        .quote-author {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        /* 底部CTA */
		.cta-section {
		    text-align: center;
		    padding: 80px 20px;
		    background: linear-gradient(180deg, #EEF5FF, #FFFFFF);
		    color: var(--dark); 
		    border-radius: var(--radius-lg);
		    margin: 80px 0 40px;
		    border: 1px solid #E6EFFE;
		    box-shadow: 0 2px 12px rgba(50, 105, 255, 0.06);
		}
        .cta-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .cta-subtitle {
            font-size: 1.125rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto 40px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
        }
        
        .btn {
            padding: 14px 32px;
            border-radius: var(--radius-sm);
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn-primary {
            background: var(--primary-color);
            color: white;
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .btn-outline {
            background: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .section-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .section-card {
                padding: 40px;
            }
            
            .financing-banner h1 {
                font-size: 2.5rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .financing-container {
                padding: 0 16px;
            }
            
            .financing-banner {
                padding: 80px 20px 60px;
            }
            
            .financing-banner h1 {
                font-size: 2rem;
            }
            
            .financing-banner p {
                font-size: 1.125rem;
            }
            
            .section-card {
                padding: 32px 24px;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
        }
        
        /* 动画效果 */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .stagger-delay > * {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s ease forwards;
        }
        
        .stagger-delay > *:nth-child(1) { animation-delay: 0.1s; }
        .stagger-delay > *:nth-child(2) { animation-delay: 0.2s; }
        .stagger-delay > *:nth-child(3) { animation-delay: 0.3s; }
        .stagger-delay > *:nth-child(4) { animation-delay: 0.4s; }
        
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
