-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
102 lines (83 loc) · 4.33 KB
/
Copy path404.html
File metadata and controls
102 lines (83 loc) · 4.33 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Not Found | Schale System</title>
<link href="https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;800&family=Noto+Sans+SC:wght@400;700&display=swap" rel="stylesheet">
<style>
:root { --ba-blue: #1289F4; --ba-dark: #2B2F35; --ba-bg: #F3F5F9; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Rajdhani', 'Noto Sans SC', sans-serif;
background-color: var(--ba-bg);
height: 100vh; display: flex; justify-content: center; align-items: center; overflow: hidden;
color: var(--ba-dark);
}
.grid-bg {
position: absolute; top: 0; left: 0; width: 100%; height: 100%;
background-image: linear-gradient(rgba(18, 137, 244, 0.05) 1px, transparent 1px),
linear-gradient(90deg, rgba(18, 137, 244, 0.05) 1px, transparent 1px);
background-size: 40px 40px; z-index: -1; pointer-events: none;
}
.error-card {
background: rgba(255, 255, 255, 0.95); padding: 40px;
border-radius: 4px; border-left: 8px solid var(--ba-blue);
box-shadow: 0 15px 35px rgba(0,0,0,0.1); max-width: 500px; width: 90%;
text-align: center; transform: skewX(-3deg); position: relative;
}
.content-wrapper {
transform: skewX(3deg); display: flex; flex-direction: column; align-items: center;
}
.system-badge {
position: absolute; top: -15px; left: -5px;
background: var(--ba-dark); color: white; padding: 5px 20px;
font-weight: 800; letter-spacing: 2px; font-size: 0.9rem;
transform: skewX(-15deg); box-shadow: 4px 4px 0 var(--ba-blue);
}
.arona-img { width: 180px; margin-bottom: 20px; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
h1 { font-size: 4rem; line-height: 1; margin: 0; color: var(--ba-blue); font-weight: 900; letter-spacing: -2px; }
h2 { font-size: 1.2rem; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; color: #555; }
.message-box {
background: #EAF7FF; border: 1px dashed var(--ba-blue);
padding: 15px; border-radius: 8px; margin-bottom: 25px; width: 100%; text-align: left;
}
.message-box p { font-size: 0.9rem; line-height: 1.6; color: #444; }
/* 模拟终端代码风格 */
.code-line { font-family: 'Courier New', monospace; font-size: 0.8rem; color: #888; margin-bottom: 5px; display: block; }
.back-btn {
text-decoration: none; background: var(--ba-dark); color: white;
padding: 12px 30px; font-weight: 700; font-size: 1rem;
transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
border: 2px solid var(--ba-dark);
}
.back-btn:hover {
background: white; color: var(--ba-dark);
box-shadow: 4px 4px 0 rgba(0,0,0,0.1); transform: translateY(-2px);
}
</style>
</head>
<body>
<div class="grid-bg"></div>
<div class="error-card">
<div class="system-badge">SYSTEM ALERT</div>
<div class="content-wrapper">
<!-- 记得替换图片 -->
<img src="404.png" alt="System Error" class="arona-img">
<h1>404</h1>
<h2>DATA NOT FOUND</h2>
<div class="message-box">
<span class="code-line">> Error Code: 404_NOT_FOUND</span>
<span class="code-line">> Target: Request_URL_Invalid</span>
<hr style="border: 0; border-top: 1px dashed #ccc; margin: 10px 0;">
<p><strong>访问的页面不存在或已被移除。</strong></p>
<p>系统无法检索到请求的资源,请检查链接拼写是否正确,或尝试返回主索引。</p>
</div>
<a href="index.html" class="back-btn">
<span>◀ RETURN HOME</span>
</a>
</div>
</div>
</body>
</html>