-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path06-龍的對話錄-symposium.html
More file actions
1674 lines (1508 loc) · 71 KB
/
Copy path06-龍的對話錄-symposium.html
File metadata and controls
1674 lines (1508 loc) · 71 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-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>龍的對話錄 · A Symposium of Dragons|龙学第六卷</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Ma+Shan+Zheng&family=Noto+Serif+SC:wght@300;400;500;600;700;900&family=ZCOOL+XiaoWei&display=swap" rel="stylesheet">
<style>
/* ===========================================================
卷六 · 龍的對話錄
爐火夜話美學:深夜墨蓝 + 琥珀火光 + 青铜 + 朱砂
仿柏拉图对话录 · 七幕 + 一位沉默观察者
=========================================================== */
:root {
--void: #050810;
--bg: #0a0e18;
--bg-2: #131a2a;
--bg-3: #1b2336;
--bg-warm: #1c1408;
--ink: #ece4d2;
--ink-soft: #c2bba6;
--ink-deep: #8a8270;
--ink-mute: #5a5466;
--amber: #f0a050;
--amber-bright: #ffd089;
--amber-deep: #9a5a20;
--bronze: #c9a060;
--bronze-d: #8a6a30;
--ash: #6a7080;
--ash-d: #3a4250;
--night: #4a5870;
--cinnabar: #a83838;
--cinnabar-bright:#c84a44;
--cinnabar-d: #5e1818;
--line: rgba(201,160,96,0.15);
--line-amber: rgba(240,160,80,0.22);
--line-ash: rgba(106,112,128,0.20);
--f-cn-brush: 'Ma Shan Zheng', 'Noto Serif SC', serif;
--f-cn-script: 'ZCOOL XiaoWei', 'Noto Serif SC', serif;
--f-cn: 'Noto Serif SC', 'Songti SC', 'Source Han Serif SC', serif;
--f-en-disp: 'Cormorant Garamond', serif;
--f-en: 'EB Garamond', Georgia, serif;
--f-num: 'Cinzel', serif;
--gutter: clamp(1.5rem, 5vw, 4rem);
}
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
background: var(--bg);
color: var(--ink);
font-family: var(--f-cn);
font-weight: 300;
line-height: 1.9;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
/* 氛围 */
body::before {
content: '';
position: fixed; inset: 0;
background:
radial-gradient(ellipse 60% 70% at 50% 100%, rgba(240,160,80,0.16), transparent 65%),
radial-gradient(ellipse 50% 60% at 10% 0%, rgba(74,88,112,0.20), transparent 60%),
radial-gradient(ellipse 50% 60% at 90% 30%, rgba(168,56,56,0.06), transparent 60%);
pointer-events: none;
z-index: 1;
}
body::after {
content: '';
position: fixed; inset: 0;
background-image: repeating-linear-gradient(
13deg,
rgba(236,228,210,0.012) 0,
rgba(236,228,210,0.012) 1px,
transparent 1px, transparent 8px
);
pointer-events: none;
z-index: 2;
mix-blend-mode: overlay;
}
/* 火焰粒子 —— 中央炉火的颗粒 */
.firepit {
position: fixed;
left: 50%; bottom: 0;
transform: translateX(-50%);
width: 30rem; height: 28vh;
pointer-events: none;
z-index: 3;
background:
radial-gradient(ellipse at 50% 100%, rgba(255,208,137,0.30), transparent 65%);
overflow: hidden;
}
.spark {
position: absolute;
bottom: 0; left: 50%;
width: 3px; height: 3px;
background: var(--amber-bright);
border-radius: 50%;
opacity: 0;
box-shadow: 0 0 6px var(--amber-bright), 0 0 12px var(--amber);
animation: spark-up 6s ease-out infinite;
}
@keyframes spark-up {
0% { transform: translate(0, 0) scale(.8); opacity: 0; }
10% { opacity: 1; }
100% { transform: translate(var(--dx, 30px), -50vh) scale(.1); opacity: 0; }
}
/* 链接 */
a {
color: var(--amber-bright);
text-decoration: none;
border-bottom: 1px dashed rgba(255,208,137,0.36);
transition: color .3s, border-color .3s;
}
a:hover { color: var(--ink); border-bottom-color: var(--ink); }
img, svg { display: block; max-width: 100%; }
/* ============================================================
★ 时钟(左侧)—— 黄昏→入夜→三更→黎明 ★
============================================================ */
.clock {
position: fixed;
left: 2rem; top: 50%;
transform: translateY(-50%);
z-index: 50;
display: flex; flex-direction: column;
gap: 1.5rem;
padding: 1.8rem 0;
width: 8.5rem;
}
.clock::before {
content: '時辰';
display: block;
font-family: var(--f-cn);
font-size: .68rem;
letter-spacing: .42em;
color: var(--amber);
padding-bottom: .8rem;
margin-bottom: .4rem;
border-bottom: 1px solid var(--line-amber);
text-align: left;
padding-left: 1.4rem;
}
.tick {
display: flex;
align-items: center;
gap: .8rem;
font-family: var(--f-cn);
font-size: .76rem;
color: var(--ink-deep);
text-decoration: none;
border: none;
letter-spacing: .12em;
transition: color .5s;
position: relative;
}
.tick .moon {
width: 16px; height: 16px;
border-radius: 50%;
flex-shrink: 0;
background: var(--bg-2);
border: 1.5px solid var(--ash);
position: relative;
transition: all .6s;
}
.tick .label {
display: flex; flex-direction: column;
line-height: 1.15;
}
.tick .label b {
font-family: var(--f-cn);
font-weight: 500;
font-size: .82rem;
letter-spacing: .12em;
color: inherit;
}
.tick .label .en {
font-family: var(--f-num);
font-size: .55rem;
color: var(--ink-mute);
letter-spacing: .25em;
margin-top: .15rem;
transition: color .6s;
}
.tick.lit { color: var(--amber-bright); }
.tick.lit .label .en { color: var(--bronze); }
.tick.lit .moon {
background: var(--amber-bright);
border-color: var(--amber);
box-shadow: 0 0 12px var(--amber-bright), 0 0 22px rgba(255,208,137,0.4);
}
.tick.active { color: var(--ink); }
.tick.active .moon {
background: var(--amber);
border-color: var(--amber-bright);
animation: pulse-moon 2.4s ease-in-out infinite;
}
@keyframes pulse-moon {
0%, 100% { box-shadow: 0 0 8px var(--amber); }
50% { box-shadow: 0 0 18px var(--amber), 0 0 28px rgba(240,160,80,0.5); }
}
@media (max-width: 1140px) { .clock { display: none; } }
/* 右上 */
.top-mark {
position: fixed;
top: 1.4rem; right: 1.6rem;
z-index: 50;
display: flex; align-items: center; gap: .9rem;
font-family: var(--f-num);
font-size: .65rem; letter-spacing: .32em;
color: var(--ink-deep);
}
.top-mark .seal {
width: 1.8rem; height: 1.8rem;
background: var(--cinnabar);
display: grid; place-items: center;
color: var(--ink);
font-family: var(--f-cn-brush);
font-size: 1.05rem;
box-shadow:
0 0 0 1px rgba(168,56,56,.6) inset,
0 0 14px rgba(168,56,56,0.4);
}
.top-mark .nav-links {
display: flex; gap: .9rem;
font-family: var(--f-cn);
font-size: .72rem;
letter-spacing: .25em;
}
.top-mark .nav-links a {
color: var(--ink-deep);
border: none;
}
.top-mark .nav-links a:hover { color: var(--amber-bright); }
@media (max-width: 720px) { .top-mark .nav-links { display: none; } }
/* ============================================================
HERO
============================================================ */
.hero {
position: relative;
min-height: 100vh;
display: flex; flex-direction: column; justify-content: center;
padding: 6rem var(--gutter) 4rem;
overflow: hidden;
z-index: 5;
background:
radial-gradient(ellipse 70% 100% at 50% 100%, rgba(240,160,80,0.32), transparent 65%),
radial-gradient(ellipse 60% 60% at 80% 0%, rgba(74,88,112,0.15), transparent 60%);
border-bottom: 1px solid var(--line-amber);
}
.hero-firepot {
position: absolute;
left: 50%; bottom: -8vh;
transform: translateX(-50%);
width: 36rem; height: 36rem;
z-index: -1;
background:
radial-gradient(circle at 50% 50%, rgba(255,208,137,0.18) 0%, rgba(240,160,80,0.10) 30%, transparent 65%);
filter: blur(3px);
animation: flicker 3.5s ease-in-out infinite;
}
@keyframes flicker {
0%, 100% { opacity: .9; transform: translateX(-50%) scale(1); }
35% { opacity: .75; transform: translateX(-50%) scale(.96); }
60% { opacity: 1; transform: translateX(-50%) scale(1.03); }
}
.hero-eyebrow {
font-family: var(--f-num);
font-size: .76rem;
letter-spacing: .45em;
color: var(--amber-bright);
margin-bottom: 2.4rem;
display: flex; align-items: center; gap: 1rem;
opacity: 0; animation: rise 1s .15s ease-out forwards;
}
.hero-eyebrow::before {
content: ''; display: block;
width: 3.5rem; height: 1px;
background: linear-gradient(90deg, transparent, var(--amber-bright));
}
.hero h1 {
font-family: var(--f-cn-brush);
font-weight: 400;
font-size: clamp(4rem, 12vw, 11rem);
line-height: .98;
margin: 0 0 .15em;
color: var(--ink);
letter-spacing: .04em;
text-shadow:
0 0 40px rgba(240,160,80,0.40),
0 0 80px rgba(168,56,56,0.18);
opacity: 0;
animation: rise 1.2s .35s ease-out forwards;
}
.hero-sub-cn {
font-family: var(--f-cn);
font-size: clamp(1.3rem, 2.4vw, 2rem);
font-weight: 400;
color: var(--amber);
letter-spacing: .22em;
margin: 0 0 1.8rem;
opacity: 0; animation: rise 1.2s .7s ease-out forwards;
}
.hero-title-en {
font-family: var(--f-en-disp);
font-style: italic;
font-weight: 300;
font-size: clamp(1.3rem, 2.4vw, 2.2rem);
letter-spacing: .04em;
color: var(--ink-soft);
margin: 0 0 3rem;
max-width: 38rem;
line-height: 1.35;
opacity: 0; animation: rise 1.2s 1s ease-out forwards;
}
.hero-title-en em { color: var(--amber-bright); font-style: italic; }
.hero-cast {
max-width: 44rem;
margin: 0;
padding: 1.5rem 0 0;
border-top: 1px solid var(--line);
font-family: var(--f-cn);
font-size: 1rem;
color: var(--ink-soft);
line-height: 1.9;
opacity: 0; animation: rise 1.2s 1.2s ease-out forwards;
}
.hero-cast em { color: var(--amber-bright); font-style: normal; }
.hero-cast .silent {
display: block;
margin-top: .8rem;
padding-top: .8rem;
border-top: 1px dashed var(--line);
color: var(--ash);
font-style: italic;
font-size: .92rem;
}
.hero-meta {
display: flex; gap: 3rem;
font-family: var(--f-num);
font-size: .7rem; letter-spacing: .3em;
color: var(--ink-deep);
margin-top: 3rem;
flex-wrap: wrap;
opacity: 0; animation: rise 1.2s 1.4s ease-out forwards;
}
.hero-meta div { display: flex; flex-direction: column; gap: .3rem; }
.hero-meta strong { color: var(--amber-bright); font-weight: 500; }
.scroll-cue {
position: absolute;
bottom: 2.2rem; left: 50%;
transform: translateX(-50%);
font-family: var(--f-num);
font-size: .65rem; letter-spacing: .4em;
color: var(--ink-deep);
display: flex; align-items: center; gap: .6rem;
opacity: 0; animation: rise 1s 1.7s ease-out forwards;
}
.scroll-cue::after {
content: ''; display: block; width: 1px; height: 2.2rem;
background: linear-gradient(180deg, var(--amber-bright), transparent);
animation: descend 2.6s ease-in-out infinite;
}
@keyframes descend {
0%, 100% { transform: scaleY(.6) translateY(-30%); opacity: .35; }
50% { transform: scaleY(1) translateY(0); opacity: 1; }
}
@keyframes rise {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
/* ============================================================
FRAME / SCENE
============================================================ */
section { position: relative; z-index: 5; }
.frame {
padding: 9rem var(--gutter) 5rem;
max-width: 56rem;
margin: 0 auto;
position: relative;
}
.frame::before {
content: 'SCENE · 場';
position: absolute;
top: 5.5rem; left: var(--gutter);
font-family: var(--f-num);
font-size: .7rem; letter-spacing: .4em;
color: var(--amber-bright);
}
.frame-label {
font-family: var(--f-cn);
font-size: .85rem; letter-spacing: .4em;
color: var(--cinnabar-bright);
margin-bottom: 1.4rem;
display: flex; align-items: center; gap: .8rem;
}
.frame-label::after {
content: ''; flex: 1; max-width: 6rem; height: 1px;
background: linear-gradient(90deg, var(--cinnabar-bright), transparent);
}
.frame h2 {
font-family: var(--f-cn);
font-weight: 300;
font-size: clamp(2rem, 4vw, 3.2rem);
line-height: 1.35;
color: var(--ink);
margin: .4em 0 1.5em;
letter-spacing: .02em;
}
.frame h2 em {
font-family: var(--f-cn-brush);
font-style: normal;
color: var(--amber-bright);
font-size: 1.2em;
}
.frame p {
font-size: 1.05rem;
line-height: 1.95;
margin: 0 0 1.3em;
color: var(--ink);
}
.frame p em {
font-style: italic;
color: var(--ash);
}
.frame p strong {
color: var(--amber-bright);
font-weight: 500;
}
.frame .first-letter::first-letter {
font-family: var(--f-cn-brush);
font-size: 4.2em;
float: left;
line-height: .9;
padding: .1em .15em 0 0;
color: var(--amber-bright);
}
.cast-list {
margin: 3rem 0;
padding: 2rem 2.4rem;
background:
linear-gradient(135deg, rgba(240,160,80,0.06), transparent 60%),
var(--bg-2);
border: 1px solid var(--line-amber);
border-left: 3px solid var(--amber);
position: relative;
}
.cast-list::before {
content: 'DRAMATIS PERSONAE · 在座';
position: absolute;
top: -.7rem; left: 1.6rem;
background: var(--bg);
padding: 0 .8rem;
font-family: var(--f-num);
font-size: .6rem;
letter-spacing: .4em;
color: var(--cinnabar-bright);
}
.cast-list ul {
list-style: none;
padding: 0; margin: 0;
}
.cast-list li {
padding: .55em 0;
border-bottom: 1px dashed var(--line-ash);
display: grid;
grid-template-columns: 9rem 1fr;
gap: 1rem;
font-size: .98rem;
}
.cast-list li:last-child { border-bottom: none; }
.cast-list li .name {
font-family: var(--f-num);
font-weight: 500;
font-size: .85rem;
letter-spacing: .2em;
color: var(--amber-bright);
}
.cast-list li .name em {
display: block;
font-family: var(--f-cn);
font-style: normal;
font-weight: 400;
font-size: .82rem;
letter-spacing: .12em;
color: var(--bronze);
margin-top: .1em;
}
.cast-list li .role {
color: var(--ink-soft);
font-size: .94rem;
line-height: 1.6;
}
.cast-list li.silent .name { color: var(--ash); }
.cast-list li.silent .role { color: var(--ash); font-style: italic; }
@media (max-width: 600px) {
.cast-list li { grid-template-columns: 1fr; gap: .2rem; }
}
/* ============================================================
★ ACT —— 每一幕 ★
============================================================ */
.act {
max-width: 64rem;
margin: 0 auto;
padding: 5rem var(--gutter);
position: relative;
scroll-margin-top: 3rem;
}
.act-head {
text-align: center;
margin-bottom: 4rem;
padding-bottom: 2rem;
border-bottom: 1px solid var(--line-amber);
}
.act-head .act-no {
font-family: var(--f-num);
font-size: .72rem;
letter-spacing: .5em;
color: var(--amber);
margin-bottom: 1rem;
}
.act-head .act-time {
font-family: var(--f-cn-script);
font-size: 1rem;
color: var(--ash);
margin-bottom: 1.4rem;
letter-spacing: .15em;
}
.act-head h3 {
font-family: var(--f-cn-brush);
font-weight: 400;
font-size: clamp(2.2rem, 4.3vw, 3.4rem);
color: var(--ink);
letter-spacing: .1em;
margin: 0 0 .5rem;
text-shadow: 0 0 24px rgba(255,208,137,0.20);
}
.act-head h3 em {
font-style: normal;
color: var(--amber-bright);
font-size: .85em;
}
.act-head .act-en {
font-family: var(--f-en-disp);
font-style: italic;
font-size: 1.1rem;
color: var(--bronze);
letter-spacing: .04em;
margin-top: .6rem;
}
.act-head .act-tag {
margin-top: 1.2rem;
font-family: var(--f-cn);
font-size: .95rem;
color: var(--ink-soft);
font-style: italic;
}
/* 舞台说明 */
.stage {
margin: 1.8rem 0;
padding: 0 0 0 2rem;
font-family: var(--f-cn);
font-style: italic;
font-size: .96rem;
color: var(--ash);
line-height: 1.85;
border-left: 1px solid var(--line-ash);
position: relative;
}
.stage::before {
content: '※';
position: absolute;
left: .4rem; top: .15em;
color: var(--bronze);
font-style: normal;
font-size: .8rem;
}
.stage p { margin: 0 0 .8em; }
.stage p:last-child { margin-bottom: 0; }
/* 对白 */
.line {
display: grid;
grid-template-columns: 8rem 1fr;
gap: 1.5rem;
margin: 1.6rem 0;
align-items: baseline;
}
.line .who {
font-family: var(--f-num);
font-size: .82rem;
letter-spacing: .2em;
text-align: right;
padding-top: .25em;
}
.line .who em {
display: block;
font-family: var(--f-cn);
font-style: normal;
font-size: .82rem;
letter-spacing: .12em;
color: var(--bronze);
margin-top: .15em;
text-align: right;
}
.line .said {
font-family: var(--f-cn);
font-size: 1.06rem;
line-height: 1.95;
color: var(--ink);
padding: 0 0 0 1.5rem;
border-left: 1px solid var(--line-amber);
}
.line .said p { margin: 0 0 .9em; }
.line .said p:last-child { margin-bottom: 0; }
.line .said em {
color: var(--amber-bright);
font-style: normal;
}
.line .said strong {
color: var(--amber);
font-weight: 500;
}
/* 不同角色的颜色调味 */
.line.vico .who { color: #e8945a; }
.line.eliade .who { color: #c9a060; }
.line.levi .who { color: #9aaecb; }
.line.jung .who { color: #d4a98b; }
.line.tolkien .who { color: #b8c89a; }
.line.benjamin .who { color: #8a8aa8; }
.line.lacan .who { color: #b58aa8; }
.line.heideg .who { color: #c8bba0; }
.line.you .who { color: var(--amber-bright); }
.line.you .said { border-left-color: var(--amber-bright); }
@media (max-width: 720px) {
.line { grid-template-columns: 1fr; gap: .4rem; }
.line .who { text-align: left; padding-top: 0; padding-left: .4rem;
border-left: 3px solid var(--line-amber); padding-bottom: .2em; }
.line .who em { text-align: left; }
.line .said { padding-left: .8rem; border-left: 1px solid var(--line-amber); }
}
/* 整幕装饰线 */
.act-divider-mini {
text-align: center;
margin: 3rem 0;
color: var(--amber);
font-size: .8rem;
letter-spacing: 1.2rem;
opacity: .55;
}
/* 衔尾蛇出现的瞬间 —— 特殊提示 */
.ouroboros-moment {
margin: 2.5rem 0;
padding: 1.6rem 2rem;
background:
radial-gradient(ellipse at top left, rgba(168,56,56,0.10), transparent 60%),
rgba(15,18,30,0.6);
border: 1px solid var(--cinnabar-d);
border-left: 3px solid var(--cinnabar);
position: relative;
}
.ouroboros-moment::before {
content: '◆ 銜尾蛇 · 沉默之證 ◆';
position: absolute;
top: -.6rem; left: 50%;
transform: translateX(-50%);
background: var(--bg);
padding: 0 1rem;
font-family: var(--f-num);
font-size: .58rem;
letter-spacing: .4em;
color: var(--cinnabar-bright);
}
.ouroboros-moment p {
margin: 0;
font-family: var(--f-cn-script);
font-size: 1.05rem;
color: var(--ink-soft);
line-height: 1.9;
letter-spacing: .04em;
text-align: center;
font-style: italic;
}
/* ============================================================
EPILOGUE
============================================================ */
.epilogue {
padding: 10rem var(--gutter) 8rem;
text-align: center;
position: relative;
background:
radial-gradient(ellipse at center top, rgba(255,208,137,0.18), transparent 50%),
radial-gradient(ellipse at center bottom, rgba(74,88,112,0.20), transparent 60%);
border-top: 1px solid var(--line-amber);
}
.epilogue .epi-mark {
display: inline-block;
font-family: var(--f-num);
font-size: .7rem; letter-spacing: .5em;
color: var(--amber-bright);
margin-bottom: 1.4rem;
}
.epilogue h2 {
font-family: var(--f-cn);
font-weight: 300;
font-size: clamp(2rem, 4vw, 3.2rem);
color: var(--ink);
margin: 0 0 2em;
letter-spacing: .06em;
}
.epilogue h2 em {
font-family: var(--f-cn-brush);
font-style: normal;
color: var(--amber-bright);
font-size: 1.3em;
}
.epi-body {
max-width: 40rem;
margin: 0 auto;
font-size: 1.08rem;
color: var(--ink);
line-height: 2.05;
text-align: left;
}
.epi-body p { margin: 0 0 1.3em; }
.epi-body p strong { color: var(--amber-bright); }
.epi-verse {
margin: 3em auto;
padding: 2em 0;
border-top: 1px solid var(--line-amber);
border-bottom: 1px solid var(--line-amber);
font-family: var(--f-cn-script);
font-size: 1.35rem;
color: var(--amber);
line-height: 2.4;
letter-spacing: .08em;
text-align: center;
}
.epi-final {
margin-top: 3em;
font-family: var(--f-cn-brush);
font-size: 2.1rem;
color: var(--amber-bright);
letter-spacing: .25em;
text-shadow: 0 0 24px rgba(255,208,137,0.5);
text-align: center;
}
/* 衔尾蛇徽记 */
.ouroboros-sigil {
width: 9rem; height: 9rem;
margin: 3rem auto 0;
opacity: .85;
animation: glow-sigil 5s ease-in-out infinite;
}
@keyframes glow-sigil {
0%, 100% { filter: drop-shadow(0 0 8px rgba(255,208,137,0.3)); }
50% { filter: drop-shadow(0 0 18px rgba(255,208,137,0.6)); }
}
/* colophon */
.colophon {
padding: 3rem var(--gutter) 4rem;
border-top: 1px solid var(--line);
display: flex; justify-content: space-between;
flex-wrap: wrap; gap: 1.5rem;
font-family: var(--f-num);
font-size: .7rem; letter-spacing: .3em;
color: var(--ink-deep);
max-width: 78rem;
margin: 0 auto;
}
.colophon .seal-tag { display: flex; align-items: center; gap: .8rem; }
.colophon .seal-tag .seal-sm {
width: 1.9rem; height: 1.9rem;
background: var(--cinnabar);
display: grid; place-items: center;
color: var(--ink);
font-family: var(--f-cn-brush);
font-size: 1.1rem;
box-shadow: 0 0 12px rgba(168,56,56,0.4);
}
.colophon a { color: var(--ink-soft); border: none; }
.colophon a:hover { color: var(--amber-bright); }
/* reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s ease-out, transform 1.1s ease-out; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (max-width: 600px) {
.act, .frame, .epilogue { padding-left: 1.5rem; padding-right: 1.5rem; }
.hero { padding-left: 1.5rem; padding-right: 1.5rem; }
.hero-meta { gap: 1.5rem; }
.top-mark { right: 1rem; font-size: .55rem; letter-spacing: .2em; }
}
</style>
</head>
<body>
<!-- 炉火粒子 -->
<div class="firepit" aria-hidden="true" id="firepit"></div>
<!-- ★ 时辰 ★ -->
<nav class="clock" aria-label="时辰">
<a class="tick" href="#frame" data-stage="0">
<div class="moon"></div>
<div class="label"><b>黃昏</b><span class="en">DUSK</span></div>
</a>
<a class="tick" href="#act1" data-stage="1">
<div class="moon"></div>
<div class="label"><b>初更</b><span class="en">EVENING</span></div>
</a>
<a class="tick" href="#act2" data-stage="2">
<div class="moon"></div>
<div class="label"><b>二更</b><span class="en">NIGHT</span></div>
</a>
<a class="tick" href="#act3" data-stage="3">
<div class="moon"></div>
<div class="label"><b>三更</b><span class="en">DEEP</span></div>
</a>
<a class="tick" href="#act4" data-stage="4">
<div class="moon"></div>
<div class="label"><b>四更</b><span class="en">LATE</span></div>
</a>
<a class="tick" href="#act5" data-stage="5">
<div class="moon"></div>
<div class="label"><b>五更</b><span class="en">PRE-DAWN</span></div>
</a>
<a class="tick" href="#act6" data-stage="6">
<div class="moon"></div>
<div class="label"><b>欲曉</b><span class="en">FIRST LIGHT</span></div>
</a>
<a class="tick" href="#act7" data-stage="7">
<div class="moon"></div>
<div class="label"><b>黎明</b><span class="en">DAWN</span></div>
</a>
<a class="tick" href="#epilogue" data-stage="8">
<div class="moon"></div>
<div class="label"><b>日出</b><span class="en">SUNRISE</span></div>
</a>
</nav>
<!-- 右上 -->
<div class="top-mark">
<span>VOL. VI · MMXXVI</span>
<div class="nav-links">
<a href="01-龙之百科-compendium.html">壹</a>
<a href="02-龙的意义-meaning.html">貳</a>
<a href="03-龙的死亡与重生-death-rebirth.html">叁</a>
<a href="04-为什么人类一直需要龙-why-we-need-dragons.html">長文</a>
<a href="05-化龍-becoming.html">伍</a>
<a href="index.html">門</a>
</div>
<div class="seal">龍</div>
</div>
<!-- ===========================================================
HERO
=========================================================== -->
<header class="hero">
<div class="hero-firepot" aria-hidden="true"></div>
<div class="hero-eyebrow">VOLUME SIX · 卷陸 · 對話錄</div>
<h1>龍的對話錄</h1>
<div class="hero-sub-cn">A Symposium of Dragons</div>
<p class="hero-title-en">
Seven thinkers, one reader,<br>
one silent <em>witness</em> at the brazier.<br>
Dusk to dawn, one night in a mountain temple<br>
that has no door left.
</p>
<div class="hero-cast">
在场者七人——<em>Vico、Eliade、Lévi-Strauss、Jung、Tolkien、Benjamin × Lacan、Heidegger</em>。<br>
与你共一席,围一炉柏火,论一事:龍。<br>
一席八人。<em>另有一物</em>,在火盆边沿,整夜没有开口。
<span class="silent">沉默观察者 · 銜尾蛇 · 它整夜都在呼吸——只有最后一个人能听见。</span>
</p>
<div class="hero-meta">
<div><span>FORMAT</span><strong>DIALOGUE · 對話</strong></div>
<div><span>ACTS</span><strong>7 + 序終</strong></div>
<div><span>VOICES</span><strong>8 + 1 SILENT</strong></div>
<div><span>EDITION</span><strong>MMXXVI · 05</strong></div>
</div>
<div class="scroll-cue">SCROLL / 入席</div>
</header>
<!-- ===========================================================
FRAME · 黄昏入场
=========================================================== -->
<section class="frame" id="frame">
<div class="frame-label">序場 · 黃昏 · 一座沒有門的山中道觀</div>
<h2>这一夜,没有谁<em>邀请</em>谁,<br>但他们都<em>来</em>了。</h2>
<p class="first-letter">这座道观在地图上没有名字。当地人称它"<em>龙隐观</em>"——传说曾有一条龙在此处隐去,从此庙便空了。前殿在民国某年的大风里塌了,山门也被山藤掩埋。后殿尚在,三面石墙,一面对着山涧——风从那里灌进来,吹动青铜火盆里柏木与松枝交杂燃起的火焰。</p>
<p>火盆是这座空殿里唯一仍在用的器物。<em>盆沿铸有一圈衔尾蛇浮雕</em>。蛇身一寸一寸地咬住自己尾巴,绕成一个完整的圆。火光一闪,蛇鳞反一闪。火光一暗,蛇鳞也跟着暗。</p>
<p>圆桌是用观里残存的香案拼起来的,八只木椅围成一圈。<strong>没人记得是谁先来的</strong>。当你走进后殿时,他们已经在了——<em>所有人</em>。每个人安然坐在自己的椅子上,像他们已经在那里等了很久。</p>
<p>夕阳在山涧外的云背后,把火盆里的火焰染成琥珀色。你站在门口顿了一下——下意识地数了一下椅子。<em>八张。其中一张是空的。那是你的</em>。</p>
<p>你坐下。没人开口。所有人都看着火。火在低声地响。</p>
<div class="cast-list">
<ul>
<li><div class="name">VICO<em>·維柯</em></div><div class="role">穿着褐色厚呢大衣,烟管未点。眼神热烈,似随时要开口又止住。他是从十八世纪那不勒斯的废墟里来的。</div></li>
<li><div class="name">ELIADE<em>·伊利亚德</em></div><div class="role">长袍,胡子修剪整齐,双手交叠在膝盖上。罗马尼亚口音的拉丁语低声哼着某种祷词。</div></li>
<li><div class="name">LÉVI-STRAUSS<em>·列維</em></div><div class="role">瘦,戴小圆眼镜,双眼像两台分析仪器。手边一本笔记,已经开始写。</div></li>
<li><div class="name">JUNG<em>·荣格</em></div><div class="role">慈眉善目,胡子刚到嘴角。烟斗里的烟很慢地飘起。脚边一只老旧的皮箱。</div></li>
<li><div class="name">TOLKIEN<em>·托爾金</em></div><div class="role">穿粗呢西装,膝上一本破旧的字典。手指轻轻摸着字典封面,像在抚一只猫。</div></li>
<li><div class="name">BENJAMIN<em>·本雅明</em></div><div class="role">小个子,瘦削,眼神忧郁。他把一个旅行皮箱放在脚边——里面是手稿。他从未让箱子离身。</div></li>
<li><div class="name">LACAN<em>·拉康</em></div><div class="role">坐得很直,领结打得讲究。嘴角带着一种不易察觉的笑——既像在欣赏你,也像在等你出错。</div></li>
<li><div class="name">HEIDEGGER<em>·海德格爾</em></div><div class="role">穿黑色外套,慢慢呼吸。话最少。但他每一次开口,所有人都会停下。</div></li>
<li><div class="name">YOU<em>·你</em></div><div class="role">2026年的读者。读过前五卷。一身现代衣服。手机已关。带着前五卷的提问与一点不甘。</div></li>
<li class="silent"><div class="name">OUROBOROS<em>·銜尾蛇</em></div><div class="role">青铜火盆边沿的浮雕。它整夜不会说话。但它整夜都在呼吸。</div></li>
</ul>
</div>
<div class="stage">
<p>火盆里柏木噼啪一响。火焰跳了一下。</p>
<p>VICO 把烟管放在桌沿,<em>抬眼</em>。</p>
<p>第一幕开始了。</p>
</div>
</section>
<!-- ===========================================================
ACT I —— VICO
=========================================================== -->
<article class="act" id="act1">
<header class="act-head">
<div class="act-no">ACT I · 第一幕</div>
<div class="act-time">初更 · 火光初起</div>
<h3>與 <em>VICO</em> 對坐</h3>
<div class="act-en">On the First Mouth That Said "Dragon"</div>
<div class="act-tag">起源 · 谁第一个把雷叫做龙?</div>
</header>
<div class="line vico"><div class="who">VICO<em>維柯</em></div>
<div class="said">
<p>朋友。你是从八千年后来的,对吗。我闻到你身上有一种特别的气味——电的气味,金属的气味。但你来这里,是为了一件我比你早三百年就开始追问的事。</p>
<p>你想知道——那一天,最早把雷叫做"龙"的那一个人,到底在想什么。</p>
</div></div>
<div class="line you"><div class="who">YOU<em>你</em></div>
<div class="said">
<p>是。我读你的《新科学》。你说人类不是先有概念再有形象的——是先有形象,再才有概念。</p>
<p>但我不确定我懂这句话。<em>形象</em>不需要先理解才有吗?</p>
</div></div>
<div class="line vico"><div class="who">VICO<em>維柯</em></div>
<div class="said">
<p>哈!这就是你们启蒙后的人最难绕过的弯。你们认为"理解"是<em>先</em>的,"形象"是"理解之后的装饰"——所以你们把神话当作糟糕的物理学,把诗当作糟糕的散文。</p>
<p>但请你想象——你站在公元前八千年的某条河边。你没有"气压"这个词。你没有"放电"这个词。你没有"概率云"。你<em>什么都没有</em>。你只有你的眼睛,和雷在头顶炸开时身体的反应。</p>
<p>这时候,唯一能让你把这件事"<em>握在手里</em>"的,不是概念——你没有概念。是<strong>形象</strong>。一个巨大的、会咆哮的、会发光的、活的东西在天上。</p>
<p>这不是"错觉"。这是<em>认知本身的初始形态</em>。</p>
</div></div>
<div class="line you"><div class="who">YOU<em>你</em></div>
<div class="said">
<p>但是——这样说有一个问题。如果"形象"是认知的初始形态,那今天的人——我们已经有了概念,我们能用气象学解释雷——我们还需要那个形象吗?</p>
</div></div>
<div class="line vico"><div class="who">VICO<em>維柯</em></div>
<div class="said">
<p><em>(笑)</em>你以为你不需要了。</p>