404.blade.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <html lang="zh">
  2. <head>
  3. <meta charset="UTF-8" />
  4. <title>404 - 会邦人</title>
  5. <link rel="shortcut icon" href="/favicon.ico" />
  6. <style>
  7. .undefined_contain {
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. height: 94vh;
  12. flex-wrap: wrap;
  13. flex-direction: column;
  14. }
  15. .image {
  16. height: 40vh;
  17. }
  18. .error_title {
  19. font-size: 18px;
  20. margin-top: 30px;
  21. width: 100%;
  22. font-family: '思源黑体旧字形 Regular';
  23. font-weight: bold;
  24. color: #53565c;
  25. line-height: 28px;
  26. text-align: center;
  27. }
  28. .error_desc {
  29. font-size: 14px;
  30. font-family: '思源黑体旧字形 Regular';
  31. font-weight: 400;
  32. color: #53565c;
  33. line-height: 22px;
  34. }
  35. .error_btn {
  36. cursor: pointer;
  37. margin-top: 40px;
  38. font-size: 12px;
  39. padding: 2px 16px;
  40. background: #ffffff;
  41. border-radius: 41px;
  42. border: 1px solid #3888ff;
  43. font-family: '思源黑体旧字形 Regular';
  44. font-weight: 400;
  45. color: #3888ff;
  46. line-height: 20px;
  47. transition: 0.2s;
  48. text-decoration: none;
  49. }
  50. .error_btn :hover {
  51. background-color: #3888ff;
  52. color: #ffffff;
  53. }
  54. </style>
  55. </head>
  56. <body>
  57. <div class="undefined_contain">
  58. <image class="image" src="/assets/image/img_def_404.png" />
  59. <div class="error_title">页面异常</div>
  60. <div class="error_desc">抱歉!找不到相关的内容</div>
  61. <a class="error_btn" href="/index">返回首页</a>
  62. </div>
  63. </body>
  64. </html>