1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!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: 50%;
- 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/not_found.png" alt="">
- <p>异常错误,请稍后再试!</p>
- </div>
- </body>
- </html>
|