<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - 页面未找到</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
background-color: #f9f9f9;
color: #333;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
text-align: center;
padding: 40px;
max-width: 600px;
background-color: white;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
h1 {
font-size: 120px;
margin-bottom: 20px;
color: #3498db;
font-weight: 900;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
h2 {
font-size: 28px;
margin-bottom: 20px;
color: #2c3e50;
}
p {
font-size: 18px;
line-height: 1.6;
margin-bottom: 20px;
color: #7f8c8d;
}
.btn {
display: inline-block;
padding: 12px 30px;
background-color: #3498db;
color: white;
text-decoration: none;
border-radius: 30px;
font-weight: bold;
border: none;
font-size: 16px;
cursor: pointer;
margin-top: 20px;
box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}
@media (max-width: 768px) {
.container {
padding: 30px;
margin: 0 20px;
}
h1 {
font-size: 80px;
}
h2 {
font-size: 22px;
}
p {
font-size: 16px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<h2>页面未找到</h2>
<p>很抱歉,您访问的页面不存在或已被移除。</p>
</div>
<script type="text/javascript" src="//js.users.51.la/21956427.js"></script>
</body>
</html>