1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| <!DOCTYPE html>
| <html>
|
| <head>
| <title>金融科技平台</title>
| <meta charset="UTF-8">
| <link rel="icon" href="image/bitbug_favicon.ico" type="image/x-icon" />
| <style>
| #not-fund {
| width: 500px;
| margin: 100px auto 0;
| }
| #not-fund .no_data_img{ width: 100%;}
| </style>
| </head>
|
| <body>
| <div id="not-fund">
| <img class="no_data_img" src="image/no_data.png">
| </div>
| </body>
| </html>
|
|