
        /* --- 极致紧凑与价值驱动版式 --- */
        .uee-module-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            padding: 40px 5%; /* 缩减上下边距 */
            color: #111827;
        }

        .uee-module-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* 顶部全局标题 */
        .uee-section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .uee-section-header h2 {
            font-size: clamp(30px, 4vw, 42px);
            font-weight: 800;
            line-height: 1.0; /* 极致行距 */
            margin-bottom: 12px;
            letter-spacing: -1.5px;
        }

        .uee-section-header p {
            font-size: 17px;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.35;
        }

        /* 主体布局：垂直居中 */
        .uee-module-content {
            display: flex;
            align-items: center; /* 确保左右垂直居中对齐 */
            gap: 60px;
            flex-wrap: wrap;
        }

        /* 左侧：大比例图片 */
        .uee-module-left {
            flex: 1.3;
            min-width: 400px;
        }

        .uee-module-img {
            width: 100%;
            height: auto;
            border-radius: 32px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
            display: block;
        }

        /* 右侧：功能列表 */
        .uee-module-right {
            flex: 1;
            min-width: 350px;
        }

        .uee-feature-tag {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            background-color: #f0fdfa;
            color: #59B7B8;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .uee-feature-tag::before {
            content: '⚡';
            margin-right: 6px;
        }

        .uee-module-right h3 {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }

        /* 列表项 */
        .uee-list-item {
            display: flex;
            gap: 16px;
            margin-bottom: 22px;
        }

        .uee-item-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            background-color: #f8fafc;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #59B7B8;
            border: 1px solid #e2e8f0;
        }

        .uee-item-text h4 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.1;
            margin: 0 0 6px 0;
        }

        .uee-item-text p {
            font-size: 14.5px;
            color: #64748b;
            margin: 0;
            line-height: 1.4;
        }

        /* 响应式 */
        @media (max-width: 992px) {
            .uee-module-content { flex-direction: column; }
            .uee-module-left, .uee-module-right { min-width: 100%; }
            .uee-module-right { order: 2; }
            .uee-module-left { order: 1; }
            .uee-section-header h2 { font-size: 32px; }
        }
    