-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
310 lines (261 loc) · 9.62 KB
/
Copy pathindex.html
File metadata and controls
310 lines (261 loc) · 9.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="x-ua-compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hole People – Level Guides, Walkthroughs, Cheats & Tips</title>
<meta name="description" content="Complete Hole People level guides with step-by-step walkthroughs, cheats, and tips. Browse solutions for every level, watch strategy videos, and master the game fast.">
<!-- 规范链接,避免重复收录 -->
<link rel="canonical" href="https://www.holepeoplelevel.com">
<link rel="icon" type="image/x-icon" href="/favicon.ico?v=3">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Oxanium:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9769427406770321"
crossorigin="anonymous"></script>
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:site_name" content="Hole People Guides">
<meta property="og:title" content="Hole People – Level Guides, Walkthroughs, Cheats & Tips">
<meta property="og:description" content="Find solutions for every Hole People level. Step-by-step walkthroughs, cheats, and strategy videos to master the game.">
<meta property="og:url" content="https://www.holepeoplelevel.com">
<meta property="og:image" content="https://www.holepeoplelevel.com/assets/og/og-image.jpg">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Hole People – Level Guides, Walkthroughs, Cheats & Tips">
<meta name="twitter:description" content="All Hole People level solutions, cheats, and tips with strategy videos.">
<meta name="twitter:image" content="https://www.holepeoplelevel.com/assets/og/og-image.jpg">
<!-- 性能:与第三方建立早期连接 -->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com">
<!-- 字体:加上 display=swap,避免文字闪烁 -->
<link href="https://fonts.googleapis.com/css2?family=Oxanium:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
<!-- Icons(CDN) -->
<link rel="preconnect" href="https://cdnjs.cloudflare.com" crossorigin>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* 这里保留您原有的所有CSS样式 */
:root {
--primary: #6C63FF;
--primary-light: #8580FF;
--secondary: #794852;
--accent: #36D1DC;
--light-bg: #f8f9fe;
--card-bg: #ffffff;
--text-dark: #2d2b4e;
--text-light: #5a5779;
--border-light: #e4e6f0;
--gradient-primary: linear-gradient(135deg, var(--primary), var(--accent));
--gradient-secondary: linear-gradient(135deg, var(--secondary), #FF8E53);
--shadow: 0 10px 30px rgba(108, 99, 255, 0.15);
--shadow-hover: 0 15px 35px rgba(108, 99, 255, 0.25);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
line-height: 1.6;
color: var(--text-light);
background-color: var(--light-bg);
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Oxanium', cursive;
font-weight: 700;
color: var(--text-dark);
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}
.section-title {
font-size: 2.5rem;
text-align: center;
margin-bottom: 3rem;
position: relative;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: var(--gradient-primary);
border-radius: 2px;
}
.highlight {
background: var(--gradient-primary);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
/* Button Styles */
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 24px;
border-radius: 50px;
font-weight: 600;
text-align: center;
cursor: pointer;
transition: all 0.3s ease;
border: none;
font-family: 'Oxanium', cursive;
}
.btn-primary {
background: var(--gradient-primary);
color: white;
box-shadow: var(--shadow);
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-hover);
}
.btn-secondary {
background: white;
color: var(--primary);
border: 2px solid var(--primary-light);
}
.btn-secondary:hover {
background: var(--primary-light);
color: white;
transform: translateY(-3px);
}
.btn-large {
padding: 16px 32px;
font-size: 1.1rem;
}
/* 组件容器样式 */
#header-container {
padding: 0 !important;
margin: 0 !important;
}
#hero-container,
#overview-container,
#how-to-play-container,
#features-container,
#platform-container,
#faq-container,
#footer-container {
margin-bottom: 2rem;
padding: 2rem 0;
}
/* 添加这些样式确保组件正确显示 */
.card {
background: var(--card-bg);
border-radius: 15px;
padding: 2rem;
box-shadow: var(--shadow);
margin-bottom: 2rem;
transition: transform 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-hover);
}
.grid {
display: grid;
gap: 2rem;
}
.grid-2 {
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid-3 {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.stats-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1.5rem;
margin: 3rem 0;
}
.stat-card {
text-align: center;
padding: 1.5rem;
}
.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 0.5rem;
}
.stat-label {
font-size: 1rem;
color: var(--text-light);
}
/* Responsive Design */
@media screen and (max-width: 1024px) {
.container {
width: 95%;
}
}
@media screen and (max-width: 768px) {
.section-title {
font-size: 2rem;
}
.grid-2, .grid-3 {
grid-template-columns: 1fr;
}
}
@media screen and (max-width: 480px) {
.section-title {
font-size: 1.8rem;
}
}
body { padding-top: 72px; }
</style>
<!-- ===== FAQ 结构化数据(示例;把问题与答案替换为你实际文案) ===== -->
<script type="application/ld+json">
{
"@context":"https://schema.org",
"@type":"FAQPage",
"mainEntity":[
{
"@type":"Question",
"name":"What is Hole People?",
"acceptedAnswer":{"@type":"Answer","text":"Hole People is a physics-based puzzle game. Browse our level guides and strategies to clear all stages."}
},
{
"@type":"Question",
"name":"How do I beat hard levels?",
"acceptedAnswer":{"@type":"Answer","text":"Use our step-by-step walkthroughs and videos. Each level page includes tips, route planning, and mistakes to avoid."}
}
]
}
</script>
</head>
<body>
<!-- 导航栏模块 -->
<div id="header-container"></div>
<!-- 主视觉区域模块 -->
<main id="main" role="main">
<div id="hero-container"></div>
<!-- 游戏概述模块 -->
<div id="overview-container"></div>
<!-- 如何游玩模块 -->
<div id="how-to-play-container"></div>
<!-- 关键特性模块 -->
<div id="features-container"></div>
<!-- 平台兼容性模块 -->
<div id="platform-container"></div>
<!-- faq兼容性模块 -->
<div id="faq-container"></div>
</main>
<!-- 页脚模块 -->
<div id="footer-container"></div>
<!-- 无 JS 提示(增强可访问性) -->
<noscript>
<div class="container" style="margin:1rem auto">
JavaScript is disabled. Some interactive level guides may not work. Please enable JavaScript to browse all solutions.
</div>
</noscript>
<script src="scripts/main.js" defer></script>
</body>
</html>