* {
  margin: 0;
  padding: 0;
}
body {
  background: #feadc4;
}
.container {
  position: relative;
  width: 7.5rem;
  height: auto;
  margin: 0 auto;
  padding-bottom: 1rem;
}
.container .content {
  width: 7.5rem;
  margin: 0 auto;
  overflow-x: hidden;
  z-index: 99;
  height: auto;
}
.container .content .top_bar {
  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 {
  position: relative;
  width: 7.5rem;
  margin: 0 auto;
}
.container .content .top_pic .text {
  position: absolute;
  top: 2.6rem;
  left: 0.3rem;
  width: 3.8rem;
}
.container .content .top_pic img {
  width: 100%;
  object-fit: contain;
}
.container .content .pic_01 {
  position: absolute;
  width: 7rem;
  height: 0.4rem;
  top: 4rem;
  left: 0;
  right: 0;
  margin: auto;
  animation: scale;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
.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.42rem;
}
.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);
  }
}
