-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path03-龙的死亡与重生-death-rebirth.html
More file actions
1558 lines (1386 loc) · 75.8 KB
/
Copy path03-龙的死亡与重生-death-rebirth.html
File metadata and controls
1558 lines (1386 loc) · 75.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-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>龍 · 死亡与重生|The Death and Rebirth of the Dragon</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 {
/* ---- night & ember palette ---- */
--void: #08060a; /* 最深处 */
--bg: #0d0a10; /* 主底 */
--bg-2: #15101a; /* 略亮一层 */
--bg-3: #1c1623; /* 卡片底 */
--bg-warm: #1a120c; /* 暖深底(火焰区) */
--ash: #8a7d70; /* 灰烬主色 */
--ash-cool: #5e5a5a;
--ash-deep: #3a352f;
--bone: #e8d5b8; /* 骨白:正文主色 */
--bone-soft: #b8ab95;
--bone-deep: #76695a;
--ember: #d97144; /* 余烬橙 */
--ember-bright: #f5a35b; /* 火光 */
--ember-deep: #8a3a1d; /* 暗火 */
--gold: #c9a961; /* 金 */
--gold-bright: #f3c969;
--gold-deep: #8a7440;
--crimson: #8b2c2c;
--crimson-dim: #4a1818; /* 死亡暗红 */
--indigo: #2f2a4a; /* 夜的紫 */
--jade: #466b5a; /* 重生青 */
--line: rgba(201,169,97,0.18);
--line-soft: rgba(232,213,184,0.08);
--line-ember: rgba(217,113,68,0.22);
/* ---- typography ---- */
--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;
--measure: 38rem;
--gutter: clamp(1.5rem, 5vw, 4rem);
}
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
background: var(--bg);
color: var(--bone);
font-family: var(--f-cn);
font-weight: 300;
line-height: 1.85;
letter-spacing: .01em;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
/* ===== 全局氛围层:余烬颗粒 + 烟 ===== */
body::before {
content: '';
position: fixed; inset: 0;
background:
radial-gradient(ellipse 60% 80% at 20% 0%, rgba(217,113,68,0.10), transparent 60%),
radial-gradient(ellipse 80% 80% at 80% 100%, rgba(47,42,74,0.30), transparent 60%),
radial-gradient(ellipse 100% 60% at 50% 50%, rgba(139,44,44,0.06), transparent 70%);
pointer-events: none;
z-index: 1;
}
body::after {
content: '';
position: fixed; inset: 0;
background-image:
repeating-linear-gradient(
45deg,
rgba(232,213,184,0.015) 0,
rgba(232,213,184,0.015) 1px,
transparent 1px,
transparent 6px
);
pointer-events: none;
z-index: 2;
mix-blend-mode: overlay;
}
/* ===== 余烬粒子层 ===== */
.embers {
position: fixed; inset: 0;
pointer-events: none;
z-index: 3;
overflow: hidden;
}
.ember-dot {
position: absolute;
width: 2px; height: 2px;
background: var(--ember-bright);
border-radius: 50%;
opacity: 0;
box-shadow: 0 0 6px var(--ember-bright), 0 0 12px var(--ember);
animation: rise-ember 11s ease-in infinite;
}
@keyframes rise-ember {
0% { transform: translateY(0) translateX(0) scale(.6); opacity: 0; }
10% { opacity: .9; }
60% { opacity: .7; }
100% { transform: translateY(-110vh) translateX(40px) scale(.2); opacity: 0; }
}
/* ===== 链接 ===== */
a { color: var(--ember-bright); text-decoration: none; border-bottom: 1px dashed rgba(245,163,91,0.35); transition: color .3s, border-color .3s; }
a:hover { color: var(--bone); border-bottom-color: var(--bone); }
img, svg { display: block; max-width: 100%; }
/* ============================================================
侧边索引
============================================================ */
.side-index {
position: fixed;
left: 1.4rem; top: 50%;
transform: translateY(-50%);
z-index: 50;
display: flex; flex-direction: column; gap: .8rem;
padding: 1.4rem .8rem;
font-family: var(--f-num);
font-size: .72rem; letter-spacing: .18em;
color: var(--bone-deep);
}
.side-index .vert-label {
font-family: var(--f-cn);
font-size: .7rem;
color: var(--ember);
letter-spacing: .4em;
padding-bottom: .6rem;
margin-bottom: .4rem;
border-bottom: 1px solid var(--line-ember);
text-align: center;
}
.side-index a {
color: var(--bone-deep);
border: none;
transition: color .3s, transform .3s;
text-align: center;
}
.side-index a:hover, .side-index a.active {
color: var(--ember-bright);
transform: translateX(2px);
}
@media (max-width: 980px) { .side-index { display: none; } }
/* 右上角铭文 */
.top-mark {
position: fixed;
top: 1.4rem; right: 1.6rem;
z-index: 50;
display: flex; align-items: center; gap: .8rem;
font-family: var(--f-num);
font-size: .65rem; letter-spacing: .32em;
color: var(--bone-deep);
}
.top-mark .seal {
width: 1.7rem; height: 1.7rem;
background: var(--crimson);
color: var(--bone);
display: grid; place-items: center;
font-family: var(--f-cn-brush);
font-size: 1rem;
box-shadow: 0 0 0 1px var(--ember-deep) inset,
0 0 14px rgba(217,113,68,0.35);
}
.top-mark .nav-links {
display: flex; gap: 1rem;
font-family: var(--f-cn);
font-size: .72rem;
letter-spacing: .25em;
}
.top-mark .nav-links a {
color: var(--bone-deep);
border: none;
}
.top-mark .nav-links a:hover { color: var(--ember-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% 90% at 50% 100%, rgba(139,44,44,0.18), transparent 70%),
radial-gradient(ellipse 60% 80% at 50% 0%, rgba(47,42,74,0.40), transparent 70%);
border-bottom: 1px solid var(--line-ember);
}
.hero-bg-char {
position: absolute;
left: 50%; top: 52%;
transform: translate(-50%, -50%);
font-family: var(--f-cn-brush);
font-size: clamp(28rem, 60vw, 56rem);
line-height: .85;
color: transparent;
background: linear-gradient(180deg,
rgba(245,163,91,0.18) 0%,
rgba(217,113,68,0.14) 40%,
rgba(139,44,44,0.10) 60%,
rgba(60,40,30,0.04) 100%);
-webkit-background-clip: text;
background-clip: text;
pointer-events: none;
user-select: none;
z-index: -1;
filter: blur(.6px);
animation: dying 9s ease-in-out infinite;
}
@keyframes dying {
0%, 100% { opacity: .95; filter: blur(.6px); }
35% { opacity: .42; filter: blur(2.4px); }
70% { opacity: .85; filter: blur(.9px); }
}
.hero-tag {
font-family: var(--f-num);
font-size: .78rem;
letter-spacing: .45em;
color: var(--ember);
margin-bottom: 2.4rem;
display: flex; align-items: center; gap: 1rem;
opacity: 0; animation: rise 1s .15s ease-out forwards;
}
.hero-tag::before {
content: ''; display: block;
width: 3.5rem; height: 1px;
background: linear-gradient(90deg, transparent, var(--ember));
}
.hero h1 {
font-family: var(--f-cn-brush);
font-weight: 400;
font-size: clamp(4.8rem, 16vw, 14rem);
line-height: .92;
margin: 0 0 .15em;
color: var(--bone);
letter-spacing: -.02em;
text-shadow: 0 0 40px rgba(217,113,68,0.35),
0 0 80px rgba(139,44,44,0.20);
opacity: 0;
animation: rise 1.2s .4s ease-out forwards;
}
.hero-sub-cn {
font-family: var(--f-cn);
font-size: clamp(1.4rem, 2.6vw, 2.2rem);
font-weight: 400;
color: var(--ember-bright);
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.45rem, 2.6vw, 2.4rem);
letter-spacing: .04em;
color: var(--bone-soft);
margin: 0 0 3rem;
max-width: 38rem;
line-height: 1.3;
opacity: 0; animation: rise 1.2s 1s ease-out forwards;
}
.hero-title-en em { color: var(--ember); font-style: italic; }
.hero-meta {
display: flex; gap: 3rem;
font-family: var(--f-num);
font-size: .7rem; letter-spacing: .3em;
color: var(--bone-deep);
margin-top: 3.5rem;
flex-wrap: wrap;
opacity: 0; animation: rise 1.2s 1.3s ease-out forwards;
}
.hero-meta div { display: flex; flex-direction: column; gap: .3rem; }
.hero-meta strong { color: var(--ember); 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(--bone-deep);
display: flex; align-items: center; gap: .6rem;
opacity: 0; animation: rise 1s 1.6s ease-out forwards;
}
.scroll-cue::after {
content: ''; display: block; width: 1px; height: 2.2rem;
background: linear-gradient(180deg, var(--ember), 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); }
}
/* ============================================================
PROLOGUE
============================================================ */
section { position: relative; z-index: 5; }
.prologue {
padding: 9rem var(--gutter) 6rem;
max-width: 64rem;
margin: 0 auto;
position: relative;
}
.prologue::before {
content: 'PROLOGUE · 序';
position: absolute;
top: 5.5rem; left: var(--gutter);
font-family: var(--f-num);
font-size: .7rem; letter-spacing: .4em;
color: var(--ember);
}
.prologue-cn-label {
font-family: var(--f-cn);
font-size: .85rem; letter-spacing: .4em;
color: var(--crimson);
margin-bottom: 1.4rem;
display: flex; align-items: center; gap: .8rem;
}
.prologue-cn-label::after {
content: ''; flex: 1; max-width: 6rem; height: 1px;
background: linear-gradient(90deg, var(--crimson), transparent);
}
.prologue h2 {
font-family: var(--f-cn);
font-weight: 300;
font-size: clamp(2.2rem, 4.3vw, 3.6rem);
line-height: 1.3;
margin: .4em 0 1.5em;
color: var(--bone);
letter-spacing: .02em;
max-width: 32em;
}
.prologue h2 em {
font-style: normal;
color: var(--ember-bright);
font-family: var(--f-cn-brush);
font-size: 1.2em;
}
.prologue-body {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
margin-top: 3rem;
}
.prologue-body p {
font-size: 1.05rem;
color: var(--bone);
margin: 0 0 1.3em;
}
.prologue-body p:first-child::first-letter {
font-family: var(--f-cn-brush);
font-size: 4.2em;
float: left;
line-height: .9;
padding: .1em .15em 0 0;
color: var(--ember-bright);
}
@media (max-width: 760px) {
.prologue-body { grid-template-columns: 1fr; gap: 1rem; }
}
/* ============================================================
ACT divider —— 三幕剧分隔
============================================================ */
.act-divider {
text-align: center;
padding: 8rem 1.5rem 5rem;
position: relative;
background:
radial-gradient(ellipse at center, rgba(217,113,68,0.10), transparent 60%);
}
.act-divider .roman {
font-family: var(--f-num);
font-size: clamp(4rem, 9vw, 7rem);
font-weight: 500;
color: var(--ember);
letter-spacing: .1em;
line-height: 1;
text-shadow: 0 0 30px rgba(217,113,68,0.4);
}
.act-divider .act-cn {
font-family: var(--f-cn-brush);
font-size: clamp(2rem, 3.5vw, 3rem);
color: var(--bone);
margin-top: 1rem;
letter-spacing: .3em;
}
.act-divider .act-en {
font-family: var(--f-en-disp);
font-style: italic;
font-size: clamp(1.1rem, 1.5vw, 1.4rem);
color: var(--bone-soft);
margin-top: 1rem;
letter-spacing: .04em;
max-width: 30rem;
margin-left: auto;
margin-right: auto;
}
.act-divider .act-line {
width: 80px; height: 1px;
background: linear-gradient(90deg, transparent, var(--ember), transparent);
margin: 2rem auto;
}
/* ============================================================
CHAPTER
============================================================ */
.chapter {
display: grid;
grid-template-columns: 1fr 2.4fr;
gap: 4rem;
max-width: 78rem;
margin: 0 auto;
padding: 6rem var(--gutter);
position: relative;
scroll-margin-top: 4rem;
}
.chapter-head {
position: sticky;
top: 5rem;
align-self: start;
display: flex; flex-direction: column; gap: 1rem;
}
.ch-numeral {
font-family: var(--f-num);
font-size: 5rem; font-weight: 500;
color: var(--ember);
line-height: 1;
letter-spacing: .02em;
text-shadow: 0 0 20px rgba(217,113,68,0.35);
}
.ch-numeral-cn {
font-family: var(--f-cn);
font-size: 1rem;
color: var(--bone-deep);
letter-spacing: .45em;
margin-top: -.4rem;
}
.ch-title-cn {
font-family: var(--f-cn);
font-weight: 500;
font-size: 2.5rem;
color: var(--bone);
margin: 1.5rem 0 .1em;
letter-spacing: .06em;
}
.ch-title-en {
font-family: var(--f-en-disp);
font-style: italic;
font-weight: 400;
font-size: 1.25rem;
color: var(--ember);
margin: 0;
letter-spacing: .04em;
}
.ch-tagline {
font-family: var(--f-cn);
font-weight: 300;
font-size: .95rem;
color: var(--bone-soft);
margin: 1rem 0 0;
padding-top: 1rem;
border-top: 1px solid var(--line-ember);
max-width: 14rem;
line-height: 1.6;
}
.chapter-body {
font-size: 1.05rem;
color: var(--bone);
}
.chapter-body > *:first-child { margin-top: 0; }
.chapter-body p { margin: 0 0 1.4em; }
.chapter-body p strong { color: var(--ember-bright); font-weight: 500; }
.chapter-body p em { color: var(--gold-bright); font-style: normal; padding: 0 .1em; }
.chapter-body p.lede {
font-family: var(--f-cn);
font-size: 1.2rem;
line-height: 1.85;
color: var(--bone);
font-weight: 400;
margin-bottom: 2em;
}
.chapter-body .dropcap {
font-family: var(--f-cn-brush);
float: left;
font-size: 5em;
line-height: .85;
padding: .05em .15em 0 0;
color: var(--ember-bright);
font-weight: 400;
}
/* ===== lists ===== */
.chapter-body ul.classic {
list-style: none;
padding: 0; margin: 1.5em 0;
border-left: 1px solid var(--line-ember);
}
.chapter-body ul.classic li {
padding: .55em 0 .55em 1.5em;
position: relative;
color: var(--bone);
}
.chapter-body ul.classic li::before {
content: ''; position: absolute;
left: -3.5px; top: 1.25em;
width: 6px; height: 6px;
background: var(--ember);
border-radius: 50%;
box-shadow: 0 0 8px var(--ember);
}
.chapter-body ul.classic li b {
color: var(--ember-bright);
font-family: var(--f-num);
font-weight: 500;
letter-spacing: .1em;
font-size: .85em;
display: inline-block;
min-width: 6rem;
}
/* ===== pullquote ===== */
.pullquote {
margin: 2.5em 0;
padding: 1.5em 0 1.5em 2em;
border-left: 3px solid var(--ember);
background: linear-gradient(90deg, rgba(217,113,68,0.07), transparent 80%);
font-family: var(--f-cn);
font-weight: 400;
font-size: 1.35rem;
line-height: 1.75;
color: var(--bone);
letter-spacing: .04em;
position: relative;
}
.pullquote cite {
display: block;
margin-top: 1em;
font-family: var(--f-en-disp);
font-style: italic;
font-size: .95rem;
color: var(--ember);
letter-spacing: .05em;
}
/* ===== note ===== */
.note {
display: block;
margin: 1.8em 0;
padding: 1.2em 1.4em;
background: rgba(217,113,68,0.04);
border: 1px solid var(--line-ember);
border-left: 3px solid var(--gold);
font-size: .94rem;
color: var(--bone-soft);
font-family: var(--f-cn);
}
.note .note-label {
display: inline-block;
font-family: var(--f-num);
font-size: .62rem; letter-spacing: .35em;
color: var(--gold-bright);
margin-right: .8em;
padding-right: .8em;
border-right: 1px solid var(--line-ember);
}
/* ===== data row ===== */
.data-row {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
gap: 1.5rem;
margin: 2.2em 0;
padding: 1.5em 0;
border-top: 1px solid var(--line-ember);
border-bottom: 1px solid var(--line-ember);
}
.data-row .cell { display: flex; flex-direction: column; }
.data-row .cell strong {
font-family: var(--f-num);
font-size: 1.8rem;
color: var(--ember-bright);
font-weight: 500;
line-height: 1;
margin-bottom: .4em;
}
.data-row .cell span {
font-size: .85rem;
color: var(--bone-soft);
letter-spacing: .04em;
}
/* ===== compare table ===== */
.compare-table {
margin: 2.5em 0;
border-collapse: collapse;
width: 100%;
font-size: .95rem;
}
.compare-table th, .compare-table td {
padding: 1em 1.2em;
text-align: left;
vertical-align: top;
border-bottom: 1px solid var(--line-soft);
}
.compare-table th {
font-family: var(--f-num);
font-weight: 500;
font-size: .72rem;
letter-spacing: .3em;
color: var(--gold-bright);
text-transform: uppercase;
padding-bottom: .8em;
border-bottom: 1px solid var(--line);
}
.compare-table td.label {
color: var(--ember-bright);
font-weight: 500;
width: 9rem;
}
.compare-table tr:hover td { background: rgba(217,113,68,0.04); }
/* ===== two-col compare card ===== */
.two-col {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
margin: 2.5em 0;
}
.two-col .col {
padding: 1.6rem 1.8rem;
border: 1px solid var(--line-soft);
background: var(--bg-2);
border-radius: 3px;
}
.two-col .col.death {
border-color: var(--crimson-dim);
background: linear-gradient(180deg, rgba(74,24,24,0.18), var(--bg-2));
}
.two-col .col.life {
border-color: var(--ember);
background: linear-gradient(180deg, rgba(217,113,68,0.10), var(--bg-2));
}
.two-col .col h4 {
font-family: var(--f-cn);
font-weight: 500;
font-size: 1.1rem;
margin: 0 0 .8em;
letter-spacing: .1em;
}
.two-col .col.death h4 { color: var(--crimson); }
.two-col .col.life h4 { color: var(--ember-bright); }
.two-col .col p { margin: 0 0 .8em; color: var(--bone-soft); font-size: .96rem; }
@media (max-width: 720px) { .two-col { grid-template-columns: 1fr; } }
/* ===== chapter responsive ===== */
@media (max-width: 880px) {
.chapter { grid-template-columns: 1fr; gap: 2rem; }
.chapter-head { position: static; }
.ch-numeral { font-size: 3.6rem; }
.ch-title-cn { font-size: 2rem; }
}
/* ============================================================
INTERLUDE —— 三段引文性段落
============================================================ */
.interlude {
text-align: center;
padding: 7rem var(--gutter);
background:
radial-gradient(ellipse at center, rgba(47,42,74,0.30), transparent 60%);
position: relative;
}
.interlude::before, .interlude::after {
content: '◆';
display: block;
color: var(--ember-deep);
font-size: .8rem;
letter-spacing: 1rem;
margin: 0 auto 2.5rem;
opacity: .6;
}
.interlude::after { margin: 2.5rem auto 0; }
.interlude p {
font-family: var(--f-cn-script);
font-size: clamp(1.3rem, 2.3vw, 1.9rem);
color: var(--bone);
line-height: 2;
max-width: 36rem;
margin: 0 auto;
letter-spacing: .06em;
}
.interlude cite {
display: block;
margin-top: 2rem;
font-family: var(--f-en-disp);
font-style: italic;
font-size: .95rem;
color: var(--ember);
}
/* ============================================================
EPILOGUE
============================================================ */
.epilogue {
padding: 10rem var(--gutter) 7rem;
text-align: center;
position: relative;
background:
radial-gradient(ellipse at center top, rgba(217,113,68,0.18), transparent 55%),
radial-gradient(ellipse at center bottom, rgba(70,107,90,0.10), transparent 60%);
border-top: 1px solid var(--line-ember);
}
.epilogue .epi-mark {
display: inline-block;
font-family: var(--f-num);
font-size: .7rem; letter-spacing: .5em;
color: var(--ember);
margin-bottom: 1.4rem;
}
.epilogue h2 {
font-family: var(--f-cn);
font-weight: 300;
font-size: clamp(2rem, 4vw, 3.2rem);
color: var(--bone);
margin: 0 0 2em;
letter-spacing: .06em;
}
.epilogue h2 em {
font-family: var(--f-cn-brush);
font-style: normal;
color: var(--ember-bright);
font-size: 1.3em;
}
.epi-body {
max-width: 38rem;
margin: 0 auto;
font-size: 1.1rem;
color: var(--bone);
line-height: 2;
}
.epi-body p { margin: 0 0 1.3em; }
.epi-body p strong { color: var(--ember-bright); }
.epi-verse {
margin: 3em auto;
padding: 2em 0;
border-top: 1px solid var(--line-ember);
border-bottom: 1px solid var(--line-ember);
font-family: var(--f-cn-script);
font-size: 1.35rem;
color: var(--ember-bright);
line-height: 2.4;
letter-spacing: .08em;
}
.epi-final {
margin-top: 3em;
font-family: var(--f-cn-brush);
font-size: 2rem;
color: var(--ember-bright);
letter-spacing: .25em;
text-shadow: 0 0 24px rgba(245,163,91,0.5);
}
/* ouroboros 标志 */
.ouroboros {
width: 9rem; height: 9rem;
margin: 3rem auto 0;
opacity: .85;
}
/* ============================================================
COLOPHON
============================================================ */
.colophon {
padding: 3rem var(--gutter) 4rem;
border-top: 1px solid var(--line-soft);
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(--bone-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(--crimson);
display: grid; place-items: center;
color: var(--bone);
font-family: var(--f-cn-brush);
font-size: 1.1rem;
box-shadow: 0 0 12px rgba(217,113,68,0.4);
}
.colophon a { color: var(--bone-soft); border: none; }
.colophon a:hover { color: var(--ember-bright); }
/* ===== reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px);
transition: opacity 1.1s ease-out, transform 1.1s ease-out; }
.reveal.in { opacity: 1; transform: translateY(0); }
/* ===== small screens ===== */
@media (max-width: 600px) {
.chapter, .prologue, .act-divider, .interlude, .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; }
.top-mark .seal { width: 1.4rem; height: 1.4rem; font-size: .9rem; }
}
</style>
</head>
<body>
<!-- ===== 余烬粒子层 ===== -->
<div class="embers" aria-hidden="true" id="embers"></div>
<!-- ===== 侧边索引 ===== -->
<nav class="side-index" aria-label="目录">
<div class="vert-label">三<br>幕</div>
<a href="#prologue">序</a>
<a href="#act1">幕一</a>
<a href="#ch1">I</a>
<a href="#ch2">II</a>
<a href="#ch3">III</a>
<a href="#act2">幕二</a>
<a href="#ch4">IV</a>
<a href="#ch5">V</a>
<a href="#ch6">VI</a>
<a href="#act3">幕三</a>
<a href="#ch7">VII</a>
<a href="#ch8">VIII</a>
<a href="#ch9">IX</a>
<a href="#epilogue">終</a>
</nav>
<!-- ===== 右上角 ===== -->
<div class="top-mark">
<span>VOL. III · MMXXVI</span>
<div class="nav-links">
<a href="01-龙之百科-compendium.html">壹</a>
<a href="02-龙的意义-meaning.html">貳</a>
<a href="04-为什么人类一直需要龙-why-we-need-dragons.html">長文</a>
<a href="05-化龍-becoming.html">伍</a>
<a href="06-龍的對話錄-symposium.html">陸</a>
<a href="index.html">門</a>
</div>
<div class="seal">龍</div>
</div>
<!-- ===========================================================
HERO
=========================================================== -->
<header class="hero">
<div class="hero-bg-char" aria-hidden="true">龍</div>
<div class="hero-tag">VOLUME THREE · 卷叁 · 死亡与重生</div>
<h1>龍</h1>
<div class="hero-sub-cn">死亡与重生 · A Trilogy's Third Voice</div>
<p class="hero-title-en">
The <em>Death</em> & <em>Rebirth</em> of the Dragon —<br>
on what dies in the age of reason, capital and AI,<br>
and on the one dragon that does not.
</p>
<div class="hero-meta">
<div><span>VOLUME</span><strong>III / III</strong></div>
<div><span>ACTS</span><strong>3</strong></div>
<div><span>CHAPTERS</span><strong>9 + 序終</strong></div>
<div><span>EDITION</span><strong>MMXXVI · 05</strong></div>
</div>
<div class="scroll-cue">SCROLL / 入幕</div>
</header>
<!-- ===========================================================
PROLOGUE · 失踪的龙
=========================================================== -->
<section class="prologue" id="prologue">
<div class="prologue-cn-label">序章 · 失踪的龙</div>
<h2>有人说:龙早就死了。<br>问题是——<em>谁</em>说的,<em>哪一条</em>龙,又死在<em>谁</em>的手里?</h2>
<div class="prologue-body reveal">
<div>
<p>第一卷里我们追问"龙是什么",把世界上九种龙文化铺开比较,得出五个共同特征——阈限、变形、神秘、生灭并存、自我之镜。第二卷里我们专问中国龙的意义,让十一道学科之光照向同一条龙,得出"一龍,萬解"。</p>
<p>但有一件事我们一直没有正面回答——<strong>这条龙今天还活着吗</strong>?</p>
<p>在一个没人再求雨、没人再仰望星象、没人再相信"九五之尊"是宇宙合法性的时代,龙还能在哪里继续存在?</p>
</div>
<div>
<p>本卷的论题简单而锋利——龙在过去三百年里被反复杀死,又被反复复活。<em>它死于理性的剃刀、屠龙的政治寓言、迪士尼的甜腻笑容、本雅明的灵光衰落、Midjourney 无限增殖的图像</em>。</p>
<p>它又复活于<em>孩子选择和无牙仔做朋友的那一刻、宫崎骏笔下白龙记起自己名字的那一刻、Dragonkin 在键盘后宣称"我就是龙"的那一刻</em>。</p>
<p>而最深处那条龙——卷一末尾你已经认出来的那一条——它从未真正死过。它<strong>不能</strong>死,因为它的存在不需要外界允许。</p>
</div>
</div>
</section>
<!-- ===========================================================
ACT I —— 祛魅与死亡
=========================================================== -->
<section class="act-divider" id="act1">
<div class="roman">ACT I</div>
<div class="act-cn">祛魅 · 三种死法</div>
<div class="act-line"></div>
<div class="act-en">The Disenchantment — Three Ways a Dragon Dies in the Modern World.</div>
</section>
<!-- ===== Chapter I —— 韦伯与失踪的龙 ===== -->
<article class="chapter" id="ch1">
<header class="chapter-head reveal">
<div class="ch-numeral">I</div>
<div class="ch-numeral-cn">壹</div>
<h2 class="ch-title-cn">祛魅的世界</h2>
<h3 class="ch-title-en">Disenchantment, after Weber</h3>
<p class="ch-tagline">韦伯说现代世界"再也没有让人战栗的神秘力量"——龙正是第一批被驱逐的住客。</p>
</header>
<div class="chapter-body reveal">
<p class="lede"><span class="dropcap">一</span>八九五年,弗里德里希·席勒在《希腊的诸神》里哀叹:"众神已经离开。" 二十年后,马克斯·韦伯在慕尼黑的演讲《以学术为业》里把这件事说得更冷酷——他给它取了一个名字:<em>Entzauberung</em>,"祛魅"。</p>
<div class="pullquote">
我们时代的命运,是一个理性化、知识化,最重要的是"祛魅"了的时代。<br>
昔日由神秘的、不可计算的力量所支配之物——风、雷、雨、瘟疫与丰收——如今原则上皆可被计算所掌握。
<cite>— Max Weber《以学术为业》1917</cite>
</div>
<p>韦伯说的不是"神死了"——尼采那句话太大,太抽象。韦伯说的更具体:<strong>不是神不在了,是<em>人不再期待神在了</em></strong>。雷被气压差解释,丰收被氮肥解释,瘟疫被细菌解释。世界没有变小,但<em>它不再"凝视"我们</em>。</p>
<p>而龙——正是那个被凝视也被凝视回去的存在。它住在祛魅最先扫荡的那片地带:风、雨、水、雷、灾、福、命。<strong>祛魅每前进一步,龙的物理领地就退后一寸</strong>。汉代董仲舒立土龙求雨,是因为没有别的解释。今天我们看气象云图,没有人会想到那是龙的呼吸。</p>
<h4 style="font-family:var(--f-cn);color:var(--ember-bright);font-weight:500;margin:2em 0 .8em;letter-spacing:.1em;">三条祛魅的战线</h4>
<ul class="classic">
<li><b>METEOROLOGY</b>气象学解释了"司雨之龙"——龙王不再被需要,求雨仪式降级为节庆表演。</li>
<li><b>BIOLOGY</b>生物学穷尽了所有"鳞虫之长"——再没有为龙留下分类学的位置,《辞海》将"龙"写为"古代传说中的神异动物",前置"传说"二字即是判决书。</li>
<li><b>HISTORIOGRAPHY</b>历史学考据揭开了"真龙天子"叙事的政治装置——刘邦母亲所感的不是龙而是叙事,皇权的神圣性被还原为人类政治史的章节。</li>
</ul>
<p>注意:韦伯没说祛魅是<em>错的</em>,他说祛魅是我们的<em>命运</em>。这是一个清醒的判断——你可以惋惜它,但你无法回头。<strong>祛魅不是龙的一次失败,而是龙的"第一种死法"</strong>:它把龙从公共解释体系里驱逐出去,让它从"世界的语法"退化为"民俗的修辞"。</p>
<div class="note">
<span class="note-label">辨</span>
韦伯并不否认神秘体验在私人领域的合法性。他说的是——这些体验<em>无法再被公开化为知识</em>。"龙下了一场雨"如果还在你心里有意义,它只能在你心里有意义。这就是为什么本文卷一末尾你的命题如此关键:它把龙从公共解释空间救回到本体论空间。
</div>
<p>所以本卷的整个第一幕,将沿着祛魅的三条战线走下去——看龙是<em>怎么死的</em>,谁动的手,凶器是什么。这不是悼词,这是验尸报告。我们要弄清楚死了什么,才能知道留下了什么。</p>
</div>
</article>
<!-- ===== Chapter II —— 萨根的车库再访 ===== -->
<article class="chapter" id="ch2">
<header class="chapter-head reveal">
<div class="ch-numeral">II</div>
<div class="ch-numeral-cn">貳</div>
<h2 class="ch-title-cn">理性之刃</h2>
<h3 class="ch-title-en">Sagan's Garage Revisited</h3>
<p class="ch-tagline">第一种死法:可证伪性把龙关进了"无意义"的牢房。</p>
</header>
<div class="chapter-body reveal">
<p class="lede"><span class="dropcap">卡</span>尔·萨根没有用枪杀死龙。他用的是一句问句:<em>"和一条不存在的龙有什么区别?"</em></p>
<p>卷一里我们已经引过《魔鬼出没的世界》的那段对话——一条隐形、漂浮、喷无热之火、漆不沾身的龙住在我的车库。<strong>萨根的论点不是"龙不存在",而是"这种龙在认识论上和不存在等价"</strong>。这一刀切在卡尔·波普尔的"可证伪性"上,比直接否定更致命——它不否定,它<em>注销</em>。</p>