2025-06-05 16:11:41 +08:00
|
|
|
<!DOCTYPE html>
|
2025-06-08 13:48:43 +08:00
|
|
|
<html lang="zh-CN">
|
2025-06-08 11:42:47 +08:00
|
|
|
<head>
|
2025-06-05 16:11:41 +08:00
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2025-06-08 11:42:47 +08:00
|
|
|
<title>404 Not Found</title>
|
2025-06-05 16:11:41 +08:00
|
|
|
<style>
|
2025-06-08 11:42:47 +08:00
|
|
|
:root {
|
|
|
|
|
--bg-light: #ffffff;
|
|
|
|
|
--bg-dark: #0d1117;
|
|
|
|
|
--text-light: #0d1117;
|
|
|
|
|
--text-dark: #c9d1d9;
|
|
|
|
|
--accent: #3b82f6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
display: grid;
|
|
|
|
|
place-items: center;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
|
|
|
|
|
background-color: var(--bg-light);
|
|
|
|
|
color: var(--text-light);
|
|
|
|
|
transition: background-color 0.3s, color 0.3s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
font-size: 4rem;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
|
margin: 1rem 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: var(--accent);
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
2025-06-05 16:11:41 +08:00
|
|
|
body {
|
2025-06-08 11:42:47 +08:00
|
|
|
background-color: var(--bg-dark);
|
|
|
|
|
color: var(--text-dark);
|
2025-06-05 16:11:41 +08:00
|
|
|
}
|
2025-06-08 11:42:47 +08:00
|
|
|
}
|
2025-06-05 16:11:41 +08:00
|
|
|
</style>
|
2025-06-08 11:42:47 +08:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<main>
|
|
|
|
|
<h1>404</h1>
|
|
|
|
|
<p>页面未找到,可能已被移除或不存在。</p>
|
|
|
|
|
<p><a href="/">返回首页</a></p>
|
|
|
|
|
</main>
|
|
|
|
|
</body>
|
2025-06-05 16:11:41 +08:00
|
|
|
</html>
|