404.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>404 - 页面未找到</title>
  7. <style>
  8. body {
  9. font-family: Arial, sans-serif;
  10. background-color: #f9f9f9;
  11. color: #333;
  12. margin: 0;
  13. padding: 0;
  14. display: flex;
  15. justify-content: center;
  16. align-items: center;
  17. height: 100vh;
  18. text-align: center;
  19. }
  20. .container {
  21. max-width: 600px;
  22. padding: 20px;
  23. background: #ffffff;
  24. border: 1px solid #ddd;
  25. border-radius: 8px;
  26. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  27. }
  28. h1 {
  29. font-size: 3em;
  30. color: #ff6b6b;
  31. margin: 0;
  32. }
  33. p {
  34. margin: 15px 0;
  35. font-size: 1.2em;
  36. line-height: 1.6;
  37. }
  38. a {
  39. color: #007bff;
  40. text-decoration: none;
  41. font-weight: bold;
  42. }
  43. a:hover {
  44. color: #0056b3;
  45. }
  46. </style>
  47. </head>
  48. <body>
  49. <div class="container">
  50. <h1>404</h1>
  51. <p>抱歉,您访问的页面不存在。</p>
  52. <p>请检查 URL 是否正确,或返回 <a href="/">首页</a>。</p>
  53. </div>
  54. </body>
  55. </html>