
@font-face {
  font-family: 'GothamRnd-Light';
  src: url('../font/GothamRnd-Light.html');
}


.container {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-top: 200px;
  z-index: 300;
}

.music-box {
  /*
  width: 500px;
  height: 500px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0px auto 0;
  */
}



.music-box .mask {
  height: 60px;
  /*
  width: 316px;
  height: 316px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  */
}
.zhi{
text-align:center;
margin-top: 30px;
}
.mplayer {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: rgba(230,117,18,1);
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 2;
  cursor: pointer;
}

.mplayer i {
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 2px;
  height: 10px;
  margin-left: -2px;
  transition: 0.36s ease;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  line-height: 10px;
}

.mplayer i .before {
  width: 0;
  height: 0;
  border-color: transparent transparent transparent #ad986d;
  display: inline-block;
  border-width: 4px 6px 4px 6px;
  border-style: solid;
  color: #ad986d;
  margin-left: 2px;
  border-width: 5px 8px;
  margin-top: 0px;
  transition: 0.36s ease;
}

.mplayer i .before {
  border-left-color: #fff;
}

.mplayer i .after {
  display: inline-block;
  width: 6px;
  height: 10px;
  opacity: 0;
  transition: 0.36s ease;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
}

.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: 326px;
  height: 326px;
}

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