css-pkg-01 1.3.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.
@@ -0,0 +1,168 @@
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
+ --glow-teal: 0 0 15px rgba(20, 184, 166, 0.4);
11
+ --container: 1000px;
12
+ }
13
+
14
+ /* Reset & Base */
15
+ * { margin: 0; padding: 0; box-sizing: border-box; }
16
+ body {
17
+ background-color: var(--bg);
18
+ color: var(--text);
19
+ font-family: var(--font-body);
20
+ line-height: 1.6;
21
+ overflow-x: hidden;
22
+ -webkit-font-smoothing: antialiased;
23
+ }
24
+ a { color: var(--accent2); text-decoration: none; transition: all 0.3s ease; }
25
+ a:hover { color: var(--accent); text-shadow: 0 0 8px rgba(255, 209, 102, 0.5); }
26
+ h1, h2, h3, h4 { font-family: var(--font-display); font-weight: normal; line-height: 1.2; }
27
+ .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
28
+
29
+ /* Buttons (Shared) */
30
+ .btn {
31
+ display: inline-flex; justify-content: center; align-items: center;
32
+ padding: 12px 24px; font-family: var(--font-display); font-size: 0.9rem;
33
+ text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
34
+ clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
35
+ transition: all 0.3s ease; min-height: 44px; text-decoration: none;
36
+ }
37
+ .btn-primary { background: var(--accent); color: #000; box-shadow: 0 0 10px rgba(255,209,102,0.3); }
38
+ .btn-primary:hover { background: #ffdf99; transform: translateY(-2px); box-shadow: 0 0 20px rgba(255,209,102,0.6); color: #000; }
39
+ .btn-secondary { background: transparent; color: var(--accent2); border: 2px solid var(--accent2); }
40
+ .btn-secondary:hover { background: rgba(20, 184, 166, 0.1); box-shadow: var(--glow-teal); color: var(--accent2); transform: translateY(-2px); }
41
+
42
+ /* Header (Targeting exact structure provided) */
43
+ header { background: rgba(4, 18, 20, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(20, 184, 166, 0.2); }
44
+ .header-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
45
+ .brand { font-family: var(--font-display); font-size: 1.8rem; color: var(--text); text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 10px; }
46
+ .brand span { color: var(--accent); }
47
+ .nav-links { display: none; }
48
+ .nav-links a { color: var(--text); font-weight: 600; font-size: 0.95rem; padding: 10px; }
49
+ .nav-links a:hover { color: var(--accent2); }
50
+ .header-actions { display: flex; align-items: center; gap: 10px; }
51
+ .header-actions .btn { display: none; }
52
+ .mobile-toggle { background: transparent; border: none; color: var(--accent2); font-size: 1.8rem; cursor: pointer; min-width: 44px; min-height: 44px; }
53
+
54
+ @media (min-width: 1024px) {
55
+ .nav-links { display: flex; gap: 20px; align-items: center; }
56
+ .header-actions .btn { display: inline-flex; }
57
+ .mobile-toggle { display: none; }
58
+ }
59
+ /* Mobile Menu Active State */
60
+ .nav-links.active {
61
+ display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%;
62
+ background: var(--surface); padding: 20px; border-bottom: 2px solid var(--accent2); box-shadow: 0 10px 20px rgba(0,0,0,0.5);
63
+ }
64
+
65
+ /* Hero Stadium Vibe */
66
+ .hero-stadium {
67
+ padding: 60px 0 40px;
68
+ position: relative;
69
+ background:
70
+ radial-gradient(circle at 50% 0%, rgba(20, 184, 166, 0.15) 0%, transparent 60%),
71
+ linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
72
+ border-bottom: 1px solid rgba(20, 184, 166, 0.3);
73
+ text-align: center;
74
+ }
75
+ .hero-stadium::before {
76
+ content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
77
+ background-image: linear-gradient(rgba(20, 184, 166, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 184, 166, 0.05) 1px, transparent 1px);
78
+ background-size: 40px 40px; pointer-events: none; z-index: 0;
79
+ }
80
+ .hero-content { position: relative; z-index: 1; }
81
+
82
+ .breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; display: inline-block; background: rgba(0,0,0,0.3); padding: 5px 15px; border-radius: 20px; border: 1px solid rgba(143, 176, 179, 0.2); }
83
+ .breadcrumb a { color: var(--muted); }
84
+
85
+ h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--text); text-transform: uppercase; margin-bottom: 20px; text-shadow: 0 0 20px rgba(20, 184, 166, 0.3); }
86
+
87
+ .meta-chips { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
88
+ .chip { background: rgba(20, 184, 166, 0.1); border: 1px solid var(--accent2); color: var(--accent2); padding: 5px 12px; font-size: 0.8rem; font-family: var(--font-display); letter-spacing: 1px; clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%); }
89
+
90
+ .intro-text { font-size: 1.1rem; color: var(--text); max-width: 800px; margin: 0 auto; line-height: 1.8; border-left: 4px solid var(--accent); padding-left: 20px; text-align: left; background: rgba(10, 34, 38, 0.5); padding: 20px; }
91
+
92
+ /* Article / Content Arena */
93
+ .content-arena { padding: 60px 0; }
94
+ .arena-card {
95
+ background: var(--surface);
96
+ border: 1px solid rgba(20, 184, 166, 0.2);
97
+ padding: 30px; margin-bottom: 40px;
98
+ position: relative;
99
+ box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
100
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
101
+ }
102
+ .arena-card::after {
103
+ content: ''; position: absolute; top: -1px; right: -1px; width: 30px; height: 30px;
104
+ background: var(--bg); border-bottom: 1px solid rgba(20,184,166,0.2); border-left: 1px solid rgba(20,184,166,0.2);
105
+ }
106
+ .arena-card:hover { transform: translateY(-2px); box-shadow: inset 0 0 20px rgba(0,0,0,0.5), var(--glow-teal); border-color: rgba(20, 184, 166, 0.5); }
107
+
108
+ .arena-card h2 { color: var(--accent); font-size: 1.5rem; margin-bottom: 20px; display: flex; align-items: center; gap: 15px; }
109
+ .arena-card h2::before { content: ''; display: block; width: 12px; height: 12px; background: var(--accent2); transform: rotate(45deg); box-shadow: var(--glow-teal); }
110
+
111
+ .arena-card p { margin-bottom: 15px; color: #d1e8eb; }
112
+ .arena-card p:last-child { margin-bottom: 0; }
113
+
114
+ .arena-card ul { margin: 20px 0 20px 20px; list-style: none; }
115
+ .arena-card ul li { margin-bottom: 10px; position: relative; padding-left: 25px; color: #d1e8eb; }
116
+ .arena-card ul li::before { content: '►'; position: absolute; left: 0; top: 2px; color: var(--accent2); font-size: 0.8rem; }
117
+
118
+ /* FAQ Section */
119
+ .faq-arena { padding: 40px 0 60px; }
120
+ .faq-title { text-align: center; color: var(--text); margin-bottom: 40px; font-size: 2rem; text-transform: uppercase; }
121
+ details { background: rgba(10, 34, 38, 0.8); border: 1px solid rgba(20, 184, 166, 0.3); margin-bottom: 15px; transition: all 0.3s ease; }
122
+ details[open] { border-color: var(--accent2); box-shadow: 0 0 15px rgba(20, 184, 166, 0.15); }
123
+ summary { padding: 20px; font-family: var(--font-display); font-size: 1.1rem; cursor: pointer; list-style: none; position: relative; color: var(--accent); display: flex; justify-content: space-between; align-items: center; }
124
+ summary::-webkit-details-marker { display: none; }
125
+ summary::after { content: '+'; color: var(--accent2); font-size: 1.5rem; transition: transform 0.3s ease; }
126
+ details[open] summary::after { transform: rotate(45deg); }
127
+ details p { padding: 0 20px 20px; color: #d1e8eb; border-top: 1px dashed rgba(143, 176, 179, 0.2); padding-top: 15px; margin-top: 5px; }
128
+
129
+ /* Related Links Grid */
130
+ .related-links { background: var(--surface); padding: 50px 0; border-top: 2px solid var(--accent2); border-bottom: 2px solid var(--accent2); position: relative; overflow: hidden; }
131
+ .related-links::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(20,184,166,0.05) 0%, transparent 60%); pointer-events: none; }
132
+ .related-title { text-align: center; margin-bottom: 30px; font-size: 1.5rem; color: var(--text); }
133
+ .links-grid { display: grid; grid-template-columns: 1fr; gap: 15px; max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
134
+ .link-card { background: var(--bg); border: 1px solid rgba(20, 184, 166, 0.4); padding: 15px 20px; text-align: center; font-family: var(--font-display); text-transform: uppercase; font-size: 1rem; clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%); display: block; }
135
+ .link-card:hover { background: var(--accent2); color: var(--bg); text-shadow: none; transform: scale(1.02); }
136
+ @media (min-width: 768px) { .links-grid { grid-template-columns: repeat(3, 1fr); max-width: 900px; } }
137
+
138
+ /* CTA Arena */
139
+ .cta-arena { padding: 80px 0; text-align: center; background: linear-gradient(to bottom, var(--bg) 0%, rgba(10, 34, 38, 0.8) 100%); }
140
+ .cta-box { max-width: 700px; margin: 0 auto; }
141
+ .cta-box h2 { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; text-shadow: 0 0 15px rgba(255, 209, 102, 0.4); }
142
+ .cta-box p { font-size: 1.1rem; color: var(--muted); margin-bottom: 30px; }
143
+ .cta-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
144
+ .cta-actions .btn { font-size: 1.1rem; padding: 15px 40px; }
145
+
146
+ /* Footer (Targeting exact structure provided) */
147
+ footer { background: #020a0b; padding: 60px 0 20px; border-top: 1px solid rgba(20, 184, 166, 0.3); }
148
+ .footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
149
+ @media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
150
+ .footer-brand h2 { font-family: var(--font-display); font-size: 2rem; color: var(--text); text-transform: uppercase; margin-bottom: 15px; }
151
+ .footer-brand span { color: var(--accent); }
152
+ .footer-tagline { color: var(--muted); font-size: 0.9rem; max-width: 300px; }
153
+ .footer-links-group h4 { color: var(--accent2); font-family: var(--font-display); margin-bottom: 20px; font-size: 1.1rem; text-transform: uppercase; }
154
+ .footer-links-group a { display: block; color: var(--muted); margin-bottom: 10px; font-size: 0.9rem; }
155
+ .footer-links-group a:hover { color: var(--text); padding-left: 5px; }
156
+ .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(143, 176, 179, 0.1); color: var(--muted); font-size: 0.8rem; }
157
+
158
+
159
+ /* pipeline image & layout guards */
160
+ html, body { overflow-x: clip; }
161
+ img { max-width: 100%; height: auto; }
162
+ img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
163
+ header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
164
+ img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
165
+ img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
166
+ /* 合规声明块(zb-disclaimer,全站 footer) */
167
+ .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; }
168
+ .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; }