市场夺宝奇兵
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

102 lines
2.0 KiB

6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  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. * {
  9. margin: 0;
  10. padding: 0;
  11. box-sizing: border-box;
  12. }
  13. body {
  14. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  15. min-height: 100vh;
  16. display: flex;
  17. align-items: center;
  18. justify-content: center;
  19. padding: 20px;
  20. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  21. }
  22. .container {
  23. text-align: center;
  24. color: white;
  25. max-width: 500px;
  26. }
  27. h1 {
  28. font-size: 100px;
  29. margin: 0;
  30. font-weight: 700;
  31. text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  32. }
  33. .message {
  34. font-size: 24px;
  35. margin: 20px 0;
  36. }
  37. .desc {
  38. font-size: 14px;
  39. margin: 20px 0;
  40. opacity: 0.9;
  41. }
  42. .buttons {
  43. margin-top: 40px;
  44. display: flex;
  45. gap: 15px;
  46. justify-content: center;
  47. }
  48. .btn {
  49. display: inline-block;
  50. padding: 10px 24px;
  51. background: white;
  52. color: #667eea;
  53. text-decoration: none;
  54. border-radius: 25px;
  55. font-weight: 600;
  56. transition: transform 0.3s;
  57. }
  58. .btn:hover {
  59. transform: translateY(-2px);
  60. }
  61. .btn-outline {
  62. background: transparent;
  63. color: white;
  64. border: 2px solid white;
  65. }
  66. @media (max-width: 600px) {
  67. h1 {
  68. font-size: 70px;
  69. }
  70. .message {
  71. font-size: 18px;
  72. }
  73. }
  74. </style>
  75. </head>
  76. <body>
  77. <div class="container">
  78. <h1>404</h1>
  79. <div class="message">页面不存在</div>
  80. <div class="desc">抱歉,您访问的页面不存在或已被移除</div>
  81. <div class="buttons">
  82. <button class="btn btn-outline" onclick="history.back()">返回上一页</button>
  83. </div>
  84. </div>
  85. <script>
  86. console.error('404:', window.location.href);
  87. </script>
  88. </body>
  89. </html>