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