
.music-box {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0px auto 0;
}

.music-box img {
  width: 100%;
  border-radius: 50%;
  transition: all 0.36s ease;
  display: inline;
  animation: spin 46s infinite linear;
  animation-play-state: paused;
}

.music-box .mask {
  width: 316px;
  height: 316px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  position: absolute;
}


.loadingSvg circle {
  r: 14;
  stroke: rgba(0, 0, 0, 0.7);
  stroke-dasharray: 87;
  stroke-dashoffset: 87;
  cx: 25;
  cy: 25;
  stroke-width: 2;
  fill: none;
}

.m-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width:500px;
  height: 500px;
}

.m_time span {
  display: block;
  text-align: center;
}

.m_time .mplayer_curtime {
  padding-top: 42px;
  font-size: 34px;
  color: #e1be78;
}

.m_time .m-join {
  display: none;
}

.m_time .mplayer_durtime {
  color: #ad986d;
}

.mplaying img {
  animation-play-state: running;
  -webkit-animation-play-state: running;
}

img {
  animation: spin 46s infinite linear;
  -webkit-animation: spin 46s infinite linear;
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}

.mplaying .mplayer i {
  margin-top: -9px;
  background-color: transparent;
}

.mplaying .mplayer i .before {
  opacity: 0;
}

.mplaying .mplayer i .after {
  opacity: 1;
}

.mplaying .loadingSvg circle {
  transition: 2s;
  stroke-dasharray: 87;
  stroke-dashoffset: 87;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes svgLoading {
  0% {
    stroke-dashoffset: 2;
  }

  100% {
    stroke-dashoffset: -39;
  }
}