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