<!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>
		body {
			background-color: #f8f8f8;
			font-family: "Helvetica Neue", Arial, sans-serif;
			text-align: center;
			padding: 100px 20px;
		}

		h1 {
			font-size: 100px;
			color: #333;
			margin-bottom: 20px;
		}

		h2 {
			font-size: 28px;
			color: #333;
			margin-bottom: 15px;
		}

		p {
			font-size: 18px;
			color: #666;
		}

		a {
			display: inline-block;
			margin-top: 30px;
			padding: 12px 24px;
			background-color: #007bff;
			color: white;
			text-decoration: none;
			border-radius: 6px;
			transition: background-color 0.3s ease;
		}

		a:hover {
			background-color: #0056b3;
		}
	</style>
</head>
<body>
<h1>404</h1>
<h2>页面未找到</h2>
<p>您访问的页面不存在，可能已被删除或域名错误。</p>
</body>
</html>