.music-box {
  width: 100%;
  height: calc(100vh - 60px);
  background: #e8cbc0; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #636fa4,
    #e8cbc0
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #636fa4,
    #e8cbc0
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.music-box-center {
  width: 1000px;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  margin: 0 auto;
}

.music-box-center-content {
  width: 100%;
  height: calc(100vh - 180px);
  min-height: 100px;
  overflow: auto;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
}
.music-box-center-content::-webkit-scrollbar {
  width: 4px;
}
.music-box-center-content::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.2);
}
.music-box-center-content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
}
.content-title {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  color: #e1e1e1;
}
.music-name {
  width: 60%;
}
.music-siger {
  width: 30%;
}
.music-time {
  width: 10%;
}
.content-info {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  color: #e1e1e1;
}
.content-info-active {
  color: #333 !important;
}
.content-info:hover {
  color: #fff;
}
.content-info:hover .info-detail {
  visibility: visible;
}
.info-music-name {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.info-name {
  cursor: pointer;
}
.info-detail {
  visibility: hidden;
  display: flex;
  align-items: center;
}
.info-detail p {
  margin-right: 40px;
  cursor: pointer;
}
.info-detail a {
  margin-right: 40px;
  color: #fff;
  cursor: pointer;
}
.info-music-siger {
  width: 30%;
}
.info-music-time {
  width: 10%;
}

.music-box-center-footer {
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
}

audio {
  width: 960px;
}
