-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathslides.html
More file actions
1192 lines (1054 loc) · 48.8 KB
/
Copy pathslides.html
File metadata and controls
1192 lines (1054 loc) · 48.8 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
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BUILDMODE GEN-AI HACKATHON 2026|開幕簡報</title>
<style>
@font-face {
font-family: "Build Sans";
src: local("Arial");
font-display: swap;
}
:root {
--ink: #11120f;
--ink-soft: #20221d;
--paper: #f1efe6;
--paper-bright: #fffdf5;
--acid: #d9ff43;
--violet: #6978ff;
--cyan: #a9b2ff;
--line-light: rgba(255, 255, 255, 0.24);
--font-sans: "Build Sans", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
--font-display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
}
* {
box-sizing: border-box;
}
html,
body {
height: 100%;
}
body {
margin: 0;
overflow: hidden;
background:
linear-gradient(rgba(217, 255, 67, 0.05) 1px, transparent 1px),
linear-gradient(90deg, rgba(217, 255, 67, 0.05) 1px, transparent 1px),
var(--ink);
background-size: 48px 48px;
color: var(--paper);
font-family: var(--font-sans);
font-size: 16px;
line-height: 1.55;
-webkit-font-smoothing: antialiased;
}
.chrome {
position: fixed;
z-index: 50;
inset: 0;
pointer-events: none;
}
.chrome-top {
position: absolute;
top: 20px;
right: 40px;
left: 40px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 14px 24px;
border: 1px solid var(--line-light);
background: rgba(17, 18, 15, 0.72);
font-size: 14px;
font-weight: 900;
letter-spacing: 0.14em;
}
.chrome-brand {
color: var(--acid);
}
.chrome-brand em {
font-style: normal;
color: rgba(255, 255, 255, 0.55);
}
.chrome-bottom {
position: absolute;
right: 40px;
bottom: 20px;
left: 40px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 12px 24px;
border: 1px solid var(--line-light);
background: rgba(17, 18, 15, 0.72);
font-size: 14px;
font-weight: 900;
letter-spacing: 0.14em;
color: rgba(255, 255, 255, 0.65);
}
.deck-progress {
position: fixed;
z-index: 60;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: rgba(255, 255, 255, 0.12);
}
.deck-progress i {
display: block;
width: 100%;
height: 100%;
background: var(--acid);
transform-origin: left;
transform: scaleX(0);
transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.slide {
position: fixed;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
padding: 96px clamp(28px, 7vw, 110px) 88px;
opacity: 0;
visibility: hidden;
transform: scale(0.985);
transition: opacity 0.45s ease, transform 0.45s ease, visibility 0s 0.45s;
}
.slide.is-active {
opacity: 1;
visibility: visible;
transform: scale(1);
transition: opacity 0.45s ease, transform 0.45s ease;
}
.slide-inner {
width: min(100%, 1080px);
max-height: 100%;
}
.slide.is-active .rise {
animation: rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.slide.is-active .rise:nth-child(1) { animation-delay: 0.05s; }
.slide.is-active .rise:nth-child(2) { animation-delay: 0.12s; }
.slide.is-active .rise:nth-child(3) { animation-delay: 0.19s; }
.slide.is-active .rise:nth-child(4) { animation-delay: 0.26s; }
.slide.is-active .rise:nth-child(5) { animation-delay: 0.33s; }
.slide.is-active .rise:nth-child(6) { animation-delay: 0.4s; }
@keyframes rise {
from {
opacity: 0;
transform: translateY(18px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.kicker {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 14px;
color: var(--acid);
font-size: 15px;
font-weight: 900;
letter-spacing: 0.18em;
}
.kicker span {
padding: 2px 8px;
border: 1px solid var(--acid);
}
.display {
margin: 0 0 10px;
font-family: var(--font-display);
font-weight: 500;
letter-spacing: -0.02em;
line-height: 0.95;
text-transform: uppercase;
color: var(--paper-bright);
}
.display-xl { font-size: clamp(56px, 11vw, 150px); }
.display-lg { font-size: clamp(40px, 7vw, 84px); }
.display-md { font-size: clamp(30px, 4.6vw, 54px); }
.display .acid {
color: var(--acid);
}
.lede {
margin: 0;
max-width: 640px;
color: rgba(241, 239, 230, 0.78);
font-size: clamp(17px, 1.7vw, 22px);
font-weight: 500;
}
.stack {
display: grid;
gap: 14px;
margin-top: 34px;
}
.stack--tight {
gap: 10px;
}
.item {
display: grid;
grid-template-columns: 92px 1fr;
gap: 18px;
align-items: baseline;
padding: 12px 18px;
border: 1px solid var(--line-light);
background: rgba(255, 255, 255, 0.03);
}
.item time,
.item .no {
font-family: var(--font-display);
font-size: 22px;
letter-spacing: 0.02em;
color: var(--acid);
}
.item .no {
font-size: 18px;
font-family: var(--font-sans);
font-weight: 900;
letter-spacing: 0.14em;
}
.item strong {
display: block;
color: var(--paper-bright);
font-size: clamp(18px, 1.9vw, 24px);
font-weight: 900;
}
.item small {
display: block;
margin-top: 2px;
color: rgba(241, 239, 230, 0.6);
font-size: 17px;
font-weight: 500;
}
.item--hot {
border-color: var(--acid);
background: rgba(217, 255, 67, 0.07);
}
.cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
margin-top: 38px;
}
.card {
padding: 26px 22px 22px;
border: 1px solid var(--line-light);
background: rgba(255, 255, 255, 0.03);
}
.card b {
display: block;
font-family: var(--font-display);
font-size: clamp(38px, 5vw, 64px);
line-height: 1;
color: var(--acid);
}
.card h3 {
margin: 12px 0 4px;
color: var(--paper-bright);
font-size: clamp(19px, 2vw, 25px);
font-weight: 900;
}
.card p {
margin: 0;
color: rgba(241, 239, 230, 0.62);
font-size: 17px;
font-weight: 500;
}
.card--dark {
border-color: var(--acid);
background: rgba(217, 255, 67, 0.07);
}
.track-list {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
margin-top: 34px;
counter-reset: track;
}
.track {
display: grid;
grid-template-columns: auto 1fr;
gap: 14px;
align-items: center;
padding: 14px 18px;
border: 1px solid var(--line-light);
background: rgba(255, 255, 255, 0.03);
}
.track i {
font-style: normal;
font-family: var(--font-display);
font-size: 26px;
color: var(--acid);
}
.track strong {
display: block;
color: var(--paper-bright);
font-size: clamp(17px, 1.8vw, 22px);
font-weight: 900;
}
.track small {
display: block;
color: rgba(241, 239, 230, 0.6);
font-size: 16px;
font-weight: 500;
}
.track--special {
grid-column: 1 / -1;
border-color: var(--acid);
background: rgba(217, 255, 67, 0.07);
}
.track--special em {
justify-self: end;
font-style: normal;
font-size: 14px;
font-weight: 900;
letter-spacing: 0.14em;
color: var(--acid);
}
.score {
display: grid;
gap: 12px;
margin-top: 34px;
}
.score-row {
display: grid;
grid-template-columns: minmax(180px, 260px) 1fr auto;
gap: 16px;
align-items: center;
}
.score-row strong {
color: var(--paper-bright);
font-size: clamp(17px, 1.9vw, 23px);
font-weight: 900;
}
.score-bar {
height: 10px;
border: 1px solid var(--line-light);
}
.score-bar i {
display: block;
height: 100%;
background: var(--acid);
transform-origin: left;
transform: scaleX(0);
transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.slide.is-active .score-bar i {
transform: scaleX(1);
}
.score-row b {
font-family: var(--font-display);
font-size: clamp(22px, 3vw, 34px);
color: var(--acid);
}
.sponsor {
display: grid;
grid-template-columns: minmax(150px, 220px) 1fr auto;
gap: 18px;
align-items: center;
padding: 16px 20px;
border: 1px solid var(--line-light);
background: rgba(255, 255, 255, 0.03);
}
.sponsor strong {
color: var(--paper-bright);
font-size: clamp(18px, 2vw, 25px);
font-weight: 900;
}
.sponsor small {
display: block;
margin-top: 2px;
color: rgba(241, 239, 230, 0.6);
font-size: 17px;
font-weight: 500;
}
.sponsor .amt {
font-family: var(--font-display);
font-size: clamp(18px, 2.2vw, 26px);
letter-spacing: 0.02em;
color: var(--acid);
white-space: nowrap;
}
.sponsor .deadline {
display: block;
margin-top: 6px;
color: var(--acid);
font-size: 17px;
font-weight: 900;
}
.hero-meta {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 34px;
}
.hero-meta div {
padding: 14px 20px;
border: 1px solid var(--line-light);
background: rgba(255, 255, 255, 0.03);
}
.hero-meta small {
display: block;
color: rgba(241, 239, 230, 0.55);
font-size: 14px;
font-weight: 900;
letter-spacing: 0.14em;
}
.hero-meta strong {
color: var(--acid);
font-size: clamp(16px, 2vw, 24px);
font-weight: 900;
}
.link-list {
display: grid;
gap: 12px;
margin-top: 34px;
}
.link-item {
display: grid;
grid-template-columns: auto 1fr;
gap: 16px;
align-items: center;
padding: 14px 18px;
border: 1px solid var(--line-light);
background: rgba(255, 255, 255, 0.03);
}
.link-item i {
font-style: normal;
color: var(--acid);
font-size: 15px;
font-weight: 900;
letter-spacing: 0.14em;
}
.link-item strong {
color: var(--paper-bright);
font-size: clamp(17px, 2vw, 24px);
font-weight: 900;
}
.link-item small {
display: block;
color: rgba(241, 239, 230, 0.6);
font-size: 17px;
font-weight: 500;
}
.link-item a {
color: var(--acid);
text-decoration: none;
}
.link-item a:hover {
text-decoration: underline;
}
.qr-grid {
display: grid;
grid-template-columns: auto 1fr;
gap: 32px;
align-items: center;
margin-top: 38px;
}
.qr-card {
margin: 0;
padding: 18px 18px 14px;
border: 1px solid var(--acid);
background: var(--paper-bright);
color: var(--ink);
text-align: center;
}
.qr-card svg {
display: block;
width: clamp(190px, 25vw, 310px);
height: auto;
}
.qr-card figcaption strong {
display: block;
margin-top: 10px;
font-size: 17px;
font-weight: 900;
letter-spacing: 0.02em;
}
.qr-card figcaption small {
display: block;
color: rgba(17, 18, 15, 0.62);
font-size: 14px;
font-weight: 700;
}
.wifi-card {
padding: 24px 26px;
border: 1px solid var(--line-light);
background: rgba(255, 255, 255, 0.03);
}
.wifi-card small {
display: block;
color: rgba(241, 239, 230, 0.55);
font-size: 14px;
font-weight: 900;
letter-spacing: 0.16em;
}
.wifi-card strong {
display: block;
margin-top: 8px;
font-family: var(--font-display);
font-size: clamp(26px, 3.6vw, 48px);
font-weight: 500;
letter-spacing: 0.02em;
color: var(--acid);
}
.wifi-card p {
margin: 10px 0 0;
color: rgba(241, 239, 230, 0.62);
font-size: 17px;
font-weight: 500;
}
.team-cloud {
position: absolute;
inset: 0;
overflow: hidden;
}
.cloud-center {
position: absolute;
inset: 0;
z-index: 2;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 6px;
pointer-events: none;
text-shadow: 0 2px 22px rgba(17, 18, 15, 0.95);
}
.cloud-center b {
font-family: var(--font-display);
font-size: clamp(96px, 16vw, 230px);
font-weight: 500;
line-height: 0.9;
color: var(--acid);
}
.cloud-center small {
color: var(--paper-bright);
font-size: 15px;
font-weight: 900;
letter-spacing: 0.42em;
}
.cloud-word {
position: absolute;
font-weight: 900;
letter-spacing: 0.02em;
line-height: 1.15;
white-space: nowrap;
opacity: 0;
}
.slide.is-active .cloud-word {
animation: cloudPop 0.45s ease both;
}
@keyframes cloudPop {
from {
opacity: 0;
transform: translateY(6px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.cloud-b { color: var(--paper-bright); }
.cloud-c { color: var(--cyan); }
.cloud-d { color: rgba(241, 239, 230, 0.58); }
.cloud-f { color: rgba(217, 255, 67, 0.55); }
.nav-hint {
display: flex;
gap: 10px;
align-items: center;
}
.nav-hint kbd {
padding: 3px 8px;
border: 1px solid var(--line-light);
font-family: inherit;
font-size: 11px;
}
.click-zone {
position: fixed;
z-index: 40;
top: 0;
bottom: 0;
width: 22%;
cursor: pointer;
}
.click-zone--prev { left: 0; }
.click-zone--next { right: 0; }
.footer-note {
position: absolute;
right: 28px;
bottom: 62px;
color: rgba(241, 239, 230, 0.4);
font-size: 12px;
font-weight: 700;
letter-spacing: 0.12em;
}
@media (max-width: 820px) {
.cards,
.track-list {
grid-template-columns: 1fr;
}
.item {
grid-template-columns: 72px 1fr;
}
.sponsor {
grid-template-columns: 1fr;
}
.sponsor .amt {
justify-self: start;
}
.score-row {
grid-template-columns: 1fr auto;
}
.score-row .score-bar {
display: none;
}
.chrome-bottom .nav-hint {
display: none;
}
.qr-grid {
grid-template-columns: 1fr;
justify-items: center;
}
}
</style>
</head>
<body>
<div class="deck-progress"><i id="deck-progress-bar"></i></div>
<div class="chrome">
<div class="chrome-top">
<div class="chrome-brand">B/ <em>BUILDMODE GEN-AI HACKATHON 2026</em></div>
<div id="slide-topic">開幕簡報</div>
</div>
<div class="chrome-bottom">
<div>FUTUREMODE × SITCON</div>
<div class="nav-hint"><kbd>←</kbd><kbd>→</kbd><span>切換頁面</span></div>
<div><span id="slide-counter">01 / 18</span></div>
</div>
</div>
<div class="click-zone click-zone--prev" id="zone-prev" title="上一頁"></div>
<div class="click-zone click-zone--next" id="zone-next" title="下一頁"></div>
<main id="deck">
<section class="slide" data-topic="開幕">
<div class="slide-inner">
<div class="kicker rise"><span>09.04 – 09.06</span> 台北花博爭艷館</div>
<h1 class="display display-xl rise">BUILD<span class="acid">MODE</span></h1>
<h2 class="display display-md rise" style="color: var(--cyan)">GEN-AI HACKATHON 2026</h2>
<p class="lede rise" style="margin-top: 22px">開幕簡報.三日賽制、賽道、獎項與評選一次說清楚。</p>
</div>
</section>
<section class="slide" data-topic="大會資訊">
<div class="slide-inner">
<div class="kicker rise"><span>00</span> 大會資訊</div>
<h2 class="display display-lg rise">三日黑客松<br /><span class="acid">即刻啟動</span></h2>
<div class="hero-meta rise">
<div><small>日期</small><strong>2026.09.04–06</strong></div>
<div><small>開放時間</small><strong>09:00 – 17:00</strong></div>
<div><small>地點</small><strong>台北花博爭艷館</strong></div>
<div><small>每日報到</small><strong>09:00 – 16:00</strong></div>
<div><small>主辦</small><strong>FUTUREMODE × SITCON</strong></div>
</div>
</div>
</section>
<section class="slide slide--cloud" data-topic="參賽隊伍" aria-label="全體參賽隊伍隊名牆">
<div id="team-cloud" class="team-cloud" aria-hidden="true"></div>
<div class="cloud-center rise">
<b data-team-count>261</b>
<small>TEAMS</small>
</div>
</section>
<section class="slide" data-topic="三日總覽">
<div class="slide-inner">
<div class="kicker rise"><span>01</span> 活動時程</div>
<h2 class="display display-lg rise">三日賽程總覽</h2>
<div class="cards rise">
<div class="card card--dark">
<b>01</b>
<h3>9/4 五|開幕・開發</h3>
<p>開幕說明後全日開發,16:30 前可異動隊伍與主題。</p>
</div>
<div class="card">
<b>02</b>
<h3>9/5 六|開發・分享</h3>
<p>閃電講報名與抽選,傍晚 2 分鐘短講分享。</p>
</div>
<div class="card">
<b>03</b>
<h3>9/6 日|繳交・決賽</h3>
<p>10:00 繳交截止,書審選出前 10 名,現場 Demo 決勝。</p>
</div>
</div>
</div>
</section>
<section class="slide" data-topic="Day 1 時程">
<div class="slide-inner">
<div class="kicker rise"><span>01</span> 活動時程</div>
<h2 class="display display-md rise">Day 1|9/4 <span class="acid">開幕・開發</span></h2>
<div class="stack rise">
<div class="item"><time>09:00</time><div><strong>場地開放・參賽者進場</strong><small>備妥票券與隊伍資訊入座</small></div></div>
<div class="item item--hot"><time>10:30</time><div><strong>開幕與賽制說明</strong><small>三日賽制、賽道與贊助商獎項</small></div></div>
<div class="item"><time>11:10</time><div><strong>開發時間</strong><small>可自由進出,也能參加 FUTUREMODE 議程</small></div></div>
<div class="item"><time>16:30</time><div><strong>隊伍與主題異動截止</strong><small>之後不再受理任何異動</small></div></div>
<div class="item"><time>17:00</time><div><strong>第一天離場</strong><small>場地關閉,不開放過夜</small></div></div>
</div>
</div>
</section>
<section class="slide" data-topic="Day 2 時程">
<div class="slide-inner">
<div class="kicker rise"><span>01</span> 活動時程</div>
<h2 class="display display-md rise">Day 2|9/5 <span class="acid">開發・分享</span></h2>
<div class="stack rise">
<div class="item"><time>09:00</time><div><strong>開發時間</strong><small>閃電講報名同步開放</small></div></div>
<div class="item item--hot"><time>12:00</time><div><strong>閃電講報名截止・抽選</strong><small>預計抽選 10 位講者+2 位候補</small></div></div>
<div class="item"><time>15:50</time><div><strong>講者報到</strong><small>入選講者請至舞台報到</small></div></div>
<div class="item item--hot"><time>16:05</time><div><strong>閃電講</strong><small>每人 2 分鐘,不開放延長</small></div></div>
<div class="item"><time>17:00</time><div><strong>第二天離場</strong><small>確認繳交規格與連結權限</small></div></div>
</div>
</div>
</section>
<section class="slide" data-topic="Day 3 時程">
<div class="slide-inner">
<div class="kicker rise"><span>01</span> 活動時程</div>
<h2 class="display display-md rise">Day 3|9/6 <span class="acid">繳交・決賽</span></h2>
<div class="stack rise">
<div class="item item--hot"><time>10:00</time><div><strong>作品繳交截止</strong><small>表單關閉,請預留權限檢查時間</small></div></div>
<div class="item"><time>10:00</time><div><strong>第一輪書審</strong><small>依影片、程式碼與文件選出前 10 名</small></div></div>
<div class="item"><time>14:30</time><div><strong>AI × Creative Technology</strong><small>Presented by 科幻文創協會</small></div></div>
<div class="item item--hot"><time>15:00</time><div><strong>BUILDMODE Demo Day 成果發表</strong><small>Presented by SITCON・至 17:00</small></div></div>
</div>
</div>
</section>
<section class="slide" data-topic="七大賽道">
<div class="slide-inner">
<div class="kicker rise"><span>02</span> 參賽主題</div>
<h2 class="display display-lg rise">7 個賽道</h2>
<div class="track-list rise">
<div class="track"><i>01</i><div><strong>AI Agents & Automation</strong><small>AI Agent 與自動化</small></div></div>
<div class="track"><i>02</i><div><strong>AI for Everyday Life</strong><small>日常生活 AI</small></div></div>
<div class="track"><i>03</i><div><strong>Future of Work</strong><small>未來工作</small></div></div>
<div class="track"><i>05</i><div><strong>AI for Taiwan / Social Impact</strong><small>台灣與社會影響</small></div></div>
<div class="track"><i>06</i><div><strong>BUILDMODE Open</strong><small>硬體、Web3、空間運算</small></div></div>
<div class="track"><i>07</i><div><strong>AI × Creativity</strong><small>影像與 IP 遊戲創作</small></div></div>
<div class="track track--special"><i>04</i><div><strong>AI × Creative Technology</strong><small>特殊賽道・可額外加選</small></div><em>下一頁詳述</em></div>
</div>
</div>
</section>
<section class="slide" data-topic="Track 04">
<div class="slide-inner">
<div class="kicker rise"><span>02</span> 特殊賽道</div>
<h2 class="display display-md rise">Track 04|AI × Creative <span class="acid">Technology</span></h2>
<div class="stack rise">
<div class="item"><span class="no">命題</span><div><strong>題目 9/4 現場公布</strong><small>須使用主辦方指定命題、角色造型及工具限時創作</small></div></div>
<div class="item"><span class="no">作品</span><div><strong>1.5 分鐘以上 AI 創作</strong><small>短片、動畫、MV、廣告、預告片或實驗性視覺作品</small></div></div>
<div class="item"><span class="no">加分</span><div><strong>融入科幻元素</strong><small>可獲加分,非必要條件</small></div></div>
<div class="item item--hot"><span class="no">繳交</span><div><strong>9/6(日)10:00 前</strong><small>9/4 全日現場創作,作品與文件一併繳交</small></div></div>
</div>
</div>
</section>
<section class="slide" data-topic="參賽規則">
<div class="slide-inner">
<div class="kicker rise"><span>03</span> 參賽規則</div>
<h2 class="display display-lg rise">五條規則<br /><span class="acid">先記住這些</span></h2>
<div class="stack stack--tight rise">
<div class="item"><span class="no">01</span><div><strong>每隊 1–5 人,可個人參賽</strong><small>每人同時僅能隸屬一個主隊伍</small></div></div>
<div class="item"><span class="no">02</span><div><strong>三日皆須報到(09:00–16:00)</strong><small>完成後可自由進出場地</small></div></div>
<div class="item item--hot"><span class="no">03</span><div><strong>必須開源</strong><small>公開儲存庫、README、授權與執行方式,否則不具總排名資格</small></div></div>
<div class="item"><span class="no">04</span><div><strong>一隊一件主作品</strong><small>同一作品可同時角逐多個贊助商獎項</small></div></div>
<div class="item"><span class="no">05</span><div><strong>可提前開發,須完整揭露</strong><small>既有程式、模型、資料與第三方素材都要說明</small></div></div>
</div>
</div>
</section>
<section class="slide" data-topic="隊伍異動">
<div class="slide-inner">
<div class="kicker rise"><span>03</span> 隊伍異動</div>
<h2 class="display display-lg rise">改隊怎麼辦<br /><span class="acid">服務台規則</span></h2>
<div class="stack stack--tight rise">
<div class="item"><span class="no">01</span><div><strong>媒合者:可加入別隊或獨立組隊</strong><small>加入別隊需帶隊長與你本人到服務台辦理隊伍變更登記</small></div></div>
<div class="item"><span class="no">02</span><div><strong>完整隊伍:可臨時增減隊員</strong><small>不得超過隊伍人數上限(5 人),需攜帶欲變更者到服務台辦理登記</small></div></div>
<div class="item item--hot"><span class="no">03</span><div><strong>不接受:拆隊</strong><small>完整隊伍成員獨立組隊、或分拆成兩隊,皆不受理</small></div></div>
</div>
<p class="lede rise" style="margin-top: 18px">隊伍異動一律於服務台辦理・9/4(五)16:30 截止</p>
</div>
</section>
<section class="slide" data-topic="作品繳交">
<div class="slide-inner">
<div class="kicker rise"><span>03</span> 作品繳交</div>
<h2 class="display display-md rise">書審要交<span class="acid">什麼</span></h2>
<div class="stack stack--tight rise">
<div class="item"><span class="no">01</span><div><strong>隊伍資料與賽道</strong><small>主賽道+欲角逐的贊助商挑戰</small></div></div>
<div class="item"><span class="no">02</span><div><strong>問題與解法摘要</strong><small>100–200 字</small></div></div>
<div class="item item--hot"><span class="no">03</span><div><strong>公開程式碼儲存庫+授權檔案</strong><small>GitHub/GitLab,開源是總排名必要條件</small></div></div>
<div class="item"><span class="no">04</span><div><strong>README 與系統架構</strong><small>執行方式與素材來源說明</small></div></div>
<div class="item"><span class="no">05</span><div><strong>作品展示網址</strong><small>選填</small></div></div>
<div class="item item--hot"><span class="no">06</span><div><strong>2 分鐘評選影片</strong><small>上傳 YouTube,書審主要依據</small></div></div>
</div>
<p class="lede rise" style="margin-top: 18px">截止 <strong>9/6(日)10:00</strong>・繳交表單 9/5 公布於資訊站</p>
</div>
</section>
<section class="slide" data-topic="Bounty">
<div class="slide-inner">
<div class="kicker rise"><span>04</span> 贊助商獎勵</div>
<h2 class="display display-md rise">Bounty<span class="acid"> 主題挑戰</span></h2>
<div class="stack stack--tight rise">
<div class="sponsor"><div><strong>大腕影業 × 科幻協會</strong><small>AI × Creativity</small></div><small>運用 AI 創作短片、動畫、MV、廣告、預告片或實驗性視覺作品,長度 1.5 分鐘以上。競賽題目由主辦方於 9/4 現場公布,參賽者須依據指定命題、主辦方提供之角色造型及工具進行限時創作;作品中融入科幻元素可獲加分(非必要條件)。<b class="deadline">⚠ 9/6(日)10:00 前繳交</b></small><span class="amt">總獎金 US$3,000</span></div>
<div class="sponsor"><div><strong>國泰金控</strong><small>AI Agent × 區塊鏈</small></div><small>自動化錢包、支付、交易與金融工作流程的 AI 代理</small><span class="amt">US$1,500</span></div>
<div class="sponsor"><div><strong>NOXCAT</strong><small>AI × IP 遊戲創作</small></div><small>須符合 NOXCAT IP 與資源使用規範</small><span class="amt">US$1,500 等值</span></div>
</div>
<p class="lede rise" style="margin-top: 20px">參加贊助商計劃須符合各項參賽資格,詳細條件以官方公告為準。</p>
</div>
</section>
<section class="slide" data-topic="評分 Round 1">
<div class="slide-inner">
<div class="kicker rise"><span>05</span> 評選方式</div>
<h2 class="display display-md rise">Round 1 書審<span class="acid"> 選出前 10 名</span></h2>
<div class="score rise">
<div class="score-row"><strong>問題定義與影響力</strong><div class="score-bar"><i style="width: 35%"></i></div><b>35%</b></div>
<div class="score-row"><strong>技術實作</strong><div class="score-bar"><i style="width: 30%"></i></div><b>30%</b></div>
<div class="score-row"><strong>成果展示</strong><div class="score-bar"><i style="width: 20%"></i></div><b>20%</b></div>
<div class="score-row"><strong>開源品質</strong><div class="score-bar"><i style="width: 15%"></i></div><b>15%</b></div>
</div>
<p class="lede rise" style="margin-top: 26px">依影片、程式碼與文件評選,開源品質直接影響資格。</p>
</div>
</section>
<section class="slide" data-topic="評分 Round 2">
<div class="slide-inner">
<div class="kicker rise"><span>05</span> 評選方式</div>
<h2 class="display display-md rise">Round 2 Demo<span class="acid"> 每隊 5 分鐘</span></h2>
<div class="score rise">
<div class="score-row"><strong>使用者價值</strong><div class="score-bar"><i style="width: 30%"></i></div><b>30%</b></div>
<div class="score-row"><strong>使用體驗</strong><div class="score-bar"><i style="width: 25%"></i></div><b>25%</b></div>
<div class="score-row"><strong>成果展示</strong><div class="score-bar"><i style="width: 20%"></i></div><b>20%</b></div>
<div class="score-row"><strong>產品成熟度</strong><div class="score-bar"><i style="width: 15%"></i></div><b>15%</b></div>
<div class="score-row"><strong>未來發展</strong><div class="score-bar"><i style="width: 10%"></i></div><b>10%</b></div>
</div>
<p class="lede rise" style="margin-top: 26px">3 分鐘展示・1 分鐘評審提問・1 分鐘回答,請自備電腦。</p>
</div>
</section>
<section class="slide" data-topic="獎項">
<div class="slide-inner">
<div class="kicker rise"><span>06</span> 獎項</div>
<h2 class="display display-lg rise">總排名<span class="acid">獎金</span></h2>
<div class="cards rise">
<div class="card card--dark">
<b>1st</b>
<h3>US$3,000</h3>
<p>+ EastRouter 等值 US$10,000 代幣</p>
</div>
<div class="card">
<b>2nd</b>
<h3>US$2,000</h3>
<p>+ EastRouter 等值 US$5,000 代幣</p>
</div>
<div class="card">
<b>3rd</b>
<h3>US$1,000</h3>
<p>+ EastRouter 等值 US$3,000 代幣</p>
</div>
</div>
<p class="lede rise" style="margin-top: 24px">另含 OpenAI 前三名額度獎金共 US$50,000 與各贊助商主題獎項。</p>
</div>
</section>
<section class="slide" data-topic="資訊網">
<div class="slide-inner">
<div class="kicker rise"><span>07</span> 資訊網</div>
<h2 class="display display-lg rise">所有資訊<br /><span class="acid">都在這裡</span></h2>
<div class="link-list rise">
<div class="link-item"><i>WEB</i><div><strong><a href="https://hackathon2026.sitcon.org" target="_blank" rel="noreferrer">hackathon2026.sitcon.org</a></strong><small>參賽者資訊站:三日最新公告都在這,含時程、賽制、評分與資源</small></div></div>
<div class="link-item"><i>HELP</i><div><strong>Telegram 官方群組</strong><small>現場有任何問題,直接在群組提問,馬上有人回</small></div></div>
<div class="link-item"><i>FORM</i><div><strong>重要表單 9/5 公布</strong><small>閃電講報名與作品繳交,連結上架於資訊站首頁</small></div></div>
</div>
</div>
</section>
<section class="slide" data-topic="可利用資源">
<div class="slide-inner">
<div class="kicker rise"><span>08</span> 可利用資源</div>
<h2 class="display display-lg rise">可利用<span class="acid">資源</span></h2>
<div class="stack stack--tight rise">
<div class="item item--hot"><span class="no">01</span><div><strong>OpenAI|有申請者</strong><small>每位參賽者 US$100 API credits+1 個月 ChatGPT/Codex Pro(價值 US$100/月)</small></div></div>
<div class="item"><span class="no">02</span><div><strong>ElevenLabs</strong><small>每位參賽者 110k credits</small></div></div>
<div class="item"><span class="no">03</span><div><strong>GMI Cloud</strong><small>隨機 100 名各獲 US$10 credits,並可自由免費調用 MiniMax 模型</small></div></div>
<div class="item"><span class="no">04</span><div><strong>Atlas|有申請者</strong><small>提供 API 額度,詳細操作請見資訊站資源頁</small></div></div>
<div class="item"><span class="no">05</span><div><strong>EastRouter</strong><small>同樣提供資源,預設發送至當初填寫的報名 email,請留意信箱</small></div></div>
</div>
<p class="lede rise" style="margin-top: 18px">我們還在確認資源到底有沒有發 owo</p>
</div>
</section>
<section class="slide" data-topic="掃碼上網">