
        /* --- 55/45 黄金比例、大图集成模块版式 --- */
        .uee-integ-wide-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            padding: 40px 5%; /* 缩减上下空白空间 */
            color: #111827;
        }

        .uee-integ-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center; /* 左右垂直居中 */
            gap: 60px;
            flex-wrap: wrap;
        }

        /* --- 左侧：文字功能侧 (55% 宽度) --- */
        .uee-integ-left {
            flex: 55;
            min-width: 420px;
        }

        .uee-integ-header {
            margin-bottom: 30px;
        }

        .uee-integ-top-icon {
            width: 44px;
            height: 44px;
            background-color: #fff7ed; /* 浅橙色 */
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f97316;
            font-size: 22px;
            margin-bottom: 15px;
            border: 1px solid #ffedd5;
        }

        .uee-integ-left h2 {
            font-size: clamp(32px, 4.5vw, 48px);
            font-weight: 800;
            line-height: 1.05; /* 极致紧缩行距 */
            letter-spacing: -2px;
            margin: 0 0 35px 0;
            color: #0B1221;
        }

        /* 2x2 功能网格 */
        .uee-integ-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .uee-integ-card {
            background: #ffffff;
            border: 1px solid #f1f5f9;
            border-radius: 20px;
            padding: 24px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
        }

        .uee-integ-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.06);
            border-color: #56B8B8;
        }

        .uee-card-icon-box {
            width: 38px;
            height: 38px;
            background-color: #f0f2ff; /* 浅紫色 */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6366f1;
            margin-bottom: 16px;
            font-size: 18px;
        }

        .uee-integ-card h4 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.1;
            margin: 0 0 8px 0;
        }

        .uee-integ-card p {
            font-size: 14.5px;
            color: #64748b;
            line-height: 1.4; /* 紧凑描述 */
            margin: 0;
        }

        /* --- 右侧：大图展示侧 (45% 宽度) --- */
        .uee-integ-right {
            flex: 45; 
            min-width: 400px;
        }

        .uee-integ-large-img {
            width: 100%;
            height: auto;
            border-radius: 32px; /* 大圆角 */
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.2);
            display: block;
            transition: transform 0.6s ease;
        }

        .uee-integ-large-img:hover {
            transform: scale(1.02);
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .uee-integ-container { flex-direction: column; text-align: center; }
            .uee-integ-left, .uee-integ-right { min-width: 100%; }
            .uee-integ-top-icon { margin-left: auto; margin-right: auto; }
            .uee-integ-grid { text-align: left; grid-template-columns: 1fr; }
            .uee-integ-right { order: -1; } /* 移动端大图置顶 */
        }
    