
        /* --- 极致紧凑、灵活配置功能网格 --- */
        .uee-config-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            padding: 40px 5%; /* 缩减上下空白 */
            color: #111827;
        }

        .uee-config-container {
            max-width: 1250px;
            margin: 0 auto;
            text-align: center;
        }

        /* 顶部主图标 */
        .uee-config-top-icon {
            width: 52px;
            height: 52px;
            background-color: #EEF2FF;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            color: #6366F1;
            font-size: 26px;
        }

        /* 获益化主标题 */
        .uee-config-header h2 {
            font-size: clamp(28px, 4vw, 38px);
            font-weight: 800;
            line-height: 1.1; /* 极致紧缩行距 */
            letter-spacing: -1.5px;
            margin: 0 0 40px 0;
            color: #0B1221;
        }

        /* 4列网格布局 */
        .uee-config-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .uee-config-card {
            background: #ffffff;
            border: 1px solid #f1f5f9;
            border-radius: 20px;
            padding: 28px 24px;
            text-align: left;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
        }

        .uee-config-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.06);
            border-color: #e2e8f0;
        }

        /* 卡片内部图标盒 */
        .uee-cfg-icon-box {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-bottom: 20px;
        }

        /* 颜色分类匹配原图 */
        .cfg-teal { background-color: #f0fdfa; color: #14b8a6; } /* Custom Routing */
        .cfg-orange { background-color: #fff7ed; color: #f97316; } /* Business Hours */
        .cfg-turquoise { background-color: #ecfeff; color: #0891b2; } /* Holiday */
        .cfg-deep-orange { background-color: #fff1f2; color: #e11d48; } /* Skill Group */

        .uee-config-card h4 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.1;
            margin: 0 0 10px 0;
            color: #0B1221;
        }

        .uee-config-card p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.4; /* 紧凑描述行距 */
            margin: 0;
        }

        /* 响应式适配 */
        @media (max-width: 1024px) {
            .uee-config-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 600px) {
            .uee-config-grid { grid-template-columns: 1fr; }
            .uee-config-section { padding: 30px 5%; }
            .uee-config-header h2 { font-size: 26px; margin-bottom: 30px; }
        }
    