#s-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
/* 输入框右侧留空给按钮 */
#s-input {
  padding-right: 80px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
body {
font-family: Arial, sans-serif;
margin: 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.right {
width: 100%;
background: white;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.function_c li {
display: inline-block;
margin: 8px 12px 8px 0;
padding: 6px 12px;
border-radius: 20px;
transition: all 0.3s ease;
}
.function_c li:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
/* 表格行悬浮效果 */
.song-ranking-table .song-row {
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.song-ranking-table .song-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
  background-color: rgba(0, 123, 255, 0.02);
  z-index: 2;
}
/* 徽章悬浮效果增强 */
.song-ranking-table .song-row:hover .badge {
  background-color: #28a745;
  transform: scale(1.05);
  transition: all 0.3s ease;
}
/* 歌曲链接悬浮效果 */
.song-ranking-table .song-row:hover a {
  color: #007bff;
  text-decoration: underline;
  transition: all 0.3s ease;
}
/* 表格整体样式优化 */
.song-ranking-table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
.song-ranking-table td,
.song-ranking-table th {
  padding: 12px 15px;
}
/* 热门文章行悬浮效果 */
.hot-article-row {
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.hot-article-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
  background-color: rgba(0, 123, 255, 0.02);
  z-index: 2;
}
/* 徽章悬浮效果增强 */
.hot-article-row:hover .badge {
  background-color: #28a745;
  transform: scale(1.05);
  transition: all 0.3s ease;
}
/* 文章链接悬浮效果 */
.hot-article-row:hover a {
  color: #007bff;
  text-decoration: underline;
  transition: all 0.3s ease;
}
/* 音乐合集列表项悬浮效果 */
.music-collection-item {
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.music-collection-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
  background-color: rgba(0, 123, 255, 0.02);
  z-index: 2;
}
/* 音乐图标悬浮效果增强 */
.music-collection-item:hover .fa-music {
  color: #28a745;
  transform: scale(1.1);
  transition: all 0.3s ease;
}
/* 下载图标悬浮效果增强 */
.music-collection-item:hover .fa-download {
  color: #007bff;
  transform: scale(1.1);
  transition: all 0.3s ease;
}
/* 歌曲标题悬浮效果增强 */
.music-collection-item:hover a {
  color: #007bff;
  transition: all 0.3s ease;
}
