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,296 @@
1
+ :root {
2
+ --bg-color: #150715;
3
+ --accent1: #f5c542; /* Gold */
4
+ --accent2: #e040fb; /* Neon Purple */
5
+ --text-main: #ffffff;
6
+ --text-muted: #a0a0a0;
7
+ --font-heading: 'Orbitron', sans-serif;
8
+ --font-body: 'Exo 2', sans-serif;
9
+ }
10
+
11
+ * {
12
+ margin: 0;
13
+ padding: 0;
14
+ box-sizing: border-box;
15
+ }
16
+
17
+ body {
18
+ background-color: var(--bg-color);
19
+ color: var(--text-main);
20
+ font-family: var(--font-body);
21
+ display: flex;
22
+ flex-direction: column;
23
+ min-height: 100vh;
24
+ overflow-x: hidden;
25
+ }
26
+
27
+ .container {
28
+ width: 100%;
29
+ max-width: 1200px;
30
+ margin: 0 auto;
31
+ padding: 0 20px;
32
+ }
33
+
34
+ /* Header Styles */
35
+ header {
36
+ background: rgba(21, 7, 21, 0.98);
37
+ border-bottom: 1px solid rgba(224, 64, 251, 0.3);
38
+ position: sticky;
39
+ top: 0;
40
+ z-index: 1000;
41
+ padding: 15px 0;
42
+ box-shadow: 0 4px 20px rgba(0,0,0,0.5);
43
+ }
44
+
45
+ .nav-container {
46
+ display: flex;
47
+ justify-content: space-between;
48
+ align-items: center;
49
+ }
50
+
51
+ .logo {
52
+ font-family: var(--font-heading);
53
+ font-size: 1.8rem;
54
+ color: var(--text-main);
55
+ text-decoration: none;
56
+ font-weight: 900;
57
+ text-transform: uppercase;
58
+ letter-spacing: 1px;
59
+ }
60
+
61
+ .logo span {
62
+ color: var(--accent1);
63
+ }
64
+
65
+ .mobile-toggle {
66
+ background: none;
67
+ border: none;
68
+ color: var(--accent1);
69
+ font-size: 1.8rem;
70
+ cursor: pointer;
71
+ display: block;
72
+ }
73
+
74
+ .nav-links {
75
+ display: none;
76
+ flex-direction: column;
77
+ position: absolute;
78
+ top: 100%;
79
+ left: 0;
80
+ width: 100%;
81
+ background: var(--bg-color);
82
+ padding: 20px;
83
+ list-style: none;
84
+ gap: 15px;
85
+ border-bottom: 2px solid var(--accent2);
86
+ text-align: center;
87
+ }
88
+
89
+ .nav-links.active {
90
+ display: flex;
91
+ }
92
+
93
+ .nav-links a {
94
+ color: var(--text-main);
95
+ text-decoration: none;
96
+ font-weight: 500;
97
+ font-size: 1.1rem;
98
+ transition: color 0.3s ease;
99
+ }
100
+
101
+ .nav-links a:hover {
102
+ color: var(--accent1);
103
+ }
104
+
105
+ /* 404 Main Content Styles */
106
+ main {
107
+ flex: 1;
108
+ display: flex;
109
+ justify-content: center;
110
+ align-items: center;
111
+ padding: 40px 20px;
112
+ position: relative;
113
+ }
114
+
115
+ /* Decorative background glow */
116
+ main::before {
117
+ content: '';
118
+ position: absolute;
119
+ width: 300px;
120
+ height: 300px;
121
+ background: radial-gradient(circle, rgba(224,64,251,0.15) 0%, rgba(21,7,21,0) 70%);
122
+ top: 50%;
123
+ left: 50%;
124
+ transform: translate(-50%, -50%);
125
+ z-index: 0;
126
+ pointer-events: none;
127
+ }
128
+
129
+ .error-content {
130
+ text-align: center;
131
+ z-index: 1;
132
+ animation: floatUp 0.8s ease-out forwards;
133
+ }
134
+
135
+ .error-content h1 {
136
+ font-family: var(--font-heading);
137
+ font-size: 6rem;
138
+ font-weight: 900;
139
+ line-height: 1;
140
+ margin-bottom: 10px;
141
+ color: transparent;
142
+ -webkit-text-stroke: 2px var(--accent1);
143
+ text-shadow: 0 0 20px rgba(245, 197, 66, 0.4), 4px 4px 0px var(--accent2);
144
+ letter-spacing: 5px;
145
+ }
146
+
147
+ .error-content h2 {
148
+ font-family: var(--font-heading);
149
+ font-size: 1.4rem;
150
+ color: var(--text-main);
151
+ margin-bottom: 15px;
152
+ text-transform: uppercase;
153
+ letter-spacing: 1px;
154
+ }
155
+
156
+ .error-content p {
157
+ color: var(--text-muted);
158
+ font-size: 1rem;
159
+ max-width: 350px;
160
+ margin: 0 auto 35px auto;
161
+ line-height: 1.6;
162
+ }
163
+
164
+ .btn-home {
165
+ display: inline-block;
166
+ background: linear-gradient(45deg, var(--accent1), #d4a017);
167
+ color: #000;
168
+ font-family: var(--font-heading);
169
+ font-weight: 700;
170
+ font-size: 1rem;
171
+ text-decoration: none;
172
+ padding: 14px 32px;
173
+ border-radius: 30px;
174
+ text-transform: uppercase;
175
+ letter-spacing: 1px;
176
+ transition: all 0.3s ease;
177
+ box-shadow: 0 4px 15px rgba(245, 197, 66, 0.3);
178
+ }
179
+
180
+ .btn-home:hover {
181
+ background: linear-gradient(45deg, var(--accent2), #b026c7);
182
+ color: #fff;
183
+ box-shadow: 0 6px 20px rgba(224, 64, 251, 0.5);
184
+ transform: translateY(-3px);
185
+ }
186
+
187
+ /* Footer Styles */
188
+ footer {
189
+ background: #0a030a;
190
+ border-top: 1px solid rgba(245, 197, 66, 0.2);
191
+ padding: 40px 0 20px;
192
+ text-align: center;
193
+ }
194
+
195
+ .footer-logo {
196
+ font-family: var(--font-heading);
197
+ font-size: 1.8rem;
198
+ color: var(--accent1);
199
+ text-transform: uppercase;
200
+ margin-bottom: 15px;
201
+ font-weight: 900;
202
+ letter-spacing: 2px;
203
+ }
204
+
205
+ .footer-tagline {
206
+ font-style: italic;
207
+ color: var(--text-muted);
208
+ margin-bottom: 25px;
209
+ font-size: 0.95rem;
210
+ max-width: 600px;
211
+ margin-inline: auto;
212
+ }
213
+
214
+ .footer-links {
215
+ list-style: none;
216
+ display: flex;
217
+ flex-wrap: wrap;
218
+ justify-content: center;
219
+ gap: 15px 25px;
220
+ margin-bottom: 25px;
221
+ }
222
+
223
+ .footer-links a {
224
+ color: var(--text-main);
225
+ text-decoration: none;
226
+ font-size: 0.9rem;
227
+ transition: color 0.3s;
228
+ }
229
+
230
+ .footer-links a:hover {
231
+ color: var(--accent2);
232
+ }
233
+
234
+ .copyright {
235
+ color: #555;
236
+ font-size: 0.85rem;
237
+ border-top: 1px solid #222;
238
+ padding-top: 20px;
239
+ margin-top: 10px;
240
+ }
241
+
242
+ /* Animations */
243
+ @keyframes floatUp {
244
+ from {
245
+ opacity: 0;
246
+ transform: translateY(30px);
247
+ }
248
+ to {
249
+ opacity: 1;
250
+ transform: translateY(0);
251
+ }
252
+ }
253
+
254
+ /* Desktop Media Query */
255
+ @media (min-width: 768px) {
256
+ .mobile-toggle {
257
+ display: none;
258
+ }
259
+
260
+ .nav-links {
261
+ display: flex;
262
+ flex-direction: row;
263
+ position: static;
264
+ width: auto;
265
+ background: transparent;
266
+ padding: 0;
267
+ border: none;
268
+ gap: 25px;
269
+ }
270
+
271
+ .error-content h1 {
272
+ font-size: 9rem;
273
+ -webkit-text-stroke: 3px var(--accent1);
274
+ }
275
+
276
+ .error-content h2 {
277
+ font-size: 2rem;
278
+ }
279
+
280
+ .error-content p {
281
+ max-width: 500px;
282
+ font-size: 1.1rem;
283
+ }
284
+ }
285
+
286
+
287
+ /* pipeline image & layout guards */
288
+ html, body { overflow-x: clip; }
289
+ img { max-width: 100%; height: auto; }
290
+ img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
291
+ header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
292
+ img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
293
+ img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
294
+ /* 合规声明块(zb-disclaimer,全站 footer) */
295
+ .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; }
296
+ .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; }