<template>
  <div class="wrap">
    <div class="logo">
      <h1>404</h1>
      <p>The Page not Found-找不到你要访问的页面</p>
      <div class="sub">
        <p><a href="/">返回首页</a></p>
      </div>
    </div>
  </div>
</template>
 
<script lang="ts" setup></script>
 
<style lang="scss" scoped>
.wrap {
  background: #f3f3e1;
  margin: 0 auto;
  height: 100%;
}
.logo {
  padding-top: 8%;
}
.logo h1 {
  font-size: 200px;
  color: #8f8e8c;
  text-align: center;
  margin-bottom: 1px;
  text-shadow: 1px 1px 6px #fff;
}
.logo p {
  color: rgb(228, 146, 162);
  font-size: 20px;
  margin-top: 1px;
  text-align: center;
}
.logo p span {
  color: lightgreen;
}
.sub {
  margin-top: 30px;
}
.sub a {
  color: white;
  background: #8f8e8c;
  text-decoration: none;
  padding: 12px 120px;
  font-size: 13px;
  font-family: arial, serif;
  font-weight: bold;
  -webkit-border-radius: 3em;
  -moz-border-radius: 0.1em;
  -border-radius: 0.1em;
}
</style>

扩展阅读