* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, segoe ui, Roboto, Helvetica, Arial, sans-serif, apple color emoji, segoe ui emoji, segoe ui symbol;
}

/* @font-face {
  font-family: 'xy-Bold';
  src: url(./SOURCEHANSERIFCN-BOLD.ttf) format("woff2")
}

@font-face {
  font-family: 'xy-Light';
  src: url(./SOURCEHANSERIFCN-LIGHT.ttf) format("woff2")
} */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 1.44rem;
  padding: .4rem .64rem .4rem .8rem;
  display: flex;
  align-items: center;
  z-index: 99;
}

.nav .logo {
  height: .5rem;
  cursor: pointer;
}
#pages {
  width: 100%;
  height: 100vh;
  background: url('../img/bg2.png') no-repeat;
  background-size: cover;
  position: relative;
}

#pages .fp-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  /* background: #000; */
  object-fit: cover;
  z-index: 1;
}

.pages-content {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 0.64rem;
}

.pages-content .title {
  font-size: .6rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 6px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: .3rem;
  /* font-family: 'xy-Bold'; */
  animation: titleDh 5s;
}

.qrcode-box-list {
  display: flex;
  margin-top: 0.2rem;
  animation: qrcodeDh 1.4s;
}

.qrcode-box-list .qrcode-btn {
  margin: 0 0.2rem;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 0.18rem;
  cursor: pointer;
  border-radius: 6px;
  border: 1px solid #fff;
  width: 160px;
  position: relative;
  /* font-family: 'xy-Light'; */
}

.qrcode-box-list .qrcode-btn:hover {
  background-color: #fff;
  color: #333333;
}

.qrcode-box-list .qrcode-btn:hover>.hover-img {
  display: block;
  opacity: 1;
}

.qrcode-box-list .qrcode-btn .hover-img {
  position: absolute;
  top: 46px;
  width: 3rem;
  height: 3.2rem;
  left: 0.02rem;
  padding: 0.1rem;
  background: url(../img/code-bg1.png) no-repeat;
  background-size: 100% 100%;
  display: none;
  padding-top: 0.29rem;
}

.qrcode-box-list .qrcode-btn .hover-img img {
  width: 2.82rem;
  height: 2.82rem;
  border-radius: 8px;
}

/* ------------------ */
.footer {
  display: flex;
  flex-wrap: wrap;
  background-color: rgba(0, 0, 0, 0.2);
  margin-top: 0.4rem;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 3;
  line-height: 0.3rem;
  justify-content: center;
  /* justify-content: space-around; */
  padding: 0.14rem 0;
}
.footer .info-a {
  font-size: 0.14rem;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  margin:0 50px;
}


@keyframes qrcodeDh {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0rem);
  }
}
@keyframes titleDh {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
