About Us
Source: https://xlean.ai/pages/about-us
.xlean-stack { min-height: 70vh; /* 可改:整体占可视高度比例 */ display: flex; flex-direction: column; justify-content: center; /* 垂直居中整个区块 */ align-items: center; /* 水平居中图片 */ gap: var(--xlean-gap, 28px); /* 图片间距,可用 style 覆盖 */ padding: 40px 16px; /* 内边距(左右留空) */ box-sizing: border-box; background: transparent; } .xlean-stack img { display: block; width: 100%; max-width: clamp(180px, 36vw, 720px); /* 自适应:最小180px,优先使用 36vw,最大720px */ height: auto; object-fit: contain; border-radius: 6px; /* 可选 */ } /* 小屏优化 */ @media (max-width: 768px) { .xlean-stack { min-height: 50vh; gap: 18px; padding: 28px 12px; } .xlean-stack img { max-width: clamp(140px, 70vw, 520px); } }