-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
63 lines (63 loc) · 1.93 KB
/
Copy path404.html
File metadata and controls
63 lines (63 loc) · 1.93 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - 页面未找到 | X2Agent</title>
<meta name="robots" content="noindex">
<link rel="stylesheet" href="css/style.min.css">
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<style>
.notfound-wrap {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 40px 20px;
background: var(--bg-page);
}
.notfound-code {
font-size: 80px;
font-weight: 700;
color: var(--primary-color);
letter-spacing: 2px;
line-height: 1;
margin-bottom: 20px;
}
.notfound-message {
font-size: 24px;
color: var(--text-primary);
margin-bottom: 40px;
}
.notfound-back {
display: inline-block;
background-color: var(--primary-color);
color: #fff;
border: none;
padding: 14px 32px;
border-radius: 12px;
font-size: 1.05rem;
font-weight: 500;
text-decoration: none;
transition: all 0.3s ease;
}
.notfound-back:hover {
background-color: var(--primary-hover);
transform: translateY(-2px);
}
@media (max-width: 768px) {
.notfound-code { font-size: 60px; }
.notfound-message { font-size: 20px; }
}
</style>
</head>
<body>
<div class="notfound-wrap">
<div class="notfound-code">404</div>
<div class="notfound-message">抱歉,您请求的页面不存在。</div>
<a href="index.html" class="notfound-back">返回首页</a>
</div>
</body>
</html>