html,
body {
  min-width: 100%;
  overflow-x: hidden;
}
.header {
  z-index: 999999;
  background: url(../images/bg-header.png) center 0 no-repeat;
  background-size: cover;
  -moz-box-shadow: 0 0 10px 0px #999;
  -webkit-box-shadow: 0 0 10px 0px #999;
  box-shadow: 0 0 10px 0px #999;
  /* For IE 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#999999')";
  /* For IE 5.5 - 7 */
  filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#999999');
}

.header .page-container {
  width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.header-right {
  width: 45%;
  justify-content: space-between;
  align-items: center;
}

.btns .btn {
  border-radius: 20px;
  color: #fff;
  border: 0;
  padding: 10px 30px;
  margin-left: 15px;
}

.btns .btn:nth-child(2) {
  background: #c800ff;
}

.btn-default {
  background: #8b9495;
}

.logo {
  padding: 20px 0;
}

.page-container {
  width: 1200px;
  margin: 0 auto;
}

.bg-nav {
  background: linear-gradient(to right, #2c074a, #30083b);
}

.nav {
  font-size: 16px;
  line-height: 50px;
  justify-content: space-between;
}

.nav li {
  width: 9.9%;
  position: relative;
}

.nav li a {
  color: #fff;
  padding: 0;
  width: 100%;
  text-align: center;
  display: block;
}

.nav li a:hover {
  background: #fff;
  color: #333;
}

.nav ul {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50px;
  z-index: 999999;
  background: #fff;
  overflow: hidden;
  zoom: 1;
  border-top: 3px #30083b solid;
  display: none;
}

.nav .active a,
.nav .on a {
  background: #fff;
  color: #333;
}

.nav .on li a {
  background: none;
  color: #fff;
}

.nav .on ul li a {
  background: none;
  color: #333;
}
.nav .on ul li a:hover {
  color: #fff;
  background: #30083b;
}
.nav li li {
  width: auto;
  float: none;
  border-bottom: 1px #30083b solid;
}

.nav li li a {
  font-size: 14px;
  line-height: 44px;
  color: #333;
  text-align: left;
  display: block;
  text-align: center;
}

.nav li .on a {
  background: #1c63b8;
}

/*搜索*/
.search {
  border: 1px #fff solid;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  width: 260px;
}

.search form {
  margin: 0;
  padding: 0;
}

.search input {
  vertical-align: top;
  background: none;
  border: 0;
  border-radius: 18px;
  color: #fff;
}

.search .btn {
  background: #fff;
  border-radius: 18px;
  padding: 6px 24px;
  font-size: 16px;
  color: #333;
  vertical-align: top;
  border: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.f1 {
  padding: 95px 0 65px;
  background: linear-gradient(45deg, #111418, #510d68);
  overflow: hidden;
  zoom: 1;
}

/*banner*/
.banner {
  width: 1200px;
  margin: 0 auto;
}

.banner .swiper-container {
  position: relative;
}

.banner .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transition: 300ms;
  transform: scale(1);
  position: relative;
  z-index: 0;
  border-radius: 24px;
  overflow: hidden;
  opacity: 0;
}

.banner .swiper-slide img {
  border-radius: 24px;
  width: 100%;
}

.banner .swiper-slide-prev,
.banner .swiper-slide-next {
  opacity: 1;
  z-index: 2;
}

.banner .swiper-slide-active {
  opacity: 1;
  overflow: visible;
  transform: scale(1.5);
  z-index: 3;
}

.banner .swiper-button-prev {
  width: 70px;
  height: 70px;
  left: -150px;
}

.banner .swiper-button-next {
  width: 70px;
  height: 70px;
  right: -150px;
}

@media screen and (max-width: 1440px) {
  .banner .swiper-button-prev {
    left: -50px;
  }

  .banner .swiper-button-next {
    right: -50px;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 26px;
  position: relative;
  z-index: 2;
  color: #fff;
}

.banner .swiper-button-prev::before,
.banner .swiper-button-next::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  position: absolute;
  z-index: 0;
  border-radius: 50%;
}

/* 推荐 */
.recommend {
  margin-top: 110px;
}

.recommend .title {
  font-size: 18px;
  line-height: 60px;
  color: #fff;
  font-weight: bold;
  position: relative;
}

.recommend .title::after {
  content: "";
  display: inline-block;
  border-left: 12px #fff solid;
  border-top: 8px transparent solid;
  border-bottom: 8px transparent solid;
  vertical-align: middle;
  margin-left: 10px;
}

.recommend .title a {
  float: right;
  font-size: 14px;
  line-height: 60px;
  color: #999;
  font-weight: normal;
}
.swiper-list {
  position: relative;
  overflow: hidden;
  zoom: 1;
}
.recommend .list {
  margin-top: 24px;
}

/* .recommend .list ul {
  overflow: hidden;
  zoom: 1;
} */

/* .f1 .recommend .list li {
  width: 12.5%;
  float: left;
} */

.f1 .recommend .list li .pic {
  width: 135px;
  margin: 0 auto;
  position: relative;
}

.f1 .recommend .list li .pic img {
  width: 100%;
}

.f1 .recommend .list li .pic .btns {
  position: absolute;
  left: 3px;
  bottom: 5px;
  right: 3px;
  display: flex;
  justify-content: space-between;
}

.f1 .recommend .list li .pic .btns button {
  font-size: 12px;
  line-height: 24px;
  color: #fff;
  padding: 0 10px;
  border-radius: 12px;
  border: 0;
  background: #7f7f7f;
}

.f1 .recommend .list li .pic .btns button:first-child {
  background: #c800ff;
}

.f1 .recommend .list li .pic .btns button:first-child::before {
  content: "";
  display: inline-block;
  border-left: 8px #fff solid;
  border-top: 4px transparent solid;
  border-bottom: 4px transparent solid;
  vertical-align: baseline;
  margin-right: 3px;
}

.f1 .recommend .list li .pic .btns button:last-child::before {
  content: "♪";
  font-size: 14px;
  font-weight: bold;
  margin-right: 3px;
}

.f1 .recommend .list li .font {
  width: 135px;
  margin: 14px auto;
}

.f1 .recommend .list li .font a {
  font-size: 14px;
  line-height: 1.5;
  color: #e5e5e5;
}

.recommend .line {
  height: 2px;
  background: #eee;
  margin-top: 20px;
}

.recommend .line div {
  width: 300px;
  height: 2px;
  background: #c800ff;
  margin-left: 72px;
}

.f2 {
  background: url(../images/bg-f2.gif) center 0 no-repeat;
  background-size: cover;
  padding: 65px 0 50px;
}

.f4 {
  background: #111418 url(../images/bg-footer.gif) center bottom no-repeat;
  background-size: 100% auto;
  padding: 36px 0 150px;
}

.f2 .space-between,
.f4 .space-between {
  justify-content: space-between;
}

.f2 .recommend,
.f4 .recommend {
  margin-top: 0;
}

.f2 .recommend .title span,
.f4 .recommend .title span {
  margin-left: 24px;
  position: relative;
  z-index: 1;
}

.f2 .recommend .title::before,
.f4 .recommend .col .title::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background: #c800ff;
  opacity: 0.2;
}

.f2 .recommend .col3 .title,
.f4 .recommend .col3 .title {
  position: relative;
}

.f2 .recommend .col3 .title ul,
.f4 .recommend .col3 .title ul {
  position: absolute;
  right: 20px;
  top: 0;
}

.f2 .recommend .col3 .title::after,
.f4 .recommend .col3 .title::after {
  display: none;
}

.f2 .recommend .title ul,
.f4 .recommend .title ul {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.f2 .recommend .title li,
.f4 .recommend .title li {
  font-size: 12px;
  line-height: 60px;
  color: #e5e5e5;
  float: left;
  padding: 0 5px;
  cursor: pointer;
  position: relative;
}

.f2 .recommend .title li::after,
.f4 .recommend .title li::after {
  content: "";
  position: absolute;
  right: -1px;
  width: 1px;
  height: 12px;
  background: #e5e5e5;
  top: 50%;
  margin-top: -6px;
}

.f2 .recommend .title li:last-child::after,
.f4 .recommend .title li:last-child::after {
  display: none;
}

.f2 .col1,
.f2 .col2,
.f4 .col1,
.f4 .col2 {
  width: 425px;
}

.f2 .col3,
.f4 .col3 {
  width: 295px;
}

.recommend-list {
}

.recommend-list .item {
  display: flex;
  padding: 8px;
  position: relative;
  z-index: 1;
}

.recommend-list li {
  position: relative;
  margin-bottom: 3px;
}

.recommend-list li::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.recommend-list li:nth-child(even)::before {
  background: #000;
  opacity: 0.3;
}

.recommend-list ul .active::before {
  background: #30083b;
  opacity: 0.3;
}

.recommend-list .item .pic {
  width: 60px;
  height: 60px;
  overflow: hidden;
  zoom: 1;
}

.recommend-list .item .content {
  margin-left: 20px;
  padding: 5px 0 0;
}

.recommend-list .item-title a {
  font-size: 16px;
  line-height: 2;
  color: #999;
}

.recommend-list .item-title a:hover {
  color: #fff;
}

.recommend-list .item .font {
  font-size: 12px;
  line-height: 2;
  color: #999;
}

.recommend-list .active .font,
.recommend-list .active a {
  color: #fff;
}

.recommend-list .item .font span {
  margin-right: 32px;
}

.recommend-list .item .font span::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  vertical-align: middle;
  margin-right: 5px;
}

.recommend-list .item .font span:nth-child(1)::before {
  background: url(../images/icon1.png) center center no-repeat;
}

.recommend-list .item .font span:nth-child(2)::before {
  background: url(../images/icon2.png) center center no-repeat;
}

.recommend-list .item .font span:nth-child(3)::before {
  background: url(../images/icon3.png) center center no-repeat;
}

.recommend-list .more,
.f2 .col3 .more,
.f4 .col3 .more {
  text-align: center;
  position: relative;
}

.recommend-list .more::before,
.f2 .col3 .more::before,
.f4 .col3 .more::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background: #000;
  opacity: 0.5;
}

.recommend-list .more a,
.f2 .col3 .more a,
.f4 .col3 .more a {
  font-size: 16px;
  line-height: 32px;
  color: #999;
  position: relative;
  z-index: 1;
}

.recommend-list .more a:hover,
.f2 .col3 .more a:hover,
.f4 .col3 .more a:hover {
  color: #fff;
}

.slot-list {
  position: relative;
  margin-bottom: 8px;
}

.slot-list::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border: 1px #c800ff solid;
  opacity: 0.2;
}

.slot-list::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background: #c800ff;
  border: 1px #c800ff solid;
  opacity: 0.05;
}

.slot-list ul {
  margin: 0 36px;
  position: relative;
  z-index: 1;
}

.slot-list li {
  padding: 12px 0;
  border-bottom: 1px #4f4e51 solid;
  display: flex;
  align-items: center;
}

.slot-list li:last-child {
  border: 0;
}

.slot-list li a {
  font-size: 16px;
  line-height: 1.5;
  color: #999;
  margin-left: 20px;
  display: block;
  width: calc(100% - 55px);
}

.slot-list li span {
  width: 35px;
  height: 35px;
  display: block;
  font-size: 16px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  font-weight: bold;
}

.slot-list li:nth-child(1) span {
  background: url(../images/icon4.png) center center no-repeat;
  background-size: 100% auto;
  text-indent: -60px;
  overflow: hidden;
  zoom: 1;
}

.slot-list li:nth-child(2) span {
  background: url(../images/icon5.png) center center no-repeat;
  background-size: 100% auto;
  text-indent: -60px;
  overflow: hidden;
  zoom: 1;
}

.slot-list li:nth-child(3) span {
  background: url(../images/icon6.png) center center no-repeat;
  background-size: 100% auto;
  text-indent: -60px;
  overflow: hidden;
  zoom: 1;
}
.slot-list .active a {
  color: #fff;
}
.list-user {
  margin-top: 30px;
  margin-bottom: 110px;
}

/* .list-user ul {
  overflow: hidden;
  zoom: 1;
} */
.swiper-list2 {
  position: relative;
  overflow: hidden;
  zoom: 1;
}
.list-user li {
  width: 11.1%;
  float: left;
  text-align: center;
}

.list-user li .pic {
  width: 117px;
  height: 117px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  zoom: 1;
}

.list-user li .pic img {
  width: 100%;
}

.list-user li .font {
  margin-top: 16px;
}

.list-user li .font a {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

.list-user li .font a::after {
  content: "";
  display: block;
  width: 14px;
  height: 9px;
  background: url(../images/icon7.png) center center no-repeat;
  margin: 10px auto;
}

.list-user .active .font a::after {
  background: url(../images/icon8.png) center center no-repeat;
}

.footer {
  background: #0a0c0e;
  color: #999;
}

.footer .content {
  justify-content: space-between;
  padding-top: 24px;
}

.footer .menu {
  margin-left: 110px;
}

.footer .menu .col {
  min-width: 110px;
}

.footer .menu .title {
  font-size: 16px;
  line-height: 40px;
  color: #e5e5e5;
  font-weight: bold;
}

.footer .menu li,
.footer .menu li a {
  font-size: 12px;
  line-height: 32px;
  color: #999;
}

.footer .wechat {
  margin-top: 12px;
  font-size: 12px;
  line-height: 40px;
  color: #999;
  text-align: center;
}

.footer .wechat .col {
  margin-left: 18px;
}

.footer .links,
.footer .links a {
  font-size: 12px;
  line-height: 2;
  color: #999;
}

.footer .copyright {
  font-size: 12px;
  line-height: 40px;
  color: #999;
  border-top: 1px #313131 solid;
  margin-top: 24px;
}

.footer .copyright span {
  float: right;
}

/* 登录 */
.login {
  background: url(../images/bg-form.gif) center center no-repeat;
  background-size: cover;
  padding: 120px 0 110px;
}

.form-container {
  width: 420px;
  margin: 0 auto;
  position: relative;
  border-radius: 35px;
  overflow: hidden;
  zoom: 1;
}

.form-container::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.1;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  border-radius: 35px;
}

.form-container .layui-form {
  width: 315px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-bottom: 45px;
}

.avatar {
  width: 95px;
  height: 95px;
  margin: 40px auto 30px;
  border-radius: 50%;
  overflow: hidden;
  zoom: 1;
}

.icon-1::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../images/icon-1.png) center center no-repeat;
}

.icon-2::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../images/icon-2.png) center center no-repeat;
}

.icon-3::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../images/icon-3.png) center center no-repeat;
}

.icon-4::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../images/icon-4.png) center center no-repeat;
}

.icon-5::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../images/icon-5.png) center center no-repeat;
}

.login .input-group {
  border-bottom: 1px #817d86 solid;
  margin-top: 15px;
  position: relative;
}

.login .input-group-addon {
  background: none;
  border: 0;
}

.login .form-control {
  background: none;
  border: 0;
  box-shadow: none;
}

.login .btn-code {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  background: #8e1d22;
  color: #fff;
  font-size: 12px;
}

.login .font-checkbox {
  font-size: 14px;
  line-height: 34px;
  color: #999;
  border: 0;
  width: 100%;
}
.login .font-checkbox a {
  color: #999;
}
.login .font-checkbox .f_r {
  float: right;
  line-height: 34px;
  color: #817d86;
}
.login input[type="checkbox"] {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin: 9px 12px;
  cursor: pointer;
}

.login .btn-default {
  font-size: 16px;
  line-height: 50px;
  color: #fff;
  border-radius: 25px;
  padding: 0;
  border: 0;
  background: none;
  position: relative;
  margin-top: 15px;
}

.login .btn-default::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #111418;
  opacity: 0.2;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 25px;
}
.login .btn-link {
  font-size: 16px;
  line-height: 50px;
  color: #817f88;
  border-radius: 25px;
  padding: 0;
  border: 0;
  background: none;
  position: relative;
  margin-top: 12px;
}
.login .btn-link a {
  color: #817f88;
  position: relative;
  z-index: 2;
  display: block;
}
.login .btn-link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #111418;
  opacity: 0.2;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 25px;
}
.login .btn-active::before {
  opacity: 0.4;
}
.login-others {
  text-align: center;
}
.login-others .font {
  font-size: 14px;
  line-height: 2;
  color: #999;
  position: relative;
  margin-top: 24px;
}
.login-others .font span {
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.login-others .font::before {
  content: "";
  display: block;
  width: 85px;
  height: 1px;
  background: #eee;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 0;
}
.login-others .font::after {
  content: "";
  display: block;
  width: 85px;
  height: 1px;
  background: #eee;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 0;
}
.login-others .icons {
  text-align: center;
  margin-top: 20px;
}
.login-others .icons .pic {
  display: inline-block;
  margin: 0 12px;
}
.login-others .icons img {
  border: 1px #fff solid;
  border-radius: 50%;
}
.login .tabs {
  display: flex;
  border-radius: 15px;
  position: relative;
  padding: 0;
}
.login .tabs::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.2;
  border-radius: 15px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.login .tabs .tab {
  width: 50%;
  font-size: 14px;
  line-height: 30px;
  color: #817d86;
  text-align: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.login .tabs .active {
  color: #fff;
}
.login .tabs .tab span {
  position: relative;
  z-index: 1;
}
.login .tabs .active::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
  border-radius: 15px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.login input {
  color: #fff;
}
.main {
  background: #111418 url(../images/bg-footer.gif) center bottom no-repeat;
  background-size: 100% auto;
  padding: 36px 0 240px;
}
.crumbs {
  font-size: 14px;
  line-height: 42px;
  color: #fff;
  border-bottom: 1px #666 solid;
  position: relative;
}
.crumbs a,
.crumbs span {
  color: #666;
}
.crumbs img {
  vertical-align: sub;
  margin-right: 3px;
}
.main .title {
  font-size: 18px;
  line-height: 60px;
  color: #fff;
  font-weight: bold;
  position: relative;
}

.main .title::after {
  content: "";
  display: inline-block;
  border-left: 12px #fff solid;
  border-top: 8px transparent solid;
  border-bottom: 8px transparent solid;
  vertical-align: middle;
  margin-left: 10px;
}
.piclist ul {
  overflow: hidden;
  zoom: 1;
}
.piclist .swiper-wrapper {
  overflow: visible;
}

.piclist li {
  width: 16.666%;
  float: left;
  margin-bottom: 24px;
}

.piclist li .pic {
  width: 86%;
  margin: 0 auto;
  position: relative;
}

.piclist li .pic img {
  width: 100%;
}

.piclist li .pic .btns {
  position: absolute;
  left: 3px;
  bottom: 5px;
  right: 3px;
  display: flex;
  justify-content: space-between;
}

.piclist li .pic .btns button {
  font-size: 12px;
  line-height: 24px;
  color: #fff;
  padding: 0 10px;
  border-radius: 12px;
  border: 0;
  background: #7f7f7f;
}

.piclist li .pic .btns button:first-child {
  background: #c800ff;
}

.piclist li .pic .btns button:first-child::before {
  content: "";
  display: inline-block;
  border-left: 8px #fff solid;
  border-top: 4px transparent solid;
  border-bottom: 4px transparent solid;
  vertical-align: baseline;
  margin-right: 3px;
}

.piclist li .pic .btns button:last-child::before {
  content: "♪";
  font-size: 14px;
  font-weight: bold;
  margin-right: 3px;
}
.hot-list .item-container {
  width: 86%;
  margin: 0 auto;
  background: #000;
}
.hot-list .item-container .pic {
  width: auto;
}
.hot-list .item-container .font {
  margin: 0 auto;
  padding: 14px 0;
}
.hot-list .active .item-container {
  box-shadow: 0 0 3px #c800ff;
}
.piclist li .font {
  width: 86%;
  margin: 14px auto;
}

.piclist li .font a {
  font-size: 14px;
  line-height: 1.5;
  color: #e5e5e5;
}
.pages {
  text-align: center;
  font-size: 15px;
  line-height: 26px;
  color: #999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pages a {
  display: inline-block;
  padding: 0 10px;
  margin: 0 5px;
  color: #999;
}
.pages input,
.pages button {
  font-size: 14px;
  line-height: 26px;
  color: #666;
  height: 26px;
  padding: 0 5px;
}
.pages input[type="text"] {
  width: 60px;
  background: none;
  border: 1px #999 solid;
  margin: 0 5px;
  text-align: center;
}
.pages .active,
.pages .btn-hover {
  background: #c800ff;
  color: #fff;
}
.crumbs1 {
  justify-content: space-between;
}
.crumbs1 .tabs {
  font-size: 14px;
  line-height: 36px;
  color: #999;
  padding: 12px 0;
}
.crumbs1 .tabs a {
  color: #999;
  display: inline-block;
  border-radius: 18px;
  padding: 0 18px;
}
.crumbs1 .tabs .active {
  color: #fff;
  background: #c800ff;
}
.page-content {
  display: flex;
  justify-content: space-between;
  margin-top: 72px;
}
.page-content .left {
  width: 880px;
}
.page-content .right {
  width: 295px;
}
.album-content {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  border: 1px #1b1b1b solid;
}
.bg1 {
  background: url(../images/bg1.png) center center no-repeat;
  background-size: cover;
}
.album-content .pic {
  width: 233px;
  height: 233px;
  border: 1px #272727 solid;
  border-radius: 3px;
  overflow: hidden;
  zoom: 1;
}
.album-content .pic img {
  width: 100%;
}
.album-content .col {
  width: 575px;
}
.album-content .pic,
.album-content .col {
  position: relative;
  z-index: 1;
}
.album-title {
  font-size: 24px;
  line-height: 1.5;
  color: #fff;
  font-weight: bold;
  margin-top: 5px;
}
.album-title img {
  vertical-align: text-top;
  margin-left: 10px;
}
.album-content .col .font {
  margin: 5px auto;
  font-size: 14px;
  line-height: 30px;
  color: #797979;
  display: flex;
  flex-wrap: wrap;
}
.album-content .col .font span {
  display: block;
  flex-basis: 50%;
}
.album-content .describe {
  font-size: 14px;
  line-height: 24px;
  color: #797979;
}
.album-content .share {
  font-size: 14px;
  line-height: 40px;
  color: #797979;
}
.album-content .share a {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 10px;
  font-size: 12px;
  line-height: 1.5;
  text-indent: -60px;
  overflow: hidden;
  zoom: 1;
  vertical-align: middle;
}
.album-content .share a:nth-child(1) {
  background: url(../images/icon-share.png) 0 center no-repeat;
}
.album-content .share a:nth-child(2) {
  background: url(../images/icon-share.png) -28px center no-repeat;
}
.album-content .share a:nth-child(3) {
  background: url(../images/icon-share.png) -55px center no-repeat;
}
.album-content .share a:nth-child(4) {
  background: url(../images/icon-share.png) -78px center no-repeat;
}
.album-content .share a:nth-child(5) {
  background: url(../images/icon-share.png) -104px center no-repeat;
}
.album-content .share a:nth-child(6) {
  background: url(../images/icon-share.png) -131px center no-repeat;
}
.album-btns {
  margin-top: 10px;
}
.album-btns .btn {
  font-size: 14px;
  line-height: 40px;
  color: #333;
  padding: 0 32px;
  border-radius: 20px;
  background: #fff;
  margin-right: 12px;
}
.btns-2 .btn {
  padding: 0 24px;
  margin-right: 8px;
}
.btns-2 .like-on,.btns-2 .collected,.album-btns .followed {
  background: #e5004f;
  color: #fff;
}
.album-btns .btn:nth-child(1) {
  background: #e5004f;
  color: #fff;
  width: auto;
  height: auto;
  margin: 0 8px 0 0;
}
.album-btns .btn:nth-child(1)::before {
  content: "";
  display: inline-block;
  border-left: 12px #fff solid;
  border-top: 8px transparent solid;
  border-bottom: 8px transparent solid;
  vertical-align: sub;
  margin-right: 5px;
}
.video-content .album-btns .btn:nth-child(1) {
  background: #fff;
  color: #333;
}
.video-content .album-btns .collected:nth-child(1) {
  background: #e5004f;
  color: #fff;
}
.video-content .album-btns .btn:nth-child(1)::before {
  border: 0;
}
.jp-state-playing .album-btns .btn:nth-child(1)::before {
  content: "";
  display: inline-block;
  border: 0;
  width: 12px;
  height: 16px;
  background: url(../images/btn-pause.png) center center no-repeat;
  vertical-align: sub;
  margin-right: 5px;
}
.jp-state-playing .album-btns .btn:nth-child(1):hover {
  background: #e5004f;
}
.album-btns .btn:nth-child(2)::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/icon10.png) center center no-repeat;
  vertical-align: sub;
  margin-right: 5px;
}
.crumbs-content .album-btns .follow::before {
  content: "+";
  display: inline-block;
  font-size: 24px;
  line-height: 24px;
  width: 24px;
  height: 24px;
  color: #333;
  margin-right: 5px;
  vertical-align: text-bottom;
  background: none;
}
.crumbs-content .album-btns .followed::before {
  display: none;
  content: "";
  color: #fff;
}
.mg-18-0 {
  margin: 18px auto;
}
.crumbs-content .table {
  border: 1px #1b1b1b solid;
}
.crumbs-content .table .th {
  position: relative;
}
.crumbs-content .table .th::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background: #000;
  opacity: 0.8;
}
.crumbs-content .table .th .td {
  position: relative;
  z-index: 1;
}
.crumbs-content .table .th,
.crumbs-content .table .tr {
  display: flex;
  font-size: 14px;
  line-height: 40px;
  color: #999;
  text-align: center;
  justify-content: space-between;
  position: relative;
}
.crumbs-content .table .tr {
  padding: 10px 0;
  position: relative;
  margin-bottom: 3px;
}
.crumbs-content .table .tr::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background: #000;
  opacity: 0.5;
}
.crumbs-content .table .active {
  color: #fff;
}
.crumbs-content .table .tr:nth-child(even)::after {
  opacity: 0.6;
}
.crumbs-content .table .active::after {
  background: #30083b;
}
.crumbs-content .table .td {
  position: relative;
  z-index: 1;
}
.crumbs-content .table .td:nth-child(1) {
  width: 15%;
}
.crumbs-content .table .td:nth-child(2) {
  width: 50%;
}
.crumbs-content .table .td:nth-child(3) {
  width: 12%;
}
.crumbs-content .table .td:nth-child(4) {
  width: 20%;
}

.crumbs-content .original .td:nth-child(1) {
  width: 12%;
}
.crumbs-content .original .td:nth-child(2) {
  width: 9%;
}
.crumbs-content .original .td:nth-child(3) {
  width: 45%;
}
.crumbs-content .original .td:nth-child(4) {
  width: 10%;
}
.crumbs-content .original .td:nth-child(5) {
  width: 8%;
}
.crumbs-content .original .td:nth-child(6) {
  width: 16%;
}
.crumbs-content .angel .td:nth-child(1) {
  width: 41%;
}
.crumbs-content .angel .td:nth-child(2) {
  width: 24%;
}
.crumbs-content .angel .td:nth-child(3) {
  width: 18%;
}
.crumbs-content .angel .td:nth-child(4) {
  width: 17%;
}

.crumbs-content .table .td input {
  vertical-align: text-top;
  margin-right: 8px;
  width: 12px;
  height: 12px;
  -webkit-appearance: none;
  border: 1px #fff solid;
}
.crumbs-content .table .td input:checked {
  background: #fff;
}
.crumbs-content .table .tr .col {
  margin-left: 20px;
  text-align: left;
}
.crumbs-content .table .tr .album-id {
  font-size: 14px;
  line-height: 2;
  color: #999;
  margin: 16px auto;
}
.crumbs-content .angel .tr .album-id {
  margin: 16px 16px 16px 50px;
}
.crumbs-content .table .tr .col .td-title {
  font-size: 14px;
  line-height: 26px;
  color: #999;
  margin-top: 8px;
}
.crumbs-content .table .tr .col .td-title a {
  color: #999;
}
.crumbs-content .table .tr .col .font {
  font-size: 12px;
  line-height: 26px;
  color: #999;
}
.crumbs-content .table .tr .col .font span {
  margin-right: 32px;
}

.crumbs-content .table .tr .col .font span::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  vertical-align: middle;
  margin-right: 5px;
}

.crumbs-content .table .tr .col .font span:nth-child(1)::before {
  background: url(../images/icon1.png) center center no-repeat;
}

.crumbs-content .table .tr .col .font span:nth-child(2)::before {
  background: url(../images/icon11.png) center center no-repeat;
}

.crumbs-content .table .tr .col .font span:nth-child(3)::before {
  background: url(../images/icon12.png) center center no-repeat;
}
.crumbs-content .table .tr .td .date {
  font-size: 14px;
  line-height: 60px;
}
.crumbs-content .table .tr .td .btn {
  padding: 0;
  font-size: 12px;
  line-height: 1.5px;
  text-indent: -60px;
  overflow: hidden;
  zoom: 1;
  width: 18px;
  height: 18px;
  display: inline-block;
}
.crumbs-content .table .tr .td-btns {
  margin: 10px auto;
  text-align: center;
}
.crumbs-content .table .tr .td-btns .btn {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin: 0 8px;
}

.crumbs-content .table .tr .td-btns .btn:nth-child(1) {
  background: url(../images/icons-btn.png) 0 center no-repeat;
}

.crumbs-content .table .tr .td-btns .btn:nth-child(2) {
  background: url(../images/icons-btn.png) -32px center no-repeat;
}

.crumbs-content .table .tr .td-btns .btn:nth-child(3) {
  background: url(../images/icons-btn.png) -67px center no-repeat;
}
.crumbs-content .table .tr .td-btns .btn:nth-child(4) {
  background: url(../images/icons-btn.png) -101px center no-repeat;
}

.crumbs-content .table .active .td-btns .btn:nth-child(1) {
  background: url(../images/icons-btn-active.png) 0 center no-repeat;
}

.crumbs-content .table .active .td-btns .btn:nth-child(2) {
  background: url(../images/icons-btn-active.png) -32px center no-repeat;
}

.crumbs-content .table .active .td-btns .btn:nth-child(3) {
  background: url(../images/icons-btn-active.png) -67px center no-repeat;
}
.crumbs-content .table .active .td-btns .btn:nth-child(4) {
  background: url(../images/icons-btn-active.png) -101px center no-repeat;
}
/* 播放列表 */

.crumbs-content .table-music .tr .td-btns .btn:nth-child(2) {
  background: url(../images/icons-btn.png) -67px center no-repeat;
}
.crumbs-content .table-music .tr .td-btns .btn:nth-child(3) {
  background: url(../images/icons-btn.png) -101px center no-repeat;
}
.crumbs-content .table-music .tr .td-btns .btn:nth-child(4) {
  background: url(../images/icon-close.png) center center no-repeat;
}
.crumbs-content .table-music .active .td-btns .btn:nth-child(2) {
  background: url(../images/icons-btn-active.png) -67px center no-repeat;
}
.crumbs-content .table-music .active .td-btns .btn:nth-child(3) {
  background: url(../images/icons-btn-active.png) -101px center no-repeat;
}
.crumbs-content .table-music .active .td-btns .btn:nth-child(4) {
  background: url(../images/icon-close-hover.png) center center no-repeat;
}
.crumbs-content .table .active .album-id,
.crumbs-content .table .active .col .td-title,
.crumbs-content .table .active .col .td-title a,
.crumbs-content .table .active .date,
.crumbs-content .table .active .col .font {
  color: #fff;
}
.crumbs-content .table .tr-footer {
  font-size: 14px;
  line-height: 30px;
  color: #999;
  padding: 23px 0;
  position: relative;
}
.crumbs-content .table .tr-footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background: #000;
  opacity: 0.3;
}
.crumbs-content .table .tr-footer .flex {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.crumbs-content .table .tr-footer .album-id {
  width: 15%;
  text-align: center;
}
.crumbs-content .table .tr-footer .album-id input {
  vertical-align: text-top;
  margin-right: 8px;
  width: 12px;
  height: 12px;
  -webkit-appearance: none;
  border: 1px #fff solid;
}
.crumbs-content .table .tr-footer .album-id input:checked {
  background: #fff;
}
.crumbs-content .table .tr-footer .btns-table {
  width: 83%;
}
.crumbs-content .table .tr-footer .btns-table a {
  font-size: 14px;
  line-height: 30px;
  color: #999;
  display: inline-block;
  background: #333;
  padding: 0 15px;
  margin-right: 10px;
}
.crumbs-content .table .tr-footer .btns-table a:nth-child(1)::before {
  content: "";
  display: inline-block;
  border-left: 12px #999 solid;
  border-top: 7px transparent solid;
  border-bottom: 7px transparent solid;
  margin-right: 6px;
  vertical-align: sub;
}
.crumbs-content .table .tr-footer .btns-table a:nth-child(2)::before {
  content: "+";
  display: inline-block;
  font-size: 24px;
  line-height: 24px;
  color: #999;
  margin-right: 6px;
  vertical-align: sub;
}
.crumbs-content .table-music .tr-footer .btns-table a::before {
  display: none!important;
}
.column-name {
  font-size: 18px;
  line-height: 60px;
  color: #fff;
  font-weight: bold;
  padding-left: 24px;
  background: #361046;
}
.icon-hot {
  content: "";
  display: inline-block;
  vertical-align: sub;
  width: 25px;
  height: 25px;
  background: url(../images/icon-hot1.png) center center no-repeat;
  margin-right: 10px;
}
.card {
  border: 1px #1b1b1b solid;
  margin-bottom: 20px;
}
.card-list {
  position: relative;
  overflow: hidden;
  zoom: 1;
}
.card-list::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background: #000;
  opacity: 0.3;
}
.card-list ul {
  margin: 10px 24px;
  position: relative;
  z-index: 1;
}
.card-list li {
  padding: 10px 0;
  border-bottom: 1px #313131 solid;
}
.card-list .pic {
  width: 43px;
  height: 43px;
  overflow: hidden;
  zoom: 1;
}
.card-list .font {
  margin-left: 15px;
  width: calc(100% - 58px);
}
.card-list .font a {
  font-size: 14px;
  line-height: 1.5;
  color: #999;
}
.hover-list .active .font a {
  color: #fff;
}
.card .more {
  position: relative;
  z-index: 1;
  text-align: center;
}
.card .more a {
  font-size: 14px;
  line-height: 32px;
  color: #999;
  position: relative;
  z-index: 1;
}
.card .more::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background: #000;
  opacity: 0.5;
}
.producer-list {
  position: relative;
  padding: 28px 24px 0;
  overflow: hidden;
  zoom: 1;
}
.producer-list::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background: #000;
  opacity: 0.3;
}
.producer-list ul {
  overflow: hidden;
  zoom: 1;
  z-index: 1;
}
.producer-list li {
  width: 33.333%;
  float: left;
  text-align: center;
  margin-bottom: 10px;
}
.producer-list li .pic {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  zoom: 1;
}
.producer-list li .pic img {
  width: 100%;
}
.producer-list li .font a {
  font-size: 14px;
  line-height: 40px;
  color: #999;
}
.header-tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.header-tabs a {
  display: block;
  width: 590px;
  font-size: 20px;
  line-height: 80px;
  color: #fff;
  text-align: center;
  background: url(../images/bg_tab1.gif) center 0 no-repeat;
  background-size: cover;
  border: 1px transparent solid;
}
.header-tabs .active {
  border: 1px #c800ff solid;
}
.header-tabs a:nth-child(2) {
  background: url(../images/bg_tab2.gif) center 0 no-repeat;
  background-size: cover;
}
.ads {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.tabs {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  padding: 35px 0;
}
.tabs .item {
  margin-bottom: 12px;
}
.tabs .item:last-child {
  margin-bottom: 0;
}
.tabs .item a {
  color: #666;
  display: inline-block;
  padding: 0 16px;
}
.tabs .item .active {
  background: #c900ff;
  color: #fff;
}
.mg-0-0-0 {
  margin-top: 0;
}
.right .search {
  margin: 30px 0 30px auto;
}
/* 原创舞曲-音乐人专辑 */
.album-list {
  border: 1px #1b1b1b solid;
  position: relative;
}
.album-list::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.album-list ul {
  position: relative;
  z-index: 1;
}
.album-list li {
  margin: 0 24px;
}
.album-list .item-content {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px #313131 solid;
}
.album-list .item-content .pic {
  width: 150px;
  height: 150px;
  overflow: hidden;
  zoom: 1;
}
.album-list .item-content .pic img {
  width: 100%;
}
.album-list .item-content .col {
  width: 645px;
}
.album-list .item-content .album-title {
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  font-weight: bold;
  margin-top: 5px;
}
.album-list .item-content .col .font {
  margin: 5px auto;
  font-size: 14px;
  line-height: 30px;
  color: #797979;
  display: inline-block;
  margin-left: 40px;
}
.album-list .item-content .col .font span {
  display: inline-block;
  font-weight: normal;
  margin-right: 40px;
}
.album-list .item-content .col .list {
  margin-top: 5px;
}
.album-list .item-content .col .list li {
  display: flex;
  font-size: 14px;
  line-height: 30px;
  color: #999;
  justify-content: space-between;
  margin: 0 auto;
}
.album-list .item-content .col .list .active {
  color: #fff;
}
.album-list .item-content .col .list li .name {
}
.album-list .item-content .col .list li .name::before {
  content: "";
  display: inline-block;
  border-left: 10px #999 solid;
  border-top: 6px transparent solid;
  border-bottom: 6px transparent solid;
  margin-right: 15px;
}
.album-list .item-content .col .list .active .name::before {
  border-left: 10px #fff solid;
}
.album-list .item-content .col .list li .td-btns {
  text-align: center;
}
.album-list .item-content .col .list li .td-btns .time {
  display: inline-block;
  margin-right: 45px;
}
.album-list .item-content .col .list li .td-btns .btn {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: sub;
  margin: 0 9px;
  padding: 0;
  font-size: 12px;
  line-height: 30px;
  text-indent: -60px;
  overflow: hidden;
  zoom: 1;
}
.album-list .item-content .col .list li .td-btns .btn:nth-child(2) {
  background: url(../images/icons-btn.png) 0 center no-repeat;
}

.album-list .item-content .col .list li .td-btns .btn:nth-child(3) {
  background: url(../images/icons-btn.png) -32px center no-repeat;
}

.album-list .item-content .col .list li .td-btns .btn:nth-child(4) {
  background: url(../images/icons-btn.png) -67px center no-repeat;
}
.album-list .item-content .col .list li .td-btns .btn:nth-child(5) {
  background: url(../images/icons-btn.png) -101px center no-repeat;
}
.album-list .item-content .col .list .active .td-btns .btn:nth-child(2) {
  background: url(../images/icons-btn-active.png) 0 center no-repeat;
}

.album-list .item-content .col .list .active .td-btns .btn:nth-child(3) {
  background: url(../images/icons-btn-active.png) -32px center no-repeat;
}

.album-list .item-content .col .list .active .td-btns .btn:nth-child(4) {
  background: url(../images/icons-btn-active.png) -67px center no-repeat;
}
.album-list .item-content .col .list .active .td-btns .btn:nth-child(5) {
  background: url(../images/icons-btn-active.png) -101px center no-repeat;
}
.album-content .round {
  border-radius: 50%;
  overflow: hidden;
  zoom: 1;
}
.album-content .col .col-4 {
  margin: 0 auto;
}
.album-content .col .col-4 span {
  flex-basis: 24%;
  line-height: 28px;
}
.album-content .col .col-4 span:last-child {
  flex-basis: 28%;
}
.album-content .col .introduction {
  display: block;
}
.album-content .col .introduction span {
  display: inline-block;
  margin-right: 32px;
  color: #fff;
  font-weight: bold;
}
.crumbs-content .left {
  position: relative;
}
.btn-saoma {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  font-size: 12px;
  line-height: 30px;
  color: #999;
  padding: 0 15px;
  background: #333;
  cursor: pointer;
}
.btn-saoma::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/icon-6.png) center center no-repeat;
  margin-right: 5px;
  vertical-align: middle;
}
.crumbs-content .album-btns .collection::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/icon10.png) center center no-repeat;
  vertical-align: sub;
  margin-right: 5px;
}
.crumbs-content .album-btns .download::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/btns-2.png) 0 center no-repeat;
  vertical-align: sub;
  margin-right: 5px;
}
.crumbs-content .album-btns .reward::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/btns-2.png) -19px center no-repeat;
  vertical-align: sub;
  margin-right: 5px;
}
.crumbs-content .album-btns .like::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/btns-2.png) -38px center no-repeat;
  vertical-align: sub;
  margin-right: 5px;
}
.crumbs-content .album-btns .collected::before {
  background: url(../images/icon10-active.png) center center no-repeat;
}
.crumbs-content .album-btns .like-on::before {
  background: url(../images/btns-3.png) -38px center no-repeat;
}
.crumbs-content .album-btns .btn-buy::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/btns-2.png) -57px center no-repeat;
  vertical-align: sub;
  margin-right: 5px;
}
.crumbs-content .table-1 {
  margin-bottom: 0;
}
.crumbs-content .table-1 .tr {
  line-height: 20px;
  padding: 0;
}
.crumbs-content .table-1 .tr .td-title {
  font-size: 14px;
  line-height: 26px;
  color: #999;
  margin-top: 8px;
  text-align: left;
}
.crumbs-content .table-1 .tr .td-title a {
  color: #999;
}
.crumbs-content .table-1 .tr .album-id {
  font-size: 14px;
  line-height: 2;
  color: #999;
  margin: 6px auto;
}
.crumbs-content .table-1 .tr .td .date {
  line-height: 40px;
}
.crumbs-content .table-1 .active .td-title,
.crumbs-content .table-1 .on .td-title {
  color: #c800ff;
}
.crumbs-content .table-1 .active .album-id {
  color: #fff;
}
.crumbs-content .menu,.crumbs-content .music-menu {
  width: 105px;
  font-size: 14px;
  line-height: 43px;
  text-align: center;
  margin-top: 40px;
}
.crumbs-content .menu .pic,
.crumbs-content .menu ul,
.crumbs-content .music-menu .pic,
.crumbs-content .music-menu ul {
  position: relative;
  z-index: 1;
}
.crumbs-content .menu .active a,.crumbs-content .music-menu .active a {
  background: #c800ff;
  color: #fff;
}
.crumbs-content .menu li a,.crumbs-content .music-menu li a {
  color: #999;
  display: block;
  text-decoration: none;
}
.crumbs-content .table {
  border: 0;
}
.border,
.crumbs-content .table-border {
  border: 1px #1b1b1b solid;
}
.mg-20-0-0 {
  margin-top: 20px;
}
.player {
  position: relative;
  margin-top: 130px;
}
.player::before {
  content: "";
  display: block;
  width: 230px;
  height: 90px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: url(../images/bg-player.png) 0 center no-repeat;
  background-size: auto 100%;
}
.player::after {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #000;
  opacity: 0.8;
}
.player .lock {
  width: 36px;
  height: 36px;
  position: absolute;
  right: 24px;
  top: 50%;
  margin-top: -18px;
  z-index: 3;
  background: url(../images/icon-suo.png) -1px center no-repeat;
  cursor: pointer;
  opacity: 1;
}
.player .close {
  background: url(../images/icon-suo.png) -39px center no-repeat;
}
.pd-36-0-0 {
  padding: 36px 0 0;
}
.scroll-container {
  height: 665px;
}
.scroll-height {
  height: 300px;
}
.comment {
  border: 1px #1b1b1b solid;
}
.comment .title,.comment .comment-form, .comment .comment-container {
  position: relative;
  z-index: 2;
}
.comment .title {
  padding: 0 24px;
}
.comment .row {
  justify-content: space-between;
}
.comment-form {
  margin: 0 24px;
}
.comment .row .pic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  zoom: 1;
  margin-right: 20px;
}
.comment .row .pic img {
  width: 100%;
}
.comment .row textarea {
  width: 745px;
  height: 96px;
  background: #000;
  border: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #f0f0f0;
  padding: 16px;
}
.col-comment .comment-form .col {
  width: 100%;
}
.comment .list .row textarea {
  width: 100%;
}
.comment .row .textarea {
  position: relative;
}
.comment .row .textarea::before {
  content: "";
  display: block;
  border-right: 8px #000 solid;
  border-bottom: 8px transparent solid;
  border-top: 8px transparent solid;
  position: absolute;
  left: -8px;
  top: 20px;
}
.comment .title::after {
  display: none;
}
.comment .title span {
  font-weight: normal;
  font-size: 14px;
  line-height: 60px;
  color: #666;
}
.comment .title .icon {
  display: inline-block;
  border-left: 12px #fff solid;
  border-top: 8px transparent solid;
  border-bottom: 8px transparent solid;
  vertical-align: middle;
  margin-left: 10px;
  margin-right: 15px;
}
.comment .row .btn {
  font-size: 14px;
  background: #361046;
  color: #fff;
  margin-top: 12px;
}
.comment .column-name1 {
  font-size: 14px;
  line-height: 40px;
  color: #fff;
  border-bottom: 1px #3c3e40 solid;
}
.comment-container {
  margin: 0 24px;
}
.comment-container .list li {
  display: flex;
  justify-content: space-between;
  padding: 15px 0 5px;
  border-bottom: 1px #333 solid;
}
.comment-container .list li .pic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  zoom: 1;
}
.comment-container .list li .pic img {
  width: 100%;
}
.comment-container .list .col-comment {
  width: 750px;
}
.comment-title {
  font-size: 14px;
  line-height: 26px;
  color: #666;
}
.comment-content {
  font-size: 14px;
  line-height: 26px;
  color: #999;
}
.col-comment .row {
  font-size: 12px;
  line-height: 36px;
  color: #666;
}
.col-comment .row span {
  margin-right: 32px;
}
.col-comment .row span:nth-child(2),
.col-comment .row span:nth-child(3) {
  cursor: pointer;
}
.col-comment .row .likes::before {
  width: 13px;
  height: 13px;
  content: "";
  display: inline-block;
  background: url(../images/icon13.png) center center no-repeat;
  vertical-align: middle;
  margin-right: 8px;
}
.col-comment .row .likes-on::before {
  background: url(../images/icon15.png) center center no-repeat;
}
.col-comment .icon-vip::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 15px;
  background: url(../images/icon-vip.png) 0 center no-repeat;
  margin-left: 8px;
}
.col-comment .icon-musician::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 15px;
  background: url(../images/icon-musician.png) 0 center no-repeat;
  margin-left: 8px;
}
.col-comment .reply .item {
  display: flex;
  padding: 10px 0;
}
.reply .item .pic {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  border-radius: 50%;
  overflow: hidden;
  zoom: 1;
}
.reply .item .pic img {
  width: 100%;
}
.reply-info,
.reply-info a {
  font-size: 12px;
  line-height: 26px;
  color: #666;
}
.comment-container .pages {
  margin-top: 36px;
}
.search2 {
  width: 500px;
  margin: 60px auto 30px;
  border-radius: 0;
}
.search2 form {
  width: calc(100% - 64px);
}
.search2 .form-group {
  width: 100%;
}
.search2 .form-control {
  width: 100%;
  font-size: 16px;
  line-height: 48px;
  color: #999;
  height: 48px;
}
.search2 .btn {
  border-radius: 0;
  font-size: 16px;
  line-height: 48px;
  color: #999;
  height: 48px;
  padding: 0 24px;
}
.search-container .piclist li {
  width: 25%;
  position: relative;
}
.search-container .piclist li .item-contaiter::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #0a0c0e;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.search-container .item-contaiter {
  width: 96%;
  margin: 5px auto;
  position: relative;
  z-index: 1;
}
.search-container .piclist .active .item-contaiter {
  box-shadow: 0 0 3px #c800ff;
}
.search-container .piclist li .pic {
  width: 100%;
  position: relative;
  z-index: 1;
}
.search-container .piclist li .pic .btns button {
  background: none;
}
.search-container .piclist li .pic .btns button:last-child::before {
  display: none;
}
.search-container .piclist li .pic .btns button:first-child::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../images/icon-play.png) center center no-repeat;
  vertical-align: sub;
  margin-right: 3px;
  border: 0;
}
.search-container .piclist li .font {
  position: relative;
  z-index: 1;
}
.search-container .piclist li .font a {
  font-size: 16px;
  line-height: 1.5;
  color: #999;
}
.search-container .piclist li .font2 {
  font-size: 12px;
  line-height: 32px;
  color: #333;
}
.search-container .piclist li .video-type {
  font-size: 12px;
  line-height: 24px;
  color: #fff;
  width: 50px;
  padding: 0;
  text-align: center;
  background: #151857;
  cursor: pointer;
  border: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.search-container .piclist li .green {
  background: #22ac38;
}
.search-container .piclist li .red {
  background: #e60012;
}
.search-container .piclist li .pic .btns button {
  line-height: 48px;
  position: relative;
  z-index: 1;
}
.search-container .piclist li .pic .btns {
  bottom: 0;
  left: 0;
  right: 0;
}
.search-container .piclist li .pic .btns::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background: url(../images/bg-pic.png) 0 bottom repeat-x;
}
.search-container .pages {
  margin-top: 50px;
}
.list-1-style {
  padding-top: 24px;
  border-top: 1px #333 solid;
}
.card-public {
  position: relative;
}
.card-public::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.3;
}
.card-container {
  margin: 12px;
  background: url(../images/bg-card.png) center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding-bottom: 16px;
}
.card-public .card-title {
  font-size: 20px;
  line-height: 60px;
  color: #fff;
  font-weight: bold;
  margin-left: 24px;
}
.card-public .row {
  align-items: self-end;
  justify-content: space-between;
}
.card-public .row .font {
  font-size: 14px;
  line-height: 2;
  color: #fff;
}
.card-public .row .font span {
  margin-right: 28px;
}
.card-public .row .font .icon-up::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 12px;
  background: url(../images/icon-up.png) center center no-repeat;
  margin-left: 8px;
}
.card-public .card-content {
  font-size: 14px;
  line-height: 30px;
  color: #999;
  margin: 0 24px;
}
.download-content .album-title {
  font-size: 18px;
  margin-top: 35px;
  margin-bottom: 15px;
}
.download-content .col .font {
  font-size: 12px;
  line-height: 2;
  width: auto;
}
.download-content .album-btns {
  margin-top: 30px;
}
.download-content .pics {
  padding: 30px;
  border: 1px #1b1b1b solid;
  margin-top: 20px;
}
.download-content .pics .swiper-slide img {
  width: 100%;
}
.download-content .pics .swiper-container {
  overflow: hidden;
  zoom: 1;
  position: relative;
}
.search-container .download-content .piclist li {
  width: 33.333%;
  margin-bottom: 0;
}
.download-content .recommend {
  padding: 0 30px 30px;
  border: 1px #1b1b1b solid;
}
.download-content .recommend .list {
  margin-top: 0;
}
.card-main {
  margin: 0 30px;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  position: relative;
  z-index: 1;
}
.card-page {
  justify-content: space-between;
  margin-top: 30px;
  padding-bottom: 30px;
}
.card-page a {
  color: #666;
}
.card-download .card-list ul {
  margin: 10px;
}
.card-download .card-list .pic {
  width: 110px;
  height: 64px;
  margin-top: 5px;
  position: relative;
}
.card-download .card-list .pic img {
  width: 100%;
}
.card-download .card-list .pic .time {
  position: absolute;
  width: 50px;
  text-align: center;
  right: 0;
  bottom: 0;
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: #666;
  z-index: 2;
}
.card-download .card-list .pic .time span {
  position: relative;
  z-index: 1;
}
.card-download .card-list .pic .time::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.download-content .card-download .col .font {
  line-height: 1.5;
}
.card-download .card-list .font a {
  font-size: 12px;
}
.card-download .card-list .text {
  font-size: 12px;
  line-height: 1.5;
  color: #666;
  justify-content: space-between;
  margin-left: 15px;
}
.icon-play::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(../images/icon-play-2.png) center center no-repeat;
  margin-right: 5px;
}
.mg-24-0-0 {
  margin-top: 24px;
}
.search-container .download-content .piclist li .font a {
  font-size: 14px;
}
.mg-50-0-0 {
  margin-top: 50px;
}
.download-content .mg-24-0-0 {
  margin-top: 24px;
  margin-bottom: 0;
}
.card-header .font {
  font-size: 14px;
  line-height: 40px;
  color: #888;
}
.card-header .font span {
  margin-right: 28px;
}
.card-header .font .icon-play::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../images/icon-play.png) center center no-repeat;
  vertical-align: sub;
  margin-right: 3px;
  border: 0;
}
.card-header .video {
  margin: 15px auto 0;
  position: relative;
}
.card-header .row {
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px #333 solid;
  margin-bottom: 28px;
}
.download-content .card-header .album-btns {
  margin-top: 0;
}

.card-header .share {
  font-size: 14px;
  line-height: 40px;
  color: #797979;
}
.card-header .share a {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 10px;
  font-size: 12px;
  line-height: 1.5;
  text-indent: -60px;
  overflow: hidden;
  zoom: 1;
  vertical-align: middle;
}
.card-header .share a:nth-child(1) {
  background: url(../images/icon-share.png) 0 center no-repeat;
}
.card-header .share a:nth-child(2) {
  background: url(../images/icon-share.png) -28px center no-repeat;
}
.card-header .share a:nth-child(3) {
  background: url(../images/icon-share.png) -55px center no-repeat;
}
.card-header .share a:nth-child(4) {
  background: url(../images/icon-share.png) -78px center no-repeat;
}
.card-header .share a:nth-child(5) {
  background: url(../images/icon-share.png) -104px center no-repeat;
}
.card-header .share a:nth-child(6) {
  background: url(../images/icon-share.png) -131px center no-repeat;
}
.dj-content {
  margin-top: 10px;
}
.dj-content .item-content .col .font {
  margin-left: 0;
}
.dj-content .album-list::before {
  display: none;
}
.dj-content .album-list li {
  position: relative;
  margin: 0 auto;
}
.dj-content .album-list li .item-content {
  position: relative;
  z-index: 1;
  margin: 0 24px;
  border: 0;
}
.dj-content .album-list .item-content .tags {
  justify-content: space-between;
  color: #666;
  line-height: 32px;
}
.dj-content .album-list .item-content .tags .col {
  width: auto;
}
.dj-content .album-list .item-content .tags span {
  font-size: 12px;
  line-height: 22px;
  color: #999;
  margin-top: 5px;
  background: #3a0549;
  padding: 0 12px;
  border-radius: 11px;
  display: inline-block;
  margin-right: 8px;
  min-width: 72px;
  text-align: center;
}
.dj-content .album-list .active .item-content .tags span,
.album-list .active .item-content .album-title a {
  color: #fff;
}
.dj-content .album-list .item-content .pic {
  width: 85px;
  height: 85px;
}
.dj-content .album-list .item-content .col {
  width: calc(100% - 105px);
}
.dj-content .album-list .item-content .tags .btns span {
  min-width: 5px;
  background: none;
  padding: 0;
  margin-right: 8px;
  color: #999;
}
.dj-content .album-list .item-content .tags .btns span::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(../images/icons-btn3.png) 0 center no-repeat;
  vertical-align: middle;
  margin-right: 3px;
}
.dj-content .album-list .item-content .tags .btns span:nth-child(2):before {
  background: url(../images/icons-btn3.png) -21px center no-repeat;
}
.dj-content .album-list .item-content .tags .btns span:nth-child(3):before {
  background: url(../images/icons-btn3.png) -43px center no-repeat;
}
.album-list .item-content .album-title a {
  color: #999;
}
.space-between {
  justify-content: space-between;
}
.btn-dj-add {
  display: block;
  width: 254px;
  height: 60px;
  font-size: 16px;
  line-height: 60px;
  color: #fff;
  text-align: center;
  border: 1px #c800ff solid;
  position: relative;
  text-decoration: none !important;
}
.btn-dj-add span {
  position: relative;
  z-index: 1;
  color: #fff;
}
.btn-dj-add::before {
  content: "";
  display: block;
  width: 240px;
  height: 46px;
  position: absolute;
  left: 6px;
  top: 6px;
  background: #c800ff url(../images/bg-btn.png) center center no-repeat;
  z-index: 0;
}
.align-center {
  align-items: center;
}
.dj-content .album-list li::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0.3;
}

.dj-content .album-list li:nth-child(even)::before {
  background: #000;
  opacity: 0.8;
}
.dj-content .album-list ul .active::before {
  background: #30083b;
  opacity: 0.3;
}
.dj-content2 .album-title {
  font-size: 20px;
}
.dj-content2 .album-title span {
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  font-weight: normal;
  padding: 0 12px;
  border-radius: 10px;
  background: #c800ff;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.dj-content2 .card-header .font {
  font-size: 12px;
}
.dj-content2 .btns img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 8px;
}
.dj-content2 .btns span::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 3px;
}
.dj-content2 .btns span:nth-child(2):before {
  background: url(../images/icons-btn3.png) 0 center no-repeat;
}
.dj-content2 .btns span:nth-child(3):before {
  background: url(../images/icons-btn3.png) -21px center no-repeat;
}
.dj-content2 .btns span:nth-child(4):before {
  background: url(../images/icons-btn3.png) -43px center no-repeat;
}
.card1 {
  position: relative;
  margin-top: 20px;
}
.card1::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.card1-container {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 32px;
  color: #999;
  display: flex;
  flex-wrap: wrap;
  padding: 16px 32px;
}
.card1-container .item {
  width: 25%;
}
.card1-container .item:nth-child(3n) {
  width: 50%;
}
.card2 {
  position: relative;
  margin-top: 40px;
}
.card2-container {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.5;
}
.card2-container .font {
  font-size: 16px;
  line-height: 40px;
  color: #fff;
  font-weight: bold;
}
.card2-container .red {
  color: #db0000;
  margin-top: 8px;
}
.card2-container .btn1 {
  display: block;
  border: 1px #750e93 solid;
  position: relative;
  padding: 30px 0;
  border-radius: 0;
}
.card2-container .btn1 a {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 36px;
  text-align: center;
  color: #fff;
  background: #ad05db;
  width: 215px;
  height: 36px;
  border-radius: 18px;
  margin: 0 auto;
  padding: 0;
  text-decoration: none;
}
.card2-container .btn1::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #3a0549;
  opacity: 0.8;
  z-index: 0;
}
.mg-10-0-0 {
  margin-top: 10px;
}
.card2-container .btns {
  text-align: center;
  margin-top: 24px;
}
.card2-container .btns a {
  display: inline-block;
  font-size: 14px;
  line-height: 42px;
  color: #333;
  padding: 0 24px;
  border-radius: 21px;
  background: #fff;
  margin: 0 12px;
}
.card2-container .btns a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: text-top;
  margin-right: 6px;
}
.card2-container .btns a:nth-child(1)::before {
  background: url(../images/icon10.png) center center no-repeat;
  background-size: auto 100%;
}
.card2-container .btns a:nth-child(2)::before {
  background: url(../images/btns-2.png) -40px center no-repeat;
  background-size: auto 100%;
}
.right .card-container {
  margin: 30px 36px;
  padding: 0;
  background: none;
}
.right .card-container .pic {
  text-align: center;
}
.right .card-container .pic .img {
  width: 85px;
}
.right .card-container .name {
  text-align: center;
  font-size: 16px;
  line-height: 52px;
  color: #fff;
  font-weight: bold;
  border-bottom: 1px #333 solid;
}
.right .card-container .content {
  font-size: 14px;
  line-height: 2;
  color: #999;
  margin: 16px auto;
}
.dj-content2 .card-page {
  margin-top: 67px;
}
.right1 {
  width: calc(100% - 180px);
}
.slot-container .crumbs-content .menu,
.slot-container .crumbs-content .music-menu,
.crumbs-content .single-menu {
  width: 160px;
  margin-top: 0;
}
.slot-container .crumbs-content .menu .pic img,
.slot-container .crumbs-content .music-menu .pic img {
  width: 100%;
}
.mg-48-0-0 {
  margin-top: 48px;
}
.slot-container .crumbs-content .table .td:nth-child(2) {
  width: 21%;
}
.slot-container .crumbs-content .table .td:nth-child(3) {
  width: 21%;
}
.slot-container .crumbs-content .table .td:nth-child(4) {
  width: 18%;
}
.slot-container .crumbs-content .table .td:nth-child(5) {
  width: 24%;
}
.slot-container .crumbs-content .single .td:nth-child(2) {
  width: 46%;
}
.slot-container .crumbs-content .single .td:nth-child(3) {
  width: 13%;
}
.slot-container .crumbs-content .single .td:nth-child(4) {
  width: 20%;
}
.slot-container .crumbs-content .table-musician .td:nth-child(2) {
  width: 30%;
}
.slot-container .crumbs-content .table-musician .td:nth-child(3) {
  width: 15%;
}
.slot-container .crumbs-content .table-musician .td:nth-child(4) {
  width: 15%;
}
.slot-container .crumbs-content .table-musician .td:nth-child(5) {
  width: 18%;
}
/* 音樂人 */
.crumbs-content .table .musician-music-content {
  width: 100%;
  background: #200e2a;
  display: none;
}
.crumbs-content .table .musician-music-content .notice-none {
  margin-top: 0;
  color: #999;
}
.crumbs-content .table .musician-music-content .td:nth-child(1) {
  width: 60px;
}
.crumbs-content .table .musician-music-content .td:nth-child(2) {
  width: 50%;
  text-align: left;
}
.crumbs-content .table .musician-music-content .td:nth-child(3) {
  width: 8%;
}
.crumbs-content .table .musician-music-content .td:nth-child(4) {
  width: 10%;
}
.crumbs-content .table .musician-music-content .tr {
  padding: 0;
}
.crumbs-content .table .musician-music-content .tr .td .date {
  line-height: 40px;
}
.crumbs-content .table .musician-music-content .tr .album-id {
  margin: 6px auto 6px 32px;
}
.crumbs-content .table .musician-music-content .tr .td-btns {
  margin: 0 auto;
}
.crumbs-content .table .musician-music-content .td a {
  color: #999;
}
.crumbs-content .table .musician-music-content .active .td a {
  color: #fff;
}
.crumbs-content .table .tr-footer .musician-pages {
  width: 20%;
}
.musician-pages a {
  color: #999;
  margin: 0 8px;
}
.slot-container .crumbs-content .table .td:nth-child(2) .flex {
  margin-left: 20px;
}
.slot-container .crumbs-content .table .td .pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  zoom: 1;
}
.slot-container .crumbs-content .table .td .pic img {
  width: 100%;
}
.slot-container .crumbs-content .table .td .num,
.crumbs-container .crumbs-content .single .td .num {
  width: 35px;
  height: 35px;
  display: inline-block;
  font-size: 16px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  vertical-align: middle;
  margin-right: 20px;
}

.slot-container .crumbs-content .table .tr:nth-child(2) .num,
.crumbs-container .crumbs-content .single .tr:nth-child(2) .num {
  background: url(../images/icon4.png) center center no-repeat;
  background-size: 100% auto;
  text-indent: -60px;
  overflow: hidden;
  zoom: 1;
}

.slot-container .crumbs-content .table .tr:nth-child(3) .num,
.crumbs-container .crumbs-content .single .tr:nth-child(3) .num {
  background: url(../images/icon5.png) center center no-repeat;
  background-size: 100% auto;
  text-indent: -60px;
  overflow: hidden;
  zoom: 1;
}

.slot-container .crumbs-content .table .tr:nth-child(4) .num,
.crumbs-container .crumbs-content .single .tr:nth-child(4) .num {
  background: url(../images/icon6.png) center center no-repeat;
  background-size: 100% auto;
  text-indent: -60px;
  overflow: hidden;
  zoom: 1;
}
.slot-container .crumbs-content .table-musician .tr:nth-child(4) .num {
  background: url(../images/icon5.png) center center no-repeat;
  background-size: 100% auto;
  text-indent: -60px;
  overflow: hidden;
  zoom: 1;
}
.slot-container .crumbs-content .table-musician .tr:nth-child(6) .num {
  background: url(../images/icon6.png) center center no-repeat;
  background-size: 100% auto;
  text-indent: -60px;
  overflow: hidden;
  zoom: 1;
}
.slot-container .crumbs-content .table .tr .td-btns {
  display: none;
}
.slot-container .crumbs-content .hot-table .tr .td-btns {
  display: block;
}
.slot-container .crumbs-content .table .active .td-btns {
  display: block;
}
.slot-container .crumbs-content .table .tr .td-btns .btn:nth-child(1) {
  background: url(../images/icons-btn5.png) 0 center no-repeat;
}

.slot-container .crumbs-content .table .tr .td-btns .btn:nth-child(2) {
  background: url(../images/icons-btn5.png) -37px center no-repeat;
}

.slot-container .crumbs-content .table .tr .td-btns .btn:nth-child(3) {
  background: url(../images/icons-btn5.png) -72px center no-repeat;
}
.slot-container .crumbs-content .table .tr .td-btns .btn:nth-child(4) {
  background: url(../images/icons-btn5.png) -106px center no-repeat;
}
.slot-container .crumbs-content .table .tr .td-btns .open:nth-child(1) {
  background: url(../images/icons-btn5.png) -144px center no-repeat;
}
.slot-container .crumbs-content .table .tr .td-btns .followed:nth-child(4) {
  background: url(../images/icons-btn5.png) -181px center no-repeat;
}
.slot-container .crumbs-content .angel .tr .td-btns .btn:nth-child(1) {
  background: url(../images/icons-btn5.png) -37px center no-repeat;
}

.slot-container .crumbs-content .angel .tr .td-btns .btn:nth-child(2) {
  background: url(../images/icons-btn5.png) -72px center no-repeat;
}
.slot-container .crumbs-content .angel .tr .td-btns .btn:nth-child(3) {
  background: url(../images/icons-btn5.png) -106px center no-repeat;
}
.slot-container .crumbs-content .angel .tr .td-btns .followed:nth-child(3) {
  background: url(../images/icons-btn5.png) -181px center no-repeat;
}
.crumbs-content .table .musician-music-content .tr .td-btns .btn:nth-child(1) {
  background: url(../images/icons-btn.png) 0 center no-repeat;
}

.crumbs-content .table .musician-music-content .tr .td-btns .btn:nth-child(2) {
  background: url(../images/icons-btn.png) -32px center no-repeat;
}

.crumbs-content .table .musician-music-content .tr .td-btns .btn:nth-child(3) {
  background: url(../images/icons-btn.png) -67px center no-repeat;
}
.crumbs-content .table .musician-music-content .tr .td-btns .btn:nth-child(4) {
  background: url(../images/icons-btn.png) -101px center no-repeat;
}
.slot-container .crumbs-content .table {
  border: 1px #1b1b1b solid;
}
.full {
  display: block;
}
.mg-40-0-0 {
  margin-top: 40px;
}

.btn-work-add {
  display: block;
  width: 200px;
  height: 60px;
  font-size: 16px;
  line-height: 60px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border: 1px #c800ff solid;
  position: relative;
  text-decoration: none !important;
  position: absolute;
  right: 0;
  bottom: -30px;
}
.btn-work-add span {
  position: relative;
  z-index: 1;
  color: #fff;
}
.btn-work-add::before {
  content: "";
  display: block;
  width: 189px;
  height: 49px;
  position: absolute;
  left: 5px;
  top: 5px;
  background: #c800ff url(../images/bg-btn1.png) center center no-repeat;
  z-index: 0;
}
.work-content .table-1 {
  border: 1px #1b1b1b solid;
}
.work-content .table-1 .tr {
  padding: 10px 0;
}
.work-content .table .td:nth-child(2) {
  width: 45%;
}
.work-content .table .td:nth-child(3) {
  width: 12%;
}
.work-content .table .td:nth-child(4) {
  width: 12%;
}
.work-content .table .td:nth-child(5) {
  width: 12%;
}
.work-content .table .td:nth-child(6) {
  width: 12%;
}
.work-content .table .td .font {
  line-height: 40px;
}
.work-content .table-1 .active .td,
.work-content .table-1 .active .td .td-title {
  color: #fff;
}
.work-content .th {
  position: relative;
  z-index: 3;
}
.work-content .select {
  position: relative;
}
.work-content .select .icon {
  display: inline-block;
  border-left: 8px #999 solid;
  border-top: 5px transparent solid;
  border-bottom: 5px transparent solid;
  margin-left: 5px;
}
.work-content .select ul {
  position: absolute;
  left: 50%;
  top: 40px;
  z-index: 3;
  width: 100px;
  margin-left: -50px;
  background: #18001e;
  display: none;
}
.work-content .open ul {
  display: block;
}
.work-content .open .icon {
  -ms-transform: rotate(90deg); /* IE 9 */
  transform: rotate(90deg); /* 标准语法 */
}
.work-content .select li {
  font-size: 14px;
  line-height: 38px;
  text-align: center;
  border-bottom: 1px #340042 solid;
}
.work-content .select .active {
  background: #c800ff;
}
.work-content .select li a {
  color: #999;
  display: block;
  text-decoration: none;
}
.work-content .select .active a {
  color: #fff;
}
.bg2 {
  position: relative;
}
.bg2::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background: #000;
  opacity: 0.3;
}
.line1 {
  border-top: 1px #313131 solid;
  margin-bottom: 30px;
}
.line {
  box-shadow: 0 0 1px #c800ff;
}
.card-swiper {
  overflow: hidden;
  zoom: 1;
}
.card-swiper .swiper-pagination {
  right: 0;
  bottom: 16px;
}
.card-swiper .swiper-pagination .swiper-pagination-bullet {
  background: none;
  border: 1px #fff solid;
  margin-left: 5px;
  opacity: 0.6;
}
.card-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}
.swiper-list .swiper-scrollbar,
.swiper-list2 .swiper-scrollbar {
  background: #eee;
  height: 2px;
}
.swiper-scrollbar-drag {
  background: #c800ff;
  cursor: pointer;
}
.recommend .swiper-list,
.swiper-list2 {
  padding-bottom: 20px;
}
.nav-left {
  width: 240px;
}
.right-content {
  width: 900px;
}
.nav-left ul {
  background: #1b1b1b;
  border: 1px #1b1b1b solid;
}
.nav-left li {
  position: relative;
}
.nav-left li a {
  font-size: 16px;
  line-height: 65px;
  color: #999;
  display: block;
  text-align: center;
  position: relative;
  z-index: 2;
}
.nav-left .active a {
  color: #fff;
}
.nav-left .active::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #30083b;
  left: 0;
  top: 0;
  z-index: 1;
}
.right-content {
  font-size: 14px;
  line-height: 2;
  color: #999;
}
.right-content .font-t {
  font-size: 16px;
  font-weight: bold;
}
.title1 {
  font-size: 24px;
  line-height: 2;
  color: #999;
  text-align: center;
  font-weight: bold;
}
.user-info {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #fff;
}
.user-info a {
  color: #fff;
}
.user-info .user-avatar {
  margin: 20px;
}
.user-info .user-avatar img {
  width: 50px;
  border-radius: 50%;
}
.pages ul {
  margin-right: 5px;
  line-height: 26px;
  height: 26px;
}
.pages .pagination li {
  width: auto;
  margin: 0 5px;
  font-size: 15px;
  line-height: 26px;
  color: #999;
  display: inline-block;
}
.pages .pagination li a,
.pages .pagination li span {
  background: none;
  border: 0;
  padding: 0 10px;
  margin: 0;
  display: block;
  font-size: 15px;
  line-height: 26px;
  color: #999;
}
.pages .pagination li a:hover,
.pages .pagination li span:hover {
  background: none;
}
.pages .pagination .active span {
  color: #fff;
}
.notice-none {
  text-align: center;
  font-size: 14px;
  line-height: 2;
  margin-top: 30px;
}
.jp-video-play-icon {
  position: absolute;
  margin-top: -95px;
}
.jp-audio, .jp-audio-stream, .jp-video {
  background: #393939;
  border-color: #393939;
}
.jp-interface {
  background: #393939;
}
div.jp-video .jp-progress{
  border-color: #393939;
}