-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1142 lines (1080 loc) · 48.5 KB
/
Copy pathindex.html
File metadata and controls
1142 lines (1080 loc) · 48.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
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>诸子思想 · 华粹新学</title>
<link rel="stylesheet" href="assets/common.css">
<style>
/* 1. 封面 */
.hero {
background: linear-gradient(135deg, #2b2418 0%, #3a3025 50%, #4a3f30 100%);
color: var(--paper-light);
overflow: hidden;
}
.hero-inner {
max-width: 1200px; margin: 0 auto;
padding: 4rem 2rem;
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 3rem; align-items: center;
}
.hero-tag {
display: inline-block;
font-size: 0.82rem; letter-spacing: 0.25em;
color: var(--gold);
border: 1px solid rgba(184,137,58,0.5);
padding: 0.3rem 1rem; border-radius: 20px;
margin-bottom: 1.5rem;
}
.hero h1 {
font-family: "Noto Serif SC", serif;
font-size: 4rem; font-weight: 700;
letter-spacing: 0.15em;
margin-bottom: 0.3rem; line-height: 1.1;
}
.hero .hero-sub {
font-family: "Noto Serif SC", serif;
font-size: 1.2rem; color: #c9b896;
letter-spacing: 0.1em; margin-bottom: 1.5rem;
}
.hero-meta {
display: flex; flex-wrap: wrap; gap: 1.5rem;
margin-bottom: 2rem; font-size: 0.9rem; color: #b8a888;
}
.hero-meta .item { display: flex; gap: 0.4rem; }
.hero-meta .label { color: #8a7c68; }
.hero-tagline {
font-size: 1.05rem; line-height: 2; color: #d8cfc0;
max-width: 560px;
border-left: 3px solid var(--accent);
padding-left: 1.2rem;
}
.hero-visual { display: flex; justify-content: center; }
.hero-visual svg { max-width: 100%; height: auto; }
/* 2. 一句话定位 */
.positioning {
text-align: center;
padding: 3.5rem 2rem;
background: var(--paper-light);
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}
.positioning blockquote {
font-family: "Noto Serif SC", serif;
font-size: 1.5rem; line-height: 2.2;
color: var(--ink); max-width: 860px; margin: 0 auto;
}
.positioning blockquote .accent { color: var(--accent); }
.positioning .by {
margin-top: 1rem; font-size: 0.88rem; color: var(--ink-faint);
}
/* 3. 时代背景 四要素 */
.bg-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.2rem;
}
.bg-card {
background: var(--paper-card);
border: 1px solid var(--border);
border-radius: 10px;
padding: 1.5rem;
border-top: 3px solid var(--accent);
}
.bg-card .bg-icon {
font-size: 1.8rem; margin-bottom: 0.6rem;
}
.bg-card h4 {
font-family: "Noto Serif SC", serif;
font-size: 1.1rem; margin-bottom: 0.6rem;
}
.bg-card p {
font-size: 0.9rem; color: var(--ink-light); line-height: 1.85;
}
/* 4. 上古原典 */
.origin-banner {
background: linear-gradient(135deg, #3a3025 0%, #4a3f30 100%);
border-radius: 14px;
padding: 2.5rem;
color: var(--paper-light);
display: grid;
grid-template-columns: 1fr 2fr;
gap: 2.5rem;
align-items: center;
}
.origin-banner .ob-left h3 {
font-family: "Noto Serif SC", serif;
font-size: 1.6rem; margin-bottom: 0.5rem;
color: #f0d890;
}
.origin-banner .ob-left .ob-era {
font-size: 0.85rem; color: #b8a888;
letter-spacing: 0.15em; margin-bottom: 1rem;
}
.origin-banner .ob-left p {
font-size: 0.95rem; color: #d8cfc0; line-height: 1.9;
}
.ob-books {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
}
.ob-book {
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.12);
border-radius: 10px;
padding: 1.2rem;
text-align: center;
}
.ob-book .ob-name {
font-family: "Noto Serif SC", serif;
font-size: 1.3rem; font-weight: 700;
color: #f0d890; margin-bottom: 0.3rem;
}
.ob-book .ob-time {
font-size: 0.78rem; color: #b8a888;
letter-spacing: 0.1em; margin-bottom: 0.6rem;
}
.ob-book p {
font-size: 0.85rem; color: #c9b896; line-height: 1.7;
}
/* 5. 九家流派卡片 */
.school-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.2rem;
}
.school-card {
background: var(--paper-card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 1.6rem;
text-decoration: none; color: inherit;
transition: all 0.25s;
display: flex; flex-direction: column;
position: relative; overflow: hidden;
}
.school-card:hover {
border-color: var(--accent);
box-shadow: 0 8px 24px var(--shadow-hover);
transform: translateY(-3px);
}
.school-card.disabled {
opacity: 0.75; cursor: default;
}
.school-card.disabled:hover {
border-color: var(--border);
box-shadow: none; transform: none;
}
.school-head {
display: flex; align-items: center; gap: 0.8rem;
margin-bottom: 0.8rem;
}
.school-seal {
width: 52px; height: 52px;
background: var(--accent); color: #fff;
font-family: "Noto Serif SC", serif;
font-size: 1.5rem; font-weight: 700;
border-radius: 8px;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}
.school-seal.gold { background: var(--gold); }
.school-seal.ink { background: var(--ink-light); }
.school-head h4 {
font-family: "Noto Serif SC", serif;
font-size: 1.35rem;
}
.school-head .sch-era {
font-size: 0.78rem; color: var(--ink-faint);
letter-spacing: 0.08em;
}
.school-slogan {
font-family: "Noto Serif SC", serif;
font-size: 1.02rem; color: var(--accent);
margin-bottom: 0.8rem;
padding-bottom: 0.6rem;
border-bottom: 1px dashed var(--border);
}
.school-desc {
font-size: 0.9rem; color: var(--ink-light); line-height: 1.8;
margin-bottom: 1rem; flex-grow: 1;
}
.school-meta {
font-size: 0.82rem; color: var(--ink-faint);
margin-bottom: 0.7rem;
}
.school-meta strong { color: var(--ink-light); font-weight: 600; }
.school-status {
font-size: 0.8rem;
display: inline-flex; align-items: center; gap: 0.3rem;
align-self: flex-start;
padding: 0.2rem 0.7rem; border-radius: 12px;
}
.school-status.done {
color: #5a7a3a; background: #eef5e8;
}
.school-status.done::before {
content: ""; width: 6px; height: 6px; border-radius: 50%; background: #7a9a5a;
}
.school-status.soon {
color: var(--ink-faint); background: rgba(0,0,0,0.04);
}
.school-status.soon::before {
content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--border);
}
/* 经典著作书目 */
.biblio-wrap {
border: 1px solid var(--border);
border-radius: 10px;
overflow: hidden;
background: var(--paper-card);
}
.biblio-group {
border-bottom: 1px solid var(--border);
}
.biblio-group:last-child { border-bottom: none; }
.biblio-group-head {
display: flex;
align-items: center;
gap: 0.6rem;
padding: 0.8rem 1.5rem;
background: rgba(178,58,46,0.05);
cursor: pointer;
user-select: none;
}
.biblio-group-head:hover { background: rgba(178,58,46,0.09); }
.biblio-group-head .bg-seal {
width: 30px; height: 30px;
background: var(--accent); color: #fff;
font-family: "Noto Serif SC", serif;
font-size: 0.95rem; font-weight: 700;
border-radius: 5px;
display: inline-flex; align-items: center; justify-content: center;
flex-shrink: 0;
}
.biblio-group-head .bg-seal.gold { background: var(--gold); }
.biblio-group-head .bg-seal.ink { background: var(--ink-light); }
.biblio-group-head .bg-name {
font-family: "Noto Serif SC", serif;
font-size: 1.05rem; font-weight: 700;
}
.biblio-group-head .bg-count {
font-size: 0.8rem; color: var(--ink-faint);
margin-left: auto;
}
.biblio-group-head .bg-arrow {
font-size: 0.75rem; color: var(--ink-faint);
transition: transform 0.2s;
}
.biblio-group.collapsed .bg-arrow { transform: rotate(-90deg); }
.biblio-group-body {
display: grid;
grid-template-columns: 1fr;
}
.biblio-group.collapsed .biblio-group-body { display: none; }
.biblio-row {
display: grid;
grid-template-columns: 1.4fr 1fr 1.2fr;
gap: 1rem;
padding: 0.7rem 1.5rem 0.7rem 3.2rem;
border-top: 1px dashed var(--border);
align-items: baseline;
font-size: 0.92rem;
}
.biblio-row:hover { background: rgba(253,242,200,0.3); }
.biblio-row .b-name {
font-family: "Noto Serif SC", serif;
font-weight: 700; color: var(--ink);
}
.biblio-row .b-name a {
color: var(--accent);
text-decoration: none;
border-bottom: 1px dotted var(--accent-light);
}
.biblio-row .b-name a:hover { color: var(--accent-light); }
.biblio-row .b-author { color: var(--ink-light); }
.biblio-row .b-era { color: var(--ink-faint); font-size: 0.85rem; }
/* 6. 核心议题对比表 */
.debate-table-wrap {
overflow-x: auto;
border: 1px solid var(--border);
border-radius: 10px;
background: var(--paper-card);
}
.debate-table {
width: 100%; border-collapse: collapse;
font-size: 0.9rem; min-width: 720px;
}
.debate-table th, .debate-table td {
padding: 0.9rem 1rem;
text-align: left;
border-bottom: 1px solid var(--border);
vertical-align: top;
}
.debate-table th {
background: rgba(178,58,46,0.06);
font-family: "Noto Serif SC", serif;
font-weight: 700;
}
.debate-table td:first-child {
font-weight: 700; font-family: "Noto Serif SC", serif;
color: var(--accent); white-space: nowrap;
background: rgba(178,58,46,0.02);
}
.debate-table tr:last-child td { border-bottom: none; }
.debate-table tr:hover td { background: rgba(253,242,200,0.3); }
.debate-table tr:hover td:first-child { background: rgba(178,58,46,0.06); }
/* 7. 百家关系图 */
.relation-diagram {
background: var(--paper-card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 2rem;
}
.relation-diagram svg { width: 100%; height: auto; display: block; }
.relation-legend {
display: flex; gap: 1.5rem; flex-wrap: wrap;
margin-top: 1rem; font-size: 0.85rem; color: var(--ink-light);
justify-content: center;
}
.relation-legend span {
display: inline-flex; align-items: center; gap: 0.4rem;
}
.relation-legend .line {
width: 28px; height: 2px;
}
/* 8. 历史影响 */
.impact-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.2rem;
}
.impact-card {
background: var(--paper-card);
border: 1px solid var(--border);
border-radius: 10px;
padding: 1.5rem;
}
.impact-card h4 {
font-family: "Noto Serif SC", serif;
font-size: 1.1rem; margin-bottom: 0.6rem;
color: var(--accent);
}
.impact-card p {
font-size: 0.95rem; color: var(--ink-light); line-height: 1.9;
}
/* 9. 精华糟粕 */
.perspective-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.2rem;
}
.persp-card {
border-radius: 10px; padding: 1.5rem; border: 1px solid;
}
.persp-card.good { background: #f0f5ec; border-color: #8bab6a; }
.persp-card.discuss { background: #fdf6e3; border-color: #d4a843; }
.persp-card.warn { background: #f7ecea; border-color: #c2756a; }
.persp-label {
font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em;
margin-bottom: 0.6rem;
}
.persp-card.good .persp-label { color: #5a7a3a; }
.persp-card.discuss .persp-label { color: #9a7520; }
.persp-card.warn .persp-label { color: #9a4a3a; }
.persp-card ul { padding-left: 1.1rem; }
.persp-card li {
font-size: 0.92rem; line-height: 1.9; color: var(--ink-light);
margin-bottom: 0.3rem;
}
/* 10. 延伸 */
.further-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
}
.further-card {
background: var(--paper-card);
border: 1px solid var(--border);
border-radius: 8px;
padding: 1.2rem 1.5rem;
text-decoration: none; color: inherit;
transition: all 0.2s;
}
.further-card:hover {
border-color: var(--accent);
box-shadow: 0 4px 12px var(--shadow);
transform: translateY(-2px);
}
.fc-tag {
font-size: 0.78rem; color: var(--accent);
letter-spacing: 0.1em; margin-bottom: 0.4rem;
}
.fc-title {
font-family: "Noto Serif SC", serif;
font-size: 1rem; margin-bottom: 0.3rem;
}
.fc-desc { font-size: 0.85rem; color: var(--ink-faint); line-height: 1.6; }
@media (max-width: 900px) {
.hero-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
.hero h1 { font-size: 2.8rem; }
.bg-grid, .school-grid, .perspective-grid,
.further-grid, .impact-grid, .ob-books { grid-template-columns: 1fr; }
.origin-banner { grid-template-columns: 1fr; padding: 1.8rem; }
.positioning blockquote { font-size: 1.15rem; }
}
</style>
</head>
<body>
<div id="site-header" data-active="zongheng"></div>
<!-- 1. 封面 -->
<header class="hero">
<div class="hero-inner">
<div class="hero-text">
<span class="hero-tag">中 国 思 想 的 轴 心 时 代</span>
<h1>诸 子 思 想</h1>
<p class="hero-sub">百家争鸣 · 九流竞秀</p>
<div class="hero-meta">
<div class="item"><span class="label">时代</span><span>春秋晚期至西汉</span></div>
<div class="item"><span class="label">跨度</span><span>约四百年</span></div>
<div class="item"><span class="label">主要流派</span><span>九家</span></div>
<div class="item"><span class="label">核心经典</span><span>数十部</span></div>
</div>
<p class="hero-tagline">
那是一个旧秩序崩塌、新秩序尚未建立的时代。面对同样的乱世,有人选择仁义,有人选择无为,有人选择法度。他们的争论,奠定了此后两千多年中国思想的基本格局。
</p>
</div>
<div class="hero-visual">
<!-- 主视觉:竹简与百家意象 -->
<svg viewBox="0 0 360 360" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="glow" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#f0d890" stop-opacity="0.3"/>
<stop offset="100%" stop-color="#f0d890" stop-opacity="0"/>
</radialGradient>
</defs>
<circle cx="180" cy="180" r="160" fill="url(#glow)"/>
<!-- 中心圆 -->
<circle cx="180" cy="180" r="46" fill="#2b2418" stroke="#b8893a" stroke-width="1.5"/>
<text x="180" y="175" font-size="14" fill="#f0d890" text-anchor="middle" font-family="serif" font-weight="700">百家</text>
<text x="180" y="195" font-size="14" fill="#f0d890" text-anchor="middle" font-family="serif" font-weight="700">争鸣</text>
<!-- 九个流派节点环绕 -->
<g font-family="serif" font-weight="700" font-size="16" text-anchor="middle">
<!-- 上 -->
<circle cx="180" cy="70" r="24" fill="#b23a2e"/>
<text x="180" y="76" fill="#fff">儒</text>
<!-- 右上 -->
<circle cx="275" cy="105" r="22" fill="#b23a2e" opacity="0.9"/>
<text x="275" y="111" fill="#fff" font-size="14">道</text>
<!-- 右 -->
<circle cx="310" cy="180" r="22" fill="#b8893a"/>
<text x="310" y="186" fill="#fff" font-size="14">法</text>
<!-- 右下 -->
<circle cx="275" cy="255" r="22" fill="#b8893a" opacity="0.9"/>
<text x="275" y="261" fill="#fff" font-size="14">墨</text>
<!-- 下 -->
<circle cx="180" cy="290" r="22" fill="#5a4d3a"/>
<text x="180" y="296" fill="#fff" font-size="14">名</text>
<!-- 左下 -->
<circle cx="85" cy="255" r="22" fill="#5a4d3a" opacity="0.9"/>
<text x="85" y="261" fill="#fff" font-size="14">兵</text>
<!-- 左 -->
<circle cx="50" cy="180" r="22" fill="#5a4d3a" opacity="0.9"/>
<text x="50" y="186" fill="#fff" font-size="14">纵横</text>
<!-- 左上 -->
<circle cx="85" cy="105" r="22" fill="#5a4d3a" opacity="0.7"/>
<text x="85" y="111" fill="#fff" font-size="13">杂</text>
<!-- 顶部额外 -->
<circle cx="180" cy="70" r="0" fill="none"/>
</g>
<!-- 连线 -->
<g stroke="#8a7c68" stroke-width="0.8" opacity="0.4" fill="none">
<line x1="180" y1="94" x2="180" y2="134"/>
<line x1="258" y1="122" x2="215" y2="152"/>
<line x1="288" y1="180" x2="226" y2="180"/>
<line x1="258" y1="238" x2="215" y2="208"/>
<line x1="180" y1="266" x2="180" y2="226"/>
<line x1="102" y1="238" x2="145" y2="208"/>
<line x1="72" y1="180" x2="134" y2="180"/>
<line x1="102" y1="122" x2="145" y2="152"/>
</g>
<!-- 阴阳家单独放上方偏右 -->
<circle cx="310" cy="70" r="18" fill="#5a4d3a" opacity="0.6"/>
<text x="310" y="76" fill="#fff" font-size="11" text-anchor="middle" font-family="serif" font-weight="700">阴阳</text>
</svg>
</div>
</div>
</header>
<!-- 2. 一句话定位 -->
<section class="positioning">
<blockquote>
世界上有几个轴心时代,<br>
中国的轴心时代,就是<span class="accent">春秋战国</span>。<br>
此后两千多年,中国人一直在<span class="accent">回答他们提出的问题</span>。
</blockquote>
<p class="by">—— 理解诸子,是理解中国文化的起点</p>
</section>
<!-- 3. 时代背景 -->
<section class="section">
<div class="container">
<h2 class="section-title"><span class="num">1</span>百家争鸣的时代背景</h2>
<p class="section-sub">为什么偏偏是春秋战国,同时涌现了这么多伟大的思想家?</p>
<div class="bg-grid">
<div class="bg-card">
<div class="bg-icon">🏛️</div>
<h4>礼崩乐坏</h4>
<p>周王室衰微,封建秩序瓦解,诸侯僭越,大夫专权。旧有的天命观和礼乐制度不再能解释现实,人们不得不重新寻找秩序的根基。</p>
</div>
<div class="bg-card">
<div class="bg-icon">🎓</div>
<h4>士阶层崛起</h4>
<p>贵族衰落与平民上升之间,出现了一个以知识、谋略和游说为业的"士"阶层。他们有思想、有抱负,是诸子百家的社会基础。</p>
</div>
<div class="bg-card">
<div class="bg-icon">⚔️</div>
<h4>列国竞争</h4>
<p>各国国君为了富国强兵,争相招揽人才。"此处不留爷,自有留爷处",思想者可以周游列国,言论空间相对宽松。</p>
</div>
<div class="bg-card">
<div class="bg-icon">📜</div>
<h4>私学兴起</h4>
<p>孔子开创私人讲学之风,知识从贵族垄断走向民间。不同师承发展出不同学说,师徒相授、门人相传,形成了流派。</p>
</div>
</div>
</div>
</section>
<!-- 4. 上古原典:百家之源 -->
<section class="section">
<div class="container">
<h2 class="section-title"><span class="num">2</span>上古原典:百家共同的源头</h2>
<p class="section-sub">诸子不是凭空出现的。在他们之前,有三部书构成了整个时代共享的思想资源</p>
<div class="origin-banner">
<div class="ob-left">
<div class="ob-era">上 古 原 典 时 期</div>
<h3>百家之源</h3>
<p>《周易》古经、《尚书》《诗经》成书于孔子之前,是周代贵族教育的基础文本。诸子百家都在这些文献的话语场中展开思考——有人继承,有人改造,有人批判,但没有人能完全绕开它们。</p>
</div>
<div class="ob-books">
<div class="ob-book">
<div class="ob-name">周易</div>
<div class="ob-time">西周初年 · 古经</div>
<p>阴阳辩证、变化思维,为道家和兵家提供了深层思想框架</p>
</div>
<div class="ob-book">
<div class="ob-name">尚书</div>
<div class="ob-time">虞夏商周文献</div>
<p>天命、德治、治国之道,是儒家、墨家、法家共同征引的政治文本</p>
</div>
<div class="ob-book">
<div class="ob-name">诗经</div>
<div class="ob-time">西周至春秋中期</div>
<p>诗歌、外交辞令和德行修养的基础,春秋时广泛用于政治和社交</p>
</div>
</div>
</div>
</div>
</section>
<!-- 5. 九家流派 -->
<section class="section">
<div class="container">
<h2 class="section-title"><span class="num">3</span>九家流派</h2>
<p class="section-sub">按历史影响力排列,已完成的流派可点击进入</p>
<div class="school-grid">
<a class="school-card" href="#">
<div class="school-head">
<div class="school-seal">儒</div>
<div>
<h4>儒家</h4>
<div class="sch-era">春秋晚期创立</div>
</div>
</div>
<div class="school-slogan">仁义礼智,修齐治平</div>
<p class="school-desc">由孔子创立,孟子、荀子发展。主张仁政德治、礼乐教化,对中国文化影响最深远。汉代以后成为官方意识形态。</p>
<div class="school-meta"><strong>代表人物:</strong>孔子、孟子、荀子</div>
<div class="school-meta"><strong>核心经典:</strong>《论语》《孟子》《荀子》</div>
<div class="school-status soon">即将推出</div>
</a>
<a class="school-card" href="daoism-index.html">
<div class="school-head">
<div class="school-seal">道</div>
<div>
<h4>道家</h4>
<div class="sch-era">春秋晚期创立</div>
</div>
</div>
<div class="school-slogan">道法自然,无为而治</div>
<p class="school-desc">老子奠基,庄子飞跃。追求个体精神自由,主张顺应自然、不妄为,与儒家共同构成中国思想的两大主干。</p>
<div class="school-meta"><strong>代表人物:</strong>老子、庄子</div>
<div class="school-meta"><strong>核心经典:</strong>《道德经》《庄子》《列子》《淮南子》</div>
<div class="school-status done">已完成</div>
</a>
<a class="school-card disabled">
<div class="school-head">
<div class="school-seal gold">法</div>
<div>
<h4>法家</h4>
<div class="sch-era">战国中期成熟</div>
</div>
</div>
<div class="school-slogan">以法治国,富国强兵</div>
<p class="school-desc">商鞅重法,申不害重术,慎到重势,韩非集大成。主张严刑峻法、耕战立国,为秦统一提供了理论基础。</p>
<div class="school-meta"><strong>代表人物:</strong>商鞅、韩非、李斯</div>
<div class="school-meta"><strong>核心经典:</strong>《韩非子》《商君书》《管子》</div>
<div class="school-status soon">即将推出</div>
</a>
<a class="school-card disabled">
<div class="school-head">
<div class="school-seal gold">墨</div>
<div>
<h4>墨家</h4>
<div class="sch-era">战国初期盛行</div>
</div>
</div>
<div class="school-slogan">兼爱非攻,尚贤尚同</div>
<p class="school-desc">墨子创立,战国时期与儒家并称"显学"。代表下层劳动者立场,主张兼爱、非攻、节用,在逻辑学和科技上也有贡献。</p>
<div class="school-meta"><strong>代表人物:</strong>墨翟</div>
<div class="school-meta"><strong>核心经典:</strong>《墨子》</div>
<div class="school-status soon">即将推出</div>
</a>
<a class="school-card disabled">
<div class="school-head">
<div class="school-seal ink">名</div>
<div>
<h4>名家</h4>
<div class="sch-era">战国中期</div>
</div>
</div>
<div class="school-slogan">控名责实,白马非马</div>
<p class="school-desc">专注于逻辑和语言分析,探讨名实关系、概念异同。代表命题有"白马非马""离坚白",是中国古代少有的逻辑学传统。</p>
<div class="school-meta"><strong>代表人物:</strong>公孙龙、惠施、邓析</div>
<div class="school-meta"><strong>核心经典:</strong>《公孙龙子》</div>
<div class="school-status soon">即将推出</div>
</a>
<a class="school-card disabled">
<div class="school-head">
<div class="school-seal ink">兵</div>
<div>
<h4>兵家</h4>
<div class="sch-era">春秋晚期至战国</div>
</div>
</div>
<div class="school-slogan">知己知彼,不战而胜</div>
<p class="school-desc">中国古代军事思想的精华,不仅论战术,更论战略、谋略和形势。其辩证思维与道家相通,影响远超军事领域。</p>
<div class="school-meta"><strong>代表人物:</strong>孙武、吴起、孙膑</div>
<div class="school-meta"><strong>核心经典:</strong>《孙子兵法》《吴子》《六韬》</div>
<div class="school-status soon">即将推出</div>
</a>
<a class="school-card disabled">
<div class="school-head">
<div class="school-seal ink">纵</div>
<div>
<h4>纵横家</h4>
<div class="sch-era">战国晚期</div>
</div>
</div>
<div class="school-slogan">合纵连横,游说权谋</div>
<p class="school-desc">以苏秦、张仪为代表,游走于列国之间,以辞令和谋略影响国际格局。"合纵"合众弱攻一强,"连横"事一强攻众弱。</p>
<div class="school-meta"><strong>代表人物:</strong>鬼谷子、苏秦、张仪</div>
<div class="school-meta"><strong>核心经典:</strong>《鬼谷子》</div>
<div class="school-status soon">即将推出</div>
</a>
<a class="school-card disabled">
<div class="school-head">
<div class="school-seal ink">杂</div>
<div>
<h4>杂家</h4>
<div class="sch-era">战国晚期至秦</div>
</div>
</div>
<div class="school-slogan">兼儒墨,合名法</div>
<p class="school-desc">以《吕氏春秋》为代表,兼采各家之长,试图构建一个综合性的思想体系。"杂"不是杂乱,而是兼容并包。</p>
<div class="school-meta"><strong>代表人物:</strong>吕不韦、刘安</div>
<div class="school-meta"><strong>核心经典:</strong>《吕氏春秋》《淮南子》</div>
<div class="school-status soon">即将推出</div>
</a>
<a class="school-card disabled">
<div class="school-head">
<div class="school-seal ink">阴</div>
<div>
<h4>阴阳家</h4>
<div class="sch-era">战国晚期</div>
</div>
</div>
<div class="school-slogan">阴阳五行,五德终始</div>
<p class="school-desc">邹衍为代表,以阴阳消长和五行相生相克解释自然与历史,提出"五德终始"说,深刻影响了后世政治、历法和医学。</p>
<div class="school-meta"><strong>代表人物:</strong>邹衍</div>
<div class="school-meta"><strong>核心著作:</strong>多已散佚,部分见《吕氏春秋》</div>
<div class="school-status soon">即将推出</div>
</a>
</div>
</div>
</section>
<!-- 经典著作书目 -->
<section class="section">
<div class="container">
<h2 class="section-title"><span class="num">4</span>经典著作书目</h2>
<p class="section-sub">九家核心经典一览,已有内容的书名可点击进入</p>
<div class="biblio-wrap">
<div class="biblio-group">
<div class="biblio-group-head" onclick="this.parentElement.classList.toggle('collapsed')">
<span class="bg-seal">儒</span>
<span class="bg-name">儒家</span>
<span class="bg-count">13 部</span>
<span class="bg-arrow">▼</span>
</div>
<div class="biblio-group-body">
<div class="biblio-row"><span class="b-name">春秋</span><span class="b-author">孔子修订</span><span class="b-era">春秋晚期</span></div>
<div class="biblio-row"><span class="b-name">论语</span><span class="b-author">孔子弟子及再传弟子辑录</span><span class="b-era">春秋战国之际</span></div>
<div class="biblio-row"><span class="b-name">大学</span><span class="b-author">曾子一系儒家</span><span class="b-era">战国早期</span></div>
<div class="biblio-row"><span class="b-name">中庸</span><span class="b-author">旧题子思</span><span class="b-era">战国早期</span></div>
<div class="biblio-row"><span class="b-name">孟子</span><span class="b-author">孟轲 及弟子</span><span class="b-era">战国中期</span></div>
<div class="biblio-row"><span class="b-name">荀子</span><span class="b-author">荀况</span><span class="b-era">战国晚期</span></div>
<div class="biblio-row"><span class="b-name">礼记</span><span class="b-author">西汉戴圣 编</span><span class="b-era">战国至西汉</span></div>
<div class="biblio-row"><span class="b-name">周易易传</span><span class="b-author">孔门后学</span><span class="b-era">战国</span></div>
<div class="biblio-row"><span class="b-name">春秋左氏传</span><span class="b-author">旧题左丘明</span><span class="b-era">战国</span></div>
<div class="biblio-row"><span class="b-name">春秋繁露</span><span class="b-author">董仲舒</span><span class="b-era">西汉</span></div>
<div class="biblio-row"><span class="b-name">四书章句集注</span><span class="b-author">朱熹</span><span class="b-era">南宋</span></div>
<div class="biblio-row"><span class="b-name">传习录</span><span class="b-author">王守仁 门人辑录</span><span class="b-era">明代</span></div>
<div class="biblio-row"><span class="b-name">明夷待访录</span><span class="b-author">黄宗羲</span><span class="b-era">明末清初</span></div>
</div>
</div>
<div class="biblio-group">
<div class="biblio-group-head" onclick="this.parentElement.classList.toggle('collapsed')">
<span class="bg-seal">道</span>
<span class="bg-name">道家</span>
<span class="bg-count">4 部</span>
<span class="bg-arrow">▼</span>
</div>
<div class="biblio-group-body">
<div class="biblio-row"><span class="b-name">道德经</span><span class="b-author">老聃</span><span class="b-era">春秋晚期</span></div>
<div class="biblio-row"><span class="b-name"><a href="zhuangzi-index.html">庄子</a></span><span class="b-author">庄周 及后学</span><span class="b-era">战国中期</span></div>
<div class="biblio-row"><span class="b-name">列子</span><span class="b-author">旧题列御寇</span><span class="b-era">战国(今本有后人增益)</span></div>
<div class="biblio-row"><span class="b-name">淮南子</span><span class="b-author">刘安 集门客</span><span class="b-era">西汉</span></div>
</div>
</div>
<div class="biblio-group">
<div class="biblio-group-head" onclick="this.parentElement.classList.toggle('collapsed')">
<span class="bg-seal gold">墨</span>
<span class="bg-name">墨家</span>
<span class="bg-count">1 部</span>
<span class="bg-arrow">▼</span>
</div>
<div class="biblio-group-body">
<div class="biblio-row"><span class="b-name">墨子</span><span class="b-author">墨翟 及后学</span><span class="b-era">战国</span></div>
</div>
</div>
<div class="biblio-group">
<div class="biblio-group-head" onclick="this.parentElement.classList.toggle('collapsed')">
<span class="bg-seal gold">法</span>
<span class="bg-name">法家</span>
<span class="bg-count">3 部</span>
<span class="bg-arrow">▼</span>
</div>
<div class="biblio-group-body">
<div class="biblio-row"><span class="b-name">管子</span><span class="b-author">旧题管仲,稷下学者汇编</span><span class="b-era">战国</span></div>
<div class="biblio-row"><span class="b-name">商君书</span><span class="b-author">商鞅 及后学</span><span class="b-era">战国</span></div>
<div class="biblio-row"><span class="b-name">韩非子</span><span class="b-author">韩非</span><span class="b-era">战国晚期</span></div>
</div>
</div>
<div class="biblio-group">
<div class="biblio-group-head" onclick="this.parentElement.classList.toggle('collapsed')">
<span class="bg-seal ink">名</span>
<span class="bg-name">名家</span>
<span class="bg-count">1 部</span>
<span class="bg-arrow">▼</span>
</div>
<div class="biblio-group-body">
<div class="biblio-row"><span class="b-name">公孙龙子</span><span class="b-author">公孙龙</span><span class="b-era">战国中期</span></div>
</div>
</div>
<div class="biblio-group">
<div class="biblio-group-head" onclick="this.parentElement.classList.toggle('collapsed')">
<span class="bg-seal ink">纵</span>
<span class="bg-name">纵横家</span>
<span class="bg-count">1 部</span>
<span class="bg-arrow">▼</span>
</div>
<div class="biblio-group-body">
<div class="biblio-row"><span class="b-name">鬼谷子</span><span class="b-author">旧题鬼谷子</span><span class="b-era">战国</span></div>
</div>
</div>
<div class="biblio-group">
<div class="biblio-group-head" onclick="this.parentElement.classList.toggle('collapsed')">
<span class="bg-seal ink">兵</span>
<span class="bg-name">兵家</span>
<span class="bg-count">3 部</span>
<span class="bg-arrow">▼</span>
</div>
<div class="biblio-group-body">
<div class="biblio-row"><span class="b-name">孙子兵法</span><span class="b-author">孙武</span><span class="b-era">春秋晚期</span></div>
<div class="biblio-row"><span class="b-name">吴子</span><span class="b-author">吴起</span><span class="b-era">战国早期</span></div>
<div class="biblio-row"><span class="b-name">六韬</span><span class="b-author">旧题吕望,战国兵家</span><span class="b-era">战国</span></div>
</div>
</div>
<div class="biblio-group">
<div class="biblio-group-head" onclick="this.parentElement.classList.toggle('collapsed')">
<span class="bg-seal ink">杂</span>
<span class="bg-name">杂家</span>
<span class="bg-count">1 部</span>
<span class="bg-arrow">▼</span>
</div>
<div class="biblio-group-body">
<div class="biblio-row"><span class="b-name">吕氏春秋</span><span class="b-author">吕不韦 集门客</span><span class="b-era">战国晚期</span></div>
</div>
</div>
<div class="biblio-group">
<div class="biblio-group-head" onclick="this.parentElement.classList.toggle('collapsed')">
<span class="bg-seal ink">阴</span>
<span class="bg-name">阴阳家</span>
<span class="bg-count">著作多已散佚</span>
<span class="bg-arrow">▼</span>
</div>
<div class="biblio-group-body">
<div class="biblio-row"><span class="b-name">邹子</span><span class="b-author">邹衍</span><span class="b-era">战国晚期(有辑本)</span></div>
</div>
</div>
</div>
</div>
</section>
<!-- 6. 核心议题:百家在争什么 -->
<section class="section">
<div class="container">
<h2 class="section-title"><span class="num">5</span>百家在争什么</h2>
<p class="section-sub">诸子不是各说各话,他们在同一组根本问题上给出了不同答案</p>
<div class="debate-table-wrap">
<table class="debate-table">
<thead>
<tr>
<th>核心议题</th>
<th>儒家</th>
<th>道家</th>
<th>法家</th>
<th>墨家</th>
</tr>
</thead>
<tbody>
<tr>
<td>如何治国</td>
<td>仁政德治,导之以德</td>
<td>无为而治,让百姓自化</td>
<td>严刑峻法,以吏为师</td>
<td>尚贤尚同,兼爱非攻</td>
</tr>
<tr>
<td>人性本质</td>
<td>孟子性善,荀子性恶</td>
<td>回归自然本真</td>
<td>人性自为,趋利避害</td>
<td>人性如素丝,染于苍则苍</td>
</tr>
<tr>
<td>礼乐教化</td>
<td>维护礼乐,修身成人</td>
<td>礼是忠信之薄、乱之首</td>
<td>儒以文乱法,否定礼乐</td>
<td>非乐节用,反对奢靡</td>
</tr>
<tr>
<td>名实关系</td>
<td>必也正名,名正言顺</td>
<td>道不可名,名是局限</td>
<td>循名责实,形名参同</td>
<td>以名举实,以辞抒意</td>
</tr>
<tr>
<td>理想社会</td>
<td>大同与小康</td>
<td>小国寡民,至德之世</td>
<td>富国强兵,一统天下</td>
<td>尚同于天,兼爱交利</td>
</tr>
<tr>
<td>战争态度</td>
<td>反对不义之战</td>
<td>兵者不祥之器</td>
<td>耕战立国,以战去战</td>
<td>非攻,积极救守</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<!-- 7. 百家关系图 -->
<section class="section">
<div class="container">
<h2 class="section-title"><span class="num">6</span>百家关系图</h2>
<p class="section-sub">师承、对立、综合——九家之间不是孤立的</p>
<div class="relation-diagram">
<svg viewBox="0 0 800 420" xmlns="http://www.w3.org/2000/svg">
<!-- 上古原典 -->
<rect x="320" y="20" width="160" height="50" rx="8" fill="#3a3025" stroke="#b8893a" stroke-width="1.5"/>
<text x="400" y="42" font-size="13" fill="#f0d890" text-anchor="middle" font-family="serif" font-weight="700">上古原典</text>
<text x="400" y="60" font-size="10" fill="#b8a888" text-anchor="middle">周易 · 尚书 · 诗经</text>
<!-- 连线:原典到儒道 -->
<line x1="360" y1="70" x2="200" y2="130" stroke="#8a7c68" stroke-width="1.2" stroke-dasharray="4,3"/>
<line x1="440" y1="70" x2="600" y2="130" stroke="#8a7c68" stroke-width="1.2" stroke-dasharray="4,3"/>
<line x1="400" y1="70" x2="400" y2="130" stroke="#8a7c68" stroke-width="1.2" stroke-dasharray="4,3"/>
<!-- 儒家 -->
<rect x="130" y="130" width="140" height="60" rx="8" fill="#b23a2e"/>
<text x="200" y="158" font-size="18" fill="#fff" text-anchor="middle" font-family="serif" font-weight="700">儒家</text>
<text x="200" y="178" font-size="10" fill="#f5d8d0" text-anchor="middle">孔子 → 孟子 → 荀子</text>
<!-- 道家 -->
<rect x="530" y="130" width="140" height="60" rx="8" fill="#b23a2e" opacity="0.92"/>
<text x="600" y="158" font-size="18" fill="#fff" text-anchor="middle" font-family="serif" font-weight="700">道家</text>
<text x="600" y="178" font-size="10" fill="#f5d8d0" text-anchor="middle">老子 → 庄子 → 黄老</text>
<!-- 墨家 -->
<rect x="330" y="130" width="140" height="60" rx="8" fill="#b8893a"/>
<text x="400" y="158" font-size="18" fill="#fff" text-anchor="middle" font-family="serif" font-weight="700">墨家</text>
<text x="400" y="178" font-size="10" fill="#f5e8d0" text-anchor="middle">墨翟 · 战国显学</text>
<!-- 中间层:韩非(儒→法)、名家(与墨、道交锋) -->
<!-- 儒家到法家(师承:荀子→韩非) -->
<line x1="200" y1="190" x2="140" y2="260" stroke="#b23a2e" stroke-width="1.5"/>
<text x="130" y="235" font-size="9" fill="#b23a2e" text-anchor="end">荀子传韩非</text>
<!-- 道家到法家(黄老) -->
<line x1="600" y1="190" x2="660" y2="260" stroke="#b8893a" stroke-width="1.5"/>
<text x="670" y="235" font-size="9" fill="#b8893a">黄老申韩</text>
<!-- 儒墨对立 -->
<line x1="270" y1="160" x2="330" y2="160" stroke="#c2756a" stroke-width="1.5" stroke-dasharray="5,3"/>
<text x="300" y="152" font-size="9" fill="#9a4a3a" text-anchor="middle">儒墨之辩</text>
<!-- 名家(位于中间,与各方辩论) -->
<rect x="330" y="260" width="140" height="55" rx="8" fill="#5a4d3a"/>
<text x="400" y="285" font-size="16" fill="#fff" text-anchor="middle" font-family="serif" font-weight="700">名家</text>
<text x="400" y="304" font-size="10" fill="#d8cfc0" text-anchor="middle">惠施 · 公孙龙</text>
<!-- 道家与名家:庄子辩惠施 -->
<line x1="600" y1="190" x2="470" y2="260" stroke="#5a4d3a" stroke-width="1.2" stroke-dasharray="3,3"/>
<text x="560" y="232" font-size="9" fill="#5a4d3a">庄惠之辩</text>
<!-- 法家 -->
<rect x="60" y="260" width="140" height="55" rx="8" fill="#b8893a"/>