/* 主要区域的左侧样式 */

/* 1.左侧区域 */
.main .area-left {
  width: 729px;
  padding: 20px 20px 40px;
  /* background-color: #f00; */
}

/* -------------------- 热门推荐 -------------------- */

/* ul */
.recommend-section .list {
  display: flex;
  /* 换行(默认不换行) */
  flex-wrap: wrap;
  /* 水平方向: 两端对齐 */
  justify-content: space-between;
  margin-top: 20px;
}

/* li */
.recommend-section .item {
  width: 140px;
  margin-bottom: 30px;
}

/* 1)封面 */
.recommend-section .item .album {
  position: relative;
  height: 140px;
}

/* 遮盖层 */
.recommend-section .item .album .cover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../images/music_sprite.png) no-repeat;
}

/* 信息 */
.recommend-section .item .album .info {
  display: flex;
  /* 垂直方向: 居中对齐  */
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 27px;
  padding-left: 10px;
  background: url(../images/music_sprite.png) no-repeat 0 -537px;
  color: #ccc;
}

/* 字体图标-音乐 */
.recommend-section .item .album .info .icon-music {
  /* display: inline-block; */
  /* width: 14px;
  height: 11px; */
  margin-right: 5px;
  /* background: url(../images/icon_sprite.png) no-repeat 0 -24px; */
}

/* 字体图标-播放 */
.recommend-section .item .album .info .icon-play {
  position: absolute;
  /* display: inline-block; */
  right: 10px;
  /* width: 16px;
  height: 17px;
  background: url(../images/icon_sprite_01.png) no-repeat; */
}

.recommend-section .item .album .info .icon-play:hover {
  background-position: 0 -60px;
}

/* 2)底部 */
.recommend-section .item .bottom {
  display: inline-block;
  margin: 8px 0 3px;
  color: #000;
  font-size: 14px;
}

.recommend-section .item .bottom:hover {
  /* 下划线 */
  text-decoration: underline;
}

/* 字体图标 */
.recommend-section .item .bottom .radio {
  position: relative;
  top: 3px;
}

/* -------------------- /热门推荐 -------------------- */


/* -------------------- 新碟上架 -------------------- */

/* 内容 */
.disc-section .content {
  height: 186px;
  margin: 20px 0 37px;
  box-sizing: border-box;
  border: 1px solid #d3d3d3;
  background-color: #f5f5f5;
}

/* 内部 */
.disc-section .content .inner {
  position: relative;
  /* 注意: 内外两层边框 */
  height: 100%;
  padding: 0 22px;
  box-sizing: border-box;
  border: 1px solid #fff;
}

/* 滚蛋的轮播图(一组) */
.disc-section .inner .roller {
  display: flex;
  height: 100%;
  /* background-color: #f00; */
  overflow: hidden;
}

/* ul */
.disc-section .inner .roller .list {
  display: flex;
  /* 水平方向: 两端对齐 */
  justify-content: space-between;
  /* 垂直方向: 居中对齐 */
  align-items: center;
  width: 100%;
  padding-top: 10px;
  /* 收缩(默认为1) */
  flex-shrink: 0;
  /* background-color: #00f; */
}

/* li */
.disc-section .inner .roller .list .item {
  width: 118px;
  height: 150px;
  /* background-color: #f00; */
  background: url(../images/main_sprite.png) no-repeat -260px 100px;
}

/* 封面 */
.disc-section .roller .list .item .album {
  position: relative;
}

/* 1)遮盖层 */
.disc-section .list .item .album .cover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../images/music_sprite.png) no-repeat 0 -570px;
}

/* 2)播放 */
.disc-section .item .album .play {
  /* 默认隐藏播放按钮 */
  display: none;
  position: absolute;
  right: 25px;
  bottom: 5px;
  width: 22px;
  height: 22px;
  background: url(../images/icon_sprite_01.png) no-repeat;
  background-position: 0 -110px;
}

.disc-section .item .album:hover .play {
  /* 显示播放按钮 */
  display: block;
}

.disc-section .item>a {
  display: block;
  margin-top: 5px;
  /* 微调控制省略号范围 */
  padding-right: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.disc-section .item>a:hover {
  /* 下划线 */
  text-decoration: underline;
}

.disc-section .item>a.title {
  margin-top: 8px;
  color: #000;
}

.disc-section .item>a.author {
  color: #666;
}


/* 左右按钮 */
.disc-section .content .control {
  position: absolute;
  top: 60px;
  width: 17px;
  height: 17px;
  /* background-color: #f00; */
  background: url(../images/main_sprite.png) no-repeat;
}

.disc-section .inner .control.control-left {
  left: 4px;
  background-position: -260px -75px;
}

.disc-section .inner .control.control-left:hover {
  background-position: -280px -75px;
}

.disc-section .inner .control.control-right {
  right: 4px;
  background-position: -300px -75px;
}

.disc-section .inner .control.control-right:hover {
  background-position: -320px -75px;
}

/* -------------------- /新碟上架 -------------------- */


/* -------------------- 榜单 -------------------- */
.rank-section .content {
  display: flex;
  height: 472px;
  margin-top: 20px;
  background: url(../images/rank_bg.png) no-repeat;
}

/* dl */
.rank-section .content .rank {
  width: 230px;
}


/* dt */
.rank-section .rank .header {
  display: flex;
  height: 120px;
  padding: 20px 0 0 20px;
  box-sizing: border-box;
}

/* 1.封面 */
.rank-section .rank .header .album {
  position: relative;
  width: 80px;
  height: 80px;
}

/* 图片 */
.rank-section .rank .header .album>img {
  width: 100%;
  height: 100%;
}

/* 遮盖层 */
.rank-section .header .album .cover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../images/music_sprite.png) no-repeat -145px -57px;
}

/* 2.信息 */
.rank-section .rank .header .info {
  padding: 10px 0 0 12px;
}

/* 标题 */
.rank-section .rank .header .info .title {
  color: #333;
  font-size: 14px;
}

.rank-section .rank .header .info>a:hover {
  /* 下划线 */
  text-decoration: underline;
}

/* 操作 */
.rank-section .rank .header .info .operation {
  margin-top: 10px;
  /* 清除间隙 */
  font-size: 0;
}

.rank-section .rank .header .info .btn {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  background: url(../images/main_sprite.png) no-repeat;
}

.rank-section .rank .header .info .btn.play {
  background-position: -267px -205px;
}

.rank-section .rank .header .info .btn.play:hover {
  background-position: -267px -235px;
}

.rank-section .rank .header .info .btn.favor {
  background-position: -300px -205px;
}

.rank-section .rank .header .info .btn.favor:hover {
  background-position: -300px -235px;
}

/* dd */

/* ol */
.rank-section .rank .list ol {
  padding-left: 15px;
}

/* li */
.rank-section .rank .list .item {
  display: flex;
  height: 32px;
  line-height: 32px;
}

.rank-section .rank .list .item:hover .operation {
  display: flex;
}

/* 序号 */
.rank-section .rank .list .item .no {
  width: 35px;
  text-align: center;
  color: #666;
  font-size: 16px;
}

/* 前三序号 */
.rank-section .rank .list .item:nth-child(-n+3) .no {
  color: #c10d0c;
}

/* 歌名 */
.rank-section .rank .list .item .song {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.rank-section .rank .list .item .song:hover {
  /* 下划线 */
  text-decoration: underline;
}

/* 操作 */
.rank-section .rank .list .item .operation {
  /* display: flex; */
  /* 默认显示隐藏 */
  display: none;
  align-items: center;
  width: 82px;
}

.rank-section .rank .list .item .operation .btn {
  width: 17px;
  height: 17px;
  margin-right: 10px;
  background: url(../images/main_sprite.png) no-repeat;
}

/* 播放 */
.rank-section .rank .list .item .operation .btn.play {
  background-position: -267px -268px;
}

.rank-section .rank .list .item .operation .btn.play:hover {
  background-position: -267px -288px;
}

/* 添加 */
.rank-section .rank .list .item .operation .btn.add {
  background: url(../images/icon_sprite_02.png) no-repeat;
  background-position: 0 -700px;
  margin: 2px 6px 0 0;
}

.rank-section .rank .list .item .operation .btn.add:hover {
  background-position: -22px -700px;
}

/* 收藏 */
.rank-section .rank .list .item .operation .btn.favr {
  background-position: -297px -268px;
}

.rank-section .rank .list .item .operation .btn.favr:hover {

  background-position: -297px -288px;
}

/* 更多 */
.rank-section .rank .list .more {
  display: block;
  height: 32px;
  line-height: 32px;
  margin-right: 32px;
  text-align: right;
}


.rank-section .rank .list .more a:hover {

  /* 下划线 */
  text-decoration: underline;
}


/* class="z-hvr" */

/* -------------------- /榜单 -------------------- */