
        /* --- 极致紧凑、横向宽屏优势模块版式 --- */
        .uee-transforms-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #f9fafb; /* 极淡灰色背景增强层次 */
            padding: 40px 5%; 
            color: #111827;
        }

        .uee-transforms-container {
            max-width: 1100px; /* 加宽布局 */
            margin: 0 auto;
        }

        /* 顶部主标题 */
        .uee-trans-header {
            margin-bottom: 30px;
            text-align: left;
        }

        .uee-trans-header h2 {
            font-size: clamp(26px, 4vw, 36px);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -1.5px;
            margin: 0 0 10px 0;
            color: #0B1221;
        }

        .uee-trans-header p {
            font-size: 16px;
            color: #64748b;
            max-width: 700px;
            line-height: 1.4;
        }

        /* 横向长条卡片布局 */
        .uee-trans-list {
            display: flex;
            flex-direction: column;
            gap: 15px; /* 极致紧凑的项间距 */
        }

        .uee-trans-card {
            background: #ffffff;
            border: 1px solid #f1f5f9;
            border-radius: 16px;
            padding: 20px 24px;
            display: flex;
            align-items: center; /* 核心：内容垂直居中 */
            gap: 24px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
        }

        .uee-trans-card:hover {
            transform: translateX(8px);
            border-color: #56B8B8;
            box-shadow: 0 10px 20px rgba(0,0,0,0.04);
        }

        /* 图标盒样式 */
        .uee-trans-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
            border: 1px solid #f1f5f9;
        }

        /* 列表文字区 */
        .uee-trans-text h4 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.05;
            margin: 0 0 6px 0;
            color: #0B1221;
        }

        .uee-trans-text p {
            font-size: 14.5px;
            color: #64748b;
            line-height: 1.4;
            margin: 0;
        }

        /* 各项颜色 */
        .icon-orange { background-color: #fff7ed; color: #f97316; }
        .icon-teal { background-color: #f0fdfa; color: #14b8a6; }
        .icon-blue { background-color: #eff6ff; color: #3b82f6; }
        .icon-indigo { background-color: #f5f3ff; color: #6366f1; }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .uee-trans-card { flex-direction: column; align-items: flex-start; gap: 15px; }
            .uee-trans-header { text-align: center; }
            .uee-trans-header p { margin: 0 auto; }
        }
    