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