@charset "UTF-8";
@import "../font/iconfont.css";

:root {
  --background-color: #f5f5f5;
  --font-color: #222;
  --primary-color: #febf4b;
  --func-color: #202e31;
  --hits-color: var(--Re6);

  --header-BC: var(--primary-color);
  --header-FC: #fff;

  --footer-BC: var(--primary-color);
  --footer-FC: #000;

  --disabled-color: var(--Ga2);
  --sub-title-color: #999;
  --border-color: #eeeeee;

  --box-shadow: 0 0 5px var(--Ga2);

  --border-radio-L: 10px;
  --border-radio-M: 6px;
  --border-radio-S: 2px;
  --border-radio-C: 999px;

  --button-BC: #fff;
  --button-FC: var(--font-color);
  --button-border-color: var(--border-color);
  --button-border-radio: var(--border-radio-S);
  --button-box-shadow: none;
  --button-primary-BC: var(--primary-color);
  --button-primary-FC: #fff;
  --button-func-BC: var(--func-color);
  --button-func-FC: #fff;
  --button-disabled-BC: var(--disabled-color);
  --button-disabled-FC: var(--Ga6);

  --label-BC: var(--primary-color);
  --label-FC: #fff;

  --card-BC: #fff;
  --card-border-radio: var(--border-radio-S);
  --card-box-shadow: var(--box-shadow);
  --card-border: 1px solid var(--border-color);
}

/* base */
html {
  background-color: var(--background-color);
  color: var(--font-color);
}

a {
  color: var(--font-color);
}

a:hover {
  color: var(--primary-color);
}

/* header */
header {
  background-color: var(--header-BC);
}

header a,
header a:hover {
  color: var(--header-FC);
}

header .head-wrap {
  height: 70px;
  margin: 0 auto;
}

header .head-right {
  justify-content: flex-end;
}

header .iconfont {
  font-size: 20px;
}
/* footer */
.footer {
  background-color: var(--footer-BC);
  padding: 20px 10px;
}

.footer p {
  margin-top: 10px;
}

.footer,
.footer a {
  font-size: 12px;
  line-height: 20px;
  color: var(--footer-FC) !important;
}

.footer .split-line {
  background-color: var(--footer-FC);
}

/* row */
.row {
  margin-bottom: 20px;
}

/* layout-box */
.layout-box {
  padding: 0 20px;
}

.layout-box:not(:last-of-type) {
  margin-bottom: 20px;
}

.layout-box-head {
  position: relative;
  height: 50px;
  border-bottom: 1px solid var(--border-color);
}

.layout-box-head .title {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
}

/* web-position */
.web-position {
  background-color: var(--background-color);
}

.web-position .separator {
  display: inline-block;
  margin: 0 5px;
  line-height: 20px;
  color: var(--sub-title-color);
}

.web-position a,
.web-position span {
  font-size: 14px;
}

/* side-nav */
.side-nav {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-color: transparent;
  z-index: 999999;
  transition: left 0.3s;
  overflow-y: auto;
}

.side-nav.show {
  left: 0;
}

.side-nav-wrap {
  width: 60%;
  height: 100%;
  overflow-y: auto;
  max-width: 250px;
  background-color: var(--card-BC);
  box-shadow: 15px 0 30px rgb(0 0 0 / 20%);
}

.side-nav-item a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 24px;
}

.side-nav-item.active a {
  color: var(--primary-color);
  background-color: var(--button-background-color);
  font-weight: bold;
}

.side-nav-child {
  padding: 5px 15px;
}

.side-nav-child p {
  width: 33.333%;
  padding: 3px;
}

.side-nav-child p a {
  display: block;
  font-size: 13px;
  background-color: var(--button-background-color);
  color: var(--button-font-color);
  line-height: 24px;
  padding: 0 2px;
  border-radius: 4px;
}

.side-nav-child p a.active {
  color: var(--primary-color);
}

.side-nav .iconfont {
  display: inline-block;
  height: 24px;
  line-height: 24px;
  font-size: 20px;
  font-weight: 200;
  margin-right: 5px;
}

/* button */
.button {
  display: inline-block;
  line-height: 30px;
  padding: 0 10px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  text-align: center;
  background-color: var(--button-BC);
  color: var(--button-FC);
  box-shadow: var(--button-box-shadow);
  border: 1px solid var(--button-border-color);
  border-radius: var(--button-border-radio);
}

.button:hover {
  color: var(--primary-color);
}

.button-large {
  line-height: 34px;
  padding: 0 15px;
  font-size: 16px;
}

.button-small {
  line-height: 24px;
  padding: 0 5px;
  font-size: 12px;
}

.button-small .iconfont {
  font-size: 12px;
  line-height: 18px;
}

.button-circular {
  border-radius: 999px;
}

.button-hairline {
  border-color: var(--primary-color);
  color: var(--primary-color) !important;
}

.button-primary,
.button.active {
  background-color: var(--button-primary-BC) !important;
  color: var(--button-primary-FC) !important;
  border-color: var(--button-primary-BC);
}

.button-func {
  background: var(--button-func-BC) !important;
  color: var(--button-func-FC) !important;
  border-color: var(--button-func-BC);
}

.button.disabled {
  background-color: var(--button-disabled-BC) !important;
  color: var(--button-disabled-FC) !important;
  border-color: var(--button-disabled-BC) !important;
}

.button-group .button:not(:first-child) {
  margin-left: 10px;
}

/* search-box */
.search-box {
  border-radius: 0;
  overflow: hidden;
  border-bottom: 1px solid #fff;
}

.search-input {
  width: 200px;
  padding: 0 10px;
  color: var(--font-color);
}

.search-input::placeholder {
  color: var(--header-FC);
}

.search-btn {
  font-size: 16px;
  min-width: 40px;
  padding: 0 5px;
}

.search-input,
.search-btn {
  border: none;
  outline: none;
  height: 40px;
  background-color: transparent;
  color: var(--header-FC);
}

.search-box-small {
  height: 32px;
  overflow: hidden;
  border-bottom: 1px solid var(--header-FC);
}

.search-box-small .search-input {
  width: 180px;
  color: var(--header-FC);
}

.search-box-small .search-btn {
  position: relative;
  top: 1px;
  right: 3px;
  height: 26px;
  min-width: unset;
  padding: 0;
  font-size: 14px;
  background-color: transparent;
}

.search-box-small .search-btn .iconfont {
  line-height: 26px;
}

.search-box-small .search-input {
  height: 30px;
}

.search-box-large .search-form {
  background-color: var(--card-BC);
  border-radius: var(--border-radio-L);
  box-shadow: 0 7px 21px rgba(149, 157, 165, 0.22);
}

.search-box-large .search-input {
  width: 315px;
  color: var(--font-color);
  height: 45px;
  line-height: 45px !important;
  font-size: 16px;
}

.search-box-large .title,
.search-box-large .title .iconfont {
  font-size: 30px;
  line-height: 40px;
  height: 40px;
  font-weight: bold;
}

.search-box-large .search-btn,
.search-box-large .search-btn .iconfont {
  display: inline-block;
  height: 45px !important;
  font-size: 26px;
  line-height: 45px;
  color: var(--primary-color);
  background-color: transparent;
}

.search-box-large .title .iconfont {
  color: var(--primary-color);
  margin-right: 5px;
}

/* all-nav */
.all-nav .all-nav-item a {
  font-size: 17px;
  padding: 0 5px;
  line-height: 70px;
  display: inline-block;
  color: var(--header-FC);
  white-space: nowrap;
}

.all-nav .all-nav-item .active {
  background-color: var(--button-primary-FC);
  color: var(--button-primary-BC);
}

/* poster */
.poster {
  position: relative;
  padding-top: 140%;
  border-radius: var(--border-radio-S);
  overflow: hidden;
}

.poster-art {
  padding-top: 58%;
}

.poster:hover .lazyload {
  transition: all 0.3s;
  transform: scale(1.1);
}

.poster .lazyload {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/loading.gif");
  background-size: cover;
  background-position: center center;
}

/* vod */
.vod-side-item-1 {
  line-height: 21px;
}

/* art */
.art-detail-content img,
.art-detail-content iframe {
  max-width: 100%;
}

.art-detail-content {
  padding: 0 10px;
  line-height: 30px;
}

.art-detail-content p {
  line-height: 30px;
}

.art-detail-head .title {
  font-size: 24px;
  font-weight: bold;
  line-height: 34px;
  margin: 10px;
}

.art-detail-head .info {
  margin: 15px 0;
  font-size: 12px;
}

/* detail-relate-mode */
.relative-word-item a {
  padding: 5px 10px;
  color: var(--Ga8);
  line-height: 28px;
  background-color: var(--Ga1);
  border-radius: var(--border-radio-S);
}

.relative-word-item a:hover {
  background: var(--button-primary-BC);
  color: var(--button-primary-FC);
}

.discuss-thumb {
  width: 30px;
  height: 30px;
  border-radius: var(--border-radio-S);
  background-size: cover;
  background-position: center center;
  background-image: url(../images/head-pic.png);
}

/* player-box */
.player-box {
  position: relative;
  background: #000;
  padding-top: 56.25%;
}

.MacPlayer {
  position: absolute !important;
  top: 0;
  left: 0;
}

/* actor */
.actor-detail-blurb {
  line-height: 26px;
  margin-bottom: 10px;
}

.actor-detail > div,
.actor-detail {
  display: flex;
  flex-wrap: wrap;
}

.actor-detail dl {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}

.actor-detail dt {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.51);
  display: inline-block;
  width: 70px;
}

.actor-detail dd {
  width: calc(100% - 70px);
}

.actor-detail > p {
  line-height: 26px;
  width: 50%;
}

/* other */
.card {
  background-color: var(--card-BC);
  box-shadow: var(--card-box-shadow);
  border-radius: var(--card-border-radio);
  border: var(--card-border);
}

.bottom-parting-line:not(:last-of-type) {
  border-bottom: 1px dashed var(--border-color);
}

.around-border {
  border: 2px solid var(--func-color);
}

.pic-text {
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  padding: 0 5px;
  line-height: 24px;
  width: 100%;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  background-repeat: no-repeat;
  color: #fff;
  font-size: 12px;
}

.logo {
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-repeat: no-repeat;
  width: 120px;
  padding: 44% 0 0 0 !important;
}

.label {
  display: inline-block;
  background-color: var(--label-BC) !important;
  color: var(--label-FC) !important;
  font-size: 12px !important;
  padding: 0 5px !important;
  border-radius: 2px !important;
  white-space: nowrap !important;
  line-height: 20px !important;
  font-weight: normal !important;
}

.high-light {
  color: var(--primary-color);
}

.hits {
  font-size: 10px;
  color: var(--hits-color);
  padding: 0 5px;
}

.hits i {
  font-size: 16px;
  margin-right: 2px;
}

.index-badge {
  font-style: italic;
  font-size: 14px;
  font-weight: 600;
  color: var(--Ye5);
  margin-right: 6px;
  width: 20px;
  text-align: center;
}

.index-badge.red {
  color: var(--Re6) !important;
}

.index-badge.orange {
  color: var(--Or5) !important;
}

.go-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: var(--border-radio-C);
  background-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 5px 0 rgba(2, 2, 2, 0.2);
  z-index: 9999999;
}

.go-top:hover {
  background-color: var(--button-primary-BC);
  color: var(--button-primary-FC);
}

.go-top i {
  font-size: 26px;
  line-height: 36px;
}

.image-list {
  margin: 0 -5px;
}

.wi-play-list-box.active .wi-head-play-buttons a.wi-play-list-btn {
  display: none;
}

.wi-play-list-box .wi-play-list-content {
  display: none;
}

.wi-play-list-box.active .wi-play-list-content {
  display: block;
}

.wi-play-list-box .expand {
  display: block;
}

.wi-play-list-box .retract {
  display: none;
}

.wi-play-list-box.active .expand {
  display: none;
}

.wi-play-list-box.active .retract {
  display: block;
}

.wi-head-play-buttons {
  justify-content: flex-end;
}

.wi-play-list-btn {
  display: block;
  min-width: 80px;
}

.wi-play-list-btn.active,
.wi-play-list-btn:hover {
  color: var(--button-primary-FC);
  background: var(--button-primary-BC) !important;
}

.wi-play-list-content ul {
  margin: 0 -10px !important;
}

.all-nav-mobile .all-nav-list {
  overflow-x: auto;
}

.all-nav-mobile .all-nav-item {
  white-space: nowrap;
}

.all-nav-mobile .all-nav-item a {
  line-height: 40px;
}

.all-nav-mobile .all-nav-item .active {
  background-color: transparent;
  color: var(--header-FC);
  font-weight: bolder;
  font-size: 21px;
}

.wi-jump-link,
.wi-jump-link a {
  color: #ff2a14 !important;
}

/* auto */
@media (max-width: 767px) {
  .container {
    padding: 0 10px;
  }

  header .head-wrap {
    padding: 0 5px;
    height: 50px;
  }

  .head-right {
    width: 50px;
  }

  .all-nav-pc .first-class {
    padding: 0 5px;
    line-height: 40px;
    font-size: 14px;
  }

  .row {
    margin-bottom: 10px;
  }

  .layout-box {
    padding: 0 10px;
  }

  .layout-box:not(:last-of-type) {
    margin-bottom: 10px;
  }

  .layout-box-head {
    height: 40px;
  }

  .layout-box-head .title {
    font-size: 16px;
  }

  .logo {
    width: 90px;
  }

  .data-list-image {
    margin: 0 -5px -5px -5px;
  }

  .actor-detail dl,
  .actor-detail > p {
    width: 100%;
  }

  .wi-play-list-box .layout-box-head {
    height: 50px;
  }
}

.d-none {
  display: none !important;
}

/* vod-tip */
.vod-tip {
  padding: 10px;
}

.vod-tip .tip-content {
  line-height: 30px;
}

.vod-tip .btn-tip {
  display: inline-block;
  line-height: 30px;
  font-size: 16px;
  background: #ff2a14;
  color: #fff;
  padding: 0 6px;
  border-radius: 4px;
  margin-right: 10px;
}
/* vod-tip */

/* scroll */
.scroll-wrapper {
  overflow: hidden;
}

.scroll-wrapper .scroll-content {
  display: inline-block;
  line-height: 30px;
  margin: 0 !important;
  padding: 0;
  width: fit-content;
  white-space: nowrap;
}

@keyframes animate-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* scroll */

/* pop */
.pop a,
.pop img {
  display: block;
  width: 100%;
}

.pop-banner {
  margin-bottom: 20px;
}

.pop-banner ul {
  display: flex;
  flex-wrap: wrap;
}

.pop-banner li {
  width: 50%;
}

.pop-banner img {
  display: block;
  width: 100%;
}

.pop-bottom {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9;
}

.pop-app ul {
  display: flex;
  flex-wrap: wrap;
  padding: 5px;
}

.pop-app li {
  width: 12.25%;
  padding: 10px 5px;
}

.pop-app-2 li {
  width: 10%;
}

.pop-app a {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pop-app .pop-img-box {
  background-color: #000;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
}

.pop-img img {
  height: 100%;
}

.pop-title {
  font-size: 12px;
  margin-top: 5px;
  white-space: nowrap;
}

.pop-close {
  position: absolute;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4)
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
  width: 20px;
  height: 20px;
}

.pop-text a {
  display: inline-block;
  color: #fff;
  width: auto;
  white-space: nowrap;
}

.pop-play,
.pop-play-notice {
  max-width: 100vw;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999999999999;
  color: #fff;
  padding: 10px;
}

.pop-play-notice {
  z-index: 99999999999999;
}

.pop-play-notice .pop-button {
  margin: 0 10px;
  line-height: 40px;
  font-size: 16px;
  padding: 0 30px;
}

.pop-play-notice .notice-content {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.4rem;
  text-align: center;
}

.pop-play a {
  width: auto !important;
  height: 80%;
}

.pop-play img {
  width: auto !important;
  height: 100%;
}

.pop-play .pop-play-close {
  position: absolute;
  padding: 4px 7px;
  top: 10px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 99px;
  font-size: 12px;
}

.pop-button {
  display: inline-block;
  background-color: var(--primary-color);
  border-radius: 4px;
  line-height: 28px;
  padding: 0 10px;
  color: #fff !important;
  font-size: 14px;
  margin-top: 5px;
  white-space: nowrap;
}

@media screen and (max-width: 750px) {
  .pop-banner li {
    width: 100%;
  }

  .pop-app li {
    width: 25%;
  }

  .pop-app-2 li {
    width: 20%;
  }
}
/* pop */

::-webkit-scrollbar {
  display: none;
  background: 0 0;
  width: 0;
}

.type-labels {
  --bg: none;
  --border-color: #ececec;
  --padding: 10px;
  --active-bg: var(--primary-color);
  --active-color: #000;
  background-color: var(--bg);
  padding: var(--padding);
}

.extend-block {
  display: flex;
}

.extend-block:not(:last-of-type) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.extend-block .extend-label {
  width: auto;
  font-weight: bold;
  padding-right: 1rem;
}

.extend-block .label-list {
  width: 0;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  margin-top: -2px;
  margin-bottom: -5px;
}

.extend-block .label-item {
  padding: 0 3px;
}

.extend-block .label-text {
  display: block;
  padding: 2px 7px;
  margin-bottom: 5px;
  font-size: 14px;
  border-radius: 99px;
}

.extend-block .label-text.active {
  background-color: var(--active-bg);
  color: var(--active-color);
  font-weight: 700;
}
