<style>
	html,body{
		background-color: #f4f4f4;
		width: 100%;
		height: 100%;
		overflow: hidden;
		margin: 0;
		padding: 0;
	}
	.container-fluid {
		width: 100%;
		min-width: 1000px;
	}
	.container {
		width: 1200px;
		margin: 0 auto;
	}
	.error-image {
		height: 230px;
		margin-top: 10%;
		background-image:url(/static/images/404.png);
		background-repeat:no-repeat;
		background-position:50% 25%;
	}
	.error-btn {
		margin-top: 30px;
		text-align: center;
	}
	.error-btn a {
		margin-right: 10px;
		display: inline-block;
		width: 99px;
		height: 35px;
		background-color: #ff8100;
		color: #fff;
		line-height: 35px;
		border-radius: 3px;
		border: 1px solid #ff8100;
	}
	.error-btn a:link {color: #fff; text-decoration: none;}
	.error-btn a:hover{opacity:0.9; text-decoration: none; color: #fff;}
	.error-btn a:active{opacity:0.7;}
	.error-btn a:visited{color: #fff;}
	.error-btn a:first-child{
		background-color: #fff;
		color: #ff8100;
	}
	.foot {
		width: 100%;
		height: 234px;
		position: absolute;
		bottom: 0;
	}
</style>
<body>
<div class="container-fluid" >
	<div class="error404 container">
		<div class="error-image"></div>
		<div class="error-btn">
			<a href="/">返回首页</a>
			<a href="javascript:" onclick="history.go(-1);">返回上一页</a>
		</div>
	</div>
</div>

</body>
