123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>出错了</title>
- <style>
- html,body {
- margin: 0;
- padding: 0;
- background: #F1F1F1;
- height: 100%;
- }
- body {
- position: relative;
- }
- .bg-img {
- width: 200px;
- height: 154px;
- position: absolute;
- left: 50%;
- top: 20%;
- margin-left: -100px;
- margin-top: -77px;
- }
- .bg-img img {
- width: 200px;
- }
- p {
- text-align: center;
- font-size:16px;
- font-weight:500;
- color:rgba(102,102,102,1);
- }
- </style>
- </head>
- <body>
- <div class="bg-img">
- <img src="/static/mobile/img/not_found.png" alt="">
- <p style="color: red">{$msg}</p>
- <p><a style="text-decoration: none;cursor: pointer" href="javascript:history.back(-1);">返回</a></p>
- </div>
- </body>
- </html>
|