<!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>
<style type="text/css">
	*{ margin:0; padding:0;}
	body{ font-family:'Microsoft YaHei'; background:url(404_bd.jpg) no-repeat center; width:100%; height:722px;}
	a{ color:#333; text-decoration:none;}
	.error{ width:1000px; margin:0 auto; padding-top:470px;}
	.error_click ul,.error_click li{ list-style:none;}
	.error_click{ width:594px; height:28px; float:right;}
	.error_click li{ float:left; width:auto; height:28px; line-height:24px; margin-right:34px; display:inline;}
	.error_click li a{ font-size:21px; display:block; padding-left:34px; height:28px;}
	.error_icon1 a{ text-decoration:underline;}
	.error_icon1 a{ background:url(error_icon1.png) no-repeat left;}
	.error_icon2 a{ background:url(error_icon2.png) no-repeat left;}
	.error_icon3 a{ background:url(error_icon3.png) no-repeat left;}
	.error_icon4 a{ background:url(error_icon4.png) no-repeat left;}
	.error_ask{ clear:both; color:#888; font-size:19px; padding:28px 0 0 0; text-align:right;}
	.error_ask .error_num{ color:#333; font-size:24px; padding:0 8px;}
</style>
</head>

<body>
	<div class="error">
    	<div class="error_click">
        	<ul>
            	<li class="error_icon1"><a href="/" id="href" title="回到首页">回到首页</a></li>
               
            </ul>
        </div>
        <div class="error_ask">提示：您可能输错了网址，或该网页已删除或不存在，系统将<span id="wait" class="error_num">5</span>秒后返回首页</div>
    </div>
</body>
<script type="text/javascript">
(function(){
var wait = document.getElementById('wait'),href = document.getElementById('href').href;
var interval = setInterval(function(){
	var time = --wait.innerHTML;
	if(time <= 0) {
		location.href = href;
		clearInterval(interval);
	};
}, 1000);
})();
</script>
</html>