-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
67 lines (67 loc) · 2.1 KB
/
404.html
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Southz's Images-404</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
background-color: #fff;
padding: 20px;
border: 4px solid #333; /* 边框宽度 */
border-radius: 12px; /* 边框圆角 */
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* 阴影效果 */
max-width: 90%; /* 适应移动端屏幕 */
margin: 10px; /* 边距 */
}
h1 {
color: #333; /* 黑色 */
text-decoration: underline; /* 下划线 */
font-size: 2.2em; /* 字体大小 */
margin-bottom: 20px;
}
p {
color: #666;
font-size: 18px; /* 字体大小 */
line-height: 1.6;
margin-bottom: 15px;
}
.not-found {
color: #888;
font-style: italic;
font-size: 16px; /* 字体大小 */
}
@media (max-width: 600px) {
.container {
padding: 15px; /* 减少内边距 */
border-width: 3px; /* 适当减小边框宽度 */
}
h1 {
font-size: 2em; /* 进一步增大字体大小 */
}
p {
font-size: 16px; /* 进一步增大字体大小 */
}
}
</style>
</head>
<body>
<div class="container">
<h1>图片未找到</h1>
<p>很抱歉,我们无法找到您请求的图片。</p>
<p class="not-found">请检查图片链接是否正确,或者稍后再试。</p>
</div>
</body>
</html>