* {
  margin: 0;
  padding: 0;
}
body {
  background: linear-gradient(90deg, #d2f4fe, #b0e3ff, #c9e3fe, #f6e9fb);
}
.container {
  position: relative;
  width: 7.5rem;
  height: auto;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.container .content {
  width: 7.5rem;
  margin: 0 auto;
  overflow-x: hidden;
  z-index: 99;
  height: auto;
}
.container .content .top_bar {
  background: linear-gradient(90deg, #d5c0eb, #779dee, #9ad4fa, #69c4ff);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 7.5rem;
  height: 1.2rem;
  display: grid;
  grid-template-columns: auto auto;
  z-index: 15;
}
.container .content .top_bar .logo {
  position: absolute;
  width: 3.5rem;
  left: 0.2rem;
  top: 0.2rem;
  animation-name: scale;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}
.container .content .top_bar .logo img {
  width: 3.5rem;
}
.container .content .top_bar .btn_01 {
  position: absolute;
  width: 1.8rem;
  right: 0.3rem;
  top: 0.27rem;
}
.container .content .top_bar .btn_01 img {
  width: 1.8rem;
}
.container .content .top_pic {
  padding-top: 1.3rem;
  position: relative;
  width: 7.5rem;
  margin: 0 auto;
  margin-bottom: -1.3rem;
}
.container .content .top_pic .text {
  position: absolute;
  top: 2.6rem;
  left: 0.3rem;
  width: 3.8rem;
}
.container .content .top_pic .btn {
  position: absolute;
  top: 4.6rem;
  left: 0.3rem;
  width: 4rem;
  display: grid;
  grid-template-columns: 50% 50%;
  animation-name: scale;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}
.container .content .top_pic .btn img {
  width: 1.8rem;
}
.container .content .top_pic img {
  width: 100%;
  object-fit: contain;
}
.container .content .pic_01 {
  position: relative;
  width: 7rem;
  margin: 0 auto;
}
.container .content .pic_01 img {
  width: 100%;
  object-fit: contain;
}
.container .content .bottom_text {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 7.5rem;
  height: 1.58rem;
}
.container .content .bottom_text .download {
  position: absolute;
  top: 0.22rem;
  right: 0.2rem;
  width: 1.2rem;
}
.container .content .bottom_text img {
  width: 100%;
}
.container .content .kf {
  position: fixed;
  display: block;
  top: 30%;
  right: 0.2rem;
  width: 1.5rem;
  z-index: 99;
  animation-name: scale;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}
.container .content .kf img {
  width: 100%;
}
.container .container {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  height: 100%;
}
@keyframes scale {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
  }
  to {
    transform: scale(1);
  }
}
