﻿<!DOCTYPE html>
<html>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<title>404</title>
	<script>
	var i = 10;
	var intervalid;
	intervalid = setInterval("Countdown()", 1000);
	function Countdown(){
		if(i == 0){ window.location.href = "/";clearInterval(intervalid); }
		document.getElementById("sec").innerHTML = i;
		i--;
	}
	</script>
	<style>
		*{margin:0;font-style:normal;}
		html { height:100%;background:#fff; }
		body{ height:100%;font:12px/2.2em "Microsoft Yahei";position:relative; }
		div{ position:absolute;left:50%;top:50%;margin:-250px 0 0 -350px;width:700px;height:450px;background:url(images/404.png) no-repeat center top; }
		a {
			position:absolute;left:50%;bottom:5px;display:block;margin-left:-100px;width:200px;
			border:1px solid #f2f2f2;border-radius:10px;background:#fff;
			transition:all .3s ease;color:#333333;text-decoration:none;text-align:center;
		}
		a i { color:#f2636b; }
		a:hover { border-color:#f2636b;background:#f2636b;color:#fff; }
		a:hover i { color:#ffde00; }
	</style>
	<body>
		<div>
			<a href="/"><i id="sec">10</i> 秒后返回主页</a>
		</div>
	</body>
</html>