<!DOCTYPE html>
<html lang="en" >
<head>
  <meta charset="UTF-8">
  <title>404！很抱歉，千里眼没发现您找的页面!</title>

<style>
*,
::before,
::after {
  box-sizing: border-box;
}
	a{text-decoration: none}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #f3b83a;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.eyeCircle {
  width: 300px;
  height: 300px;
  border-radius: 100%;
  border: 30px solid #ebad32;
  position: relative;
  overflow: hidden;
}

.eyeLid {
  width: 100%;
  height: 400px;
  border: none;
  border-top: 30px solid #ebad32;
  position: absolute;
  top: 45%;
}

.lens {
  width: 350px;
  height: 200px;
  background-color: white;
  border-radius: 0px 0px 100px 100px;
  position: absolute;
}

.pupil {
  height: 50px;
  width: 100px;
  border-radius: 0 0 100px 100px;
  background-color: #102951;
  position: absolute;
  top: 0;
  left: 0;
  animation-name: example;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}

.text {
  font-size: 22px;
  color: white;
  font-weight: 300;
  letter-spacing:1px;
  position: absolute;
  top: 20%;
}

.mouth {
}

@keyframes example {
  from {
    left: -20px;
  }
  to {
    left: 50%;
  }
}

@media only screen and (max-width: 600px) {
  .eyeCircle {
    width: 100px;
    height: 100px;
    border: 10px solid #f1b130;
  }

  .eyeLid {
    width: 100%;
    border-top: 10px solid #f1b130;
  }

  .pupil {
    height: 25px;
    width: 50px;
    border-radius: 0 0 50px 50px;

    animation-duration: 3s;
  }

  @keyframes example {
    from {
      left: -10px;
    }
    to {
      left: 10%;
    }
  }

  .text {
    font-size: 14px;
  }
}
	.btn{ width: 100%; text-align: center; position: absolute;z-index: 1;top:76%; float: left; height: 50px}
	.btn_back{margin:0 auto; border-radius:30px 30px 10px 10px;border: #fff 1px solid; height: 44px; text-align: center;color: #fff;font-size: 18px;  width: 160px;line-height: 44px }
	.btn_back:hover{ background: #fff; color: #f3b83a}
</style>
</head>
<body>
<!-- partial:index.partial.html -->
<div class="container">
      <div class="eyeCircle">
        <div class="eyeLid">
          <div class="lens">
            <div class="pupil"></div>
          </div>
        </div>
      </div>
      <div class="eyeCircle">
        <div class="eyeLid">
          <div class="lens">
            <div class="pupil"></div>
          </div>
        </div>
      </div>

      <div class="text">Oh my God!! 👀千里眼没发现您找的页面</div>
      <div class="mouth"></div>
	<div class="btn"> <a  href="http://9191wan.cn"><div class="btn_back">返回首页</div></a></div>
    </div>
<!-- partial -->
  
</body>
</html>
