* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, section {
  overflow: hidden;
  height: 100%;
}

body {
  font: 14px/1.5 Arial;
}

a {
  text-decoration: none;
  color: #444;
}

ul,
li {
  list-style: none;
}

.layout {
  width: 600px;
  margin: 0 auto;
}

@media (min-width: 500px) {
  .layout {
    width: 450px;
  }
}

@media (min-width: 600px) {
  .layout {
    width: 500px;
  }
}

@media (min-width: 700px) {
  .layout {
    width: 600px;
  }
}

@media (min-width: 900px) {
  .layout {
    width: 800px;
  }
}

@media (min-width: 1000px) {
  .layout {
    width: 900px;
  }
}

@media (min-width: 1200px) {
  .layout {
    width: 1100px;
  }
}

#bg {
  position: absolute;
  top: -10px;
  left: -10px;
  bottom: -10px;
  right: -10px;
  z-index: -1;
  background: url("http://cloud.hunger-valley.com/music/public_tuijian_spring.jpg-middle") center center no-repeat;
  background-size: cover;
  filter: blur(4px);
}

#bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

main {
  padding-top: 12vh;
  height: calc(100% - 24vh);
}

main.clearfix::after {
  content: '';
  display: block;
  clear: both;
}

main .aside {
  float: left;
}

main .aside figure {
  width: 46vh;
  height: 46vh;
  background: url("http://cloud.hunger-valley.com/music/public_tuijian_spring.jpg-middle");
  background-size: cover;
}

main .aside .actions {
  display: flex;
  margin-top: 4vh;
}

main .aside .actions .iconfont {
  flex: 1;
  text-align: center;
  font-size: 5vh;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.4s;
  cursor: pointer;
}

main .aside .actions .iconfont:hover {
  color: #ffffff;
}

main .aside .actions .icon-heart.active {
  color: red;
}

main .detail {
  height: 64vh;
  margin-left: 56vh;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

main .detail .tag {
  font-size: 2vh;
  background-color: #3a71e4;
  padding: 0.4em 0.8em;
}

main .detail h1 {
  font-size: 6vh;
  margin-top: 2vh;
  margin-bottom: 5vh;
}

main .detail .icons {
  align-self: stretch;
  display: flex;
  font-size: 3vh;
  margin-bottom: 4vh;
}

main .detail .icons > li {
  flex: 1;
}

main .detail .icons .iconfont {
  font-size: 3vh;
  margin-right: 1vh;
}

main .detail .area-bar {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-top: 3vh;
  padding-bottom: 3vh;
}

main .detail .area-bar:hover {
  cursor: pointer;
}

main .detail .area-bar .bar {
  width: 90%;
  height: 0.8vh;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 0.4vh;
  margin-right: 2vh;
}

main .detail .area-bar .current-time {
  font-size: 2vh;
  width: 3vh;
}

main .detail .area-bar .bar > .bar-progress {
  height: 0.8vh;
  width: 0;
  border-radius: 0.4vh;
  background: #ffffff;
  transition: width 0.5s;
}

main .detail .author {
  font-size: 3vh;
}

main .detail .lyric {
  align-self: stretch;
  height: 8vh;
  margin-top: 2vh;
  font-size: 2vh;
  color: rgba(255, 255, 255, 0.7);
}

footer {
  height: 24vh;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 -0.25vh 0.25vh 0.25vh rgba(255, 255, 255, 0.2);
}

footer .layout {
  position: relative;
}

footer .layout .cover-wrap {
  overflow: hidden;
  height: 24vh;
  position: relative;
}

footer .cover-wrap ul {
  display: flex;
  position: absolute;
  left: 0;
}

footer .cover-wrap li {
  margin: 2vh 3vh 0 1vh;
  width: 20vh;
}

footer .cover-wrap li.active {
  box-shadow: 0 0 0.5vh 0.5vh rgba(255, 255, 255, 0.8);
}

footer .cover-wrap li:hover {
  box-shadow: 0 0 0.5vh 0.5vh rgba(255, 255, 255, 0.8);
}

footer .cover-wrap li .cover {
  height: 16vh;
  background-size: cover;
  background-position: center center;
  margin-bottom: 1vh;
  cursor: pointer;
}

footer .cover-wrap li h3 {
  text-align: center;
  font-size: 2vh;
  color: rgba(255, 255, 255, 0.6);
}

footer .iconfont {
  position: absolute;
  font-size: 5vh;
  color: rgba(255, 255, 255, 0.4);
  top: 8vh;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}

footer:hover .iconfont {
  opacity: 1;
}

footer .icon-left {
  left: -8vh;
}

footer .icon-right {
  right: -8vh;
}

footer .icon-left:hover,
footer .icon-right:hover {
  color: #fff;
}

@media (min-width: 300px) and (max-width: 500px) {
  .layout {
    width: 100vw;
  }

  main {
    padding: 0;
    height: 85vh;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    position: relative;
  }

  main .aside {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  main .aside figure {
    width: 30vh;
    height: 30vh;
    position: absolute;
    top: 25vh;
  }

  main .aside .actions {
    margin-top: 0;
    width: 100%;
    position: absolute;
    top: 77vh;
  }

  main .aside .actions .iconfont {
    font-size: 4vh;
  }

  main .detail {
    height: 25vh;
    margin-left: 0;
    color: #fff;
    display: initial;
    width: 100%;
  }

  main .detail .tag {
    display: inline-block;
    font-size: 2vh;
    background-color: #3a71e4;
    padding: 0.4em 0.8em;
    margin: 10px 0 0 10px;
  }

  main .detail h1 {
    font-size: 20px;
    margin: 0;
    padding: 0;
    margin: 10px 0 0 10px;
  }

  main .detail .icons {
    display: none;
  }

  main .detail .area-bar {
    position: absolute;
    top: 70vh;
    width: 100%;
    justify-content: space-evenly;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  main .detail .area-bar:hover {
    cursor: pointer;
  }

  main .detail .area-bar .bar {
    width: 80%;
    height: 0.8vh;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 0.4vh;
    margin-right: 0;
  }

  main .detail .area-bar .current-time {
    font-size: 2vh;
    width: initial;
  }

  main .detail .area-bar .bar > .bar-progress {
    height: 0.8vh;
    width: 0;
    border-radius: 0.4vh;
    background: #ffffff;
    transition: width 0.5s;
  }

  main .detail .author {
    font-size: 13px;
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.7);
  }

  main .detail .lyric {
    position: absolute;
    top: 57vh;
    margin-top: 1vh;
    padding: 0;
    width: 100%;
    font-size: 2vh;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }

  footer {
    height: 14vh;
    margin-top: 1vh;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 -0.25vh 0.25vh 0.25vh rgba(255, 255, 255, 0.2);
  }

  footer .layout {
    position: relative;
  }

  footer .layout .cover-wrap {
    overflow-x: scroll;
    height: 14vh;
    position: relative;
  }

  footer .cover-wrap ul {
    display: flex;
    position: absolute;
    left: 0;
  }

  footer .cover-wrap li {
    margin: 5px 5px 0 5px;
    width: 10vh;
  }

  footer .cover-wrap li .cover {
    height: 9vh;
  }

  footer .cover-wrap li h3 {
    font-size: 1vh;
  }

  footer .iconfont {
    display: none;
  }
}


/*# sourceMappingURL=main.bd9da268.css.map */