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