* {
  margin: 0;
  padding: 0;
}
body {
  background: #000;
}
.container {
  position: relative;
  width: 7.5rem;
  height: auto;
  margin: 0 auto;
}
.container .content {
  width: 7.5rem;
  margin: 0 auto;
  overflow-x: hidden;
  z-index: 99;
  height: auto;
}
.container .content .top_bar {
  background: url("./img/top.gif") no-repeat;
  background-size: cover;
  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_pic {
  padding-top: 1.1rem;
  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 .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;
  display: block;
}
.container .content .top_pic img {
  width: 100%;
  display: block;
}
.container .content .pic_01 {
  position: relative;
  width: 7.5rem;
  margin: 0 auto;
}
.container .content .pic_01 img {
  width: 100%;
  height: 100%;
  display: block;
}
.container .content .pic_02 {
  position: relative;
  width: 7.5rem;
  height: 3.8rem;
  margin: 0 auto;
  margin-bottom: -0.3rem;
}
.container .content .pic_02 img {
  position: absolute;
  width: 7.5rem;
  height: 100%;
  object-fit: contain;
  top: 0;
  left: 0;
  margin: auto;
  opacity: 0;
  transition: opacity 1s ease;
}
.container .content .pic_02 img.active {
  opacity: 1;
}
.container .content .bottom_text {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0.1rem;
  margin: auto;
  width: 7.5rem;
  height: 1.32rem;
  display: flex;
  justify-content: center;
  align-items: center;
  animation-name: scale;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}
.container .content .bottom_text img {
  width: 45%;
  display: block;
  margin: 0 auto;
}
.container .content .kf {
  position: fixed;
  display: block;
  top: 30%;
  right: 0.2rem;
  width: 1.2rem;
  z-index: 99;
}
.container .content .kf img {
  width: 100%;
}
@keyframes scale {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  to {
    transform: scale(1);
  }
}
