feat: 首页SaaS高端化视觉升级与图标系统统一

本次提交包含以下改进:

## 1. 首页架构精简 (HomePage.tsx)
- 移除模型生成(ModelGenerationShowcase)专题区和相关导入
- 移除"一站进入 OmniAI"Experience体验区及HOME_EXPERIENCE_POINTS
- 移除未使用的导入(DashboardOutlined, ThunderboltOutlined)
- 首页专题区从3个(model/ecommerce/script)缩减为2个(ecommerce/script)
- 轮播卡片x偏移量从固定px值改为clamp()流式响应式单位

## 2. 首页入口按钮重设计 (HomePage.tsx)
- 按钮文案升级:新手→快速生成(副标题:新手友好),老手→专业创作(副标题:画布工作流),电商→电商出图(副标题:商品视觉)
- 每个按钮新增small元素展示副标题
- 主按钮(专业创作)渐变绿色背景+发光阴影

## 3. 图标系统统一 — Emoji→Ant Design (ModelGenerationShowcase.tsx + ToolboxSection.tsx)
- ModelGenerationShowcase: emoji(🤖🖼️🎬📷🎨🛍️🌈)全部替换为对应的@ant-design/icons组件
- ToolboxSection: emoji(🎨📷🧑)替换为PictureOutlined/CameraOutlined/VideoCameraOutlined/ScissorOutlined
- SVG播放按钮替换为PlayCircleOutlined

## 4. 工具预览图补充 (MorePage.tsx)
- 为workbench核心工具添加预览图URL
- 为digitalHuman工具添加预览图URL

## 5. 合规页面按需样式加载 (App.tsx)
- 新增COMPLIANCE_PAGE_STYLE_VIEWS集合(communityReview/communityCaseAdd/report/userAgreement/privacyPolicy)
- 新增loadCompliancePageStyles()动态加载compliance.css
- 只在进入合规页面时才加载对应样式,减少首屏CSS体积

## 6. 全局滚动操作按钮禁用 (AppShell.tsx)
- showPageScrollActions强制设为false,全局禁用页面滚动到顶部/底部的浮动按钮

## 7. 首页Premium SaaS视觉升级 (home.css)
- 全新CSS变量体系:--home-card-radius/panel-radius/section-line/panel-border/text-strong/muted/faint
- 背景三层渐变叠加+双radial光晕(brand green+blue accent)
- Hero区域:eyebrow胶囊标签(绿点+毛玻璃)、h1字重950+text-shadow、描述text-wrap:balance
- 轮播卡片:流式clamp尺寸、非激活卡滤镜降饱和、激活卡高亮阴影、底部渐变分割线
- 入口按钮组:统一三列grid布局、图标圆形背景、hover微上移
- Feature专题页:grid网格背景+radial光晕+border分割线、Visual卡片统一玻璃态
- Ecommerce Matrix全面重写:三栏→自适应grid、feature/item/input/ai-node/output全组件玻璃态统一风格
- Experience区域:双radial光晕+网格纹理背景、路线卡片route-color动态渐变
- Script Review专题区:专属高度/内边距/溢出控制,容器查询适配
- Cookie Consent移动端优化

## 8. 响应式断点矩阵 (home.css)
- 1200px: 轮播卡片尺寸压缩
- 1100px: 专题页解除固定高度,Matrix双列布局
- 980px: h1字号clamp、轮播缩小、Matrix紧凑间距
- 899px: 专题页inline padding收紧
- 720px: 入口按钮堆叠、轮播全宽、专题页解除overflow
- 699px: Matrix grid-template-areas重构(copy+input双栏,outputs全宽)
- 640px: Matrix单列、feature-icon/text逐级隐藏
- 520px: output-group水平grid、output-cards三列
- 480px: 全页面紧缩、h1最大字号、carousel最小尺寸

## 9. 入口按钮多轮视觉打磨 (home.css 多轮迭代)
- Round 1: 绿色主题毛玻璃+三列grid
- Round 2: 暗色产品路径选择器风格,actions外框+entry透明
- Round 3: 回归深色面板风格(#101214),保持原始配色调性

## 10. Ecommerce Matrix分层响应式策略 (home.css)
- 1101px+: 三列流式宽度+dvh高度自适应
- 900-1100px: 三列紧凑+逐步隐藏描述文字
- 700-899px: 三列超紧凑+大量line-clamp截断
- <699px: grid-template-areas双栏+全宽输出
- <640px: 全单列堆叠

## 11. 脚本评审Showcase容器查询 (script-review-showcase.css)
- 外层@media保留padding控制
- 内层@container查询适配880px/720px/560px断点
- 图表列720px以下水平进度条布局
- 品牌区域/评分标签/流程卡片逐级压缩
This commit is contained in:
2026-06-09 18:45:57 +08:00
parent 52677e33f1
commit 65bb91c551
11 changed files with 3934 additions and 95 deletions
+1816 -3
View File
File diff suppressed because it is too large Load Diff
+331 -14
View File
@@ -83,14 +83,15 @@
.mgs-brand-section h1 {
max-width: 9.6em;
margin: 0;
background: linear-gradient(135deg, var(--mgs-green), var(--mgs-mint), var(--mgs-blue));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
background: none;
color: #eef8f2;
font-size: clamp(30px, 2.35cqw, 50px);
font-weight: 950;
letter-spacing: 0;
line-height: 1.16;
text-shadow:
0 18px 54px rgba(0, 0, 0, 0.38),
0 0 34px rgba(0, 255, 136, 0.08);
}
.mgs-subtitle {
@@ -180,6 +181,10 @@
font-weight: 900;
}
.mgs-mode-icon .anticon {
font-size: 0.9em;
}
.mgs-mode-info {
min-width: 0;
}
@@ -591,6 +596,10 @@
box-shadow 200ms ease;
}
.mgs-img-cell .anticon {
font-size: 0.9em;
}
.mgs-img-cell:hover {
border-color: var(--mgs-border-hover);
transform: scale(1.02);
@@ -664,11 +673,9 @@
transform: scale(1.06);
}
.mgs-play-btn svg {
width: 34%;
height: 34%;
margin-left: 3px;
fill: var(--mgs-green);
.mgs-play-btn .anticon {
color: var(--mgs-green);
font-size: 46%;
}
.mgs-video-timeline {
@@ -900,11 +907,9 @@
background: rgba(168, 85, 247, 0.18);
}
.mgs-mini-play svg {
width: 34%;
height: 34%;
margin-left: 2px;
fill: var(--mgs-purple);
.mgs-mini-play .anticon {
color: var(--mgs-purple);
font-size: 54%;
}
.mgs-video-duration {
@@ -1003,3 +1008,315 @@
text-align: left;
}
}
/* Home landing responsive containment */
@media (max-width: 980px) {
.web-shell[data-view="home"] .omni-model-gen-showcase {
gap: 14px;
padding: 18px;
overflow-y: auto;
}
.web-shell[data-view="home"] .mgs-brand-section {
gap: 10px;
}
.web-shell[data-view="home"] .mgs-brand-section h1 {
font-size: clamp(28px, 6vw, 42px);
}
.web-shell[data-view="home"] .mgs-subtitle {
font-size: clamp(13px, 2.4vw, 16px);
line-height: 1.55;
}
.web-shell[data-view="home"] .mgs-mode-tabs {
gap: 10px;
}
.web-shell[data-view="home"] .mgs-mode-tab {
min-height: 92px;
padding: 12px;
}
.web-shell[data-view="home"] .mgs-input-card {
min-height: 420px;
}
}
@media (max-width: 560px) {
.web-shell[data-view="home"] .omni-model-gen-showcase {
gap: 12px;
padding: 14px;
}
.web-shell[data-view="home"] .mgs-mode-tabs {
grid-template-columns: 1fr;
}
.web-shell[data-view="home"] .mgs-mode-tab {
grid-template-columns: 42px minmax(0, 1fr);
justify-items: stretch;
min-height: 70px;
text-align: left;
}
.web-shell[data-view="home"] .mgs-mode-icon {
width: 42px;
height: 42px;
font-size: 20px;
}
.web-shell[data-view="home"] .mgs-mode-info p {
display: none;
}
.web-shell[data-view="home"] .mgs-workflow {
display: none;
}
.web-shell[data-view="home"] .mgs-input-card {
min-height: 360px;
}
.web-shell[data-view="home"] .mgs-output-cards {
gap: 10px;
}
.web-shell[data-view="home"] .mgs-out-card {
min-height: auto;
padding: 14px;
}
}
/* Homepage landing tune: calmer, responsive product showcase. */
.web-shell[data-view="home"] .omni-model-gen-showcase {
grid-template-columns: minmax(250px, 0.7fr) minmax(330px, 1fr) minmax(330px, 1fr);
gap: clamp(16px, 1.8vw, 28px);
padding: clamp(22px, 2.4vw, 38px);
background: transparent;
}
.web-shell[data-view="home"] .omni-model-gen-showcase::before {
background: radial-gradient(circle at 50% 0%, rgb(0 255 136 / 8%), transparent 34%);
opacity: 0.5;
}
.web-shell[data-view="home"] .omni-model-gen-showcase::after {
opacity: 0.1;
}
.web-shell[data-view="home"] .mgs-left-panel {
gap: clamp(14px, 1.6vw, 24px);
padding-block: 0;
}
.web-shell[data-view="home"] .mgs-brand-section {
gap: 14px;
}
.web-shell[data-view="home"] .mgs-brand-section h1 {
max-width: 8em;
font-size: clamp(32px, 3vw, 48px);
line-height: 1.12;
}
.web-shell[data-view="home"] .mgs-subtitle {
color: rgb(232 240 236 / 66%);
font-size: clamp(14px, 1.05vw, 16px);
line-height: 1.68;
}
.web-shell[data-view="home"] .mgs-mode-tabs {
gap: 10px;
}
.web-shell[data-view="home"] .mgs-mode-tab,
.web-shell[data-view="home"] .mgs-workflow,
.web-shell[data-view="home"] .mgs-input-card,
.web-shell[data-view="home"] .mgs-out-card {
border-color: rgb(255 255 255 / 10%);
border-radius: 14px;
background:
linear-gradient(180deg, rgb(255 255 255 / 6%), rgb(255 255 255 / 2.5%)),
rgb(8 13 12 / 76%);
box-shadow:
0 18px 44px rgb(0 0 0 / 22%),
inset 0 1px 0 rgb(255 255 255 / 7%);
}
.web-shell[data-view="home"] .mgs-mode-tab {
grid-template-columns: 42px minmax(0, 1fr);
min-height: 78px;
padding: 12px 14px;
}
.web-shell[data-view="home"] .mgs-mode-tab:hover {
transform: translateX(2px);
}
.web-shell[data-view="home"] .mgs-mode-icon {
width: 42px;
height: 42px;
border-radius: 12px;
background: rgb(255 255 255 / 5%);
color: rgb(214 255 236 / 82%);
font-size: 20px;
}
.web-shell[data-view="home"] .mgs-mode-info h3 {
font-size: clamp(15px, 1.05vw, 18px);
}
.web-shell[data-view="home"] .mgs-mode-info p {
color: rgb(232 240 236 / 46%);
font-size: clamp(12px, 0.82vw, 13px);
}
.web-shell[data-view="home"] .mgs-workflow {
padding: 14px;
}
.web-shell[data-view="home"] .mgs-workflow-title {
margin-bottom: 10px;
color: rgb(232 240 236 / 42%);
font-size: 11px;
letter-spacing: 0.04em;
}
.web-shell[data-view="home"] .mgs-workflow-steps {
flex-wrap: wrap;
gap: 8px;
}
.web-shell[data-view="home"] .mgs-workflow-steps > span {
gap: 8px;
}
.web-shell[data-view="home"] .mgs-wf-step {
min-height: 34px;
padding-inline: 10px;
font-size: 12px;
}
.web-shell[data-view="home"] .mgs-input-card {
align-self: center;
height: auto;
min-height: clamp(430px, 48dvh, 560px);
max-width: 100%;
padding: clamp(18px, 1.8vw, 26px);
}
.web-shell[data-view="home"] .mgs-card-mode-badge {
min-height: 36px;
padding-inline: 14px;
font-size: 13px;
}
.web-shell[data-view="home"] .mgs-card-status {
font-size: 12px;
}
.web-shell[data-view="home"] .mgs-prompt-input {
height: clamp(82px, 8vw, 112px);
font-size: 13px;
}
.web-shell[data-view="home"] .mgs-agent-result-text,
.web-shell[data-view="home"] .mgs-out-preview {
font-size: 13px;
line-height: 1.62;
}
.web-shell[data-view="home"] .mgs-right-panel {
justify-content: center;
}
.web-shell[data-view="home"] .mgs-output-cards {
gap: 12px;
}
.web-shell[data-view="home"] .mgs-out-card {
min-height: clamp(128px, 12dvh, 172px);
padding: 16px;
}
.web-shell[data-view="home"] .mgs-out-title {
font-size: clamp(15px, 1.08vw, 18px);
}
.web-shell[data-view="home"] .mgs-out-img-placeholder,
.web-shell[data-view="home"] .mgs-out-video-placeholder {
min-height: clamp(72px, 7dvh, 104px);
border-style: solid;
}
.web-shell[data-view="home"] .mgs-out-img-placeholder .anticon {
font-size: 0.9em;
}
@container (max-width: 1180px) {
.web-shell[data-view="home"] .omni-model-gen-showcase {
grid-template-columns: minmax(240px, 0.64fr) minmax(0, 1.36fr);
}
.web-shell[data-view="home"] .mgs-right-panel {
grid-column: 1 / -1;
}
.web-shell[data-view="home"] .mgs-output-cards {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
@media (max-width: 1100px) {
.web-shell[data-view="home"] .omni-model-gen-showcase {
grid-template-columns: 1fr;
overflow: visible;
}
.web-shell[data-view="home"] .mgs-left-panel {
grid-template-rows: auto auto auto;
}
.web-shell[data-view="home"] .mgs-brand-section h1,
.web-shell[data-view="home"] .mgs-subtitle {
max-width: none;
}
.web-shell[data-view="home"] .mgs-mode-tabs {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.web-shell[data-view="home"] .mgs-mode-tab {
grid-template-columns: 38px minmax(0, 1fr);
min-height: 70px;
}
.web-shell[data-view="home"] .mgs-input-card {
min-height: 420px;
}
}
@media (max-width: 720px) {
.web-shell[data-view="home"] .omni-model-gen-showcase {
padding: 10px 0;
}
.web-shell[data-view="home"] .mgs-mode-tabs,
.web-shell[data-view="home"] .mgs-output-cards {
grid-template-columns: 1fr;
}
.web-shell[data-view="home"] .mgs-mode-info p {
display: block;
}
.web-shell[data-view="home"] .mgs-workflow {
display: none;
}
.web-shell[data-view="home"] .mgs-input-card {
min-height: 360px;
}
}
File diff suppressed because it is too large Load Diff
+620
View File
@@ -1138,3 +1138,623 @@
gap: 5px;
}
}
/* Premium landing pass: keep toolbox content, align material with the home redesign. */
.web-shell[data-view="home"] .omni-home__toolbox-page {
--toolbox-surface: rgb(255 255 255 / 4.5%);
--toolbox-elevated: rgb(255 255 255 / 6%);
--toolbox-border-subtle: rgb(255 255 255 / 8%);
--toolbox-border-default: rgb(255 255 255 / 10%);
--toolbox-border-hover: rgb(0 255 136 / 28%);
--toolbox-text-primary: #f4f8f5;
--toolbox-text-secondary: rgb(232 240 236 / 66%);
--toolbox-text-tertiary: rgb(232 240 236 / 42%);
border-top-color: rgb(255 255 255 / 7%);
background:
radial-gradient(circle at 18% 20%, rgb(0 255 136 / 9%), transparent 31%),
radial-gradient(circle at 82% 70%, rgb(84 139 255 / 7%), transparent 30%),
linear-gradient(180deg, #050807 0%, #030504 100%);
}
.web-shell[data-view="home"] .omni-home__toolbox-page::before {
content: "";
position: absolute;
inset: 0;
z-index: 0;
background:
linear-gradient(90deg, rgb(255 255 255 / 2.3%) 1px, transparent 1px),
linear-gradient(180deg, rgb(255 255 255 / 2.3%) 1px, transparent 1px);
background-size: 42px 42px;
mask-image: linear-gradient(180deg, rgb(0 0 0 / 62%), rgb(0 0 0 / 20%));
pointer-events: none;
}
.web-shell[data-view="home"] .omni-home__toolbox-brand-icon {
border: 1px solid rgb(0 255 136 / 28%);
background:
linear-gradient(145deg, rgb(0 255 136 / 22%), rgb(255 255 255 / 4%)),
rgb(7 17 15 / 90%);
color: var(--toolbox-green);
box-shadow:
0 16px 40px rgb(0 0 0 / 24%),
inset 0 1px 0 rgb(255 255 255 / 10%);
}
.web-shell[data-view="home"] .omni-home__toolbox-title {
background: none;
color: var(--toolbox-text-primary);
-webkit-text-fill-color: currentColor;
}
.web-shell[data-view="home"] .omni-home__toolbox-subtitle {
color: var(--toolbox-text-secondary);
}
.web-shell[data-view="home"] .omni-home__toolbox-item,
.web-shell[data-view="home"] .omni-home__toolbox-workflow,
.web-shell[data-view="home"] .omni-home__toolbox-card {
border-color: var(--toolbox-border-default);
border-radius: 18px;
background:
linear-gradient(180deg, rgb(255 255 255 / 6%), rgb(255 255 255 / 2.5%)),
rgb(8 13 12 / 78%);
box-shadow:
0 20px 50px rgb(0 0 0 / 24%),
inset 0 1px 0 rgb(255 255 255 / 7%);
backdrop-filter: blur(18px);
}
.web-shell[data-view="home"] .omni-home__toolbox-item:hover,
.web-shell[data-view="home"] .omni-home__toolbox-card:hover {
border-color: var(--toolbox-border-hover);
background:
linear-gradient(180deg, rgb(255 255 255 / 8%), rgb(255 255 255 / 3%)),
rgb(10 18 16 / 86%);
box-shadow:
0 26px 62px rgb(0 0 0 / 30%),
inset 0 1px 0 rgb(255 255 255 / 8%);
}
.web-shell[data-view="home"] .omni-home__toolbox-item-icon,
.web-shell[data-view="home"] .omni-home__toolbox-card-icon {
border-color: rgb(255 255 255 / 9%);
background: rgb(255 255 255 / 5%);
}
.web-shell[data-view="home"] .omni-home__toolbox-card-tag,
.web-shell[data-view="home"] .omni-home__toolbox-card-feat {
border-color: rgb(255 255 255 / 8%);
background: rgb(255 255 255 / 5%);
color: rgb(214 255 236 / 72%);
}
.web-shell[data-view="home"] .omni-home__toolbox-card {
overflow: hidden;
}
.web-shell[data-view="home"] .omni-home__toolbox-card::before {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
background:
linear-gradient(180deg, rgb(255 255 255 / 4%), transparent 34%),
radial-gradient(circle at 50% 0%, rgb(0 255 136 / 7%), transparent 42%);
pointer-events: none;
}
.web-shell[data-view="home"] .omni-home__toolbox-card > * {
position: relative;
z-index: 1;
}
/* Final tune after homepage landing feedback */
.web-shell[data-view="home"] .omni-home__toolbox-shell {
width: min(100%, 1360px);
gap: clamp(20px, 2.6vw, 36px);
}
.web-shell[data-view="home"] .omni-home__toolbox-left {
width: clamp(300px, 26vw, 390px);
}
.web-shell[data-view="home"] .omni-home__toolbox-brand-icon {
width: 46px;
height: 46px;
border-radius: 14px;
font-size: 21px;
}
.web-shell[data-view="home"] .omni-home__toolbox-brand-icon .anticon {
font-size: 21px;
}
.web-shell[data-view="home"] .omni-home__toolbox-brand-text {
font-size: clamp(22px, 2vw, 28px);
}
.web-shell[data-view="home"] .omni-home__toolbox-title {
font-size: clamp(32px, 3vw, 44px);
line-height: 1.12;
}
.web-shell[data-view="home"] .omni-home__toolbox-subtitle {
max-width: 380px;
font-size: clamp(14px, 1.08vw, 16px);
line-height: 1.65;
}
.web-shell[data-view="home"] .omni-home__toolbox-item {
gap: 14px;
padding: 14px 16px;
}
.web-shell[data-view="home"] .omni-home__toolbox-item-icon {
width: 40px;
height: 40px;
border: 1px solid rgb(255 255 255 / 9%);
border-radius: 12px;
color: rgb(214 255 236 / 82%);
font-size: 18px;
}
.web-shell[data-view="home"] .omni-home__toolbox-item-icon .anticon {
font-size: 18px;
}
.web-shell[data-view="home"] .omni-home__toolbox-item-name {
font-size: 15px;
}
.web-shell[data-view="home"] .omni-home__toolbox-item-desc {
font-size: 12px;
line-height: 1.45;
}
.web-shell[data-view="home"] .omni-home__toolbox-grid {
gap: 14px;
min-height: clamp(500px, 45vw, 640px);
}
.web-shell[data-view="home"] .omni-home__toolbox-card-icon {
width: 30px;
height: 30px;
border: 1px solid rgb(255 255 255 / 9%);
border-radius: 10px;
color: rgb(214 255 236 / 82%);
font-size: 15px;
}
.web-shell[data-view="home"] .omni-home__toolbox-card-icon .anticon {
font-size: 15px;
}
.web-shell[data-view="home"] .omni-home__toolbox-card-title {
font-size: 14px;
}
.web-shell[data-view="home"] .omni-home__toolbox-card-tag {
font-size: 10px;
}
/* Homepage landing tune: make this section feel like one product story, not a separate template block. */
.web-shell[data-view="home"] .omni-home__toolbox-page {
min-height: clamp(660px, 86dvh, 820px);
}
.web-shell[data-view="home"] .omni-home__toolbox-shell {
display: grid;
grid-template-columns: minmax(300px, 0.78fr) minmax(620px, 1.22fr);
align-items: center;
width: min(100% - 56px, 1320px);
min-height: inherit;
margin-inline: auto;
padding: clamp(42px, 5.2vw, 72px) 0;
}
.web-shell[data-view="home"] .omni-home__toolbox-left {
width: auto;
max-width: 390px;
}
.web-shell[data-view="home"] .omni-home__toolbox-brand-icon,
.web-shell[data-view="home"] .omni-home__toolbox-item-icon,
.web-shell[data-view="home"] .omni-home__toolbox-card-icon {
background:
linear-gradient(180deg, rgb(255 255 255 / 7%), rgb(255 255 255 / 3%)),
rgb(8 14 13 / 72%);
color: rgb(224 248 237 / 82%);
box-shadow:
inset 0 1px 0 rgb(255 255 255 / 8%),
0 12px 30px rgb(0 0 0 / 18%);
}
.web-shell[data-view="home"] .omni-home__toolbox-brand-icon {
border-color: rgb(255 255 255 / 10%);
}
.web-shell[data-view="home"] .omni-home__toolbox-list {
gap: 10px;
}
.web-shell[data-view="home"] .omni-home__toolbox-item {
min-height: 72px;
}
.web-shell[data-view="home"] .omni-home__toolbox-workflow {
padding: 14px 16px;
}
.web-shell[data-view="home"] .omni-home__toolbox-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
min-height: clamp(520px, 42vw, 620px);
gap: 16px;
}
.web-shell[data-view="home"] .omni-home__toolbox-card {
min-height: 0;
padding: clamp(16px, 1.4vw, 20px);
}
.web-shell[data-view="home"] .omni-home__toolbox-card-content {
min-height: clamp(170px, 13vw, 220px);
}
.web-shell[data-view="home"] .omni-home__toolbox-card-footer {
min-height: 28px;
align-items: center;
}
@media (max-width: 1080px) {
.web-shell[data-view="home"] .omni-home__toolbox-shell {
grid-template-columns: 1fr;
width: min(100% - 40px, 860px);
gap: 24px;
}
.web-shell[data-view="home"] .omni-home__toolbox-left {
max-width: none;
}
.web-shell[data-view="home"] .omni-home__toolbox-list {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 640px) {
.web-shell[data-view="home"] .omni-home__toolbox-page {
min-height: auto;
}
.web-shell[data-view="home"] .omni-home__toolbox-shell {
width: min(100% - 28px, 520px);
padding-block: 36px 44px;
}
.web-shell[data-view="home"] .omni-home__toolbox-list,
.web-shell[data-view="home"] .omni-home__toolbox-grid {
grid-template-columns: 1fr;
}
.web-shell[data-view="home"] .omni-home__toolbox-card-content {
min-height: 176px;
}
}
/* Device-fit pass for the home landing toolbox section. */
@media (min-width: 1101px) {
.web-shell[data-view="home"] .omni-home__toolbox-page {
min-height: clamp(620px, 82dvh, 840px);
}
.web-shell[data-view="home"] .omni-home__toolbox-shell {
min-height: inherit;
padding-block: clamp(34px, 4.2dvh, 64px);
}
}
@media (min-width: 900px) and (max-width: 1080px) {
.web-shell[data-view="home"] .omni-home__toolbox-page {
min-height: clamp(620px, 84dvh, 760px);
}
.web-shell[data-view="home"] .omni-home__toolbox-shell {
grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr);
width: min(100% - 48px, 980px);
min-height: inherit;
gap: 20px;
padding-block: 28px;
}
.web-shell[data-view="home"] .omni-home__toolbox-left {
max-width: none;
}
.web-shell[data-view="home"] .omni-home__toolbox-brand {
gap: 12px;
}
.web-shell[data-view="home"] .omni-home__toolbox-title {
font-size: clamp(30px, 3.6vw, 38px);
}
.web-shell[data-view="home"] .omni-home__toolbox-subtitle {
font-size: 13px;
line-height: 1.55;
}
.web-shell[data-view="home"] .omni-home__toolbox-list {
grid-template-columns: 1fr;
gap: 8px;
}
.web-shell[data-view="home"] .omni-home__toolbox-item {
min-height: 60px;
padding: 10px 12px;
}
.web-shell[data-view="home"] .omni-home__toolbox-workflow {
display: none;
}
.web-shell[data-view="home"] .omni-home__toolbox-grid {
min-height: clamp(430px, 58dvh, 560px);
gap: 12px;
}
.web-shell[data-view="home"] .omni-home__toolbox-card {
padding: 14px;
}
.web-shell[data-view="home"] .omni-home__toolbox-card-content {
min-height: clamp(138px, 16dvh, 180px);
}
}
@media (max-width: 520px) {
.web-shell[data-view="home"] .omni-home__toolbox-shell {
width: min(100% - 24px, 430px);
padding-block: 28px 34px;
}
.web-shell[data-view="home"] .omni-home__toolbox-title {
font-size: clamp(28px, 8.8vw, 34px);
}
.web-shell[data-view="home"] .omni-home__toolbox-subtitle,
.web-shell[data-view="home"] .omni-home__toolbox-item-desc {
font-size: 12px;
}
.web-shell[data-view="home"] .omni-home__toolbox-item {
min-height: 58px;
padding: 10px 12px;
}
.web-shell[data-view="home"] .omni-home__toolbox-grid {
gap: 12px;
}
.web-shell[data-view="home"] .omni-home__toolbox-card {
padding: 14px;
}
.web-shell[data-view="home"] .omni-home__toolbox-card-content {
min-height: 132px;
}
}
/* Device-fit refinement: toolbox keeps a product-card rhythm across tablet and mobile. */
@media (min-width: 700px) and (max-width: 899px) {
.web-shell[data-view="home"] .omni-home__toolbox-page {
min-height: auto;
}
.web-shell[data-view="home"] .omni-home__toolbox-shell {
grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
width: min(100% - 40px, 820px);
gap: 16px;
min-height: 0;
padding-block: 24px;
}
.web-shell[data-view="home"] .omni-home__toolbox-left {
gap: 12px;
}
.web-shell[data-view="home"] .omni-home__toolbox-brand {
gap: 10px;
}
.web-shell[data-view="home"] .omni-home__toolbox-title {
font-size: clamp(28px, 4vw, 38px);
}
.web-shell[data-view="home"] .omni-home__toolbox-subtitle {
display: -webkit-box;
overflow: hidden;
font-size: 12px;
line-height: 1.45;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
}
.web-shell[data-view="home"] .omni-home__toolbox-list {
grid-template-columns: 1fr;
gap: 8px;
}
.web-shell[data-view="home"] .omni-home__toolbox-item {
min-height: 54px;
gap: 8px;
padding: 8px 10px;
}
.web-shell[data-view="home"] .omni-home__toolbox-item-icon {
width: 34px;
height: 34px;
font-size: 14px;
}
.web-shell[data-view="home"] .omni-home__toolbox-item-name {
font-size: 13px;
}
.web-shell[data-view="home"] .omni-home__toolbox-item-desc {
display: -webkit-box;
overflow: hidden;
font-size: 10px;
line-height: 1.3;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
}
.web-shell[data-view="home"] .omni-home__toolbox-workflow {
display: none;
}
.web-shell[data-view="home"] .omni-home__toolbox-grid {
min-height: 0;
gap: 10px;
}
.web-shell[data-view="home"] .omni-home__toolbox-card {
min-height: 178px;
padding: 0;
}
.web-shell[data-view="home"] .omni-home__toolbox-card-header {
padding: 11px 12px 0;
}
.web-shell[data-view="home"] .omni-home__toolbox-card-icon {
width: 28px;
height: 28px;
font-size: 13px;
}
.web-shell[data-view="home"] .omni-home__toolbox-card-title {
font-size: 12px;
}
.web-shell[data-view="home"] .omni-home__toolbox-card-tag {
padding: 3px 7px;
font-size: 9px;
}
.web-shell[data-view="home"] .omni-home__toolbox-card-content {
min-height: 98px;
padding: 6px 12px;
}
.web-shell[data-view="home"] .omni-home__toolbox-card-footer {
padding: 6px 12px 10px;
}
}
@media (max-width: 699px) {
.web-shell[data-view="home"] .omni-home__toolbox-page {
min-height: auto;
}
.web-shell[data-view="home"] .omni-home__toolbox-shell {
width: min(100% - 24px, 430px);
gap: 12px;
min-height: 0;
padding-block: 24px 30px;
}
.web-shell[data-view="home"] .omni-home__toolbox-left {
gap: 10px;
}
.web-shell[data-view="home"] .omni-home__toolbox-title {
font-size: clamp(24px, 7.4vw, 32px);
}
.web-shell[data-view="home"] .omni-home__toolbox-subtitle {
display: -webkit-box;
overflow: hidden;
font-size: 11px;
line-height: 1.4;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
.web-shell[data-view="home"] .omni-home__toolbox-list {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 7px;
}
.web-shell[data-view="home"] .omni-home__toolbox-item {
min-height: 50px;
gap: 7px;
padding: 8px;
}
.web-shell[data-view="home"] .omni-home__toolbox-item-icon {
width: 28px;
height: 28px;
font-size: 12px;
}
.web-shell[data-view="home"] .omni-home__toolbox-item-name {
font-size: 12px;
}
.web-shell[data-view="home"] .omni-home__toolbox-item-desc,
.web-shell[data-view="home"] .omni-home__toolbox-workflow,
.web-shell[data-view="home"] .omni-home__toolbox-card-feat,
.web-shell[data-view="home"] .omni-home__toolbox-card-feat-sep {
display: none;
}
.web-shell[data-view="home"] .omni-home__toolbox-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 8px;
min-height: 0;
}
.web-shell[data-view="home"] .omni-home__toolbox-card {
min-height: 144px;
border-radius: 14px;
}
.web-shell[data-view="home"] .omni-home__toolbox-card-header {
align-items: flex-start;
gap: 6px;
padding: 9px 9px 0;
}
.web-shell[data-view="home"] .omni-home__toolbox-card-header-left {
gap: 6px;
}
.web-shell[data-view="home"] .omni-home__toolbox-card-icon {
width: 24px;
height: 24px;
border-radius: 7px;
font-size: 11px;
}
.web-shell[data-view="home"] .omni-home__toolbox-card-title {
font-size: 11px;
line-height: 1.2;
}
.web-shell[data-view="home"] .omni-home__toolbox-card-tag {
padding: 2px 5px;
font-size: 8px;
line-height: 1.2;
}
.web-shell[data-view="home"] .omni-home__toolbox-card-content {
min-height: 84px;
padding: 4px 8px;
}
.web-shell[data-view="home"] .omni-home__toolbox-card-footer {
min-height: 0;
padding: 0 9px 9px;
}
}