123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <!-- 此文件提供给nginx 50x访问 -->
- <title>服务器内部错误</title>
- <link href="/common-assets/css/dwElementUI.css" rel="stylesheet">
- <link href="/common-assets/css/normalize.css" rel="stylesheet">
- <style type="text/css">
- .fullScreen {
- width: 100%;
- height: 100%;
- background: #fff;
- padding: 50px 0;
- }
- .errPage-container {
- width: 800px;
- max-width: 100%;
- margin: 0 auto;
- }
- .errPage-container .pan-back-btn {
- background: #008489;
- color: #fff;
- border: none !important;
- }
- .errPage-container .pan-gif {
- margin: 0 auto;
- display: block;
- }
- .errPage-container .pan-img {
- display: block;
- margin: 0 auto;
- width: 100%;
- }
- .errPage-container .text-jumbo {
- margin-top: 70px;
- font-size: 40px;
- font-weight: 700;
- color: #484848;
- }
- .errPage-container .list-unstyled {
- font-size: 14px;
- padding-left: 0;
- }
- .errPage-container .list-unstyled li {
- margin-bottom: 10px;
- list-style-type: none;
- }
- .errPage-container .list-unstyled a {
- color: #008489;
- text-decoration: none;
- }
- .errPage-container .list-unstyled a:hover {
- text-decoration: underline;
- }
- .el-row {
- position: relative;
- box-sizing: border-box
- }
- .el-row:after, .el-row:before {
- display: table;
- content: ""
- }
- .el-row:after {
- clear: both
- }
- [class*=el-col-] {
- float: left;
- box-sizing: border-box
- }
- .el-col-12 {
- width: 50%
- }
- </style>
- </head>
- <body>
- <div class="fullScreen">
- <div class="errPage-container">
- <div class="el-row">
- <div class="el-col el-col-12"><h1 class="text-jumbo text-ginormous">
- 抱歉,<strong id="status">服务器异常</strong></h1>
- <h2 class="text-primary" id="title" style="margin-bottom: 15px;">服务器内部错误</h2>
- <h3 style="margin-bottom: 15px;" id="desc">如需帮助,请联系管理员</h3>
- </div>
- <div class="el-col el-col-12">
- <img src="/common-assets/img/error.gif"
- width="313" height="428"
- alt="Girl has dropped her ice cream.">
- </div>
- </div>
- </div>
- </div>
- <script>
- var title = sessionStorage.getItem('errorTitle')
- if (title) {
- document.getElementById('title').innerText = title
- }
- </script>
- </body>
- </html>
|