<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<title>页面不存在</title>
<style type="text/css">

::selection{ background-color: #E13300; color: white; }
::moz-selection{ background-color: #E13300; color: white; }
::webkit-selection{ background-color: #E13300; color: white; }

body {
	background-color: rgb(249,249,249);
	margin: 0;
	font: 13px/20px normal Helvetica, Arial, sans-serif;
	color: #4F5155;
	background: url(static/image/sky.png) no-repeat center top;
}

a {
	color: #003399;
	background-color: transparent;
	font-weight: normal;
}



code {
	font-family: Consolas, Monaco, Courier New, Courier, monospace;
	font-size: 12px;
	background-color: #f9f9f9;
	border: 1px solid #D0D0D0;
	color: #002166;
	display: block;
	margin: 14px 0 14px 0;
	padding: 12px 10px 12px 10px;
}
.header{
	width: 960px;
	height: 242px;
	margin: 0 auto;
	margin-top: 160px;
	background: url(static/image/rocket.png) no-repeat 20% center;
}
.container{
	width: 600px;
	margin: 0 auto;
	padding-left: 360px;
    text-align: left;
}
.container h1{
	color: rgb(102,102,102);
	font-size: 28px;
}
.container p{
	color: rgb(153,153,153);
	font-size: 14px;
	letter-spacing: 1px;
	margin-bottom: 30px;
}
.container .back-link{
	color: rgb(0,192,255);
	font-size: 14px;
}
.container .search-input{
	border: 1px solid rgb(204,204,204);
	padding: 5px 0;
	height: 24px;
	width: 260px;
}
.container .search-input:hover,.search-input:focus{
	outline: none;
	resize: none;
}
.container .search-btn{
	background: rgb(171,171,171);
	padding: 10px 20px;
	color: #FFF;
	cursor: pointer;
	border: none;
}
.container .search-btn:hover,.search-btn:focus{
	outline: none;
	resize: none;
}
#container {
	width: 960px;
	margin: 10px;
	border: 1px solid #D0D0D0;
	-webkit-box-shadow: 0 0 8px #D0D0D0;
}

</style>
</head>
<body>
	<div class="header"></div>
	<div class="container">
		<h1>抱歉，您访问的页面不存在哦~</h1>
		<p>输入地址有误或该地址已被删除</p>
		<p>我们建议您：<a class="back-link" href="index.html">返回首页</a></p>
	</div>

	<script type="text/javascript">
		setTimeout(function() {
			window.location.href = "/";
		}, 3000);
	</script>
</body>
</html>