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.
 
 
 
 
 

43 regels
2.3 KiB

  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. *{margin:0;padding:0;box-sizing:border-box;}
  9. body{font-family:"Microsoft YaHei","PingFang SC",sans-serif;background:#F5F6F8;color:#303133;min-height:100vh;display:flex;flex-direction:column;}
  10. .error-header{background:#fff;padding:0 40px;height:72px;display:flex;align-items:center;box-shadow:0 2px 12px rgba(0,0,0,.04);}
  11. .error-header a{display:flex;align-items:center;text-decoration:none;}
  12. .error-header img{height:44px;}
  13. .error-body{flex:1;display:flex;align-items:center;justify-content:center;padding:40px 20px;}
  14. .error-card{text-align:center;max-width:520px;}
  15. .error-card img{max-width:360px;width:100%;margin-bottom:32px;}
  16. .error-desc{font-size:15px;color:#909399;line-height:1.8;margin-bottom:32px;}
  17. .error-actions{display:flex;gap:16px;justify-content:center;}
  18. .btn-back{display:inline-block;padding:12px 36px;border-radius:30px;font-size:15px;font-weight:600;text-decoration:none;transition:.3s;letter-spacing:1px;}
  19. .btn-primary{background:#E8751A;color:#fff;border:2px solid #E8751A;}
  20. .btn-primary:hover{background:#C96012;border-color:#C96012;transform:translateY(-2px);box-shadow:0 8px 24px rgba(232,117,26,.3);}
  21. .btn-ghost{background:transparent;color:#606266;border:2px solid #DCDFE6;}
  22. .btn-ghost:hover{border-color:#E8751A;color:#E8751A;}
  23. .error-footer{text-align:center;padding:24px;font-size:12px;color:#C0C4CC;}
  24. </style>
  25. </head>
  26. <body>
  27. <header class="error-header">
  28. <a href="/"><img src="/static/images/logo.png" alt="首页"></a>
  29. </header>
  30. <div class="error-body">
  31. <div class="error-card">
  32. <img src="/static/images/404.png" alt="404">
  33. <p class="error-desc">您访问的页面可能已被移除、名称已更改或暂时不可用。<br>请检查网址是否正确,或返回首页继续浏览。</p>
  34. <div class="error-actions">
  35. <a href="/" class="btn-back btn-primary">返回首页</a>
  36. <a href="javascript:history.back()" class="btn-back btn-ghost">返回上页</a>
  37. </div>
  38. </div>
  39. </div>
  40. <footer class="error-footer">© 肠愈同行管理系统</footer>
  41. </body>
  42. </html>