forked from th-dd/th-dd.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
139 lines (123 loc) · 3.98 KB
/
Copy pathindex.html
File metadata and controls
139 lines (123 loc) · 3.98 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - 页面未找到</title>
<style>
body {
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'PingFang SC', 'Microsoft YaHei', sans-serif;
background: radial-gradient(circle at top, #1a1a2e 0, #16213e 40%, #0f3460 100%);
color: #f5f5f7;
text-align: center;
}
.container {
max-width: 540px;
width: 100%;
padding: 24px 16px;
}
.logo {
max-width: 200px;
width: 100%;
margin-bottom: 12px;
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0); }
50% { transform: translateY(-8px); }
100% { transform: translateY(0); }
}
.title {
margin: 8px 0 4px;
font-size: 96px;
font-weight: 800;
letter-spacing: 0.05em;
line-height: 1;
background: linear-gradient(135deg, #a8edea 0, #fed6e3 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
text-shadow: 0 0 30px rgba(0, 0, 0, 0.35);
}
.subtitle {
margin: 0 0 6px;
font-size: 22px;
font-weight: 600;
}
.hint {
margin: 0 0 24px;
font-size: 14px;
color: #a3a3b5;
}
.buttons {
display: flex;
flex-wrap: wrap;
gap: 12px;
justify-content: center;
}
.btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 10px 22px;
border-radius: 999px;
text-decoration: none;
font-size: 14px;
font-weight: 600;
letter-spacing: 0.02em;
border: none;
cursor: pointer;
transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn-primary {
background: #ffffff;
color: #1f2937;
box-shadow: rgba(0,0,0,0.25) 0 2px 8px;
}
.btn-primary:hover {
transform: translateY(-1px);
box-shadow: rgba(0,0,0,0.35) 0 4px 12px;
background: #f9fafb;
}
.btn-secondary {
background: transparent;
color: #ffffff;
border: 1.5px solid rgba(255,255,255,0.8);
box-shadow: none;
}
.btn-secondary:hover {
transform: translateY(-1px);
background: rgba(255,255,255,0.12);
border-color: #ffffff;
}
.muted {
margin-top: 32px;
font-size: 12px;
color: #6b7280;
}
.muted a {
color: #a3a3b5;
text-decoration: underline;
text-underline-offset: 2px;
}
</style>
</head>
<body>
<div class="container">
<img src="/404.png" alt="404" class="logo">
<p class="subtitle">啊哦,页面走丢了</p>
<p class="hint">您访问的页面不存在或已被移除,请返回首页或查看文档。</p>
<div class="buttons">
<a href="https://th-dd.top" class="btn btn-primary">返回个人主页</a>
<a href="https://docs.th-dd.top" class="btn btn-secondary">查看文档站</a>
</div>
<p class="muted">如持续遇到问题,请尝试清除缓存或联系站长。<br>以上的网址为:<a href="https://th-dd.top">th-dd.top</a> · <a href="https://docs.th-dd.top">docs.th-dd.top</a></p>
</div>
</body>
</html>