html,
body {
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body {
  background: #fff;
}
/* 滚动条优化 start */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: #f6f6f6;
  border-radius: 2px;
}
::-webkit-scrollbar-thumb {
  background: #cdcdcd;
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
  background: #747474;
}
::-webkit-scrollbar-corner {
  background: #f6f6f6;
}
/* 滚动条优化 end */
#app {
  opacity: 1;
  width: 100%;
  height: 100%;
}
#app .design-box {
  height: 100%;
}
#app .design-box .view-box {
  position: relative;
}
#app .design-box .view-box .page-bg {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
}
#app .design-box .view-box .card {
  position: absolute;
  z-index: 100;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
#app .design-box .view-box .txt-field {
  position: absolute;
}
#app .design-box .view-box .code-field {
  position: absolute;
}
#app .design-box .view-box .code-field img {
  width: 100%;
  height: 100%;
}
.musicBtn {
  position: absolute;
  top: 20px;
  z-index: 1000;
  right: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  background: url(../images/bgmBtn.svg) no-repeat center;
  background-size: 100% 100%;
  text-align: center;
  outline: none;
  -webkit-animation: rotating 1.2s linear infinite;
  animation: rotating 1.2s linear infinite;
  animation-play-state: paused;
}
.musicBtn.on {
  animation-play-state: running;
}
@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@-webkit-keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.top-notice {
  position: fixed;
  top: 1%;
  left: 1%;
  right: 1%;
  height: 40px;
  line-height: 40px;
  z-index: 1000;
  font-size: 16px;
  background: rgba(249, 122, 1, 0.3);
  text-align: center;
  color: #F97A01;
  border-radius: 30px;
  text-stroke: 1px rgba(255, 255, 255, 0.2);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
}
/*# sourceMappingURL=show.css.map */