body {
  width: 95.5%;
  max-width: 400px;
  border: #888 0.05px solid;
  padding: 1px;
  border-radius: 25px;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  background-color: #223;
  margin: 250px auto; /* 让body水平居中 */
}
.player {
  position: relative;
  width: 210px;
  height: 210px;
  top: -120px; /* 调整整体位置，上移20px */
  left: 0.5%;
}
/* 针对PC的样式 */
@media screen and (min-width: 1024px) {
    body {
      width: 95.5%;
      max-width: 400px;
      border: #888 0px solid;
      padding: 1px;
      border-radius: 25px;
      font-family: Arial, sans-serif;
      display: flex;
      justify-content: center;
      background-color: #242;
      margin: 250px auto; /* 让body水平居中 */
    }
    .player {
      position: relative;
      width: 210px;
      height: 210px;
      top: 90px; /* 调整整体位置，上移20px */
      left: 0.5%;
    }
}

.dot {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #f00;
  border-radius: 50%;
  top: 50%;
  left: 49%;
  transform-origin: center center; /* 将红点的旋转中心设为自身中心 */
  transform: translate(-50%, -50%) rotate(210deg) translate(0, -115px); /* 初始位置设为时钟7点位置 */
  transition: transform 0.1s linear;
  z-index: 2; /* 前景元素，z-index值较大，处于最上层 */
}
.controls {
  position: absolute;
  top: 51%;
  left: 51.7%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 50px; /* 调整按钮位置的间距 */
}
.control-button-play {
  font-size: 18px; /* 播放/暂停按钮文字大小 */
  color: #004; /* 播放/暂停按钮文字颜色 */
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 49%;
  transform: translate(-50%, -50%);
  outline: none;
}
.control-button-next {
  font-size: 24px; /* 下一曲按钮文字大小 */
  color: #ccc; /* 下一曲按钮文字颜色 */
  cursor: pointer;
  position: absolute;
  top: 50%; /* 调整下一曲按钮top位置 */
  right: 9px; /* 调整下一曲按钮right位置 */
  transform: translateY(-50%);
}
.time {
  position: absolute;
  top: 86%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: #fff;
}
.container2 {
  width: 80%;
  text-indent: 1em;
  /* 缩进2个字符 */
  font-size: 17px;
  /* 字体大小 */
  color: #ddd;
  /* 文字颜色 */
  margin: 0 auto;
  padding: 20px;
  position: fixed;
  top: 400px;
}
/* 添加媒体查询，确保在PC端显示出手机端的效果 */
@media (min-width: 768px) {
  body {
    max-width: 400px; /* 设置PC端的最大宽度，模拟手机端效果 */
    margin: 0 auto; /* 居中显示 */
  }
}
        hr {
            border: none; /* 去掉默认边框 */
            height: 0.15px; /* 设置高度（粗细） */
            background-color: #aaa; /* 设置颜色 */
            margin: 8px 0; /* 设置上下边距 */
        }
a {
	text-decoration:none;
}