index.html 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <link rel="icon" href="./favicon.ico" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>管乐迷</title>
  8. <style>
  9. .wscn-http404-container {
  10. transform: translate(-50%, -50%);
  11. position: absolute;
  12. top: 40%;
  13. left: 50%;
  14. }
  15. .wscn-http404 {
  16. position: relative;
  17. width: 1000px;
  18. padding: 0 50px;
  19. overflow: hidden;
  20. }
  21. .pic-404 {
  22. position: relative;
  23. float: left;
  24. width: 475px;
  25. overflow: hidden;
  26. }
  27. .pic-404__parent {
  28. width: 100%;
  29. width: 475px;
  30. height: 430px;
  31. }
  32. .pic-404__child {
  33. position: absolute;
  34. width: 475px;
  35. height: 430px;
  36. }
  37. .bullshit {
  38. position: relative;
  39. float: left;
  40. width: 365px;
  41. padding: 120px 0 30px;
  42. margin-left: 100px;
  43. overflow: hidden;
  44. }
  45. .bullshit__oops {
  46. font-size: 32px;
  47. font-weight: bold;
  48. line-height: 40px;
  49. color: #000;
  50. opacity: 0;
  51. margin-bottom: 20px;
  52. animation-name: slideUp;
  53. animation-duration: 0.5s;
  54. animation-fill-mode: forwards;
  55. }
  56. .bullshit__headline {
  57. font-size: 20px;
  58. line-height: 24px;
  59. color: #222;
  60. font-weight: bold;
  61. opacity: 0;
  62. margin-bottom: 10px;
  63. animation-name: slideUp;
  64. animation-duration: 0.5s;
  65. animation-delay: 0.1s;
  66. animation-fill-mode: forwards;
  67. }
  68. .bullshit__info {
  69. font-size: 18px;
  70. line-height: 31px;
  71. color: #666;
  72. opacity: 0;
  73. margin-bottom: 30px;
  74. animation-name: slideUp;
  75. animation-duration: 0.5s;
  76. animation-delay: 0.2s;
  77. animation-fill-mode: forwards;
  78. }
  79. .bullshit__return-home {
  80. display: block;
  81. float: left;
  82. width: 110px;
  83. height: 36px;
  84. background: #1482f0;
  85. border-radius: 100px;
  86. text-align: center;
  87. color: #ffffff;
  88. opacity: 0;
  89. font-size: 14px;
  90. line-height: 36px;
  91. cursor: pointer;
  92. animation-name: slideUp;
  93. animation-duration: 0.5s;
  94. animation-delay: 0.3s;
  95. animation-fill-mode: forwards;
  96. }
  97. @keyframes slideUp {
  98. 0% {
  99. transform: translateY(60px);
  100. opacity: 0;
  101. }
  102. 100% {
  103. transform: translateY(0);
  104. opacity: 1;
  105. }
  106. }
  107. </style>
  108. </head>
  109. <body>
  110. <div class="wscn-http404-container">
  111. <div class="wscn-http404">
  112. <div class="pic-404">
  113. <img class="pic-404__parent" src="./bg.png" alt="bg">
  114. </div>
  115. <div class="bullshit">
  116. <div class="bullshit__oops">系统升级中</div>
  117. <div class="bullshit__info">我们正在对系统进行升级,升级期间暂时无法访问。预计结束时间:2022年2月10日 22:00
  118. 给您带来的不便,敬请谅解!</div>
  119. <!-- <a href=""
  120. class="bullshit__return-home">返回首页</a> -->
  121. </div>
  122. </div>
  123. </div>
  124. <!-- <div id="app"></div>
  125. <img id="loading" class="show" src="./bg.png" alt="loading"/>
  126. 系统维护中 -->
  127. </body>
  128. </html>