404.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  7. <title>404 - 页面未找到</title>
  8. <style>
  9. body {
  10. background-color: #f5f5f5;
  11. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  12. margin: 0;
  13. padding: 0;
  14. display: flex;
  15. flex-direction: column;
  16. align-items: center;
  17. justify-content: center;
  18. height: 100vh;
  19. color: #333;
  20. }
  21. .container {
  22. text-align: center;
  23. padding: 20px;
  24. }
  25. h1 {
  26. font-size: 120px;
  27. margin: 0;
  28. color: #2c3e50;
  29. animation: bounce 2s ease infinite;
  30. }
  31. .message {
  32. font-size: 24px;
  33. margin: 20px 0;
  34. color: #666;
  35. }
  36. .home-link {
  37. display: inline-block;
  38. margin-top: 30px;
  39. padding: 12px 24px;
  40. background-color: #3498db;
  41. color: white;
  42. text-decoration: none;
  43. border-radius: 4px;
  44. transition: background-color 0.3s ease;
  45. }
  46. .home-link:hover {
  47. background-color: #2980b9;
  48. }
  49. @keyframes bounce {
  50. 0%, 100% {
  51. transform: translateY(0);
  52. }
  53. 50% {
  54. transform: translateY(-20px);
  55. }
  56. }
  57. @media (max-width: 768px) {
  58. h1 {
  59. font-size: 80px;
  60. }
  61. .message {
  62. font-size: 18px;
  63. }
  64. }
  65. </style>
  66. </head>
  67. <body>
  68. <div class="container">
  69. <h1>404</h1>
  70. <div class="message">抱歉,您访问的页面不存在</div>
  71. <a href="/" class="home-link">返回首页</a>
  72. </div>
  73. </body>
  74. </html>