<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=EDGE">
<title>ECharts China Map</title>

<style>
	.wscn-http404-container{
	  transform: translate(-50%,-50%);
	  position: absolute;
	  top: 40%;
	  left: 50%;
	}
	.wscn-http404 {
	  position: relative;
	  width: 1200px;
	  padding: 0 50px;
	  overflow: hidden;
	}
	.pic-img {
	  position: relative;
	  float: left;
	  width: 600px;
	  overflow: hidden;
	}
	.pic-img-parent {
	  width: 100%;
	}
	.bullshit {
	  position: relative;
	  float: left;
	  width: 300px;
	  padding: 30px 0;
	  overflow: hidden;
	}
	.bullshit-oops {
	  font-size: 32px;
	  font-weight: bold;
	  line-height: 40px;
	  color: #1482f0;
	  opacity: 0;
	  margin-bottom: 20px;
	  animation-name: slideUp;
	  animation-duration: 0.5s;
	  animation-fill-mode: forwards;
	}
	.bullshit-headline {
	  font-size: 20px;
	  line-height: 24px;
	  color: #222;
	  font-weight: bold;
	  opacity: 0;
	  margin-bottom: 10px;
	  animation-name: slideUp;
	  animation-duration: 0.5s;
	  animation-delay: 0.1s;
	  animation-fill-mode: forwards;
	}
	.bullshit-info {
	  font-size: 14px;
	  line-height: 21px;
	  color: grey;
	  opacity: 0;
	  margin-bottom: 30px;
	  animation-name: slideUp;
	  animation-duration: 0.5s;
	  animation-delay: 0.2s;
	  animation-fill-mode: forwards;
	}
	.bullshit-return-home {
	  display: block;
	  float: left;
	  width: 110px;
	  height: 36px;
	  background: #1482f0;
	  border-radius: 100px;
	  text-align: center;
	  color: #ffffff;
	  opacity: 0;
	  font-size: 14px;
	  line-height: 36px;
	  cursor: pointer;
	  animation-name: slideUp;
	  animation-duration: 0.5s;
	  animation-delay: 0.3s;
	  animation-fill-mode: forwards;
	}
	@keyframes slideUp {
	  0% {
	    transform: translateY(60px);
	    opacity: 0;
	  }
	  100% {
	    transform: translateY(0);
	    opacity: 1;
	  }
	}
</style>
</head>
<body>
	<div class="wscn-http404-container">
		<div class="wscn-http404">
			<div class="pic-img">
				<img class="pic-img-parent" src="http://www.chtqdq.com/img/404.png" alt="404">
			</div>
			<div class="bullshit">
				<div class="bullshit-oops">404错误!</div>
				<div class="bullshit-headline">找不到网页！</div>
				<div class="bullshit-info">对不起，您正在寻找的页面不存在。尝试检查URL的错误，然后按浏览器上的刷新按钮或尝试在我们的应用程序中找到其他内容。</div>
				<router-link to="http://www.chtqdq.com/" class="bullshit-return-home">返回首页</router-link>
			</div>
		</div>
	</div>

</body>
</html>