-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
591 lines (514 loc) · 18.5 KB
/
Copy pathindex.html
File metadata and controls
591 lines (514 loc) · 18.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
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>历届WAIC主题演变分析</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Noto Sans SC', sans-serif;
background: #0a0a1a;
color: #e8e8f0;
overflow-x: hidden;
}
.hero {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 60px 20px;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle at 30% 40%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
radial-gradient(circle at 70% 60%, rgba(236, 72, 153, 0.06) 0%, transparent 50%),
radial-gradient(circle at 50% 80%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
animation: bgFloat 20s ease-in-out infinite;
}
@keyframes bgFloat {
0%, 100% { transform: translate(0, 0); }
50% { transform: translate(-2%, 1%); }
}
.hero h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 900;
background: linear-gradient(135deg, #818cf8, #ec4899, #06b6d4);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 16px;
position: relative;
z-index: 1;
}
.hero .subtitle {
font-size: clamp(1rem, 2vw, 1.3rem);
color: #9ca3af;
font-weight: 300;
position: relative;
z-index: 1;
max-width: 600px;
line-height: 1.8;
}
.scroll-hint {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
animation: bounce 2s infinite;
color: #6366f1;
font-size: 24px;
z-index: 1;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
40% { transform: translateX(-50%) translateY(-10px); }
60% { transform: translateX(-50%) translateY(-5px); }
}
/* Timeline */
.timeline-section {
padding: 80px 20px;
max-width: 1000px;
margin: 0 auto;
}
.section-title {
font-size: clamp(1.5rem, 3vw, 2rem);
font-weight: 700;
text-align: center;
margin-bottom: 60px;
color: #c7d2fe;
}
.timeline {
position: relative;
padding-left: 40px;
}
.timeline::before {
content: '';
position: absolute;
left: 15px;
top: 0;
bottom: 0;
width: 2px;
background: linear-gradient(to bottom, #6366f1, #ec4899, #06b6d4, #6366f1);
}
.timeline-item {
position: relative;
margin-bottom: 48px;
opacity: 0;
transform: translateY(30px);
transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.timeline-item.visible {
opacity: 1;
transform: translateY(0);
}
.timeline-dot {
position: absolute;
left: -33px;
top: 8px;
width: 16px;
height: 16px;
border-radius: 50%;
border: 3px solid;
background: #0a0a1a;
}
.timeline-item:nth-child(1) .timeline-dot { border-color: #818cf8; box-shadow: 0 0 12px rgba(129,140,248,0.5); }
.timeline-item:nth-child(2) .timeline-dot { border-color: #a78bfa; box-shadow: 0 0 12px rgba(167,139,250,0.5); }
.timeline-item:nth-child(3) .timeline-dot { border-color: #c084fc; box-shadow: 0 0 12px rgba(192,132,252,0.5); }
.timeline-item:nth-child(4) .timeline-dot { border-color: #e879f9; box-shadow: 0 0 12px rgba(232,121,249,0.5); }
.timeline-item:nth-child(5) .timeline-dot { border-color: #f472b6; box-shadow: 0 0 12px rgba(244,114,182,0.5); }
.timeline-item:nth-child(6) .timeline-dot { border-color: #fb7185; box-shadow: 0 0 12px rgba(251,113,133,0.5); }
.timeline-item:nth-child(7) .timeline-dot { border-color: #fb923c; box-shadow: 0 0 12px rgba(251,146,60,0.5); }
.timeline-item:nth-child(8) .timeline-dot { border-color: #fbbf24; box-shadow: 0 0 12px rgba(251,191,36,0.5); }
.timeline-item:nth-child(9) .timeline-dot { border-color: #34d399; box-shadow: 0 0 12px rgba(52,211,153,0.5); }
.timeline-year {
font-size: 0.85rem;
color: #9ca3af;
margin-bottom: 4px;
font-weight: 500;
}
.timeline-theme {
font-size: clamp(1.1rem, 2.5vw, 1.4rem);
font-weight: 700;
margin-bottom: 8px;
line-height: 1.4;
}
.timeline-item:nth-child(1) .timeline-theme { color: #818cf8; }
.timeline-item:nth-child(2) .timeline-theme { color: #a78bfa; }
.timeline-item:nth-child(3) .timeline-theme { color: #c084fc; }
.timeline-item:nth-child(4) .timeline-theme { color: #e879f9; }
.timeline-item:nth-child(5) .timeline-theme { color: #f472b6; }
.timeline-item:nth-child(6) .timeline-theme { color: #fb7185; }
.timeline-item:nth-child(7) .timeline-theme { color: #fb923c; }
.timeline-item:nth-child(8) .timeline-theme { color: #fbbf24; }
.timeline-item:nth-child(9) .timeline-theme { color: #34d399; }
.timeline-desc {
font-size: 0.92rem;
color: #9ca3af;
line-height: 1.7;
max-width: 600px;
}
.timeline-tag {
display: inline-block;
margin-top: 8px;
padding: 3px 12px;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 500;
background: rgba(99, 102, 241, 0.12);
color: #a5b4fc;
border: 1px solid rgba(99, 102, 241, 0.2);
}
/* Trend Analysis */
.analysis-section {
padding: 80px 20px;
max-width: 1000px;
margin: 0 auto;
}
.trend-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 24px;
margin-top: 40px;
}
.trend-card {
background: linear-gradient(135deg, rgba(30, 30, 60, 0.8), rgba(20, 20, 40, 0.9));
border: 1px solid rgba(99, 102, 241, 0.15);
border-radius: 16px;
padding: 28px;
opacity: 0;
transform: translateY(20px);
transition: all 0.5s ease;
}
.trend-card.visible {
opacity: 1;
transform: translateY(0);
}
.trend-card:hover {
border-color: rgba(99, 102, 241, 0.4);
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(99, 102, 241, 0.1);
}
.trend-icon {
font-size: 2rem;
margin-bottom: 12px;
}
.trend-title {
font-size: 1.15rem;
font-weight: 700;
color: #e0e7ff;
margin-bottom: 10px;
}
.trend-text {
font-size: 0.9rem;
color: #9ca3af;
line-height: 1.8;
}
/* Keyword Cloud */
.keyword-section {
padding: 80px 20px;
max-width: 800px;
margin: 0 auto;
text-align: center;
}
.keyword-cloud {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 12px;
margin-top: 40px;
}
.keyword {
padding: 8px 20px;
border-radius: 24px;
font-weight: 500;
transition: all 0.3s ease;
cursor: default;
}
.keyword:hover {
transform: scale(1.1);
}
.kw-lg { font-size: 1.6rem; background: rgba(129,140,248,0.2); color: #a5b4fc; border: 1px solid rgba(129,140,248,0.3); }
.kw-md { font-size: 1.2rem; background: rgba(232,121,249,0.15); color: #e879f9; border: 1px solid rgba(232,121,249,0.25); }
.kw-sm { font-size: 0.95rem; background: rgba(52,211,153,0.12); color: #34d399; border: 1px solid rgba(52,211,153,0.2); }
/* Phase Diagram */
.phase-section {
padding: 80px 20px;
max-width: 1000px;
margin: 0 auto;
}
.phase-container {
display: flex;
gap: 20px;
margin-top: 40px;
flex-wrap: wrap;
}
.phase {
flex: 1;
min-width: 260px;
border-radius: 16px;
padding: 28px;
position: relative;
overflow: hidden;
}
.phase::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
}
.phase-1 { background: rgba(129,140,248,0.08); border: 1px solid rgba(129,140,248,0.2); }
.phase-1::before { background: linear-gradient(90deg, #818cf8, #a78bfa); }
.phase-2 { background: rgba(232,121,249,0.08); border: 1px solid rgba(232,121,249,0.2); }
.phase-2::before { background: linear-gradient(90deg, #e879f9, #f472b6); }
.phase-3 { background: rgba(52,211,153,0.08); border: 1px solid rgba(52,211,153,0.2); }
.phase-3::before { background: linear-gradient(90deg, #34d399, #06b6d4); }
.phase-label {
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 8px;
}
.phase-1 .phase-label { color: #818cf8; }
.phase-2 .phase-label { color: #e879f9; }
.phase-3 .phase-label { color: #34d399; }
.phase-name {
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 12px;
color: #e0e7ff;
}
.phase-years {
font-size: 0.85rem;
color: #6b7280;
margin-bottom: 12px;
}
.phase-desc {
font-size: 0.88rem;
color: #9ca3af;
line-height: 1.8;
}
/* Conclusion */
.conclusion {
padding: 80px 20px;
max-width: 700px;
margin: 0 auto;
text-align: center;
}
.conclusion-box {
background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.08));
border: 1px solid rgba(99, 102, 241, 0.2);
border-radius: 20px;
padding: 40px;
margin-top: 40px;
}
.conclusion-text {
font-size: 1.05rem;
color: #c7d2fe;
line-height: 2;
}
.conclusion-highlight {
color: #e879f9;
font-weight: 700;
}
footer {
text-align: center;
padding: 40px 20px;
color: #4b5563;
font-size: 0.8rem;
}
</style>
</head>
<body>
<!-- Hero -->
<section class="hero">
<h1>历届 WAIC 主题演变</h1>
<p class="subtitle">从2018到2026,九届世界人工智能大会的主题,折射出AI从概念到落地、从炫技到治理、从工具到伙伴的完整叙事</p>
<div class="scroll-hint">↓</div>
</section>
<!-- Timeline -->
<section class="timeline-section">
<h2 class="section-title">🕐 主题年表</h2>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-year">2018 · 第一届</div>
<div class="timeline-theme">人工智能赋能新时代</div>
<div class="timeline-desc">首届WAIC,习近平致贺信。聚焦AI如何赋能各行业,概念先行,探索AI落地可能性。</div>
<span class="timeline-tag">赋能</span>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-year">2019 · 第二届</div>
<div class="timeline-theme">智联世界 无限可能</div>
<div class="timeline-desc">"双马对话"引发全球关注。强调连接与可能性,AI从单点技术走向万物互联。</div>
<span class="timeline-tag">连接</span>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-year">2020 · 第三届</div>
<div class="timeline-theme">智能世界 共同家园</div>
<div class="timeline-desc">疫情之年的云端峰会。"共同家园"折射人类命运共同体意识,AI被视为全球协作的关键。</div>
<span class="timeline-tag">协作</span>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-year">2021 · 第四届</div>
<div class="timeline-theme">智联世界 众智成城</div>
<div class="timeline-desc">强调集体智慧,AI从个体智能走向群体智能。5G基站加速铺设,数字化基础设施成型。</div>
<span class="timeline-tag">群体智能</span>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-year">2022 · 第五届</div>
<div class="timeline-theme">智联世界 元生无界</div>
<div class="timeline-desc">元宇宙热潮下,"元生无界"回应虚实融合趋势。数字人、XR设备占领展厅,但也有人质疑概念炒作。</div>
<span class="timeline-tag">元宇宙</span>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-year">2023 · 第六届</div>
<div class="timeline-theme">智联世界 生成未来</div>
<div class="timeline-desc">ChatGPT点燃生成式AI。"生成未来"精准回应大模型革命,百款大模型集中亮相,签约金额达288亿。</div>
<span class="timeline-tag">生成式AI</span>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-year">2024 · 第七届</div>
<div class="timeline-theme">以共商促共享 以善治促善智</div>
<div class="timeline-desc">主题重心从技术转向治理。"善治促善智"标志着AI治理从边缘话题走向核心议程,安全与伦理成为焦点。</div>
<span class="timeline-tag">治理</span>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-year">2025 · 第八届</div>
<div class="timeline-theme">智能时代 同球共济</div>
<div class="timeline-desc">人气最旺的一届。机器人围得里三层外三层。"同球共济"延续治理主线,但更强调全球合作与普惠。</div>
<span class="timeline-tag">普惠</span>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-year">2026 · 第九届</div>
<div class="timeline-theme">智能伙伴 共创未来</div>
<div class="timeline-desc">AI从"能聊"到"能干"。具身智能成为焦点,智能体商业化落地取代参数比拼。展览面积首次突破10万㎡,1100+企业参展。</div>
<span class="timeline-tag">智能体</span>
</div>
</div>
</section>
<!-- Phase Analysis -->
<section class="phase-section">
<h2 class="section-title">📊 三阶段演变</h2>
<div class="phase-container">
<div class="phase phase-1">
<div class="phase-label">Phase 1</div>
<div class="phase-name">技术启蒙期</div>
<div class="phase-years">2018 — 2020</div>
<div class="phase-desc">关键词围绕"赋能""连接""家园"。AI刚走出实验室,行业在探索AI能做什么。主题强调可能性与想象空间,"新"是主旋律。</div>
</div>
<div class="phase phase-2">
<div class="phase-label">Phase 2</div>
<div class="phase-name">爆发落地期</div>
<div class="phase-years">2021 — 2023</div>
<div class="phase-desc">从"众智成城"到"生成未来"。大模型横空出世,AI从概念走向产品。每年主题都在回应当年的技术爆点——元宇宙、生成式AI依次登场。</div>
</div>
<div class="phase phase-3">
<div class="phase-label">Phase 3</div>
<div class="phase-name">治理共生期</div>
<div class="phase-years">2024 — 2026</div>
<div class="phase-desc">主题从技术叙事转向治理叙事。"善治""共济""伙伴"——AI不再只是工具,而是需要被治理、需要与之共生共事的伙伴。</div>
</div>
</div>
</section>
<!-- Keyword Cloud -->
<section class="keyword-section">
<h2 class="section-title">☁️ 主题关键词</h2>
<div class="keyword-cloud">
<span class="keyword kw-lg">智联世界</span>
<span class="keyword kw-lg">未来</span>
<span class="keyword kw-md">赋能</span>
<span class="keyword kw-md">治理</span>
<span class="keyword kw-md">伙伴</span>
<span class="keyword kw-sm">无限可能</span>
<span class="keyword kw-sm">共同家园</span>
<span class="keyword kw-sm">众智成城</span>
<span class="keyword kw-sm">元生无界</span>
<span class="keyword kw-sm">生成</span>
<span class="keyword kw-sm">善治</span>
<span class="keyword kw-sm">同球共济</span>
<span class="keyword kw-sm">共创</span>
<span class="keyword kw-sm">智能时代</span>
</div>
</section>
<!-- Trend Cards -->
<section class="analysis-section">
<h2 class="section-title">🔍 五大趋势洞察</h2>
<div class="trend-cards">
<div class="trend-card">
<div class="trend-icon">🔄</div>
<div class="trend-title">从"技术"到"关系"</div>
<div class="trend-text">早期主题聚焦AI技术本身(赋能、智联),后期转向AI与人的关系(伙伴、共创)。AI从被审视的对象,变成了需要与之共处的主体。</div>
</div>
<div class="trend-card">
<div class="trend-icon">⚖️</div>
<div class="trend-title">从"能做什么"到"该怎么做"</div>
<div class="trend-text">2024年主题的转折最具标志性——从探索AI能力边界,转向讨论AI治理边界。善治先于善智,伦理成为核心命题。</div>
</div>
<div class="trend-card">
<div class="trend-icon">🌍</div>
<div class="trend-title">从"中国叙事"到"全球叙事"</div>
<div class="trend-text">"共同家园""同球共济""共商"——全球治理的呼声越来越强。WAIC正从展示中国AI实力的窗口,转变为全球AI治理对话的平台。</div>
</div>
<div class="trend-card">
<div class="trend-icon">🤖</div>
<div class="trend-title">从"对话AI"到"行动AI"</div>
<div class="trend-text">2026年"智能伙伴"意味着AI不再只是聊天机器人。具身智能、智能体商业化,AI正在获得"身体"和"行动力"。</div>
</div>
<div class="trend-card">
<div class="trend-icon">📈</div>
<div class="trend-title">从"概念验证"到"产业深水"</div>
<div class="trend-text">展览面积从几千平到10万平,参展企业从几十家到1100+。AI已过概念期,正在深入制造、医疗、交通等实体经济腹地。</div>
</div>
</div>
</section>
<!-- Conclusion -->
<section class="conclusion">
<h2 class="section-title">💡 一句话总结</h2>
<div class="conclusion-box">
<div class="conclusion-text">
九年九个主题,写的是AI的<span class="conclusion-highlight">成人礼</span>——<br>
从"AI能做什么"到"AI该怎么做",<br>
从"人类造了一个工具"到"人类多了一个伙伴"。<br><br>
技术的叙事总会让位于<span class="conclusion-highlight">文明的叙事</span>。
</div>
</div>
</section>
<footer>WAIC Theme Evolution Analysis · Data as of July 2026</footer>
<script>
// Scroll reveal
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
}
});
}, { threshold: 0.15 });
document.querySelectorAll('.timeline-item, .trend-card').forEach(el => observer.observe(el));
// Stagger timeline items
document.querySelectorAll('.timeline-item').forEach((item, i) => {
item.style.transitionDelay = `${i * 0.1}s`;
});
</script>
</body>
</html>