.music {
  padding-top: 120px;
}

@media only screen and (max-width: 960px) {
  .music {
    padding-top: 80px;
  }
}

.music .title {
  position: relative;
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 80px;
}

@media only screen and (max-width: 960px) {
  .music .title {
    font-size: 30px;
  }
}

.music .title::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -12px;
  width: 40%;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(30%, white), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0), white 30% 70%, rgba(0, 0, 0, 0));
}

.music_wrap {
  text-align: center;
}

.music_wrap .music_song {
  font-size: 32px;
}

@media only screen and (max-width: 960px) {
  .music_wrap .music_song {
    font-size: 24px;
  }
}

.music_wrap .music_name {
  font-size: 23px;
  margin-top: 40px;
}

@media only screen and (max-width: 960px) {
  .music_wrap .music_name {
    font-size: 18px;
    margin-top: 20px;
  }
}

.music_wrap .music_sub {
  font-size: 13px;
  margin-top: 10px;
}

@media only screen and (max-width: 960px) {
  .music_wrap .music_sub {
    font-size: 10px;
  }
}

.music_img {
  width: 800px;
  margin: 50px auto 0;
}

.music_comment {
  width: 800px;
  margin: 50px auto 0;
}

.music_comment dt {
  text-align: center;
  margin-bottom: 20px;
}

.music_comment dd {
  text-align: left;
}

@media only screen and (max-width: 960px) {
  .music_img {
    width: 88%;
    margin: 30px auto 0;
  }

  .music_comment {
    width: 88%;
    margin: 30px auto 0;
  }

  .music_comment dt {
    text-align: center;
    margin-bottom: 10px;
  }

  .music_comment dd {
    font-size: 13px;
  }
}