downCodeApp.html 823 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>
  12. </body>
  13. <style>
  14. body {
  15. background-color: #FAFAFA;
  16. }
  17. .overdue-con {
  18. font-size: 30px;
  19. color: #666666;
  20. text-align: center;
  21. letter-spacing: 2px;
  22. width: 600px;
  23. height: 600px;
  24. margin: 0 auto; /*水平居中*/
  25. position: relative;
  26. /*top: 50%; !*偏移*!*/
  27. top: 35%; /*偏移*/
  28. margin-top: -150px;
  29. line-height: 50px;
  30. }
  31. html,body {
  32. width: 100%;
  33. height: 100%;
  34. margin: 0;
  35. padding: 0;
  36. }
  37. .overdue-con {
  38. }
  39. </style>
  40. </html>