404.html 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <!-- 此文件提供给nginx 404访问 -->
  6. <title>在服务器上未找到指定资源</title>
  7. <link href="/common-assets/css/dwElementUI.css" rel="stylesheet">
  8. <link href="/common-assets/css/normalize.css" rel="stylesheet">
  9. <style type="text/css">
  10. .fullScreen {
  11. width: 100%;
  12. height: 100%;
  13. background: #fff;
  14. padding: 50px 0;
  15. }
  16. .errPage-container {
  17. width: 800px;
  18. max-width: 100%;
  19. margin: 0 auto;
  20. }
  21. .errPage-container .pan-back-btn {
  22. background: #008489;
  23. color: #fff;
  24. border: none !important;
  25. }
  26. .errPage-container .pan-gif {
  27. margin: 0 auto;
  28. display: block;
  29. }
  30. .errPage-container .pan-img {
  31. display: block;
  32. margin: 0 auto;
  33. width: 100%;
  34. }
  35. .errPage-container .text-jumbo {
  36. margin-top: 70px;
  37. font-size: 40px;
  38. font-weight: 700;
  39. color: #484848;
  40. }
  41. .errPage-container .list-unstyled {
  42. font-size: 14px;
  43. padding-left: 0;
  44. }
  45. .errPage-container .list-unstyled li {
  46. margin-bottom: 10px;
  47. list-style-type: none;
  48. }
  49. .errPage-container .list-unstyled a {
  50. color: #008489;
  51. text-decoration: none;
  52. }
  53. .errPage-container .list-unstyled a:hover {
  54. text-decoration: underline;
  55. }
  56. .el-row {
  57. position: relative;
  58. box-sizing: border-box
  59. }
  60. .el-row:after, .el-row:before {
  61. display: table;
  62. content: ""
  63. }
  64. .el-row:after {
  65. clear: both
  66. }
  67. [class*=el-col-] {
  68. float: left;
  69. box-sizing: border-box
  70. }
  71. .el-col-12 {
  72. width: 50%
  73. }
  74. </style>
  75. </head>
  76. <body>
  77. <div class="fullScreen">
  78. <div class="errPage-container">
  79. <div class="el-row">
  80. <div id="errorDesc404" class="el-col el-col-12">
  81. <h1 class="text-jumbo text-ginormous">
  82. 抱歉,<strong id="status">页面未找到</strong>
  83. </h1>
  84. <h2 class="text-primary" id="title" style="margin-bottom: 15px;">服务器没有指定资源</h2>
  85. <h3 style="margin-bottom: 15px;" id="desc">如需帮助,请联系管理员</h3>
  86. </div>
  87. <div class="el-col el-col-12">
  88. <img src="/common-assets/img/error.gif" width="313" height="428" alt="Girl has dropped her ice cream.">
  89. </div>
  90. </div>
  91. </div>
  92. </div>
  93. <script>
  94. var title = sessionStorage.getItem('errorTitle')
  95. if (title) {
  96. document.getElementById('title').innerText = title
  97. }
  98. </script>
  99. </body>
  100. </html>