<!DOCTYPE>
<html lang="zh-cn">
<head>
	<meta charset="utf-8" />
	<meta name="viewport" content="width=device-width, initial-scale=1" />
	<title>404页面没有找到</title>
	<meta http-equiv="refresh" content="60;url=/">
	<!-- content="600，即600秒后返回主页，可根据需要修改或者删除这段代码 -->
	<style type="text/css">
		body, div { margin: 0; padding: 0; }
		body { background: url("/public/images/error_bg.jpg") repeat-x scroll 0 0 #67ACE4; }
		#container { margin: 0 auto; padding-top: 50px; text-align: center; width: 560px; box-sizing: border-box}
		#container img { border: medium none; margin-bottom: 50px; }
		#container .error { height: 200px; position: relative; }
		#container .error img { bottom: -50px; position: absolute; right: -50px; }
		#container .msg { margin-bottom: 65px; }
		#cloud { background: url("/public/images/error_cloud.png") repeat-x scroll 0 0 transparent; bottom: 0; height: 170px; position: absolute; width: 100%; }
		@media screen and (max-width:768px) {
			#container{width: 100%; padding: 50px 10px 0 10px}
			#container .img{width: 100%; max-width:384px; height: auto !important; }
			#container .msg{width: 100%; max-width:389px; height: auto !important; }
		}
	</style>
</head>
<body>
<!-- 代码 开始 -->
<div id="container">
	<img class="img" src="/public/images/404.png" />
	<img class="msg" src="/public/images/404_msg.png" />
	<p><a href="/"><img src="/public/images/404_to_home.png" /></a></p>
</div>
<div id="cloud"></div>
<!-- 代码 结束 -->
</body>
</html>