Best For
Z型 / 着陆页 / 营销
Z-Pattern Layout
A Z-pattern scanning layout based on eye-tracking, where the gaze moves from top-left to top-right, diagonally to bottom-left, then to bottom-right, forming a Z-path. Ideal for landing pages, marketing pages, and concise information displays.
Best For
Z型 / 着陆页 / 营销
Primary Move
Place logo/brand identity in the top-left corner
Watch Out
Do NOT place unimportant content on the Z-path
Showcase Entry
Live preview of the showcase page. Click to explore the full experience.
Color Palette
Primary
#0f172a
Secondary
#ffffff
Accent 1
#6366f1
Accent 2
#06b6d4
Prompts
Use one-click prompts to generate Z型布局 style UIs. Hard mode enforces strict constraints; soft mode keeps overall style direction while allowing flexibility.
Strict constraints for high style consistency
STYLEKIT_STYLE_REFERENCE
style_name: Z型布局
style_slug: z-pattern-layout
style_source: /styles/z-pattern-layout
# Hard Prompt
请严格遵守以下风格规则并保持一致性,禁止风格漂移。
## 执行要求
- 优先保证风格一致性,其次再做创意延展。
- 遇到冲突时以禁止项为最高优先级。
- 输出前自检:颜色、排版、间距、交互是否仍属于该风格。
## Style Rules
# Z-Pattern Layout (Z型布局) Design System
> 基于眼动追踪的Z型扫描布局,视线从左上到右上,斜穿到左下再到右下,形成Z字路径。适合着陆页、营销页面和简洁信息展示。
## 核心理念
Z-Pattern Layout 基于用户在视觉简洁页面上的自然扫描路径。视线从左上角(logo/品牌)移到右上角(CTA),然后斜穿到左下角,最后移至右下角(最终CTA)。
核心理念:
- 视觉引导:利用Z型路径引导用户完成预设的信息接收顺序
- 关键点位:四个角是最重要的信息放置点
- 简洁明了:适合内容较少但需要强转化的页面
- 层层推进:每一行都是一个信息层级
设计原则:
- 视觉一致性:所有组件必须遵循统一的视觉语言,从色彩到字体到间距保持谐调
- 层次分明:通过颜色深浅、字号大小、留白空间建立清晰的信息层级
- 交互反馈:每个可交互元素都必须有明确的 hover、active、focus 状态反馈
- 响应式适配:设计必须在移动端、平板、桌面端上保持一致的体验
- 无障碍性:确保色彩对比度符合 WCAG 2.1 AA 标准,所有交互元素可键盘访问
---
## Token 字典(精确 Class 映射)
### 边框
```
宽度: border
颜色: border-gray-200
圆角: rounded-xl
```
### 阴影
```
小: shadow-sm
中: shadow-md
大: shadow-lg shadow-[#6366f1]/25
悬停: hover:shadow-xl hover:shadow-[#6366f1]/30
聚焦: focus:shadow-md
```
### 交互效果
```
悬停位移: hover:-translate-y-0.5
过渡动画: transition-all duration-300
按下状态: active:scale-95
```
### 字体
```
标题: font-bold tracking-tight
正文: font-sans
```
### 字号
```
Hero: text-4xl md:text-5xl lg:text-6xl
H1: text-3xl md:text-4xl
H2: text-2xl md:text-3xl
H3: text-lg md:text-xl
正文: text-base md:text-lg
小字: text-sm
```
### 间距
```
Section: py-12 md:py-16 lg:py-20
容器: px-4 md:px-6 lg:px-8
卡片: p-6 md:p-8
```
---
## [FORBIDDEN] 绝对禁止
以下 class 在本风格中**绝对禁止使用**,生成时必须检查并避免:
### 禁止的 Class
- `rounded-none`
- `font-black`
- `border-4`
- `border-8`
### 禁止的模式
- 匹配 `^rounded-none$`
- 匹配 `^border-[48]`
### 禁止原因
- `rounded-none`: Z-Pattern Layout uses soft rounding (rounded-xl) for modern appeal
- `border-4`: Z-Pattern Layout uses subtle borders for clean, conversion-focused design
> WARNING: 如果你的代码中包含以上任何 class,必须立即替换。
---
## [REQUIRED] 必须包含
### 按钮必须包含
```
rounded-xl
font-semibold
transition-all duration-300
```
### 卡片必须包含
```
bg-white
rounded-2xl
shadow-sm
border border-gray-100
text-center
```
### 输入框必须包含
```
bg-white
border border-gray-200
rounded-xl
focus:outline-none
focus:ring-2 focus:ring-[#6366f1]/20 focus:border-[#6366f1]
transition-all
```
---
## [COMPARE] 错误 vs 正确对比
### 按钮
[WRONG] **错误示例**(使用了圆角和模糊阴影):
```html
<button class="rounded-lg shadow-lg bg-blue-500 text-white px-4 py-2 hover:bg-blue-600">
点击我
</button>
```
[CORRECT] **正确示例**(使用硬边缘、无圆角、位移效果):
```html
<button class="rounded-xl font-semibold transition-all duration-300 bg-[#ff006e] text-white px-4 py-2 md:px-6 md:py-3">
点击我
</button>
```
### 卡片
[WRONG] **错误示例**(使用了渐变和圆角):
```html
<div class="rounded-xl shadow-2xl bg-gradient-to-r from-purple-500 to-pink-500 p-6">
<h3 class="text-xl font-semibold">标题</h3>
</div>
```
[CORRECT] **正确示例**(纯色背景、硬边缘阴影):
```html
<div class="bg-white rounded-2xl shadow-sm border border-gray-100 text-center p-6 md:p-8">
<h3 class="font-bold tracking-tight text-lg md:text-xl">标题</h3>
</div>
```
### 输入框
[WRONG] **错误示例**(灰色边框、圆角):
```html
<input class="rounded-md border border-gray-300 px-3 py-2 focus:ring-2 focus:ring-blue-500" />
```
[CORRECT] **正确示例**(黑色粗边框、聚焦阴影):
```html
<input class="bg-white border border-gray-200 rounded-xl focus:outline-none focus:ring-2 focus:ring-[#6366f1]/20 focus:border-[#6366f1] transition-all px-3 py-2 md:px-4 md:py-3" placeholder="请输入..." />
```
---
## [TEMPLATES] 页面骨架模板
使用以下模板生成页面,只需替换 `{PLACEHOLDER}` 部分:
### 导航栏骨架
```html
<nav class="bg-white border-b-2 md:border-b-4 border-black px-4 md:px-8 py-3 md:py-4">
<div class="flex items-center justify-between max-w-6xl mx-auto">
<a href="/" class="font-black text-xl md:text-2xl tracking-wider">
{LOGO_TEXT}
</a>
<div class="flex gap-4 md:gap-8 font-mono text-sm md:text-base">
{NAV_LINKS}
</div>
</div>
</nav>
```
### Hero 区块骨架
```html
<section class="min-h-[60vh] md:min-h-[80vh] flex items-center px-4 md:px-8 py-12 md:py-0 bg-{ACCENT_COLOR} border-b-2 md:border-b-4 border-black">
<div class="max-w-4xl mx-auto">
<h1 class="font-black text-4xl md:text-6xl lg:text-8xl leading-tight tracking-tight mb-4 md:mb-6">
{HEADLINE}
</h1>
<p class="font-mono text-base md:text-xl max-w-xl mb-6 md:mb-8">
{SUBHEADLINE}
</p>
<button class="bg-black text-white font-black px-6 py-3 md:px-8 md:py-4 border-2 md:border-4 border-black shadow-[4px_4px_0px_0px_rgba(255,0,110,1)] md:shadow-[8px_8px_0px_0px_rgba(255,0,110,1)] hover:shadow-none hover:translate-x-[2px] hover:translate-y-[2px] transition-all text-sm md:text-base">
{CTA_TEXT}
</button>
</div>
</section>
```
### 卡片网格骨架
```html
<section class="py-12 md:py-24 px-4 md:px-8">
<div class="max-w-6xl mx-auto">
<h2 class="font-black text-2xl md:text-4xl mb-8 md:mb-12">{SECTION_TITLE}</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 md:gap-6">
<!-- Card template - repeat for each card -->
<div class="bg-white border-2 md:border-4 border-black shadow-[4px_4px_0px_0px_rgba(0,0,0,1)] md:shadow-[8px_8px_0px_0px_rgba(0,0,0,1)] p-4 md:p-6 hover:shadow-[4px_4px_0px_0px_rgba(255,0,110,1)] md:hover:shadow-[8px_8px_0px_0px_rgba(255,0,110,1)] hover:-translate-y-1 transition-all">
<h3 class="font-black text-lg md:text-xl mb-2">{CARD_TITLE}</h3>
<p class="font-mono text-sm md:text-base text-gray-700">{CARD_DESCRIPTION}</p>
</div>
</div>
</div>
</section>
```
### 页脚骨架
```html
<footer class="bg-black text-white py-12 md:py-16 px-4 md:px-8 border-t-2 md:border-t-4 border-black">
<div class="max-w-6xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div>
<span class="font-black text-xl md:text-2xl">{LOGO_TEXT}</span>
<p class="font-mono text-sm mt-4 text-gray-400">{TAGLINE}</p>
</div>
<div>
<h4 class="font-black text-lg mb-4">{COLUMN_TITLE}</h4>
<ul class="space-y-2 font-mono text-sm text-gray-400">
{FOOTER_LINKS}
</ul>
</div>
</div>
</div>
</footer>
```
---
## [CHECKLIST] 生成后自检清单
**在输出代码前,必须逐项验证以下每一条。如有违反,立即修正后再输出:**
### 1. 圆角检查
- [ ] 搜索代码中的 `rounded-`
- [ ] 确认只有 `rounded-none` 或无圆角
- [ ] 如果发现 `rounded-lg`、`rounded-md` 等,替换为 `rounded-none`
### 2. 阴影检查
- [ ] 搜索代码中的 `shadow-`
- [ ] 确认只使用 `shadow-[Xpx_Xpx_0px_0px_rgba(...)]` 格式
- [ ] 如果发现 `shadow-lg`、`shadow-xl` 等,替换为正确格式
### 3. 边框检查
- [ ] 搜索代码中的 `border-`
- [ ] 确认边框颜色是 `border-black`
- [ ] 如果发现 `border-gray-*`、`border-slate-*`,替换为 `border-black`
### 4. 交互检查
- [ ] 所有按钮都有 `hover:shadow-none hover:translate-x-[2px] hover:translate-y-[2px]`
- [ ] 所有卡片都有 hover 效果(阴影变色或位移)
- [ ] 都包含 `transition-all`
### 5. 响应式检查
- [ ] 边框有 `border-2 md:border-4`
- [ ] 阴影有 `shadow-[4px...] md:shadow-[8px...]`
- [ ] 间距有 `p-4 md:p-6` 或类似的响应式值
- [ ] 字号有 `text-sm md:text-base` 或类似的响应式值
### 6. 字体检查
- [ ] 标题使用 `font-black`
- [ ] 正文使用 `font-mono`
> CRITICAL: **如果任何一项检查不通过,必须修正后重新生成代码。**
---
## [EXAMPLES] 示例 Prompt
### 1. SaaS 着陆页
Z型布局的 SaaS 产品着陆页
```
用 Z-Pattern Layout 设计一个 SaaS 着陆页,要求:
1. 左上角:产品 logo
2. 右上角:Sign Up 按钮
3. 中间:产品标语 + 核心功能概述 + 主CTA
4. 中部:3个特性卡片
5. 底部左侧:客户logo/信任标识
6. 底部右侧:最终 CTA
7. 整体简洁,引导用户沿Z路径浏览
```
### 2. SaaS 着陆页
生成 Z型布局风格的 SaaS 产品着陆页
```
Create a SaaS landing page using Z-Pattern Layout style with hero section, feature grid, testimonials, pricing table, and footer.
```
### 3. 作品集展示
生成 Z型布局风格的作品集页面
```
Create a portfolio showcase page using Z-Pattern Layout style with project grid, about section, contact form, and consistent visual language.
```Flexible constraints for quick ideation
STYLEKIT_STYLE_REFERENCE
style_name: Z型布局
style_slug: z-pattern-layout
style_source: /styles/z-pattern-layout
# Soft Prompt
保持整体风格气质即可,允许实现细节灵活调整,但不要偏离核心视觉语言。
## Style Signals
- Z型
- 着陆页
- 营销
- 视觉引导
- CTA
- 扫描路径
## Prefer
- 左上角放置 logo/品牌标识
- 右上角放置导航或首要 CTA
- 中间区域放置核心价值主张
- 左下角放置辅助信息或信任标识
## Avoid
- 禁止在Z路径上放置不重要的内容
- 禁止打断Z型视觉流动
- 禁止使用过多的内容干扰路径
## Output Guidance
- 先保证整体风格识别度,再优化细节。
- 避免过度炫技,保持可读性与可维护性。Component Templates
Z型布局中的 CTA 按钮
/* Z-Pattern Layout 全局样式 */
/* Z型布局容器 */
.z-layout {
max-width: 1200px;
margin: 0 auto;
}
/* Z的第一行:品牌 + 导航/CTA */
.z-top-bar {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem 1.5rem;
}
/* Z的对角线区域:核心内容 */
.z-diagonal {
text-align: center;
padding: 5rem 1.5rem;
max-width: 800px;
margin: 0 auto;
}
/* Z的第二行:信任 + 最终CTA */
.z-bottom-bar {
display: flex;
align-items: center;
justify-content: space-between;
padding: 2rem 1.5rem;
}
/* Z路径上的关键点 */
.z-point {
position: relative;
}
.z-point::after {
content: '';
position: absolute;
width: 8px;
height: 8px;
background: #6366f1;
border-radius: 50%;
}
/* 响应式 */
@media (max-width: 768px) {
.z-top-bar,
.z-bottom-bar {
flex-direction: column;
gap: 1rem;
text-align: center;
}
.z-diagonal {
padding: 3rem 1.5rem;
}
}
/* Z-Pattern Layout Design Tokens */
:root {
--z-pattern-layout-primary: #0f172a;
--z-pattern-layout-secondary: #ffffff;
--z-pattern-layout-accent: #6366f1;
--z-pattern-layout-glow: rgba(15, 23, 42, 0.3);
}
@keyframes z-pattern-layout-fade-in {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes z-pattern-layout-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
.z-pattern-layout-gradient {
background: linear-gradient(135deg, #0f172a, #6366f1);
}
.z-pattern-layout-gradient-text {
background: linear-gradient(135deg, #0f172a, #6366f1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.z-pattern-layout-frosted {
backdrop-filter: blur(12px) saturate(180%);
-webkit-backdrop-filter: blur(12px) saturate(180%);
background: rgba(15, 23, 42, 0.08);
}
.z-pattern-layout-accent-corner {
clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%);
}
.z-pattern-layout-animate-in {
animation: z-pattern-layout-fade-in 0.5s ease-out both;
}Compatible Visual Styles
Z型布局 is a layout pattern that can be combined with the following visual styles.
IDE Integration
Download config files for your AI coding assistant to generate code following this style.
Style Pack
Get the complete machine-readable style assets including Design Tokens, Tailwind presets, CSS variables, and shadcn/ui themes.
Metadata
Style metadata including version information
Design Tokens
Compatible with Figma / Style Dictionary / Tokens Studio
Tailwind Preset
Tailwind CSS theme preset, import directly in config
Global CSS
CSS variables and base styles
shadcn Theme
shadcn/ui theme configuration
CSS Variables
Pure CSS variables, works with any project
SKILL.md
Loadable skill pack for Cursor / Claude Code / VS Code
Z-Pattern Layout is based on the user's natural scanning path on visually clean pages. The gaze moves from the top-left (logo/brand) to the top-right (CTA), then diagonally to the bottom-left, and finally to the bottom-right (final CTA).
WCAG 2.1 compliance analysis based on color contrast ratios and typography readability.
Overall Score
Grade: C - Fair
Contrast Ratios
| Context | Colors | Ratio | AA | AAA |
|---|---|---|---|---|
| Text on background | /#0f172a / #ffffff | 17.85:1 | ||
| Secondary text on background | /#4b5563 / #ffffff | 7.56:1 | ||
| Muted text on background | /#9ca3af / #ffffff | 2.54:1 | ||
| Text on secondary background | /#0f172a / #f9fafb | 17.08:1 | ||
| Secondary text on secondary | /#4b5563 / #f9fafb | 7.23:1 | ||
| Button primary | /#ffffff / #6366f1 | 4.47:1 | ||
| Text on accent 1 | /#0f172a / #6366f1 | 4:1 | ||
| Alt text on accent 1 | /#4b5563 / #6366f1 | 1.69:1 | ||
| Text on accent 2 | /#0f172a / #06b6d4 | 7.35:1 | ||
| Alt text on accent 2 | /#4b5563 / #06b6d4 | 3.11:1 | ||
| Text on accent 3 | /#0f172a / #f59e0b | 8.31:1 | ||
| Alt text on accent 3 | /#4b5563 / #f59e0b | 3.52:1 | ||
| Text on accent 4 | /#0f172a / #ec4899 | 5.06:1 | ||
| Alt text on accent 4 | /#4b5563 / #ec4899 | 2.14:1 |
Readability
Score
87/100
Font Size
text-base md:text-lg
Font Weight
font-bold tracking-tight
Line Height
default
Scores are based on WCAG 2.1 guidelines. AA requires 4.5:1 contrast for normal text and 3:1 for large text. AAA requires 7:1 for normal text and 4.5:1 for large text.
Further Reading
This section is better for readers who already like the direction and want more depth.