12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>双子星</title>
- </head>
- <body>
- <div class="overdue-con">
- <img src="../static/offImg/errorIcon.png" alt="">
- <div>本轮免费激活码发放已结束</div>
- <div>下轮发放时间敬请期待~</div>
- </div>
- </body>
- <style>
- body {
- background-color: #FAFAFA;
- }
- .overdue-con {
- font-size: 30px;
- color: #666666;
- text-align: center;
- letter-spacing: 2px;
- width: 600px;
- height: 600px;
- margin: 0 auto; /*水平居中*/
- position: relative;
- /*top: 50%; !*偏移*!*/
- top: 35%; /*偏移*/
- margin-top: -150px;
- line-height: 50px;
- }
- html,body {
- width: 100%;
- height: 100%;
- margin: 0;
- padding: 0;
- }
- .overdue-con {
- }
- </style>
- </html>
|