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