
        /* --- 修正版：电商增长 Hero 模块 --- */
        .uee-eco-wrapper {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            padding: 60px 5%; 
            color: #111827;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .uee-eco-container {
            max-width: 1300px;
            width: 100%;
            display: flex;
            align-items: center; 
            gap: 60px;
            flex-wrap: wrap;
        }

        /* --- 左侧内容 (55% 宽度) --- */
        .uee-eco-left {
            flex: 55;
            min-width: 400px;
        }

        .uee-eco-left h1 {
            font-size: clamp(34px, 5vw, 64px);
            font-weight: 800;
            line-height: 1.05; 
            letter-spacing: -2.5px;
            margin: 0 0 25px 0;
            color: #0B1221;
        }

        .uee-eco-left h1 span {
            color: #59B7B8;
            font-style: italic;
        }

        .uee-eco-desc {
            font-size: 19px;
            color: #4B5563;
            line-height: 1.45;
            margin-bottom: 40px;
            max-width: 600px;
        }

        .uee-btn-get-started {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #FF8022;
            color: #ffffff;
            padding: 16px 44px;
            border-radius: 12px;
            font-size: 19px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(255, 128, 34, 0.3);
        }

        .uee-btn-get-started:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(255, 128, 34, 0.45);
        }

        /* --- 右侧修正版卡片 (45% 宽度) --- */
        .uee-eco-right {
            flex: 45;
            min-width: 380px;
        }

        /* 外层渐变容器 */
        .uee-gradient-frame {
            background: linear-gradient(135deg, #59B7B8 0%, #FF8022 100%);
            padding: 24px; /* 这里控制渐变边框的厚度 */
            border-radius: 36px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            transition: transform 0.4s ease;
        }

        .uee-gradient-frame:hover {
            transform: rotate(-1deg) scale(1.02);
        }

        /* 内层白色内容容器 */
        .uee-white-content {
            background: #ffffff;
            border-radius: 20px;
            padding: 35px;
            text-align: left;
        }

        .uee-tag-orange {
            font-size: 13px;
            font-weight: 800;
            color: #FF8022;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .uee-white-content p {
            font-size: 16px;
            color: #4B5563;
            line-height: 1.5;
            margin: 0 0 30px 0;
        }

        .uee-bottom-divider {
            height: 1px;
            background-color: #f1f5f9;
            margin-bottom: 25px;
            border: none;
        }

        /* 统计数据布局 */
        .uee-stats-row {
            display: flex;
            gap: 50px;
        }

        .uee-stat-box {
            display: flex;
            flex-direction: column;
        }

        .uee-stat-val {
            font-size: 32px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 6px;
        }

        .uee-stat-lab {
            font-size: 11px;
            font-weight: 700;
            color: #9CA3AF;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .color-teal { color: #59B7B8; }
        .color-orange { color: #FF8022; }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .uee-eco-container { flex-direction: column; text-align: center; }
            .uee-eco-left, .uee-eco-right { min-width: 100%; }
            .uee-eco-desc { margin: 0 auto 40px auto; }
            .uee-white-content { padding: 25px; }
            .uee-stats-row { justify-content: center; }
        }
    