-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
676 lines (608 loc) · 23.5 KB
/
Copy pathabout.html
File metadata and controls
676 lines (608 loc) · 23.5 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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="img/xininn.ico" />
<title>支持我们 - 壹号栈</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<style>
:root {
--primary: #ff1d55;
--primary-light: #ff7a95;
--primary-dark: #e61045;
--primary-bg: #fff1f5;
--bg: #fafafa;
--card-bg: #ffffff;
--text: #0f172a;
--text-secondary: #64748b;
--text-muted: #94a3b8;
--border: #e2e8f0;
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
--shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
--radius: 20px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", "PingFang SC", sans-serif;
background-color: var(--bg);
color: var(--text);
min-height: 100vh;
line-height: 1.6;
}
/* 背景装饰 */
.bg-decoration {
position: fixed;
inset: 0;
pointer-events: none;
z-index: 0;
overflow: hidden;
}
.bg-decoration::before {
content: '';
position: absolute;
top: -10%;
right: -5%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(255, 29, 85, 0.06) 0%, transparent 70%);
border-radius: 50%;
}
.bg-decoration::after {
content: '';
position: absolute;
bottom: -10%;
left: -5%;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(255, 122, 149, 0.04) 0%, transparent 70%);
border-radius: 50%;
}
/* 主容器 */
.container {
position: relative;
z-index: 1;
max-width: 1100px;
margin: 0 auto;
padding: 2rem 1.5rem 5rem;
}
/* 头部标题 */
.page-header {
text-align: center;
padding: 3rem 0 4rem;
}
.page-header-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
background: rgba(255, 29, 85, 0.08);
color: var(--primary);
border-radius: 999px;
font-size: 0.875rem;
font-weight: 600;
margin-bottom: 1.5rem;
border: 1px solid rgba(255, 29, 85, 0.15);
}
.page-title {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 900;
line-height: 1.1;
margin-bottom: 1rem;
letter-spacing: -0.02em;
}
.page-title span {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.page-subtitle {
font-size: 1.125rem;
color: var(--text-secondary);
max-width: 550px;
margin: 0 auto;
line-height: 1.7;
}
/* 区块通用样式 */
.section {
margin-bottom: 4rem;
}
.section-header {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 1.5rem;
padding-left: 0.5rem;
}
.section-icon {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
flex-shrink: 0;
}
.section-title {
font-size: 1.375rem;
font-weight: 800;
}
/* 收款码卡片 */
.payment-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}
.payment-card {
background: var(--card-bg);
border-radius: var(--radius);
padding: 1rem;
text-align: center;
box-shadow: var(--shadow-sm);
border: 1px solid var(--border);
transition: all 0.3s ease;
}
.payment-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-xl);
border-color: rgba(255, 29, 85, 0.3);
}
.payment-card-icon {
font-size: 2rem;
margin-bottom: 1rem;
}
.payment-card h3 {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 1.25rem;
}
.qr-wrapper {
width: 200px;
height: 200px;
margin: 0 auto;
background: var(--primary-bg);
border-radius: 16px;
padding: 12px;
border: 2px dashed rgba(255, 29, 85, 0.2);
}
.qr-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 10px;
}
/* 赞助者表格 */
.sponsors-card {
background: var(--card-bg);
border-radius: var(--radius);
padding: 1.5rem;
box-shadow: var(--shadow-sm);
border: 1px solid var(--border);
overflow: hidden;
}
.sponsors-table {
width: 100%;
border-collapse: collapse;
}
.sponsors-table th {
text-align: left;
padding: 1rem;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
color: var(--text-secondary);
background: #f8fafc;
border-bottom: 2px solid var(--border);
}
.sponsors-table td {
padding: 1rem;
border-bottom: 1px solid var(--border);
color: var(--text-secondary);
font-size: 0.9375rem;
}
.sponsors-table tr:last-child td {
border-bottom: none;
}
.sponsors-table tbody tr {
transition: background 0.2s ease;
}
.sponsors-table tbody tr:hover {
background: var(--primary-bg);
}
.sponsor-amount {
color: var(--primary);
font-weight: 700;
}
.sponsor-avatar {
width: 32px;
height: 32px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
border-radius: 8px;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 0.75rem;
font-weight: 700;
margin-right: 0.75rem;
vertical-align: middle;
}
/* 更新记录时间线 */
.timeline {
position: relative;
padding-left: 2rem;
}
.timeline::before {
content: '';
position: absolute;
left: 7px;
top: 0;
bottom: 0;
width: 2px;
background: linear-gradient(to bottom, var(--primary), var(--primary-light), transparent);
}
.timeline-item {
position: relative;
padding-bottom: 2rem;
}
.timeline-item:last-child {
padding-bottom: 0;
}
.timeline-dot {
position: absolute;
left: -2rem;
top: 0.25rem;
width: 16px;
height: 16px;
border-radius: 50%;
background: var(--primary);
border: 3px solid var(--card-bg);
box-shadow: 0 0 0 2px var(--primary);
}
.timeline-item:first-child .timeline-dot {
background: var(--primary-dark);
box-shadow: 0 0 0 2px var(--primary-dark), 0 0 0 5px rgba(255, 29, 85, 0.2);
}
.timeline-card {
background: var(--card-bg);
border-radius: 16px;
padding: 1.25rem;
box-shadow: var(--shadow-sm);
border: 1px solid var(--border);
transition: all 0.3s ease;
}
.timeline-card:hover {
box-shadow: var(--shadow);
border-color: rgba(255, 29, 85, 0.2);
}
.timeline-date {
font-size: 0.8125rem;
color: var(--text-muted);
font-weight: 600;
margin-bottom: 0.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.timeline-badge {
display: inline-block;
padding: 0.25rem 0.625rem;
background: var(--primary-bg);
color: var(--primary);
border-radius: 6px;
font-size: 0.75rem;
font-weight: 600;
}
.timeline-badge.feature { background: #dbeafe; color: #2563eb; }
.timeline-badge.fix { background: #dcfce7; color: #16a34a; }
.timeline-badge.update { background: var(--primary-bg); color: var(--primary); }
.timeline-title {
font-size: 1.0625rem;
font-weight: 700;
margin-bottom: 0.375rem;
}
.timeline-desc {
color: var(--text-secondary);
font-size: 0.875rem;
line-height: 1.6;
}
.timeline-list {
list-style: none;
margin-top: 0.75rem;
}
.timeline-list li {
position: relative;
padding-left: 1.25rem;
color: var(--text-secondary);
font-size: 0.875rem;
line-height: 1.6;
margin-bottom: 0.25rem;
}
.timeline-list li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--primary);
font-weight: 700;
}
/* 感谢语 */
.thank-you {
text-align: center;
padding: 3rem 1.5rem;
background: linear-gradient(135deg, var(--primary-bg) 0%, #fdf2f8 100%);
border-radius: var(--radius);
margin-top: 2rem;
border: 1px solid rgba(255, 29, 85, 0.1);
}
.thank-you-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.thank-you h3 {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 0.5rem;
}
.thank-you p {
color: var(--text-secondary);
font-size: 0.9375rem;
}
/* 移动端底部导航 */
.mobile-bottom-nav {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 1000;
background: white;
border-top: 1px solid #e5e7eb;
display: none;
grid-template-columns: repeat(4, 1fr);
height: 2.5rem;
box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}
@media (max-width: 768px) {
.mobile-bottom-nav { display: grid; }
body { padding-bottom: 60px; }
.container { padding: 1rem 1rem 4rem; }
.page-header { padding: 1rem 0 1.5rem; }
.payment-grid { grid-template-columns: 1fr; }
.sponsors-table { font-size: 0.8125rem; }
.sponsors-table th,
.sponsors-table td { padding: 0.75rem 0.5rem; }
}
.mobile-bottom-nav a {
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
color: #6b7280;
font-size: 14px;
font-weight: 600;
transition: all 0.2s ease;
}
.mobile-bottom-nav a:hover { color: var(--primary); background: var(--primary-bg); }
.mobile-bottom-nav a.active { color: var(--primary); }
/* 动画 */
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-in {
animation: fadeInUp 0.6s ease-out forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
</style>
</head>
<body>
<div class="bg-decoration"></div>
<div class="container">
<!-- 页面标题 -->
<header class="page-header animate-in">
<div class="page-header-badge">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/>
</svg>
支持我们
</div>
<h1 class="page-title">每一份支持都是 <span>前行的动力</span></h1>
<p class="page-subtitle">您的慷慨赞助让我们能够持续创作优质内容,探索更多可能。所有资金将用于服务器维护与内容开发。</p>
</header>
<!-- 收款方式 -->
<section class="section animate-in delay-1">
<div class="section-header">
<div class="section-icon">💳</div>
<h2 class="section-title">支持方式</h2>
</div>
<div class="payment-grid">
<div class="payment-card">
<div class="payment-card-icon">💚</div>
<h3>微信支付</h3>
<div class="qr-wrapper">
<img src="img/weixin.png" alt="微信收款码">
</div>
</div>
<div class="payment-card">
<div class="payment-card-icon">💙</div>
<h3>支付宝</h3>
<div class="qr-wrapper">
<img src="img/zhifubao.png" alt="支付宝收款码">
</div>
</div>
</div>
</section>
<!-- 赞助者名单 -->
<section class="section animate-in delay-2">
<div class="section-header">
<div class="section-icon">🏆</div>
<h2 class="section-title">赞助者荣誉榜</h2>
</div>
<div class="sponsors-card">
<table class="sponsors-table">
<thead>
<tr>
<th>支持者</th>
<th>金额</th>
<th>时间</th>
<th>暖心留言</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="sponsor-avatar">Y</span>Y*N</td>
<td class="sponsor-amount">¥10.00</td>
<td>2025-04-15</td>
<td>小小意思,支持一下。加油!</td>
</tr>
<tr>
<td><span class="sponsor-avatar">琛</span>**琛</td>
<td class="sponsor-amount">¥10.00</td>
<td>2025-04-13</td>
<td>加油!奥利给!</td>
</tr>
<tr>
<td><span class="sponsor-avatar">张</span>张*治</td>
<td class="sponsor-amount">¥100.00</td>
<td>2025-01-15</td>
<td>加油!继续创作!</td>
</tr>
<tr>
<td><span class="sponsor-avatar">李</span>李*</td>
<td class="sponsor-amount">¥20.00</td>
<td>2025-01-14</td>
<td>内容很棒</td>
</tr>
<tr>
<td><span class="sponsor-avatar">王</span>王**</td>
<td class="sponsor-amount">¥30.00</td>
<td>2025-01-13</td>
<td>支持一下,继续加油</td>
</tr>
</tbody>
</table>
</div>
</section>
<!-- 更新记录 -->
<section class="section animate-in delay-3">
<div class="section-header">
<div class="section-icon">📅</div>
<h2 class="section-title">更新记录</h2>
</div>
<div class="timeline">
<!-- 最新更新 -->
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-card">
<div class="timeline-date">
📆 2026-04-13
<span class="timeline-badge update">全站重构</span>
</div>
<div class="timeline-title">全站主题色统一 & 交互体验大幅提升</div>
<p class="timeline-desc">对全站进行了全面的视觉升级和代码重构,修复了多个已知的交互问题,显著提升了桌面端与移动端的使用体验。</p>
<ul class="timeline-list">
<li><strong>首页焕新:</strong>全新 Hero 布局与数据统计展示,卡片式导航入口,视觉层次更清晰,支持平滑入场动画。</li>
<li><strong>赞助页升级:</strong>新增更新记录时间线模块,重构了收款码卡片与赞助者荣誉榜 UI,交互更友好。</li>
<li><strong>导航体验:</strong>修复了点击分类跳转错位问题,实现精准锚点滚动;移动端新增常驻搜索栏及清空功能。</li>
<li><strong>视觉统一:</strong>全站(首页、导航、前台、赞助页)统一采用全新的粉色主题色 (#ff1d55),设计风格更加现代化。</li>
<li><strong>细节打磨:</strong>修复了返回顶部按钮与暗黑按钮重叠的问题;暗黑模式现在能自动识别系统偏好并记忆选择。</li>
</ul>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-card">
<div class="timeline-date">
📆 2026-04-01
<span class="timeline-badge update">重大更新</span>
</div>
<div class="timeline-title">全站点 UI 焕新 & 搜索功能升级</div>
<p class="timeline-desc">对全站进行了视觉升级,采用全新的粉色主题配色方案,并优化了导航页面的搜索体验。</p>
<ul class="timeline-list">
<li>全站统一粉色主题配色 (#ff1d55)</li>
<li>导航页面搜索框增加清空按钮</li>
<li>优化移动端底部导航栏样式</li>
<li>修复点击分类跳转错位问题</li>
</ul>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-card">
<div class="timeline-date">
📆 2026-03-25
<span class="timeline-badge feature">新功能</span>
</div>
<div class="timeline-title">暗黑模式 & 响应式布局</div>
<p class="timeline-desc">新增暗黑模式支持,并优化了移动端响应式体验。</p>
<ul class="timeline-list">
<li>全站支持暗黑模式切换</li>
<li>移动端适配底部固定导航</li>
<li>优化卡片式布局间距</li>
</ul>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-card">
<div class="timeline-date">
📆 2026-03-05
<span class="timeline-badge fix">优化</span>
</div>
<div class="timeline-title">导航分类结构调整</div>
<p class="timeline-desc">重新整理了导航页面的分类结构,使内容更加清晰易读。</p>
<ul class="timeline-list">
<li>分类标题居中显示</li>
<li>链接卡片采用弹性布局</li>
<li>增加分类间视觉分隔</li>
</ul>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-card">
<div class="timeline-date">
📆 20256-03-01
<span class="timeline-badge feature">新功能</span>
</div>
<div class="timeline-title">壹号导航 正式上线</div>
<p class="timeline-desc">导航页面正式上线,提供分类清晰的快捷入口。</p>
<ul class="timeline-list">
<li>25+ 分类,覆盖常用资源</li>
<li>桌面端 & 移动端双端适配</li>
<li>支持滚动高亮导航</li>
</ul>
</div>
</div>
</div>
</section>
<!-- 感谢语 -->
<div class="thank-you animate-in delay-4">
<div class="thank-you-icon">🌟</div>
<h3>感谢您的每一份支持</h3>
<p>正是因为有你,我们才能走得更远、做得更好。让我们一起创造更多精彩内容!</p>
</div>
</div>
<!-- 移动端底部导航 -->
<nav class="mobile-bottom-nav" role="navigation" aria-label="移动端导航">
<a href="index.html">首页</a>
<a href="naver.html">导航</a>
<a href="qiantai.html">前台</a>
<a href="about.html" class="active">搬砖</a>
</nav>
</body>
</html>