-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy path404.html
More file actions
154 lines (134 loc) · 4.06 KB
/
404.html
File metadata and controls
154 lines (134 loc) · 4.06 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>页面未找到 - 加水印 JiaShuiYin.com</title>
<link rel="icon" type="image/x-icon" sizes="16x16 32x32 48x48" href="/images/favicon.ico">
<style>
:root {
--primary-color: #3B82F6;
--primary-hover: #2563EB;
--text-primary: #1F2937;
--text-secondary: #4B5563;
--bg-primary: #FFFFFF;
--bg-secondary: #F3F4F6;
}
@media (prefers-color-scheme: dark) {
:root {
--primary-color: #60A5FA;
--primary-hover: #3B82F6;
--text-primary: #F9FAFB;
--text-secondary: #D1D5DB;
--bg-primary: #1F2937;
--bg-secondary: #374151;
}
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
background-color: var(--bg-primary);
color: var(--text-primary);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem;
transition: all 0.3s ease;
}
.container {
max-width: 600px;
text-align: center;
}
.logo-section {
margin-bottom: 2rem;
}
.logo-section img {
width: 80px;
height: 80px;
margin-bottom: 1rem;
}
.brand-name {
font-size: 1.5rem;
font-weight: bold;
margin-bottom: 0.5rem;
}
.brand-description {
color: var(--text-secondary);
margin-bottom: 2rem;
}
.divider {
height: 1px;
background-color: var(--text-secondary);
opacity: 0.2;
margin: 2rem 0;
}
.error-section {
margin-top: 2rem;
}
.error-code {
font-size: 6rem;
font-weight: bold;
color: var(--primary-color);
line-height: 1;
margin-bottom: 1rem;
}
.error-message {
font-size: 1.5rem;
margin-bottom: 1.5rem;
color: var(--text-secondary);
}
.home-button {
display: inline-block;
background-color: var(--primary-color);
color: white;
padding: 0.75rem 1.5rem;
border-radius: 0.375rem;
text-decoration: none;
font-weight: 500;
transition: background-color 0.3s ease;
}
.home-button:hover {
background-color: var(--primary-hover);
}
@media (max-width: 640px) {
.container {
padding: 1rem;
}
.error-code {
font-size: 4rem;
}
.error-message {
font-size: 1.25rem;
}
.logo-section img {
width: 60px;
height: 60px;
}
}
</style>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4562467673017981"
crossorigin="anonymous">
</script>
</head>
<body>
<div class="container">
<div class="logo-section">
<img src="/images/logo.png" alt="加水印网 Logo">
<h1 class="brand-name">加水印.com</h1>
<p class="brand-description">简单易用的在线图片加水印工具</p>
</div>
<div class="divider"></div>
<div class="error-section">
<div class="error-code">404</div>
<p class="error-message">抱歉,您访问的页面不存在</p>
<a href="/" class="home-button">返回首页</a>
</div>
</div>
</body>
</html>