
        /* --- 55/45 极致紧凑、BYOC 高保真版式 --- */
        .uee-byoc-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            padding: 40px 5%; /* 极致缩减上下间距 */
            color: #111827;
        }

        .uee-byoc-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center; /* 确保左右垂直居中 */
            gap: 60px; /* 左右间距 */
            flex-wrap: wrap;
        }

        /* --- 左侧图片区 (45% 宽度) --- */
        .uee-byoc-left {
            flex: 45;
            min-width: 400px;
        }

        .uee-byoc-image {
            width: 100%;
            height: auto;
            border-radius: 32px; /* 大圆角 */
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25); /* 深色调背景配套深阴影 */
            display: block;
            transition: transform 0.6s ease;
        }

        .uee-byoc-image:hover {
            transform: scale(1.02);
        }

        /* --- 右侧文字区 (55% 宽度) --- */
        .uee-byoc-right {
            flex: 55;
            min-width: 400px;
        }

        /* 顶部橙色图标 */
        .uee-byoc-icon-box {
            width: 44px;
            height: 44px;
            background-color: #fff7ed; /* 浅橙色背景 */
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f97316; /* 核心橙色 */
            font-size: 24px;
            margin-bottom: 20px;
            border: 1px solid #ffedd5;
        }

        .uee-byoc-right h2 {
            font-size: clamp(30px, 4vw, 42px);
            font-weight: 800;
            line-height: 1.05; /* 极致紧缩行距 */
            letter-spacing: -2px;
            margin: 0 0 15px 0;
            color: #0B1221;
        }

        .uee-byoc-desc {
            font-size: 16.5px;
            color: #64748b;
            line-height: 1.45; /* 紧凑描述 */
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* 功能列表：2列紧凑布局 */
        .uee-byoc-feat-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px 20px;
        }

        .uee-byoc-feat-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 600;
            color: #1F2937;
        }

        /* 品牌橙色打钩图标 */
        .uee-check-orange {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 1.5px solid #f97316;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f97316;
            font-size: 10px;
            font-weight: 900;
            flex-shrink: 0;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .uee-byoc-container { flex-direction: column; text-align: center; }
            .uee-byoc-left, .uee-byoc-right { min-width: 100%; }
            .uee-byoc-icon-box { margin-left: auto; margin-right: auto; }
            .uee-byoc-desc { margin-left: auto; margin-right: auto; }
            .uee-byoc-feat-grid { text-align: left; max-width: 450px; margin-left: auto; margin-right: auto; }
        }
    