1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>404 - 页面未找到</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- background-color: #f9f9f9;
- color: #333;
- margin: 0;
- padding: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100vh;
- text-align: center;
- }
- .container {
- max-width: 600px;
- padding: 20px;
- background: #ffffff;
- border: 1px solid #ddd;
- border-radius: 8px;
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
- }
- h1 {
- font-size: 3em;
- color: #ff6b6b;
- margin: 0;
- }
- p {
- margin: 15px 0;
- font-size: 1.2em;
- line-height: 1.6;
- }
- a {
- color: #007bff;
- text-decoration: none;
- font-weight: bold;
- }
- a:hover {
- color: #0056b3;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <h1>404</h1>
- <p>抱歉,您访问的页面不存在。</p>
- <p>请检查 URL 是否正确,或返回 <a href="/">首页</a>。</p>
- </div>
- </body>
- </html>
|