* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background: #fff;
}

.container {
  width: 375px;
  position: relative;
  overflow-x: hidden;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border: none;
  outline: none;
  text-decoration: none;
  display: inline-block;
}

li {
  list-style: none;
}

div {
  position: relative;
}

span {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.abs {
  position: absolute;
}

.hide {
  display: none;
}

.mask {
  width: 100%;
  height: 100%;
  background: rgba(32, 29, 36, 0.9);
  position: absolute;
  top: 0;
  left: 0;
}

.loading {
  width: 100%;
  height: 100%;
}

.noscroll {
  overflow: hidden;
  height: 100vh;
}

.delay-1 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-2 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.logo {
  position: fixed;
  top: 65px;
  right: 15px;
  background: url("../images/logo.png") no-repeat top;
  background-size: cover;
  width: 29px;
  height: 155.5px;
  background-size: cover;
  z-index: 9;
}

.dot {
  display: inline-block;
  width: 54px;
  height: 54px;
  background-color: #F7B09C;
  border-radius: 50%;
}

.dot::after {
  position: absolute;
  content: "";
  width: 54px;
  height: 54px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
  opacity: 0;
  -webkit-box-shadow: 0 0 1px 2px #F7B09C;
          box-shadow: 0 0 1px 2px #F7B09C;
  -webkit-animation: halo 1.5s 0.5s infinite ease-out;
          animation: halo 1.5s 0.5s infinite ease-out;
}

.dot::before {
  position: absolute;
  content: "";
  width: 54px;
  height: 54px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
  opacity: 0;
  -webkit-box-shadow: 0 0 1px 2px #F7B09C;
          box-shadow: 0 0 1px 2px #F7B09C;
  -webkit-animation: halo 1.5s infinite ease-out;
          animation: halo 1.5s infinite ease-out;
}

@-webkit-keyframes notes {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.5) translate(50%, -50%);
            transform: scale(1.5) translate(50%, -50%);
  }
  80% {
    opacity: 0;
    -webkit-transform: scale(1.5) translate(100%, -100%);
            transform: scale(1.5) translate(100%, -100%);
  }
  100% {
    -webkit-transform: scale(1.5) translate(100%, -100%);
            transform: scale(1.5) translate(100%, -100%);
    opacity: 0;
  }
}

@keyframes notes {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.5) translate(50%, -50%);
            transform: scale(1.5) translate(50%, -50%);
  }
  80% {
    opacity: 0;
    -webkit-transform: scale(1.5) translate(100%, -100%);
            transform: scale(1.5) translate(100%, -100%);
  }
  100% {
    -webkit-transform: scale(1.5) translate(100%, -100%);
            transform: scale(1.5) translate(100%, -100%);
    opacity: 0;
  }
}

.audio {
  display: none;
}

#btn_audio {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 100;
  background: url("../images/music.png") no-repeat center;
  background-size: cover;
  width: 24px;
  height: 24px;
  background-size: cover;
  z-index: 999;
}

#btn_audio.on {
  -webkit-animation: rotate 4s infinite linear both;
          animation: rotate 4s infinite linear both;
}

#btn_audio.off {
  background: url("../images/music.png") no-repeat center;
  background-size: cover;
  width: 24px;
  height: 24px;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@-webkit-keyframes flash {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flash {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes halo {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.7);
            transform: scale(1.7);
  }
}

@keyframes halo {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.7);
            transform: scale(1.7);
  }
}

@-webkit-keyframes updown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes updown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

:root {
  --swiper-theme-color:#fff;
}

.page {
  position: relative;
  overflow-x: hidden;
}

.page .bg {
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/bg.png") no-repeat top center;
  background-size: cover;
  width: 375px;
  height: 812px;
}

.p1 {
  background: url("../images/bg_01.jpg") no-repeat top center;
  background-size: cover;
  width: 375px;
  height: 812px;
}

.p1 .bg {
  background-position: 0 0;
}

.p1 .title {
  position: absolute;
  top: 50%;
  right: 42px;
  width: 145px;
  height: 580px;
  margin-top: -290px;
}

.p1 .title .l1 {
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("../images/p1_01.png") no-repeat center;
  background-size: cover;
  width: 25.5px;
  height: 441px;
}

.p1 .title .l2 {
  position: absolute;
  top: 100px;
  right: 45px;
  background: url("../images/p1_02.png") no-repeat center;
  background-size: cover;
  width: 42.5px;
  height: 391px;
}

.p1 .title .l3 {
  position: absolute;
  top: 0;
  right: 100px;
  background: url("../images/p1_03.png") no-repeat center;
  background-size: cover;
  width: 49px;
  height: 518.5px;
}

.p1 .btn {
  position: absolute;
  top: 50%;
  left: 40px;
  background: url("../images/p1_04.png") no-repeat center;
  background-size: cover;
  width: 129px;
  height: 166px;
  margin-top: -83px;
}

.tips_page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
}

.tips_page .txt {
  position: absolute;
  top: 50%;
  right: 50px;
  background: url("../images/tips.png") no-repeat center;
  background-size: cover;
  width: 217.5px;
  height: 442.5px;
  margin-top: -221.25px;
}

.tips_page .close {
  position: absolute;
  top: 50%;
  left: 50px;
  background: url("../images/btn_close.png") no-repeat center;
  background-size: cover;
  width: 40px;
  height: 40px;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 58px;
  z-index: 1;
}

.menu .list {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 5px;
}

.menu .list .m1 {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: url("../images/m1.png") no-repeat center;
  background-size: cover;
  width: 45.5px;
  height: 45px;
  z-index: 2;
}

.menu .list .m2 {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: url("../images/m2.png") no-repeat center;
  background-size: cover;
  width: 45.5px;
  height: 45px;
  z-index: 2;
}

.menu .list .m3 {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: url("../images/m3.png") no-repeat center;
  background-size: cover;
  width: 45.5px;
  height: 45px;
  z-index: 2;
}

.menu .list .m4 {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: url("../images/m4.png") no-repeat center;
  background-size: cover;
  width: 45.5px;
  height: 45px;
  z-index: 2;
}

.menu .list .m5 {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: url("../images/m5.png") no-repeat center;
  background-size: cover;
  width: 45.5px;
  height: 45px;
  z-index: 2;
}

.menu .list .m6 {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: url("../images/m6.png") no-repeat center;
  background-size: cover;
  width: 45.5px;
  height: 45px;
  z-index: 2;
}

.menu .list .m7 {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: url("../images/m7.png") no-repeat center;
  background-size: cover;
  width: 45.5px;
  height: 45px;
  z-index: 2;
}

.menu .list .m8 {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: url("../images/m8.png") no-repeat center;
  background-size: cover;
  width: 45.5px;
  height: 45px;
  z-index: 2;
}

.slide-tips {
  position: fixed;
  width: 50px;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1;
}

.slide-tips .slide {
  position: absolute;
  top: 50%;
  left: 10px;
  background: url("../images/slide.gif") no-repeat center;
  background-size: cover;
  width: 29px;
  height: 190px;
  margin-top: -95px;
}

.p2 {
  background: url("../images/bg_02.jpg") no-repeat top center;
  background-size: cover;
  width: 375px;
  height: 812px;
}

.p2 .bg {
  background-position: 0 -812px;
}

.p2 .b1 {
  position: absolute;
  top: 185px;
  right: 0px;
  background: url("../images/b1.png") no-repeat center;
  background-size: cover;
  width: 313.5px;
  height: 464px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  z-index: 1;
}

.p2 .c1 {
  position: absolute;
  top: 300px;
  right: 40px;
  background: url("../images/c1.png") no-repeat center;
  background-size: cover;
  width: 51px;
  height: 95.5px;
}

.p2 .c2 {
  position: absolute;
  top: 700px;
  right: 10px;
  background: url("../images/c2.png") no-repeat center;
  background-size: cover;
  width: 54px;
  height: 71.5px;
}

.p2 .btn {
  top: 620px;
  right: 120px;
}

.gray {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-filter: gray;
          filter: gray;
}

.btnc {
  position: absolute;
  background: url("../images/btn_dl.png") no-repeat center;
  background-size: cover;
  width: 35.5px;
  height: 83.5px;
  z-index: 1;
}

.btnc:before {
  position: absolute;
  top: 3px;
  right: 1px;
  content: "";
  width: 32.5px;
  height: 77px;
  border: 1px solid #ea8500;
  border-radius: 8px;
  opacity: .7;
  -webkit-animation: rader 1s ease-in-out infinite;
          animation: rader 1s ease-in-out infinite;
}

@-webkit-keyframes rader {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: .9;
  }
  90% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.1;
  }
}

@keyframes rader {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: .9;
  }
  90% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.1;
  }
}

.popup {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
  overflow: hidden;
}

.popup .box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.popup .box .tips {
  position: absolute;
  top: 50%;
  left: 30px;
  margin-top: -93px;
  background: url("../images/box_tips.png") no-repeat center;
  background-size: cover;
  width: 9.5px;
  height: 93px;
}

.popup .box1 {
  background: url("../images/box1.png") no-repeat center;
  background-size: cover;
  width: 343px;
  height: 638px;
}

.popup .box2 {
  background: url("../images/box2.png") no-repeat center;
  background-size: cover;
  width: 343px;
  height: 638px;
}

.popup .box3 {
  background: url("../images/box3.png") no-repeat center;
  background-size: cover;
  width: 343px;
  height: 638px;
}

.popup .box4 {
  background: url("../images/box4.png") no-repeat center;
  background-size: cover;
  width: 343px;
  height: 638px;
}

.popup .box5 {
  background: url("../images/box5.png") no-repeat center;
  background-size: cover;
  width: 343px;
  height: 638px;
}

.popup .box6 {
  background: url("../images/box6.png") no-repeat center;
  background-size: cover;
  width: 343px;
  height: 638px;
}

.popup .box7 {
  background: url("../images/box7.png") no-repeat center;
  background-size: cover;
  width: 343px;
  height: 638px;
}

.popup .box8 {
  background: url("../images/box8.png") no-repeat center;
  background-size: cover;
  width: 343px;
  height: 638px;
}

.popup .box9 {
  background: url("../images/box9.png") no-repeat center;
  background-size: cover;
  width: 343px;
  height: 638px;
}

.popup .close {
  position: absolute;
  bottom: -5px;
  right: -10px;
  background: url("../images/btn_close.png") no-repeat center;
  background-size: cover;
  width: 40px;
  height: 40px;
}

.popup .swiper {
  position: absolute;
  top: 45px;
  right: 40px;
  width: 255px;
  height: 400px;
}

.popup .swiper .pic {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p3 {
  background: url("../images/bg_03.jpg") no-repeat top center;
  background-size: cover;
  width: 375px;
  height: 812px;
}

.p3 .bg {
  background-position: 0 -1624px;
}

.p3 .b2 {
  position: absolute;
  top: 65px;
  right: 140px;
  background: url("../images/b2.png") no-repeat center;
  background-size: cover;
  width: 161.5px;
  height: 451px;
}

.p3 .c3 {
  position: absolute;
  top: 200px;
  right: 60px;
  background: url("../images/c3.png") no-repeat center;
  background-size: cover;
  width: 33px;
  height: 58.5px;
}

.p3 .btn {
  top: 340px;
  right: 120px;
}

.p4 {
  background: url("../images/bg_04.jpg") no-repeat top center;
  background-size: cover;
  width: 375px;
  height: 812px;
}

.p4 .bg {
  background-position: 0 -2436px;
}

.p4 .b3 {
  position: absolute;
  top: 60px;
  right: 90px;
  background: url("../images/b3.png") no-repeat center;
  background-size: cover;
  width: 119px;
  height: 570px;
}

.p4 .c4 {
  position: absolute;
  top: 100px;
  right: -10px;
  background: url("../images/c4.png") no-repeat center;
  background-size: cover;
  width: 76.5px;
  height: 128px;
}

.p4 .btn {
  top: 460px;
  right: 40px;
}

.p5 {
  background: url("../images/bg_05.jpg") no-repeat top center;
  background-size: cover;
  width: 375px;
  height: 812px;
}

.p5 .bg {
  background-position: 0 -3248px;
}

.p5 .b4 {
  position: absolute;
  top: 230px;
  right: 70px;
  background: url("../images/b4.png") no-repeat center;
  background-size: cover;
  width: 206.5px;
  height: 369.5px;
}

.p5 .c2 {
  position: absolute;
  top: 100px;
  right: 10px;
  background: url("../images/c2.png") no-repeat center;
  background-size: cover;
  width: 54px;
  height: 71.5px;
}

.p5 .btn {
  top: 320px;
  right: 40px;
}

.p6 {
  background: url("../images/bg_06.jpg") no-repeat top center;
  background-size: cover;
  width: 375px;
  height: 812px;
}

.p6 .bg {
  background-position: 0 -4060px;
}

.p6 .b5 {
  position: absolute;
  top: 150px;
  right: 140px;
  background: url("../images/b5.png") no-repeat center;
  background-size: cover;
  width: 134.5px;
  height: 519px;
}

.p6 .c1 {
  position: absolute;
  top: 700px;
  right: 40px;
  background: url("../images/c1.png") no-repeat center;
  background-size: cover;
  width: 51px;
  height: 95.5px;
}

.p6 .btn {
  top: 300px;
  right: 70px;
}

.p7 {
  background: url("../images/bg_07.jpg") no-repeat top center;
  background-size: cover;
  width: 375px;
  height: 812px;
}

.p7 .bg {
  background-position: 0 -4872px;
  z-index: 1;
}

.p7 .b6 {
  position: absolute;
  top: 140px;
  right: 80px;
  background: url("../images/b6.png") no-repeat center;
  background-size: cover;
  width: 191px;
  height: 347px;
}

.p7 .b6_1 {
  position: absolute;
  top: 410px;
  right: 180px;
  background: url("../images/b6_1.png") no-repeat center;
  background-size: cover;
  width: 90px;
  height: 118px;
}

.p7 .btn {
  top: 480px;
  right: 50px;
}

.p8 {
  background: url("../images/bg_08.jpg") no-repeat top center;
  background-size: cover;
  width: 375px;
  height: 812px;
}

.p8 .bg {
  background-position: 0 -5684px;
}

.p8 .b7 {
  position: absolute;
  top: 90px;
  right: 120px;
  background: url("../images/b7.png") no-repeat center;
  background-size: cover;
  width: 139px;
  height: 524px;
}

.p8 .c3 {
  position: absolute;
  top: 200px;
  right: 60px;
  background: url("../images/c3.png") no-repeat center;
  background-size: cover;
  width: 33px;
  height: 58.5px;
}

.p8 .btn {
  top: 420px;
  right: 60px;
}

.p9 {
  background: url("../images/bg_09.jpg") no-repeat top center;
  background-size: cover;
  width: 375px;
  height: 812px;
}

.p9 .bg {
  background-position: 0 -6496px;
}

.p9 .b8 {
  position: absolute;
  top: 420px;
  right: 197px;
  background: url("../images/b8.png") no-repeat center;
  background-size: cover;
  width: 83.5px;
  height: 132px;
}

.p9 .t1 {
  position: absolute;
  bottom: 25px;
  right: 38px;
  background: url("../images/p9_t1.png") no-repeat center;
  background-size: cover;
  width: 31.5px;
  height: 383px;
}

.p9 .c4 {
  position: absolute;
  top: 100px;
  right: -10px;
  background: url("../images/c4.png") no-repeat center;
  background-size: cover;
  width: 76.5px;
  height: 128px;
}

.p9 .btn {
  top: 300px;
  right: 170px;
}

.bird {
  position: absolute;
  top: 6196px;
  left: -160px;
  background: url("../images/bird.png") no-repeat center;
  background-size: cover;
  width: 126.5px;
  height: 157.5px;
  z-index: 1;
}
/*# sourceMappingURL=styles.css.map */