<!DOCTYPE html>
<html lang="zh-cn">
<head>
	<meta charset="utf-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	<meta http-equiv='Refresh' content='2;URL=/'/>
	<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
	<meta content="email=no" name="format-detection" />
	<meta content="telephone=no" name="format-detection" />
	<title>404错误</title>
	<style type="text/css">
	a{
		font-size: 12px;
		background: transparent;
	    text-decoration: none;
	    color: #333;
	}
	.cermiac{
		width: 980px;
		margin:0 auto;
	}
	.notfoundbg{
		height: 460px;
		width: 650px;
		background-color: green;
		background: url("/public/images/bg404.png");
		margin: 30px auto;
	}
	.clearfix:after {
		content: ".";
		display: block;
		clear: both;
		visibility: hidden;
		line-height: 0;
		height: 0;
		font-size:0;
	}
	.clearfix { *zoom:1;}
	.content{
	}
	.hreflink .divspan{
		width: 490px;
		text-align: center;
		line-height: 50px;
		height: 50px;
	}
	.hreflink .divspan span{
		display: block;
		text-indent: 20px;
		font-size: 16px;
		font-weight: bold;
	}
	.f{
		float: left;
	}
	.prev{
		background: url("/public/images/prev404.png") no-repeat 190px center ;
	}
	.home{
		background: url("/public/images/next404.png") no-repeat 198px center ;
	}
	</style>
</head>
<body>
	<div class="cermiac h content">
		<div class="notfoundbg"></div>
		<div class=" w hreflink clearfix">
			<div class="divspan f">
				<a href="javascript:history.go(-1)">
					<span class="prev">返回上一页</span>
				</a>
			</div>
			<div class="divspan f">
				<a href="javascript:;" onclick="gohome()">
					<span class="home">返回首页</span>
				</a>
			</div>
		</div>
	</div>
</body>
<script>
	function gohome(){
		var hosturl=window.location.host;
		hosturl=hosturl.indexOf("http://")>= 0?hosturl:"http://"+hosturl;
		window.location=hosturl;
	}
</script>
</html>