﻿<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>404页面</title>
    <link rel="Stylesheet" type="text/css" href="/images/system/error.css" />
    <script type="text/javascript" src="/Js/jquery-1.9.1.min.js"></script>
      <script type="text/javascript">
          $(function () {
              $("#content").css("margin-top", ($(window).height() - $("#content").height()) / 2 - 50 + "px");
              $(window).resize(function () {
                  $("#content").css("margin-top", ($(window).height() - $("#content").height()) / 2 - 50 + "px");
              })
          })
          var time = 5;
          var interval = setInterval(function () {
              time--;
              if (time == 0) {
                  location.href = "/Default.aspx";
                  clearInterval(interval);
              }
              else {
                  $(".prompt .special").text(time);
              }
          }, 1000)
      </script>
</head>

<body>
<div id="content" style="width:1100px;">

    <div class="content_img">
        <img src="/images/system/404.jpg" />
        <div class="content_prompt">
            <p class="txt">抱歉，你访问的页面不存在或已删除</p>
            <p class="prompt"><span class="special">5</span> 秒后返回<a href="/Default.aspx">首页</a></p>
        </div>
        <div class="other">
            <p>您还可以</p>
            <div class="btn">
                <a href="/Default.aspx"> >　进入首页</a>
                <a href="javascript:history.back();"> >　返回上一页</a>
            </div>
        </div>
    </div>

</div>

</body>
</html>