* {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

body,
ul {
  margin: 0;
  padding: 0;
  line-height: initial;
  list-style: none;
  color: #333333;
  user-select: none;
}

body {
  font-family: -apple-system,Helvetica,sans-serif;
  font-size: 4.27vw;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
/*弹出层start*/
.overlay{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
	width: 100vmax;
    height: 100%;
  background-color: rgba(0,0,0,.5);
}
.content{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5% 0;
  box-sizing: border-box;
}
.overlay .content img{
  /*width: 220px;*/
  height: 150px;
}
.overlay>.content>p{
  color: #FFC000;
  letter-spacing: 3px;
  font-size: .9rem;
  margin: 6px 0;
}
.overlay>.content>.success{
  background-image: url(../images/overlay/success.png);
  background-size: cover;
  width: 80px;
  height: 47px;
}
.overlay>.content>.retrys{
  background-image: url(../images/overlay/success.png);
  background-size: cover;
  width: 80px;
  height: 47px;
}
.overlay>.content>.next-z{
  background-image: url(../images/overlay/success.png);
  background-size: cover;
  width: 80px;
  height: 47px;
}
.overlay>.content>.failed{
  background-image: url(../images/overlay/try.png);
  background-size: cover;
  width: 90px;
  height: 49px;
}
/*弹出层end*/

.wrapper .music-box{
  position: relative;
  /*top: 10%;*/
  /*right: 2%;*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 8.125rem;
  height: 2.25rem;
}
.music-box .music-btn{
  height: 2rem;
  width: 10.625rem;
  margin-right: 0.25rem;
  background: url(../images/music_btn.png) no-repeat;
  background-size: 100% auto;
}
.music-box .music-play{
  height: 1.4375rem;
  width: 4.4rem;
  background: url(../images/music_play.png) no-repeat;
  background-size: 100% auto;
}
.music-box .music-play.music-paused{
  background: url(../images/music_paused.png) no-repeat;
  background-size: 100% auto;
}
.music-box .music-list{
  position: absolute;
  top: 100%;
  left: 0.625rem;
  width: 6.25rem;
  height: 12.5rem;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 0.125rem;
  border: 1px solid #e48b09;
  font-size: 0;
  padding-bottom: 0.875rem;
  box-sizing: border-box;
  background: #fff;
  z-index: 99;
}
.music-box .music-list::-webkit-scrollbar{
  width: 4px;
}
.music-box .music-list::-webkit-scrollbar-thumb{
  border-radius: 6px;
  background: #eee;
}
.music-box .music-list::-webkit-scrollbar-track{
  background: transparent;
}

.music-list li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 2rem;
  line-height: 2rem;
  font-size: 0.875rem;
  padding: 0 0.25rem;
  box-sizing: border-box;
  border-bottom: 0.0625rem solid #f5d8b1;
  color: #999999;
}
.music-list li span{
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.music-list li i{
  flex-shrink: 0;
}
.music-list li.active{
  background: #f0c281;
  color: #fff;
}
.music-list li.active i{
  display: inline;
  animation: rotate 10s infinite linear;
}
@keyframes rotate{
  from{
    transform: rotate(0)
  }
  to{
    transform: rotate(360deg)
  }
}

@media only screen and (min-width: 1024px){
  .overlay .content img{
    height: 17rem;
  }
  .back-btn .back{
    width: 3rem;
    height: 3.5rem;
  }
  .overlay>.content>p{
  	font-size: 1.2rem;
    margin: 16px 0;
  }
}
