Files
o.nmgjg.com.cn/index/404.html

61 lines
1.4 KiB
HTML
Raw Normal View History

<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Not Found</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #ffecec;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
.error-container {
text-align: center;
background-color: #ffffff77;
padding: 40px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
margin-bottom: 20px;
}
p {
color: #666;
margin-bottom: 20px;
}
.back-button {
padding: 10px 20px;
background-color: #ff3434;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
.back-button:hover {
background-color: #990000;
}
</style>
</head>
2025-02-05 12:22:12 +00:00
<body>
<div class="error-container">
<h1>404 Not Found</h1>
<p>您访问的页面不存在。</p>
<button class="back-button" onclick="window.history.back()">返回</button>
</div>
</body>
</html>