* {
  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;
}

img {
  width: 100%;
}
.page-box {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}
.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 .logo {
    position: absolute;
    width: 1.2rem;
    bottom: .4rem;
    left: .2rem;
}
.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;
}

.logoContainer {
  width: 2.7rem;
  position: absolute;
  left: 2.43rem;
  top: 3.2rem;
}

.container {
  width: 56%;
  position: absolute;
  left: 1.7rem;
  top: 5.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: myfirst 2.2s infinite;
}

.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%;l
  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.75rem;
  width: 1.6rem;
  background-image: url("../img/h5btn.png");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

@-webkit-keyframes myfirst {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes myfirst {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.kf {
  position: fixed;
  bottom: 2rem;
  right: 0.2rem;
  animation: kf 2s infinite;
}
.kf img {
  width: 1rem;
}

@keyframes kf {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.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;
}

.logoContainer1 {
    width: 1.3rem;
    position: absolute;
    left: 0.09rem;
    top: 0.14rem;
}

.privacy-link {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.privacy-link a {
    display: inline-block; 
    padding: 10px 20px;
    color: white; 
    text-decoration: underline; 
    border-radius: 5px; 
    font-size: 16px;
}