<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>404</title>
		<style type="text/css">
			.box {
				width: 1000px;
				margin-left: auto;
				margin-right: auto;
				position: relative;
			}

			.sel_btn {
				padding: 0 18px;
				background: #be0000;
				/* border: 1px #26bbdb solid;
				border-radius: 3px; */
				display: inline-block;
				text-decoration: none;
				font-size: 20px;
				font-weight: bold;
				line-height: 36px;
				outline: none;
				color: #FFFFFF;
				position: absolute;
				left: 75px;
				bottom: 75px;
			}
		</style>
	</head>
	<body style="text-align: center;">
		<div class="box">
			<img src="/images/404.jpg">
			<a class="sel_btn" href="http://www.pitimail.com/" target="_self" style="position: ;">回到首页</a>
			<p><span id="mysetTimeout"></span>秒后跳转到首页</p>
		</div>
		<script type="text/javascript">
			(function() {
				//5s跳转页面
				setTimeout(function() {
					window.top.location.href = "http://www.pitimail.com/";
				}, 5000);

				var tempshijian = 5;

				function shijian() { //从5s开始倒计时
					var I = setInterval(function() {
						if (tempshijian != 0) {
							tempshijian--;
							document.getElementById("mysetTimeout").innerHTML = tempshijian;
						}
					}, 1000);
				}

				shijian();
			})();
		</script>
	</body>
</html>
