Bez popisu
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.

404.html 2.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4. <head>
  5. <title>ERROR 404 - Not Found!</title>
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  8. <meta http-equiv="refresh" content="10; url=__ROOT_DIR__/">
  9. <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
  10. <meta name="robots" content="noindex" />
  11. <style type="text/css"><!--
  12. body {
  13. color: #444444;
  14. background-color: #fafafb;
  15. }
  16. a {
  17. color:#333333;
  18. text-decoration:none;
  19. }
  20. .error404-con{
  21. position: fixed;
  22. top: 50%;
  23. left: 50%;
  24. margin-left: -250px;
  25. margin-top: -200px;
  26. display: block;
  27. width: 500px;
  28. height: 400px;
  29. text-align: center;
  30. }
  31. .error404-con .img-bg{
  32. height: 200px;
  33. width: 100%;
  34. display: inline-block;
  35. background: url('__PUBLIC__/errpage/error404.png') no-repeat center center;
  36. }
  37. .error404-con .title{
  38. font-size: 42px;
  39. }
  40. .error404-con .title-sub{
  41. font-size: 16px;
  42. margin-top: 10px;
  43. }
  44. .error404-con .oper-btn{
  45. margin-top: 20px;
  46. }
  47. .error404-con .oper-btn .btn{
  48. background-color:#e8e8e8 ;
  49. display: inline-block;
  50. padding: 10px 30px;
  51. font-size: 22px;
  52. border-radius: 50px;
  53. margin: 0 10px;
  54. }
  55. .error404-con .oper-btn .btn.btn2{
  56. background-color:#ff6662;
  57. color: #fff;
  58. }
  59. @media only screen and (max-width:450px){
  60. .error404-con{
  61. width: 300px;
  62. height: 350px;
  63. margin-left: -150px;
  64. margin-top: -175px;
  65. }
  66. .error404-con .img-bg{
  67. background-size: contain;
  68. }
  69. .error404-con .title{
  70. font-size: 30px;
  71. }
  72. .error404-con .title-sub{
  73. font-size: 13px;
  74. }
  75. .error404-con .oper-btn .btn{
  76. padding: 10px 20px;
  77. font-size: 16px;
  78. border-radius: 50px;
  79. }
  80. }
  81. </style>
  82. </head>
  83. <body>
  84. <div class="error404-con">
  85. <div class="img-bg"></div>
  86. <div class="title">哎呀!找不到页面了!</div>
  87. <div class="title-sub">不要伤心,可能是网址错了呢,重新核对一下吧。</div>
  88. <div class="oper-btn">
  89. <a class="btn btn1" href="javascript:history.go(-1);">回到上一页</a>
  90. <a class="btn btn2" href="__ROOT_DIR__/">回到首页</a>
  91. </div>
  92. </div>
  93. </body>
  94. </html>