404.html 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>Document</title>
  9. </head>
  10. <body>
  11. <div class="container">
  12. <p class="content">系统升级中
  13. <br>
  14. 敬请期待</p>
  15. </div>
  16. <style>
  17. body {
  18. width: 100%;
  19. height: 100%;
  20. overflow: hidden;
  21. display: block;
  22. margin: 0 auto;
  23. background: cornflowerblue;
  24. background-image: url("man.png");
  25. background-position: top center;
  26. background-repeat: no-repeat;
  27. background-size: 100%;
  28. }
  29. .container {
  30. width: 100%;
  31. overflow: hidden;
  32. margin: 0 auto;
  33. text-align: center;
  34. color: #fff;
  35. font-size: 36px;
  36. }
  37. .content {
  38. width: 100%;
  39. overflow: hidden;
  40. display: block;
  41. margin: 0 auto;
  42. margin-top: 27%;
  43. }
  44. </style>
  45. </body>
  46. </html>