error.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>出错了</title>
  8. <style>
  9. html,body {
  10. margin: 0;
  11. padding: 0;
  12. background: #F1F1F1;
  13. height: 100%;
  14. }
  15. body {
  16. position: relative;
  17. }
  18. .bg-img {
  19. width: 200px;
  20. height: 154px;
  21. position: absolute;
  22. left: 50%;
  23. top: 50%;
  24. margin-left: -100px;
  25. margin-top: -77px;
  26. }
  27. .bg-img img {
  28. width: 200px;
  29. }
  30. p {
  31. text-align: center;
  32. font-size:16px;
  33. font-weight:500;
  34. color:rgba(102,102,102,1);
  35. }
  36. </style>
  37. </head>
  38. <body>
  39. <div class="bg-img">
  40. <img src="/static/not_found.png" alt="">
  41. <p>异常错误,请稍后再试!</p>
  42. </div>
  43. </body>
  44. </html>