-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzhuangzi-yangshengzhu.html
More file actions
790 lines (746 loc) · 27.4 KB
/
Copy pathzhuangzi-yangshengzhu.html
File metadata and controls
790 lines (746 loc) · 27.4 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
<!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>
/* ===== 篇章头部 ===== */
.chapter-header {
max-width: 1200px;
margin: 0 auto;
padding: 2.5rem 2rem 1.5rem;
}
.chapter-header .book-link {
display: inline-flex;
align-items: center;
gap: 0.4rem;
font-size: 0.9rem;
color: var(--accent);
text-decoration: none;
margin-bottom: 1rem;
padding: 0.3rem 0.8rem;
border: 1px solid var(--accent);
border-radius: 20px;
transition: all 0.2s;
}
.chapter-header .book-link:hover {
background: var(--accent);
color: #fff;
}
.chapter-title {
font-family: "Noto Serif SC", "Source Han Serif SC", serif;
font-size: 2.8rem;
font-weight: 700;
margin-bottom: 0.3rem;
letter-spacing: 0.1em;
}
.chapter-subtitle {
font-family: "Noto Serif SC", serif;
font-size: 1.15rem;
color: var(--ink-light);
margin-bottom: 1.2rem;
}
.chapter-meta {
display: flex;
gap: 1.5rem;
flex-wrap: wrap;
margin-bottom: 1.5rem;
}
.meta-item {
display: flex;
align-items: center;
gap: 0.4rem;
font-size: 0.88rem;
color: var(--ink-light);
}
.meta-item .label { color: var(--ink-faint); }
.difficulty {
display: inline-flex;
gap: 2px;
}
.difficulty .dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--border);
}
.difficulty .dot.active { background: var(--gold); }
.chapter-intro {
font-size: 1.05rem;
color: var(--ink-light);
max-width: 720px;
line-height: 2;
padding-left: 1rem;
border-left: 3px solid var(--accent);
}
/* ===== 阅读模式切换 ===== */
.reader-toolbar {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem 1rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.mode-switch {
display: inline-flex;
border: 1px solid var(--border);
border-radius: 8px;
overflow: hidden;
background: var(--paper-light);
}
.mode-btn {
padding: 0.5rem 1.2rem;
font-size: 0.88rem;
border: none;
background: transparent;
color: var(--ink-light);
cursor: pointer;
transition: all 0.2s;
font-family: inherit;
}
.mode-btn.active {
background: var(--ink);
color: var(--paper-light);
}
.mode-btn:hover:not(.active) {
background: var(--highlight);
}
.tip-text {
font-size: 0.82rem;
color: var(--ink-faint);
}
/* ===== 左右对照区 ===== */
.reader-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem 3rem;
}
.reader-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
border: 1px solid var(--border);
border-radius: 12px;
overflow: hidden;
background: var(--paper-light);
box-shadow: 0 2px 20px var(--shadow);
}
.reader-col {
padding: 2rem 2rem;
}
.reader-col.original {
border-right: 2px solid var(--border);
background: linear-gradient(180deg, #faf6ee 0%, #f5efe2 100%);
}
.col-label {
display: inline-block;
font-family: "Noto Serif SC", serif;
font-size: 0.8rem;
letter-spacing: 0.2em;
color: var(--ink-faint);
margin-bottom: 1.5rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid var(--border);
width: 100%;
}
/* 段落样式 */
.para-pair {
margin-bottom: 0.5rem;
border-radius: 8px;
transition: background 0.25s ease;
}
.orig-para {
font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
font-size: 1.18rem;
line-height: 2.2;
color: var(--ink);
padding: 1rem 1.2rem;
border-radius: 8px;
cursor: default;
transition: all 0.25s ease;
border-left: 3px solid transparent;
}
.trans-para {
font-size: 1.02rem;
line-height: 2;
color: var(--ink-light);
padding: 1rem 1.2rem;
border-radius: 8px;
cursor: default;
transition: all 0.25s ease;
border-left: 3px solid transparent;
}
/* 悬浮联动高亮 */
.para-pair.highlight .orig-para {
background: var(--highlight);
border-left-color: var(--accent);
}
.para-pair.highlight .trans-para {
background: var(--highlight);
border-left-color: var(--accent);
}
/* 注释词 */
.annot {
color: var(--accent);
border-bottom: 1px dashed var(--accent-light);
cursor: help;
position: relative;
}
.annot:hover::after {
content: attr(data-note);
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
background: var(--ink);
color: var(--paper-light);
padding: 0.4rem 0.8rem;
border-radius: 6px;
font-size: 0.82rem;
line-height: 1.5;
white-space: normal;
width: max-content;
max-width: 240px;
z-index: 50;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
font-family: "Noto Sans SC", sans-serif;
}
/* 漫画 */
.comic-block {
margin: 1.2rem 0;
border-radius: 10px;
overflow: hidden;
background: var(--comic-bg);
border: 1px solid var(--border);
}
.comic-svg {
width: 100%;
display: block;
}
.comic-caption {
padding: 0.6rem 1rem;
font-size: 0.85rem;
color: var(--ink-faint);
text-align: center;
background: rgba(0,0,0,0.02);
border-top: 1px solid var(--border);
font-style: italic;
}
/* 阅读模式:仅原文 */
.reader-grid.mode-original .reader-col.translation { display: none; }
.reader-grid.mode-original { grid-template-columns: 1fr; }
.reader-grid.mode-original .reader-col.original { border-right: none; }
/* 阅读模式:仅白话 */
.reader-grid.mode-trans .reader-col.original { display: none; }
.reader-grid.mode-trans { grid-template-columns: 1fr; }
/* ===== 背景与语境 ===== */
.section {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem 3rem;
}
.section-title {
font-family: "Noto Serif SC", serif;
font-size: 1.6rem;
font-weight: 700;
margin-bottom: 1.5rem;
padding-bottom: 0.6rem;
border-bottom: 2px solid var(--ink);
display: flex;
align-items: center;
gap: 0.6rem;
}
.section-title .icon {
width: 28px;
height: 28px;
display: inline-flex;
align-items: center;
justify-content: center;
}
.context-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
}
.context-card {
background: var(--paper-light);
border: 1px solid var(--border);
border-radius: 10px;
padding: 1.5rem;
}
.context-card h4 {
font-family: "Noto Serif SC", serif;
font-size: 1.05rem;
margin-bottom: 0.8rem;
color: var(--accent);
}
.context-card p {
font-size: 0.95rem;
color: var(--ink-light);
line-height: 1.9;
}
/* ===== 现代视角 ===== */
.perspective-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
margin-bottom: 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-card .persp-label {
font-size: 0.82rem;
font-weight: 700;
letter-spacing: 0.1em;
margin-bottom: 0.6rem;
display: flex;
align-items: center;
gap: 0.4rem;
}
.persp-card.good .persp-label { color: #5a7a3a; }
.persp-card.discuss .persp-label { color: #9a7520; }
.persp-card.warn .persp-label { color: #9a4a3a; }
.persp-card p {
font-size: 0.95rem;
line-height: 1.9;
color: var(--ink-light);
}
/* 思考题 */
.think-box {
background: linear-gradient(135deg, #2b2418 0%, #3d3426 100%);
border-radius: 12px;
padding: 2rem 2.5rem;
color: var(--paper);
display: flex;
gap: 1.5rem;
align-items: flex-start;
}
.think-icon {
font-size: 2rem;
flex-shrink: 0;
line-height: 1;
}
.think-box h4 {
font-family: "Noto Serif SC", serif;
font-size: 1.1rem;
margin-bottom: 0.6rem;
color: #f0d890;
}
.think-box p {
font-size: 1.05rem;
line-height: 1.9;
color: #d8cfc0;
}
.think-actions {
margin-top: 1rem;
display: flex;
gap: 0.8rem;
}
.think-btn {
padding: 0.5rem 1.5rem;
border-radius: 20px;
border: 1px solid rgba(255,255,255,0.25);
background: rgba(255,255,255,0.08);
color: #d8cfc0;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.2s;
font-family: inherit;
}
.think-btn:hover {
background: rgba(255,255,255,0.15);
border-color: rgba(255,255,255,0.4);
}
.think-btn.selected {
background: var(--accent);
border-color: var(--accent);
color: #fff;
}
/* ===== 延伸阅读 ===== */
.further-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
}
.further-card {
background: var(--paper-light);
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);
}
.further-card .fc-tag {
font-size: 0.78rem;
color: var(--accent);
letter-spacing: 0.1em;
margin-bottom: 0.4rem;
}
.further-card .fc-title {
font-family: "Noto Serif SC", serif;
font-size: 1rem;
margin-bottom: 0.3rem;
}
.further-card .fc-desc {
font-size: 0.85rem;
color: var(--ink-faint);
line-height: 1.6;
}
/* ===== 响应式 ===== */
@media (max-width: 768px) {
.chapter-title { font-size: 2rem; }
.reader-grid {
grid-template-columns: 1fr;
}
.reader-col.original {
border-right: none;
border-bottom: 2px solid var(--border);
}
.context-grid,
.perspective-grid,
.further-grid {
grid-template-columns: 1fr;
}
.reader-container,
.section,
.chapter-header {
padding-left: 1rem;
padding-right: 1rem;
}
}
</style>
</head>
<body>
<!-- 顶部导航 -->
<div id="site-header" data-active="zongheng"></div>
<!-- 篇章头部 -->
<header class="chapter-header">
<div class="body-breadcrumb">
<a href="index.html">诸子思想</a>
<span class="sep">›</span>
<a href="daoism-index.html">道家</a>
<span class="sep">›</span>
<a href="zhuangzi-index.html">庄子</a>
<span class="sep">›</span>
<span class="current">养生主</span>
</div>
<h1 class="chapter-title">养生主</h1>
<p class="chapter-subtitle">《庄子》内篇第三 · 缘督以为经</p>
<div class="chapter-meta">
<div class="meta-item">
<span class="label">难度</span>
<span class="difficulty">
<span class="dot active"></span>
<span class="dot"></span>
<span class="dot"></span>
</span>
</div>
<div class="meta-item">
<span class="label">阅读时长</span>
<span>约 10 分钟</span>
</div>
<div class="meta-item">
<span class="label">所属流派</span>
<span>道家</span>
</div>
<div class="meta-item">
<span class="label">成书时代</span>
<span>战国</span>
</div>
</div>
<p class="chapter-intro">
庄子谈养生,不讲丹药,不讲导引,只讲一个道理:在复杂的世界里,如何不被消耗。庖丁解牛的故事,说尽了做事与存身的最高境界。
</p>
</header>
<!-- 阅读模式切换 -->
<div class="reader-toolbar">
<div class="mode-switch">
<button class="mode-btn active" data-mode="both">原文白话对照</button>
<button class="mode-btn" data-mode="original">仅看原文</button>
<button class="mode-btn" data-mode="trans">仅看白话</button>
</div>
<span class="tip-text">将鼠标移到任一段落上,左右两侧会同步高亮</span>
</div>
<!-- 左右对照阅读区 -->
<div class="reader-container">
<div class="reader-grid mode-both" id="readerGrid">
<!-- 左列:原文 -->
<div class="reader-col original">
<span class="col-label">原 文</span>
<div class="para-pair" data-idx="1">
<p class="orig-para">
吾生也有涯,而知也无涯。以有涯随无涯,<span class="annot" data-note="危险、疲惫。">殆</span>已;已而为知者,殆而已矣。为善无近名,为恶无近刑。<span class="annot" data-note="顺着中道、督脉而行,比喻顺应自然之中正。">缘督以为经</span>,可以保身,可以全生,可以养亲,可以尽年。
</p>
</div>
<div class="para-pair" data-idx="2">
<p class="orig-para">
庖丁为文惠君解牛,手之所触,肩之所倚,足之所履,膝之所踦,<span class="annot" data-note="砉(xū)然,皮肉相离的声音。">砉然</span><span class="annot" data-note="騞(huō)然,刀裂物的声音,比砉然更大。">騞然</span>,奏刀<span class="annot" data-note="騞,读音huō,进刀时发出的声音。">騞</span>然,莫不中音。合于《桑林》之舞,乃中《经首》之会。……始臣之解牛之时,所见无非牛者;三年之后,未尝见全牛也;方今之时,臣以<span class="annot" data-note="以精神去感知、与牛相遇。">神遇</span>而不以目视,官知止而神欲行。
</p>
</div>
<div class="para-pair" data-idx="3">
<p class="orig-para">
彼节者有间,而刀刃者无厚;以无厚入有间,<span class="annot" data-note="恢恢乎,宽绰有余的样子。">恢恢乎</span>其于游刃必有余地矣。……提刀而立,为之四顾,为之<span class="annot" data-note="悠然自得、心满意足的样子。">踌躇满志</span>,<span class="annot" data-note="擦拭。">善</span>刀而藏之。
</p>
</div>
<div class="para-pair" data-idx="4">
<p class="orig-para">
指穷于为薪,火传也,不知其尽也。
</p>
</div>
</div>
<!-- 右列:白话翻译 + 漫画 -->
<div class="reader-col translation">
<span class="col-label">白 话 翻 译</span>
<div class="para-pair" data-idx="1">
<p class="trans-para">
我的生命是有限的,而知识是没有边际的。以有限的生命去追逐没有边际的知识,必然会疲惫不堪;既然如此还要汲汲于求知的人,只能落得疲惫危险罢了。做世人所谓的"善",不要走到追逐名声的地步;做世人所谓的"恶",不要走到触犯刑律的地步。顺着中正自然之道行事,并把它作为不变的原则,就可以保全身体,可以保全天性,可以奉养亲人,可以享尽天年。
</p>
</div>
<div class="para-pair" data-idx="2">
<p class="trans-para">
庖丁为文惠君宰牛,他手所触及的、肩所倚靠的、脚所踩住的、膝所抵住的地方,都发出砉砉的声响;进刀时騞然有声,没有不合于音律的——既合乎《桑林》乐章的舞步,又应和《经首》乐曲的节奏。……庖丁说:"我刚开始宰牛的时候,眼里所看见的,没有不是完整的牛的;三年之后,就再也看不见整头牛了;到了今天,我只凭心神去与牛相遇,而不必用眼睛去看,感官的知觉停下了,心神却在自由地运行。"
</p>
<!-- 漫画:庖丁解牛 -->
<div class="comic-block">
<svg class="comic-svg" viewBox="0 0 500 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="pa-bg" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#efe7d5"/>
<stop offset="100%" stop-color="#d8c9a8"/>
</linearGradient>
</defs>
<rect width="500" height="300" fill="url(#pa-bg)"/>
<!-- 地面 -->
<path d="M0 230 Q250 220 500 230 L500 300 L0 300 Z" fill="#a88a5a" opacity="0.35"/>
<!-- 帷幔/宫室暗示(左) -->
<path d="M0 0 L0 180 Q30 160 50 180 L50 0 Z" fill="#8a3a2a" opacity="0.18"/>
<path d="M50 0 L50 180 Q70 160 85 180 L85 0 Z" fill="#6a2a1a" opacity="0.15"/>
<!-- 牛的轮廓(以线勾勒,显示"未尝见全牛"——用虚淡的节理线) -->
<g transform="translate(320, 130)">
<!-- 牛身外轮廓 -->
<path d="M-90,40 Q-110,0 -70,-20 Q-30,-40 20,-38 Q70,-35 95,-10 Q110,15 95,45 Q70,60 30,58 Q-20,60 -60,55 Q-85,55 -90,40 Z"
fill="#5a3a28" opacity="0.78"/>
<!-- 牛头 -->
<path d="M95,-10 Q125,-25 130,0 Q128,20 110,25 L95,20 Z" fill="#4a2f20" opacity="0.8"/>
<!-- 牛角 -->
<path d="M120,-18 Q130,-35 125,-42" stroke="#2b1810" stroke-width="3" fill="none" stroke-linecap="round"/>
<path d="M112,-22 Q108,-38 115,-45" stroke="#2b1810" stroke-width="3" fill="none" stroke-linecap="round"/>
<!-- 牛眼 -->
<circle cx="118" cy="0" r="2" fill="#f0d890"/>
<!-- 牛腿(前) -->
<path d="M70,45 L72,85 L80,85 L78,45 Z" fill="#3a2418" opacity="0.8"/>
<path d="M40,55 L42,90 L50,90 L48,55 Z" fill="#3a2418" opacity="0.8"/>
<!-- 牛腿(后) -->
<path d="M-60,50 L-62,88 L-54,88 L-52,50 Z" fill="#3a2418" opacity="0.7"/>
<path d="M-80,45 L-82,85 L-74,85 L-72,45 Z" fill="#3a2418" opacity="0.7"/>
<!-- 尾 -->
<path d="M-90,20 Q-110,10 -115,30" stroke="#3a2418" stroke-width="3" fill="none" stroke-linecap="round"/>
<!-- 节理(腠理)线——体现"以神遇"、看清骨节间隙 -->
<g stroke="#f4ead0" stroke-width="1" fill="none" opacity="0.55" stroke-dasharray="2,3">
<path d="M-60,-10 Q-40,5 -55,30"/>
<path d="M-20,-20 Q-10,10 -25,40"/>
<path d="M20,-22 Q35,5 25,40"/>
<path d="M60,-15 Q70,10 60,40"/>
<path d="M-40,20 Q0,28 45,18"/>
</g>
</g>
<!-- 庖丁剪影 -->
<g transform="translate(150, 150)">
<!-- 衣袍/身姿(微倾,提刀) -->
<path d="M-25,90 Q-30,40 -10,15 Q5,0 20,10 Q35,25 30,90 Z" fill="#2b2418"/>
<!-- 头(侧向右) -->
<circle cx="15" cy="0" r="14" fill="#3a2f25"/>
<!-- 发髻/巾 -->
<path d="M8,-12 Q15,-22 22,-12" stroke="#1a1410" stroke-width="3" fill="none"/>
<!-- 专注的眼神(一点朱砂/高光) -->
<circle cx="22" cy="-1" r="1.5" fill="#f0d890"/>
<!-- 右臂前伸、持刀 -->
<path d="M20,20 Q45,30 70,20" stroke="#2b2418" stroke-width="9" fill="none" stroke-linecap="round"/>
<!-- 刀(修长,体现"无厚") -->
<g transform="translate(70, 18) rotate(-15)">
<rect x="0" y="-1.2" width="70" height="2" fill="#c8ccd0"/>
<rect x="0" y="-1.2" width="70" height="0.6" fill="#eef2f5" opacity="0.8"/>
<!-- 刀柄 -->
<rect x="-12" y="-2.5" width="14" height="5" fill="#5a3a20" rx="1"/>
</g>
<!-- 左手按牛(虚写) -->
<path d="M-15,25 Q-35,15 -50,5" stroke="#2b2418" stroke-width="8" fill="none" stroke-linecap="round" opacity="0.9"/>
</g>
<!-- 游刃的气韵线(刀刃与牛之间的流动) -->
<g stroke="#b23a2e" stroke-width="1.2" fill="none" opacity="0.55" stroke-linecap="round">
<path d="M230 150 Q260 135 290 145 Q310 152 330 140" stroke-dasharray="4,4"/>
<path d="M225 165 Q260 158 295 168 Q320 175 340 165" stroke-dasharray="3,5" opacity="0.4"/>
</g>
<!-- 音调节拍(轻符点,表现合于桑林之舞) -->
<g fill="#b23a2e" opacity="0.35">
<circle cx="120" cy="80" r="2"/>
<circle cx="140" cy="60" r="1.5"/>
<circle cx="100" cy="55" r="1.5"/>
<circle cx="200" cy="70" r="2"/>
</g>
<!-- 朱砂印章 -->
<rect x="430" y="250" width="28" height="28" fill="#b23a2e" opacity="0.85" rx="2"/>
<text x="444" y="270" font-size="14" fill="#f4ede0" text-anchor="middle" font-family="serif" font-weight="bold">解</text>
</svg>
<div class="comic-caption">以神遇而不以目视,恢恢乎其于游刃必有余地矣</div>
</div>
</div>
<div class="para-pair" data-idx="3">
<p class="trans-para">
那牛身上的骨节是有间隙的,而刀刃却薄得几乎没有厚度;用没有厚度的刀刃切入有间隙的骨节,自然宽宽绰绰,刀刃游动其间必定大有余地。……(庖丁说完)提刀站起,为此举目四望,悠然自得、心满意足,然后把刀擦拭干净,好好收藏起来。
</p>
</div>
<div class="para-pair" data-idx="4">
<p class="trans-para">
烛薪的燃烧是有穷尽的,火却能从一根柴传到另一根柴,一直传下去,不知道它会有穷尽的时候。——形体如脂薪,有消耗殆尽之日;而精神与生命之火,却能在顺应自然中相传不绝。这正是养生的最高境界。
</p>
</div>
</div>
</div>
</div>
<!-- 背景与语境 -->
<section class="section">
<h2 class="section-title">
<span class="icon">📜</span>
背景与语境
</h2>
<div class="context-grid">
<div class="context-card">
<h4>谁在说话</h4>
<p>庄子,名周,战国中期宋人。《养生主》是内篇第三,篇幅不长却极精要,专门讨论"养生"的宗旨。在庄子这里,"养生"不是后世的炼丹服药,而是养护生命的主宰——精神。"主"是精神,"生"是生命,养生的关键在于养神而非养形。</p>
</div>
<div class="context-card">
<h4>战国乱世如何自处</h4>
<p>战国乱世,人命如草。权势者追逐名利而丧身,士人追逐知识而耗神,百姓动辄触刑。庄子开篇即点出"以有涯随无涯,殆已",反对以有限生命做无度追逐。他提出的"缘督以为经",是要人在善恶两端之间守住中道、顺应自然,于夹缝中保全自身。</p>
</div>
<div class="context-card">
<h4>历代注解</h4>
<p>郭象注《庄》,以"理"解"批大郤、导大窾",认为庖丁解牛是"顺其理则事无不任",把养生与顺应万物之理打通。后世养生家、书画家、医者都爱引"游刃有余",工匠技艺论也以此为经典案例,使这一寓言远远溢出了哲学的范围。</p>
</div>
</div>
</section>
<!-- 现代视角 -->
<section class="section">
<h2 class="section-title">
<span class="icon">🔍</span>
现代视角
</h2>
<div class="perspective-grid">
<div class="persp-card good">
<div class="persp-label">✦ 仍有价值</div>
<p>"以神遇而不以目视"几乎是现代心理学所讲"心流"(flow)的古典版:当技艺高度纯熟,人不再被规则、感官和自我意识束缚,行动如行云流水。庖丁解牛告诉我们,真正的专业不是硬拼力气,而是摸清事物的纹理与间隙,把劲用在关键处,从而既高效又不被消耗。</p>
</div>
<div class="persp-card discuss">
<div class="persp-label">◆ 需要辨析</div>
<p>庄子的养生常被误读为消极避世、什么都不做。其实庖丁解牛是一种极其积极的修炼——他十九年解牛数千,刀刃仍若新发于硎,靠的不是逃避,而是深入理解规律之后的从容。"缘督以为经"也不是和稀泥,而是在复杂局势中找到不被撕裂的中正之道。养生是为了更好地处事,而非逃离世事。</p>
</div>
<div class="persp-card warn">
<div class="persp-label">▲ 明确过时</div>
<p>"吾生也有涯,而知也无涯"若被当作反对求知的借口,就背离了庄子本意。他警惕的是对知识的贪婪追逐和由此带来的精神耗散,而非知识本身。在现代社会,系统学习、专业训练恰恰是达到"游刃有余"的前提。把"殆已"理解为不要学习,只会让人停在"所见无非牛者"的初级阶段。</p>
</div>
</div>
<!-- 思考题 -->
<div class="think-box">
<div class="think-icon">◈</div>
<div>
<h4>思考题</h4>
<p>在你的工作中,有没有找到过"游刃有余"的状态?那时你是靠硬拼力气,还是因为摸清了事物的"纹理"与"间隙"?这种状态是如何到来的,又是什么让它失去的?</p>
<div class="think-actions">
<button class="think-btn">我体验过这种状态</button>
<button class="think-btn">我还在找方法</button>
<button class="think-btn">我还在想</button>
</div>
</div>
</div>
</section>
<!-- 延伸阅读 -->
<section class="section">
<h2 class="section-title">
<span class="icon">🔗</span>
延伸阅读
</h2>
<div class="further-grid">
<a href="#" class="further-card">
<div class="fc-tag">本书相关</div>
<div class="fc-title">《庄子·人间世》</div>
<div class="fc-desc">《养生主》讲存身之道,《人间世》则把这一智慧放到君臣之间的险恶政治中检验,是同一主题更艰难的展开。</div>
</a>
<a href="#" class="further-card">
<div class="fc-tag">跨流派对话</div>
<div class="fc-title">《论语·述而》</div>
<div class="fc-desc">孔子讲"发愤忘食,乐以忘忧,不知老之将至",与庄子"缘督以为经"代表了两种人生姿态——一进一守,恰好构成中国人精神的两面。</div>
</a>
<a href="#" class="further-card">
<div class="fc-tag">相关专题</div>
<div class="fc-title">中国人的养生智慧</div>
<div class="fc-desc">从庄子的养神、中医的养气,到文人的琴棋书画,"养生"如何从哲学命题落实为一整套生活方式。</div>
</a>
</div>
</section>
<div id="site-footer"></div>
<script src="assets/common.js"></script>
<script>
// ===== 左右对照悬浮联动 =====
const pairs = document.querySelectorAll('.para-pair');
function clearHighlights() {
pairs.forEach(p => p.classList.remove('highlight'));
}
pairs.forEach(pair => {
pair.addEventListener('mouseenter', () => {
clearHighlights();
const idx = pair.dataset.idx;
document.querySelectorAll(`.para-pair[data-idx="${idx}"]`).forEach(p => {
p.classList.add('highlight');
});
});
pair.addEventListener('mouseleave', () => {
clearHighlights();
});
});
// ===== 阅读模式切换 =====
const modeBtns = document.querySelectorAll('.mode-btn');
const readerGrid = document.getElementById('readerGrid');
modeBtns.forEach(btn => {
btn.addEventListener('click', () => {
modeBtns.forEach(b => b.classList.remove('active'));
btn.classList.add('active');
const mode = btn.dataset.mode;
readerGrid.className = 'reader-grid mode-' + mode;
});
});
// ===== 思考题按钮(单选) =====
document.querySelectorAll('.think-actions').forEach(group => {
group.querySelectorAll('.think-btn').forEach(btn => {
btn.addEventListener('click', () => {
group.querySelectorAll('.think-btn').forEach(b => b.classList.remove('selected'));
btn.classList.add('selected');
});
});
});
</script>
</body>
</html>