
        /* --- 50/50 极致紧凑、带悬浮卡片版式 --- */
        .uee-core-voice-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            padding: 40px 5%; /* 极致紧缩上下边距 */
            color: #111827;
        }

        .uee-voice-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center; /* 左右垂直居中 */
            gap: 60px;
            flex-wrap: wrap;
        }

        /* --- 左侧内容区 --- */
        .uee-voice-left {
            flex: 1;
            min-width: 400px;
        }

        .uee-voice-badge {
            width: 44px;
            height: 44px;
            background-color: #EEF2FF; /* 极浅紫色背景 */
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6366F1;
            margin-bottom: 20px;
        }

        .uee-voice-left h2 {
            font-size: 16px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0 0 10px 0;
            color: #0B1221;
        }

        .uee-voice-left h3 {
            font-size: clamp(28px, 3.5vw, 36px);
            font-weight: 800;
            line-height: 1.05; /* 极致行距 */
            margin-bottom: 18px;
            letter-spacing: -1.5px;
            color: #0B1221;
        }

        .uee-voice-desc {
            font-size: 16px;
            color: #4b5563;
            line-height: 1.45;
            margin-bottom: 30px;
            max-width: 520px;
        }

        /* 特性列表：2列网格 */
        .uee-voice-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 20px;
        }

        .uee-feat-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 600;
            color: #111827;
        }

        .uee-feat-icon {
            color: #f97316; /* 核心橙色 */
            display: flex;
            align-items: center;
        }

        /* --- 右侧图片区 --- */
        .uee-voice-right {
            flex: 1;
            min-width: 400px;
            position: relative; /* 为悬浮卡片提供定位参考 */
        }

        .uee-main-img {
            width: 100%;
            height: auto;
            border-radius: 32px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            display: block;
        }

        /* 悬浮状态卡片 */
        .uee-floating-sla {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: #ffffff;
            padding: 16px 24px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 10;
        }

        .uee-sla-icon {
            width: 40px;
            height: 40px;
            background: #f0f2ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6366F1;
        }

        .uee-sla-text span {
            display: block;
            font-size: 11px;
            color: #64748b;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .uee-sla-text b {
            font-size: 18px;
            font-weight: 800;
            color: #0B1221;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .uee-voice-container { flex-direction: column; text-align: center; }
            .uee-voice-left, .uee-voice-right { min-width: 100%; }
            .uee-voice-badge { margin-left: auto; margin-right: auto; }
            .uee-voice-desc { margin-left: auto; margin-right: auto; }
            .uee-voice-features { text-align: left; max-width: 450px; margin-left: auto; margin-right: auto; }
            .uee-floating-sla { left: 10px; bottom: 10px; }
        }
    