css-pkg-01 1.3.0 → 1.4.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.
@@ -0,0 +1,696 @@
1
+ :root {
2
+ --bg: #041214;
3
+ --surface: #0a2226;
4
+ --accent: #ffd166;
5
+ --accent2: #14b8a6;
6
+ --text: #effcff;
7
+ --muted: #8fb0b3;
8
+ --font-display: 'Russo One', sans-serif;
9
+ --font-body: 'Open Sans', sans-serif;
10
+ }
11
+
12
+ * {
13
+ margin: 0;
14
+ padding: 0;
15
+ box-sizing: border-box;
16
+ }
17
+
18
+ body {
19
+ font-family: var(--font-body);
20
+ background-color: var(--bg);
21
+ color: var(--text);
22
+ line-height: 1.6;
23
+ overflow-x: hidden;
24
+ -webkit-font-smoothing: antialiased;
25
+ }
26
+
27
+ .container {
28
+ width: 100%;
29
+ max-width: 1280px;
30
+ margin: 0 auto;
31
+ padding: 0 20px;
32
+ }
33
+
34
+ /* --- HEADER STYLES --- */
35
+ header {
36
+ background-color: rgba(4, 18, 20, 0.95);
37
+ backdrop-filter: blur(10px);
38
+ border-bottom: 2px solid rgba(20, 184, 166, 0.2);
39
+ position: sticky;
40
+ top: 0;
41
+ z-index: 1000;
42
+ }
43
+
44
+ .header-inner {
45
+ display: flex;
46
+ align-items: center;
47
+ justify-content: space-between;
48
+ height: 70px;
49
+ }
50
+
51
+ .brand {
52
+ font-family: var(--font-display);
53
+ font-size: 24px;
54
+ color: var(--text);
55
+ text-decoration: none;
56
+ text-transform: uppercase;
57
+ letter-spacing: 1px;
58
+ display: flex;
59
+ align-items: center;
60
+ gap: 10px;
61
+ }
62
+
63
+ .brand span {
64
+ color: var(--accent);
65
+ }
66
+
67
+ .nav-links {
68
+ display: none;
69
+ gap: 25px;
70
+ }
71
+
72
+ .nav-links a {
73
+ color: var(--text);
74
+ text-decoration: none;
75
+ font-weight: 600;
76
+ font-size: 14px;
77
+ text-transform: uppercase;
78
+ transition: color 0.3s;
79
+ }
80
+
81
+ .nav-links a:hover {
82
+ color: var(--accent2);
83
+ }
84
+
85
+ .header-actions {
86
+ display: flex;
87
+ align-items: center;
88
+ gap: 12px;
89
+ }
90
+
91
+ .btn {
92
+ display: inline-flex;
93
+ align-items: center;
94
+ justify-content: center;
95
+ padding: 10px 20px;
96
+ font-family: var(--font-display);
97
+ font-size: 13px;
98
+ text-transform: uppercase;
99
+ text-decoration: none;
100
+ border-radius: 4px;
101
+ transition: all 0.3s ease;
102
+ min-height: 44px;
103
+ cursor: pointer;
104
+ }
105
+
106
+ .btn-primary {
107
+ background-color: var(--accent);
108
+ color: var(--bg);
109
+ border: none;
110
+ box-shadow: 0 0 15px rgba(255, 209, 102, 0.2);
111
+ }
112
+
113
+ .btn-primary:hover {
114
+ background-color: #ffe099;
115
+ box-shadow: 0 0 20px rgba(255, 209, 102, 0.5);
116
+ transform: translateY(-2px);
117
+ }
118
+
119
+ .btn-secondary {
120
+ background-color: transparent;
121
+ color: var(--accent2);
122
+ border: 2px solid var(--accent2);
123
+ }
124
+
125
+ .btn-secondary:hover {
126
+ background-color: rgba(20, 184, 166, 0.1);
127
+ box-shadow: 0 0 15px rgba(20, 184, 166, 0.3);
128
+ }
129
+
130
+ .mobile-toggle {
131
+ display: block;
132
+ background: none;
133
+ border: none;
134
+ color: var(--text);
135
+ font-size: 24px;
136
+ cursor: pointer;
137
+ min-width: 44px;
138
+ min-height: 44px;
139
+ }
140
+
141
+ @media (min-width: 1024px) {
142
+ .nav-links {
143
+ display: flex;
144
+ }
145
+ .mobile-toggle {
146
+ display: none;
147
+ }
148
+ }
149
+
150
+ .nav-links.active {
151
+ display: flex;
152
+ flex-direction: column;
153
+ position: absolute;
154
+ top: 70px;
155
+ left: 0;
156
+ width: 100%;
157
+ background-color: var(--surface);
158
+ padding: 20px;
159
+ border-bottom: 2px solid var(--accent2);
160
+ box-shadow: 0 10px 30px rgba(0,0,0,0.5);
161
+ }
162
+
163
+ /* --- HERO BANNER --- */
164
+ .page-hero {
165
+ position: relative;
166
+ padding: 60px 20px;
167
+ text-align: center;
168
+ background: linear-gradient(180deg, rgba(20, 184, 166, 0.1) 0%, var(--bg) 100%);
169
+ border-bottom: 1px solid rgba(255,255,255,0.05);
170
+ overflow: hidden;
171
+ }
172
+
173
+ .page-hero::before {
174
+ content: '';
175
+ position: absolute;
176
+ top: -50%;
177
+ left: 50%;
178
+ transform: translateX(-50%);
179
+ width: 800px;
180
+ height: 800px;
181
+ background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 60%);
182
+ z-index: 0;
183
+ pointer-events: none;
184
+ }
185
+
186
+ .hero-content {
187
+ position: relative;
188
+ z-index: 1;
189
+ max-width: 900px;
190
+ margin: 0 auto;
191
+ }
192
+
193
+ .breadcrumb {
194
+ font-size: 13px;
195
+ color: var(--muted);
196
+ margin-bottom: 20px;
197
+ text-transform: uppercase;
198
+ letter-spacing: 1px;
199
+ font-weight: 600;
200
+ }
201
+
202
+ .page-hero h1 {
203
+ font-family: var(--font-display);
204
+ font-size: clamp(28px, 5vw, 42px);
205
+ color: var(--text);
206
+ text-transform: uppercase;
207
+ line-height: 1.2;
208
+ margin-bottom: 20px;
209
+ text-shadow: 0 0 20px rgba(20, 184, 166, 0.4);
210
+ }
211
+
212
+ .meta-chips {
213
+ display: flex;
214
+ justify-content: center;
215
+ flex-wrap: wrap;
216
+ gap: 12px;
217
+ margin-top: 25px;
218
+ }
219
+
220
+ .chip {
221
+ background: rgba(10, 34, 38, 0.8);
222
+ border: 1px solid var(--accent2);
223
+ color: var(--accent2);
224
+ padding: 6px 16px;
225
+ border-radius: 30px;
226
+ font-size: 12px;
227
+ font-weight: 700;
228
+ text-transform: uppercase;
229
+ letter-spacing: 0.5px;
230
+ box-shadow: 0 0 10px rgba(20, 184, 166, 0.1);
231
+ }
232
+
233
+ /* --- MAIN CONTENT --- */
234
+ main {
235
+ padding: 40px 0 80px;
236
+ }
237
+
238
+ .content-wrapper {
239
+ max-width: 800px;
240
+ margin: 0 auto;
241
+ }
242
+
243
+ .intro-blockquote {
244
+ background: linear-gradient(90deg, rgba(20, 184, 166, 0.1) 0%, transparent 100%);
245
+ border-left: 4px solid var(--accent);
246
+ padding: 30px;
247
+ margin-bottom: 50px;
248
+ border-radius: 0 12px 12px 0;
249
+ font-size: 16px;
250
+ color: var(--text);
251
+ line-height: 1.8;
252
+ position: relative;
253
+ }
254
+
255
+ .intro-blockquote::after {
256
+ content: '"';
257
+ position: absolute;
258
+ top: -10px;
259
+ right: 20px;
260
+ font-family: var(--font-display);
261
+ font-size: 80px;
262
+ color: rgba(255, 209, 102, 0.1);
263
+ line-height: 1;
264
+ }
265
+
266
+ /* Dynamic Diagonal Cards */
267
+ .hero-card {
268
+ background: var(--surface);
269
+ border: 1px solid rgba(255,255,255,0.05);
270
+ border-left: 4px solid var(--accent2);
271
+ padding: 35px 30px;
272
+ margin-bottom: 30px;
273
+ border-radius: 4px 16px 4px 4px;
274
+ position: relative;
275
+ transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
276
+ }
277
+
278
+ .hero-card:hover {
279
+ transform: translateY(-5px);
280
+ box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 15px rgba(20, 184, 166, 0.15);
281
+ border-left-color: var(--accent);
282
+ }
283
+
284
+ .badge-number {
285
+ position: absolute;
286
+ top: -15px;
287
+ left: 20px;
288
+ background: var(--accent);
289
+ color: var(--bg);
290
+ font-family: var(--font-display);
291
+ font-size: 14px;
292
+ padding: 4px 12px;
293
+ border-radius: 4px;
294
+ box-shadow: 0 4px 10px rgba(0,0,0,0.3);
295
+ }
296
+
297
+ .hero-card h2 {
298
+ font-family: var(--font-display);
299
+ font-size: 20px;
300
+ color: var(--accent);
301
+ margin-bottom: 15px;
302
+ line-height: 1.3;
303
+ padding-top: 10px;
304
+ }
305
+
306
+ .hero-card p {
307
+ color: var(--muted);
308
+ margin-bottom: 15px;
309
+ }
310
+
311
+ .hero-card p:last-child {
312
+ margin-bottom: 0;
313
+ }
314
+
315
+ .hero-card a {
316
+ color: var(--accent2);
317
+ text-decoration: none;
318
+ font-weight: 700;
319
+ border-bottom: 1px dashed var(--accent2);
320
+ transition: all 0.3s;
321
+ }
322
+
323
+ .hero-card a:hover {
324
+ color: var(--accent);
325
+ border-bottom-style: solid;
326
+ }
327
+
328
+ .hero-list {
329
+ list-style: none;
330
+ margin-top: 20px;
331
+ background: rgba(4, 18, 20, 0.5);
332
+ padding: 20px;
333
+ border-radius: 8px;
334
+ border: 1px solid rgba(20, 184, 166, 0.1);
335
+ }
336
+
337
+ .hero-list li {
338
+ position: relative;
339
+ padding-left: 30px;
340
+ margin-bottom: 12px;
341
+ color: var(--text);
342
+ font-size: 15px;
343
+ }
344
+
345
+ .hero-list li:last-child {
346
+ margin-bottom: 0;
347
+ }
348
+
349
+ .hero-list li::before {
350
+ content: '✓';
351
+ position: absolute;
352
+ left: 0;
353
+ top: 0;
354
+ background: var(--accent2);
355
+ color: var(--bg);
356
+ width: 20px;
357
+ height: 20px;
358
+ display: flex;
359
+ align-items: center;
360
+ justify-content: center;
361
+ border-radius: 50%;
362
+ font-size: 12px;
363
+ font-weight: bold;
364
+ }
365
+
366
+ /* FAQ Accordion */
367
+ .faq-section-title {
368
+ font-family: var(--font-display);
369
+ font-size: 26px;
370
+ text-align: center;
371
+ margin: 60px 0 30px;
372
+ color: var(--text);
373
+ text-transform: uppercase;
374
+ }
375
+
376
+ .faq-section-title span {
377
+ color: var(--accent2);
378
+ }
379
+
380
+ .faq-accordion {
381
+ display: flex;
382
+ flex-direction: column;
383
+ gap: 15px;
384
+ }
385
+
386
+ details {
387
+ background: var(--surface);
388
+ border-radius: 8px;
389
+ border: 1px solid rgba(255,255,255,0.05);
390
+ overflow: hidden;
391
+ transition: all 0.3s;
392
+ }
393
+
394
+ details[open] {
395
+ border-color: rgba(20, 184, 166, 0.3);
396
+ box-shadow: 0 5px 20px rgba(0,0,0,0.4);
397
+ }
398
+
399
+ summary {
400
+ padding: 20px;
401
+ font-family: var(--font-display);
402
+ font-size: 15px;
403
+ color: var(--text);
404
+ cursor: pointer;
405
+ list-style: none;
406
+ display: flex;
407
+ justify-content: space-between;
408
+ align-items: center;
409
+ user-select: none;
410
+ min-height: 44px;
411
+ }
412
+
413
+ summary::-webkit-details-marker {
414
+ display: none;
415
+ }
416
+
417
+ summary::after {
418
+ content: '+';
419
+ color: var(--accent);
420
+ font-size: 24px;
421
+ font-weight: normal;
422
+ transition: transform 0.3s;
423
+ }
424
+
425
+ details[open] summary::after {
426
+ content: '−';
427
+ color: var(--accent2);
428
+ }
429
+
430
+ details p {
431
+ padding: 0 20px 20px;
432
+ color: var(--muted);
433
+ margin: 0;
434
+ border-top: 1px dashed rgba(255,255,255,0.1);
435
+ padding-top: 15px;
436
+ line-height: 1.7;
437
+ }
438
+
439
+ /* Related Pages Navigation Block */
440
+ .related-nav-block {
441
+ margin: 60px 0;
442
+ padding: 40px;
443
+ background: linear-gradient(135deg, rgba(10, 34, 38, 0.8) 0%, rgba(4, 18, 20, 0.9) 100%);
444
+ border: 1px solid rgba(20, 184, 166, 0.2);
445
+ border-radius: 16px;
446
+ text-align: center;
447
+ }
448
+
449
+ .related-nav-block h3 {
450
+ font-family: var(--font-display);
451
+ color: var(--text);
452
+ margin-bottom: 25px;
453
+ font-size: 20px;
454
+ text-transform: uppercase;
455
+ }
456
+
457
+ .related-grid {
458
+ display: grid;
459
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
460
+ gap: 15px;
461
+ }
462
+
463
+ .related-grid a {
464
+ display: flex;
465
+ align-items: center;
466
+ justify-content: center;
467
+ padding: 15px 20px;
468
+ background: var(--surface);
469
+ border: 1px solid rgba(20, 184, 166, 0.3);
470
+ color: var(--accent2);
471
+ font-family: var(--font-display);
472
+ text-transform: uppercase;
473
+ text-decoration: none;
474
+ border-radius: 8px;
475
+ font-size: 14px;
476
+ transition: all 0.3s;
477
+ position: relative;
478
+ overflow: hidden;
479
+ min-height: 44px;
480
+ z-index: 1;
481
+ }
482
+
483
+ .related-grid a::before {
484
+ content: '';
485
+ position: absolute;
486
+ top: 0; left: 0;
487
+ width: 100%; height: 100%;
488
+ background: var(--accent2);
489
+ transform: scaleX(0);
490
+ transform-origin: right;
491
+ transition: transform 0.3s ease;
492
+ z-index: -1;
493
+ }
494
+
495
+ .related-grid a:hover {
496
+ color: var(--bg);
497
+ border-color: var(--accent2);
498
+ box-shadow: 0 0 15px rgba(20, 184, 166, 0.4);
499
+ }
500
+
501
+ .related-grid a:hover::before {
502
+ transform: scaleX(1);
503
+ transform-origin: left;
504
+ }
505
+
506
+ /* Final CTA Arena */
507
+ .cta-arena {
508
+ background: radial-gradient(circle at top, rgba(255, 209, 102, 0.1) 0%, var(--surface) 70%);
509
+ border: 2px solid var(--accent);
510
+ padding: 50px 30px;
511
+ text-align: center;
512
+ border-radius: 16px;
513
+ margin-top: 60px;
514
+ box-shadow: inset 0 0 40px rgba(255, 209, 102, 0.05), 0 20px 40px rgba(0,0,0,0.5);
515
+ position: relative;
516
+ overflow: hidden;
517
+ }
518
+
519
+ .cta-arena::before {
520
+ content: '';
521
+ position: absolute;
522
+ top: 0; left: 0; right: 0;
523
+ height: 4px;
524
+ background: linear-gradient(90deg, transparent, var(--accent), transparent);
525
+ }
526
+
527
+ .cta-arena h3 {
528
+ font-family: var(--font-display);
529
+ font-size: 28px;
530
+ color: var(--text);
531
+ margin-bottom: 15px;
532
+ text-transform: uppercase;
533
+ letter-spacing: 1px;
534
+ }
535
+
536
+ .cta-arena p {
537
+ color: var(--muted);
538
+ margin-bottom: 30px;
539
+ font-size: 16px;
540
+ }
541
+
542
+ .cta-actions {
543
+ display: flex;
544
+ justify-content: center;
545
+ gap: 15px;
546
+ flex-wrap: wrap;
547
+ }
548
+
549
+ .btn-mega {
550
+ padding: 15px 35px;
551
+ font-size: 16px;
552
+ font-family: var(--font-display);
553
+ text-transform: uppercase;
554
+ text-decoration: none;
555
+ border-radius: 6px;
556
+ transition: all 0.3s;
557
+ min-height: 44px;
558
+ display: inline-flex;
559
+ align-items: center;
560
+ justify-content: center;
561
+ }
562
+
563
+ .btn-mega.primary {
564
+ background: var(--accent);
565
+ color: var(--bg);
566
+ box-shadow: 0 0 20px rgba(255, 209, 102, 0.3);
567
+ }
568
+
569
+ .btn-mega.primary:hover {
570
+ background: #fff;
571
+ box-shadow: 0 0 30px rgba(255, 209, 102, 0.6);
572
+ transform: scale(1.05);
573
+ }
574
+
575
+ .btn-mega.secondary {
576
+ background: rgba(20, 184, 166, 0.1);
577
+ border: 2px solid var(--accent2);
578
+ color: var(--text);
579
+ }
580
+
581
+ .btn-mega.secondary:hover {
582
+ background: var(--accent2);
583
+ color: var(--bg);
584
+ box-shadow: 0 0 20px rgba(20, 184, 166, 0.4);
585
+ }
586
+
587
+ /* --- FOOTER STYLES --- */
588
+ footer {
589
+ background-color: #030d0e;
590
+ border-top: 1px solid rgba(20, 184, 166, 0.2);
591
+ padding: 60px 0 20px;
592
+ margin-top: 40px;
593
+ }
594
+
595
+ .footer-grid {
596
+ display: grid;
597
+ grid-template-columns: 1fr;
598
+ gap: 40px;
599
+ margin-bottom: 40px;
600
+ }
601
+
602
+ @media (min-width: 768px) {
603
+ .footer-grid {
604
+ grid-template-columns: 2fr 1fr 1fr;
605
+ }
606
+ }
607
+
608
+ .footer-brand h2 {
609
+ font-family: var(--font-display);
610
+ font-size: 28px;
611
+ color: var(--text);
612
+ text-transform: uppercase;
613
+ margin-bottom: 15px;
614
+ }
615
+
616
+ .footer-brand h2 span {
617
+ color: var(--accent);
618
+ }
619
+
620
+ .footer-tagline {
621
+ color: var(--muted);
622
+ font-size: 14px;
623
+ max-width: 300px;
624
+ }
625
+
626
+ .footer-links-group h4 {
627
+ font-family: var(--font-display);
628
+ color: var(--text);
629
+ margin-bottom: 20px;
630
+ font-size: 16px;
631
+ text-transform: uppercase;
632
+ letter-spacing: 1px;
633
+ }
634
+
635
+ .footer-links-group a {
636
+ display: block;
637
+ color: var(--muted);
638
+ text-decoration: none;
639
+ margin-bottom: 12px;
640
+ font-size: 14px;
641
+ transition: color 0.3s;
642
+ min-height: 24px;
643
+ }
644
+
645
+ .footer-links-group a:hover {
646
+ color: var(--accent2);
647
+ }
648
+
649
+ .footer-bottom {
650
+ text-align: center;
651
+ padding-top: 20px;
652
+ border-top: 1px solid rgba(255,255,255,0.05);
653
+ color: var(--muted);
654
+ font-size: 13px;
655
+ }
656
+
657
+ /* Responsive Adjustments */
658
+ @media (max-width: 767px) {
659
+ .header-actions .btn-secondary {
660
+ display: none;
661
+ }
662
+ .page-hero {
663
+ padding: 40px 15px;
664
+ }
665
+ .related-nav-block {
666
+ padding: 25px 15px;
667
+ }
668
+ .cta-arena {
669
+ padding: 40px 20px;
670
+ }
671
+ .cta-actions {
672
+ flex-direction: column;
673
+ }
674
+ .btn-mega {
675
+ width: 100%;
676
+ }
677
+ .intro-blockquote {
678
+ padding: 20px;
679
+ font-size: 15px;
680
+ }
681
+ .hero-card {
682
+ padding: 25px 20px;
683
+ }
684
+ }
685
+
686
+
687
+ /* pipeline image & layout guards */
688
+ html, body { overflow-x: clip; }
689
+ img { max-width: 100%; height: auto; }
690
+ img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
691
+ header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
692
+ img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
693
+ img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
694
+ /* 合规声明块(zb-disclaimer,全站 footer) */
695
+ .zb-disclaimer { margin-top: 18px; padding-top: 14px; border-top: 1px solid color-mix(in srgb, currentColor 22%, transparent); font-size: .72rem; line-height: 1.65; opacity: .8; display: grid; gap: 6px; }
696
+ .zb-disclaimer .zb-18 { justify-self: start; display: inline-flex; align-items: center; padding: 2px 10px; border: 1.5px solid currentColor; border-radius: 8px; font-weight: 800; letter-spacing: 1px; }