<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>404未找到页面...</title>
<style type="text/css">
* { padding: 0; margin: 0; font-family: "微软雅黑"; }
.wrap { width: 960px; margin: auto; margin-top: 10%; text-align: left; background: url(http://www.0579cj.com/images/404.jpg) right top no-repeat; }
.notfound .wrap { }
.notfound h3 { font-size: 42px; color: #4b4b4b; line-height: 63px; }
.notfound p { font-size: 18px; color: #2f2f2f; line-height: 29px; padding: 21px 0 29px 0; }
.notfound a { display: block; width: 147px; height: 41px; background: #26a9e1; line-height: 41px; text-align: center; color: #fff; font-size: 18px; text-decoration: none; }
</style>
</head>
<body>
<div class="notfound">
	<span id="totalSecond">3</span>秒后自动返回
  <div class="wrap">
    <h3>诶呀！<br>
      页面找不到了！！</h3>
    <br>
    <p>可能原因有：<br>
      网站可能在进行维护或出现了程序问题</p>
    <br>
    <a href="/">返回首页</a> </div>
</div>
</body>
<script type="text/javascript">
	 var second = document.getElementById('totalSecond').textContent;
	    if (navigator.appName.indexOf("Explorer") > -1)  
	    {
	        second = document.getElementById('totalSecond').innerText;
	    } else
	    {
	        second = document.getElementById('totalSecond').textContent;
	    }
	    setInterval("redirect()", 1000); 
	    function redirect()
	    {
	        if (second < 0)
	        {
	            location.href = '/';
	        } else
	        {
	            if (navigator.appName.indexOf("Explorer") > -1)
	            {
	                document.getElementById('totalSecond').innerText = second--;
	            } else
	            {
	                document.getElementById('totalSecond').textContent = second--;
	            }
	        }
	    }
	</script>
</html>
