
        /* --- 动态渐变背景与对比卡片版式 --- */
        .uee-compare-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            position: relative;
            background: radial-gradient(circle at 50% 50%, #f8fafc 0%, #ffffff 100%);
            padding: 60px 5%;
            color: #111827;
            overflow: hidden;
        }

        /* 背景动态圆球 */
        .uee-bg-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            z-index: 1;
            opacity: 0.3;
            animation: orbMove 20s infinite alternate ease-in-out;
        }
        .orb-cloud { width: 500px; height: 500px; background: #5FC0C1; top: -100px; left: -100px; }
        .orb-prem { width: 600px; height: 600px; background: #6366F1; bottom: -150px; right: -100px; animation-delay: -5s; }

        @keyframes orbMove {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(50px, 80px) scale(1.1); }
        }

        .uee-compare-container {
            position: relative;
            z-index: 5;
            max-width: 1250px;
            margin: 0 auto;
        }

        /* 标题区：极致紧凑 */
        .uee-compare-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .uee-compare-header h2 {
            font-size: clamp(32px, 4vw, 42px);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -1.8px;
            margin: 0 0 10px 0;
            color: #0B1221;
        }

        .uee-compare-header p {
            font-size: 17px;
            color: #64748b;
            line-height: 1.4;
            margin: 0;
        }

        /* 对比网格 */
        .uee-compare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        /* 卡片通用样式 */
        .uee-compare-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid #f1f5f9;
            border-radius: 32px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }
        .uee-compare-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }

        .uee-card-top { margin-bottom: 25px; }
        
        .uee-icon-box {
            width: 52px; height: 52px; border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 24px; margin-bottom: 20px;
        }
        .bg-cyan { background: #f0fdfa; color: #5FC0C1; }
        .bg-slate { background: #f8fafc; color: #475569; }

        .uee-compare-card h3 { font-size: 24px; font-weight: 800; margin: 0 0 6px 0; line-height: 1.1; }
        .uee-tagline { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 15px; display: block; }
        .tag-cloud { color: #5FC0C1; }
        .tag-prem { color: #6366F1; }

        .uee-card-desc { font-size: 15px; color: #64748b; line-height: 1.4; margin-bottom: 25px; }

        /* 特性列表 */
        .uee-feat-list { list-style: none; padding: 0; margin: 0 0 30px 0; flex-grow: 1; }
        .uee-feat-list li {
            display: flex; gap: 12px; font-size: 14.5px; margin-bottom: 12px; line-height: 1.3;
        }
        .uee-feat-list b { color: #0B1221; }
        .uee-check { color: #5FC0C1; font-weight: bold; flex-shrink: 0; }

        /* 底部 Ideal For 框 */
        .uee-ideal-box {
            padding: 20px; border-radius: 16px; font-size: 14px; line-height: 1.4;
        }
        .ideal-cloud { background: #f5f8ff; color: #4b5563; }
        .ideal-prem { background: #f8fafc; color: #4b5563; border: 1px solid #f1f5f9; }
        .uee-ideal-box b { color: #5FC0C1; display: block; margin-bottom: 4px; }
        .ideal-prem b { color: #6366F1; }

        /* 响应式 */
        @media (max-width: 992px) {
            .uee-compare-grid { grid-template-columns: 1fr; }
            .uee-compare-section { padding: 40px 5%; }
        }
    