
    /* 1. 基础容器 */
    .uee-chatbot-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 80px auto;
        padding: 0 20px;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        gap: 60px;
    }

    /* 2. 左侧文字内容 */
    .uee-chatbot-content {
        flex: 1.1;
        text-align: left;
    }

    /* 标题上方的脑部图标盒 */
    .uee-nlp-top-icon {
        width: 54px;
        height: 54px;
        background-color: #f0fafa;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        color: #56B8B8; /* 您的主色调 */
        border: 1px solid rgba(86, 184, 184, 0.2);
    }

    /* 优化后的获益型标题 */
    .uee-chatbot-content h2 {
        font-size: 38px;
        font-weight: 800;
        color: #0f172a;
        margin: 0 0 45px 0;
        line-height: 1.2;
        letter-spacing: -0.03em;
    }

    /* 功能列表布局 */
    .uee-chatbot-list {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .uee-chatbot-item {
        display: flex;
        gap: 18px;
        align-items: flex-start;
    }

    /* 优化的语义化小图标容器 */
    .uee-chatbot-icon-box {
        width: 44px;
        height: 44px;
        background-color: #ffffff;
        border: 1.5px solid #e2e8f0;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #56B8B8;
        box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    }

    .uee-chatbot-text b {
        display: block;
        font-size: 19px;
        font-weight: 700;
        margin-bottom: 6px;
        color: #1e293b;
    }

    .uee-chatbot-text span {
        font-size: 15px;
        color: #64748b;
        line-height: 1.5;
    }

    /* 3. 右侧图片区域 */
    .uee-chatbot-visual {
        flex: 1;
        position: relative;
    }

    .uee-chatbot-img {
        width: 100%;
        height: auto;
        border-radius: 40px; /* 大圆角还原 */
        display: block;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
        transition: transform 0.4s ease;
    }

    .uee-chatbot-img:hover {
        transform: translateY(-5px);
    }

    /* 响应式适配 */
    @media (max-width: 992px) {
        .uee-chatbot-section {
            flex-direction: column;
            text-align: left;
            gap: 50px;
        }
        .uee-chatbot-visual {
            width: 100%;
        }
        .uee-chatbot-content h2 {
            font-size: 30px;
        }
    }
