-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
493 lines (457 loc) · 19.5 KB
/
Copy pathindex.html
File metadata and controls
493 lines (457 loc) · 19.5 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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PPT代做 - 专业演示文稿设计服务</title>
<style>
:root {
--bg: #08080f;
--bg-card: #111118;
--bg-card-hover: #181825;
--text: #e0e0e8;
--text-dim: #8888a0;
--accent: #c9a050;
--accent-light: #e0c878;
--border: #1e1e30;
--border-light: #2a2a40;
--radius: 12px;
--radius-sm: 8px;
--font: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
font-family: var(--font);
background: var(--bg);
color: var(--text);
line-height: 1.7;
}
/* ===== NAV ===== */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
background: rgba(8,8,15,0.85);
backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border);
padding: 0 40px;
display: flex; align-items: center; justify-content: space-between;
height: 64px;
}
.nav-logo { font-size: 1.3rem; font-weight: 700; color: var(--accent); letter-spacing: 1px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: 0.92rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
/* ===== HERO ===== */
.hero {
min-height: 100vh; display: flex; flex-direction: column; align-items: center;
justify-content: center; text-align: center; padding: 120px 24px 80px;
}
.hero-badge {
display: inline-block; padding: 6px 18px; border: 1px solid var(--accent);
border-radius: 20px; color: var(--accent); font-size: 0.82rem; margin-bottom: 28px;
letter-spacing: 2px;
}
.hero h1 { font-size: 3.6rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero p { color: var(--text-dim); font-size: 1.15rem; max-width: 560px; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 48px; margin-top: 20px; }
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 2.2rem; font-weight: 700; color: var(--accent-light); }
.hero-stat .label { font-size: 0.85rem; color: var(--text-dim); margin-top: 4px; }
.btn {
display: inline-block; padding: 14px 36px; border-radius: 30px;
font-size: 0.95rem; font-weight: 600; text-decoration: none; cursor: pointer;
transition: all 0.25s; border: none;
}
.btn-primary { background: var(--accent); color: #0a0a15; }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--border-light); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
/* ===== SECTION ===== */
section { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 12px; }
.section-title p { color: var(--text-dim); font-size: 1rem; max-width: 500px; margin: 0 auto; }
/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
background: var(--bg-card); border: 1px solid var(--border);
border-radius: var(--radius); padding: 36px 28px;
transition: all 0.3s;
}
.service-card:hover { background: var(--bg-card-hover); border-color: var(--border-light); transform: translateY(-4px); }
.service-card .icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--text-dim); font-size: 0.9rem; }
/* ===== PORTFOLIO ===== */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.portfolio-card {
background: var(--bg-card); border: 1px solid var(--border);
border-radius: var(--radius); overflow: hidden; transition: all 0.3s;
cursor: pointer;
}
.portfolio-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.portfolio-card .thumb {
height: 180px; display: flex; align-items: center; justify-content: center;
font-size: 1.8rem; font-weight: 800; letter-spacing: 2px;
position: relative;
}
.portfolio-card .info { padding: 20px; }
.portfolio-card .info h3 { font-size: 1.05rem; margin-bottom: 6px; }
.portfolio-card .info .meta { font-size: 0.82rem; color: var(--text-dim); display: flex; gap: 16px; }
.portfolio-card .badge {
display: inline-block; padding: 3px 10px; border-radius: 12px;
font-size: 0.75rem; margin-top: 10px;
}
/* thumb backgrounds */
.thumb-and-a { background: linear-gradient(135deg, #1a1a2e, #0f3460); }
.thumb-xiaomi { background: linear-gradient(135deg, #16213e, #0f3460); }
.thumb-xiaomi-mini { background: linear-gradient(135deg, #1a1a2e, #1a1a40); }
.thumb-textbook { background: linear-gradient(135deg, #f0f0f5, #e8e8f0); color: #333; }
.thumb-actor { background: linear-gradient(135deg, #1a1025, #2d1b4e); }
.thumb-yuan { background: linear-gradient(135deg, #1a1510, #2d2515); }
/* ===== PROCESS ===== */
.process-list { display: flex; gap: 0; justify-content: center; flex-wrap: wrap; }
.process-step {
flex: 1; min-width: 200px; text-align: center; padding: 32px 16px;
position: relative;
}
.process-step:not(:last-child)::after {
content: ''; position: absolute; top: 52px; right: -12px;
width: 24px; height: 2px; background: var(--border-light);
}
.process-step .step-num {
width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--accent);
display: flex; align-items: center; justify-content: center;
margin: 0 auto 16px; font-weight: 700; font-size: 1.1rem; color: var(--accent);
}
.process-step h4 { font-size: 1rem; margin-bottom: 6px; }
.process-step p { color: var(--text-dim); font-size: 0.85rem; }
/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 960px; margin: 0 auto; }
.pricing-card {
background: var(--bg-card); border: 1px solid var(--border);
border-radius: var(--radius); padding: 40px 28px; text-align: center;
transition: all 0.3s; position: relative;
}
.pricing-card.featured { border-color: var(--accent); transform: scale(1.04); }
.pricing-card.featured::before {
content: '热门'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
background: var(--accent); color: #0a0a15; padding: 4px 16px; border-radius: 12px;
font-size: 0.75rem; font-weight: 700;
}
.pricing-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.pricing-card .price { font-size: 2.4rem; font-weight: 800; color: var(--accent-light); margin: 16px 0 4px; }
.pricing-card .price small { font-size: 1rem; color: var(--text-dim); font-weight: 400; }
.pricing-card .desc { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 20px; }
.pricing-card ul { list-style: none; text-align: left; margin-bottom: 24px; }
.pricing-card ul li { padding: 6px 0; font-size: 0.88rem; color: var(--text-dim); }
.pricing-card ul li::before { content: '✓ '; color: var(--accent); font-weight: 700; }
/* ===== CTA ===== */
.cta {
text-align: center; padding: 120px 24px;
background: linear-gradient(180deg, transparent, rgba(201,160,80,0.06));
}
.cta h2 { font-size: 2.4rem; font-weight: 700; margin-bottom: 16px; }
.cta p { color: var(--text-dim); margin-bottom: 32px; font-size: 1.05rem; }
/* ===== FOOTER ===== */
footer {
border-top: 1px solid var(--border); padding: 40px;
text-align: center; color: var(--text-dim); font-size: 0.85rem;
}
/* ===== CONTACT MODAL ===== */
.contact-overlay {
display: none; position: fixed; inset: 0; z-index: 200;
background: rgba(0,0,0,0.8); backdrop-filter: blur(4px);
align-items: center; justify-content: center;
}
.contact-overlay.active { display: flex; }
.contact-modal {
background: var(--bg-card); border: 1px solid var(--border);
border-radius: var(--radius); padding: 40px 36px 32px;
max-width: 640px; width: 92%; position: relative;
}
.contact-modal .close {
position: absolute; top: 16px; right: 20px;
background: none; border: none; color: var(--text-dim); font-size: 1.4rem;
cursor: pointer;
}
.contact-modal .close:hover { color: var(--text); }
.contact-modal h2 { text-align: center; margin-bottom: 28px; font-size: 1.4rem; }
.contact-cols { display: flex; gap: 40px; margin-bottom: 28px; justify-content: center; }
.contact-col { flex: 0 0 auto; text-align: center; }
.contact-col h4 { font-size: 1rem; color: var(--text-dim); margin-bottom: 16px; font-weight: 600; letter-spacing: 0.5px; }
.contact-col .qr-wrap {
background: #fff; border-radius: var(--radius-sm); padding: 16px;
display: inline-block; width: 200px; height: 200px; box-sizing: border-box;
}
.contact-col img { display: block; width: 100%; height: 100%; object-fit: contain; border-radius: 4px; }
.contact-email {
text-align: center; padding-top: 20px; border-top: 1px solid var(--border);
}
.contact-email span { color: var(--text-dim); font-size: 0.88rem; display: block; margin-bottom: 6px; }
.contact-email a {
color: var(--accent); font-size: 1.05rem; text-decoration: none; font-weight: 600;
}
.contact-email a:hover { color: var(--accent-light); }
/* ===== MODAL ===== */
.modal-overlay {
display: none; position: fixed; inset: 0; z-index: 200;
background: rgba(0,0,0,0.8); backdrop-filter: blur(4px);
align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
background: var(--bg-card); border: 1px solid var(--border);
border-radius: var(--radius); padding: 40px; max-width: 600px; width: 90%;
position: relative;
}
.modal .close {
position: absolute; top: 16px; right: 20px;
background: none; border: none; color: var(--text-dim); font-size: 1.4rem;
cursor: pointer;
}
.modal .close:hover { color: var(--text); }
.modal h2 { margin-bottom: 8px; }
.modal .file-path { color: var(--text-dim); font-size: 0.82rem; margin-bottom: 20px; word-break: break-all; }
.modal table { width: 100%; border-collapse: collapse; }
.modal td { padding: 8px 12px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.modal td:first-child { color: var(--text-dim); width: 80px; white-space: nowrap; }
@media (max-width: 768px) {
nav { padding: 0 20px; }
.nav-links { gap: 16px; }
.hero h1 { font-size: 2.2rem; }
.hero-stats { gap: 28px; }
.services-grid, .portfolio-grid, .pricing-grid { grid-template-columns: 1fr; }
section { padding: 60px 20px; }
}
</style>
</head>
<body>
<!-- NAV -->
<nav>
<div class="nav-logo">PPT·PRO</div>
<ul class="nav-links">
<li><a href="#services">服务</a></li>
<li><a href="#portfolio">作品</a></li>
<li><a href="#process">流程</a></li>
<li><a href="javascript:;" onclick="openContactModal()" style="color:var(--accent);font-weight:600;">咨询</a></li>
</ul>
</nav>
<!-- HERO -->
<section class="hero" id="home">
<div class="hero-badge">PROFESSIONAL PPT DESIGN</div>
<h1>让每一页<span>PPT</span><br>都成为你的名片</h1>
<p>专注高端演示文稿设计,6年经验积累,覆盖产品发布、学术汇报、人物传记等多种场景</p>
<a href="#portfolio" class="btn btn-primary">查看作品</a>
<div class="hero-stats">
<div class="hero-stat"><div class="num">100+</div><div class="label">完成项目</div></div>
<div class="hero-stat"><div class="num">6</div><div class="label">风格类型</div></div>
<div class="hero-stat"><div class="num">48h</div><div class="label">极速交付</div></div>
</div>
</section>
<!-- SERVICES -->
<section id="services">
<div class="section-title">
<h2>服务范围</h2>
<p>覆盖主流PPT设计场景,满足不同需求</p>
</div>
<div class="services-grid">
<div class="service-card">
<div class="icon">🚀</div>
<h3>产品发布会PPT</h3>
<p>科技感十足的大屏风格,参数对比清晰,适合手机、PC等新品发布场景</p>
</div>
<div class="service-card">
<div class="icon">📚</div>
<h3>学术调研报告</h3>
<p>结构化分章、中英双语、数据可视化卡片,适用于高校小组Pre、课题汇报</p>
</div>
<div class="service-card">
<div class="icon">👤</div>
<h3>人物传记介绍</h3>
<p>时间轴叙事、历史照片编排,庄重正式的风格适合人物生平、企业历程展示</p>
</div>
<div class="service-card">
<div class="icon">🎬</div>
<h3>系统概念宣传</h3>
<p>逐页动画叙事、UI组件截图融合,打造电影级系统/软件概念演示</p>
</div>
<div class="service-card">
<div class="icon">😄</div>
<h3>创意趣味PPT</h3>
<p>手写吐槽风、幽默轻松的风格,适合知识科普、社团活动等场景</p>
</div>
<div class="service-card">
<div class="icon">🎨</div>
<h3>定制化设计</h3>
<p>根据你的品牌VI和需求,量身定制专属PPT模板与设计规范</p>
</div>
</div>
</section>
<!-- PORTFOLIO -->
<section id="portfolio">
<div class="section-title">
<h2>精选作品</h2>
<p>每一份PPT都经过精心打磨</p>
</div>
<div class="portfolio-grid">
<div class="portfolio-card" onclick="window.open('ppt_and_a_ppt_and_a.html','_blank')">
<div class="thumb thumb-and-a"><span style="color:#e0c878">And a</span></div>
<div class="info">
<h3>And a 系列新品发布会</h3>
<div class="meta"><span>16页</span><span>发布会风格</span></div>
<span class="badge" style="background:#1a2a3e;color:#5a9fd4;">科技大屏</span>
</div>
</div>
<div class="portfolio-card" onclick="window.open('ppt_actor_ppt_actor.html','_blank')">
<div class="thumb thumb-actor"><span style="color:#c084fc">短剧演员</span></div>
<div class="info">
<h3>短剧演员职业调研报告</h3>
<div class="meta"><span>29页</span><span>学术报告</span></div>
<span class="badge" style="background:#2d1b4e;color:#c084fc;">中英双语</span>
</div>
</div>
<div class="portfolio-card" onclick="window.open('ppt_yuan_ppt_yuan.html','_blank')">
<div class="thumb thumb-yuan"><span style="color:#d4a574">袁隆平</span></div>
<div class="info">
<h3>袁隆平——杂交水稻之父</h3>
<div class="meta"><span>29页</span><span>人物传记</span></div>
<span class="badge" style="background:#2d2515;color:#d4a574;">时间轴叙事</span>
</div>
</div>
</div>
</section>
<!-- PROCESS -->
<section id="process">
<div class="section-title">
<h2>合作流程</h2>
<p>简单四步,轻松搞定</p>
</div>
<div class="process-list">
<div class="process-step">
<div class="step-num">1</div>
<h4>需求沟通</h4>
<p>告诉我你的主题、风格偏好和具体要求</p>
</div>
<div class="process-step">
<div class="step-num">2</div>
<h4>初稿设计</h4>
<p>48小时内交付初稿,提供2版风格供选择</p>
</div>
<div class="process-step">
<div class="step-num">3</div>
<h4>修改完善</h4>
<p>免费修改3次,直到你满意为止</p>
</div>
<div class="process-step">
<div class="step-num">4</div>
<h4>交付源文件</h4>
<p>交付可编辑的.pptx源文件,版权归你</p>
</div>
</div>
</section>
<!-- CTA -->
<section class="cta">
<h2>准备好让你的PPT脱颖而出?</h2>
<p>告诉我你的需求,剩下的交给我</p>
<a href="javascript:;" class="btn btn-primary" style="font-size:1.05rem;padding:16px 44px;" onclick="openContactModal()">立即咨询</a>
</section>
<!-- CONTACT MODAL -->
<div class="contact-overlay" id="contactOverlay" onclick="closeContactModal(event)">
<div class="contact-modal" onclick="event.stopPropagation()">
<button class="close" onclick="closeContactModal()">×</button>
<h2>联系我</h2>
<div class="contact-cols">
<div class="contact-col">
<h4>QQ</h4>
<div class="qr-wrap">
<img src="qq_qrcode.png" alt="QQ二维码">
</div>
</div>
<div class="contact-col">
<h4>微信</h4>
<div class="qr-wrap">
<img src="wx_qrcode.png" alt="微信二维码">
</div>
</div>
</div>
<div class="contact-email">
<span>或直接发送邮件至</span>
<a href="mailto:15399918669@163.com">15399918669@163.com</a>
</div>
</div>
</div>
<!-- FOOTER -->
<footer>
<p>PPT·PRO © 2026 | 专业演示文稿设计服务</p>
</footer>
<!-- MODAL -->
<div class="modal-overlay" id="modalOverlay" onclick="closeModal(event)">
<div class="modal" id="modalContent" onclick="event.stopPropagation()">
<button class="close" onclick="closeModal()">×</button>
<h2 id="modalTitle"></h2>
<div class="file-path" id="modalPath"></div>
<table id="modalTable"></table>
</div>
</div>
<script>
const projects = [
{
name: "And a 系列新品发布会",
path: "D:\\PPT\\And a系列.pptx",
pages: "16页",
type: "产品发布会",
style: "深色科技大屏风 · 参数对比表格 · 四宫格导航",
summary: "完整模拟手机发布会流程:四款机型对比、屏幕/CPU/摄像头参数展示、And特色功能、Young OS新系统、定价与新品特权",
author: "产品经理 LYX、YPN / CEO HL"
},
{
name: "短剧演员职业调研报告",
path: "D:\\PPT\\我要当短剧演员——职业2513浪浪浪小组.pptx",
pages: "29页",
type: "学术调研报告",
style: "深色学术风 · 中英双语 · 数据卡片 · 左侧章节导航",
summary: "四大章节:行业特点(浮世戏境) → 入行门槛与薪资(阶薪万象) → 发展历程(岁月流章) → 标杆人物(追光领航)",
author: "组长胡浪 等9人小组"
},
{
name: "袁隆平——杂交水稻之父",
path: "D:\\PPT\\袁隆平介绍.pptx",
pages: "29页",
type: "人物传记",
style: "深色庄重风 · 时间轴导航 · 图文混排 · 金色标题",
summary: "按时间线介绍袁隆平一生:教育经历 → 科研历程 → 二系/超级杂交水稻突破 → 国际交流推广 → 荣誉称号",
author: "@H.O²"
}
];
function openModal(idx) {
const p = projects[idx];
document.getElementById('modalTitle').textContent = p.name;
document.getElementById('modalPath').textContent = '文件路径:' + p.path;
document.getElementById('modalTable').innerHTML = `
<tr><td>页数</td><td>${p.pages}</td></tr>
<tr><td>类型</td><td>${p.type}</td></tr>
<tr><td>设计风格</td><td>${p.style}</td></tr>
<tr><td>内容概要</td><td>${p.summary}</td></tr>
<tr><td>作者</td><td>${p.author}</td></tr>
`;
document.getElementById('modalOverlay').classList.add('active');
}
function closeModal(e) {
if (e && e.target !== document.getElementById('modalOverlay')) return;
document.getElementById('modalOverlay').classList.remove('active');
}
document.addEventListener('keydown', function(e) {
if (e.key === 'Escape') { closeModal(); closeContactModal(); }
});
function openContactModal() {
document.getElementById('contactOverlay').classList.add('active');
}
function closeContactModal(e) {
if (e && e.target !== document.getElementById('contactOverlay')) return;
document.getElementById('contactOverlay').classList.remove('active');
}
</script>
</body>
</html>