@charset "UTF-8";

/* 会员按钮样式 */
.vip-button-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.vip-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--heo-vip), #ff6b35);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(229, 168, 13, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.vip-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(229, 168, 13, 0.4);
}

.vip-button:active {
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .vip-button-container {
    top: 15px;
    right: 15px;
  }
  
  .vip-button {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* 随机音乐模式样式 */
#heoMusic-page.random-music .aplayer-list {
  display: none !important;
}

#heoMusic-page.random-music .aplayer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#heoMusic-page.random-music .aplayer-body {
  width: 100% !important;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 随机音乐模式下的封面居中，上移 */
#heoMusic-page.random-music .aplayer-pic {
  position: relative !important;
  top: 40% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(1) !important;
  width: 300px !important;
  height: 300px !important;
  margin: 0 !important;
  z-index: 10;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}

/* 确保封面图片显示 */
#heoMusic-page.random-music .aplayer-pic img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* 当没有封面图片时显示默认背景 */
#heoMusic-page.random-music .aplayer-pic[style*="background-image: none"] {
  background-color: rgba(255, 255, 255, 0.2) !important;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 100%) !important;
}

/* 音频可视化效果 */
#audio-visualizer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  pointer-events: none;
  z-index: 9;
}

#audio-visualizer .bar {
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: 4px;
  height: 0;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  transform-origin: bottom center;
  transition: height 0.1s ease;
}

/* 切换按钮样式 - 确保在所有浏览器中都能正常显示 */
.mode-switch-button {
  position: fixed !important;
  top: 20px !important;
  left: 20px !important;
  z-index: 9999 !important;
  padding: 10px 20px !important;
  background: rgba(0, 0, 0, 0.7) !important;
  color: white !important;
  border: none !important;
  border-radius: 25px !important;
  font-weight: bold !important;
  font-size: 14px !important;
  cursor: pointer !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.mode-switch-button:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-2px);
}

/* 冷却按钮样式 */
.aplayer-icon-forward.cooling {
  opacity: 0.5;
  cursor: not-allowed;
}

/* 随机音乐模式下的控制器调整 - 直接使用歌单模式的样式 */
#heoMusic-page.random-music .aplayer-info .aplayer-controller {
  /* 继承歌单模式的控制器样式 */
}

#heoMusic-page.random-music .aplayer-info .aplayer-controller .aplayer-bar-wrap {
  /* 继承歌单模式的进度条样式 */
}

/* 随机音乐模式下隐藏上一曲按钮 */
#heoMusic-page.random-music .aplayer-icon-back {
  display: none !important;
}

/* 确保封面显示 */
#heoMusic-page.random-music .aplayer-pic {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* 随机音乐模式下的移动端控制器样式 - 直接使用歌单模式的移动端样式 */
@media screen and (max-width: 768px) {
  /* 调整控制器位置和宽度 */
  #heoMusic-page.random-music .aplayer-info .aplayer-controller {
    width: 100%;
    bottom: 120px !important;
    max-width: none !important;
    background: none !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: block !important;
  }
  
  /* 调整进度条区域 */
  #heoMusic-page.random-music .aplayer-info .aplayer-controller .aplayer-bar-wrap {
    margin: 0 32px !important;
    width: auto !important;
    flex: none !important;
  }
  
  /* 调整控制按钮位置 */
  #heoMusic-page.random-music .aplayer-info .aplayer-time {
    bottom: -40px;
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  #heoMusic-page.random-music .aplayer-info .aplayer-time .aplayer-icon-play {
    margin: auto;
    right: 0;
    left: 0;
    width: 56px;
    height: 56px;
    position: absolute;
  }
  
  #heoMusic-page.random-music .aplayer-info .aplayer-time .aplayer-icon-forward {
    margin: auto;
    left: 110px;
    right: 0;
    position: absolute;
  }
  
  /* 调整时间显示位置 */
  #heoMusic-page.random-music .aplayer-info .aplayer-time .aplayer-time-inner {
    position: absolute;
    width: 100%;
    margin-right: 4px;
    margin-top: -60px;
  }
  
  #heoMusic-page.random-music .aplayer-info .aplayer-time .aplayer-time-inner .aplayer-dtime {
    position: absolute;
    right: 30px;
  }
  
  #heoMusic-page.random-music .aplayer-info .aplayer-time .aplayer-time-inner .aplayer-ptime {
    position: absolute;
    left: 44px;
  }
  
  /* 调整歌曲信息 */
  #heoMusic-page.random-music .aplayer-info .aplayer-music {
    display: flex;
    position: fixed;
    top: calc(100dvh - 178px);
    left: 0;
    margin: 0;
    margin-left: 32px;
    height: 21px;
    max-width: calc(100vw - 110px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.6;
    align-items: center;
    line-height: 1;
    z-index: 100;
    transform: none !important;
    text-align: left !important;
  }
}

/* 随机音乐模式下的整体布局 */
#heoMusic-page.random-music {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  height: 100vh !important;
  position: relative;
}

#heoMusic-page.random-music .aplayer {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  height: 100% !important;
  position: relative;
}

#heoMusic-page.random-music .aplayer-body {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  position: relative;
}

#heoMusic-page.random-music .aplayer-info {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  position: relative;
}

#heoMusic-page.random-music .aplayer-lrc {
  display: none !important;
}

/* 随机音乐模式下的移动端适配 - 直接使用歌单模式的底部样式 */
@media screen and (max-width: 768px) {
  /* 整体布局优化 */
  #heoMusic-page.random-music {
    overflow: hidden;
  }
  
  /* 调整封面大小和位置 */
  #heoMusic-page.random-music .aplayer-pic {
    width: 200px !important;
    height: 200px !important;
    top: 40% !important;
    z-index: 10;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* 调整音频可视化效果 */
  #audio-visualizer {
    width: 200px;
    height: 200px;
  }
  
  /* 调整控制器 - 直接使用歌单模式样式 */
  #heoMusic-page.random-music .aplayer-info .aplayer-controller {
    width: 100%;
    bottom: 120px;
    background: none !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: block !important;
    flex-direction: row !important;
  }
  
  /* 调整进度条区域 - 直接使用歌单模式样式 */
  #heoMusic-page.random-music .aplayer-info .aplayer-controller .aplayer-bar-wrap {
    margin: 0 32px !important;
    width: auto !important;
  }
  
  /* 调整时间显示 - 直接使用歌单模式样式 */
  #heoMusic-page.random-music .aplayer-info .aplayer-time {
    bottom: -40px;
    align-items: center;
  }
  
  #heoMusic-page.random-music .aplayer-info .aplayer-time .aplayer-time-inner {
    position: absolute;
    width: 100%;
    margin-right: 4px;
    margin-top: -60px;
  }
  
  #heoMusic-page.random-music .aplayer-info .aplayer-time .aplayer-time-inner .aplayer-dtime {
    position: absolute;
    right: 30px;
  }
  
  #heoMusic-page.random-music .aplayer-info .aplayer-time .aplayer-time-inner .aplayer-ptime {
    position: absolute;
    left: 44px;
  }
  
  /* 调整控制按钮 - 直接使用歌单模式样式 */
  #heoMusic-page.random-music .aplayer-info .aplayer-time .aplayer-icon-play {
    margin: auto;
    right: 0;
    left: 0;
    width: 56px;
    height: 56px;
  }
  
  #heoMusic-page.random-music .aplayer-info .aplayer-time .aplayer-icon-forward {
    margin: auto;
    left: 110px;
    right: 0;
  }
  
  /* 调整歌曲信息 - 直接使用歌单模式样式 */
  #heoMusic-page.random-music .aplayer-info .aplayer-music {
    display: flex;
    position: fixed;
    top: calc(100dvh - 178px);
    left: 0;
    margin: 0;
    margin-left: 32px;
    height: 21px;
    max-width: calc(100vw - 110px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.6;
    align-items: center;
    line-height: 1;
    z-index: 100;
    transform: none !important;
    text-align: left !important;
  }
  
  /* 调整音频波浪条 */
  #audio-wave {
    top: 60%;
    gap: 4px;
    max-width: 80%;
    z-index: 9;
  }
  
  #audio-wave .wave-bar {
    width: 4px;
  }
}

@media screen and (max-width: 480px) {
  /* 小屏幕设备进一步调整 */
  #heoMusic-page.random-music .aplayer-pic {
    width: 160px !important;
    height: 160px !important;
  }
  
  #audio-visualizer {
    width: 160px;
    height: 160px;
  }
  
  /* 调整音频波浪条 */
  #audio-wave {
    top: 60%;
    gap: 3px;
    max-width: 90%;
  }
  
  #audio-wave .wave-bar {
    width: 3px;
  }
}

/* 隐藏上一曲按钮 */
#heoMusic-page.random-music .aplayer-icon-back {
  display: none !important;
}

/* 音频波浪动画效果，加长波浪长度 */
#audio-wave {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; /* 加长波浪长度 */
  max-width: 90%; /* 限制最大宽度 */
  height: 100px;
  pointer-events: none;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px; /* 增加波浪条间距 */
}

#audio-wave .wave-bar {
  width: 6px;
  height: 10px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 3px;
  animation: wave-animation 1s ease-in-out infinite;
}

@keyframes wave-animation {
  0% {
    height: 10px;
    opacity: 0.6;
  }
  25% {
    height: 30px;
    opacity: 0.8;
  }
  50% {
    height: 15px;
    opacity: 0.7;
  }
  75% {
    height: 45px;
    opacity: 0.9;
  }
  100% {
    height: 25px;
    opacity: 1;
  }
}

/* 播放时的波浪动画效果 */
#heoMusic-page.random-music.playing #audio-wave .wave-bar {
  /* 动态JavaScript动画，不需要CSS动画状态 */
}

/* 暂停时的波浪动画效果 */
#heoMusic-page.random-music #audio-wave .wave-bar {
  /* 动态JavaScript动画，不需要CSS动画状态 */
}

:root {
  --heo-white: #fff;
  --heo-white-op: rgba(255, 255, 255, 0.2);
  --heo-black: #000;
  --heo-black-op: rgba(0, 0, 0, 0.2);
  --heo-none: #00000000;
  --heo-gray: #999999;
  --heo-gray-op: #9999992b;
  --heo-vip: #e5a80d;
  --heo-main: var(--heo-theme);
  --heo-main-op: var(--heo-theme-op);
  --heo-main-op-deep: var(--heo-theme-op-deep);
  --heo-main-none: var(--heo-theme-none);
  --heo-shadow-theme: 0 8px 12px -3px var(--heo-theme-op);
  --heo-shadow-blackdeep: 0 2px 16px -3px rgba(0, 0, 0, .15);
  --heo-shadow-main: 0 8px 12px -3px var(--heo-main-op);
  --heo-shadow-blue: 0 8px 12px -3px rgba(40, 109, 234, .20);
  --heo-shadow-white: 0 8px 12px -3px rgba(255, 255, 255, .20);
  --heo-shadow-black: 0 0 12px 4px rgba(0, 0, 0, .05);
  --heo-shadow-yellow: 0px 38px 77px -26px rgba(255, 201, 62, .12);
  --heo-shadow-red: 0 8px 12px -3px #ee7d7936;
  --heo-shadow-green: 0 8px 12px -3px #87ee7936;
  --heo-logo-color: linear-gradient(215deg, #4584ff 0%, #cf0db9 100%);
  --heo-snackbar-time: 5s;
}

#page {
  border: 0;
  box-shadow: none !important;
  padding: 0 !important;
  background: transparent !important;
}

body {
  background: rgb(13, 13, 13);
  position: relative;
  overflow: hidden;
}

#heoMusic-page .aplayer{
  display: flex;
  flex-direction: row-reverse;
  background: rgba(0, 0, 0, 0);
  border: none;
  box-shadow: none;
  justify-content: space-between;
}
#page {
  border: 0;
  box-shadow: none !important;
  padding: 0 !important;
  background: transparent !important;
}
#music_bg {
  display: none;
  position: fixed;
  z-index: -999;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background-position: 0 0;
  rotate: 0;
  background-size: 40%;
  transition: 0.6s;
  background-image: url(/img/cover.webp);
}

#music_bg::before {
  content: '';
  transform: translateZ(0);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(200px);
  -webkit-backdrop-filter: blur(200px);
  transform: translateZ(0);
  position: fixed;
  z-index: -998;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
}

body #music_bg{
  display: block;
}

body {
  background: rgb(13, 13, 13);
}

#heoMusic-page {
  max-width: calc(1200px - 160px);
  margin: auto;
  margin-top: 60px;
}

#heoMusic-page .aplayer {
  display: flex;
  flex-direction: row;
  background: rgba(0, 0, 0, 0);
  border: none;
  box-shadow: none;
  height: calc(100dvh - 170px);
  gap: 40px;
}

.aplayer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 40%;
  height: 100%;
  max-width: 332px;
}

#heoMusic-page.localMusic {
  display: flex;
  flex-direction: row;
  background: rgba(0, 0, 0, 0);
  border: none;
  box-shadow: none;
  height: calc(100dvh - 170px);
}

body #web_bg {
  filter: blur(63px);
  opacity: 0.6;
  background-repeat: no-repeat;
  background-size: cover;
}
body #footer,
body #nav-music {
  display: none;
}

#heoMusic-page .aplayer-body {
  width: 70%;
  height: 100%;
}

#heoMusic-page ol > li:hover {
  background: var(--heo-black-op);
  border-radius: 6px;
}
#heoMusic-page .aplayer-pic {
  float: none;
  width: 300px;
  height: 300px;
  border-radius: 12px;
  z-index: 999;
  position: relative;
  transform: scale(0.9);
  background-size: cover;
  margin-top: 8px;
}

#heoMusic-page.aplayer_playing .aplayer-pic {
  transform: scale(1);
  box-shadow: var(--heo-shadow-black);
}

#heoMusic-page .aplayer-info {
  border-bottom: none;
  height: 100%;
}

#heoMusic-page .aplayer-info .aplayer-music {
  text-align: center;
  height: auto;
  margin: 15px;
  display: none;
}

#heoMusic-page .aplayer-info .aplayer-music .aplayer-author,
#heoMusic-page .aplayer-info .aplayer-music .aplayer-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

#heoMusic-page .aplayer-info .aplayer-lrc {
  height: 100%;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(to bottom, #0000, #000 10%, #000 90%, #0000);
  -webkit-mask-image: linear-gradient(to bottom, #0000, #000 10%, #000 90%, #0000);
}

#heoMusic-page .aplayer-info .aplayer-lrc::-webkit-scrollbar {
  display: none;
}

#heoMusic-page .aplayer-info .aplayer-lrc p {
  font-size: 36px;
  line-height: 1.38;
  margin-bottom: 0;
  padding: 8px;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  text-align: left;
  filter: blur(2px);
  opacity: 0.3;
  transition: all 0.9s cubic-bezier(0.56, 0.17, 0.22, 0.76),
              height 0.3s ease,
              background 0.3s ease,
              max-height 0.3s ease;
  user-select: none;
  text-shadow: 0px 2px 0px #ffffff00;
  position: relative;
  cursor: pointer;
  word-wrap: break-word; /* 兼容性更好，用于长单词换行 */
  word-break: break-all; /* 针对所有内容强制换行 */
}

#heoMusic-page .aplayer-info .aplayer-lrc p:hover::after {
  opacity: 1;
}

#heoMusic-page .aplayer-info .aplayer-lrc p.aplayer-lrc-current {
  filter: blur(0px);
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.56, 0.17, 0.22, 0.76), 
              text-shadow 8s 4s ease-in,
              height 0.3s ease,
              max-height 0.3s ease,
              opacity 0.3s ease;
  height: auto;
  max-height: 200px;
  text-shadow: 0px 2px 16px #ffffff94;
  white-space: normal;
  text-overflow: clip;
  transform: translateZ(0);
}

#heoMusic-page .aplayer-info .aplayer-lrc p.aplayer-lrc-current:first-child {
  text-shadow: 0px 2px 16px #ffffff00;
}

#heoMusic-page .aplayer-info .aplayer-lrc p:hover {
  background: #ffffff47;
}

#heoMusic-page .aplayer-info .aplayer-lrc p.aplayer-lrc-current:hover {
  background: #ffffff1b;
}


@media screen and (min-width: 768px) {
  #heoMusic-page .aplayer-info .aplayer-lrc:hover p {
    filter: blur(0px);
  }
}

#heoMusic-page .aplayer .aplayer-lrc:after,
#heoMusic-page .aplayer .aplayer-lrc:before {
  display: none;
}

.aplayer .aplayer-lrc .aplayer-lrc-contents {
  padding: 200px 20px 600px 20px;
  width: 90%;
  transition: all .5s cubic-bezier(0.49, 0.21, 0.22, 0.84);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateZ(0);
  margin-left: 16px;
}

@media screen and (max-width: 768px) {
  .aplayer .aplayer-lrc .aplayer-lrc-contents {
    width: calc(100% - 40px);
  }
}

/* 控制器 */
#heoMusic-page .aplayer-info .aplayer-controller {
  position: fixed;
  max-width: calc(1200px - 160px);
  margin: auto;
  left: 0;
  right: 0;
  bottom: 50px;
  align-items: center;
}
#heoMusic-page .aplayer-info .aplayer-controller .aplayer-bar-wrap {
  margin: 0 150px 0 150px;
}
#heoMusic-page .aplayer-info .aplayer-controller .aplayer-played {
  background: var(--heo-white) !important;
}
#heoMusic-page .aplayer-info .aplayer-controller .aplayer-thumb {
  -webkit-transform: none;
  transform: none;
  background: #fff !important;
}
#heoMusic-page .aplayer-info .aplayer-time .aplayer-icon-back,
#heoMusic-page .aplayer-info .aplayer-time .aplayer-icon-forward,
#heoMusic-page .aplayer-info .aplayer-time .aplayer-icon-play {
  display: inline;
  position: fixed;
}
#heoMusic-page .aplayer-info .aplayer-time {
  position: absolute;
  width: 100%;
  bottom: 24px;
  height: 0;
  display: flex;
  justify-content: flex-end;
}
#heoMusic-page .aplayer-info .aplayer-time .aplayer-time-inner {
  margin-right: 18px;
  margin-top: -8px;
}
#heoMusic-page .aplayer-info .aplayer-time .aplayer-icon-back {
  position: absolute;
  left: 0;
}
#heoMusic-page .aplayer-info .aplayer-time .aplayer-icon-play {
  position: absolute;
  left: 40px;
}
#heoMusic-page .aplayer-info .aplayer-time .aplayer-icon-forward {
  position: absolute;
  left: 80px;
}

#heoMusic-page .aplayer-info .aplayer-time .aplayer-icon {
  width: 26px;
  height: 26px;
  margin-left: 15px;
}

#heoMusic-page .aplayer-info .aplayer-time .aplayer-volume-wrap::before {
  content: '';
  position: absolute;
  padding: 8px;
  bottom: -6px;
  left: 3px;
  width: 28px;
  height: 150px;
}

#heoMusic-page .aplayer-info .aplayer-time .aplayer-icon-menu {
  display: none;
}

#heoMusic-page .aplayer-info .aplayer-time .aplayer-icon path {
  fill: var(--heo-white);
  opacity: 0.8;
}

#heoMusic-page .aplayer-list {
  width: 100%;
  height: 100%;
  flex: 1;
  min-width: 200px;
}
 
#heoMusic-page ol::-webkit-scrollbar-thumb {
  background-color: var(--heo-white-op);
}


#heoMusic-page ol > li {
  font-size: 14px;
  opacity: 0.6;
}
#heoMusic-page ol > li.aplayer-list-light {
  background: var(--heo-black-op);
  border-radius: 6px;
  height: 60px;
  display: flex;
  flex-direction: column;
  opacity: 1;
}

#heoMusic-page ol > li.aplayer-list-light .aplayer-list-index {
  display: none;
}

#heoMusic-page ol > li.aplayer-list-light .aplayer-list-title {
  font-size: 20px;
  line-height: 20px;
  margin-top: 8px;
  font-weight: bold;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

#heoMusic-page ol > li span {
  color: var(--heo-white);
}

#heoMusic-page ol > li.aplayer-list-light .aplayer-list-cur {
  display: none;
}
#heoMusic-page ol > li span.aplayer-list-title {
  line-height: 32px;
}

#heoMusic-page ol > li .aplayer-list-index {
  line-height: 32px;
}

#heoMusic-page ol > li span.aplayer-list-author {
  opacity: 0.6;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  max-width: 40%;
  line-height: 32px;
}

#heoMusic-page ol > li.aplayer-list-light span.aplayer-list-author {
  max-width: 100%;
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar {
  height: 8px;
  border-radius: 8px;
  background: var(--heo-white-op);
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-loaded {
  background: var(--heo-white-op);
  height: 8px;
  border-radius: 8px;
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-played {
  height: 8px;
  border-radius: 8px;
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-played .aplayer-thumb {
  height: 16px;
  width: 16px;
}

/* 导航栏 */
.page #nav {
  backdrop-filter: none !important;
  background: 0 0 !important;
  border-bottom: none !important;
}

.page #page-header.not-top-img #nav a,
.page #page-header #nav .back-home-button {
  color: var(--heo-white);
}

body .s-sticker div {
  color: var(--heo-white) !important;
}

body .aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon.aplayer-icon-loop {
  margin-right: 7px;
}

.aplayer .aplayer-info .aplayer-controller .aplayer-time {
  color: var(--heo-white);
}

[data-theme="dark"] .page #page-header:before {
  background-color: transparent;
}

.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap:hover .aplayer-volume-bar-wrap {
  height: 120px;
  border-radius: 40px;
  width: 30px;
}

.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap .aplayer-volume-bar-wrap {
  width: 30px;
}

.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap .aplayer-volume-bar-wrap .aplayer-volume-bar {
  width: 100%;
  height: 100%;
  left: 0;
}

.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap .aplayer-volume-bar-wrap .aplayer-volume-bar .aplayer-volume {
  width: 100%;
  background: var(--heo-white)!important;
}

/* **** 移动端样式 ***** */
@media screen and (max-width: 768px) {
  body #rightside {
    display: none;
  }
  body #content-inner,
  body #page {
    z-index: auto;
  }
  /* 歌曲列表 */
  #heoMusic-page .aplayer-list {
    position: fixed;
    z-index: 1003; /* 提高z-index以确保列表在遮罩之上 */
    width: 100vw;
    top: 0px;
    left: 0;
    background: var(--heo-white);
    border-radius: 0px 0px 16px 16px;
    padding: 15px 0px;
    max-width: 100vw;
    height: calc(100dvh - 240px);
  }
  #heoMusic-page .aplayer-list.aplayer-list-hide {
    top: -100% !important;
  }
  #heoMusic-page ol {
    padding: 0 16px;
  }
  #heoMusic-page ol > li {
    display: flex;
  }
  #heoMusic-page ol > li span {
    color: var(--font-color);
  }
  #heoMusic-page ol > li span.aplayer-list-title {
    width: 30%;
  }
  #heoMusic-page ol > li.aplayer-list-light {
    background: #33a673;
    padding: 5px 20px;
    border-radius: 10px;
    height: 52px;
    justify-content: center;
  }
  #heoMusic-page ol > li.aplayer-list-light .aplayer-list-title {
    margin-top: 4px;
  }
  #heoMusic-page ol > li.aplayer-list-light span {
    color: #fff;
  }
  #heoMusic-page ol > li span.aplayer-list-title {
    max-width: 55%;
    width: auto;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
  }
  #heoMusic-page ol > li span.aplayer-list-author {
    right: 10px;
    width: auto;
    max-width: 35%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
    margin-left: auto;
  }
  #heoMusic-page ol > li.aplayer-list-light span.aplayer-list-author {
    margin-left: 0;
  }

  #heoMusic-page ol > li.aplayer-list-light span.aplayer-list-author {
    right: 15px;
  }
  /* 歌词信息 */
  #heoMusic-page .aplayer-body {
    width: 100%;
    overflow: hidden;
    position: fixed;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    height: calc(100dvh - 200px);
  }
  #heoMusic-page .aplayer-info .aplayer-lrc {
    margin-top: 0;
    height: calc(100dvh - 100px);
    min-height: 100%;
    mask-image: linear-gradient(to bottom, #000, #000, #000, #000, #0000, #0000);
  }
  /* 控制按键和进度条 */
  #heoMusic-page .aplayer-info .aplayer-controller {
    width: 100%;
    bottom: 120px;
  }
  #heoMusic-page .aplayer-info .aplayer-controller .aplayer-bar-wrap {
    margin: 0 32px;
  }
  #heoMusic-page .aplayer-info .aplayer-time {
    bottom: -40px;
    align-items: center;
  }
  #heoMusic-page .aplayer-info .aplayer-time .aplayer-time-inner {
    position: absolute;
    width: 100%;
    margin-right: 4px;
    margin-top: -60px;
  }
  #heoMusic-page .aplayer-info .aplayer-time .aplayer-time-inner .aplayer-dtime {
    position: absolute;
    right: 30px;
  }
  #heoMusic-page .aplayer-info .aplayer-time .aplayer-time-inner .aplayer-ptime {
    position: absolute;
    left: 44px;
  }
  #heoMusic-page .aplayer-info .aplayer-time .aplayer-icon-back {
    margin: auto;
    right: 110px;
  }
  #heoMusic-page .aplayer-info .aplayer-time .aplayer-icon-play {
    margin: auto;
    right: 0;
    left: 0;
    width: 56px;
    height: 56px;
  }
  #heoMusic-page .aplayer-info .aplayer-time .aplayer-icon-forward {
    margin: auto;
    left: 110px;
    right: 0;
  }
  #heoMusic-page .aplayer-info .aplayer-time .aplayer-icon-order {
    position: absolute;
    left: 22px;
    width: 24px;
    height: 24px;
    opacity: 0.4;
  }
  #heoMusic-page .aplayer-info .aplayer-time .aplayer-icon-loop {
    position: absolute;
    right: 25px;
    width: 24px;
    height: 24px;
    opacity: 0.4;
  }
  #heoMusic-page .aplayer-info .aplayer-time .aplayer-icon-menu {
    display: inline;
    position: absolute;
    right: 30px;
    top: -100px;
    width: 24px;
    height: 24px;
    opacity: 0.4;
  }
  #heoMusic-page .aplayer-volume-bar-wrap {
    bottom: 0px;
    right: 7px;
  }
  #heoMusic-page .aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap {
    left: -66px;
    display: none;
  }
  #heoMusic-page.localMusic .aplayer-info .aplayer-controller .aplayer-volume-wrap {
    left: -66px;
    display: none;
  }
  #heoMusic-page .aplayer-info .aplayer-lrc p {
    font-size: 32px;
  }
  #heoMusic-page .aplayer-info .aplayer-music {
    display: flex;
    position: fixed;
    top: calc(100dvh - 178px);
    left: 0;
    margin: 0;
    margin-left: 32px;
    height: 21px;
    max-width: calc(100vw - 110px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.6;
    align-items: center;
    line-height: 1;
  }

  #heoMusic-page .aplayer-info .aplayer-music .aplayer-title {
    font-size: 16px;
    font-weight: normal;
    margin: 0;
    line-height: 1;
  }

  #heoMusic-page .aplayer-info .aplayer-music .aplayer-author {
    margin-left: 4px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
  }

  #heoMusic-page .aplayer-info .aplayer-music .aplayer-author,
  #heoMusic-page .aplayer-info .aplayer-music .aplayer-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100vw - 176px);
  }

  .aplayer .aplayer-lrc {
    overflow: inherit;
  }

  #heoMusic-page .aplayer-pic {
    display: none;
  }

  .aplayer .aplayer-lrc .aplayer-lrc-contents {
    margin-left: 0;
  }
}
