-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpro-result-template-gallery.html
More file actions
419 lines (370 loc) · 13.3 KB
/
pro-result-template-gallery.html
File metadata and controls
419 lines (370 loc) · 13.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>高级结果页灵感库</title>
<style>
:root {
--nav-bg: rgba(255, 255, 255, 0.9);
--nav-height: 72px;
--transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;
}
body {
font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
background: #f4f7f9;
color: #111827;
padding-top: var(--nav-height);
}
.template-switcher {
position: fixed;
inset: 0 0 auto;
z-index: 1000;
height: var(--nav-height);
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
padding: 0 20px;
border-bottom: 1px solid #e5e7eb;
background: var(--nav-bg);
backdrop-filter: blur(18px);
}
.sw-btn {
padding: 9px 18px;
border-radius: 999px;
border: 1px solid #d1d5db;
background: white;
color: #4b5563;
font-size: 13px;
font-weight: 800;
cursor: pointer;
transition: var(--transition);
}
.sw-btn.active {
background: #111827;
color: white;
border-color: #111827;
}
.result-page {
display: none;
min-height: calc(100vh - var(--nav-height));
}
.result-page.active {
display: block;
}
.shell {
max-width: 1080px;
margin: 0 auto;
padding: 56px 24px 80px;
}
.hero-card,
.panel,
.grid-card {
border-radius: 24px;
}
.panel-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 18px;
margin-top: 20px;
}
.tp-curator {
background: #fafaf9;
color: #1c1917;
}
.tp-curator .hero-card {
background: white;
border: 1px solid #e7e5e4;
padding: 72px 56px;
box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.06);
}
.tp-curator .eyebrow {
display: inline-block;
padding-bottom: 6px;
margin-bottom: 28px;
border-bottom: 2px solid #1c1917;
font-family: Georgia, serif;
font-style: italic;
}
.tp-curator h1 {
font-family: Georgia, serif;
font-size: 56px;
line-height: 1.04;
margin-bottom: 20px;
}
.tp-curator .main-quote {
margin-top: 28px;
padding: 32px;
background: #1c1917;
color: white;
font-size: 28px;
line-height: 1.45;
}
.tp-curator .panel,
.tp-curator .grid-card {
background: white;
border: 1px solid #e7e5e4;
padding: 22px;
}
.tp-matrix {
background: #0f172a;
color: white;
}
.tp-matrix .hero-card {
position: relative;
overflow: hidden;
padding: 56px;
background:
radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.25), transparent 28%),
linear-gradient(180deg, #0f172a 0%, #111827 100%);
border: 1px solid #1e293b;
}
.tp-matrix .hero-card::after {
content: "";
position: absolute;
inset: 0;
background-image: radial-gradient(rgba(148, 163, 184, 0.15) 1px, transparent 1px);
background-size: 32px 32px;
pointer-events: none;
}
.tp-matrix .content {
position: relative;
z-index: 1;
}
.tp-matrix .type-code {
font-size: 120px;
font-weight: 900;
letter-spacing: -0.08em;
line-height: 0.9;
}
.tp-matrix .panel,
.tp-matrix .grid-card {
padding: 22px;
background: rgba(15, 23, 42, 0.7);
border: 1px solid #334155;
}
.tp-clinical {
background: white;
color: black;
}
.tp-clinical .hero-card {
padding: 56px;
border-top: 6px solid black;
border-bottom: 2px solid black;
}
.tp-clinical h1 {
font-size: 42px;
font-weight: 900;
margin-bottom: 18px;
}
.tp-clinical .lead {
margin-top: 22px;
padding-left: 24px;
border-left: 6px solid black;
font-size: 24px;
line-height: 1.6;
font-weight: 700;
}
.tp-clinical .panel,
.tp-clinical .grid-card {
padding: 22px;
border: 1px solid #d4d4d4;
}
.tp-persona {
background: #fdf6f0;
color: #2d2a26;
}
.tp-persona .hero-card {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
min-height: 620px;
overflow: hidden;
background: #fff7ef;
}
.tp-persona .hero-copy {
padding: 72px 56px;
}
.tp-persona .hero-visual {
position: relative;
background: linear-gradient(180deg, #f1e3d5 0%, #ece2d9 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
color: #9a8d84;
}
.tp-persona .watermark {
position: absolute;
right: 24px;
bottom: -6px;
font-size: 88px;
font-weight: 900;
color: rgba(45, 42, 38, 0.08);
}
.tp-persona h1 {
font-size: 84px;
line-height: 0.9;
margin: 24px 0;
font-weight: 900;
}
.tp-persona .panel,
.tp-persona .grid-card {
padding: 22px;
background: white;
}
.panel h3,
.grid-card h3 {
margin-bottom: 12px;
font-size: 15px;
}
.panel p,
.grid-card p,
.hero-card p {
line-height: 1.8;
}
.stats-row {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 12px;
margin-top: 28px;
}
.stats-box {
padding: 18px;
border-radius: 18px;
background: rgba(255, 255, 255, 0.08);
text-align: center;
}
.stats-box strong {
display: block;
font-size: 28px;
margin-bottom: 4px;
}
@media (max-width: 980px) {
.panel-grid,
.tp-persona .hero-card {
grid-template-columns: 1fr;
}
.tp-curator .hero-card,
.tp-matrix .hero-card,
.tp-clinical .hero-card,
.tp-persona .hero-copy {
padding: 36px 24px;
}
.tp-curator h1,
.tp-persona h1 {
font-size: 40px;
}
.tp-matrix .type-code {
font-size: 72px;
}
.stats-row {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<nav class="template-switcher">
<button class="sw-btn active" onclick="showTemplate('curator', this)">精英策展人</button>
<button class="sw-btn" onclick="showTemplate('matrix', this)">数智矩阵</button>
<button class="sw-btn" onclick="showTemplate('clinical', this)">临床公理</button>
<button class="sw-btn" onclick="showTemplate('persona', this)">现代人格志</button>
</nav>
<section id="curator" class="result-page active tp-curator">
<div class="shell">
<div class="hero-card">
<div class="eyebrow">Elite Curator / 高端顾问版</div>
<h1>高阶领导力: 愿景型建筑师</h1>
<p>适合高客单价咨询、关系诊断、职业顾问与策略型数字内容项目。</p>
<div class="main-quote">您展现出极强的战略穿透力,擅长在模糊混沌的环境中建立秩序。</div>
<div class="stats-row">
<div class="stats-box"><strong>94%</strong><span>Vision</span></div>
<div class="stats-box"><strong>82%</strong><span>Grit</span></div>
<div class="stats-box"><strong>12%</strong><span>Risk</span></div>
</div>
</div>
<div class="panel-grid">
<article class="panel"><h3>总解释</h3><p>这套方案强调顾问品牌感与高价值结果交付感,适合创作者把结果页做成“正式报告第一页”。</p></article>
<article class="panel"><h3>结果图片区</h3><p>[ Image of Visionary Architecture ]</p></article>
<article class="grid-card"><h3>建议一</h3><p>在关键决策场景里保留更短的反馈链路,减少过度求稳造成的时机损耗。</p></article>
<article class="grid-card"><h3>建议二</h3><p>把抽象愿景拆成分层执行手册,会让你的影响力更容易被团队实际接住。</p></article>
</div>
</div>
</section>
<section id="matrix" class="result-page tp-matrix">
<div class="shell">
<div class="hero-card">
<div class="content">
<p style="font-size:12px; color:#818cf8; font-weight:800; margin-bottom:12px;">Neural Matrix / MBTI 推荐</p>
<div class="type-code">ENTJ-A</div>
<p style="max-width:560px; color:#94a3b8;">系统级指令者。适合 MBTI、人格类型、维度组合型项目,强化匹配值、类型缩写和数据感结果表达。</p>
<div class="stats-row">
<div class="stats-box"><strong>98%</strong><span>Match</span></div>
<div class="stats-box"><strong>E</strong><span>Energy</span></div>
<div class="stats-box"><strong>NTJ</strong><span>Pattern</span></div>
</div>
</div>
</div>
<div class="panel-grid">
<article class="panel"><h3>维度摘要</h3><p>E / N / T / J 四个维度都可以被强化展示,最适合映射 MBTI 组合。</p></article>
<article class="panel"><h3>总解释</h3><p>这套页面自带“结果像系统输出”的感受,天然适合人格类型和逻辑导向型互动内容。</p></article>
<article class="grid-card"><h3>瓶颈提醒</h3><p>共情频率过低时,可能在复杂人际环境中显得推进过猛。</p></article>
<article class="grid-card"><h3>行动协议</h3><p>建议增加非暴力沟通与开放讨论训练,补齐高压决策下的关系稳定度。</p></article>
</div>
</div>
</section>
<section id="clinical" class="result-page tp-clinical">
<div class="shell">
<div class="hero-card">
<p style="font-size:12px; font-weight:800; margin-bottom:18px;">Clinical Axiom / 深度报告版</p>
<h1>内源性特质诊断报告</h1>
<p>适合心理分析、咨询诊断和需要强解释感、强结构感的专业项目。</p>
<div class="lead">在面对外部冲击时,您倾向于退缩进内心的符号世界。这保护了创造力,也增加了现实摩擦。</div>
</div>
<div class="panel-grid">
<article class="panel"><h3>维度诊断 01</h3><p>您对传统科层制表现出明显不适,更偏好基于专业技能的平等联结。</p></article>
<article class="panel"><h3>维度诊断 02</h3><p>情感阈值偏高,普通刺激难以打动你,但一旦压力堆积,破坏力也更集中。</p></article>
<article class="grid-card"><h3>维度诊断 03</h3><p>符号重构力极强,擅长把抽象内容转化为具有叙事张力的表达。</p></article>
<article class="grid-card"><h3>专家建议书</h3><p>建议通过增加现实社交摩擦来中和过度活跃的内心世界,避免判断完全脱离外部语境。</p></article>
</div>
</div>
</section>
<section id="persona" class="result-page tp-persona">
<div class="shell">
<div class="hero-card">
<div class="hero-copy">
<p style="display:inline-flex; background:#e28743; color:white; padding:8px 14px; font-weight:800;">Modern Persona / 品牌杂志版</p>
<h1>都市<br />野心家</h1>
<p>适合年轻化人格画像、内容传播型互动体验和强调品牌审美气质的高级项目。</p>
</div>
<div class="hero-visual">
[ Image of Urban Modernism ]
<div class="watermark">CITY_WOLF</div>
</div>
</div>
<div class="panel-grid">
<article class="panel"><h3>你的核心风格</h3><p>你排斥混乱,天然偏向效率、秩序和高密度审美信号。</p></article>
<article class="panel"><h3>社交名片</h3><p>那种看起来很贵、很难被轻易左右、但一开口就能定调子的人。</p></article>
<article class="grid-card"><h3>建议</h3><p>更适合和高带宽沟通者配合,避免在低效环境中长期消耗。</p></article>
<article class="grid-card"><h3>避雷</h3><p>避免在情绪不稳时做强硬决策,否则“理性毒舌”会伤害团队关系。</p></article>
</div>
</div>
</section>
<script>
function showTemplate(id, button) {
document.querySelectorAll('.sw-btn').forEach((node) => node.classList.remove('active'));
button.classList.add('active');
document.querySelectorAll('.result-page').forEach((node) => node.classList.remove('active'));
document.getElementById(id).classList.add('active');
window.scrollTo({ top: 0, behavior: 'smooth' });
}
</script>
</body>
</html>