* {
  user-select: none;
  margin: 0;
  padding: 0;
}
  
html,
body {
  height: 100%;
  max-width: 750px;
  margin: 0 auto;
}
  
body {
  display: flex;
  flex-direction: column;
  font-family: "Aileron", sans-serif;
  font-weight: bold;
}

.logo {
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  top: 0.25rem;
  left: 50%;
  transform: translateX(-50%);
}

.logo img {
  width: 100%;
  height: 100%;
}
  
img {
  width: 100%;
}

.page-box {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.page-box .page-bottom .logo {
  position: absolute;
  width: 1rem;
  height: 1rem;
  left: 0.8rem;
  top: 0.35rem;
}

.page-img {
  width: 100%;
}

.page-img img {
  width: 100%;
  display: block;
}
  
.page-padding {
  height: 4.7%;
}

.page-bottom {
  width: 100%;
  max-width: 750px;
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0%);
}

.page-bottom img {
  width: 100%;
  display: block;
}

.page-bottom .webs {
  position: absolute;
  left: 44%;
  color: #ffffff;
  top: 50%;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 900;
  font-style: normal;
}
  
.page-bottom .webs .webtxt {
  color: #fff000;
  font-style: normal;
}
  
.downMain {
  display: flex;
  justify-content: center;
}
  
.downImg {
  position: absolute;
  top: 10%;
  max-width: 400px;
  height: auto;
  /* display: none !important; */
  animation: myfirst 1s infinite;
}
  
.container {
  width: 80%;
  position: absolute;
  left: 1rem;
  top: 8.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
  
.link-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.2rem;
}
  
.link-btn .h5-url {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0.25rem;
  height: 0.46rem;
  width: 4rem;
  border-radius: 0.46rem;
  overflow: hidden;
  border: 0.01rem solid #1e6fff;
}
  
.ms-box {
  background: #1e6fff;
  height: 100%;
  width: 1rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
  
.url1,
.url2,
.url3 {
  color: #1e6fff;
  flex: 1;
  display: flex;
  justify-content: center;
}
  
/* .h5-btn {
  height: 0.70rem;
  width: 1.6rem;
  background-image: url('../img/h5btn.png');
  background-size: 100% 90%;
  background-position: center center;
  background-repeat: no-repeat;
} */
  
@-webkit-keyframes myfirst {
  from {
    transform: scale(1);
  }
  
  50% {
    transform: scale(0.8);
  }
  
  to {
    transform: scale(1);
  }
}
  
@keyframes myfirst {
  from {
    transform: scale(1);
  }
  
  50% {
    transform: scale(0.8);
  }
  
  to {
    transform: scale(1);
  }
}
  
.kf {
  position: fixed;
  bottom: 2rem;
  right: 0.2rem;
  animation: kf 0.8s infinite alternate;
}

.kf img {
  width: 1rem;
}
  
@keyframes kf {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}

.qr-container {
  z-index: 99;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.4);
}
  
.qr-box {
  padding: 30px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  font-size: 24px;
  width: 300px;
  height: auto;
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}