* {
  padding: 0;
  margin: 0;
}

img {
  vertical-align: top;
}

.container {
  width: 100%;
  min-height: 100vh;
  background-color: rgb(5, 13, 6);
}
.container .mark-box {
  position: absolute;
  z-index: 1;
  background-image: url(../img/bg_01.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(30px);
}
.container .popup-box {
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  position: fixed;
  z-index: 3;
  width: 70%;
  min-height: 100px;
  background: #fff;
  border-radius: 16px;
  display: none;
}
.container .popup-box .title {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  padding: 24px 0;
}
.container .popup-box .content {
  line-height: 1.8;
  font-size: 14px;
  text-align: center;
}
.container .popup-box .load {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 25px;
}
.container .popup-box .load img {
  width: 25px;
  height: 25px;
}
.container .qr {
  z-index: 2;
  position: fixed;
  width: 120px;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
  padding: 10px;
  background-color: #df305e;
  border-radius: 6px;
  animation: bounce 5s infinite ease-in-out;
  display: none;
}
@keyframes bounce {
  0% {
    transform: translate(0, -50%);
  }
  20% {
    transform: translate(0, calc(-50% + 30px));
  }
  40% {
    transform: translate(0, -50%);
  }
  50% {
    transform: translate(0, calc(-50% + 15px));
  }
  70% {
    transform: translate(0, -50%);
  }
  100% {
    transform: translate(0, -50%);
  }
}
.container .qr img {
  width: 120px;
  height: 120px;
}
.container .qr .scan-text {
  color: #f5f5f5;
  font-size: 12px;
  text-align: center;
  margin-top: 14px;
}
.container .main {
  max-width: 450px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}
.container .main .images img {
  width: 100%;
  margin-top: -1px;
  z-index: 2;
}
.container .main .images img:nth-child(2) {
  margin-top: -13px;
  z-index: 1;
}
.container .main .fixed {
  position: fixed;
  z-index: 98;
  left: 0;
  width: 100%;
  height: 75px;
  display: flex;
  justify-content: center;
}
.container .main .fixed .fixed-box {
  height: 75px;
  background-size: 100% 100%;
  padding: 0 16px;
  padding-right: 10px;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 450px;
  width: 100%;
  box-sizing: border-box;
}
.container .main .fixed .fixed-box .box-left {
  display: flex;
  align-items: center;
}
.container .main .fixed .fixed-box .box-left img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin-right: 5px;
}
.container .main .fixed .fixed-box .box-left .left-content {
  display: flex;
  flex-direction: column;
  color: #fff;
}
.container .main .fixed .fixed-box .box-left .left-content p:first-child {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
}
.container .main .fixed .fixed-box .box-left .left-content p:last-child {
  padding-top: 5px;
  font-size: 12px;
  letter-spacing: 4px;
  padding-left: 5px;
}
.container .main .header {
  top: 0;
}
.container .main .header .fixed-box .box-right {
  border-radius: 36px;
  height: 36px;
  width: 87px;
  background: #FFFFFF;
  text-align: center;
  font-size: 14px;
  color: #e95451;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container .main .footer {
  bottom: 0;
}
.container .main .footer .fixed-box {
  background-image: url(../img/bottom__banner.png);
}
.container .main .footer .fixed-box .box-right img {
  height: 75px;
  max-height: 71px;
  margin-top: 5px;
  cursor: pointer;
  animation: breathing 1s infinite;
}
@keyframes breathing {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/*# sourceMappingURL=index.css.map */
