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