
        /* --- 极致紧凑与橙色视觉版式 --- */
        .uee-history-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            padding: 40px 5%; /* 保持极简上下边距 */
            color: #111827;
        }

        .uee-history-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* 主体布局：左文右图，垂直居中 */
        .uee-history-content {
            display: flex;
            align-items: center; /* 核心修改：确保左右垂直居中 */
            gap: 60px;
            flex-wrap: wrap;
        }

        /* 左侧：文字列表区 */
        .uee-history-left {
            flex: 1;
            min-width: 350px;
        }

        /* 收益化橙色标签 */
        .uee-history-tag {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            background-color: #fff7ed; /* 浅橙色背景 */
            color: #f97316; /* 核心橙色 */
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .uee-history-tag::before {
            content: '🕒'; /* 匹配历史时钟图标 */
            margin-right: 6px;
        }

        /* 紧凑标题 */
        .uee-history-left h3 {
            font-size: clamp(30px, 4vw, 38px);
            font-weight: 800;
            line-height: 1.05; /* 极致行距 */
            margin-bottom: 30px;
            letter-spacing: -1.2px;
        }

        /* 列表项布局 */
        .uee-history-item {
            display: flex;
            gap: 16px;
            margin-bottom: 22px; /* 紧凑间距 */
            transition: transform 0.3s ease;
        }

        .uee-history-item:hover {
            transform: translateX(8px);
        }

        /* 橙色图标盒子 */
        .uee-history-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            background-color: #fff7ed;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f97316;
            border: 1px solid #ffedd5;
        }

        .uee-history-text h4 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.1;
            margin: 0 0 6px 0;
        }

        .uee-history-text p {
            font-size: 14.5px;
            color: #64748b;
            margin: 0;
            line-height: 1.4;
        }

        /* 右侧：大比例图片区 */
        .uee-history-right {
            flex: 1.3; /* 图片更大，更具张力 */
            min-width: 400px;
        }

        .uee-history-img {
            width: 100%;
            height: auto;
            border-radius: 36px; /* 大圆角 */
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            display: block;
        }

        /* 响应式调整 */
        @media (max-width: 992px) {
            .uee-history-content { flex-direction: column; text-align: center; }
            .uee-history-left, .uee-history-right { min-width: 100%; }
            .uee-history-item { text-align: left; }
            .uee-history-right { order: -1; } /* 移动端图片置顶 */
            .uee-history-left h3 { font-size: 32px; }
        }
    