
        /* --- 极致紧凑、动态科技背景、55/45 宽屏版式 --- */
        .uee-travel-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            position: relative;
            /* 1. 科技感淡渐变背景 */
            background: radial-gradient(circle at 50% 50%, #f4faff 0%, #ffffff 100%);
            padding: 80px 5%; 
            color: #111827;
            overflow: hidden; /* 隐藏浮动圆圈 */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* --- 2. 背景浮动圆圈动效 --- */
        .uee-bg-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            z-index: 1;
            pointer-events: none;
            opacity: 0.35;
            animation: travelOrbFloat 22s infinite alternate ease-in-out;
        }
        .orb-teal { width: 450px; height: 450px; background: #56B8B8; top: -100px; left: -50px; }
        .orb-blue { width: 500px; height: 500px; background: #e0f2fe; bottom: -150px; right: -50px; animation-delay: -6s; }

        @keyframes travelOrbFloat {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(60px, 80px) scale(1.1); }
        }

        .uee-travel-container {
            position: relative;
            z-index: 5;
            max-width: 1300px;
            width: 100%;
            display: flex;
            align-items: center; 
            gap: 60px;
            flex-wrap: wrap;
        }

        /* --- 3. 左侧：加宽文字区 (55% 宽度) --- */
        .uee-travel-left {
            flex: 55;
            min-width: 420px;
        }

        .uee-travel-left h1 {
            font-size: clamp(34px, 5.5vw, 60px);
            font-weight: 800;
            line-height: 1.05; /* 极致紧缩行距 */
            letter-spacing: -2.5px;
            margin: 0 0 25px 0;
            color: #0B1221;
        }

        .uee-travel-left h1 span {
            color: #56B8B8; /* 品牌青色 */
            font-style: italic;
        }

        .uee-travel-desc {
            font-size: 19px;
            color: #4B5563;
            line-height: 1.55;
            /* 文本宽度加宽，呈现扁平舒展视觉 */
            max-width: 1000px; 
            margin-bottom: 40px;
        }

        /* 橙色单一主按钮 */
        .uee-btn-travel {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #FF8022; /* 核心橙色 */
            color: #ffffff;
            padding: 18px 48px;
            border-radius: 12px;
            font-size: 19px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 25px rgba(255, 128, 34, 0.35);
        }

        .uee-btn-travel:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 30px rgba(255, 128, 34, 0.45);
        }

        /* --- 4. 右侧：高保真统计卡片 (45% 宽度) --- */
        .uee-travel-right {
            flex: 45;
            min-width: 400px;
            display: flex;
            justify-content: flex-end;
        }

        .uee-travel-card {
            background: #ffffff;
            border: 1px solid #f1f5f9;
            border-radius: 28px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.05);
            position: relative;
            max-width: 500px;
        }

        .uee-tag-orange {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #FF8022;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }

        .uee-travel-card p {
            font-size: 15px;
            color: #6B7280;
            line-height: 1.5;
            margin-bottom: 30px;
        }

        .uee-card-divider {
            height: 1px;
            background-color: #f1f5f9;
            margin-bottom: 25px;
            border: none;
        }

        /* 底部统计网格 */
        .uee-card-stats {
            display: flex;
            gap: 40px;
        }

        .uee-stat-box {
            display: flex;
            flex-direction: column;
        }

        .uee-stat-val {
            font-size: 28px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 6px;
        }

        .uee-stat-lab {
            font-size: 10px;
            font-weight: 700;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .teal-text { color: #56B8B8; }
        .orange-text { color: #FF8022; }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .uee-travel-container { flex-direction: column; text-align: center; }
            .uee-travel-left, .uee-travel-right { min-width: 100%; }
            .uee-travel-desc { margin: 0 auto 40px auto; }
            .uee-travel-right { justify-content: center; }
            .uee-travel-card { text-align: left; }
            .uee-btn-travel { width: 100%; max-width: 320px; }
        }
    