1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| <!DOCTYPE html>
| <html>
| <head>
| <meta charset="utf-8">
| <title>活动下架</title>
| <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
| <link rel="stylesheet" href="css/page.css" type="text/css" />
| <script>
| window.onresize = function() {
| document.documentElement.style.fontSize = document.documentElement.clientWidth / 7.5 + 'px';
| };
| window.onresize();
| </script>
| <style type="text/css">
| body {
| background: #f3f3f3;
| }
| </style>
| </head>
| <body>
|
| <div style="height: auto;width:100%; position: fixed;top:0;bottom: 0;display: flex;align-items: center;justify-content: center;flex-direction: column;">
| <img src="img/icon_offline.png" style="height: 1.92rem;width: auto;">
| <div style="font-size:0.30rem;color: #333333;margin-top: 0.3rem;">
| 你来晚了,活动已下架了~
| </div>
| </div>
|
|
| </body>
| </html>
|
|