
        /* --- 全球资源模块：带配图极致紧凑版 --- */
        .uee-global-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            padding: 50px 5%; /* 缩减上下边距 */
            color: #111827;
        }

        .uee-global-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center; /* 左右垂直居中 */
            gap: 60px; /* 左右间距 */
            flex-wrap: wrap;
        }

        /* --- 左侧文字区 (55% 宽度) --- */
        .uee-global-left {
            flex: 55;
            min-width: 400px;
        }

        /* 顶部渐变图标 */
        .uee-icon-header {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #56B8B8;
            font-size: 26px;
            margin-bottom: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        }

        .uee-global-left h2 {
            font-size: clamp(32px, 4.5vw, 44px);
            font-weight: 800;
            line-height: 1.05; /* 极致行距 */
            letter-spacing: -2px;
            margin: 0 0 12px 0;
            color: #0B1221;
        }

        .uee-global-left h3 {
            font-size: 22px;
            font-weight: 700;
            color: #374151;
            margin-bottom: 18px;
            letter-spacing: -0.5px;
        }

        .uee-global-desc {
            font-size: 16.5px;
            color: #64748b;
            line-height: 1.45; /* 紧凑描述 */
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* 功能列表：2列紧凑布局 */
        .uee-feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px 20px;
        }

        .uee-feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 600;
            color: #1F2937;
        }

        /* 品牌青色打钩图标 */
        .uee-check-icon {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 1.5px solid #56B8B8;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #56B8B8;
            font-size: 10px;
            font-weight: 900;
            flex-shrink: 0;
        }

        /* --- 右侧图片区 (45% 宽度) --- */
        .uee-global-right {
            flex: 45;
            min-width: 400px;
            position: relative;
        }

        /* 图片样式：大圆角与阴影 */
        .uee-global-image {
            width: 100%;
            height: auto;
            border-radius: 32px;
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.18);
            display: block;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .uee-global-image:hover {
            transform: scale(1.03);
        }

        /* 响应式适配：移动端自动切换为垂直布局 */
        @media (max-width: 992px) {
            .uee-global-container { flex-direction: column; text-align: center; }
            .uee-global-left, .uee-global-right { min-width: 100%; }
            .uee-icon-header { margin: 0 auto 20px auto; }
            .uee-global-desc { margin: 0 auto 30px auto; }
            .uee-feature-grid { text-align: left; max-width: 400px; margin: 0 auto; }
            .uee-global-right { order: -1; } /* 移动端图片排在文字上方 */
        }
    