<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>404</title>
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<style type="text/css">
			html,body {
				padding: 0;
				margin: 0;
				height: 100vh;
			}
			body {
				background: url(./404.png) no-repeat center;

			}

			a {
				position: absolute;
				top: 50%;
				left: 50%;
				margin-top: -100px;
				margin-left: 30px;
				padding: 8px 20px;
				border-radius: 3px;
				background: orangered;
				color: white;
				text-decoration: none;
			}
			a:last-child {
				margin-left: 180px;
			}
			@media (max-width:860px) {
				body {
					background: url(404.png) no-repeat center;
					background-size: contain;
				}
				a{
					margin: 0;
					left: 15px;
					top: auto;
					bottom: 100px;
				}
				a:last-child {
					left: auto;
					right: 15px;
				}
			}
		</style>
	</head>
	<body>
		
			<a href="javascript:history.go(-1)">返回上一页</a>
			<a href="/">返回首页</a>
		
	</body>
</html>