/* ===== 自定义歌词区域样式（覆盖 APlayer 默认样式）===== */

/* 歌词容器整体 */
.aplayer .aplayer-lrc {
  font-size: 26px;
  color: #e0e0e0; /* 普通歌词颜色 */
  text-align: center;
  background: rgba(0, 0, 0, 0.6); /* 半透明黑色背景 */
  padding: 18px 10px; /* 上下左右内边距，可微调 */
  margin: 0; /* 无外边距，防止撑开 */
  line-height: 1.6;
  border: none; /* 无边框 */
  display: block; /* 确保是块级元素，撑满容器 */
  position: relative; /* 保持定位上下文 */
  /* 不设置固定 height，高度由内容 + padding 自然撑开 */
  overflow: hidden; /* 可选：防止内容溢出 */
}

/* 普通歌词行（所有 <p> 标签） */
.aplayer .aplayer-lrc p {
  line-height: 1.6;
  font-size: 15px;
  color: #bbb; /* 普通歌词稍暗 */
  transition: color 0.3s ease;
  margin: 0;
  padding: 2px 0; /* 行与行之间小间距（可选） */
}

/* 当前正在播放的歌词（高亮行，带 .aplayer-lrc-current 类的 <p>） */
.aplayer .aplayer-lrc p.aplayer-lrc-current {
  color: #D01029; /* 高亮颜色，比如正红色 */
  font-weight: bold;
  /* 可选：进一步放大字体或加特效 */
  /* font-size: 1.1em; */
}