
        /* --- 极致紧凑、教育/SaaS 高保真版式 --- */
        .uee-solution-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            padding: 60px 5%;
            color: #111827;
            text-align: center;
        }

        .uee-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        /* 1. 顶部标签 */
        .uee-badge {
            display: inline-block;
            background-color: #fff7ed;
            color: #FF7D2A;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
        }

        /* 2. 主标题：极致紧缩行距 */
        .uee-headline {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -2px;
            margin: 0 0 25px 0;
            color: #0B1221;
        }

        .uee-headline span {
            color: #59B7B8; /* 核心青色 */
            font-style: italic;
        }

        .uee-subtext {
            font-size: 18px;
            color: #4B5563;
            line-height: 1.5;
            max-width: 750px;
            margin: 0 auto 50px auto;
        }

        /* 3. 中间双卡片布局 */
        .uee-card-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 80px;
        }

        .uee-card {
            background-color: #f9faff;
            border: 1px solid #f1f5f9;
            border-radius: 20px;
            padding: 30px;
            text-align: left;
            display: flex;
            gap: 20px;
            transition: transform 0.3s ease;
        }

        .uee-card:hover { transform: translateY(-5px); }

        .uee-card-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .uee-card-content h4 {
            font-size: 18px;
            font-weight: 700;
            margin: 0 0 8px 0;
        }

        .uee-card-content p {
            font-size: 14.5px;
            color: #64748b;
            line-height: 1.4;
            margin: 0;
        }

        /* 4. 底部三列特性 */
        .uee-feat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .uee-feat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .uee-feat-icon-box {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
        }

        /* 各个图标背景色 */
        .bg-orange { background-color: #fff7ed; color: #FF7D2A; }
        .bg-teal { background-color: #f0fdfa; color: #59B7B8; }
        .bg-gray { background-color: #f1f5f9; color: #1e293b; }

        .uee-feat-item h4 {
            font-size: 19px;
            font-weight: 700;
            margin: 0 0 12px 0;
        }

        .uee-feat-item p {
            font-size: 15px;
            color: #64748b;
            line-height: 1.5;
            margin: 0;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .uee-card-grid, .uee-feat-grid { grid-template-columns: 1fr; }
            .uee-headline { font-size: 32px; }
            .uee-subtext { font-size: 16px; }
        }
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        /* --- 极致紧凑、宽屏居中版式 --- */
        .uee-solution-optimized {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            padding: 60px 5%;
            color: #111827;
            /* 确保整体容器内容居中 */
            display: flex;
            flex-direction: column;
            align-items: center; 
        }

        .uee-content-box {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center; /* 文字全局居中 */
        }

        /* 1. 主标题：加重、斜体、紧缩行距 */
        .uee-main-title {
            font-size: clamp(34px, 5.5vw, 64px);
            font-weight: 800;
            line-height: 1.05; /* 极致紧缩 */
            letter-spacing: -2.5px;
            margin: 0 0 24px 0;
            font-style: italic; /* 匹配图中的斜体感 */
            color: #000000;
        }

        .uee-main-title span {
            color: #59B7B8; /* 核心青色 */
            font-style: italic;
        }

        /* 2. 描述段落：已加宽显示宽度 */
        .uee-main-desc {
            font-size: 19px;
            color: #4B5563;
            line-height: 1.5;
            max-width: 1200px; /* 增加宽度至950px，使排版更扁平 */
            margin: 0 auto 50px auto; /* 自动左右边距确保居中 */
        }

        /* 3. 中间双卡片布局 */
        .uee-dual-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto 80px auto;
        }

        .uee-feature-card {
            background-color: #f8fafc;
            border: 1px solid #f1f5f9;
            border-radius: 24px;
            padding: 32px;
            display: flex;
            align-items: center;
            gap: 20px;
            text-align: left; /* 卡片内文字左对齐 */
            transition: all 0.3s ease;
        }

        .uee-feature-card:hover {
            transform: translateY(-5px);
            background-color: #ffffff;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            border-color: #e2e8f0;
        }

        .uee-card-icon { font-size: 24px; flex-shrink: 0; }

        .uee-card-info h4 {
            font-size: 19px;
            font-weight: 800;
            margin: 0 0 6px 0;
            line-height: 1.1;
        }

        .uee-card-info p {
            font-size: 15px;
            color: #64748b;
            line-height: 1.4;
            margin: 0;
        }

        /* 4. 底部三列特性 */
        .uee-bottom-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .uee-bottom-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .uee-bottom-icon-box {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
        }

        .bg-orange { background-color: #fff7ed; color: #FF7D2A; }
        .bg-teal   { background-color: #f0fdfa; color: #59B7B8; }
        .bg-gray   { background-color: #f1f5f9; color: #1e293b; }

        .uee-bottom-item h4 {
            font-size: 20px;
            font-weight: 800;
            margin: 0 0 12px 0;
            color: #0B1221;
        }

        .uee-bottom-item p {
            font-size: 15px;
            color: #64748b;
            line-height: 1.5;
            margin: 0;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .uee-dual-cards, .uee-bottom-grid { grid-template-columns: 1fr; }
            .uee-main-title { font-size: 32px; letter-spacing: -1px; }
            .uee-main-desc { font-size: 16px; width: 100%; }
        }
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        /* --- 极致紧凑、教育/SaaS 高保真版式 --- */
        .uee-solution-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            padding: 60px 5%;
            color: #111827;
            text-align: center;
        }

        .uee-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        /* 1. 顶部标签 */
        .uee-badge {
            display: inline-block;
            background-color: #fff7ed;
            color: #FF7D2A;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
        }

        /* 2. 主标题：极致紧缩行距 */
        .uee-headline {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -2px;
            margin: 0 0 25px 0;
            color: #0B1221;
        }

        .uee-headline span {
            color: #59B7B8; /* 核心青色 */
            font-style: italic;
        }

        .uee-subtext {
            font-size: 18px;
            color: #4B5563;
            line-height: 1.5;
            max-width: 750px;
            margin: 0 auto 50px auto;
        }

        /* 3. 中间双卡片布局 */
        .uee-card-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 80px;
        }

        .uee-card {
            background-color: #f9faff;
            border: 1px solid #f1f5f9;
            border-radius: 20px;
            padding: 30px;
            text-align: left;
            display: flex;
            gap: 20px;
            transition: transform 0.3s ease;
        }

        .uee-card:hover { transform: translateY(-5px); }

        .uee-card-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .uee-card-content h4 {
            font-size: 18px;
            font-weight: 700;
            margin: 0 0 8px 0;
        }

        .uee-card-content p {
            font-size: 14.5px;
            color: #64748b;
            line-height: 1.4;
            margin: 0;
        }

        /* 4. 底部三列特性 */
        .uee-feat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .uee-feat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .uee-feat-icon-box {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
        }

        /* 各个图标背景色 */
        .bg-orange { background-color: #fff7ed; color: #FF7D2A; }
        .bg-teal { background-color: #f0fdfa; color: #59B7B8; }
        .bg-gray { background-color: #f1f5f9; color: #1e293b; }

        .uee-feat-item h4 {
            font-size: 19px;
            font-weight: 700;
            margin: 0 0 12px 0;
        }

        .uee-feat-item p {
            font-size: 15px;
            color: #64748b;
            line-height: 1.5;
            margin: 0;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .uee-card-grid, .uee-feat-grid { grid-template-columns: 1fr; }
            .uee-headline { font-size: 32px; }
            .uee-subtext { font-size: 16px; }
        }
    