<!DOCTYPE html>
<html lang="zh-cmn-hans">
<head>
	<meta charset="utf-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge,Chrome=1">
	<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no,shrink-to-fit=no">
	<meta name="renderer" content="webkit">
	<meta http-equiv="cache-control" content="no-siteapp">
	<meta name="apple-mobile-web-app-capable" content="yes">
	<title>404 - 您访问的页面未找到</title>
	<script type="text/javascript" src="//qzonestyle.gtimg.cn/qzone/hybrid/app/404/search_children.js" charset="utf-8" homePageUrl="/" homePageName="立即返回"></script>
	<script>
		window.onload = function(){
			document.querySelector('.link_view').target = '_blank';

			var t = 15;

			var desc = document.querySelector('.desc');
			desc.style.marginTop = '16px';
			desc.style.marginBottom = '16px';

			var count = document.createElement('span');
			count.id = 'time';
			count.style.marginRight = '16px';
			count.style.color = 'red';
			count.innerText = t + '秒后返回首页';
			desc.insertBefore(count,desc.querySelector('a'));

			var timer = setInterval(function(){
				t = t - 1;
				s = t < 10 ? '&nbsp;&nbsp;' + t : t;
				document.getElementById('time').innerHTML = s + '秒后返回首页';
				if(t <= 0){
					clearInterval(timer);
					window.location.href = '/';
				}
			},1000);
		}
	</script>
</head>
<body>
</body>
</html>