.audio-player-wrapper {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.audio-player-wrapper .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.audio-player-wrapper .bg-image img {
  width: 200vw;
  height: auto;
  margin-left: -50%;
  filter: blur(0.1rem);
}
.audio-player-wrapper .bg-image::before {
  width: 100%;
  height: 100%;
  content: "";
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  background: #000000;
  opacity: 0.2;
  z-index: 1;
}
.audio-player-wrapper .header-panel {
  height: 0.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.audio-player-wrapper .header-panel .van-icon {
  width: 0.4rem;
  height: 0.4rem;
  color: #ffffff;
  font-size: 0.18rem;
}
.audio-player-wrapper .header-panel .van-icon::before {
  width: 0.4rem;
  height: 0.4rem;
  line-height: 0.4rem;
  text-align: center;
}
.audio-player-wrapper .player-main-panel {
  margin-top: 0.2rem;
}
.audio-player-wrapper .player-main-panel .player-disk-panel {
  margin: 0 auto;
  width: 2.1rem;
  height: 2.08rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.audio-player-wrapper .player-main-panel .player-disk-panel .player-pole {
  position: absolute;
  right: -0.78rem;
  top: -0.8rem;
  transform: rotate(-20deg);
  transform-origin: 81.3% 30.1%;
  width: 2.5rem;
  height: 3.65rem;
  background: url("../images/player_pole.png") center/100% no-repeat;
  z-index: 2;
  transition: 1s all;
}
.audio-player-wrapper .player-main-panel .player-disk-panel .player-pole.playing {
  transform: rotate(10deg);
  transition: 1s all;
}
.audio-player-wrapper .player-main-panel .player-disk-panel .disk {
  width: 2.08rem;
  height: 2.08rem;
  background: url("../images/player_disk.png") center/100% no-repeat;
  position: relative;
  animation: playingRotate linear infinite 12s;
}
.audio-player-wrapper .player-main-panel .player-disk-panel .disk.playing {
  animation-fill-mode: forwards;
}
.audio-player-wrapper .player-main-panel .player-disk-panel .disk.paused {
  animation-play-state: paused;
}
.audio-player-wrapper .player-main-panel .player-disk-panel .disk.swtiching {
  animation: none;
}
.audio-player-wrapper .player-main-panel .player-disk-panel .disk .audio-thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.44rem;
  height: 1.44rem;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
}
.audio-player-wrapper .player-main-panel .player-disk-panel .disk .audio-thumb img {
  width: 100%;
  height: 100%;
}
.audio-player-wrapper .player-main-panel .audio-title-panel {
  margin-top: 0.18rem;
  padding: 0 0.5rem;
  height: 0.44rem;
  line-height: 0.22rem;
  font-size: 0.18rem;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
}
.audio-player-wrapper .player-main-panel .player-control-panel {
  padding: 0 0.24rem;
}
.audio-player-wrapper .player-main-panel .player-control-panel .progress-bar {
  margin-top: 0.3rem;
  width: 100%;
  height: 0.2rem;
}
.audio-player-wrapper .player-main-panel .player-control-panel .progress-bar .bar-inner {
  position: relative;
  height: 0.08rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0.08rem;
}
.audio-player-wrapper .player-main-panel .player-control-panel .progress-bar .bar-inner .progress {
  position: absolute;
  height: 100%;
  background: #ffffff;
  border-top-left-radius: 0.08rem;
  border-bottom-left-radius: 0.08rem;
}
.audio-player-wrapper .player-main-panel .player-control-panel .progress-bar .bar-inner .progress-btn-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.14rem;
  height: 0.14rem;
}
.audio-player-wrapper .player-main-panel .player-control-panel .progress-bar .bar-inner .progress-btn-wrapper .progress-btn {
  position: relative;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  box-sizing: border-box;
  width: 0.14rem;
  height: 0.14rem;
  border-radius: 50%;
  background: #ffffff;
}
.audio-player-wrapper .player-main-panel .player-control-panel .progress-time {
  width: 100%;
  height: 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-size: 0.13rem;
}
.audio-player-wrapper .player-main-panel .player-control-panel .control-btn {
  margin-top: 0.2rem;
  height: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.audio-player-wrapper .player-main-panel .player-control-panel .control-btn .rewind {
  width: 0.23rem;
  height: 0.23rem;
  background: url("../images/icon_left15.png") no-repeat center/100%;
}
.audio-player-wrapper .player-main-panel .player-control-panel .control-btn .forward {
  width: 0.23rem;
  height: 0.23rem;
  background: url("../images/icon_right15.png") no-repeat center/100%;
}
.audio-player-wrapper .player-main-panel .player-control-panel .control-btn .prev {
  width: 0.22rem;
  height: 0.25rem;
  background: url("../images/icon_prev.png") no-repeat center/100%;
}
.audio-player-wrapper .player-main-panel .player-control-panel .control-btn .prev.disable {
  filter: opacity(0.5);
}
.audio-player-wrapper .player-main-panel .player-control-panel .control-btn .next {
  width: 0.22rem;
  height: 0.25rem;
  background: url("../images/icon_next.png") no-repeat center/100%;
}
.audio-player-wrapper .player-main-panel .player-control-panel .control-btn .next.disable {
  filter: opacity(0.5);
}
.audio-player-wrapper .player-main-panel .player-control-panel .control-btn .pause {
  width: 0.55rem;
  height: 0.55rem;
  background: url("../images/icon_pause.png") no-repeat center/100%;
}
.audio-player-wrapper .player-main-panel .player-control-panel .control-btn .play {
  width: 0.55rem;
  height: 0.55rem;
  background: url("../images/icon_play.png") no-repeat center/100%;
}
.audio-player-wrapper .playlist-panel {
  position: absolute;
  padding-top: 0.1rem;
  width: 100%;
  height: calc(100vh - 0.4rem - 0.2rem - 2.08rem - 0.54rem - 0.5rem - 0.2rem - 0.8rem - 0.3rem);
  left: 0;
  bottom: 0;
  z-index: 99;
  background: #ffffff;
  border-top-right-radius: 0.16rem;
  border-top-left-radius: 0.16rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s;
}
.audio-player-wrapper .playlist-panel .arrow {
  width: 0.2rem;
  height: 0.1rem;
  background: url("../images/icon_arrow_up.png") no-repeat center/100%;
}
.audio-player-wrapper .playlist-panel .panel-t {
  width: 100%;
  color: #222222;
  height: 0.4rem;
  line-height: 0.4rem;
  font-size: 0.17rem;
  text-align: center;
  border-bottom: 0.01rem solid #EBEBEB;
}
.audio-player-wrapper .playlist-panel ul {
  width: 100%;
  height: calc(100% - 0.1rem - 0.1rem - 0.4rem - 0.1rem);
  overflow-y: auto;
  overflow-x: hidden;
}
.audio-player-wrapper .playlist-panel ul li {
  margin: 0 auto;
  width: calc(100vw - 0.32rem);
  height: 0.85rem;
  border-bottom: 0.01rem solid #EBEBEB;
  display: flex;
  align-items: center;
}
.audio-player-wrapper .playlist-panel ul li .thumb {
  width: 0.45rem;
  height: 0.45rem;
}
.audio-player-wrapper .playlist-panel ul li .thumb .el-image {
  width: 100%;
  height: 100%;
}
.audio-player-wrapper .playlist-panel ul li .thumb .el-image img {
  width: 100%;
  height: 100%;
  border-radius: 0.05rem;
}
.audio-player-wrapper .playlist-panel ul li .info {
  margin-left: 0.15rem;
  width: calc(100% - 0.45rem - 0.15rem);
  height: 0.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.audio-player-wrapper .playlist-panel ul li .info .t {
  max-height:0.4rem;
  min-height:0.2rem;
  line-height: 0.2rem;
  font-size: 0.15rem;
  font-weight: 500;
}
.audio-player-wrapper .playlist-panel ul li .info .d {
  margin-top:0.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.audio-player-wrapper .playlist-panel ul li .info .d .pv {
  color: #999999;
  font-size: 0.13rem;
}
.audio-player-wrapper .playlist-panel ul li .info .d .pv .icon-pv {
  display: inline-block;
  width: 0.113rem;
  height: 0.1rem;
  background: url("../images/icon_pv.png") no-repeat center/100%;
}
.audio-player-wrapper .playlist-panel ul li .info .d .playtime {
  margin-left: 0.1rem;
  color: #999999;
  font-size: 0.13rem;
}
.audio-player-wrapper .playlist-panel ul li .info .d .playtime .icon-time {
  display: inline-block;
  width: 0.1rem;
  height: 0.1rem;
  background: url("../images/icon_time.png") no-repeat center/100%;
}
.audio-player-wrapper .playlist-panel ul li .info .d .date {
  color: #D8D8D8;
  font-size: 0.13rem;
}
.audio-player-wrapper .playlist-panel ul li.nothumb .info {
  width: 100%;
}
.audio-player-wrapper .playlist-panel ul li.active .info .t {
  padding-left: 0.25rem;
  color: #0062FF;
  position: relative;
}
.audio-player-wrapper .playlist-panel ul li.active .info .t::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.18rem;
  height: 0.17rem;
  background-image: url("../images/icon_playing.png");
  background-position: 0 0;
  background-repeat: repeat;
  background-size: 100% auto;
}
.audio-player-wrapper .playlist-panel ul li.active .info .t.playing::before {
  animation: playing linear infinite 3s;
  animation-fill-mode: forwards;
}
.audio-player-wrapper .playlist-panel.unfold {
  height: 80vh;
  transition: all 0.3s;
}
.audio-player-wrapper .playlist-panel.unfold .arrow {
  transform: rotate(180deg);
}

@keyframes playingRotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes playing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 0.09rem 0;
  }
  100% {
    background-position: 0.18rem 0;
  }
}

/*# sourceMappingURL=audio.css.map */
