/* 悬浮窗播放器样式 */
.player {
  display: none; /* 默认隐藏 */
  position: fixed;
  bottom: 20px; /* 距离底部 20px */
  left: 20px; /* 距离左侧 20px */
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 15px;
  z-index: 1000;
  width: 300px;
  text-align: center;
}

/* 播放器内容 */
.player-content {
  position: relative;
}

/* 音频控件样式 */
audio {
  width: 100%;
  margin-top: 10px;
}

/* 计时器样式 */
#timer {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

/* 关闭按钮样式 */
#close-player {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #ff4757;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

#close-player:hover {
  background-color: #ff6b81;
}
