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