.container {
  margin-bottom: 60px;
}

.carousel-wrap {
  width: 100%;
  height: 400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.carousel-wrap:hover .indicator-wrap {
  display: flex;
}

.carousel-item-wrap {
  width: 100%;
  height: 100%;
  display: flex;
}
.carousel-item-wrap .carousel-item {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.carousel-item-wrap .carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.indicator-wrap {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  display: none;
  justify-content: space-between;
  padding: 0 50px;
}
.indicator-wrap .indicator {
  width: 90px;
  height: 90px;
  cursor: pointer;
}
.indicator-wrap .indicator img {
  width: 100%;
  height: 100%;
}

.indicators {
  display: flex;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  gap: 10px;
}
.indicators span {
  width: 10px;
  height: 10px;
  border: 2px solid white;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
.indicators span.active {
  width: 30px;
  height: 10px;
  border-radius: 6px;
}

.playlist-and-rank {
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
  gap: 30px;
}
.playlist-and-rank .playlist-cards {
  display: flex;
  flex-direction: column;
  width: 640px;
  height: 380px;
  flex-wrap: wrap;
  gap: 20px;
}
.playlist-and-rank .playlist-card:first-of-type {
  width: 320px;
  height: 360px;
}
.playlist-and-rank .playlist-card:first-of-type .cover {
  width: 320px;
  height: 320px;
}
.playlist-and-rank .playlist-card:first-of-type .desc {
  width: 320px;
}
.playlist-and-rank .playlist-card {
  width: 130px;
  height: 170px;
  cursor: pointer;
}
.playlist-and-rank .playlist-card:hover .cover img {
  scale: 1.1;
}
.playlist-and-rank .playlist-card .cover {
  width: 130px;
  height: 130px;
  position: relative;
  overflow: hidden;
}
.playlist-and-rank .playlist-card .cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.2s;
}
.playlist-and-rank .playlist-card .cover .play-count {
  position: absolute;
  bottom: 0px;
  right: 0px;
  min-width: 52px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 82px;
  height: 24px;
  padding: 0 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 12px;
  font-weight: 500;
  gap: 2px;
}
.playlist-and-rank .playlist-card .cover .play-count .play-icon {
  width: 12px;
  height: 12px;
  background: url("../../assets/play_music_icon.png") no-repeat;
  background-size: 100%;
}
.playlist-and-rank .playlist-card .desc {
  width: 130px;
  font-size: 14px;
  font-weight: 400;
}
.playlist-and-rank .rank {
  width: 320px;
}
.playlist-and-rank .rank .rank-cards {
  height: 360px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.playlist-and-rank .rank .rank-card {
  height: 110px;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: rgba(0, 0, 0, 0.01);
}
.playlist-and-rank .rank .rank-card .rank-card-cover {
  width: 110px;
  height: 100%;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: white;
}
.playlist-and-rank .rank .rank-card .rank-songs {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.playlist-and-rank .rank .rank-card .rank-songs .rank-song {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 4px;
}
.playlist-and-rank .rank .rank-card .rank-songs .rank-song .text {
  width: 130px;
  overflow: hidden;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}

.new-song-and-mv {
  display: flex;
  gap: 20px;
}
.new-song-and-mv .new-song {
  width: 660px;
  height: 460px;
}
.new-song-and-mv .new-song .new-song-header {
  justify-content: start;
  gap: 60px;
}
.new-song-and-mv .new-song .new-song-cards {
  width: 100%;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: start;
  flex-wrap: wrap;
  gap: 10px;
}
.new-song-and-mv .new-song .new-song-cards .new-song-card {
  width: 320px;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new-song-and-mv .new-song .new-song-cards .new-song-card .new-song-card-left {
  display: flex;
  justify-content: start;
  gap: 20px;
  align-items: center;
}
.new-song-and-mv .new-song .new-song-cards .new-song-card .new-song-card-left .cover {
  width: 60px;
  height: 60px;
}
.new-song-and-mv .new-song .new-song-cards .new-song-card .new-song-card-left .cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.new-song-and-mv .new-song .new-song-cards .new-song-card .new-song-card-left .song-info {
  flex: 1;
}
.new-song-and-mv .new-song .new-song-cards .new-song-card .new-song-card-left .song-info .song-title {
  font-size: 16px;
  font-size: 500;
}
.new-song-and-mv .new-song .new-song-cards .new-song-card .new-song-card-left .song-info .song-author {
  font-size: 14px;
  font-weight: 300;
}
.new-song-and-mv .new-song .new-song-cards .new-song-card .new-song-card-right {
  margin-right: 30px;
}
.new-song-and-mv .new-song .new-song-cards .new-song-card .new-song-card-right .play-button-cover {
  cursor: pointer;
  width: 20px;
  height: 20px;
  background: url("../../assets/play_music_black_icon.png") no-repeat;
  background-size: 100%;
}
.new-song-and-mv .mv {
  width: 300px;
  height: 460px;
}
.new-song-and-mv .mv .mv-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.new-song-and-mv .mv .mv-cards .mv-card:first-of-type {
  width: 100%;
  height: 200px;
}
.new-song-and-mv .mv .mv-cards .mv-card:first-of-type .cover {
  width: 100%;
  height: 160px;
}
.new-song-and-mv .mv .mv-cards .mv-card {
  width: 140px;
  height: 120px;
}
.new-song-and-mv .mv .mv-cards .mv-card .cover {
  width: 140px;
  height: 80px;
}
.new-song-and-mv .mv .mv-cards .mv-card .cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}

.listen-book {
  width: 960px;
}
.listen-book .listen-book-header {
  justify-content: start;
  gap: 60px;
}
.listen-book .listen-book-cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.listen-book .listen-book-cards .listen-book-card {
  width: 210px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.listen-book .listen-book-cards .listen-book-card .listen-book-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.listen-book .listen-book-cards .listen-book-card .listen-book-info .listen-book-name {
  width: 160px;
  overflow: hidden;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}
.listen-book .listen-book-cards .listen-book-card .listen-book-play-count {
  display: flex;
  align-items: center;
  gap: 2px;
}
.listen-book .listen-book-cards .listen-book-card .listen-book-play-count img {
  width: 12px;
  height: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.listen-book .listen-book-cards .listen-book-card .listen-book-play-count .count {
  font-size: 12px;
}/*# sourceMappingURL=main.css.map */