
        /* --- 极致紧凑、宽屏电商版 CTA 模块 --- */
        .uee-eco-cta-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #56B8B8; /* 核心品牌青色 */
            padding: 60px 5%; 
            color: #ffffff;
            overflow: hidden;
            display: flex;
            justify-content: center;
        }

        .uee-eco-cta-container {
            max-width: 1250px;
            width: 100%;
            display: flex;
            align-items: center; /* 垂直居中 */
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
        }

        /* --- 左侧：文字与按钮区 --- */
        .uee-eco-cta-left {
            flex: 1.5; /* 给予文字更多横向空间，实现扁平舒展感 */
            min-width: 350px;
            text-align: left;
        }

        .uee-eco-cta-left h2 {
            font-size: clamp(30px, 4.5vw, 44px);
            font-weight: 800;
            line-height: 1.05; /* 极致紧缩行距 */
            letter-spacing: -2px;
            margin: 0 0 20px 0;
        }

        .uee-eco-cta-left p {
            font-size: 18px;
            line-height: 1.45;
            color: rgba(255, 255, 255, 0.9);
            max-width: 650px; /* 扁平化文字宽度控制 */
            margin-bottom: 35px;
        }

        /* 橙色主按钮 */
        .uee-eco-btn-demo {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #FF8022; /* 核心橙色 */
            color: #ffffff;
            padding: 16px 36px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 20px rgba(255, 125, 42, 0.25);
        }

        .uee-eco-btn-demo:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(255, 125, 42, 0.4);
            background-color: #f76d19;
        }

        .uee-eco-btn-demo::after {
            content: '→';
            margin-left: 12px;
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        /* --- 右侧：磨砂玻璃统计卡片 --- */
        .uee-eco-cta-right {
            flex: 1;
            min-width: 380px;
            display: flex;
            justify-content: flex-end;
        }

        .uee-eco-glass-stats {
            background: rgba(255, 255, 255, 0.12); /* 玻璃半透明度 */
            backdrop-filter: blur(12px); /* 核心毛玻璃效果 */
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 24px;
            padding: 40px 50px;
            display: flex;
            gap: 60px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            transition: transform 0.4s ease;
        }

        .uee-eco-glass-stats:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.18);
        }

        .uee-eco-stat-box {
            text-align: center;
        }

        .uee-eco-stat-box b {
            display: block;
            font-size: 46px;
            font-weight: 800;
            color: #FF8022; /* 橙色高亮数据 */
            line-height: 1;
            margin-bottom: 12px;
            letter-spacing: -1px;
        }

        .uee-eco-stat-box span {
            display: block;
            font-size: 11px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.85);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            line-height: 1.2;
            white-space: nowrap;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .uee-eco-cta-container { flex-direction: column; text-align: center; }
            .uee-eco-cta-left { text-align: center; }
            .uee-eco-cta-left p { margin-left: auto; margin-right: auto; }
            .uee-eco-cta-right { justify-content: center; width: 100%; margin-top: 20px; }
            .uee-eco-glass-stats { padding: 30px; gap: 30px; width: 100%; justify-content: center; }
        }

        @media (max-width: 480px) {
            .uee-eco-glass-stats { flex-direction: column; }
            .uee-eco-stat-box b { font-size: 40px; }
            .uee-eco-btn-demo { width: 100%; }
        }
    