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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f9a964;
}

.container {
  width: 100%;
  height: 100%;
  position: relative;
}

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%;
}

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

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

.logo {
  position: absolute;
  top: 20px;
  left: 25px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/logo.png") no-repeat top;
  background-size: cover;
  width: 106px;
  height: 42px;
  background-size: cover;
  z-index: 999;
}

.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: absolute;
  top: 20px;
  right: 20px;
  z-index: 100;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/music.png") no-repeat center;
  background-size: cover;
  width: 40px;
  height: 40px;
  background-size: cover;
  z-index: 999;
}

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

@-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);
  }
}

.loading {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #F1C542;
  -webkit-transition: all 1.5s ease-out;
  transition: all 1.5s ease-out;
}

.loading.change {
  background-color: #081320;
}

.loading .logo {
  top: auto;
  bottom: 15vh;
  left: 50%;
  margin-left: -53px;
}

.loading #loading_txt {
  position: absolute;
  bottom: 25vh;
  width: 100%;
  text-align: center;
  font-size: 28px;
  color: #fff;
  font-weight: bold;
}

.loading .gif {
  position: absolute;
  top: 150px;
  left: 70px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p0_sprites.png") no-repeat 0 0;
  background-size: cover;
  width: 234.5px;
  height: 241.5px;
  background-size: 1407px 1207.5px;
  -webkit-animation: hs 1.5s steps(1) infinite;
          animation: hs 1.5s steps(1) infinite;
}

@-webkit-keyframes hs {
  0% {
    background-position: -0 -0;
  }
  4% {
    background-position: -234.5px 0;
  }
  8% {
    background-position: -469px 0;
  }
  12% {
    background-position: 0 -241.5px;
  }
  16% {
    background-position: -234.5px -241.5px;
  }
  20% {
    background-position: -469px -241.5px;
  }
  24% {
    background-position: -703.5px 0;
  }
  28% {
    background-position: -703.5px -241.5px;
  }
  32% {
    background-position: 0 -483px;
  }
  36% {
    background-position: -234.5px -483px;
  }
  40% {
    background-position: -469px -483px;
  }
  44% {
    background-position: -703.5px -483px;
  }
  48% {
    background-position: -938px 0;
  }
  52% {
    background-position: -938px -241.5px;
  }
  56% {
    background-position: -938px -483px;
  }
  60% {
    background-position: 0 -724.5px;
  }
  64% {
    background-position: -469px -724.5px;
  }
  68% {
    background-position: -234.5px -724.5px;
  }
  72% {
    background-position: -703.5px -724.5px;
  }
  76% {
    background-position: -938px -724.5px;
  }
  80% {
    background-position: -1172.5px 0;
  }
  84% {
    background-position: -1172.5px -241.5px;
  }
  88% {
    background-position: -1172.5px -483px;
  }
  92% {
    background-position: -1172.5px -724.5px;
  }
  96% {
    background-position: 0 -966px;
  }
  100% {
    background-position: -0 -0;
  }
}

@keyframes hs {
  0% {
    background-position: -0 -0;
  }
  4% {
    background-position: -234.5px 0;
  }
  8% {
    background-position: -469px 0;
  }
  12% {
    background-position: 0 -241.5px;
  }
  16% {
    background-position: -234.5px -241.5px;
  }
  20% {
    background-position: -469px -241.5px;
  }
  24% {
    background-position: -703.5px 0;
  }
  28% {
    background-position: -703.5px -241.5px;
  }
  32% {
    background-position: 0 -483px;
  }
  36% {
    background-position: -234.5px -483px;
  }
  40% {
    background-position: -469px -483px;
  }
  44% {
    background-position: -703.5px -483px;
  }
  48% {
    background-position: -938px 0;
  }
  52% {
    background-position: -938px -241.5px;
  }
  56% {
    background-position: -938px -483px;
  }
  60% {
    background-position: 0 -724.5px;
  }
  64% {
    background-position: -469px -724.5px;
  }
  68% {
    background-position: -234.5px -724.5px;
  }
  72% {
    background-position: -703.5px -724.5px;
  }
  76% {
    background-position: -938px -724.5px;
  }
  80% {
    background-position: -1172.5px 0;
  }
  84% {
    background-position: -1172.5px -241.5px;
  }
  88% {
    background-position: -1172.5px -483px;
  }
  92% {
    background-position: -1172.5px -724.5px;
  }
  96% {
    background-position: 0 -966px;
  }
  100% {
    background-position: -0 -0;
  }
}

.p1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 375px;
  height: 100vh;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p1_bg.jpg") no-repeat top center;
  background-size: cover;
  width: 375px;
  height: 100vh;
}

.p1 .t1 {
  position: absolute;
  top: 85px;
  left: 16px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p1_t1.png") no-repeat center;
  background-size: cover;
  width: 358px;
  height: 164px;
}

.p1 .t1 .note {
  position: absolute;
  top: 95px;
  right: 30px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p1_01_01.png") no-repeat center;
  background-size: cover;
  width: 59px;
  height: 49px;
  animation: updown 4s ease infinite alternate-reverse;
}

.p1 .t2 {
  position: absolute;
  top: 97px;
  left: 18px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p1_t2.png") no-repeat center;
  background-size: cover;
  width: 353px;
  height: 109px;
}

.p1 .t2 .note {
  position: absolute;
  top: 95px;
  right: 30px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p1_01_01.png") no-repeat center;
  background-size: cover;
  width: 59px;
  height: 49px;
  animation: updown 4s ease infinite alternate-reverse;
}

.p1 .star-panel {
  position: absolute;
  top: 310px;
  width: 100%;
}

.p1 .star-panel .s1, .p1 .star-panel .s2, .p1 .star-panel .s3, .p1 .star-panel .s4, .p1 .star-panel .s5, .p1 .star-panel .s6 {
  position: absolute;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p1_star.png") no-repeat center;
  background-size: cover;
  width: 24px;
  height: 24px;
  -webkit-animation: rotate linear 2s infinite;
          animation: rotate linear 2s infinite;
}

.p1 .star-panel .s1 {
  left: 17px;
}

.p1 .star-panel .s2 {
  left: 80px;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.p1 .star-panel .s3 {
  left: 143px;
}

.p1 .star-panel .s4 {
  left: 207px;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.p1 .star-panel .s5 {
  left: 270px;
}

.p1 .star-panel .s6 {
  left: 332px;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.p1 .screen-panel {
  position: absolute;
  top: 347px;
  width: 100%;
}

.p1 .screen-panel .l {
  position: absolute;
  top: 0;
  left: 0;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p1_03_l.png") no-repeat center;
  background-size: cover;
  width: 181px;
  height: 227px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.p1 .screen-panel .r {
  position: absolute;
  top: 0;
  right: 0;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p1_03_r.png") no-repeat center;
  background-size: cover;
  width: 191px;
  height: 226px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.p1 .screen-panel.open .l {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.p1 .screen-panel.open .r {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.p1 .l2 {
  position: absolute;
  top: 381px;
  left: 89px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p1_02.png") no-repeat center;
  background-size: cover;
  width: 155px;
  height: 94px;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.p1 .l2 .t1 {
  position: absolute;
  top: 23px;
  left: 20px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p1_02_01.png") no-repeat center;
  background-size: cover;
  width: 110.5px;
  height: 39px;
}

.p1 .l2 .t2 {
  position: absolute;
  top: 23px;
  left: 20px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p1_02_02.png") no-repeat center;
  background-size: cover;
  width: 109.5px;
  height: 39px;
}

.p1 .l2.animate__fadeOut {
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}

.p1 .l3 {
  position: absolute;
  top: 370px;
  left: 40px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p1_04.png") no-repeat center;
  background-size: cover;
  width: 307px;
  height: 113px;
}

.p1 .rb {
  position: absolute;
  top: 395px;
  left: 170px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/1.gif") no-repeat center;
  background-size: cover;
  width: 250px;
  height: 250px;
}

.p1 .btn1, .p1 .btn2, .p1 .btn3 {
  position: absolute;
  bottom: 20px;
  left: 110px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p1_btn.png") no-repeat center;
  background-size: cover;
  width: 148px;
  height: 110px;
}

@media screen and (max-height: 660px) {
  .p1 .btn1, .p1 .btn2, .p1 .btn3 {
    bottom: -20px;
  }
}

.p2 {
  position: absolute;
  top: 0;
  left: 0;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p2_bg.jpg") no-repeat top center;
  background-size: cover;
  width: 375px;
  height: 100vh;
}

.p2 .title {
  position: absolute;
  top: 90px;
  left: 36px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p2_02.png") no-repeat center;
  background-size: cover;
  width: 138.5px;
  height: 19px;
}

.p2 .num {
  position: absolute;
  top: 120px;
  left: 38px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: bold;
}

.p2 .num span {
  color: #412421;
}

.p2 .cover {
  position: absolute;
  top: 130px;
  left: 13px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p2_03.png") no-repeat center;
  background-size: cover;
  width: 349px;
  height: 349px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.p2 .cover.open {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.p2 .disk-panel {
  position: absolute;
  width: 100%;
  top: 160px;
}

.p2 .disk-panel.play .hand {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.p2 .disk-panel.play .disk {
  -webkit-animation: rotate linear 4s infinite;
          animation: rotate linear 4s infinite;
}

.p2 .disk-panel .btn-prev {
  position: absolute;
  top: 105px;
  left: 10px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p2_prev.png") no-repeat center;
  background-size: cover;
  width: 42px;
  height: 42px;
  z-index: 1;
}

.p2 .disk-panel .btn-next {
  position: absolute;
  top: 105px;
  right: 10px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p2_next.png") no-repeat center;
  background-size: cover;
  width: 42px;
  height: 42px;
  z-index: 1;
}

.p2 .disk-panel .hand {
  position: absolute;
  top: -50px;
  right: -8px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p2_04_01.png") no-repeat center;
  background-size: cover;
  width: 138px;
  height: 182px;
  z-index: 1;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.p2 .disk-panel .disk-mask {
  position: absolute;
  width: 100%;
  height: 255px;
  overflow: hidden;
}

.p2 .disk-panel .disk-list {
  width: 900%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.p2 .disk-panel .disk-list .item {
  position: relative;
  width: 100%;
  height: 255px;
}

.p2 .disk-panel .disk-list .item .disk {
  position: relative;
  left: 60px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p2_04.png") no-repeat center;
  background-size: cover;
  width: 255px;
  height: 255px;
}

.p2 .disk-panel .disk-list .s6 .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/s1.png") no-repeat center;
  background-size: cover;
  width: 78px;
  height: 74px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p2 .disk-panel .disk-list .s2 .txt {
  position: absolute;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/s2.png") no-repeat center;
  background-size: cover;
  width: 84px;
  height: 74px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p2 .disk-panel .disk-list .s5 .txt {
  position: absolute;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/s3.png") no-repeat center;
  background-size: cover;
  width: 84px;
  height: 76px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p2 .disk-panel .disk-list .s3 .txt {
  position: absolute;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/s4.png") no-repeat center;
  background-size: cover;
  width: 85px;
  height: 70px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p2 .disk-panel .disk-list .s1 .txt {
  position: absolute;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/s5.png") no-repeat center;
  background-size: cover;
  width: 66px;
  height: 70px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p2 .disk-panel .disk-list .s7 .txt {
  position: absolute;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/s6.png") no-repeat center;
  background-size: cover;
  width: 78px;
  height: 75px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p2 .disk-panel .disk-list .s4 .txt {
  position: absolute;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/s7.png") no-repeat center;
  background-size: cover;
  width: 77px;
  height: 72px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p2 .disk-panel .disk-list .s9 .txt {
  position: absolute;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/s8.png") no-repeat center;
  background-size: cover;
  width: 81px;
  height: 72px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p2 .disk-panel .disk-list .s8 .txt {
  position: absolute;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/s9.png") no-repeat center;
  background-size: cover;
  width: 84px;
  height: 75px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p2 .l1 {
  position: absolute;
  top: 469px;
  left: 60px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p2_01.png") no-repeat center;
  background-size: cover;
  width: 255px;
  height: 18px;
}

.p2 .txt-panel {
  position: absolute;
  top: 506px;
  left: 108px;
  width: 160px;
  height: 30px;
  overflow: hidden;
  color: #fff;
  font-size: 11px;
}

.p2 .txt-panel div {
  padding-top: 30px;
  -webkit-animation: 15s rowup linear infinite normal;
          animation: 15s rowup linear infinite normal;
}

.p2 .wave {
  position: absolute;
  top: 438px;
  width: 100%;
}

.p2 .wave .sound-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p2 .wave .sound-wave {
  width: 150px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p2 .wave .sound-wave .bar {
  display: block;
  width: 1px;
  margin-right: 1px;
  height: 30px;
  background: #fff;
  -webkit-animation: sound 0ms -800ms linear infinite alternate;
          animation: sound 0ms -800ms linear infinite alternate;
  -webkit-transition: height 0.8s;
  transition: height 0.8s;
}

.p2 .wave .sound-wave .bar:nth-child(1) {
  height: 1px;
  -webkit-animation-duration: 474ms;
          animation-duration: 474ms;
}

.p2 .wave .sound-wave .bar:nth-child(2) {
  height: 5px;
  -webkit-animation-duration: 433ms;
          animation-duration: 433ms;
}

.p2 .wave .sound-wave .bar:nth-child(3) {
  height: 8px;
  -webkit-animation-duration: 407ms;
          animation-duration: 407ms;
}

.p2 .wave .sound-wave .bar:nth-child(4) {
  height: 13px;
  -webkit-animation-duration: 458ms;
          animation-duration: 458ms;
}

.p2 .wave .sound-wave .bar:nth-child(5) {
  height: 15px;
  -webkit-animation-duration: 400ms;
          animation-duration: 400ms;
}

.p2 .wave .sound-wave .bar:nth-child(6) {
  height: 16px;
  -webkit-animation-duration: 427ms;
          animation-duration: 427ms;
}

.p2 .wave .sound-wave .bar:nth-child(7) {
  height: 17px;
  -webkit-animation-duration: 441ms;
          animation-duration: 441ms;
}

.p2 .wave .sound-wave .bar:nth-child(8) {
  height: 18px;
  -webkit-animation-duration: 419ms;
          animation-duration: 419ms;
}

.p2 .wave .sound-wave .bar:nth-child(9) {
  height: 20px;
  -webkit-animation-duration: 487ms;
          animation-duration: 487ms;
}

.p2 .wave .sound-wave .bar:nth-child(10) {
  height: 23px;
  -webkit-animation-duration: 442ms;
          animation-duration: 442ms;
}

.p2 .wave .sound-wave .bar:nth-child(11) {
  height: 1px;
  -webkit-animation-duration: 474ms;
          animation-duration: 474ms;
}

.p2 .wave .sound-wave .bar:nth-child(12) {
  height: 5px;
  -webkit-animation-duration: 433ms;
          animation-duration: 433ms;
}

.p2 .wave .sound-wave .bar:nth-child(13) {
  height: 9px;
  -webkit-animation-duration: 407ms;
          animation-duration: 407ms;
}

.p2 .wave .sound-wave .bar:nth-child(14) {
  height: 13px;
  -webkit-animation-duration: 458ms;
          animation-duration: 458ms;
}

.p2 .wave .sound-wave .bar:nth-child(15) {
  height: 15px;
  -webkit-animation-duration: 400ms;
          animation-duration: 400ms;
}

.p2 .wave .sound-wave .bar:nth-child(16) {
  height: 16px;
  -webkit-animation-duration: 427ms;
          animation-duration: 427ms;
}

.p2 .wave .sound-wave .bar:nth-child(17) {
  height: 17px;
  -webkit-animation-duration: 441ms;
          animation-duration: 441ms;
}

.p2 .wave .sound-wave .bar:nth-child(18) {
  height: 18px;
  -webkit-animation-duration: 419ms;
          animation-duration: 419ms;
}

.p2 .wave .sound-wave .bar:nth-child(19) {
  height: 20px;
  -webkit-animation-duration: 487ms;
          animation-duration: 487ms;
}

.p2 .wave .sound-wave .bar:nth-child(20) {
  height: 23px;
  -webkit-animation-duration: 442ms;
          animation-duration: 442ms;
}

.p2 .rb1 {
  position: absolute;
  top: 430px;
  left: 180px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/2.gif") no-repeat center;
  background-size: cover;
  width: 250px;
  height: 250px;
}

.p2 .rb2 {
  position: absolute;
  top: 430px;
  left: 180px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/3.gif") no-repeat center;
  background-size: cover;
  width: 250px;
  height: 250px;
}

.p2 .rb2 .noot-1,
.p2 .rb2 .noot-2,
.p2 .rb2 .noot-3,
.p2 .rb2 .noot-4,
.p2 .rb2 .noot-5 {
  position: absolute;
  -webkit-animation: notes 2s infinite linear;
          animation: notes 2s infinite linear;
  font-size: 12px;
  opacity: 0;
  color: #fff;
}

.p2 .rb2 .noot-1 {
  top: 50px;
  left: 50%;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.p2 .rb2 .noot-2 {
  top: 30px;
  left: 45%;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.p2 .rb2 .noot-3 {
  top: 40px;
  left: 60%;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.p2 .rb2 .noot-4 {
  top: 60px;
  left: 90%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.p2 .rb2 .noot-5 {
  top: 30px;
  left: 35%;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.p2 .btn-panel {
  position: absolute;
  width: 100%;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p2 .btn-panel .btn1 {
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p2_btn1.png") no-repeat center;
  background-size: cover;
  width: 148px;
  height: 110px;
}

.p2 .btn-panel .btn2 {
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p2_play.png") no-repeat center;
  background-size: cover;
  width: 148px;
  height: 110px;
}

.p2 .btn-panel .btn3 {
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p2_stop.png") no-repeat center;
  background-size: cover;
  width: 148px;
  height: 110px;
}

.p2 .btn-panel .btn4 {
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p2_btn3.png") no-repeat center;
  background-size: cover;
  width: 148px;
  height: 110px;
}

@media screen and (max-height: 660px) {
  .p2 .cover {
    top: 140px;
  }
  .p2 .disk-panel {
    top: 130px;
  }
  .p2 .wave {
    top: 400px;
  }
  .p2 .l1 {
    top: 430px;
  }
  .p2 .txt-panel {
    top: 470px;
  }
  .p2 .btn-panel {
    bottom: -30px;
  }
}

@-webkit-keyframes sound {
  0% {
    opacity: .35;
    height: 1px;
  }
  100% {
    opacity: 1;
    height: 23px;
  }
}

@keyframes sound {
  0% {
    opacity: .35;
    height: 1px;
  }
  100% {
    opacity: 1;
    height: 23px;
  }
}

@-webkit-keyframes rowup {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

@keyframes rowup {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

.p3 {
  position: absolute;
  top: 0;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p3_bg.jpg") no-repeat top center;
  background-size: cover;
  width: 375px;
  height: 100vh;
}

.p3 .l1 {
  position: absolute;
  top: 120px;
  left: 39px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p3_01.png") no-repeat center;
  background-size: cover;
  width: 297px;
  height: 211px;
}

.p3 .l1 .note {
  position: absolute;
  top: 75px;
  right: 0px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p1_01_01.png") no-repeat center;
  background-size: cover;
  width: 59px;
  height: 49px;
  animation: updown 4s ease infinite alternate-reverse;
}

.p3 .l2 {
  position: absolute;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p3_02.png") no-repeat center;
  background-size: cover;
  width: 348px;
  height: 70px;
  top: 380px;
  left: 14px;
}

.p3 .rb {
  position: absolute;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/2.gif") no-repeat center;
  background-size: cover;
  width: 250px;
  height: 250px;
  top: 400px;
  left: 170px;
}

.p3 .rb .noot-1,
.p3 .rb .noot-2,
.p3 .rb .noot-3,
.p3 .rb .noot-4,
.p3 .rb .noot-5 {
  position: absolute;
  -webkit-animation: notes 2s infinite linear;
          animation: notes 2s infinite linear;
  font-size: 12px;
  opacity: 0;
  color: #fff;
}

.p3 .rb .noot-1 {
  top: 50px;
  left: 50%;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.p3 .rb .noot-2 {
  top: 30px;
  left: 45%;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.p3 .rb .noot-3 {
  top: 40px;
  left: 60%;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.p3 .rb .noot-4 {
  top: 60px;
  left: 90%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.p3 .rb .noot-5 {
  top: 30px;
  left: 35%;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.p3 .btn {
  position: absolute;
  bottom: 20px;
  left: 120px;
  background: url("https://dotway.oss-cn-beijing.aliyuncs.com/fisu211026/images/p3_btn.png") no-repeat center;
  background-size: cover;
  width: 148px;
  height: 110px;
}

@media screen and (max-height: 660px) {
  .p3 .btn {
    bottom: -20px;
  }
}
/*# sourceMappingURL=styles.css.map */