|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <!DOCTYPE html>
- <html>
- <head lang="en">
- <meta name="viewport" id="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-touch-fullscreen" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <meta name="format-detection" content="telephone=no">
- <meta charset="UTF-8">
- <title></title>
- <style>
- .header_s {
- z-index: 210;
- width: 100%;
- height: 48px;
- line-height: 48px;
- background-color: rgb(105, 118, 184);
- text-align: center;
- color: rgb(255, 255, 255);
- position: fixed;
- top: 0;
- left: 0;
- font-size: 0.88em;
- font-family: Microsoft YaHei, Arial, Helvetica, sans-serif;
- }
- .header_middle {
- display: inline-block;
- line-height: 50px;
- font-size: 1.1em;
- width: 170px;
- }
- .upgrade{
- background: url("/public/images/global/upgradePic.png") no-repeat;
- width: 100%;
- height: 116px;
- background-size: 118px 116px;
- margin-top: 150px;
- /* margin-left: 30%;*/
- position: relative;
- background-position: center;
- }
- .showMsg{
- width: 100%;
- text-align: center;
- font-size: 1em;
- padding-top: 20px;
- font-weight: bold;
- font-family: Microsoft YaHei, Arial, Helvetica, sans-serif;
- }
- </style>
- </head>
- <body>
-
- <!--Header-->
- <div class="header_s">
- <div class="header_middle">
- <span>友情提示</span>
- </div>
- </div>
- <div class="upgrade"></div>
- <div class="showMsg">
- <div >系统繁忙!请稍后再试!</div>
- <div style="color: #888888;font-size: 12px;margin-top: 5px;"><a id='time' >3</a>秒后将跳回首页</div>
- </div>
- <script type="text/javascript">
- var time = 3;
- function setTime() {
- document.getElementById('time').innerHTML = time;
- time = time - 1;
- if (time <= 0) {
- window.location.href = '/';
- }
- setTimeout('setTime(time)', 1000);
- }
- setTime();
- </script>
- </body>
- </html>
|