
        /* --- 全局极致紧凑、宽屏对比版式 --- */
        .uee-comparison-wrapper {
            font-family: 'Inter', -apple-system, sans-serif;
            background-color: #ffffff;
            padding: 60px 0;
            color: #111827;
            display: flex;
            flex-direction: column;
            align-items: center; /* 确保整体居中 */
        }

        .uee-full-container {
            width: 92%;
            max-width: 1300px;
            margin: 0 auto;
        }

        /* 1. 顶部标题区域 - 修正为绝对居中 */
        .uee-centered-header {
            text-align: center;
            margin-bottom: 50px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .uee-top-tag {
            background-color: #fff7ed;
            color: #FF7D2A;
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
            border: 1px solid rgba(255, 125, 42, 0.2);
        }

        .uee-h2-title {
            font-size: clamp(30px, 4.5vw, 48px);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -2px;
            margin: 0 0 15px 0;
            color: #0B1221;
        }

        .uee-h2-title span {
            color: #28B5B5;
            font-style: italic;
        }

        .uee-sub-p {
            font-size: 17px;
            color: #64748b;
            max-width: 900px; /* 加宽文字区域 */
            line-height: 1.4;
            margin: 0 auto;
        }

        /* 2. 对比表头 */
        .uee-grid-header {
            display: grid;
            grid-template-columns: 260px 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .uee-head-box {
            padding: 12px 20px;
            border-radius: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .box-human { background-color: #fff5f5; color: #ef4444; border: 1px solid #fee2e2; }
        .box-ai { background-color: #f0fdfa; color: #0d9488; border: 1px solid #ccfbf1; }
        .box-status { font-size: 10px; padding: 2px 8px; border-radius: 4px; background: #ffffff; }

        /* 3. 对比行 - 补全所有点 */
        .uee-comp-row {
            display: grid;
            grid-template-columns: 260px 1fr 1fr;
            gap: 20px;
            margin-bottom: 12px;
        }

        .uee-label-col {
            display: flex;
            align-items: center;
            gap: 15px;
            text-align: left;
        }

        .uee-icon-box {
            width: 42px; height: 44px;
            background: #f8fafc;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3b82f6;
            flex-shrink: 0;
            border: 1px solid #f1f5f9;
        }

        .uee-label-text h4 { font-size: 16px; font-weight: 700; margin: 0; color: #111827; line-height: 1.1; }
        .uee-label-text span { font-size: 9px; color: #94a3b8; text-transform: uppercase; font-weight: 700; }

        .uee-data-card {
            padding: 20px;
            border-radius: 16px;
            text-align: left;
            border: 1px solid #f1f5f9;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background-color: #ffffff;
            transition: transform 0.2s ease;
        }
        .uee-data-card:hover { border-color: #e2e8f0; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }

        .uee-data-card p {
            font-size: 13.5px;
            line-height: 1.4;
            color: #4b5563;
            margin: 0 0 12px 0;
        }

        .uee-pill {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .pill-bad { background-color: #fff5f5; color: #ef4444; }
        .pill-good { background-color: #f0fdfa; color: #0d9488; }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .uee-grid-header { display: none; }
            .uee-comp-row { grid-template-columns: 1fr; border-bottom: 1px solid #f1f5f9; padding-bottom: 15px; }
            .uee-label-col { margin-bottom: 10px; }
        }
    