23 lines
912 B
HTML
23 lines
912 B
HTML
<!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>
|
|
<link href="/css/bootstrap.min.css" rel="stylesheet">
|
|
<style>
|
|
body { display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background-color: #f8f9fa; }
|
|
.error-container { text-align: center; padding: 2rem; background-color: white; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
|
|
h1 { font-size: 5rem; margin: 0; color: #6c757d; }
|
|
p { font-size: 1.2rem; margin: 1rem 0; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="error-container">
|
|
<h1>404</h1>
|
|
<h2>页面未找到</h2>
|
|
<p>您请求的页面不存在或已被移动。</p>
|
|
<a href="/" class="btn btn-primary mt-3">返回首页</a>
|
|
</div>
|
|
</body>
|
|
</html> |