
    /* 基础容器 */
    .uee-conv-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, Helvetica, Arial, sans-serif;
        gap: 60px;
    }

    /* 左侧图片区域 */
    .uee-conv-visual {
        flex: 1;
        position: relative;
    }

    .uee-conv-img {
        width: 100%;
        height: auto;
        border-radius: 35px;
        display: block;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
        transition: transform 0.4s ease;
    }

    .uee-conv-img:hover {
        transform: scale(1.02);
    }

    /* 右侧文字内容 */
    .uee-conv-content {
        flex: 1.1;
        text-align: left;
    }

    /* 标题上方的对话气泡图标 (保留原图淡紫色背景) */
    .uee-conv-top-icon {
        width: 54px;
        height: 54px;
        background-color: #f5f3ff;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        color: #ff7b1a; /* 使用原图橙色点缀 */
    }

    /* 优化后的获益型标题 */
    .uee-conv-content h2 {
        font-size: 38px;
        font-weight: 800;
        color: #0f172a;
        margin: 0 0 45px 0;
        line-height: 1.2;
        letter-spacing: -0.03em;
    }

    /* 功能列表 */
    .uee-conv-list {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .uee-conv-item {
        display: flex;
        gap: 18px;
        align-items: flex-start;
    }

    /* 优化的语义化小图标容器 */
    .uee-conv-icon-box {
        width: 42px;
        height: 42px;
        background-color: #f0fafa;
        border: 1px 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.02);
    }

    .uee-conv-text b {
        display: block;
        font-size: 19px;
        font-weight: 700;
        margin-bottom: 6px;
        color: #1e293b;
    }

    .uee-conv-text span {
        font-size: 15px;
        color: #64748b;
        line-height: 1.5;
    }

    /* 响应式适配 */
    @media (max-width: 992px) {
        .uee-conv-section {
            flex-direction: column;
            text-align: left;
            gap: 50px;
        }
        .uee-conv-visual {
            width: 100%;
            order: 2; /* 移动端图片放下面 */
        }
        .uee-conv-content h2 {
            font-size: 30px;
        }
    }
