-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpresentation.html
More file actions
750 lines (716 loc) · 20.7 KB
/
presentation.html
File metadata and controls
750 lines (716 loc) · 20.7 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
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>工作生活 AI 工具技术分享</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #333;
line-height: 1.6;
}
.slide {
width: 100vw;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 60px;
background: white;
page-break-after: always;
border-bottom: 10px solid #667eea;
}
.slide:nth-child(odd) {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.slide:nth-child(even) {
background: white;
}
h1 {
font-size: 48px;
margin-bottom: 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-align: center;
}
h2 {
font-size: 36px;
margin-bottom: 30px;
color: #667eea;
text-align: center;
}
h3 {
font-size: 28px;
margin-bottom: 20px;
color: #764ba2;
}
p {
font-size: 20px;
line-height: 1.8;
margin-bottom: 15px;
color: #555;
}
ul {
font-size: 20px;
line-height: 2;
margin-left: 40px;
color: #555;
}
li { margin-bottom: 10px; }
.highlight {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 3px 10px;
border-radius: 5px;
}
.box {
background: white;
border-left: 5px solid #667eea;
padding: 20px 30px;
margin: 20px 0;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
width: 100%;
max-width: 900px;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin: 30px 0;
width: 100%;
max-width: 1000px;
}
.card {
background: white;
padding: 25px;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
text-align: center;
transition: transform 0.3s;
}
.card:hover {
transform: translateY(-5px);
}
.card h4 {
font-size: 24px;
color: #667eea;
margin-bottom: 15px;
}
.card p {
font-size: 16px;
color: #777;
}
.emoji { font-size: 48px; margin-bottom: 20px; }
table {
width: 100%;
max-width: 1000px;
border-collapse: collapse;
margin: 20px 0;
background: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
th, td {
padding: 15px;
text-align: left;
border-bottom: 2px solid #eee;
}
th {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
font-weight: 600;
}
tr:hover { background: #f5f5f5; }
.tag {
display: inline-block;
padding: 3px 10px;
border-radius: 15px;
font-size: 14px;
font-weight: 500;
}
.tag.free { background: #22c55e; color: white; }
.tag.paid { background: #f59e0b; color: white; }
.tool-card {
background: white;
border-left: 5px solid #667eea;
padding: 25px;
border-radius: 10px;
margin: 15px 0;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
width: 100%;
max-width: 900px;
}
.tool-card h4 {
font-size: 24px;
color: #667eea;
margin-bottom: 10px;
}
.tool-card .company {
font-size: 16px;
color: #777;
margin-bottom: 15px;
}
.tool-card .features {
font-size: 16px;
color: #555;
line-height: 1.8;
}
.step {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
font-weight: bold;
margin-right: 15px;
flex-shrink: 0;
}
.step-box {
display: flex;
align-items: flex-start;
background: white;
padding: 20px;
border-radius: 10px;
margin: 15px 0;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
width: 100%;
max-width: 900px;
}
.code-block {
background: #1e1e1e;
color: #d4d4d4;
padding: 20px;
border-radius: 10px;
font-family: monospace;
font-size: 14px;
line-height: 1.6;
overflow-x: auto;
width: 100%;
max-width: 900px;
}
.footer {
text-align: center;
padding: 20px;
color: #777;
font-size: 14px;
}
@media (max-width: 768px) {
.slide { padding: 30px 20px; }
h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 22px; }
table { font-size: 14px; }
th, td { padding: 10px; }
}
</style>
</head>
<body>
<!-- Slide 1: 封面 -->
<div class="slide">
<div class="emoji">🤖</div>
<h1>工作生活 AI 工具技术分享</h1>
<p style="font-size: 24px; color: #777; text-align: center;">探索 AI 工具,提升工作效率</p>
<div class="box" style="margin-top: 40px; text-align: center;">
<p><strong>👤 分享人:</strong> 大哥</p>
<p><strong>📅 时间:</strong> 2026 年 3 月 20 日</p>
<p><strong>⏱️ 时长:</strong> 30-45 分钟</p>
</div>
</div>
<!-- Slide 2: 议程 -->
<div class="slide">
<h2>📋 今日议程</h2>
<div class="grid">
<div class="card">
<div class="emoji">🎯</div>
<h4>开场介绍</h4>
<p>3 分钟</p>
</div>
<div class="card">
<div class="emoji">🤖</div>
<h4>大语言模型</h4>
<p>10 分钟</p>
</div>
<div class="card">
<div class="emoji">💻</div>
<h4>AI 编程工具</h4>
<p>15 分钟</p>
</div>
<div class="card">
<div class="emoji">📚</div>
<h4>文档工具</h4>
<p>5 分钟</p>
</div>
<div class="card">
<div class="emoji">⚡</div>
<h4>生活效率</h4>
<p>5 分钟</p>
</div>
<div class="card">
<div class="emoji">🎬</div>
<h4>实战演示</h4>
<p>10 分钟</p>
</div>
<div class="card">
<div class="emoji">❓</div>
<h4>Q&A</h4>
<p>5-10 分钟</p>
</div>
</div>
</div>
<!-- Slide 3: 大语言模型对比 -->
<div class="slide">
<h2>🤖 大语言模型对比</h2>
<table>
<thead>
<tr>
<th>工具</th>
<th>定价</th>
<th>优势</th>
<th>适用场景</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>DeepSeek</strong></td>
<td><span class="tag free">免费</span></td>
<td>国产、代码强、中文好</td>
<td>日常问答、代码辅助</td>
</tr>
<tr>
<td><strong>ChatGPT</strong></td>
<td><span class="tag paid">$20/月</span></td>
<td>功能全、生态好</td>
<td>复杂任务、多模态</td>
</tr>
<tr>
<td><strong>Google Gemini</strong></td>
<td><span class="tag paid">$20/月</span></td>
<td>Google 生态、多模态</td>
<td>研究、文档处理</td>
</tr>
</tbody>
</table>
<div class="box" style="margin-top: 30px;">
<p>💡 <strong>选型建议:</strong></p>
<ul>
<li>预算有限 → <span class="highlight">DeepSeek(免费够用)</span></li>
<li>追求最强 → <span class="highlight">ChatGPT Plus</span></li>
<li>Google 用户 → <span class="highlight">Gemini</span></li>
</ul>
</div>
</div>
<!-- Slide 4: AI 编程工具 - 大哥常用 -->
<div class="slide">
<h2>💻 大哥常用的 AI 编程工具</h2>
<div class="tool-card">
<h4>🚀 Google Antigravity</h4>
<p class="company">🏢 Google | 💰 免费</p>
<p class="features">
<strong>核心功能:</strong> AI 辅助编程、代码生成、调试<br>
<strong>优势:</strong> Google 生态集成、多语言支持、智能补全<br>
<strong>适用场景:</strong> 日常开发、快速原型、代码 review
</p>
</div>
<div class="tool-card">
<h4>🧠 Codex</h4>
<p class="company">🏢 OpenAI | 💰 按量付费</p>
<p class="features">
<strong>核心功能:</strong> 代码生成、自然语言转代码<br>
<strong>优势:</strong> OpenAI 技术、代码理解强、支持多种语言<br>
<strong>适用场景:</strong> 复杂代码生成、算法实现、文档生成代码
</p>
</div>
<div class="tool-card">
<h4>✏️ Trae</h4>
<p class="company">🏢 字节跳动 | 💰 免费</p>
<p class="features">
<strong>核心功能:</strong> AI 编程助手、智能补全、代码解释<br>
<strong>优势:</strong> 中文友好、免费、字节生态集成<br>
<strong>适用场景:</strong> 日常开发、学习编程、代码优化
</p>
</div>
</div>
<!-- Slide 5: AI 编程工具 - 市场对比 -->
<div class="slide">
<h2>💻 AI 编程工具市场对比</h2>
<table>
<thead>
<tr>
<th>工具</th>
<th>类型</th>
<th>定价</th>
<th>特点</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Antigravity</strong></td>
<td>Google 生态</td>
<td><span class="tag free">免费</span></td>
<td>Google 集成、多语言</td>
</tr>
<tr>
<td><strong>Codex</strong></td>
<td>API</td>
<td><span class="tag paid">按量付费</span></td>
<td>代码理解强、灵活</td>
</tr>
<tr>
<td><strong>Trae</strong></td>
<td>IDE 插件</td>
<td><span class="tag free">免费</span></td>
<td>中文友好、免费</td>
</tr>
<tr>
<td><strong>Cursor</strong></td>
<td>AI 原生 IDE</td>
<td><span class="tag paid">$20/月</span></td>
<td>代码补全/重构/调试</td>
</tr>
<tr>
<td><strong>Copilot</strong></td>
<td>VS Code 插件</td>
<td><span class="tag paid">$10/月</span></td>
<td>GitHub 官方、集成好</td>
</tr>
<tr>
<td><strong>Codeium</strong></td>
<td>多 IDE 支持</td>
<td><span class="tag free">免费</span></td>
<td>免费、支持多编辑器</td>
</tr>
</tbody>
</table>
<div class="box" style="margin-top: 30px;">
<p>📊 <strong>效率提升数据:</strong></p>
<ul>
<li>代码编写速度:<span class="highlight">+40-60%</span></li>
<li>Bug 修复时间:<span class="highlight">-50%</span></li>
<li>代码审查时间:<span class="highlight">-30%</span></li>
</ul>
</div>
</div>
<!-- Slide 6: 文档工具 - Google Notebook LLM -->
<div class="slide">
<h2>📚 文档工具:Google Notebook LLM</h2>
<div class="tool-card">
<h4>📖 Google Notebook LLM</h4>
<p class="company">🏢 Google | 💰 免费</p>
<p class="features">
<strong>核心功能:</strong>
<ul>
<li>上传 PDF/文档/笔记,AI 自动总结</li>
<li>基于文档内容问答</li>
<li>自动生成笔记和摘要</li>
<li>支持多个文档对比分析</li>
</ul>
<strong>优势:</strong>
<ul>
<li>Google 技术,理解准确</li>
<li>免费使用</li>
<li>支持多种格式(PDF、TXT、Google Docs)</li>
<li>引用来源清晰</li>
</ul>
<strong>适用场景:</strong>
<ul>
<li>论文阅读和总结</li>
<li>技术文档学习</li>
<li>会议笔记整理</li>
<li>研究报告撰写</li>
</ul>
</p>
</div>
<div class="box" style="margin-top: 20px;">
<p>💡 <strong>使用技巧:</strong></p>
<ul>
<li>上传多个相关文档,让 AI 找出关联</li>
<li>用自然语言提问,获取精准答案</li>
<li>导出笔记时保留引用来源</li>
</ul>
</div>
</div>
<!-- Slide 7: 生活效率工具 -->
<div class="slide">
<h2>⚡ 生活效率工具</h2>
<div class="grid">
<div class="card">
<div class="emoji">📝</div>
<h4>Notion AI</h4>
<p>知识管理</p>
<p><span class="tag paid">$10/月</span></p>
</div>
<div class="card">
<div class="emoji">🔍</div>
<h4>Perplexity</h4>
<p>AI 搜索</p>
<p><span class="tag free">免费</span></p>
</div>
<div class="card">
<div class="emoji">🎵</div>
<h4>ElevenLabs</h4>
<p>语音合成</p>
<p><span class="tag paid">$5/月起</span></p>
</div>
<div class="card">
<div class="emoji">🎬</div>
<h4>Runway</h4>
<p>视频编辑</p>
<p><span class="tag paid">$12/月起</span></p>
</div>
<div class="card">
<div class="emoji">🎨</div>
<h4>Midjourney</h4>
<p>AI 绘画</p>
<p><span class="tag paid">$10/月起</span></p>
</div>
<div class="card">
<div class="emoji">📧</div>
<h4>Zapier AI</h4>
<p>自动化</p>
<p><span class="tag paid">$20/月起</span></p>
</div>
</div>
</div>
<!-- Slide 8: 推荐组合 -->
<div class="slide">
<h2>🎯 个人推荐组合</h2>
<div class="box">
<h3>💰 基础版(免费)</h3>
<ul>
<li>DeepSeek - 日常问答</li>
<li>Antigravity/Trae - 编程开发</li>
<li>Notebook LLM - 文档处理</li>
<li>Perplexity - 信息搜索</li>
</ul>
</div>
<div class="box">
<h3>🚀 进阶版(¥150-300/月)</h3>
<ul>
<li>ChatGPT Plus - 复杂任务</li>
<li>Cursor - 编程开发</li>
<li>Notion AI - 知识管理</li>
</ul>
</div>
<div class="box">
<h3>💎 专业版(¥500+/月)</h3>
<ul>
<li>全套工具 + API 调用</li>
<li>Midjourney - AI 绘画</li>
<li>Runway - 视频编辑</li>
</ul>
</div>
</div>
<!-- Slide 9: 深度实操 - AI 学习 Flink 源码 -->
<div class="slide">
<h2>🎬 深度实操:AI 学习 Flink 源码</h2>
<p style="font-size: 18px; color: #777; margin-bottom: 20px; text-align: center;">场景:资深 Java 架构师,没接触过 Flink,2 周掌握源码</p>
<div class="step-box">
<div class="step">1</div>
<div>
<h4>建立知识地图(1 天)</h4>
<p style="font-size: 16px;">用 ChatGPT/Claude 生成学习路径,精确到类名和方法名</p>
</div>
</div>
<div class="step-box">
<div class="step">2</div>
<div>
<h4>环境搭建(1 天)</h4>
<p style="font-size: 16px;">用 Cursor 生成编译和调试脚本</p>
</div>
</div>
<div class="step-box">
<div class="step">3</div>
<div>
<h4>代码阅读(5 天)</h4>
<p style="font-size: 16px;">用 AI 解释复杂代码、生成调用链路、辅助调试</p>
</div>
</div>
<div class="step-box">
<div class="step">4</div>
<div>
<h4>实践验证(5 天)</h4>
<p style="font-size: 16px;">用 AI 生成测试用例、验证理解</p>
</div>
</div>
<div class="step-box">
<div class="step">5</div>
<div>
<h4>总结输出(2 天)</h4>
<p style="font-size: 16px;">用 AI 整理文档、生成分享 PPT</p>
</div>
</div>
</div>
<!-- Slide 10: 关键认知:不知道从哪些类入手? -->
<div class="slide">
<h2>💡 关键认知:不知道从哪些类入手?</h2>
<div class="box">
<h3>❌ 错误方式:</h3>
<p style="font-size: 18px;">"我想学 Flink" → 太泛,AI 不知道怎么帮你</p>
</div>
<div class="box">
<h3>✅ 正确方式:</h3>
<p style="font-size: 18px;">"我是 Java 架构师,没接触过 Flink,<br>请给我 5 个源码阅读的入口类,<br>精确到包名 + 类名 + 方法名,<br>按从易到难排序"</p>
</div>
<div class="box" style="margin-top: 30px;">
<h3>🎯 AI 的 5 种找入口方法:</h3>
<ul>
<li>从官方文档入手 - 生成学习路径</li>
<li>从示例代码反推 - 追踪调用链路</li>
<li>从日志分析入手 - 识别关键类</li>
<li>从测试用例入手 - 最简单易懂</li>
<li>让 AI 生成阅读地图 - 精确到方法</li>
</ul>
</div>
</div>
<!-- Slide 11: AI 生成的阅读地图示例 -->
<div class="slide">
<h2>🗺️ AI 生成的 Flink 阅读地图</h2>
<div class="code-block">
=== 第 1 小时:入口 ===
📍 CheckpointCoordinator.triggerCheckpoint()
阅读重点:
1. 如何生成 Checkpoint ID
2. 如何发送 barrier
3. 如何等待 Ack
=== 第 2-3 小时:Barrier 传播 ===
📍 CheckpointBarrierHandler
阅读重点:
1. processBarrier() - 处理 barrier
2. processEvent() - 处理事件
=== 第 4-5 小时:State Snapshot ===
📍 OperatorSnapshotFunction
阅读重点:
1. snapshotState() - 状态快照
2. close() - 资源清理
=== 第 6-7 小时:State Backend ===
📍 RocksDBStateBackend
阅读重点:
1. checkpoint() - 写入 RocksDB
2. restore() - 恢复状态
=== 第 8 小时:提交 ===
📍 CompletedCheckpointStore
阅读重点:
1. add() - 存储完成的 checkpoint
2. get() - 获取 checkpoint
</div>
<p style="font-size: 16px; color: #777; margin-top: 20px;">💡 总计 8 小时,精确到每个类的关键方法</p>
</div>
<!-- Slide 12: 避坑指南 -->
<div class="slide">
<h2>⚠️ 避坑指南</h2>
<div class="grid">
<div class="card" style="border-left: 5px solid #ef4444;">
<div class="emoji">❌</div>
<h4>不要做</h4>
<ul style="text-align: left; font-size: 16px;">
<li>完全依赖 AI</li>
<li>上传敏感数据</li>
<li>盲目相信输出</li>
</ul>
</div>
<div class="card" style="border-left: 5px solid #22c55e;">
<div class="emoji">✅</div>
<h4>要做</h4>
<ul style="text-align: left; font-size: 16px;">
<li>把 AI 当助手</li>
<li>建立审核流程</li>
<li>持续学习</li>
</ul>
</div>
</div>
<div class="box" style="margin-top: 30px;">
<p>💡 <strong>核心原则:</strong>AI 是助手,不是替代品</p>
</div>
</div>
<!-- Slide 13: 学习效果对比 -->
<div class="slide">
<h2>📊 学习效果对比</h2>
<table>
<thead>
<tr>
<th>学习方式</th>
<th>找入口</th>
<th>阅读效率</th>
<th>理解深度</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>自己摸索</strong></td>
<td>2 天</td>
<td>⭐⭐</td>
<td>⭐⭐</td>
</tr>
<tr>
<td><strong>问同事</strong></td>
<td>2 小时</td>
<td>⭐⭐⭐</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td><strong>用 AI</strong></td>
<td>10 分钟</td>
<td>⭐⭐⭐⭐⭐</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
</tbody>
</table>
<div class="box" style="margin-top: 30px;">
<p>💡 <strong>核心价值:</strong>AI 帮你节省 95% 的摸索时间</p>
</div>
</div>
<!-- Slide 14: 总结 -->
<div class="slide">
<h2>📝 核心要点</h2>
<div class="box">
<p style="font-size: 24px;">1️⃣ <strong>选对工具</strong> 比多用工具重要</p>
</div>
<div class="box">
<p style="font-size: 24px;">2️⃣ <strong>AI 是助手</strong>,不是替代品</p>
</div>
<div class="box">
<p style="font-size: 24px;">3️⃣ <strong>提示词要具体</strong>,精确到类名 + 方法名</p>
</div>
<div class="box">
<p style="font-size: 24px;">4️⃣ <strong>持续学习</strong>,保持更新</p>
</div>
</div>
<!-- Slide 15: 资源与 Q&A -->
<div class="slide">
<h2>📚 资源分享</h2>
<div class="box">
<p>🌐 <strong>AI Tools Hub:</strong></p>
<p style="font-size: 18px; color: #667eea;">https://bugcodes.github.io/ai-tools-hub/</p>
</div>
<div class="box">
<p>💻 <strong>GitHub 仓库:</strong></p>
<p style="font-size: 18px; color: #667eea;">https://github.com/bugcodes/ai-tools-hub</p>
</div>
<div class="emoji" style="margin-top: 40px;">❓</div>
<h3>Q&A 环节</h3>
<p>欢迎提问!</p>
</div>
<!-- Slide 16: 结束页 -->
<div class="slide">
<div class="emoji">🙏</div>
<h1>谢谢大家!</h1>
<p style="font-size: 24px; color: #777; text-align: center;">有任何问题随时交流</p>
<div class="box" style="margin-top: 40px; text-align: center;">
<p><strong>📧 联系方式:</strong> [你的联系方式]</p>
<p><strong>🤖 AI 助手:</strong> 小帅</p>
</div>
</div>
<div class="footer">AI Tools Hub | 2026 年 3 月 20 日</div>
</body>
</html>