.record-playback {
  height: 50px;
  background-color: rgba(89, 91, 178, 0.1);
  border-radius: 25px;
  margin-top: 10px;
  padding-left: 45px;
  padding-right: 110px;
  position: relative;
  cursor: pointer;
}

.All-practice .record-playback {
  margin-top: 0;
}

.record-playback .playing {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  z-index: 10;
  background-image: url("/images/2020-12-03/icon_play_2.png");
  background-repeat: no-repeat;
  background-size: 19px 26px;
  background-position: center;
}

.record-playback .playing .playing-icon {
  width: 19px;
  height: 26px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url("/images/2020-12-03/icon_play_1-3.png");
}
.record-playback-2023 {
  padding-left: 70px !important;
}

.record-playback-2023.question-player {
  padding-right: 135px !important;
}
.record-playback-2023 .playing-2023 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 60px;
  z-index: 10;
  background-image: url("/images/2020-12-03/icon_play.png");
  background-repeat: no-repeat;
  background-size: 38px;
  background-position: center;
}
.record-playback-2023.active .playing-2023 {
  background-image: url("/images/2020-12-03/icon_pause.png");
}
.record-playback-2023 .time_box {
  right: 25px !important;
}

.notClick .record-playback .playing-icon {
  background-image: none;
}

.record-playback.active .playing .playing-icon {
  background-image: url("/images/2020-12-03/icon_play_1-1.png");
  animation: playing_icon 1.8s infinite;
}

/* --------------- 动画 ----------------- */
@keyframes playing_icon {
  30% {
    background-image: url("/images/2020-12-03/icon_play_1-1.png");
  }

  65% {
    background-image: url("/images/2020-12-03/icon_play_1-2.png");
  }

  100% {
    background-image: url("/images/2020-12-03/icon_play_1-3.png");
  }
}

.record-playback .record-time {
  font-size: 16px;
  height: 30px;
  line-height: 30px;
  color: #595bb2;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50px;
  margin: auto;
}

.record-playback .play-btn {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
  background-image: url("/images/2020-12-03/botton_play.png");
  background-size: 100%;
}

.record-playback.active .play-btn {
  background-image: url("/images/2020-12-03/botton_pause.png");
}

.record-playback .record-audio {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.record-playback .record-audio .audio-line {
  width: 100%;
  height: 4px;
  background-color: #ffffff;
  border-radius: 50px;
  position: relative;
}

.record-playback .record-audio .active-line {
  height: 100%;
  width: 0;
  background-color: #595bb2;
  border-radius: 50px;
}

.record-playback .record-audio .audio-btn {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -6px;
  margin-left: -8px;
  box-shadow: 1px 1px 3px 1px #cccccc;
}
