
        /* --- 55/45 极致紧凑 NLP 模块 (图标优化版) --- */
        .uee-nlp-optimized-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            padding: 40px 5%; 
            color: #111827;
        }

        .uee-nlp-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center; /* 左右垂直居中 */
            gap: 60px;
            flex-wrap: wrap;
        }

        /* --- 左侧文字区 (55% 宽度) --- */
        .uee-nlp-left {
            flex: 55;
            min-width: 400px;
        }

        /* 顶部装饰图标 */
        .uee-badge-brain {
            width: 44px;
            height: 44px;
            background-color: #EEF2FF;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #56B8B8;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .uee-nlp-left h2 {
            font-size: clamp(30px, 4vw, 42px);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -2px;
            margin: 0 0 35px 0;
            color: #0B1221;
        }

        /* 列表布局 */
        .uee-nlp-list {
            display: flex;
            flex-direction: column;
            gap: 20px; /* 间距微调 */
        }

        .uee-nlp-item {
            display: flex;
            gap: 18px;
        }

        /* 优化后的小图标容器 */
        .uee-nlp-icon-box {
            width: 40px;
            height: 40px;
            background-color: #f0fdfa; /* 极浅青色 */
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #56B8B8;
            flex-shrink: 0;
            margin-top: 2px;
            border: 1px solid #e0f2f1;
        }

        .uee-nlp-text h4 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.1;
            margin: 0 0 4px 0;
            color: #0B1221;
        }

        .uee-nlp-text p {
            font-size: 15px;
            color: #64748b;
            line-height: 1.4;
            margin: 0;
        }

        /* --- 右侧图片区 (45% 宽度) --- */
        .uee-nlp-right {
            flex: 45;
            min-width: 400px;
        }

        .uee-nlp-img {
            width: 100%;
            height: auto;
            border-radius: 32px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            display: block;
            transition: transform 0.5s ease;
        }

        .uee-nlp-img:hover {
            transform: scale(1.02);
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .uee-nlp-container { flex-direction: column; text-align: center; }
            .uee-nlp-left, .uee-nlp-right { min-width: 100%; }
            .uee-badge-brain { margin-left: auto; margin-right: auto; }
            .uee-nlp-item { text-align: left; }
            .uee-nlp-right { order: -1; }
        }
    