404.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>404-页面不存在</title>
  6. <style>
  7. body {
  8. margin: 0;
  9. padding: 0;
  10. background-color: #0078d7;
  11. color: white;
  12. font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  13. display: flex;
  14. flex-direction: column;
  15. justify-content: center;
  16. align-items: center;
  17. height: 100vh;
  18. text-align: center;
  19. }
  20. .error-code {
  21. font-size: 1.5em;
  22. margin-top: 20px;
  23. }
  24. .description {
  25. font-size: 1.2em;
  26. margin-top: 10px;
  27. }
  28. .input-container {
  29. margin-top: 20px;
  30. }
  31. .input-container input {
  32. font-size: 1em;
  33. padding: 10px;
  34. width: 300px;
  35. border: none;
  36. border-radius: 5px;
  37. }
  38. a {
  39. color: #fff;
  40. }
  41. </style>
  42. </head>
  43. <body>
  44. <div>
  45. <div class="emoji" style="font-size: 5em;">:(</div>
  46. <div class="main-message" style="font-size: 2em; margin-top: 20px;">The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.</div>
  47. <div class="error-code">发生错误、您的请求无法完成、您要查找的页面可能已被删除、名称已更改或暂时不可用。</div>
  48. <div class="error-code"><a href="/">您可以点击此处去首页</a></div>
  49. </div>
  50. </body>
  51. </html>