@charset "UTF-8";
/* common */
.event {
  pointer-events: auto;
}

.user-select {
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}

html,
body {
  position: relative;
  padding: 0;
  margin: 0 auto;
  max-width: 750px;
  min-width: 320px;
  height: 100%;
  background-size: 100% 100%;
  background-color: #ffffff;
  background-repeat: no-repeat;
  overflow: hidden;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  width: 100%;
  display: block;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

@media screen and (min-width: 320px) and (max-width: 375px) {
  body {
    font-size: 11px;
  }
}

@media screen and (min-width: 376px) and (max-width: 414px) {
  body {
    font-size: 12px;
  }
}

@media screen and (min-width: 415px) and (max-width: 639px) {
  body {
    font-size: 15px;
  }
}

@media screen and (min-width: 640px) and (max-width: 719px) {
  body {
    font-size: 20px;
  }
}

@media screen and (min-width: 720px) and (max-width: 749px) {
  body {
    font-size: 22.5px;
  }
}

@media screen and (min-width: 750px) and (max-width: 799px) {
  body {
    font-size: 23.5px;
  }
}

@media screen and (min-width: 800px) {
  body {
    font-size: 25px;
  }
}

::-webkit-scrollbar {
  display: none;
  width: 0;
}

a {
  text-decoration: none;
}

.h-c {
  text-align: center;
  text-align: -webkit-center;
}

.no-click {
  pointer-events: none;
}

.omit-1 {
  white-space: nowrap;
  /* 规定文本是否折行 */
  overflow: hidden;
  /* 规定超出内容宽度的元素隐藏 */
  text-overflow: ellipsis;
}

.omit-2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.omit-3 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

div {
  /*清除移动端的点击高亮效果*/
  -webkit-tap-highlight-color: transparent;
  -webkit-box-sizing: border-box;
  /*兼容*/
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

textarea,
select,
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  outline: none;
}

input {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #bab4ac;
  font-size: 4vw;
}

textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #bab4ac;
  font-size: 4vw;
}

:root {
  --fsize0: 13px;
  --fsize1: 14px;
  --fsize2: 15px;
  --fsize3: 16px;
  --fsize4: 17px;
  --fsize5: 18px;
  --fsize6: 19px;
  --fsize7: 20px;
  --fsize8: 21px;
  --fsize9: 22px;
  --fsize10: 23px;
  --fsizepop: 30px;
  --fsizepop2: 24px;
  --color_1: #f88e39;
  --color_2: #2372f9;
  --color_3: #6eaa50;
  --color_4: #8b70a8;
  --color_5: #dd648c;
  --bg_color_1: #f88e39;
  --bg_color_2: #2372f9;
  --bg_color_3: #6eaa50;
  --bg_color_4: #8b70a8;
  --bg_color_5: #dd648c;
}

@media screen and (min-aspect-ratio: 6 / 10) {
  :root {
    --fsize0: 11px;
    --fsize1: 12px;
    --fsize2: 13px;
    --fsize3: 14px;
    --fsize4: 15px;
    --fsize5: 16px;
    --fsize6: 17px;
    --fsize7: 18px;
    --fsize8: 19px;
    --fsize9: 20px;
    --fsize10: 21px;
  }
}

* {
  -webkit-overflow-scrolling: touch;
}

/* 音乐动画 */
.animate_rotate {
  transform-origin: center;
  -webkit-transform-origin: center;
  animation: animate_rotate 3s linear infinite;
  -webkit-animation: animate_rotate 3s linear infinite;
}

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

@-webkit-keyframes animate_rotate

/* Safari 与 Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* loadpop */
#loadpop {
  position: fixed;
  max-width: 1920px;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 999;
  display: none;
}

#loadpop .loadbox {
  position: relative;
  width: 40vw;
  height: 40vw;
  max-width: 160px;
  max-height: 160px;
  margin: 0 auto;
  top: 35%;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.5);
}

#loadpop .loadbox > div {
  position: relative;
  top: 50%;
  left: 50%;
  right: 50%;
  bottom: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
}

#loadpop .loadbox img {
  width: 30vw;
  max-width: 45px;
}

#loadpop .loadbox div {
  text-align: center;
  padding-top: 10px;
  font-size: 14px;
}

/* loading */
#loading,
#loading1 {
  height: 100%;
  width: 100%;
  max-width: 640px;
  min-width: 320px;
  position: fixed;
  z-index: 1;
  margin-top: 0px;
  top: 0px;
  z-index: 999;
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr='#7CC4FE', endColorStr='#7CC4FE', gradientType='0');
  background: -o-linear-gradient(top, #7cc4fe, #7cc4fe);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#7cc4fe));
}

#loading #loading-center,
#loading1 #loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading #loading-center-absolute,
#loading1 #loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 150px;
  width: 150px;
  margin-top: -75px;
  margin-left: -75px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#loading .object,
#loading1 .object {
  width: 20px;
  height: 20px;
  background-color: #fff;
  position: absolute;
  left: 50px;
  top: 50px;
}

#loading .object:nth-child(2n + 0),
#loading1 .object:nth-child(2n + 0) {
  margin-right: 0px;
}

#loading #object_one,
#loading1 #object_one {
  -webkit-animation: object_one 2s infinite;
  animation: object_one 2s infinite;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

#loading #object_two,
#loading1 #object_two {
  -webkit-animation: object_two 2s infinite;
  animation: object_two 2s infinite;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

#loading #object_three,
#loading1 #object_three {
  -webkit-animation: object_three 2s infinite;
  animation: object_three 2s infinite;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

#loading #object_four,
#loading1 #object_four {
  -webkit-animation: object_four 2s infinite;
  animation: object_four 2s infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

#loading #object_five,
#loading1 #object_five {
  -webkit-animation: object_five 2s infinite;
  animation: object_five 2s infinite;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

#loading #object_six,
#loading1 #object_six {
  -webkit-animation: object_six 2s infinite;
  animation: object_six 2s infinite;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

#loading #object_seven,
#loading1 #object_seven {
  -webkit-animation: object_seven 2s infinite;
  animation: object_seven 2s infinite;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

#loading #object_eight,
#loading1 #object_eight {
  -webkit-animation: object_eight 2s infinite;
  animation: object_eight 2s infinite;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

#loading #object_big,
#loading1 #object_big {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 35px;
  top: 35px;
  -webkit-animation: object_big 2s infinite;
  animation: object_big 2s infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes object_big {
  50% {
    -webkit-transform: scale(0.5);
  }
}

@keyframes object_big {
  50% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}

@-webkit-keyframes object_one {
  50% {
    -webkit-transform: translate(-50px, -50px);
  }
}

@keyframes object_one {
  50% {
    transform: translate(-50px, -50px);
    -webkit-transform: translate(-50px, -50px);
  }
}

@-webkit-keyframes object_two {
  50% {
    -webkit-transform: translate(0, -50px);
  }
}

@keyframes object_two {
  50% {
    transform: translate(0, -50px);
    -webkit-transform: translate(0, -50px);
  }
}

@-webkit-keyframes object_three {
  50% {
    -webkit-transform: translate(50px, -50px);
  }
}

@keyframes object_three {
  50% {
    transform: translate(50px, -50px);
    -webkit-transform: translate(50px, -50px);
  }
}

@-webkit-keyframes object_four {
  50% {
    -webkit-transform: translate(50px, 0);
  }
}

@keyframes object_four {
  50% {
    transform: translate(50px, 0);
    -webkit-transform: translate(50px, 0);
  }
}

@-webkit-keyframes object_five {
  50% {
    -webkit-transform: translate(50px, 50px);
  }
}

@keyframes object_five {
  50% {
    transform: translate(50px, 50px);
    -webkit-transform: translate(50px, 50px);
  }
}

@-webkit-keyframes object_six {
  50% {
    -webkit-transform: translate(0, 50px);
  }
}

@keyframes object_six {
  50% {
    transform: translate(0, 50px);
    -webkit-transform: translate(0, 50px);
  }
}

@-webkit-keyframes object_seven {
  50% {
    -webkit-transform: translate(-50px, 50px);
  }
}

@keyframes object_seven {
  50% {
    transform: translate(-50px, 50px);
    -webkit-transform: translate(-50px, 50px);
  }
}

@-webkit-keyframes object_eight {
  50% {
    -webkit-transform: translate(-50px, 0);
  }
}

@keyframes object_eight {
  50% {
    transform: translate(-50px, 0);
    -webkit-transform: translate(-50px, 0);
  }
}

/* toastpop */
#toastpop {
  position: fixed;
  width: 100%;
  height: 100%;
  max-width: 640px;
  margin: 0 auto;
  z-index: 9;
  display: none;
}

#toastpop > .toast {
  position: relative;
  width: 45vw;
  max-width: 200px;
  padding: 40px 6px;
  background-color: rgba(0, 0, 0, 0.5);
  top: 35%;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  font-size: 14px;
}

#toastpop .toast-icon {
  position: relative;
  width: 30%;
  max-width: 50px;
}

#toastpop .toast-text {
  font-size: 14px;
  padding-top: 10px;
}

.flex-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bottom-hint {
  position: relative;
  width: 100%;
  padding-top: 20px;
  color: #5a5a5a;
  font-size: 13px;
  clear: both;
  overflow: hidden;
}

.bottom-hint img {
  width: 35%;
  max-width: 150px;
}

.bottom-hint .load-img {
  width: 10%;
}

/* project */
.music-icon {
  position: absolute;
  width: 8vw;
  right: 4vw;
  top: 3vw;
  z-index: 10;
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
  50% {
    -webkit-transform: scale(0.9) translateY(-10px);
            transform: scale(0.9) translateY(-10px);
  }
  100% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}

@keyframes zoom {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
  50% {
    -webkit-transform: scale(0.9) translateY(-10px);
            transform: scale(0.9) translateY(-10px);
  }
  100% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}

/* Apply the animation to an element */
.elementZoom {
  -webkit-animation: zoom 3s linear infinite;
          animation: zoom 3s linear infinite;
}

@-webkit-keyframes btnclick {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  75% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes btnclick {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  75% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.btnAnimation {
  -webkit-animation: btnclick 0.1s linear;
          animation: btnclick 0.1s linear;
}
/*# sourceMappingURL=common.css.map */