﻿
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>该页面不存在</title>
<style type="text/css">
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.auto {
	margin: 0 auto;
	padding-top: 84px;
	min-width: 1000px;
	max-width: 1200px;
	_width: 1000px;
}
/*banner背景图*/
.error-bg {
	width: 520px;
	height: 436px;
	margin: 0 auto;
	margin-bottom: 16px;
	background: url(http://www.zoneidc.com/images/404-banner.jpg) no-repeat center;
}
p.tip2 {
	margin-bottom: 32px;
	font-size: 26px;
	font-family: "微软雅黑";
	line-height: 38px;
	text-align: center;
	color: #333333;
}
p.tip3 {
	margin-bottom: 16px;
	font-size: 16px;
	font-family: "微软雅黑";
	line-height: 16px;
	text-align: center;
	color: #3689f1;
}
span.num { 
	color: #045eaf;
}
a.a-index-page {
	text-decoration: none;
	color: #045eaf;
}
/*刷新按钮样式*/
span.reload-btn {
	width: 130px;
	height: 40px;
	margin: 0 auto;
	padding:6px 12px;
	line-height: 40px;
	text-align: center;
	background-color: #3689f1;
	color: #fff;
	cursor: pointer;
	border-radius: 4px;
}
span.reload-btn:hover {
	background-color: #4396fe;
}
</style>
<script src="https://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></script>
</head>
<body>
<div class="auto">
  <div class="error-bg"></div>
  <p class="tip2">当前网站产品已迁移，正在跳转新站点</p>
  <!--这里的a标签需要填写跳转地址-->
  <p class="tip3"><span id="num" class="num">5</span>秒后您将 <span id="reload-btn" class="reload-btn">去纵横数据首页</span></p>
</div>
<script>
	//倒计时跳转到首页的js代码
	var $_num=$("#num");
	var num=parseInt($_num.html());
	var numId=setInterval(function(){
		num--;
		$_num.html(num);
		if(num===0){
			//跳转地址写在这里
			window.location.href="https://www.zndata.com/";
		}
	},1000);
	//返回按钮单击事件
	var reloadPage = $("#reload-btn");
	reloadPage.click(function(){
		window.location=("https://www.zndata.com/");
	});
</script>
</body>
</html>