.aplayer.aplayer-withlrc .aplayer-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.custom-lrc-container {
  padding-top: 20px;
}

.custom-lrc-container .aplayer-lrc {
  position: relative;
  text-align: center;
  height: auto;
  margin: 0;
  padding: 0;
}

.custom-lrc-container .aplayer-lrc .aplayer-lrc-contents {
  box-sizing: border-box;
  max-height: 400px;
  overflow: auto;
  transform: translateY(0) !important;
}

.custom-lrc-container .aplayer-lrc::before,
.custom-lrc-container .aplayer-lrc::after {
  content: none;
}

.custom-lrc-container .aplayer-lrc p {
  font-size: 14px;
  padding-bottom: 10px !important;
  height: auto !important;
  line-height: normal !important;
  opacity: 1;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .custom-lrc-container .aplayer-lrc p:hover {
    text-decoration: underline;
  }
}

.custom-lrc-container p.aplayer-lrc-current {
  font-weight: 700;
  font-size: 16px;
}

.aplayer.aplayer-narrow {
  width: 66px;
  position: fixed;
  z-index: 99;
  bottom: 0;
  left: 0;
  margin: 0;
}

#aplayer.custom-normal-aplayer .aplayer-icon-back,
#aplayer.custom-normal-aplayer .aplayer-icon-play,
#aplayer.custom-normal-aplayer .aplayer-icon-forward,
#aplayer.custom-normal-aplayer .aplayer-icon-menu {
  display: inline-block !important;
  position: absolute;
  bottom: 22px;
  width: 20px;
  height: 20px;
}

#aplayer.custom-normal-aplayer .aplayer-music {
  margin-top: 12px;
}

#aplayer.custom-normal-aplayer .aplayer-icon-back {
  right: 75px;
}

#aplayer.custom-normal-aplayer .aplayer-icon-play {
  right: 50px;
}

#aplayer.custom-normal-aplayer .aplayer-icon-forward {
  right: 25px;
}

#aplayer.custom-normal-aplayer .aplayer-icon-menu {
  right: 0;
}

/* message or toast */
.message-container {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}

/* 消息提示的样式 */
.message {
  min-width: 200px;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 4px;
  background-color: #fff;
  color: #67c23a;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

/* 消息进入时的动画 */
.message.show {
  opacity: 1;
  transform: translateY(0);
}

/* 消息消失时的动画 */
.message.hide {
  opacity: 0;
  transform: translateY(-20px);
}

.message-count {
  position: absolute;
  right: -8px;
  top: -8px;
  background-color: #67c23a;
  color: #fff;
  border-radius: 10px;
  padding: 2px 6px;
  font-size: 12px;
  line-height: 1;
}
