    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="UTF-8">
        <meta name="robots" content="noindex,nofollow">
        <title>404 - 页面找不到了</title>
        <style>
            body {
                font-size: 14px;
                font-family: 'helvetica neue',tahoma,arial,'hiragino sans gb','microsoft yahei','Simsun',sans-serif;
                background-color: #fff;
                color: #808080;
            }

            .wrap {
                margin: 200px auto;
                width: 480px;
            }

            td {
                text-align: left;
                padding: 2px 10px;
            }

                td.header {
                    font-size: 22px;
                    padding-bottom: 10px;
                    color: #000;
                }

                td.check-info {
                    padding-top: 20px;
                }

            a {
                color: #328ce5;
                text-decoration: none;
            }

                a:hover {
                    text-decoration: underline;
                }
        </style>
    </head>
    <body>
        <div class="wrap">
            <table>
                <tr>
                    <td class="header">哎呀，出错了。。。</td>
                </tr>
                <tr>
                    <td class="header">很抱歉！没有找到您要访问的页面</td>
                </tr>
                <tr><td><b id="second">5</b>秒后跳转到首页，立即调整请点击<a href="../index.html">返回</a></td></tr>
            </table>
        </div>

        <script type="text/javascript">
  var sec = document.getElementById("second");
  var i=5;
  var timer = setInterval(function () {
      i--;
      sec.innerHTML = i;
      if (i == 1) {
          window.location.href = "../index.html";
      }
  }, 1000);

        </script> 

    </body>
</html>  
