<!DOCTYPE html>
<html>

	<head>
		<meta charset="utf-8" />
		<title>404Page</title>
		<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no">
	</head>

	<body>
		<style type="text/css">
			html,
			body {
				-webkit-tap-highlight-color: transparent;
			  -webkit-tap-highlight-color: transparent;
			  -webkit-touch-callout: none;
			  -webkit-touch-callout: none;
			  -webkit-overflow-scrolling: touch;
			  -moz-overflow-scrolling: touch;
			  -o-overflow-scrolling: touch;
			  overflow-scrolling: touch;
			  height: 100%; 
			}
			
			html,
			body,
			div,
			p,
			a,
			span,
			img {
				border: none;
				margin: 0;
				padding: 0;
				-webkit-box-sizing: border-box;
			    -moz-box-sizing: border-box;
			    box-sizing: border-box;
			    outline: 0;
			}
			
			body {
				font-size: 14px;
				color: #000;
				-moz-user-select: none;
				-webkit-user-select: none;
				-ms-user-select: none;
				-khtml-user-select: none;
				user-select: none;
			}
			
			a {
				text-decoration: none;
				color: #000;
			}
			
			img {
				vertical-align: top;
				max-width: 100%;
			}
			
			.error404 {
				background: url(/template/index/pc/404/3/images/bg-4.jpg) no-repeat center;
				background-size: cover;
				background-color: #13294e;
				color: #fff;
				
				position: relative;
				z-index: 1;
				min-height: 100vh;
				
				
				
				display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
			}
			.errorCon {
				width: 1200px;
				margin: auto;
				padding: 0 20px;
				position: relative;
				z-index: 1;
				
				display: flex;
				align-items: center;
				flex-wrap: wrap;
			}
			.error404 .left {
				width: 50%;
				float: left;
				text-align: center;
			}
			.error404 .right {
				width: 50%;
				float: left;
			}
			.error404 .pic-1 {
			}
			.error404 .title {
				font-size: 32px;
				font-weight: bold;
				line-height: 1.5;
				padding: 40px 0 10px 0;
			}
			.error404 .title-2 {
				color: rgba(255, 255, 255, .6);
				font-size: 20px;
				line-height: 1.5;
				margin-bottom: 40px;
			}
			.error404 .btns {
				font-size: 0;
			}
			.error404 .btns a {
				text-align: center;
				display: inline-block;
				min-width: 160px;
				line-height: 50px;
				font-size: 20px;
				border-radius: 5px;
				margin: 0 5px;
				padding: 0 10px;
				
				
			}
			.error404 .rerurnHome {
				border: 1px solid rgba(255, 255, 255, .5);
				color: #fff;
			}
			
			.error404 .rerurnHome:hover {
				background-color: rgba(255, 255, 255, .4);
				border-color: rgba(255, 255, 255, .4);
				color: #fff;
			}
			
			.error404 .returnPrev {
				background-color: rgba(255, 255, 255, .2);
				border: 1px solid rgba(255, 255, 255, 1);
				color: #fff;
			}
			.error404 .returnPrev:hover {
				background-color: rgba(255, 255, 255, .4);
				border-color: rgba(255, 255, 255, .4);
				color: #fff;
			}
			.error404 .automatic {
				font-size: 14px;
				padding: 20px 0;
			}
			.error404 .automatic a{
				margin-left: 5px;
				color: #fff;
			}
			.error404 .automatic a:hover{
				text-decoration: underline;
			}
			
			@media screen and (max-width: 640px) {
				.error404 .left {
					width: 100%;
					text-align: center;
					padding-bottom: 20px;
				}
				.error404 .right {
					width: 100%;
					text-align: center;
				}
				.error404 .pic-1 {
					max-width: 80%;
					margin: auto;
				}
				.error404 .pic-2 {
					max-width: 60%;
					margin: auto;
				}
				.error404 .title {
					font-size: 18px;
				}
				.error404 .title-2 {
					font-size: 16px;
				}
				.error404 .btns a {
					min-width: 140px;
					font-size: 18px;
					line-height: 40px;
				}
			}
		</style>
			
		<div class="error404">
			
			<div class="errorCon">
				<div class="left">
					<div class="pic-1"><img src="/template/index/pc/404/3/images/peitu-4.png"></div>
				</div>
				<div class="right">
					<div class="pic-2"><img src="/template/index/pc/404/3/images/404-4.png"></div>
					<div class="title">抱歉，您的访问页面可能已被删除或不存在！</div>
					<div class="title-2"></div>
					<div class="btns">
						<a href="/" class="rerurnHome">首页</a>
						<a href="javascript:history.go(-1);" class="returnPrev">返回上一页</a>
					</div>
					<div class="automatic">
						<span id="time">5</span>在几秒钟内跳转到<a href="/">首页</a>
					</div>
				</div>
				
			</div>
		
		</div>
	</body>

		<script>
			var time = document.getElementById('time');
			var second = time.innerHTML;
			setInterval(function() {
				time.innerHTML = second--;
				if(second == 0) {
					window.location.href = "/";
				}
			}, 1000);
		</script>

</html>
