.player-container {
  position: relative;
  max-width: 400px;
  width: 100%;
}

/* 迷你播放器 */
.mini-player {
  background: white;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.postnfuts-adrtit{
  margin-bottom: 20px;
}
/* 顶部进度条 */
.mini-progress-bar {
  height: 3px;
  background: #f0f0f0;
  width: 100%;
}

.mini-progress {
  height: 100%;
  background: #ff4757;
  width: 0%;
  transition: width 0.1s ease;
}
.nfutsrd-pagenav{
  display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
    margin-bottom: 150px;
}
.nfutsrd-pagenav div a{
  width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffffff;
    color: #333;
    text-align: center;
    line-height: 30px;
}
.nfutsrd-pagenav div span.current{
  width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #3470e9;
    color: #fff;
    text-align: center;
    line-height: 30px;
}
.nfutsrd-pagenav div a.next{
  width: 60px;
  border-radius: 12px;
  background: #fff;
  color: #333;
  text-align: center;
  line-height: 30px;
}
.nfutsrd-pagenav div a.shang{
  width: 60px;
  border-radius: 12px;
  background: #fff;
  color: #333;
  text-align: center;
  line-height: 30px;
}

/* 迷你播放器内容 */
.mini-player-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

.song-cover {
  flex-shrink: 0;
}

.song-cover img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.song-info {
  flex: 1;
  min-width: 0;
}

.song-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.song-artist {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.controls {
  flex-shrink: 0;
}

.play-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgb(173 173 173 / 90%);
  border: none;
  color: white;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: #ff3742;
  transform: scale(1.05);
}

.menu-btn {
  flex-shrink: 0;
  cursor: pointer;
  padding: 8px;
}

.menu-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.menu-lines span {
  width: 20px;
  height: 2px;
  background: #666;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.menu-btn:hover .menu-lines span {
  background: #333;
}

/* 展开的播放器 */
.expanded-player {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 12px;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 20px;
}

.expanded-player.show {
  opacity: 1;
  visibility: visible;
  max-height: 500px;
  padding: 20px;
}

.expanded-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.close-btn:hover {
  background: #f0f0f0;
}

.expanded-header h3 {
  font-size: 18px;
  color: #333;
}

.expanded-cover {
  text-align: center;
  margin-bottom: 15px;
}

.expanded-cover img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.expanded-info {
  text-align: center;
  margin-bottom: 20px;
}

.expanded-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.expanded-artist {
  font-size: 16px;
  color: #666;
}

.progress-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.progress-container span {
  color: #666;
  font-size: 12px;
  min-width: 35px;
}

.progress-bar {
  flex: 1;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.progress {
  height: 100%;
  background: #ff4757;
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s ease;
}

.expanded-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}

.control-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: #f0f0f0;
  color: #333;
}

.play-btn-large {
  background: #ff4757 !important;
  color: white !important;
  font-size: 18px;
  width: 40px;
  height: 40px;
}

.play-btn-large:hover {
  background: #ff3742 !important;
  transform: scale(1.05);
}

.playlist h4 {
  color: #333;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
}

.playlist {
  max-height: 200px;
  overflow-y: auto;
}

.song-list {
  list-style: none;
}

.song-item {
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 8px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
}

.song-item:hover {
  background: #e9ecef;
}

.song-item.active {
  
  color: #ff4757;
  
}

.song-item .song-name {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 14px;
}

.song-item .song-duration {
  font-size: 12px;
  opacity: 0.7;
}

/* 滚动条样式 */
.playlist::-webkit-scrollbar {
  width: 4px;
}

.playlist::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

.playlist::-webkit-scrollbar-thumb {
  background: #ff4757;
  border-radius: 2px;
}

.playlist::-webkit-scrollbar-thumb:hover {
  background: #ff3742;
}

/* 响应式设计 */
@media (max-width: 480px) {
  .player-container {
    margin: 10px;
  }

  .mini-player {
    padding: 10px;
  }

  .song-cover img {
    width: 50px;
    height: 50px;
  }

  .play-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .song-title {
    font-size: 14px;
  }

  .song-artist {
    font-size: 12px;
  }

  .expanded-cover img {
    width: 100px;
    height: 100px;
  }

  .expanded-controls {
    gap: 20px;
  }

  .control-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .play-btn-large {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

.go-2-top-box {
  bottom: 100px !important;
}

.play-wave, .play-wave-pause {
  width: 38px;
  height: 38px;
  border-radius: 24px;
  margin-right: 12px;
}

.song-item .play-wave-box {
  display: none;
}
.song-item.active .play-wave-box {
  display: block;
}

.newwrite-listbox {
  width: 1160px;
  margin: 0 auto;
  margin-top: 20px;
  z-index: 1;
  position: relative;
}

/* 顶部导航栏样式 */
.newwrite-top-nav {

}

.newwrite-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  
}

.newwrite-nav-item {
  padding: 10px 15px;
  color: #666;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 50px;
}

.newwrite-nav-item:hover {
  color: #333;
  background: #f8f8f8;
}

.newwrite-nav-item.active {
  background: #fff;
  color: #333;
  font-weight: 600;
}

.newwrite-language-dropdown {
  margin-left: auto;
  color: #666;
}
.nfuts-vdaibox-contr {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.vdleftsd-navbox-list {
  flex: 1 auto;
}
.vdleftsd-navbox-stitem {
  background-color: #fff;

  padding: 1rem 1.5rem;
  border-radius: 12px;
  word-wrap: break-word;
  font-family: PingFang SC, Arial, "Noto Sans SC", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.vdleftsd-navbox-sttit {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  padding-bottom: 20px;
}
.vdleftsd-navbox-stlitxt {
  display: flex;
  flex-direction: column;
}
.vdleftsd-navbox-stlitxt a {
  word-wrap: break-word;
  padding: 1px 0 1px 10px;
  margin: 8px 0;
  font-size: 16px;
}
.vdleftsd-navbox-stlitxt a.current,
.vdleftsd-navbox-stlitxt a:hover {
  color: #f9595f;
  border-left: 2px solid #f9595f;
}
.nfutsnocoent-txt {
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 15px;
  color: #666;
}
.nfutsnocoent-txt a {
  color: #3470e9;
}
.nfutsnocoent-txt a:hover {
  color: #3470e9;
}