
        /* --- 极致紧凑、宽屏扁平化版式 (Inter Font) --- */
        .uee-script-designer-section {
            font-family: 'Inter', -apple-system, sans-serif;
            background-color: #ffffff;
            padding: 60px 0;
            color: #111827;
            text-align: center;
            overflow: hidden;
        }

        .uee-container {
            width: 92%;
            max-width: 1300px;
            margin: 0 auto;
        }

        /* 1. 顶部标题区域 */
        .uee-header {
            margin-bottom: 45px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .uee-badge {
            background-color: #f0fdfa;
            color: #28B5B5;
            padding: 5px 16px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
            border: 1px solid #ccfbf1;
        }

        .uee-header h2 {
            font-size: clamp(32px, 4.5vw, 46px);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -2.2px;
            margin: 0 0 12px 0;
            color: #0B1221;
        }

        .uee-highlight-subtitle {
            font-size: 20px;
            font-weight: 700;
            color: #28B5B5;
            max-width: 1000px;
            margin: 0 auto 12px;
            line-height: 1.3;
        }

        .uee-sub-description {
            font-size: 17px;
            color: #64748b;
            line-height: 1.45;
            max-width: 900px; /* 扁平化文字宽度 */
            margin: 0 auto;
        }

        /* 2. 主体布局：左文右图 (45/55) */
        .uee-flex-layout {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        /* 左侧功能列表 */
        .uee-features-col {
            flex: 1;
            min-width: 400px;
            text-align: left;
        }

        .uee-feat-item {
            display: flex;
            gap: 20px;
            margin-bottom: 25px; /* 极致紧凑项间距 */
        }

        .uee-icon-box {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 20px;
            border: 1px solid #f1f5f9;
        }

        /* 匹配图中的配色 */
        .ic-cyan { background-color: #f0fdfa; color: #28B5B5; }
        .ic-orange { background-color: #fff7ed; color: #FF7D2A; }
        .ic-teal { background-color: #ecfeff; color: #0891b2; }
        .ic-gold { background-color: #fefce8; color: #ca8a04; }

        .uee-feat-text h4 {
            font-size: 20px;
            font-weight: 800;
            line-height: 1.1;
            margin: 0 0 6px 0;
            color: #0B1221;
        }

        .uee-feat-text p {
            font-size: 15px;
            color: #64748b;
            line-height: 1.4;
            margin: 0;
        }

        /* 3. 右侧编辑器预览窗 */
        .uee-visual-col {
            flex: 1.25; 
            min-width: 450px;
        }

        .uee-mock-workspace {
            background-color: #ffffff;
            border: 1px solid #f1f5f9;
            background-image: linear-gradient(#f8fafc 1.5px, transparent 1.5px), linear-gradient(90deg, #f8fafc 1.5px, transparent 1.5px);
            background-size: 30px 30px; /* 内部背景微网格 */
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.04);
            position: relative;
            text-align: left;
        }

        .uee-window-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .uee-canvas-status {
            font-size: 10px;
            font-weight: 800;
            color: #28B5B5;
            background: rgba(40, 181, 181, 0.08);
            padding: 4px 10px;
            border-radius: 4px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .uee-workflow-img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            border: 1px solid #f1f5f9;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            display: block;
        }

        .uee-window-foot {
            display: flex;
            justify-content: space-between;
            margin-top: 25px;
            font-size: 10px;
            font-weight: 700;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* 响应式适配 */
        @media (max-width: 1024px) {
            .uee-flex-layout { flex-direction: column; }
            .uee-features-col, .uee-visual-col { min-width: 100%; }
            .uee-visual-col { order: -1; margin-bottom: 30px; }
        }
    