css-pkg-01 1.2.0 → 1.3.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,573 @@
1
+ :root {
2
+ /* Palette */
3
+ --bg: #150715;
4
+ --surface: #291033;
5
+ --surface-light: #3d144c;
6
+ --accent: #f5c542;
7
+ --accent-hover: #ffd700;
8
+ --accent2: #e040fb;
9
+ --text: #fdf4ff;
10
+ --muted: #b595b8;
11
+
12
+ /* Typography */
13
+ --font-display: 'Orbitron', sans-serif;
14
+ --font-body: 'Exo 2', sans-serif;
15
+
16
+ /* Effects */
17
+ --gold-grad: linear-gradient(135deg, #f5c542 0%, #b8860b 100%);
18
+ --velvet-grad: linear-gradient(135deg, #291033 0%, #150715 100%);
19
+ --royal-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
20
+ --gold-border: 1px solid rgba(245, 197, 66, 0.3);
21
+ --transition: all 0.3s ease;
22
+ }
23
+
24
+ * {
25
+ margin: 0;
26
+ padding: 0;
27
+ box-sizing: border-box;
28
+ }
29
+
30
+ body {
31
+ font-family: var(--font-body);
32
+ background-color: var(--bg);
33
+ color: var(--text);
34
+ line-height: 1.6;
35
+ -webkit-font-smoothing: antialiased;
36
+ }
37
+
38
+ a {
39
+ color: var(--accent);
40
+ text-decoration: none;
41
+ transition: var(--transition);
42
+ }
43
+
44
+ a:hover {
45
+ color: var(--accent-hover);
46
+ text-shadow: 0 0 8px rgba(245, 197, 66, 0.5);
47
+ }
48
+
49
+ h1, h2, h3, .logo {
50
+ font-family: var(--font-display);
51
+ font-weight: 700;
52
+ }
53
+
54
+ .container {
55
+ width: 100%;
56
+ max-width: 1200px;
57
+ margin: 0 auto;
58
+ padding: 0 20px;
59
+ }
60
+
61
+ /* HEADER (Matched to Homepage identity) */
62
+ header {
63
+ background-color: rgba(21, 7, 21, 0.95);
64
+ backdrop-filter: blur(10px);
65
+ border-bottom: 1px solid rgba(224, 64, 251, 0.2);
66
+ position: sticky;
67
+ top: 0;
68
+ z-index: 100;
69
+ }
70
+
71
+ .nav-container {
72
+ display: flex;
73
+ justify-content: space-between;
74
+ align-items: center;
75
+ height: 70px;
76
+ }
77
+
78
+ .logo {
79
+ font-size: 24px;
80
+ color: var(--text);
81
+ letter-spacing: 1px;
82
+ text-transform: uppercase;
83
+ }
84
+
85
+ .logo span {
86
+ color: var(--accent);
87
+ }
88
+
89
+ .nav-links {
90
+ display: flex;
91
+ list-style: none;
92
+ gap: 24px;
93
+ }
94
+
95
+ .nav-links li a {
96
+ color: var(--text);
97
+ font-size: 15px;
98
+ font-weight: 500;
99
+ text-transform: uppercase;
100
+ letter-spacing: 0.5px;
101
+ }
102
+
103
+ .nav-links li a:hover {
104
+ color: var(--accent);
105
+ }
106
+
107
+ .mobile-toggle {
108
+ display: none;
109
+ background: none;
110
+ border: none;
111
+ color: var(--accent);
112
+ font-size: 28px;
113
+ cursor: pointer;
114
+ }
115
+
116
+ /* HERO SECTION - AZTEC THEME */
117
+ .hero-aztec {
118
+ padding: 60px 0 40px;
119
+ background: radial-gradient(circle at top right, rgba(224, 64, 251, 0.15), transparent 50%),
120
+ radial-gradient(circle at bottom left, rgba(245, 197, 66, 0.1), transparent 50%);
121
+ position: relative;
122
+ border-bottom: var(--gold-border);
123
+ }
124
+
125
+ .breadcrumb {
126
+ font-size: 13px;
127
+ color: var(--muted);
128
+ margin-bottom: 24px;
129
+ display: flex;
130
+ align-items: center;
131
+ gap: 8px;
132
+ text-transform: uppercase;
133
+ letter-spacing: 1px;
134
+ }
135
+
136
+ .breadcrumb a {
137
+ color: var(--accent2);
138
+ }
139
+
140
+ .hero-aztec h1 {
141
+ font-size: clamp(28px, 5vw, 42px);
142
+ line-height: 1.2;
143
+ margin-bottom: 20px;
144
+ background: var(--gold-grad);
145
+ -webkit-background-clip: text;
146
+ -webkit-text-fill-color: transparent;
147
+ text-shadow: 0 2px 10px rgba(245, 197, 66, 0.2);
148
+ }
149
+
150
+ .meta-chips {
151
+ display: flex;
152
+ gap: 12px;
153
+ margin-bottom: 32px;
154
+ flex-wrap: wrap;
155
+ }
156
+
157
+ .chip {
158
+ background-color: var(--surface);
159
+ border: 1px solid rgba(224, 64, 251, 0.3);
160
+ color: var(--muted);
161
+ padding: 6px 14px;
162
+ border-radius: 20px;
163
+ font-size: 12px;
164
+ font-weight: 500;
165
+ letter-spacing: 0.5px;
166
+ text-transform: uppercase;
167
+ display: flex;
168
+ align-items: center;
169
+ }
170
+
171
+ .intro-box {
172
+ background: var(--velvet-grad);
173
+ border: var(--gold-border);
174
+ border-left: 4px solid var(--accent);
175
+ padding: 24px 32px;
176
+ border-radius: 8px;
177
+ font-size: 17px;
178
+ color: var(--text);
179
+ box-shadow: var(--royal-shadow);
180
+ position: relative;
181
+ overflow: hidden;
182
+ }
183
+
184
+ /* MAIN CONTENT */
185
+ main {
186
+ padding: 40px 0;
187
+ }
188
+
189
+ .content-section {
190
+ margin-bottom: 50px;
191
+ }
192
+
193
+ .content-section h2 {
194
+ font-size: 24px;
195
+ color: var(--accent2);
196
+ margin-bottom: 20px;
197
+ display: flex;
198
+ align-items: center;
199
+ gap: 12px;
200
+ }
201
+
202
+ .content-section h2::before {
203
+ content: "✦";
204
+ color: var(--accent);
205
+ font-size: 18px;
206
+ }
207
+
208
+ .content-section p {
209
+ margin-bottom: 16px;
210
+ color: var(--muted);
211
+ font-size: 16px;
212
+ }
213
+
214
+ .content-section p strong {
215
+ color: var(--text);
216
+ }
217
+
218
+ /* JEWEL CARDS (For List) */
219
+ .jewel-list-container {
220
+ display: grid;
221
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
222
+ gap: 20px;
223
+ margin-top: 24px;
224
+ }
225
+
226
+ .jewel-card {
227
+ background-color: var(--surface);
228
+ border: 1px solid rgba(245, 197, 66, 0.15);
229
+ border-radius: 12px;
230
+ padding: 20px;
231
+ position: relative;
232
+ transition: var(--transition);
233
+ display: flex;
234
+ align-items: flex-start;
235
+ gap: 16px;
236
+ }
237
+
238
+ .jewel-card:hover {
239
+ transform: translateY(-5px);
240
+ border-color: var(--accent);
241
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(245, 197, 66, 0.05);
242
+ }
243
+
244
+ .jewel-card::before {
245
+ content: "";
246
+ display: block;
247
+ width: 12px;
248
+ height: 12px;
249
+ background: var(--gold-grad);
250
+ transform: rotate(45deg);
251
+ margin-top: 6px;
252
+ flex-shrink: 0;
253
+ box-shadow: 0 0 8px var(--accent);
254
+ }
255
+
256
+ .jewel-card p {
257
+ margin: 0;
258
+ color: var(--text);
259
+ font-size: 15px;
260
+ line-height: 1.5;
261
+ }
262
+
263
+ /* TEXT HIGHLIGHTS */
264
+ .content-section a {
265
+ border-bottom: 1px dashed var(--accent);
266
+ font-weight: 500;
267
+ }
268
+
269
+ .content-section a:hover {
270
+ border-bottom-style: solid;
271
+ }
272
+
273
+ /* FAQ SECTION */
274
+ .faq-section {
275
+ background-color: var(--surface);
276
+ padding: 60px 0;
277
+ border-top: var(--gold-border);
278
+ border-bottom: var(--gold-border);
279
+ }
280
+
281
+ .faq-section h2 {
282
+ text-align: center;
283
+ color: var(--accent);
284
+ margin-bottom: 40px;
285
+ font-size: 28px;
286
+ }
287
+
288
+ .faq-grid {
289
+ max-width: 800px;
290
+ margin: 0 auto;
291
+ display: flex;
292
+ flex-direction: column;
293
+ gap: 16px;
294
+ }
295
+
296
+ details {
297
+ background: var(--bg);
298
+ border: 1px solid rgba(224, 64, 251, 0.2);
299
+ border-radius: 8px;
300
+ overflow: hidden;
301
+ }
302
+
303
+ summary {
304
+ padding: 20px;
305
+ cursor: pointer;
306
+ font-family: var(--font-display);
307
+ font-weight: 500;
308
+ color: var(--text);
309
+ list-style: none;
310
+ display: flex;
311
+ justify-content: space-between;
312
+ align-items: center;
313
+ transition: var(--transition);
314
+ }
315
+
316
+ summary::-webkit-details-marker {
317
+ display: none;
318
+ }
319
+
320
+ summary::after {
321
+ content: "+";
322
+ color: var(--accent);
323
+ font-size: 24px;
324
+ font-weight: 300;
325
+ transition: transform 0.3s ease;
326
+ }
327
+
328
+ details[open] summary {
329
+ background: rgba(224, 64, 251, 0.1);
330
+ border-bottom: 1px solid rgba(224, 64, 251, 0.2);
331
+ }
332
+
333
+ details[open] summary::after {
334
+ transform: rotate(45deg);
335
+ }
336
+
337
+ details p {
338
+ padding: 20px;
339
+ color: var(--muted);
340
+ margin: 0;
341
+ }
342
+
343
+ /* RELATED PAGES NAVIGATION */
344
+ .related-pages {
345
+ padding: 60px 0;
346
+ text-align: center;
347
+ }
348
+
349
+ .related-pages h2 {
350
+ font-size: 24px;
351
+ margin-bottom: 30px;
352
+ color: var(--text);
353
+ }
354
+
355
+ .related-grid {
356
+ display: flex;
357
+ justify-content: center;
358
+ gap: 20px;
359
+ flex-wrap: wrap;
360
+ }
361
+
362
+ .related-card {
363
+ background: var(--surface-light);
364
+ border: 1px solid rgba(253, 244, 255, 0.1);
365
+ padding: 16px 32px;
366
+ border-radius: 30px;
367
+ font-family: var(--font-display);
368
+ color: var(--text);
369
+ text-transform: uppercase;
370
+ font-size: 14px;
371
+ letter-spacing: 1px;
372
+ border-bottom: none; /* override content link style */
373
+ }
374
+
375
+ .related-card:hover {
376
+ background: var(--accent2);
377
+ color: #fff;
378
+ border-color: var(--accent2);
379
+ border-bottom: none;
380
+ transform: translateY(-3px);
381
+ box-shadow: 0 10px 20px rgba(224, 64, 251, 0.2);
382
+ }
383
+
384
+ /* GRAND CTA */
385
+ .grand-cta {
386
+ padding: 0 20px 60px;
387
+ }
388
+
389
+ .cta-box {
390
+ background: var(--velvet-grad);
391
+ border: 2px solid var(--accent);
392
+ border-radius: 16px;
393
+ padding: 50px 30px;
394
+ text-align: center;
395
+ box-shadow: var(--royal-shadow), inset 0 0 40px rgba(245, 197, 66, 0.1);
396
+ position: relative;
397
+ overflow: hidden;
398
+ }
399
+
400
+ .cta-box::before {
401
+ content: "";
402
+ position: absolute;
403
+ top: 0; left: 0; right: 0; bottom: 0;
404
+ background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="%23f5c542" fill-opacity="0.1"/></svg>');
405
+ pointer-events: none;
406
+ }
407
+
408
+ .cta-box h2 {
409
+ font-size: clamp(24px, 4vw, 32px);
410
+ color: var(--accent);
411
+ margin-bottom: 16px;
412
+ position: relative;
413
+ }
414
+
415
+ .cta-box p {
416
+ color: var(--text);
417
+ font-size: 16px;
418
+ max-width: 600px;
419
+ margin: 0 auto 32px;
420
+ position: relative;
421
+ }
422
+
423
+ .cta-buttons {
424
+ display: flex;
425
+ justify-content: center;
426
+ gap: 20px;
427
+ position: relative;
428
+ flex-wrap: wrap;
429
+ }
430
+
431
+ .btn {
432
+ padding: 14px 32px;
433
+ border-radius: 8px;
434
+ font-family: var(--font-display);
435
+ font-weight: 700;
436
+ text-transform: uppercase;
437
+ letter-spacing: 1px;
438
+ font-size: 15px;
439
+ cursor: pointer;
440
+ text-align: center;
441
+ min-width: 180px;
442
+ border-bottom: none !important;
443
+ }
444
+
445
+ .btn-primary {
446
+ background: var(--gold-grad);
447
+ color: #150715 !important;
448
+ border: none;
449
+ }
450
+
451
+ .btn-primary:hover {
452
+ box-shadow: 0 0 20px rgba(245, 197, 66, 0.6);
453
+ color: #150715 !important;
454
+ transform: translateY(-2px);
455
+ }
456
+
457
+ .btn-secondary {
458
+ background: transparent;
459
+ color: var(--accent) !important;
460
+ border: 2px solid var(--accent);
461
+ }
462
+
463
+ .btn-secondary:hover {
464
+ background: rgba(245, 197, 66, 0.1);
465
+ transform: translateY(-2px);
466
+ }
467
+
468
+ /* FOOTER (Matched to Homepage) */
469
+ footer {
470
+ background-color: #0d040d;
471
+ border-top: 1px solid rgba(224, 64, 251, 0.2);
472
+ padding: 60px 0 30px;
473
+ text-align: center;
474
+ }
475
+
476
+ .footer-logo {
477
+ font-family: var(--font-display);
478
+ font-size: 28px;
479
+ color: var(--accent);
480
+ font-weight: 900;
481
+ margin-bottom: 16px;
482
+ text-transform: uppercase;
483
+ letter-spacing: 2px;
484
+ }
485
+
486
+ .footer-tagline {
487
+ color: var(--muted);
488
+ font-style: italic;
489
+ margin-bottom: 30px;
490
+ font-size: 14px;
491
+ }
492
+
493
+ .footer-links {
494
+ display: flex;
495
+ justify-content: center;
496
+ flex-wrap: wrap;
497
+ gap: 16px 24px;
498
+ list-style: none;
499
+ margin-bottom: 40px;
500
+ max-width: 800px;
501
+ margin-left: auto;
502
+ margin-right: auto;
503
+ }
504
+
505
+ .footer-links li a {
506
+ color: var(--text);
507
+ font-size: 14px;
508
+ }
509
+
510
+ .footer-links li a:hover {
511
+ color: var(--accent2);
512
+ }
513
+
514
+ .copyright {
515
+ color: #665069;
516
+ font-size: 13px;
517
+ border-top: 1px solid rgba(255, 255, 255, 0.05);
518
+ padding-top: 20px;
519
+ margin-top: 20px;
520
+ }
521
+
522
+ /* RESPONSIVE */
523
+ @media (max-width: 768px) {
524
+ .nav-links {
525
+ display: none;
526
+ flex-direction: column;
527
+ position: absolute;
528
+ top: 70px;
529
+ left: 0;
530
+ width: 100%;
531
+ background-color: var(--surface);
532
+ padding: 20px 0;
533
+ border-bottom: 1px solid var(--accent2);
534
+ box-shadow: 0 10px 20px rgba(0,0,0,0.5);
535
+ }
536
+
537
+ .nav-links.active {
538
+ display: flex;
539
+ }
540
+
541
+ .nav-links li {
542
+ text-align: center;
543
+ padding: 12px 0;
544
+ }
545
+
546
+ .mobile-toggle {
547
+ display: block;
548
+ }
549
+
550
+ .intro-box {
551
+ padding: 20px;
552
+ }
553
+
554
+ .cta-buttons {
555
+ flex-direction: column;
556
+ }
557
+
558
+ .btn {
559
+ width: 100%;
560
+ }
561
+ }
562
+
563
+
564
+ /* pipeline image & layout guards */
565
+ html, body { overflow-x: clip; }
566
+ img { max-width: 100%; height: auto; }
567
+ img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
568
+ header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
569
+ img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
570
+ img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
571
+ /* 合规声明块(zb-disclaimer,全站 footer) */
572
+ .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; }
573
+ .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; }