officialOverdue.html 874 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>双子星</title>
  6. </head>
  7. <body>
  8. <div class="overdue-con">
  9. <img src="../static/offImg/errorIcon.png" alt="">
  10. <div>本轮免费激活码发放已结束</div>
  11. <div>下轮发放时间敬请期待~</div>
  12. </div>
  13. </body>
  14. <style>
  15. body {
  16. background-color: #FAFAFA;
  17. }
  18. .overdue-con {
  19. font-size: 30px;
  20. color: #666666;
  21. text-align: center;
  22. letter-spacing: 2px;
  23. width: 600px;
  24. height: 600px;
  25. margin: 0 auto; /*水平居中*/
  26. position: relative;
  27. /*top: 50%; !*偏移*!*/
  28. top: 35%; /*偏移*/
  29. margin-top: -150px;
  30. line-height: 50px;
  31. }
  32. html,body {
  33. width: 100%;
  34. height: 100%;
  35. margin: 0;
  36. padding: 0;
  37. }
  38. .overdue-con {
  39. }
  40. </style>
  41. </html>