@lemonppt/themes 0.1.7 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/dist/index.d.ts +169 -60
  2. package/dist/index.d.ts.map +1 -1
  3. package/dist/index.js +13 -7
  4. package/dist/index.js.map +1 -1
  5. package/dist/theme01/tokens.d.ts +72 -0
  6. package/dist/theme01/tokens.d.ts.map +1 -0
  7. package/dist/theme01/tokens.js +79 -0
  8. package/dist/theme01/tokens.js.map +1 -0
  9. package/dist/theme02/tokens.d.ts +73 -0
  10. package/dist/theme02/tokens.d.ts.map +1 -0
  11. package/dist/theme02/tokens.js +81 -0
  12. package/dist/theme02/tokens.js.map +1 -0
  13. package/dist/theme03/tokens.d.ts +322 -0
  14. package/dist/theme03/tokens.d.ts.map +1 -0
  15. package/dist/theme03/tokens.js +279 -0
  16. package/dist/theme03/tokens.js.map +1 -0
  17. package/dist/theme04/tokens.d.ts +94 -0
  18. package/dist/theme04/tokens.d.ts.map +1 -0
  19. package/dist/theme04/tokens.js +305 -0
  20. package/dist/theme04/tokens.js.map +1 -0
  21. package/dist/theme05/tokens.d.ts +92 -0
  22. package/dist/theme05/tokens.d.ts.map +1 -0
  23. package/dist/theme05/tokens.js +275 -0
  24. package/dist/theme05/tokens.js.map +1 -0
  25. package/dist/theme06/tokens.d.ts +101 -0
  26. package/dist/theme06/tokens.d.ts.map +1 -0
  27. package/dist/theme06/tokens.js +320 -0
  28. package/dist/theme06/tokens.js.map +1 -0
  29. package/package.json +2 -2
  30. package/src/theme01/styles.css +4796 -0
  31. package/src/theme02/styles.css +4624 -0
  32. package/src/theme03/styles.css +8348 -0
  33. package/src/theme04/styles.css +8739 -0
  34. package/src/theme05/styles.css +3587 -0
  35. package/src/theme06/styles.css +7071 -0
  36. package/dist/base/tokens.d.ts +0 -34
  37. package/dist/base/tokens.d.ts.map +0 -1
  38. package/dist/base/tokens.js +0 -37
  39. package/dist/base/tokens.js.map +0 -1
  40. package/dist/dark-tech/tokens.d.ts +0 -34
  41. package/dist/dark-tech/tokens.d.ts.map +0 -1
  42. package/dist/dark-tech/tokens.js +0 -37
  43. package/dist/dark-tech/tokens.js.map +0 -1
  44. package/dist/minimal/tokens.d.ts +0 -34
  45. package/dist/minimal/tokens.d.ts.map +0 -1
  46. package/dist/minimal/tokens.js +0 -34
  47. package/dist/minimal/tokens.js.map +0 -1
  48. package/dist/warm-business/tokens.d.ts +0 -34
  49. package/dist/warm-business/tokens.d.ts.map +0 -1
  50. package/dist/warm-business/tokens.js +0 -37
  51. package/dist/warm-business/tokens.js.map +0 -1
  52. package/src/base/styles.css +0 -3061
  53. package/src/dark-tech/styles.css +0 -2969
  54. package/src/warm-business/styles.css +0 -2848
@@ -0,0 +1,3587 @@
1
+ /* lemonPPT - AI-powered presentation generation
2
+ * Copyright (c) 2026 lemonforme
3
+ * SPDX-License-Identifier: AGPL-3.0-or-later
4
+ */
5
+
6
+ @keyframes lp-theme05-rise {
7
+ from { opacity: 0; transform: translateY(16px); }
8
+ to { opacity: 1; transform: translateY(0); }
9
+ }
10
+
11
+ .lp-deck {
12
+ position: relative;
13
+ width: 100%;
14
+ height: 100%;
15
+ display: flex;
16
+ align-items: center;
17
+ justify-content: center;
18
+ }
19
+
20
+ .lp-slide-wrapper {
21
+ position: absolute;
22
+ top: 0;
23
+ left: 0;
24
+ width: 100%;
25
+ height: 100%;
26
+ display: flex;
27
+ align-items: center;
28
+ justify-content: center;
29
+ opacity: 0;
30
+ z-index: 0;
31
+ }
32
+
33
+ .lp-slide-wrapper.enter,
34
+ .lp-slide-wrapper.leave {
35
+ pointer-events: none;
36
+ }
37
+
38
+ .lp-deck[data-lp-transition="none"] .lp-slide-wrapper {
39
+ transition: opacity 80ms ease;
40
+ transform: none;
41
+ }
42
+ .lp-deck[data-lp-transition="none"] .lp-slide-wrapper.active {
43
+ opacity: 1;
44
+ z-index: 2;
45
+ }
46
+
47
+ .lp-deck:not([data-lp-transition]) .lp-slide-wrapper,
48
+ .lp-deck[data-lp-transition="slide"] .lp-slide-wrapper {
49
+ transform: translateX(100%);
50
+ transition: transform 400ms ease-in-out, opacity 300ms ease;
51
+ }
52
+ .lp-deck:not([data-lp-transition]) .lp-slide-wrapper.active,
53
+ .lp-deck[data-lp-transition="slide"] .lp-slide-wrapper.active {
54
+ opacity: 1;
55
+ transform: translateX(0);
56
+ z-index: 2;
57
+ }
58
+
59
+ .lp-deck:not([data-lp-transition]) .lp-slide-wrapper.prev,
60
+ .lp-deck[data-lp-transition="slide"] .lp-slide-wrapper.prev {
61
+ opacity: 0;
62
+ transform: translateX(-100%);
63
+ z-index: 1;
64
+ }
65
+
66
+ @media (prefers-reduced-motion: reduce) {
67
+ .lp-slide-wrapper,
68
+ .lp-deck[data-lp-transition] .lp-slide-wrapper {
69
+ transition: none !important;
70
+ }
71
+ }
72
+
73
+ .lp-slide {
74
+ position: relative;
75
+ width: 1280px;
76
+ height: 720px;
77
+ overflow: hidden;
78
+ color: var(--lp-ink);
79
+ background:
80
+ radial-gradient(circle at 88% -8%, var(--lp-surface-strong), transparent 42%),
81
+ radial-gradient(circle at 12% 112%, var(--lp-surface), transparent 40%),
82
+ linear-gradient(155deg, var(--lp-bg-gradient-start) 0%, var(--lp-bg-gradient-end) 100%);
83
+ font-family: var(--lp-font);
84
+ }
85
+
86
+ .lp-rise {
87
+ animation: lp-theme05-rise 0.5s ease both;
88
+ }
89
+
90
+ /* ---- 通用版式元素 ---- */
91
+
92
+ .lp-theme05-kicker {
93
+ font-family: var(--lp-font-mono);
94
+ font-size: var(--lp-font-size-caption);
95
+ font-weight: 600;
96
+ letter-spacing: 0.12em;
97
+ text-transform: uppercase;
98
+ color: var(--lp-accent);
99
+ margin-bottom: 12px;
100
+ }
101
+
102
+ .lp-theme05-title {
103
+ font-size: var(--lp-font-size-h1);
104
+ font-weight: 800;
105
+ line-height: 1.12;
106
+ color: var(--lp-ink);
107
+ letter-spacing: -0.02em;
108
+ }
109
+
110
+ .lp-theme05-subtitle {
111
+ font-size: var(--lp-font-size-body);
112
+ font-weight: 400;
113
+ line-height: 1.5;
114
+ color: var(--lp-ink2);
115
+ margin-top: 14px;
116
+ }
117
+
118
+ .lp-theme05-underline {
119
+ width: 80px;
120
+ height: 4px;
121
+ background: var(--lp-accent);
122
+ margin-top: 18px;
123
+ border-radius: var(--lp-radius-small);
124
+ }
125
+
126
+ .lp-theme05-conclusion {
127
+ position: relative;
128
+ padding: 18px 22px;
129
+ background: var(--lp-surface);
130
+ border-left: 4px solid var(--lp-accent);
131
+ border-radius: 0 var(--lp-radius-medium) var(--lp-radius-medium) 0;
132
+ }
133
+
134
+ .lp-theme05-conclusion-value {
135
+ font-size: var(--lp-font-size-h2);
136
+ font-weight: 800;
137
+ color: var(--lp-accent);
138
+ line-height: 1.1;
139
+ }
140
+
141
+ .lp-theme05-conclusion-label {
142
+ font-size: var(--lp-font-size-body-small);
143
+ font-weight: 600;
144
+ color: var(--lp-ink);
145
+ margin-top: 4px;
146
+ }
147
+
148
+ .lp-theme05-conclusion-description {
149
+ font-size: var(--lp-font-size-body-small);
150
+ color: var(--lp-ink2);
151
+ line-height: 1.55;
152
+ margin-top: 8px;
153
+ }
154
+
155
+ .lp-theme05-footer {
156
+ position: absolute;
157
+ bottom: 0;
158
+ left: 0;
159
+ right: 0;
160
+ height: 48px;
161
+ padding: 0 54px;
162
+ display: flex;
163
+ align-items: center;
164
+ justify-content: space-between;
165
+ font-size: var(--lp-font-size-caption);
166
+ color: var(--lp-ink3);
167
+ border-top: 1px solid var(--lp-border);
168
+ }
169
+
170
+ .lp-theme05-footer-left,
171
+ .lp-theme05-footer-right {
172
+ pointer-events: auto;
173
+ }
174
+
175
+ .lp-theme05-spectrum-bar {
176
+ position: absolute;
177
+ bottom: 48px;
178
+ left: 0;
179
+ right: 0;
180
+ height: 6px;
181
+ display: flex;
182
+ pointer-events: none;
183
+ }
184
+
185
+ .lp-theme05-spectrum-bar span {
186
+ flex: 1;
187
+ height: 100%;
188
+ }
189
+
190
+ .lp-theme05-spectrum-bar span:nth-child(1) { background: #E85D4E; }
191
+ .lp-theme05-spectrum-bar span:nth-child(2) { background: #F5A623; }
192
+ .lp-theme05-spectrum-bar span:nth-child(3) { background: #0FA3B1; }
193
+ .lp-theme05-spectrum-bar span:nth-child(4) { background: #4A58D9; }
194
+ .lp-theme05-spectrum-bar span:nth-child(5) { background: #7C3AED; }
195
+
196
+ /* ---- 卡片 ---- */
197
+
198
+ .lp-theme05-card {
199
+ background: var(--lp-surface-solid);
200
+ border: 1px solid var(--lp-border);
201
+ border-radius: var(--lp-radius-medium);
202
+ box-shadow: var(--lp-shadow-sm);
203
+ padding: 24px;
204
+ }
205
+
206
+ .lp-theme05-card--accent {
207
+ background: var(--lp-accent);
208
+ border-color: var(--lp-accent);
209
+ color: var(--lp-text-inverse);
210
+ }
211
+
212
+ .lp-theme05-card--accent .lp-theme05-card-label,
213
+ .lp-theme05-card--accent .lp-theme05-card-value {
214
+ color: var(--lp-text-inverse);
215
+ }
216
+
217
+ .lp-theme05-card--coral { border-top: 4px solid #E85D4E; }
218
+ .lp-theme05-card--amber { border-top: 4px solid #F5A623; }
219
+ .lp-theme05-card--teal { border-top: 4px solid #0FA3B1; }
220
+ .lp-theme05-card--indigo { border-top: 4px solid #4A58D9; }
221
+ .lp-theme05-card--violet { border-top: 4px solid #7C3AED; }
222
+
223
+ .lp-theme05-card-value {
224
+ font-size: var(--lp-font-size-h2);
225
+ font-weight: 800;
226
+ color: var(--lp-ink);
227
+ line-height: 1.1;
228
+ }
229
+
230
+ .lp-theme05-card-label {
231
+ font-size: var(--lp-font-size-caption);
232
+ font-weight: 600;
233
+ color: var(--lp-ink3);
234
+ text-transform: uppercase;
235
+ letter-spacing: 0.08em;
236
+ margin-top: 8px;
237
+ }
238
+
239
+ /* ---- 列表 ---- */
240
+
241
+ .lp-theme05-bullets {
242
+ list-style: none;
243
+ padding: 0;
244
+ margin: 0;
245
+ display: flex;
246
+ flex-direction: column;
247
+ gap: 16px;
248
+ }
249
+
250
+ .lp-theme05-bullet {
251
+ display: flex;
252
+ align-items: flex-start;
253
+ gap: 14px;
254
+ font-size: var(--lp-font-size-body);
255
+ line-height: 1.5;
256
+ color: var(--lp-ink2);
257
+ }
258
+
259
+ .lp-theme05-bullet-marker {
260
+ width: 8px;
261
+ height: 8px;
262
+ border-radius: 50%;
263
+ background: var(--lp-accent);
264
+ margin-top: 10px;
265
+ flex: none;
266
+ }
267
+
268
+ /* ---- 封面 ---- */
269
+
270
+ .lp-theme05-cover {
271
+ display: flex;
272
+ flex-direction: column;
273
+ justify-content: space-between;
274
+ padding: 92px 84px 96px;
275
+ }
276
+
277
+ .lp-theme05-cover-main {
278
+ max-width: 760px;
279
+ }
280
+
281
+ .lp-theme05-cover-title {
282
+ font-size: var(--lp-font-size-display-small);
283
+ font-weight: 900;
284
+ line-height: 1.05;
285
+ color: var(--lp-ink);
286
+ letter-spacing: -0.03em;
287
+ }
288
+
289
+ .lp-theme05-cover-metrics {
290
+ display: flex;
291
+ gap: 20px;
292
+ margin-top: 48px;
293
+ }
294
+
295
+ .lp-theme05-cover-metric {
296
+ background: var(--lp-surface-solid);
297
+ border: 1px solid var(--lp-border);
298
+ border-radius: var(--lp-radius-medium);
299
+ padding: 20px 24px;
300
+ min-width: 160px;
301
+ }
302
+
303
+ .lp-theme05-cover-metric.accent {
304
+ background: var(--lp-accent);
305
+ border-color: var(--lp-accent);
306
+ color: var(--lp-text-inverse);
307
+ }
308
+
309
+ .lp-theme05-cover-metric-value {
310
+ font-size: var(--lp-font-size-h2);
311
+ font-weight: 800;
312
+ line-height: 1.1;
313
+ }
314
+
315
+ .lp-theme05-cover-metric-label {
316
+ font-size: var(--lp-font-size-caption);
317
+ font-weight: 600;
318
+ text-transform: uppercase;
319
+ letter-spacing: 0.08em;
320
+ margin-top: 6px;
321
+ opacity: 0.85;
322
+ }
323
+
324
+ /* ---- 目录 ---- */
325
+
326
+ .lp-theme05-toc {
327
+ padding: 92px 84px 96px;
328
+ display: flex;
329
+ flex-direction: column;
330
+ }
331
+
332
+ .lp-theme05-toc-grid {
333
+ display: grid;
334
+ grid-template-columns: repeat(2, 1fr);
335
+ gap: 24px;
336
+ margin-top: 44px;
337
+ }
338
+
339
+ .lp-theme05-toc-item {
340
+ background: var(--lp-surface-solid);
341
+ border: 1px solid var(--lp-border);
342
+ border-radius: var(--lp-radius-medium);
343
+ padding: 28px;
344
+ display: flex;
345
+ align-items: flex-start;
346
+ gap: 18px;
347
+ }
348
+
349
+ .lp-theme05-toc-number {
350
+ width: 44px;
351
+ height: 44px;
352
+ border-radius: var(--lp-radius-small);
353
+ background: var(--lp-surface);
354
+ display: flex;
355
+ align-items: center;
356
+ justify-content: center;
357
+ font-family: var(--lp-font-mono);
358
+ font-size: var(--lp-font-size-h3);
359
+ font-weight: 700;
360
+ color: var(--lp-accent);
361
+ flex: none;
362
+ }
363
+
364
+ .lp-theme05-toc-title {
365
+ font-size: var(--lp-font-size-h3);
366
+ font-weight: 700;
367
+ color: var(--lp-ink);
368
+ line-height: 1.25;
369
+ }
370
+
371
+ .lp-theme05-toc-page {
372
+ font-family: var(--lp-font-mono);
373
+ font-size: var(--lp-font-size-caption);
374
+ color: var(--lp-ink3);
375
+ margin-top: 6px;
376
+ }
377
+
378
+ /* ---- 章节 ---- */
379
+
380
+ .lp-theme05-chapter {
381
+ display: flex;
382
+ flex-direction: column;
383
+ justify-content: center;
384
+ padding: 92px 84px 96px;
385
+ }
386
+
387
+ .lp-theme05-chapter-number {
388
+ font-family: var(--lp-font-mono);
389
+ font-size: 120px;
390
+ font-weight: 900;
391
+ line-height: 1;
392
+ color: transparent;
393
+ -webkit-text-stroke: 2px var(--lp-accent);
394
+ margin-bottom: 18px;
395
+ }
396
+
397
+ .lp-theme05-chapter-title {
398
+ font-size: var(--lp-font-size-display-small);
399
+ font-weight: 900;
400
+ line-height: 1.08;
401
+ color: var(--lp-ink);
402
+ letter-spacing: -0.03em;
403
+ }
404
+
405
+ /* ---- 内容 ---- */
406
+
407
+ .lp-theme05-content {
408
+ padding: 92px 84px 96px;
409
+ display: grid;
410
+ grid-template-columns: 1fr 1fr;
411
+ gap: 64px;
412
+ align-items: center;
413
+ }
414
+
415
+ .lp-theme05-content-body {
416
+ display: flex;
417
+ flex-direction: column;
418
+ }
419
+
420
+ .lp-theme05-content-aside {
421
+ display: flex;
422
+ flex-direction: column;
423
+ gap: 20px;
424
+ }
425
+
426
+ /* ---- 指标 ---- */
427
+
428
+ .lp-theme05-metric {
429
+ padding: 92px 84px 96px;
430
+ display: flex;
431
+ flex-direction: column;
432
+ justify-content: center;
433
+ }
434
+
435
+ .lp-theme05-metric-hero {
436
+ display: flex;
437
+ align-items: baseline;
438
+ gap: 16px;
439
+ margin-top: 32px;
440
+ }
441
+
442
+ .lp-theme05-metric-hero-value {
443
+ font-size: var(--lp-font-size-display);
444
+ font-weight: 900;
445
+ line-height: 1;
446
+ color: var(--lp-accent);
447
+ letter-spacing: -0.04em;
448
+ }
449
+
450
+ .lp-theme05-metric-hero-unit {
451
+ font-size: var(--lp-font-size-h2);
452
+ font-weight: 700;
453
+ color: var(--lp-ink2);
454
+ }
455
+
456
+ .lp-theme05-metric-grid {
457
+ display: grid;
458
+ grid-template-columns: repeat(4, 1fr);
459
+ gap: 20px;
460
+ margin-top: 48px;
461
+ }
462
+
463
+ /* ---- 图表 ---- */
464
+
465
+ .lp-theme05-chart {
466
+ padding: 92px 84px 96px;
467
+ display: grid;
468
+ grid-template-columns: 1.4fr 0.6fr;
469
+ gap: 48px;
470
+ }
471
+
472
+ .lp-theme05-chart-main {
473
+ display: flex;
474
+ flex-direction: column;
475
+ }
476
+
477
+ .lp-theme05-chart-canvas {
478
+ flex: 1;
479
+ min-height: 0;
480
+ margin-top: 24px;
481
+ }
482
+
483
+ .lp-theme05-chart-aside {
484
+ display: flex;
485
+ flex-direction: column;
486
+ gap: 20px;
487
+ padding-top: 52px;
488
+ }
489
+
490
+ /* ---- 排名 ---- */
491
+
492
+ .lp-theme05-rank {
493
+ padding: 92px 84px 96px;
494
+ display: flex;
495
+ flex-direction: column;
496
+ }
497
+
498
+ .lp-theme05-rank-rows {
499
+ display: flex;
500
+ flex-direction: column;
501
+ gap: 16px;
502
+ margin-top: 36px;
503
+ }
504
+
505
+ .lp-theme05-rank-row {
506
+ display: grid;
507
+ grid-template-columns: 48px 1fr auto auto;
508
+ align-items: center;
509
+ gap: 20px;
510
+ padding: 18px 22px;
511
+ background: var(--lp-surface-solid);
512
+ border: 1px solid var(--lp-border);
513
+ border-radius: var(--lp-radius-medium);
514
+ }
515
+
516
+ .lp-theme05-rank-rank {
517
+ width: 36px;
518
+ height: 36px;
519
+ border-radius: var(--lp-radius-small);
520
+ background: var(--lp-surface);
521
+ display: flex;
522
+ align-items: center;
523
+ justify-content: center;
524
+ font-family: var(--lp-font-mono);
525
+ font-weight: 700;
526
+ color: var(--lp-accent);
527
+ }
528
+
529
+ .lp-theme05-rank-name {
530
+ font-size: var(--lp-font-size-body);
531
+ font-weight: 700;
532
+ color: var(--lp-ink);
533
+ }
534
+
535
+ .lp-theme05-rank-value {
536
+ font-family: var(--lp-font-mono);
537
+ font-size: var(--lp-font-size-h3);
538
+ font-weight: 700;
539
+ color: var(--lp-ink);
540
+ }
541
+
542
+ .lp-theme05-rank-change {
543
+ font-family: var(--lp-font-mono);
544
+ font-size: var(--lp-font-size-caption);
545
+ font-weight: 700;
546
+ padding: 4px 8px;
547
+ border-radius: var(--lp-radius-small);
548
+ background: var(--lp-surface);
549
+ color: var(--lp-ink3);
550
+ }
551
+
552
+ .lp-theme05-rank-change.positive {
553
+ background: rgba(34, 197, 94, 0.16);
554
+ color: var(--lp-green);
555
+ }
556
+
557
+ .lp-theme05-rank-change.negative {
558
+ background: rgba(232, 93, 78, 0.16);
559
+ color: var(--lp-red);
560
+ }
561
+
562
+ /* ---- 热力图 ---- */
563
+
564
+ .lp-theme05-heatmap {
565
+ padding: 92px 84px 96px;
566
+ display: flex;
567
+ flex-direction: column;
568
+ }
569
+
570
+ .lp-theme05-heatmap-grid {
571
+ display: grid;
572
+ grid-template-columns: repeat(12, 1fr);
573
+ gap: 6px;
574
+ margin-top: 36px;
575
+ }
576
+
577
+ .lp-theme05-heatmap-cell {
578
+ aspect-ratio: 1;
579
+ border-radius: var(--lp-radius-small);
580
+ display: flex;
581
+ align-items: center;
582
+ justify-content: center;
583
+ font-family: var(--lp-font-mono);
584
+ font-size: 11px;
585
+ font-weight: 700;
586
+ color: var(--lp-text-inverse);
587
+ }
588
+
589
+ .lp-theme05-heatmap-labels {
590
+ display: grid;
591
+ grid-template-columns: repeat(12, 1fr);
592
+ gap: 6px;
593
+ margin-top: 10px;
594
+ }
595
+
596
+ .lp-theme05-heatmap-label {
597
+ text-align: center;
598
+ font-size: 11px;
599
+ color: var(--lp-ink3);
600
+ }
601
+
602
+ /* ---- 瀑布图 ---- */
603
+
604
+ .lp-theme05-waterfall {
605
+ padding: 92px 84px 96px;
606
+ display: grid;
607
+ grid-template-columns: 1.2fr 0.8fr;
608
+ gap: 48px;
609
+ }
610
+
611
+ .lp-theme05-waterfall-main {
612
+ display: flex;
613
+ flex-direction: column;
614
+ }
615
+
616
+ .lp-theme05-waterfall-canvas {
617
+ flex: 1;
618
+ min-height: 0;
619
+ margin-top: 24px;
620
+ }
621
+
622
+ .lp-theme05-waterfall-items {
623
+ display: flex;
624
+ flex-direction: column;
625
+ gap: 14px;
626
+ margin-top: 52px;
627
+ }
628
+
629
+ .lp-theme05-waterfall-item {
630
+ display: flex;
631
+ align-items: center;
632
+ justify-content: space-between;
633
+ padding: 14px 18px;
634
+ background: var(--lp-surface-solid);
635
+ border: 1px solid var(--lp-border);
636
+ border-radius: var(--lp-radius-medium);
637
+ }
638
+
639
+ .lp-theme05-waterfall-item-name {
640
+ font-size: var(--lp-font-size-body-small);
641
+ font-weight: 600;
642
+ color: var(--lp-ink);
643
+ }
644
+
645
+ .lp-theme05-waterfall-item-value {
646
+ font-family: var(--lp-font-mono);
647
+ font-size: var(--lp-font-size-body);
648
+ font-weight: 700;
649
+ color: var(--lp-accent);
650
+ }
651
+
652
+ /* ---- 引用 ---- */
653
+
654
+ .lp-theme05-quote {
655
+ padding: 92px 120px 96px;
656
+ display: flex;
657
+ align-items: center;
658
+ gap: 48px;
659
+ }
660
+
661
+ .lp-theme05-quote-bar {
662
+ width: 8px;
663
+ height: 220px;
664
+ border-radius: var(--lp-radius-large);
665
+ background: linear-gradient(180deg, var(--lp-accent) 0%, var(--lp-accent-2) 50%, var(--lp-accent-cool) 100%);
666
+ flex: none;
667
+ }
668
+
669
+ .lp-theme05-quote-text {
670
+ font-size: var(--lp-font-size-h2);
671
+ font-weight: 700;
672
+ line-height: 1.35;
673
+ color: var(--lp-ink);
674
+ }
675
+
676
+ .lp-theme05-quote-source {
677
+ font-size: var(--lp-font-size-body-small);
678
+ color: var(--lp-ink3);
679
+ margin-top: 24px;
680
+ }
681
+
682
+ /* ---- 图文 ---- */
683
+
684
+ .lp-theme05-image {
685
+ padding: 92px 84px 96px;
686
+ display: grid;
687
+ grid-template-columns: 1fr 1fr;
688
+ gap: 48px;
689
+ align-items: center;
690
+ }
691
+
692
+ .lp-theme05-image-visual {
693
+ position: relative;
694
+ border-radius: var(--lp-radius-medium);
695
+ overflow: hidden;
696
+ height: 480px;
697
+ background: var(--lp-surface);
698
+ }
699
+
700
+ .lp-theme05-image-visual img {
701
+ width: 100%;
702
+ height: 100%;
703
+ object-fit: cover;
704
+ }
705
+
706
+ .lp-theme05-image-annotation {
707
+ position: absolute;
708
+ bottom: 20px;
709
+ left: 20px;
710
+ right: 20px;
711
+ padding: 16px 20px;
712
+ background: var(--lp-scrim);
713
+ backdrop-filter: blur(8px);
714
+ border-radius: var(--lp-radius-medium);
715
+ color: var(--lp-text-inverse);
716
+ }
717
+
718
+ .lp-theme05-image-annotation-value {
719
+ font-size: var(--lp-font-size-h2);
720
+ font-weight: 800;
721
+ color: var(--lp-accent);
722
+ }
723
+
724
+ .lp-theme05-image-annotation-label {
725
+ font-size: var(--lp-font-size-caption);
726
+ opacity: 0.85;
727
+ margin-top: 4px;
728
+ }
729
+
730
+ .lp-theme05-image-placeholder {
731
+ width: 100%;
732
+ height: 100%;
733
+ display: flex;
734
+ flex-direction: column;
735
+ align-items: center;
736
+ justify-content: center;
737
+ gap: 12px;
738
+ color: var(--lp-ink3);
739
+ border: 2px dashed var(--lp-border);
740
+ border-radius: var(--lp-radius-medium);
741
+ cursor: pointer;
742
+ transition: border-color 0.15s, color 0.15s, background 0.15s;
743
+ }
744
+
745
+ .lp-theme05-image-placeholder:hover {
746
+ border-color: var(--lp-accent);
747
+ color: var(--lp-accent);
748
+ background: var(--lp-overlay);
749
+ }
750
+
751
+ /* ---- 双数对比 ---- */
752
+
753
+ .lp-theme05-versus {
754
+ padding: 92px 84px 96px;
755
+ display: flex;
756
+ flex-direction: column;
757
+ }
758
+
759
+ .lp-theme05-versus-head {
760
+ margin-bottom: 44px;
761
+ }
762
+
763
+ .lp-theme05-versus-main {
764
+ flex: 1;
765
+ display: flex;
766
+ align-items: center;
767
+ justify-content: center;
768
+ gap: 40px;
769
+ min-height: 0;
770
+ }
771
+
772
+ .lp-theme05-versus-card {
773
+ flex: 1;
774
+ max-width: 420px;
775
+ padding: 44px 40px;
776
+ background: var(--lp-surface-solid);
777
+ border: 1px solid var(--lp-border);
778
+ border-radius: var(--lp-radius-medium);
779
+ box-shadow: var(--lp-shadow-small);
780
+ border-top: 6px solid var(--lp-accent);
781
+ }
782
+
783
+ .lp-theme05-versus-card--coral { border-top-color: #E85D4E; }
784
+ .lp-theme05-versus-card--amber { border-top-color: #F5A623; }
785
+ .lp-theme05-versus-card--teal { border-top-color: #0FA3B1; }
786
+ .lp-theme05-versus-card--indigo { border-top-color: #4A58D9; }
787
+ .lp-theme05-versus-card--violet { border-top-color: #7C3AED; }
788
+
789
+ .lp-theme05-versus-card-label {
790
+ font-size: var(--lp-font-size-body);
791
+ color: var(--lp-ink2);
792
+ margin-bottom: 18px;
793
+ line-height: 1.4;
794
+ }
795
+
796
+ .lp-theme05-versus-card-value-row {
797
+ display: flex;
798
+ align-items: baseline;
799
+ gap: 10px;
800
+ }
801
+
802
+ .lp-theme05-versus-card-value {
803
+ font-size: var(--lp-font-size-display);
804
+ font-weight: 900;
805
+ color: var(--lp-ink);
806
+ letter-spacing: -0.03em;
807
+ line-height: 1;
808
+ }
809
+
810
+ .lp-theme05-versus-card-unit {
811
+ font-size: var(--lp-font-size-h3);
812
+ font-weight: 700;
813
+ color: var(--lp-ink2);
814
+ }
815
+
816
+ .lp-theme05-versus-badge {
817
+ width: 84px;
818
+ height: 84px;
819
+ border-radius: 50%;
820
+ background: var(--lp-surface-strong);
821
+ border: 1px solid var(--lp-border);
822
+ display: flex;
823
+ align-items: center;
824
+ justify-content: center;
825
+ flex: none;
826
+ }
827
+
828
+ .lp-theme05-versus-badge-text {
829
+ font-family: var(--lp-font-mono);
830
+ font-size: 28px;
831
+ font-weight: 800;
832
+ color: var(--lp-ink3);
833
+ letter-spacing: 0.04em;
834
+ }
835
+
836
+ .lp-theme05-versus-footnote {
837
+ margin-top: 32px;
838
+ font-size: var(--lp-font-size-caption);
839
+ color: var(--lp-ink3);
840
+ text-align: center;
841
+ }
842
+
843
+ /* ---- 流程步骤 ---- */
844
+
845
+ .lp-theme05-process {
846
+ padding: 92px 84px 96px;
847
+ display: flex;
848
+ flex-direction: column;
849
+ }
850
+
851
+ .lp-theme05-topbar {
852
+ display: flex;
853
+ align-items: center;
854
+ justify-content: space-between;
855
+ margin-bottom: 36px;
856
+ }
857
+
858
+ .lp-theme05-tag {
859
+ display: inline-flex;
860
+ align-items: center;
861
+ gap: 8px;
862
+ font-family: var(--lp-font-mono);
863
+ font-size: var(--lp-font-size-caption);
864
+ font-weight: 700;
865
+ letter-spacing: 0.08em;
866
+ text-transform: uppercase;
867
+ color: var(--lp-accent);
868
+ padding: 6px 12px;
869
+ background: var(--lp-surface);
870
+ border-radius: var(--lp-radius-small);
871
+ }
872
+
873
+ .lp-theme05-topbar-right {
874
+ font-size: var(--lp-font-size-caption);
875
+ color: var(--lp-ink3);
876
+ font-family: var(--lp-font-mono);
877
+ }
878
+
879
+ .lp-theme05-process-main {
880
+ flex: 1;
881
+ display: flex;
882
+ flex-direction: column;
883
+ min-height: 0;
884
+ }
885
+
886
+ .lp-theme05-process-head {
887
+ margin-bottom: 44px;
888
+ }
889
+
890
+ .lp-theme05-process-track {
891
+ flex: 1;
892
+ display: flex;
893
+ align-items: stretch;
894
+ gap: 16px;
895
+ min-height: 0;
896
+ }
897
+
898
+ .lp-theme05-process-step {
899
+ flex: 1;
900
+ display: flex;
901
+ align-items: stretch;
902
+ min-width: 0;
903
+ }
904
+
905
+ .lp-theme05-process-card {
906
+ flex: 1;
907
+ padding: 28px 24px;
908
+ background: var(--lp-surface-solid);
909
+ border: 1px solid var(--lp-border);
910
+ border-radius: var(--lp-radius-medium);
911
+ display: flex;
912
+ flex-direction: column;
913
+ gap: 16px;
914
+ }
915
+
916
+ .lp-theme05-process-card-header {
917
+ display: flex;
918
+ align-items: center;
919
+ gap: 14px;
920
+ }
921
+
922
+ .lp-theme05-process-node-number {
923
+ width: 48px;
924
+ height: 48px;
925
+ border-radius: 50%;
926
+ background: var(--lp-accent);
927
+ color: var(--lp-text-inverse);
928
+ font-family: var(--lp-font-mono);
929
+ font-size: 18px;
930
+ font-weight: 800;
931
+ display: flex;
932
+ align-items: center;
933
+ justify-content: center;
934
+ flex: none;
935
+ }
936
+
937
+ .lp-theme05-process-step-title {
938
+ font-size: var(--lp-font-size-h3);
939
+ font-weight: 800;
940
+ color: var(--lp-ink);
941
+ line-height: 1.25;
942
+ }
943
+
944
+ .lp-theme05-process-step-description {
945
+ font-size: var(--lp-font-size-body-small);
946
+ color: var(--lp-ink2);
947
+ line-height: 1.55;
948
+ }
949
+
950
+ .lp-theme05-process-arrow {
951
+ width: 24px;
952
+ flex: none;
953
+ align-self: center;
954
+ height: 2px;
955
+ background: var(--lp-border);
956
+ position: relative;
957
+ }
958
+
959
+ .lp-theme05-process-arrow::after {
960
+ content: '';
961
+ position: absolute;
962
+ right: 0;
963
+ top: 50%;
964
+ transform: translateY(-50%);
965
+ width: 0;
966
+ height: 0;
967
+ border-top: 5px solid transparent;
968
+ border-bottom: 5px solid transparent;
969
+ border-left: 7px solid var(--lp-border);
970
+ }
971
+
972
+ /* ---- 时间轴 ---- */
973
+
974
+ .lp-theme05-timeline {
975
+ padding: 92px 84px 96px;
976
+ display: flex;
977
+ flex-direction: column;
978
+ }
979
+
980
+ .lp-theme05-timeline-head {
981
+ margin-bottom: 48px;
982
+ }
983
+
984
+ .lp-theme05-timeline-track {
985
+ position: relative;
986
+ display: flex;
987
+ align-items: flex-start;
988
+ justify-content: space-between;
989
+ gap: 24px;
990
+ margin-bottom: 40px;
991
+ padding: 0 16px;
992
+ }
993
+
994
+ .lp-theme05-timeline-line {
995
+ position: absolute;
996
+ top: 20px;
997
+ left: 40px;
998
+ right: 40px;
999
+ height: 2px;
1000
+ background: var(--lp-border);
1001
+ }
1002
+
1003
+ .lp-theme05-timeline-node {
1004
+ position: relative;
1005
+ z-index: 1;
1006
+ display: flex;
1007
+ flex-direction: column;
1008
+ align-items: center;
1009
+ gap: 14px;
1010
+ flex: 1;
1011
+ }
1012
+
1013
+ .lp-theme05-timeline-dot {
1014
+ width: 42px;
1015
+ height: 42px;
1016
+ border-radius: 50%;
1017
+ display: flex;
1018
+ align-items: center;
1019
+ justify-content: center;
1020
+ font-family: var(--lp-font-mono);
1021
+ font-size: 16px;
1022
+ font-weight: 800;
1023
+ color: var(--lp-text-inverse);
1024
+ background: var(--lp-accent);
1025
+ }
1026
+
1027
+ .lp-theme05-timeline-dot--coral { background: #E85D4E; }
1028
+ .lp-theme05-timeline-dot--amber { background: #F5A623; }
1029
+ .lp-theme05-timeline-dot--teal { background: #0FA3B1; }
1030
+ .lp-theme05-timeline-dot--indigo { background: #4A58D9; }
1031
+ .lp-theme05-timeline-dot--violet { background: #7C3AED; }
1032
+
1033
+ .lp-theme05-timeline-period {
1034
+ font-family: var(--lp-font-mono);
1035
+ font-size: var(--lp-font-size-caption);
1036
+ font-weight: 700;
1037
+ color: var(--lp-ink2);
1038
+ letter-spacing: 0.04em;
1039
+ }
1040
+
1041
+ .lp-theme05-timeline-grid {
1042
+ flex: 1;
1043
+ display: flex;
1044
+ gap: 20px;
1045
+ min-height: 0;
1046
+ }
1047
+
1048
+ .lp-theme05-timeline-card {
1049
+ flex: 1;
1050
+ padding: 28px 24px;
1051
+ display: flex;
1052
+ flex-direction: column;
1053
+ gap: 14px;
1054
+ }
1055
+
1056
+ .lp-theme05-timeline-card-header {
1057
+ display: flex;
1058
+ align-items: center;
1059
+ gap: 12px;
1060
+ }
1061
+
1062
+ .lp-theme05-timeline-card-number {
1063
+ font-family: var(--lp-font-mono);
1064
+ font-size: 22px;
1065
+ font-weight: 800;
1066
+ color: var(--lp-ink3);
1067
+ }
1068
+
1069
+ .lp-theme05-timeline-badge {
1070
+ font-size: var(--lp-font-size-caption);
1071
+ font-weight: 700;
1072
+ color: var(--lp-accent);
1073
+ padding: 4px 10px;
1074
+ background: var(--lp-surface);
1075
+ border-radius: var(--lp-radius-small);
1076
+ text-transform: uppercase;
1077
+ letter-spacing: 0.06em;
1078
+ }
1079
+
1080
+ .lp-theme05-timeline-card-title {
1081
+ font-size: var(--lp-font-size-h3);
1082
+ font-weight: 800;
1083
+ color: var(--lp-ink);
1084
+ line-height: 1.25;
1085
+ }
1086
+
1087
+ .lp-theme05-timeline-card-desc {
1088
+ font-size: var(--lp-font-size-body-small);
1089
+ color: var(--lp-ink2);
1090
+ line-height: 1.55;
1091
+ }
1092
+
1093
+ .lp-theme05-timeline-footnote {
1094
+ margin-top: 24px;
1095
+ font-size: var(--lp-font-size-caption);
1096
+ color: var(--lp-ink3);
1097
+ text-align: center;
1098
+ }
1099
+
1100
+ /* ---- 矩阵 ---- */
1101
+
1102
+ .lp-theme05-matrix {
1103
+ padding: 92px 84px 96px;
1104
+ display: flex;
1105
+ flex-direction: column;
1106
+ }
1107
+
1108
+ .lp-theme05-matrix-head {
1109
+ margin-bottom: 40px;
1110
+ }
1111
+
1112
+ .lp-theme05-matrix-body {
1113
+ flex: 1;
1114
+ display: flex;
1115
+ gap: 20px;
1116
+ min-height: 0;
1117
+ }
1118
+
1119
+ .lp-theme05-matrix-yaxis {
1120
+ width: 24px;
1121
+ display: flex;
1122
+ flex-direction: column;
1123
+ align-items: center;
1124
+ justify-content: space-between;
1125
+ padding: 8px 0;
1126
+ }
1127
+
1128
+ .lp-theme05-matrix-yaxis-high,
1129
+ .lp-theme05-matrix-yaxis-low {
1130
+ font-size: var(--lp-font-size-caption);
1131
+ font-weight: 700;
1132
+ color: var(--lp-ink3);
1133
+ writing-mode: vertical-rl;
1134
+ text-orientation: mixed;
1135
+ letter-spacing: 0.04em;
1136
+ }
1137
+
1138
+ .lp-theme05-matrix-yaxis-line {
1139
+ flex: 1;
1140
+ width: 2px;
1141
+ background: var(--lp-border);
1142
+ margin: 8px 0;
1143
+ }
1144
+
1145
+ .lp-theme05-matrix-grid {
1146
+ flex: 1;
1147
+ display: grid;
1148
+ grid-template-columns: repeat(2, 1fr);
1149
+ grid-template-rows: repeat(2, 1fr);
1150
+ gap: 16px;
1151
+ min-height: 0;
1152
+ }
1153
+
1154
+ .lp-theme05-matrix-card {
1155
+ padding: 28px 24px;
1156
+ display: flex;
1157
+ flex-direction: column;
1158
+ gap: 10px;
1159
+ }
1160
+
1161
+ .lp-theme05-matrix-card-title {
1162
+ font-size: var(--lp-font-size-h3);
1163
+ font-weight: 800;
1164
+ color: var(--lp-ink);
1165
+ line-height: 1.25;
1166
+ }
1167
+
1168
+ .lp-theme05-matrix-card-desc {
1169
+ font-size: var(--lp-font-size-body-small);
1170
+ color: var(--lp-ink2);
1171
+ line-height: 1.55;
1172
+ }
1173
+
1174
+ .lp-theme05-matrix-xaxis {
1175
+ display: flex;
1176
+ align-items: center;
1177
+ justify-content: space-between;
1178
+ gap: 12px;
1179
+ margin-top: 16px;
1180
+ padding-left: 44px;
1181
+ font-size: var(--lp-font-size-caption);
1182
+ font-weight: 700;
1183
+ color: var(--lp-ink3);
1184
+ }
1185
+
1186
+ .lp-theme05-matrix-xaxis-line {
1187
+ flex: 1;
1188
+ height: 2px;
1189
+ background: var(--lp-border);
1190
+ }
1191
+
1192
+ .lp-theme05-matrix-footnote {
1193
+ margin-top: 16px;
1194
+ font-size: var(--lp-font-size-caption);
1195
+ color: var(--lp-ink3);
1196
+ text-align: center;
1197
+ }
1198
+
1199
+ /* ---- 四象限 ---- */
1200
+
1201
+ .lp-theme05-quadrant {
1202
+ padding: 92px 84px 96px;
1203
+ display: flex;
1204
+ flex-direction: column;
1205
+ }
1206
+
1207
+ .lp-theme05-quadrant-head {
1208
+ margin-bottom: 40px;
1209
+ }
1210
+
1211
+ .lp-theme05-quadrant-wrap {
1212
+ flex: 1;
1213
+ display: grid;
1214
+ grid-template-columns: 28px 1fr;
1215
+ grid-template-rows: 1fr 28px;
1216
+ gap: 12px;
1217
+ min-height: 0;
1218
+ }
1219
+
1220
+ .lp-theme05-quadrant-axis {
1221
+ display: flex;
1222
+ flex-direction: column;
1223
+ align-items: center;
1224
+ justify-content: space-between;
1225
+ gap: 8px;
1226
+ }
1227
+
1228
+ .lp-theme05-quadrant-axis--y {
1229
+ grid-row: 1 / 2;
1230
+ grid-column: 1 / 2;
1231
+ }
1232
+
1233
+ .lp-theme05-quadrant-axis--x {
1234
+ grid-row: 2 / 3;
1235
+ grid-column: 2 / 3;
1236
+ flex-direction: row;
1237
+ }
1238
+
1239
+ .lp-theme05-quadrant-axis-label {
1240
+ font-size: var(--lp-font-size-caption);
1241
+ font-weight: 700;
1242
+ color: var(--lp-accent);
1243
+ letter-spacing: 0.06em;
1244
+ text-transform: uppercase;
1245
+ }
1246
+
1247
+ .lp-theme05-quadrant-axis-end {
1248
+ font-size: var(--lp-font-size-caption);
1249
+ color: var(--lp-ink3);
1250
+ }
1251
+
1252
+ .lp-theme05-quadrant-grid {
1253
+ grid-row: 1 / 2;
1254
+ grid-column: 2 / 3;
1255
+ display: grid;
1256
+ grid-template-columns: repeat(2, 1fr);
1257
+ grid-template-rows: repeat(2, 1fr);
1258
+ gap: 16px;
1259
+ min-height: 0;
1260
+ }
1261
+
1262
+ .lp-theme05-quadrant-card {
1263
+ padding: 24px;
1264
+ display: flex;
1265
+ flex-direction: column;
1266
+ gap: 10px;
1267
+ min-height: 0;
1268
+ }
1269
+
1270
+ .lp-theme05-quadrant-card-head {
1271
+ display: flex;
1272
+ align-items: center;
1273
+ gap: 10px;
1274
+ }
1275
+
1276
+ .lp-theme05-quadrant-dot {
1277
+ width: 10px;
1278
+ height: 10px;
1279
+ border-radius: 50%;
1280
+ flex: none;
1281
+ }
1282
+
1283
+ .lp-theme05-quadrant-card-title {
1284
+ flex: 1;
1285
+ font-size: var(--lp-font-size-h3);
1286
+ font-weight: 800;
1287
+ color: var(--lp-ink);
1288
+ line-height: 1.25;
1289
+ }
1290
+
1291
+ .lp-theme05-quadrant-card-number {
1292
+ font-family: var(--lp-font-mono);
1293
+ font-size: 18px;
1294
+ font-weight: 800;
1295
+ color: var(--lp-ink3);
1296
+ }
1297
+
1298
+ .lp-theme05-quadrant-card-desc {
1299
+ font-size: var(--lp-font-size-body-small);
1300
+ color: var(--lp-ink2);
1301
+ line-height: 1.5;
1302
+ }
1303
+
1304
+ .lp-theme05-quadrant-tags {
1305
+ display: flex;
1306
+ flex-wrap: wrap;
1307
+ gap: 6px;
1308
+ margin-top: auto;
1309
+ padding-top: 8px;
1310
+ }
1311
+
1312
+ .lp-theme05-quadrant-tag {
1313
+ font-size: 10px;
1314
+ font-weight: 700;
1315
+ color: var(--lp-ink2);
1316
+ padding: 4px 8px;
1317
+ background: var(--lp-surface);
1318
+ border: 1px solid var(--lp-border);
1319
+ border-radius: var(--lp-radius-small);
1320
+ }
1321
+
1322
+ .lp-theme05-quadrant-footnote {
1323
+ margin-top: 16px;
1324
+ font-size: var(--lp-font-size-caption);
1325
+ color: var(--lp-ink3);
1326
+ text-align: center;
1327
+ }
1328
+
1329
+ /* ---- 风险研判 ---- */
1330
+
1331
+ .lp-theme05-risk {
1332
+ padding: 92px 84px 96px;
1333
+ display: flex;
1334
+ flex-direction: column;
1335
+ }
1336
+
1337
+ .lp-theme05-risk-head {
1338
+ margin-bottom: 40px;
1339
+ }
1340
+
1341
+ .lp-theme05-risk-title {
1342
+ font-size: var(--lp-font-size-display);
1343
+ font-weight: 900;
1344
+ color: var(--lp-ink);
1345
+ letter-spacing: -0.02em;
1346
+ line-height: 1.1;
1347
+ }
1348
+
1349
+ .lp-theme05-risk-subtitle {
1350
+ margin-top: 12px;
1351
+ font-size: var(--lp-font-size-body);
1352
+ color: var(--lp-ink2);
1353
+ line-height: 1.5;
1354
+ }
1355
+
1356
+ .lp-theme05-risk-grid {
1357
+ flex: 1;
1358
+ display: grid;
1359
+ grid-template-columns: repeat(2, 1fr);
1360
+ grid-template-rows: repeat(2, 1fr);
1361
+ gap: 16px;
1362
+ min-height: 0;
1363
+ }
1364
+
1365
+ .lp-theme05-risk-card {
1366
+ padding: 24px;
1367
+ display: flex;
1368
+ flex-direction: column;
1369
+ gap: 16px;
1370
+ min-height: 0;
1371
+ }
1372
+
1373
+ .lp-theme05-risk-card-header {
1374
+ display: flex;
1375
+ align-items: flex-start;
1376
+ justify-content: space-between;
1377
+ gap: 12px;
1378
+ }
1379
+
1380
+ .lp-theme05-risk-card-risk {
1381
+ font-size: var(--lp-font-size-h3);
1382
+ font-weight: 800;
1383
+ color: var(--lp-ink);
1384
+ line-height: 1.25;
1385
+ }
1386
+
1387
+ .lp-theme05-risk-card-index {
1388
+ font-family: var(--lp-font-mono);
1389
+ font-size: 18px;
1390
+ font-weight: 800;
1391
+ color: var(--lp-ink3);
1392
+ }
1393
+
1394
+ .lp-theme05-risk-card-body {
1395
+ display: flex;
1396
+ flex-direction: column;
1397
+ gap: 10px;
1398
+ }
1399
+
1400
+ .lp-theme05-risk-card-row {
1401
+ display: flex;
1402
+ gap: 10px;
1403
+ }
1404
+
1405
+ .lp-theme05-risk-card-label {
1406
+ flex: none;
1407
+ width: 64px;
1408
+ font-size: var(--lp-font-size-caption);
1409
+ font-weight: 700;
1410
+ color: var(--lp-ink3);
1411
+ text-transform: uppercase;
1412
+ letter-spacing: 0.04em;
1413
+ }
1414
+
1415
+ .lp-theme05-risk-card-impact {
1416
+ font-size: var(--lp-font-size-body-small);
1417
+ font-weight: 700;
1418
+ color: var(--lp-accent);
1419
+ }
1420
+
1421
+ .lp-theme05-risk-card-response {
1422
+ font-size: var(--lp-font-size-body-small);
1423
+ color: var(--lp-ink2);
1424
+ line-height: 1.5;
1425
+ flex: 1;
1426
+ }
1427
+
1428
+ .lp-theme05-risk-footnote {
1429
+ margin-top: 16px;
1430
+ font-size: var(--lp-font-size-caption);
1431
+ color: var(--lp-ink3);
1432
+ text-align: center;
1433
+ }
1434
+
1435
+ /* ---- 气泡图 ---- */
1436
+
1437
+ .lp-theme05-bubble {
1438
+ padding: 92px 84px 96px;
1439
+ display: flex;
1440
+ flex-direction: column;
1441
+ }
1442
+
1443
+ .lp-theme05-bubble-head {
1444
+ margin-bottom: 32px;
1445
+ }
1446
+
1447
+ .lp-theme05-bubble-chart {
1448
+ flex: 1;
1449
+ min-height: 0;
1450
+ }
1451
+
1452
+ .lp-theme05-bubble-echart {
1453
+ width: 100%;
1454
+ height: 100%;
1455
+ }
1456
+
1457
+ /* ---- 区域分布 ---- */
1458
+
1459
+ .lp-theme05-map {
1460
+ padding: 92px 84px 96px;
1461
+ display: flex;
1462
+ flex-direction: column;
1463
+ }
1464
+
1465
+ .lp-theme05-map-head {
1466
+ margin-bottom: 32px;
1467
+ }
1468
+
1469
+ .lp-theme05-map-chart {
1470
+ flex: 1;
1471
+ min-height: 0;
1472
+ }
1473
+
1474
+ .lp-theme05-map-echart {
1475
+ width: 100%;
1476
+ height: 100%;
1477
+ }
1478
+
1479
+ /* ---- 封底 ---- */
1480
+
1481
+ .lp-theme05-closing {
1482
+ padding: 92px 84px 96px;
1483
+ display: flex;
1484
+ flex-direction: column;
1485
+ justify-content: center;
1486
+ }
1487
+
1488
+ .lp-theme05-closing-claim {
1489
+ font-size: var(--lp-font-size-display-small);
1490
+ font-weight: 900;
1491
+ line-height: 1.08;
1492
+ color: var(--lp-ink);
1493
+ letter-spacing: -0.03em;
1494
+ }
1495
+
1496
+ .lp-theme05-closing-points {
1497
+ display: flex;
1498
+ gap: 24px;
1499
+ margin-top: 56px;
1500
+ }
1501
+
1502
+ .lp-theme05-closing-point {
1503
+ flex: 1;
1504
+ padding: 28px;
1505
+ background: var(--lp-surface-solid);
1506
+ border: 1px solid var(--lp-border);
1507
+ border-radius: var(--lp-radius-medium);
1508
+ }
1509
+
1510
+ .lp-theme05-closing-point-value {
1511
+ font-size: var(--lp-font-size-h2);
1512
+ font-weight: 800;
1513
+ color: var(--lp-accent);
1514
+ line-height: 1.1;
1515
+ }
1516
+
1517
+ .lp-theme05-closing-point-label {
1518
+ font-size: var(--lp-font-size-body-small);
1519
+ color: var(--lp-ink2);
1520
+ margin-top: 8px;
1521
+ line-height: 1.45;
1522
+ }
1523
+
1524
+ /* ---- 资本计分卡 ---- */
1525
+
1526
+ .lp-theme05-scorecards {
1527
+ padding: 92px 84px 96px;
1528
+ display: flex;
1529
+ flex-direction: column;
1530
+ }
1531
+
1532
+ .lp-theme05-scorecards-head {
1533
+ margin-bottom: 44px;
1534
+ }
1535
+
1536
+ .lp-theme05-scorecards-list {
1537
+ flex: 1;
1538
+ display: flex;
1539
+ flex-direction: column;
1540
+ gap: 16px;
1541
+ min-height: 0;
1542
+ }
1543
+
1544
+ .lp-theme05-scorecards-card {
1545
+ display: grid;
1546
+ grid-template-columns: 6px 1fr auto;
1547
+ align-items: center;
1548
+ gap: 24px;
1549
+ padding: 22px 28px;
1550
+ background: var(--lp-surface-solid);
1551
+ border: 1px solid var(--lp-border);
1552
+ border-radius: var(--lp-radius-medium);
1553
+ }
1554
+
1555
+ .lp-theme05-scorecards-bar {
1556
+ width: 6px;
1557
+ height: 48px;
1558
+ border-radius: var(--lp-radius-small);
1559
+ background: var(--lp-accent);
1560
+ }
1561
+
1562
+ .lp-theme05-scorecards-bar--coral { background: #E85D4E; }
1563
+ .lp-theme05-scorecards-bar--amber { background: #F5A623; }
1564
+ .lp-theme05-scorecards-bar--teal { background: #0FA3B1; }
1565
+ .lp-theme05-scorecards-bar--indigo { background: #4A58D9; }
1566
+ .lp-theme05-scorecards-bar--violet { background: #7C3AED; }
1567
+
1568
+ .lp-theme05-scorecards-label {
1569
+ font-size: var(--lp-font-size-body);
1570
+ font-weight: 700;
1571
+ color: var(--lp-ink);
1572
+ }
1573
+
1574
+ .lp-theme05-scorecards-value-group {
1575
+ display: flex;
1576
+ align-items: center;
1577
+ gap: 18px;
1578
+ }
1579
+
1580
+ .lp-theme05-scorecards-value-row {
1581
+ display: flex;
1582
+ align-items: baseline;
1583
+ gap: 8px;
1584
+ }
1585
+
1586
+ .lp-theme05-scorecards-value {
1587
+ font-family: var(--lp-font-mono);
1588
+ font-size: var(--lp-font-size-h2);
1589
+ font-weight: 800;
1590
+ color: var(--lp-ink);
1591
+ line-height: 1.1;
1592
+ }
1593
+
1594
+ .lp-theme05-scorecards-unit {
1595
+ font-size: var(--lp-font-size-body-small);
1596
+ font-weight: 600;
1597
+ color: var(--lp-ink2);
1598
+ }
1599
+
1600
+ .lp-theme05-scorecards-change {
1601
+ font-family: var(--lp-font-mono);
1602
+ font-size: var(--lp-font-size-caption);
1603
+ font-weight: 700;
1604
+ padding: 5px 10px;
1605
+ border-radius: var(--lp-radius-small);
1606
+ background: var(--lp-surface);
1607
+ color: var(--lp-ink3);
1608
+ }
1609
+
1610
+ .lp-theme05-scorecards-change.positive {
1611
+ background: rgba(34, 197, 94, 0.16);
1612
+ color: var(--lp-green);
1613
+ }
1614
+
1615
+ .lp-theme05-scorecards-change.negative {
1616
+ background: rgba(232, 93, 78, 0.16);
1617
+ color: var(--lp-red);
1618
+ }
1619
+
1620
+ /* ---- 人物档案卡 ---- */
1621
+
1622
+ .lp-theme05-profile {
1623
+ padding: 92px 84px 96px;
1624
+ display: flex;
1625
+ flex-direction: column;
1626
+ }
1627
+
1628
+ .lp-theme05-profile-head {
1629
+ margin-bottom: 40px;
1630
+ }
1631
+
1632
+ .lp-theme05-profile-body {
1633
+ flex: 1;
1634
+ display: flex;
1635
+ gap: 48px;
1636
+ align-items: center;
1637
+ min-height: 0;
1638
+ }
1639
+
1640
+ .lp-theme05-profile-avatar {
1641
+ width: 220px;
1642
+ height: 280px;
1643
+ flex: none;
1644
+ border-radius: var(--lp-radius-medium);
1645
+ overflow: hidden;
1646
+ background: var(--lp-surface);
1647
+ border: 1px solid var(--lp-border);
1648
+ box-shadow: var(--lp-shadow-sm);
1649
+ }
1650
+
1651
+ .lp-theme05-profile-avatar img {
1652
+ width: 100%;
1653
+ height: 100%;
1654
+ object-fit: cover;
1655
+ }
1656
+
1657
+ .lp-theme05-profile-main {
1658
+ flex: 1;
1659
+ display: flex;
1660
+ flex-direction: column;
1661
+ gap: 20px;
1662
+ min-height: 0;
1663
+ overflow: auto;
1664
+ }
1665
+
1666
+ .lp-theme05-profile-name {
1667
+ font-size: var(--lp-font-size-h1);
1668
+ font-weight: 800;
1669
+ color: var(--lp-ink);
1670
+ line-height: 1.15;
1671
+ }
1672
+
1673
+ .lp-theme05-profile-meta {
1674
+ display: flex;
1675
+ align-items: center;
1676
+ gap: 12px;
1677
+ font-size: var(--lp-font-size-body);
1678
+ color: var(--lp-ink2);
1679
+ }
1680
+
1681
+ .lp-theme05-profile-meta-dot {
1682
+ width: 5px;
1683
+ height: 5px;
1684
+ border-radius: 50%;
1685
+ background: var(--lp-accent);
1686
+ }
1687
+
1688
+ .lp-theme05-profile-quote {
1689
+ position: relative;
1690
+ padding: 22px 26px;
1691
+ background: var(--lp-surface);
1692
+ border-left: 4px solid var(--lp-accent);
1693
+ border-radius: 0 var(--lp-radius-medium) var(--lp-radius-medium) 0;
1694
+ font-size: var(--lp-font-size-h3);
1695
+ font-weight: 600;
1696
+ line-height: 1.45;
1697
+ color: var(--lp-ink);
1698
+ }
1699
+
1700
+ .lp-theme05-profile-quote-mark {
1701
+ position: absolute;
1702
+ top: 8px;
1703
+ left: 16px;
1704
+ font-size: 64px;
1705
+ font-weight: 900;
1706
+ color: var(--lp-accent);
1707
+ opacity: 0.18;
1708
+ line-height: 1;
1709
+ pointer-events: none;
1710
+ }
1711
+
1712
+ .lp-theme05-profile-facts {
1713
+ display: grid;
1714
+ grid-template-columns: repeat(2, 1fr);
1715
+ gap: 14px;
1716
+ }
1717
+
1718
+ .lp-theme05-profile-fact {
1719
+ padding: 16px 18px;
1720
+ background: var(--lp-surface-solid);
1721
+ border: 1px solid var(--lp-border);
1722
+ border-radius: var(--lp-radius-medium);
1723
+ }
1724
+
1725
+ .lp-theme05-profile-fact-label {
1726
+ font-size: var(--lp-font-size-caption);
1727
+ font-weight: 700;
1728
+ color: var(--lp-ink3);
1729
+ text-transform: uppercase;
1730
+ letter-spacing: 0.06em;
1731
+ }
1732
+
1733
+ .lp-theme05-profile-fact-value {
1734
+ margin-top: 6px;
1735
+ font-size: var(--lp-font-size-body);
1736
+ font-weight: 600;
1737
+ color: var(--lp-ink);
1738
+ }
1739
+
1740
+ /* ---- 典型案例 ---- */
1741
+
1742
+ .lp-theme05-case {
1743
+ padding: 92px 84px 96px;
1744
+ display: flex;
1745
+ flex-direction: column;
1746
+ }
1747
+
1748
+ .lp-theme05-case-head {
1749
+ margin-bottom: 32px;
1750
+ }
1751
+
1752
+ .lp-theme05-case-hero {
1753
+ display: flex;
1754
+ align-items: baseline;
1755
+ justify-content: space-between;
1756
+ gap: 24px;
1757
+ padding: 24px 28px;
1758
+ background: var(--lp-surface-solid);
1759
+ border: 1px solid var(--lp-border);
1760
+ border-radius: var(--lp-radius-medium);
1761
+ margin-bottom: 24px;
1762
+ }
1763
+
1764
+ .lp-theme05-case-company {
1765
+ font-size: var(--lp-font-size-h2);
1766
+ font-weight: 800;
1767
+ color: var(--lp-ink);
1768
+ }
1769
+
1770
+ .lp-theme05-case-metric {
1771
+ display: flex;
1772
+ align-items: baseline;
1773
+ gap: 10px;
1774
+ }
1775
+
1776
+ .lp-theme05-case-metric-value {
1777
+ font-family: var(--lp-font-mono);
1778
+ font-size: var(--lp-font-size-display-small);
1779
+ font-weight: 900;
1780
+ color: var(--lp-accent);
1781
+ line-height: 1;
1782
+ }
1783
+
1784
+ .lp-theme05-case-metric-label {
1785
+ font-size: var(--lp-font-size-body-small);
1786
+ font-weight: 600;
1787
+ color: var(--lp-ink2);
1788
+ }
1789
+
1790
+ .lp-theme05-case-body {
1791
+ flex: 1;
1792
+ display: grid;
1793
+ grid-template-columns: repeat(3, 1fr);
1794
+ gap: 20px;
1795
+ min-height: 0;
1796
+ }
1797
+
1798
+ .lp-theme05-case-card {
1799
+ display: flex;
1800
+ flex-direction: column;
1801
+ gap: 14px;
1802
+ padding: 26px;
1803
+ background: var(--lp-surface-solid);
1804
+ border: 1px solid var(--lp-border);
1805
+ border-radius: var(--lp-radius-medium);
1806
+ }
1807
+
1808
+ .lp-theme05-case-card-label {
1809
+ font-size: var(--lp-font-size-caption);
1810
+ font-weight: 700;
1811
+ color: var(--lp-accent);
1812
+ text-transform: uppercase;
1813
+ letter-spacing: 0.08em;
1814
+ }
1815
+
1816
+ .lp-theme05-case-card-text {
1817
+ font-size: var(--lp-font-size-body-small);
1818
+ line-height: 1.6;
1819
+ color: var(--lp-ink2);
1820
+ }
1821
+
1822
+ /* ---- 一图速览 ---- */
1823
+
1824
+ .lp-theme05-bento {
1825
+ padding: 92px 84px 96px;
1826
+ display: flex;
1827
+ flex-direction: column;
1828
+ }
1829
+
1830
+ .lp-theme05-bento-head {
1831
+ margin-bottom: 40px;
1832
+ }
1833
+
1834
+ .lp-theme05-bento-grid {
1835
+ flex: 1;
1836
+ display: grid;
1837
+ grid-template-columns: repeat(3, 1fr);
1838
+ grid-auto-rows: 1fr;
1839
+ gap: 20px;
1840
+ min-height: 0;
1841
+ }
1842
+
1843
+ .lp-theme05-bento-card {
1844
+ display: flex;
1845
+ flex-direction: column;
1846
+ justify-content: center;
1847
+ padding: 28px;
1848
+ background: var(--lp-surface-solid);
1849
+ border: 1px solid var(--lp-border);
1850
+ border-radius: var(--lp-radius-medium);
1851
+ border-top: 4px solid var(--lp-accent);
1852
+ }
1853
+
1854
+ .lp-theme05-bento-card--coral { border-top-color: #E85D4E; }
1855
+ .lp-theme05-bento-card--amber { border-top-color: #F5A623; }
1856
+ .lp-theme05-bento-card--teal { border-top-color: #0FA3B1; }
1857
+ .lp-theme05-bento-card--indigo { border-top-color: #4A58D9; }
1858
+ .lp-theme05-bento-card--violet { border-top-color: #7C3AED; }
1859
+
1860
+ .lp-theme05-bento-card--span-2 {
1861
+ grid-column: span 2;
1862
+ }
1863
+
1864
+ .lp-theme05-bento-card-title {
1865
+ font-size: var(--lp-font-size-body-small);
1866
+ font-weight: 700;
1867
+ color: var(--lp-ink3);
1868
+ text-transform: uppercase;
1869
+ letter-spacing: 0.06em;
1870
+ }
1871
+
1872
+ .lp-theme05-bento-card-value {
1873
+ margin-top: 10px;
1874
+ font-family: var(--lp-font-mono);
1875
+ font-size: var(--lp-font-size-h1);
1876
+ font-weight: 900;
1877
+ color: var(--lp-ink);
1878
+ line-height: 1.1;
1879
+ }
1880
+
1881
+ .lp-theme05-bento-card-description {
1882
+ margin-top: 10px;
1883
+ font-size: var(--lp-font-size-body-small);
1884
+ color: var(--lp-ink2);
1885
+ line-height: 1.5;
1886
+ }
1887
+
1888
+ /* ---- 编辑字段占位 ---- */
1889
+
1890
+ .lp-editable-image-placeholder {
1891
+ width: 100%;
1892
+ height: 100%;
1893
+ display: flex;
1894
+ flex-direction: column;
1895
+ align-items: center;
1896
+ justify-content: center;
1897
+ gap: 10px;
1898
+ color: var(--lp-ink3);
1899
+ border: 2px dashed var(--lp-border);
1900
+ border-radius: var(--lp-radius-medium);
1901
+ cursor: pointer;
1902
+ transition: border-color 0.15s, color 0.15s, background 0.15s;
1903
+ }
1904
+
1905
+ .lp-editable-image-placeholder:hover {
1906
+ border-color: var(--lp-accent);
1907
+ color: var(--lp-accent);
1908
+ background: var(--lp-overlay);
1909
+ }
1910
+
1911
+ /* ---- 图片画廊 ---- */
1912
+
1913
+ .lp-theme05-gallery {
1914
+ padding: 92px 84px 96px;
1915
+ display: flex;
1916
+ flex-direction: column;
1917
+ }
1918
+
1919
+ .lp-theme05-gallery-head {
1920
+ margin-bottom: 40px;
1921
+ }
1922
+
1923
+ .lp-theme05-gallery-grid {
1924
+ flex: 1;
1925
+ display: flex;
1926
+ align-items: stretch;
1927
+ gap: 24px;
1928
+ min-height: 0;
1929
+ }
1930
+
1931
+ .lp-theme05-gallery-card {
1932
+ flex: 1;
1933
+ min-width: 0;
1934
+ padding: 18px;
1935
+ display: flex;
1936
+ flex-direction: column;
1937
+ gap: 16px;
1938
+ }
1939
+
1940
+ .lp-theme05-gallery-image-wrap {
1941
+ flex: 1;
1942
+ min-height: 0;
1943
+ border-radius: var(--lp-radius-medium);
1944
+ overflow: hidden;
1945
+ background: var(--lp-surface);
1946
+ border: 1px solid var(--lp-border);
1947
+ box-shadow: var(--lp-shadow-sm);
1948
+ position: relative;
1949
+ }
1950
+
1951
+ .lp-theme05-gallery-image-wrap img,
1952
+ .lp-theme05-gallery-image-placeholder {
1953
+ width: 100%;
1954
+ height: 100%;
1955
+ object-fit: cover;
1956
+ }
1957
+
1958
+ .lp-theme05-gallery-image-placeholder {
1959
+ display: flex;
1960
+ flex-direction: column;
1961
+ align-items: center;
1962
+ justify-content: center;
1963
+ gap: 10px;
1964
+ color: var(--lp-ink3);
1965
+ border: 2px dashed var(--lp-border);
1966
+ border-radius: var(--lp-radius-medium);
1967
+ cursor: pointer;
1968
+ transition: border-color 0.15s, color 0.15s, background 0.15s;
1969
+ }
1970
+
1971
+ .lp-theme05-gallery-image-placeholder:hover {
1972
+ border-color: var(--lp-accent);
1973
+ color: var(--lp-accent);
1974
+ background: var(--lp-overlay);
1975
+ }
1976
+
1977
+ .lp-theme05-gallery-caption {
1978
+ font-size: var(--lp-font-size-body-small);
1979
+ color: var(--lp-ink2);
1980
+ text-align: center;
1981
+ line-height: 1.45;
1982
+ }
1983
+
1984
+ /* ---- 路线图 ---- */
1985
+
1986
+ .lp-theme05-roadmap {
1987
+ padding: 92px 84px 96px;
1988
+ display: flex;
1989
+ flex-direction: column;
1990
+ }
1991
+
1992
+ .lp-theme05-roadmap-head {
1993
+ margin-bottom: 44px;
1994
+ }
1995
+
1996
+ .lp-theme05-roadmap-track {
1997
+ flex: 1;
1998
+ position: relative;
1999
+ display: flex;
2000
+ align-items: flex-start;
2001
+ gap: 24px;
2002
+ min-height: 0;
2003
+ }
2004
+
2005
+ .lp-theme05-roadmap-line {
2006
+ position: absolute;
2007
+ top: 20px;
2008
+ left: 40px;
2009
+ right: 40px;
2010
+ height: 2px;
2011
+ background: var(--lp-border);
2012
+ }
2013
+
2014
+ .lp-theme05-roadmap-line::after {
2015
+ content: '';
2016
+ position: absolute;
2017
+ right: 0;
2018
+ top: 50%;
2019
+ transform: translateY(-50%);
2020
+ width: 0;
2021
+ height: 0;
2022
+ border-top: 5px solid transparent;
2023
+ border-bottom: 5px solid transparent;
2024
+ border-left: 7px solid var(--lp-border);
2025
+ }
2026
+
2027
+ .lp-theme05-roadmap-step {
2028
+ flex: 1;
2029
+ position: relative;
2030
+ z-index: 1;
2031
+ display: flex;
2032
+ flex-direction: column;
2033
+ align-items: center;
2034
+ gap: 28px;
2035
+ min-width: 0;
2036
+ }
2037
+
2038
+ .lp-theme05-roadmap-node {
2039
+ width: 42px;
2040
+ height: 42px;
2041
+ border-radius: 50%;
2042
+ display: flex;
2043
+ align-items: center;
2044
+ justify-content: center;
2045
+ font-family: var(--lp-font-mono);
2046
+ font-size: 16px;
2047
+ font-weight: 800;
2048
+ color: var(--lp-text-inverse);
2049
+ background: var(--lp-accent);
2050
+ flex: none;
2051
+ }
2052
+
2053
+ .lp-theme05-roadmap-node--coral { background: #E85D4E; }
2054
+ .lp-theme05-roadmap-node--amber { background: #F5A623; }
2055
+ .lp-theme05-roadmap-node--teal { background: #0FA3B1; }
2056
+ .lp-theme05-roadmap-node--indigo { background: #4A58D9; }
2057
+ .lp-theme05-roadmap-node--violet { background: #7C3AED; }
2058
+
2059
+ .lp-theme05-roadmap-card {
2060
+ width: 100%;
2061
+ padding: 26px 22px;
2062
+ display: flex;
2063
+ flex-direction: column;
2064
+ gap: 12px;
2065
+ border-top: 4px solid var(--lp-accent);
2066
+ }
2067
+
2068
+ .lp-theme05-roadmap-card--coral { border-top-color: #E85D4E; }
2069
+ .lp-theme05-roadmap-card--amber { border-top-color: #F5A623; }
2070
+ .lp-theme05-roadmap-card--teal { border-top-color: #0FA3B1; }
2071
+ .lp-theme05-roadmap-card--indigo { border-top-color: #4A58D9; }
2072
+ .lp-theme05-roadmap-card--violet { border-top-color: #7C3AED; }
2073
+
2074
+ .lp-theme05-roadmap-period {
2075
+ font-family: var(--lp-font-mono);
2076
+ font-size: var(--lp-font-size-caption);
2077
+ font-weight: 700;
2078
+ color: var(--lp-ink2);
2079
+ letter-spacing: 0.04em;
2080
+ }
2081
+
2082
+ .lp-theme05-roadmap-step-title {
2083
+ font-size: var(--lp-font-size-h3);
2084
+ font-weight: 800;
2085
+ color: var(--lp-ink);
2086
+ line-height: 1.25;
2087
+ }
2088
+
2089
+ .lp-theme05-roadmap-step-description {
2090
+ font-size: var(--lp-font-size-body-small);
2091
+ color: var(--lp-ink2);
2092
+ line-height: 1.55;
2093
+ }
2094
+
2095
+ /* ---- 杂志跨页 ---- */
2096
+
2097
+ .lp-theme05-editorial {
2098
+ padding: 92px 84px 96px;
2099
+ display: flex;
2100
+ flex-direction: column;
2101
+ }
2102
+
2103
+ .lp-theme05-editorial-main {
2104
+ flex: 1;
2105
+ display: flex;
2106
+ gap: 54px;
2107
+ align-items: stretch;
2108
+ min-height: 0;
2109
+ }
2110
+
2111
+ .lp-theme05-editorial-main--right {
2112
+ flex-direction: row-reverse;
2113
+ }
2114
+
2115
+ .lp-theme05-editorial-visual {
2116
+ flex: 1.15;
2117
+ min-width: 0;
2118
+ border-radius: var(--lp-radius-medium);
2119
+ overflow: hidden;
2120
+ background: var(--lp-surface);
2121
+ border: 1px solid var(--lp-border);
2122
+ box-shadow: var(--lp-shadow-sm);
2123
+ position: relative;
2124
+ }
2125
+
2126
+ .lp-theme05-editorial-visual img,
2127
+ .lp-theme05-editorial-image-placeholder {
2128
+ width: 100%;
2129
+ height: 100%;
2130
+ object-fit: cover;
2131
+ }
2132
+
2133
+ .lp-theme05-editorial-image-placeholder {
2134
+ display: flex;
2135
+ flex-direction: column;
2136
+ align-items: center;
2137
+ justify-content: center;
2138
+ gap: 10px;
2139
+ color: var(--lp-ink3);
2140
+ border: 2px dashed var(--lp-border);
2141
+ border-radius: var(--lp-radius-medium);
2142
+ cursor: pointer;
2143
+ transition: border-color 0.15s, color 0.15s, background 0.15s;
2144
+ }
2145
+
2146
+ .lp-theme05-editorial-image-placeholder:hover {
2147
+ border-color: var(--lp-accent);
2148
+ color: var(--lp-accent);
2149
+ background: var(--lp-overlay);
2150
+ }
2151
+
2152
+ .lp-theme05-editorial-body {
2153
+ flex: 1;
2154
+ min-width: 0;
2155
+ display: flex;
2156
+ flex-direction: column;
2157
+ gap: 28px;
2158
+ overflow: auto;
2159
+ }
2160
+
2161
+ .lp-theme05-editorial-head {
2162
+ display: flex;
2163
+ flex-direction: column;
2164
+ }
2165
+
2166
+ .lp-theme05-editorial-text {
2167
+ font-size: var(--lp-font-size-body);
2168
+ color: var(--lp-ink2);
2169
+ line-height: 1.7;
2170
+ white-space: pre-wrap;
2171
+ }
2172
+
2173
+ .lp-theme05-editorial-quote {
2174
+ padding: 22px 26px;
2175
+ background: var(--lp-surface);
2176
+ border-left: 4px solid var(--lp-accent);
2177
+ border-radius: 0 var(--lp-radius-medium) var(--lp-radius-medium) 0;
2178
+ }
2179
+
2180
+ .lp-theme05-editorial-quote blockquote {
2181
+ margin: 0;
2182
+ font-size: var(--lp-font-size-h3);
2183
+ font-weight: 600;
2184
+ line-height: 1.45;
2185
+ color: var(--lp-ink);
2186
+ }
2187
+
2188
+ /* ---- 光谱环形图 ---- */
2189
+
2190
+ .lp-theme05-donut {
2191
+ padding: 92px 84px 96px;
2192
+ display: flex;
2193
+ flex-direction: column;
2194
+ }
2195
+
2196
+ .lp-theme05-donut-main {
2197
+ flex: 1;
2198
+ display: flex;
2199
+ flex-direction: column;
2200
+ min-height: 0;
2201
+ }
2202
+
2203
+ .lp-theme05-donut-body {
2204
+ flex: 1;
2205
+ display: grid;
2206
+ grid-template-columns: 1.2fr 0.8fr;
2207
+ gap: 48px;
2208
+ min-height: 0;
2209
+ margin-top: 28px;
2210
+ }
2211
+
2212
+ .lp-theme05-donut-chart-wrap {
2213
+ position: relative;
2214
+ display: flex;
2215
+ align-items: center;
2216
+ justify-content: center;
2217
+ min-height: 0;
2218
+ }
2219
+
2220
+ .lp-theme05-donut-echart {
2221
+ width: 100%;
2222
+ height: 100%;
2223
+ }
2224
+
2225
+ .lp-theme05-donut-empty {
2226
+ width: 100%;
2227
+ height: 100%;
2228
+ display: flex;
2229
+ align-items: center;
2230
+ justify-content: center;
2231
+ color: var(--lp-ink3);
2232
+ border: 2px dashed var(--lp-border);
2233
+ border-radius: 50%;
2234
+ }
2235
+
2236
+ .lp-theme05-donut-center {
2237
+ position: absolute;
2238
+ top: 50%;
2239
+ left: 50%;
2240
+ transform: translate(-50%, -50%);
2241
+ text-align: center;
2242
+ pointer-events: none;
2243
+ }
2244
+
2245
+ .lp-theme05-donut-center-value {
2246
+ font-family: var(--lp-font-mono);
2247
+ font-size: var(--lp-font-size-h1);
2248
+ font-weight: 900;
2249
+ color: var(--lp-ink);
2250
+ line-height: 1;
2251
+ }
2252
+
2253
+ .lp-theme05-donut-center-unit {
2254
+ font-size: var(--lp-font-size-caption);
2255
+ font-weight: 600;
2256
+ color: var(--lp-ink2);
2257
+ margin-top: 4px;
2258
+ text-transform: uppercase;
2259
+ letter-spacing: 0.06em;
2260
+ }
2261
+
2262
+ .lp-theme05-donut-aside {
2263
+ display: flex;
2264
+ flex-direction: column;
2265
+ gap: 20px;
2266
+ min-height: 0;
2267
+ overflow: auto;
2268
+ }
2269
+
2270
+ .lp-theme05-donut-unit {
2271
+ display: flex;
2272
+ align-items: center;
2273
+ gap: 10px;
2274
+ font-size: var(--lp-font-size-body-small);
2275
+ color: var(--lp-ink2);
2276
+ }
2277
+
2278
+ .lp-theme05-donut-unit-label {
2279
+ font-weight: 700;
2280
+ color: var(--lp-ink3);
2281
+ text-transform: uppercase;
2282
+ letter-spacing: 0.06em;
2283
+ }
2284
+
2285
+ .lp-theme05-donut-legend {
2286
+ display: flex;
2287
+ flex-direction: column;
2288
+ gap: 12px;
2289
+ }
2290
+
2291
+ .lp-theme05-donut-legend-item {
2292
+ display: grid;
2293
+ grid-template-columns: 12px 1fr auto;
2294
+ align-items: center;
2295
+ gap: 14px;
2296
+ padding: 12px 14px;
2297
+ background: var(--lp-surface-solid);
2298
+ border: 1px solid var(--lp-border);
2299
+ border-radius: var(--lp-radius-medium);
2300
+ }
2301
+
2302
+ .lp-theme05-donut-legend-dot {
2303
+ width: 12px;
2304
+ height: 12px;
2305
+ border-radius: 50%;
2306
+ }
2307
+
2308
+ .lp-theme05-donut-legend-text {
2309
+ display: flex;
2310
+ flex-direction: column;
2311
+ gap: 2px;
2312
+ min-width: 0;
2313
+ }
2314
+
2315
+ .lp-theme05-donut-legend-name {
2316
+ font-size: var(--lp-font-size-body-small);
2317
+ font-weight: 700;
2318
+ color: var(--lp-ink);
2319
+ line-height: 1.35;
2320
+ }
2321
+
2322
+ .lp-theme05-donut-legend-value {
2323
+ font-family: var(--lp-font-mono);
2324
+ font-size: var(--lp-font-size-caption);
2325
+ color: var(--lp-ink3);
2326
+ }
2327
+
2328
+ .lp-theme05-donut-legend-percent {
2329
+ font-family: var(--lp-font-mono);
2330
+ font-size: var(--lp-font-size-body);
2331
+ font-weight: 800;
2332
+ color: var(--lp-ink);
2333
+ }
2334
+
2335
+ /* ---- 光谱树图 ---- */
2336
+
2337
+ .lp-theme05-treemap {
2338
+ padding: 92px 84px 96px;
2339
+ display: flex;
2340
+ flex-direction: column;
2341
+ }
2342
+
2343
+ .lp-theme05-treemap-head {
2344
+ margin-bottom: 32px;
2345
+ }
2346
+
2347
+ .lp-theme05-treemap-body {
2348
+ flex: 1;
2349
+ min-height: 0;
2350
+ }
2351
+
2352
+ .lp-theme05-treemap-echart {
2353
+ width: 100%;
2354
+ height: 100%;
2355
+ }
2356
+
2357
+ .lp-theme05-treemap-empty {
2358
+ width: 100%;
2359
+ height: 100%;
2360
+ display: flex;
2361
+ align-items: center;
2362
+ justify-content: center;
2363
+ color: var(--lp-ink3);
2364
+ border: 2px dashed var(--lp-border);
2365
+ border-radius: var(--lp-radius-medium);
2366
+ }
2367
+
2368
+ /* ---- 光谱雷达图 ---- */
2369
+
2370
+ .lp-theme05-radar {
2371
+ padding: 92px 84px 96px;
2372
+ display: flex;
2373
+ flex-direction: column;
2374
+ }
2375
+
2376
+ .lp-theme05-radar-head {
2377
+ margin-bottom: 32px;
2378
+ }
2379
+
2380
+ .lp-theme05-radar-body {
2381
+ flex: 1;
2382
+ min-height: 0;
2383
+ }
2384
+
2385
+ .lp-theme05-radar-echart {
2386
+ width: 100%;
2387
+ height: 100%;
2388
+ }
2389
+
2390
+ .lp-theme05-radar-empty {
2391
+ width: 100%;
2392
+ height: 100%;
2393
+ display: flex;
2394
+ align-items: center;
2395
+ justify-content: center;
2396
+ color: var(--lp-ink3);
2397
+ border: 2px dashed var(--lp-border);
2398
+ border-radius: var(--lp-radius-medium);
2399
+ }
2400
+
2401
+ /* ---- 封面变体 ---- */
2402
+
2403
+ .lp-theme05-cover-ex {
2404
+ padding: 92px 84px 96px;
2405
+ display: grid;
2406
+ grid-template-columns: 1.1fr 0.9fr;
2407
+ gap: 64px;
2408
+ align-items: center;
2409
+ }
2410
+
2411
+ .lp-theme05-cover-ex-main {
2412
+ display: flex;
2413
+ flex-direction: column;
2414
+ }
2415
+
2416
+ .lp-theme05-cover-ex-title {
2417
+ font-size: var(--lp-font-size-display-small);
2418
+ font-weight: 900;
2419
+ line-height: 1.05;
2420
+ color: var(--lp-ink);
2421
+ letter-spacing: -0.03em;
2422
+ margin-top: 18px;
2423
+ }
2424
+
2425
+ .lp-theme05-cover-ex-bar {
2426
+ position: relative;
2427
+ margin-top: 42px;
2428
+ }
2429
+
2430
+ .lp-theme05-cover-ex-stats {
2431
+ display: grid;
2432
+ grid-template-columns: repeat(2, 1fr);
2433
+ gap: 20px;
2434
+ }
2435
+
2436
+ .lp-theme05-cover-ex-stat {
2437
+ background: var(--lp-surface-solid);
2438
+ border: 1px solid var(--lp-border);
2439
+ border-radius: var(--lp-radius-medium);
2440
+ padding: 28px;
2441
+ box-shadow: var(--lp-shadow-sm);
2442
+ border-top: 5px solid var(--lp-accent);
2443
+ }
2444
+
2445
+ .lp-theme05-cover-ex-stat--amber { border-top-color: var(--lp-amber); }
2446
+ .lp-theme05-cover-ex-stat--teal { border-top-color: var(--lp-teal); }
2447
+ .lp-theme05-cover-ex-stat--indigo { border-top-color: var(--lp-indigo); }
2448
+ .lp-theme05-cover-ex-stat--violet { border-top-color: var(--lp-violet); }
2449
+
2450
+ .lp-theme05-cover-ex-stat-value {
2451
+ font-size: var(--lp-font-size-h2);
2452
+ font-weight: 800;
2453
+ line-height: 1.1;
2454
+ color: var(--lp-ink);
2455
+ }
2456
+
2457
+ .lp-theme05-cover-ex-stat-label {
2458
+ font-size: var(--lp-font-size-caption);
2459
+ font-weight: 600;
2460
+ color: var(--lp-ink3);
2461
+ text-transform: uppercase;
2462
+ letter-spacing: 0.08em;
2463
+ margin-top: 8px;
2464
+ }
2465
+
2466
+ .lp-theme05-cover-ex2 {
2467
+ padding: 92px 84px 96px;
2468
+ display: flex;
2469
+ flex-direction: column;
2470
+ justify-content: space-between;
2471
+ position: relative;
2472
+ overflow: hidden;
2473
+ }
2474
+
2475
+ .lp-theme05-cover-ex2-bg-number {
2476
+ position: absolute;
2477
+ top: 50%;
2478
+ right: -40px;
2479
+ transform: translateY(-50%);
2480
+ font-family: var(--lp-font-mono);
2481
+ font-size: 320px;
2482
+ font-weight: 900;
2483
+ line-height: 1;
2484
+ color: var(--lp-ink);
2485
+ opacity: 0.04;
2486
+ pointer-events: none;
2487
+ letter-spacing: -0.04em;
2488
+ }
2489
+
2490
+ .lp-theme05-cover-ex2-top {
2491
+ display: flex;
2492
+ align-items: flex-start;
2493
+ justify-content: space-between;
2494
+ gap: 32px;
2495
+ }
2496
+
2497
+ .lp-theme05-cover-ex2-highlights {
2498
+ display: flex;
2499
+ flex-wrap: wrap;
2500
+ gap: 10px;
2501
+ max-width: 520px;
2502
+ justify-content: flex-end;
2503
+ }
2504
+
2505
+ .lp-theme05-cover-ex2-highlight {
2506
+ padding: 8px 16px;
2507
+ background: var(--lp-accent);
2508
+ color: var(--lp-text-inverse);
2509
+ border-radius: 999px;
2510
+ font-size: var(--lp-font-size-caption);
2511
+ font-weight: 700;
2512
+ text-transform: uppercase;
2513
+ letter-spacing: 0.06em;
2514
+ }
2515
+
2516
+ .lp-theme05-cover-ex2-highlight--amber { background: var(--lp-amber); }
2517
+ .lp-theme05-cover-ex2-highlight--teal { background: var(--lp-teal); }
2518
+ .lp-theme05-cover-ex2-highlight--indigo { background: var(--lp-indigo); }
2519
+ .lp-theme05-cover-ex2-highlight--violet { background: var(--lp-violet); }
2520
+
2521
+ .lp-theme05-cover-ex2-main {
2522
+ max-width: 860px;
2523
+ z-index: 1;
2524
+ }
2525
+
2526
+ .lp-theme05-cover-ex2-title {
2527
+ font-size: var(--lp-font-size-display);
2528
+ font-weight: 900;
2529
+ line-height: 1.02;
2530
+ color: var(--lp-ink);
2531
+ letter-spacing: -0.03em;
2532
+ }
2533
+
2534
+ .lp-theme05-cover-hero {
2535
+ position: relative;
2536
+ display: flex;
2537
+ flex-direction: column;
2538
+ justify-content: flex-end;
2539
+ padding: 92px 84px 96px;
2540
+ overflow: hidden;
2541
+ }
2542
+
2543
+ .lp-theme05-cover-hero-media {
2544
+ position: absolute;
2545
+ inset: 0;
2546
+ z-index: 0;
2547
+ }
2548
+
2549
+ .lp-theme05-cover-hero-media img {
2550
+ width: 100%;
2551
+ height: 100%;
2552
+ object-fit: cover;
2553
+ }
2554
+
2555
+ .lp-theme05-cover-hero-overlay {
2556
+ position: absolute;
2557
+ inset: 0;
2558
+ z-index: 1;
2559
+ background: linear-gradient(180deg, rgba(21, 21, 26, 0.32) 0%, rgba(21, 21, 26, 0.82) 100%);
2560
+ }
2561
+
2562
+ .lp-theme05-cover-hero-overlay--coral {
2563
+ background: linear-gradient(180deg, rgba(232, 93, 78, 0.25) 0%, rgba(21, 21, 26, 0.85) 100%);
2564
+ }
2565
+ .lp-theme05-cover-hero-overlay--amber {
2566
+ background: linear-gradient(180deg, rgba(245, 166, 35, 0.25) 0%, rgba(21, 21, 26, 0.85) 100%);
2567
+ }
2568
+ .lp-theme05-cover-hero-overlay--teal {
2569
+ background: linear-gradient(180deg, rgba(15, 163, 177, 0.25) 0%, rgba(21, 21, 26, 0.85) 100%);
2570
+ }
2571
+ .lp-theme05-cover-hero-overlay--indigo {
2572
+ background: linear-gradient(180deg, rgba(74, 88, 217, 0.25) 0%, rgba(21, 21, 26, 0.85) 100%);
2573
+ }
2574
+ .lp-theme05-cover-hero-overlay--violet {
2575
+ background: linear-gradient(180deg, rgba(124, 58, 237, 0.25) 0%, rgba(21, 21, 26, 0.85) 100%);
2576
+ }
2577
+
2578
+ .lp-theme05-cover-hero-placeholder {
2579
+ width: 100%;
2580
+ height: 100%;
2581
+ display: flex;
2582
+ align-items: center;
2583
+ justify-content: center;
2584
+ color: var(--lp-ink3);
2585
+ border: 2px dashed var(--lp-border);
2586
+ background: var(--lp-surface);
2587
+ }
2588
+
2589
+ .lp-theme05-cover-hero-content {
2590
+ position: relative;
2591
+ z-index: 2;
2592
+ max-width: 880px;
2593
+ }
2594
+
2595
+ .lp-theme05-cover-hero-title {
2596
+ font-size: var(--lp-font-size-display);
2597
+ font-weight: 900;
2598
+ line-height: 1.05;
2599
+ color: var(--lp-white-alpha-90);
2600
+ letter-spacing: -0.03em;
2601
+ margin-top: 18px;
2602
+ }
2603
+
2604
+ .lp-theme05-cover-hero-subtitle {
2605
+ font-size: var(--lp-font-size-body);
2606
+ font-weight: 400;
2607
+ line-height: 1.5;
2608
+ color: var(--lp-white-alpha-85);
2609
+ margin-top: 18px;
2610
+ }
2611
+
2612
+ .lp-theme05-cover-hero-footer {
2613
+ position: relative;
2614
+ z-index: 2;
2615
+ color: var(--lp-white-alpha-80);
2616
+ border-top-color: rgba(255, 255, 255, 0.16);
2617
+ }
2618
+
2619
+ /* ---- 章节变体 ---- */
2620
+
2621
+ .lp-theme05-chapter-big {
2622
+ padding: 92px 84px 96px;
2623
+ display: flex;
2624
+ flex-direction: column;
2625
+ justify-content: center;
2626
+ }
2627
+
2628
+ .lp-theme05-chapter-big-content {
2629
+ max-width: 980px;
2630
+ }
2631
+
2632
+ .lp-theme05-chapter-big-title {
2633
+ font-size: var(--lp-font-size-display);
2634
+ font-weight: 900;
2635
+ line-height: 1.02;
2636
+ color: var(--lp-ink);
2637
+ letter-spacing: -0.03em;
2638
+ margin-top: 18px;
2639
+ }
2640
+
2641
+ .lp-theme05-chapter-big-subtitle {
2642
+ font-size: var(--lp-font-size-h2);
2643
+ font-weight: 400;
2644
+ line-height: 1.35;
2645
+ color: var(--lp-ink2);
2646
+ margin-top: 24px;
2647
+ }
2648
+
2649
+ .lp-theme05-chapter-split {
2650
+ display: grid;
2651
+ grid-template-columns: 0.45fr 0.55fr;
2652
+ overflow: hidden;
2653
+ }
2654
+
2655
+ .lp-theme05-chapter-split-left {
2656
+ display: flex;
2657
+ align-items: center;
2658
+ justify-content: center;
2659
+ background: var(--lp-accent);
2660
+ }
2661
+
2662
+ .lp-theme05-chapter-split-number {
2663
+ font-family: var(--lp-font-mono);
2664
+ font-size: 200px;
2665
+ font-weight: 900;
2666
+ line-height: 1;
2667
+ color: var(--lp-text-inverse);
2668
+ opacity: 0.92;
2669
+ }
2670
+
2671
+ .lp-theme05-chapter-split-right {
2672
+ display: flex;
2673
+ flex-direction: column;
2674
+ justify-content: center;
2675
+ padding: 92px 84px 96px;
2676
+ }
2677
+
2678
+ .lp-theme05-chapter-split-title {
2679
+ font-size: var(--lp-font-size-display-small);
2680
+ font-weight: 900;
2681
+ line-height: 1.08;
2682
+ color: var(--lp-ink);
2683
+ letter-spacing: -0.03em;
2684
+ margin-top: 18px;
2685
+ }
2686
+
2687
+ .lp-theme05-chapter-numbered {
2688
+ padding: 92px 84px 96px;
2689
+ display: flex;
2690
+ flex-direction: column;
2691
+ justify-content: center;
2692
+ align-items: center;
2693
+ text-align: center;
2694
+ }
2695
+
2696
+ .lp-theme05-chapter-numbered-content {
2697
+ max-width: 840px;
2698
+ }
2699
+
2700
+ .lp-theme05-chapter-numbered-number {
2701
+ font-family: var(--lp-font-mono);
2702
+ font-size: var(--lp-font-size-caption);
2703
+ font-weight: 700;
2704
+ color: var(--lp-accent);
2705
+ letter-spacing: 0.16em;
2706
+ text-transform: uppercase;
2707
+ }
2708
+
2709
+ .lp-theme05-chapter-numbered-title {
2710
+ font-size: var(--lp-font-size-display-small);
2711
+ font-weight: 900;
2712
+ line-height: 1.1;
2713
+ color: var(--lp-ink);
2714
+ letter-spacing: -0.03em;
2715
+ margin-top: 24px;
2716
+ }
2717
+
2718
+ .lp-theme05-chapter-numbered .lp-theme05-underline {
2719
+ margin: 28px auto 0;
2720
+ }
2721
+
2722
+ .lp-theme05-chapter-image {
2723
+ position: relative;
2724
+ display: flex;
2725
+ flex-direction: column;
2726
+ justify-content: center;
2727
+ padding: 92px 84px 96px;
2728
+ overflow: hidden;
2729
+ }
2730
+
2731
+ .lp-theme05-chapter-image-media {
2732
+ position: absolute;
2733
+ inset: 0;
2734
+ z-index: 0;
2735
+ }
2736
+
2737
+ .lp-theme05-chapter-image-media img {
2738
+ width: 100%;
2739
+ height: 100%;
2740
+ object-fit: cover;
2741
+ }
2742
+
2743
+ .lp-theme05-chapter-image-placeholder {
2744
+ width: 100%;
2745
+ height: 100%;
2746
+ display: flex;
2747
+ align-items: center;
2748
+ justify-content: center;
2749
+ color: var(--lp-ink3);
2750
+ border: 2px dashed var(--lp-border);
2751
+ background: var(--lp-surface);
2752
+ }
2753
+
2754
+ .lp-theme05-chapter-image-overlay {
2755
+ position: absolute;
2756
+ inset: 0;
2757
+ z-index: 1;
2758
+ background: linear-gradient(90deg, rgba(21, 21, 26, 0.82) 0%, rgba(21, 21, 26, 0.42) 100%);
2759
+ }
2760
+
2761
+ .lp-theme05-chapter-image-content {
2762
+ position: relative;
2763
+ z-index: 2;
2764
+ max-width: 720px;
2765
+ }
2766
+
2767
+ .lp-theme05-chapter-image-number {
2768
+ font-family: var(--lp-font-mono);
2769
+ font-size: var(--lp-font-size-caption);
2770
+ font-weight: 700;
2771
+ color: var(--lp-accent);
2772
+ letter-spacing: 0.16em;
2773
+ text-transform: uppercase;
2774
+ }
2775
+
2776
+ .lp-theme05-chapter-image-title {
2777
+ font-size: var(--lp-font-size-display-small);
2778
+ font-weight: 900;
2779
+ line-height: 1.08;
2780
+ color: var(--lp-white-alpha-90);
2781
+ letter-spacing: -0.03em;
2782
+ margin-top: 18px;
2783
+ }
2784
+
2785
+ .lp-theme05-chapter-image-subtitle {
2786
+ font-size: var(--lp-font-size-body);
2787
+ font-weight: 400;
2788
+ line-height: 1.5;
2789
+ color: var(--lp-white-alpha-85);
2790
+ margin-top: 18px;
2791
+ }
2792
+
2793
+ /* ---- 数据指标变体 ---- */
2794
+
2795
+ .lp-theme05-metric-hero {
2796
+ padding: 92px 84px 96px;
2797
+ display: flex;
2798
+ flex-direction: column;
2799
+ justify-content: center;
2800
+ align-items: center;
2801
+ text-align: center;
2802
+ }
2803
+
2804
+ .lp-theme05-metric-hero-content {
2805
+ max-width: 900px;
2806
+ }
2807
+
2808
+ .lp-theme05-metric-hero-value-wrap {
2809
+ display: flex;
2810
+ align-items: baseline;
2811
+ justify-content: center;
2812
+ gap: 18px;
2813
+ margin-top: 48px;
2814
+ }
2815
+
2816
+ .lp-theme05-metric-hero-value {
2817
+ font-size: 140px;
2818
+ font-weight: 900;
2819
+ line-height: 1;
2820
+ color: var(--lp-accent);
2821
+ letter-spacing: -0.04em;
2822
+ }
2823
+
2824
+ .lp-theme05-metric-hero-unit {
2825
+ font-size: var(--lp-font-size-h2);
2826
+ font-weight: 700;
2827
+ color: var(--lp-ink2);
2828
+ }
2829
+
2830
+ .lp-theme05-metric-hero-change {
2831
+ display: inline-flex;
2832
+ align-items: center;
2833
+ gap: 12px;
2834
+ margin-top: 28px;
2835
+ padding: 12px 20px;
2836
+ background: var(--lp-surface-solid);
2837
+ border: 1px solid var(--lp-border);
2838
+ border-radius: var(--lp-radius-medium);
2839
+ }
2840
+
2841
+ .lp-theme05-metric-hero-change-value {
2842
+ font-family: var(--lp-font-mono);
2843
+ font-size: var(--lp-font-size-h3);
2844
+ font-weight: 800;
2845
+ color: var(--lp-accent);
2846
+ }
2847
+
2848
+ .lp-theme05-metric-hero-change-label {
2849
+ font-size: var(--lp-font-size-body-small);
2850
+ color: var(--lp-ink2);
2851
+ }
2852
+
2853
+ .lp-theme05-metric-delta {
2854
+ padding: 92px 84px 96px;
2855
+ display: flex;
2856
+ flex-direction: column;
2857
+ }
2858
+
2859
+ .lp-theme05-metric-delta-main {
2860
+ flex: 1;
2861
+ display: flex;
2862
+ align-items: center;
2863
+ justify-content: center;
2864
+ gap: 48px;
2865
+ min-height: 0;
2866
+ margin-top: 36px;
2867
+ }
2868
+
2869
+ .lp-theme05-metric-delta-current,
2870
+ .lp-theme05-metric-delta-previous {
2871
+ flex: 1;
2872
+ max-width: 340px;
2873
+ text-align: center;
2874
+ padding: 40px;
2875
+ background: var(--lp-surface-solid);
2876
+ border: 1px solid var(--lp-border);
2877
+ border-radius: var(--lp-radius-medium);
2878
+ }
2879
+
2880
+ .lp-theme05-metric-delta-current {
2881
+ border-top: 6px solid var(--lp-accent);
2882
+ }
2883
+
2884
+ .lp-theme05-metric-delta-previous {
2885
+ border-top: 6px solid var(--lp-accent-cool);
2886
+ }
2887
+
2888
+ .lp-theme05-metric-delta-label {
2889
+ font-size: var(--lp-font-size-body-small);
2890
+ font-weight: 600;
2891
+ color: var(--lp-ink3);
2892
+ text-transform: uppercase;
2893
+ letter-spacing: 0.08em;
2894
+ }
2895
+
2896
+ .lp-theme05-metric-delta-value {
2897
+ font-size: var(--lp-font-size-display-small);
2898
+ font-weight: 900;
2899
+ line-height: 1.1;
2900
+ color: var(--lp-accent);
2901
+ margin-top: 12px;
2902
+ }
2903
+
2904
+ .lp-theme05-metric-delta-value-previous {
2905
+ font-size: var(--lp-font-size-h1);
2906
+ font-weight: 800;
2907
+ line-height: 1.1;
2908
+ color: var(--lp-ink);
2909
+ margin-top: 12px;
2910
+ }
2911
+
2912
+ .lp-theme05-metric-delta-divider {
2913
+ display: flex;
2914
+ flex-direction: column;
2915
+ align-items: center;
2916
+ gap: 8px;
2917
+ min-width: 160px;
2918
+ }
2919
+
2920
+ .lp-theme05-metric-delta-delta {
2921
+ font-family: var(--lp-font-mono);
2922
+ font-size: var(--lp-font-size-h1);
2923
+ font-weight: 900;
2924
+ color: var(--lp-accent);
2925
+ }
2926
+
2927
+ .lp-theme05-metric-delta-delta-label {
2928
+ font-size: var(--lp-font-size-caption);
2929
+ font-weight: 600;
2930
+ color: var(--lp-ink3);
2931
+ text-transform: uppercase;
2932
+ letter-spacing: 0.08em;
2933
+ }
2934
+
2935
+ .lp-theme05-metric-delta-sparkline {
2936
+ height: 120px;
2937
+ margin-top: 36px;
2938
+ background: var(--lp-surface-solid);
2939
+ border: 1px solid var(--lp-border);
2940
+ border-radius: var(--lp-radius-medium);
2941
+ padding: 16px;
2942
+ }
2943
+
2944
+ .lp-theme05-metric-capacity {
2945
+ padding: 92px 84px 96px;
2946
+ display: flex;
2947
+ flex-direction: column;
2948
+ }
2949
+
2950
+ .lp-theme05-metric-capacity-list {
2951
+ flex: 1;
2952
+ display: flex;
2953
+ flex-direction: column;
2954
+ justify-content: center;
2955
+ gap: 28px;
2956
+ min-height: 0;
2957
+ margin-top: 36px;
2958
+ }
2959
+
2960
+ .lp-theme05-metric-capacity-item {
2961
+ background: var(--lp-surface-solid);
2962
+ border: 1px solid var(--lp-border);
2963
+ border-radius: var(--lp-radius-medium);
2964
+ padding: 22px 28px;
2965
+ }
2966
+
2967
+ .lp-theme05-metric-capacity-head {
2968
+ display: flex;
2969
+ align-items: center;
2970
+ justify-content: space-between;
2971
+ margin-bottom: 14px;
2972
+ }
2973
+
2974
+ .lp-theme05-metric-capacity-name {
2975
+ font-size: var(--lp-font-size-body);
2976
+ font-weight: 700;
2977
+ color: var(--lp-ink);
2978
+ }
2979
+
2980
+ .lp-theme05-metric-capacity-number {
2981
+ font-family: var(--lp-font-mono);
2982
+ font-size: var(--lp-font-size-h3);
2983
+ font-weight: 800;
2984
+ color: var(--lp-accent);
2985
+ }
2986
+
2987
+ .lp-theme05-metric-capacity-track {
2988
+ height: 10px;
2989
+ background: var(--lp-surface);
2990
+ border-radius: 999px;
2991
+ overflow: hidden;
2992
+ }
2993
+
2994
+ .lp-theme05-metric-capacity-fill {
2995
+ height: 100%;
2996
+ border-radius: 999px;
2997
+ transition: width 0.6s ease;
2998
+ }
2999
+
3000
+ /* ---- 图表变体 ---- */
3001
+
3002
+ .lp-theme05-chart-share,
3003
+ .lp-theme05-chart-stacked,
3004
+ .lp-theme05-chart-curve,
3005
+ .lp-theme05-chart-peak,
3006
+ .lp-theme05-chart-peaktrough,
3007
+ .lp-theme05-chart-cumulative {
3008
+ padding: 92px 84px 96px;
3009
+ display: grid;
3010
+ grid-template-columns: 1.4fr 0.6fr;
3011
+ grid-template-rows: 1fr auto;
3012
+ gap: 48px;
3013
+ }
3014
+
3015
+ .lp-theme05-chart-share-main,
3016
+ .lp-theme05-chart-stacked-main,
3017
+ .lp-theme05-chart-curve-main,
3018
+ .lp-theme05-chart-peak-main,
3019
+ .lp-theme05-chart-peaktrough-main,
3020
+ .lp-theme05-chart-cumulative-main {
3021
+ display: flex;
3022
+ flex-direction: column;
3023
+ min-height: 0;
3024
+ }
3025
+
3026
+ .lp-theme05-chart-share-canvas,
3027
+ .lp-theme05-chart-stacked-canvas,
3028
+ .lp-theme05-chart-curve-canvas,
3029
+ .lp-theme05-chart-peak-canvas,
3030
+ .lp-theme05-chart-peaktrough-canvas,
3031
+ .lp-theme05-chart-cumulative-canvas {
3032
+ flex: 1;
3033
+ min-height: 0;
3034
+ margin-top: 24px;
3035
+ }
3036
+
3037
+ .lp-theme05-chart-share-echart,
3038
+ .lp-theme05-chart-stacked-echart,
3039
+ .lp-theme05-chart-curve-echart,
3040
+ .lp-theme05-chart-peak-echart,
3041
+ .lp-theme05-chart-peaktrough-echart,
3042
+ .lp-theme05-chart-cumulative-echart {
3043
+ width: 100%;
3044
+ height: 100%;
3045
+ }
3046
+
3047
+ .lp-theme05-chart-share-aside,
3048
+ .lp-theme05-chart-stacked-aside,
3049
+ .lp-theme05-chart-curve-aside,
3050
+ .lp-theme05-chart-peak-aside,
3051
+ .lp-theme05-chart-peaktrough-aside,
3052
+ .lp-theme05-chart-cumulative-aside {
3053
+ display: flex;
3054
+ flex-direction: column;
3055
+ gap: 20px;
3056
+ padding-top: 52px;
3057
+ }
3058
+
3059
+ .lp-theme05-chart-share-empty,
3060
+ .lp-theme05-chart-stacked-empty,
3061
+ .lp-theme05-chart-curve-empty,
3062
+ .lp-theme05-chart-peak-empty,
3063
+ .lp-theme05-chart-peaktrough-empty,
3064
+ .lp-theme05-chart-cumulative-empty {
3065
+ width: 100%;
3066
+ height: 100%;
3067
+ display: flex;
3068
+ align-items: center;
3069
+ justify-content: center;
3070
+ color: var(--lp-ink3);
3071
+ border: 2px dashed var(--lp-border);
3072
+ border-radius: var(--lp-radius-medium);
3073
+ }
3074
+
3075
+ /* ---- Phase B / C 补齐与视觉统一 ---- */
3076
+
3077
+ .lp-theme05-pill {
3078
+ display: inline-flex;
3079
+ align-items: center;
3080
+ justify-content: center;
3081
+ padding: 4px 12px;
3082
+ background: var(--lp-accent);
3083
+ color: var(--lp-text-inverse);
3084
+ border-radius: 999px;
3085
+ font-style: normal;
3086
+ font-weight: 700;
3087
+ font-size: 0.85em;
3088
+ line-height: 1.2;
3089
+ vertical-align: middle;
3090
+ letter-spacing: -0.01em;
3091
+ }
3092
+
3093
+ .lp-theme05-bubble-title,
3094
+ .lp-theme05-map-title,
3095
+ .lp-theme05-matrix-title,
3096
+ .lp-theme05-quadrant-title,
3097
+ .lp-theme05-timeline-title {
3098
+ font-size: var(--lp-font-size-h1);
3099
+ font-weight: 800;
3100
+ line-height: 1.12;
3101
+ color: var(--lp-ink);
3102
+ letter-spacing: -0.02em;
3103
+ }
3104
+
3105
+ .lp-theme05-bubble-subtitle,
3106
+ .lp-theme05-map-subtitle,
3107
+ .lp-theme05-matrix-subtitle,
3108
+ .lp-theme05-quadrant-subtitle,
3109
+ .lp-theme05-timeline-subtitle {
3110
+ font-size: var(--lp-font-size-body);
3111
+ font-weight: 400;
3112
+ line-height: 1.5;
3113
+ color: var(--lp-ink2);
3114
+ margin-top: 14px;
3115
+ }
3116
+
3117
+ /* 漏斗图 */
3118
+
3119
+ .lp-theme05-chart-funnel {
3120
+ padding: 92px 84px 96px;
3121
+ display: grid;
3122
+ grid-template-columns: 1.4fr 0.6fr;
3123
+ gap: 48px;
3124
+ }
3125
+
3126
+ .lp-theme05-chart-funnel-main {
3127
+ display: flex;
3128
+ flex-direction: column;
3129
+ min-height: 0;
3130
+ }
3131
+
3132
+ .lp-theme05-chart-funnel-canvas {
3133
+ flex: 1;
3134
+ min-height: 260px;
3135
+ margin-top: 24px;
3136
+ }
3137
+
3138
+ .lp-theme05-chart-funnel-echart {
3139
+ width: 100%;
3140
+ height: 100%;
3141
+ }
3142
+
3143
+ .lp-theme05-chart-funnel-empty {
3144
+ width: 100%;
3145
+ height: 100%;
3146
+ min-height: 260px;
3147
+ display: flex;
3148
+ align-items: center;
3149
+ justify-content: center;
3150
+ color: var(--lp-ink3);
3151
+ border: 2px dashed var(--lp-border);
3152
+ border-radius: var(--lp-radius-lg);
3153
+ }
3154
+
3155
+ .lp-theme05-chart-funnel-aside {
3156
+ display: flex;
3157
+ flex-direction: column;
3158
+ gap: 20px;
3159
+ padding-top: 52px;
3160
+ }
3161
+
3162
+ /* 环形仪表盘 */
3163
+
3164
+ .lp-theme05-chart-gauge {
3165
+ padding: 92px 84px 96px;
3166
+ display: flex;
3167
+ flex-direction: column;
3168
+ }
3169
+
3170
+ .lp-theme05-chart-gauge-content {
3171
+ flex: 1;
3172
+ display: flex;
3173
+ flex-direction: column;
3174
+ min-height: 0;
3175
+ }
3176
+
3177
+ .lp-theme05-chart-gauge-canvas {
3178
+ flex: 1;
3179
+ position: relative;
3180
+ min-height: 260px;
3181
+ margin-top: 24px;
3182
+ }
3183
+
3184
+ .lp-theme05-chart-gauge-echart {
3185
+ width: 100%;
3186
+ height: 100%;
3187
+ }
3188
+
3189
+ .lp-theme05-chart-gauge-center {
3190
+ position: absolute;
3191
+ top: 50%;
3192
+ left: 50%;
3193
+ transform: translate(-50%, -50%);
3194
+ text-align: center;
3195
+ pointer-events: none;
3196
+ }
3197
+
3198
+ .lp-theme05-chart-gauge-value {
3199
+ font-family: var(--lp-font-mono);
3200
+ font-size: var(--lp-font-size-h1);
3201
+ font-weight: 900;
3202
+ color: var(--lp-ink);
3203
+ line-height: 1;
3204
+ }
3205
+
3206
+ .lp-theme05-chart-gauge-label {
3207
+ font-size: var(--lp-font-size-caption);
3208
+ font-weight: 600;
3209
+ color: var(--lp-ink2);
3210
+ margin-top: 4px;
3211
+ text-transform: uppercase;
3212
+ letter-spacing: 0.06em;
3213
+ }
3214
+
3215
+ /* 左右对比 */
3216
+
3217
+ .lp-theme05-comparison-v1 {
3218
+ padding: 92px 84px 96px;
3219
+ display: flex;
3220
+ flex-direction: column;
3221
+ }
3222
+
3223
+ .lp-theme05-comparison-v1-head {
3224
+ margin-bottom: 44px;
3225
+ }
3226
+
3227
+ .lp-theme05-comparison-v1-main {
3228
+ flex: 1;
3229
+ display: flex;
3230
+ align-items: stretch;
3231
+ justify-content: center;
3232
+ gap: 40px;
3233
+ min-height: 0;
3234
+ }
3235
+
3236
+ .lp-theme05-comparison-v1-card {
3237
+ flex: 1;
3238
+ max-width: 420px;
3239
+ padding: 44px 40px;
3240
+ background: var(--lp-surface-solid);
3241
+ border: 1px solid var(--lp-border);
3242
+ border-radius: var(--lp-radius-lg);
3243
+ box-shadow: var(--lp-shadow-sm);
3244
+ border-top: 6px solid var(--lp-accent);
3245
+ display: flex;
3246
+ flex-direction: column;
3247
+ gap: 24px;
3248
+ }
3249
+
3250
+ .lp-theme05-comparison-v1-card--coral { border-top-color: var(--lp-coral); }
3251
+ .lp-theme05-comparison-v1-card--amber { border-top-color: var(--lp-amber); }
3252
+ .lp-theme05-comparison-v1-card--teal { border-top-color: var(--lp-teal); }
3253
+ .lp-theme05-comparison-v1-card--indigo { border-top-color: var(--lp-indigo); }
3254
+ .lp-theme05-comparison-v1-card--violet { border-top-color: var(--lp-violet); }
3255
+
3256
+ .lp-theme05-comparison-v1-card-title {
3257
+ font-size: var(--lp-font-size-h3);
3258
+ font-weight: 800;
3259
+ color: var(--lp-ink);
3260
+ line-height: 1.25;
3261
+ }
3262
+
3263
+ .lp-theme05-comparison-v1-list {
3264
+ list-style: none;
3265
+ padding: 0;
3266
+ margin: 0;
3267
+ display: flex;
3268
+ flex-direction: column;
3269
+ gap: 14px;
3270
+ }
3271
+
3272
+ .lp-theme05-comparison-v1-item {
3273
+ font-size: var(--lp-font-size-body);
3274
+ line-height: 1.5;
3275
+ color: var(--lp-ink2);
3276
+ padding-left: 24px;
3277
+ position: relative;
3278
+ }
3279
+
3280
+ .lp-theme05-comparison-v1-item::before {
3281
+ content: '';
3282
+ position: absolute;
3283
+ left: 0;
3284
+ top: 10px;
3285
+ width: 8px;
3286
+ height: 8px;
3287
+ border-radius: 50%;
3288
+ background: var(--lp-accent);
3289
+ }
3290
+
3291
+ .lp-theme05-comparison-v1-vs {
3292
+ width: 84px;
3293
+ height: 84px;
3294
+ border-radius: 50%;
3295
+ background: var(--lp-surface-strong);
3296
+ border: 1px solid var(--lp-border);
3297
+ display: flex;
3298
+ align-items: center;
3299
+ justify-content: center;
3300
+ flex: none;
3301
+ font-family: var(--lp-font-mono);
3302
+ font-size: 28px;
3303
+ font-weight: 800;
3304
+ color: var(--lp-ink3);
3305
+ letter-spacing: 0.04em;
3306
+ }
3307
+
3308
+ /* 垂直流程 V2 */
3309
+
3310
+ .lp-theme05-process-v2 {
3311
+ padding: 92px 84px 96px;
3312
+ display: flex;
3313
+ flex-direction: column;
3314
+ }
3315
+
3316
+ .lp-theme05-process-v2-head {
3317
+ margin-bottom: 44px;
3318
+ }
3319
+
3320
+ .lp-theme05-process-v2-track {
3321
+ flex: 1;
3322
+ display: flex;
3323
+ flex-direction: column;
3324
+ gap: 16px;
3325
+ min-height: 0;
3326
+ overflow: auto;
3327
+ }
3328
+
3329
+ .lp-theme05-process-v2-step {
3330
+ display: flex;
3331
+ align-items: stretch;
3332
+ gap: 16px;
3333
+ }
3334
+
3335
+ .lp-theme05-process-v2-node {
3336
+ width: 56px;
3337
+ display: flex;
3338
+ align-items: center;
3339
+ justify-content: center;
3340
+ flex: none;
3341
+ }
3342
+
3343
+ .lp-theme05-process-v2-node-number {
3344
+ width: 48px;
3345
+ height: 48px;
3346
+ border-radius: 50%;
3347
+ background: var(--lp-accent);
3348
+ color: var(--lp-text-inverse);
3349
+ font-family: var(--lp-font-mono);
3350
+ font-size: 18px;
3351
+ font-weight: 800;
3352
+ display: flex;
3353
+ align-items: center;
3354
+ justify-content: center;
3355
+ }
3356
+
3357
+ .lp-theme05-process-v2-step--coral .lp-theme05-process-v2-node-number { background: var(--lp-coral); }
3358
+ .lp-theme05-process-v2-step--amber .lp-theme05-process-v2-node-number { background: var(--lp-amber); }
3359
+ .lp-theme05-process-v2-step--teal .lp-theme05-process-v2-node-number { background: var(--lp-teal); }
3360
+ .lp-theme05-process-v2-step--indigo .lp-theme05-process-v2-node-number { background: var(--lp-indigo); }
3361
+ .lp-theme05-process-v2-step--violet .lp-theme05-process-v2-node-number { background: var(--lp-violet); }
3362
+
3363
+ .lp-theme05-process-v2-card {
3364
+ flex: 1;
3365
+ padding: 28px 24px;
3366
+ background: var(--lp-surface-solid);
3367
+ border: 1px solid var(--lp-border);
3368
+ border-radius: var(--lp-radius-lg);
3369
+ border-left: 5px solid var(--lp-accent);
3370
+ display: flex;
3371
+ flex-direction: column;
3372
+ gap: 10px;
3373
+ }
3374
+
3375
+ .lp-theme05-process-v2-step--coral .lp-theme05-process-v2-card { border-left-color: var(--lp-coral); }
3376
+ .lp-theme05-process-v2-step--amber .lp-theme05-process-v2-card { border-left-color: var(--lp-amber); }
3377
+ .lp-theme05-process-v2-step--teal .lp-theme05-process-v2-card { border-left-color: var(--lp-teal); }
3378
+ .lp-theme05-process-v2-step--indigo .lp-theme05-process-v2-card { border-left-color: var(--lp-indigo); }
3379
+ .lp-theme05-process-v2-step--violet .lp-theme05-process-v2-card { border-left-color: var(--lp-violet); }
3380
+
3381
+ .lp-theme05-process-v2-step-title {
3382
+ font-size: var(--lp-font-size-h3);
3383
+ font-weight: 800;
3384
+ color: var(--lp-ink);
3385
+ line-height: 1.25;
3386
+ }
3387
+
3388
+ .lp-theme05-process-v2-step-description {
3389
+ font-size: var(--lp-font-size-body-small);
3390
+ color: var(--lp-ink2);
3391
+ line-height: 1.55;
3392
+ }
3393
+
3394
+ /* 引用 V2 */
3395
+
3396
+ .lp-theme05-quote-v2 {
3397
+ padding: 92px 120px 96px;
3398
+ display: flex;
3399
+ align-items: center;
3400
+ gap: 48px;
3401
+ }
3402
+
3403
+ .lp-theme05-quote-v2-bar {
3404
+ width: 8px;
3405
+ height: 220px;
3406
+ border-radius: var(--lp-radius-large);
3407
+ background: linear-gradient(180deg, var(--lp-accent) 0%, var(--lp-accent-2) 50%, var(--lp-accent-cool) 100%);
3408
+ flex: none;
3409
+ }
3410
+
3411
+ .lp-theme05-quote-v2-content {
3412
+ flex: 1;
3413
+ display: flex;
3414
+ flex-direction: column;
3415
+ gap: 24px;
3416
+ }
3417
+
3418
+ .lp-theme05-quote-v2-mark {
3419
+ font-size: 120px;
3420
+ font-weight: 900;
3421
+ line-height: 1;
3422
+ color: var(--lp-accent);
3423
+ opacity: 0.18;
3424
+ height: 60px;
3425
+ display: flex;
3426
+ align-items: flex-end;
3427
+ }
3428
+
3429
+ .lp-theme05-quote-v2-text {
3430
+ font-size: var(--lp-font-size-h2);
3431
+ font-weight: 700;
3432
+ line-height: 1.35;
3433
+ color: var(--lp-ink);
3434
+ margin: 0;
3435
+ }
3436
+
3437
+ .lp-theme05-quote-v2-source {
3438
+ font-size: var(--lp-font-size-body-small);
3439
+ color: var(--lp-ink3);
3440
+ font-style: normal;
3441
+ }
3442
+
3443
+ .lp-theme05-quote-v2--coral .lp-theme05-quote-v2-bar { background: var(--lp-coral); }
3444
+ .lp-theme05-quote-v2--amber .lp-theme05-quote-v2-bar { background: var(--lp-amber); }
3445
+ .lp-theme05-quote-v2--teal .lp-theme05-quote-v2-bar { background: var(--lp-teal); }
3446
+ .lp-theme05-quote-v2--indigo .lp-theme05-quote-v2-bar { background: var(--lp-indigo); }
3447
+ .lp-theme05-quote-v2--violet .lp-theme05-quote-v2-bar { background: var(--lp-violet); }
3448
+
3449
+ /* 编号目录 V2 */
3450
+
3451
+ .lp-theme05-toc-v2 {
3452
+ padding: 92px 84px 96px;
3453
+ display: grid;
3454
+ grid-template-columns: 1fr 1fr;
3455
+ gap: 64px;
3456
+ align-items: center;
3457
+ }
3458
+
3459
+ .lp-theme05-toc-v2-head {
3460
+ display: flex;
3461
+ flex-direction: column;
3462
+ }
3463
+
3464
+ .lp-theme05-toc-v2-title {
3465
+ font-size: var(--lp-font-size-display-small);
3466
+ font-weight: 900;
3467
+ line-height: 1.05;
3468
+ color: var(--lp-ink);
3469
+ letter-spacing: -0.03em;
3470
+ }
3471
+
3472
+ .lp-theme05-toc-v2-subtitle {
3473
+ font-size: var(--lp-font-size-h2);
3474
+ font-weight: 400;
3475
+ color: var(--lp-ink2);
3476
+ margin-top: 14px;
3477
+ line-height: 1.35;
3478
+ }
3479
+
3480
+ .lp-theme05-toc-v2-list {
3481
+ display: flex;
3482
+ flex-direction: column;
3483
+ gap: 18px;
3484
+ }
3485
+
3486
+ .lp-theme05-toc-v2-item {
3487
+ display: flex;
3488
+ align-items: flex-start;
3489
+ gap: 18px;
3490
+ padding: 20px 24px;
3491
+ background: var(--lp-surface-solid);
3492
+ border: 1px solid var(--lp-border);
3493
+ border-radius: var(--lp-radius-lg);
3494
+ }
3495
+
3496
+ .lp-theme05-toc-v2-number {
3497
+ width: 48px;
3498
+ height: 48px;
3499
+ border-radius: var(--lp-radius-small);
3500
+ background: var(--lp-surface);
3501
+ display: flex;
3502
+ align-items: center;
3503
+ justify-content: center;
3504
+ font-family: var(--lp-font-mono);
3505
+ font-size: var(--lp-font-size-h3);
3506
+ font-weight: 700;
3507
+ color: var(--lp-accent);
3508
+ flex: none;
3509
+ }
3510
+
3511
+ .lp-theme05-toc-v2-text {
3512
+ flex: 1;
3513
+ display: flex;
3514
+ flex-direction: column;
3515
+ gap: 4px;
3516
+ }
3517
+
3518
+ .lp-theme05-toc-v2-item-title {
3519
+ font-size: var(--lp-font-size-h3);
3520
+ font-weight: 700;
3521
+ color: var(--lp-ink);
3522
+ line-height: 1.25;
3523
+ }
3524
+
3525
+ .lp-theme05-toc-v2-page {
3526
+ font-family: var(--lp-font-mono);
3527
+ font-size: var(--lp-font-size-caption);
3528
+ color: var(--lp-ink3);
3529
+ }
3530
+
3531
+ /* 默认 scheme 回退 */
3532
+
3533
+ .lp-theme05-cover-ex-stat--coral { border-top-color: var(--lp-coral); }
3534
+ .lp-theme05-cover-ex2-highlight--coral { background: var(--lp-coral); }
3535
+
3536
+ /* 卡片圆角统一 */
3537
+
3538
+ .lp-theme05-card {
3539
+ border-radius: var(--lp-radius-lg);
3540
+ }
3541
+
3542
+ .lp-theme05-matrix-card,
3543
+ .lp-theme05-quadrant-card,
3544
+ .lp-theme05-roadmap-card {
3545
+ background: var(--lp-surface-solid);
3546
+ border: 1px solid var(--lp-border);
3547
+ border-radius: var(--lp-radius-lg);
3548
+ }
3549
+
3550
+ .lp-theme05-roadmap-card {
3551
+ padding: 26px 22px;
3552
+ }
3553
+
3554
+ /* 图片占位增强 */
3555
+
3556
+ .lp-theme05-profile-avatar .lp-editable-image-placeholder {
3557
+ width: 100%;
3558
+ height: 100%;
3559
+ display: flex;
3560
+ flex-direction: column;
3561
+ align-items: center;
3562
+ justify-content: center;
3563
+ gap: 10px;
3564
+ color: var(--lp-ink3);
3565
+ border: 2px dashed var(--lp-border);
3566
+ border-radius: var(--lp-radius-medium);
3567
+ cursor: pointer;
3568
+ transition: border-color 0.15s, color 0.15s, background 0.15s;
3569
+ }
3570
+
3571
+ .lp-theme05-profile-avatar .lp-editable-image-placeholder:hover {
3572
+ border-color: var(--lp-accent);
3573
+ color: var(--lp-accent);
3574
+ background: var(--lp-overlay);
3575
+ }
3576
+
3577
+ .lp-theme05-cover-hero-placeholder,
3578
+ .lp-theme05-chapter-image-placeholder {
3579
+ transition: border-color 0.15s, color 0.15s, background 0.15s;
3580
+ }
3581
+
3582
+ .lp-theme05-cover-hero-placeholder:hover,
3583
+ .lp-theme05-chapter-image-placeholder:hover {
3584
+ border-color: var(--lp-accent);
3585
+ color: var(--lp-accent);
3586
+ background: var(--lp-overlay);
3587
+ }