@charset "UTF-8";
@import "../font/iconfont.css";
@import "sup.css";
@import "var.css";

/* init */
body {
  font-size: 14px;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  padding-left: var(--side-nav-width);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

li,
ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

p,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

img {
  border: 0 none;
  vertical-align: middle;
}

a {
  color: unset;
  text-decoration: none !important;
}

/* public */
.container {
  max-width: 1600px;
}

.poster {
  position: relative;
  overflow: hidden;
  border-radius: var(--poster-border-radio);
  /*box-shadow: var(--bs-box-shadow);*/
}

.poster:hover .lazyload {
  /*box-shadow: 0 0 25px rgba(var(--bs-primary-rgb), .3);*/
  transform: scale(1.2);
}

.lazyload {
  background-image: url("../images/loading.gif");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 140%;
  background-color: #000;
}

.poster-hor .lazyload {
  padding-top: 61.8%;
}

.poster-square .lazyload {
  padding-top: 100%;
  background-size: 100% 100%;
}

.poster-square {
  padding: 0;
  border: none;
}

.pic-text {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  padding: 10px;
  line-height: 12px;
  width: 100%;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  background-repeat: no-repeat;
  color: #fff;
  font-size: 12px;
}

.pic-label {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: var(--bs-primary);
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  padding: 0 5px;
  font-weight: normal;
  border-radius: 6px;
}

.detail-tag .slash:last-of-type {
  display: none;
}

.col {
  width: 0;
}

/* search-box */
.search-box-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.9);
}

.search-box {
  width: var(--search-box-width);
  /*max-width: 80%;*/
  padding: var(--search-box-padding);
  background: var(--search-box-background);
  border: var(--search-box-border);
  border-radius: var(--search-box-border-radius);
  overflow: hidden;
}

.search-input {
  padding: 0 15px;
  background-color: transparent;
  color: var(--search-box-font-color);
  font-size: var(--search-box-font-size);
  width: 0;
  flex: 1;
}

.search-input::placeholder {
  color: var(--search-box-font-color);
}

.search-input,
.btn-search {
  border: none;
  outline: none;
  height: var(--search-box-height);
}

.btn-search {
  padding: 0 10px;
  color: var(--search-btn-color);
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* search-box */

/* navbar */
.navbar {
  background-color: var(--bs-navbar-background-color);
}

.navbar-nav {
  background-color: var(--bs-navbar-nav-background-color);
}

.navbar-nav .nav-item {
  width: auto;
  padding: var(--bs-nav-item-padding-y) var(--bs-nav-item-padding-x);
}

.navbar-nav .nav-link {
  position: relative;
  line-height: var(--bs-nav-line-hight);
  border-radius: 8px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  /*border-color: var(--bs-primary);*/
  color: var(--bs-navbar-hover-color) !important;
  background-color: var(--bs-nav-link-active-background-color);
}

/*.navbar-nav .nav-link.active::after{*/
/*  content: " ";*/
/*  position: absolute;*/
/*  left: 50%;*/
/*  transform: translateX(-50%);*/
/*  border: 8px solid;*/
/*  border-color: transparent transparent var(--bs-primary) transparent;*/
/*  bottom: 1px;*/
/*  opacity: 1;*/
/*}*/

/*.navbar-nav .nav-link.active::before{*/
/*  content: " ";*/
/*  position: absolute;*/
/*  width: 20px;*/
/*  height: 2px;*/
/*  left: 50%;*/
/*  bottom: 0;*/
/*  transform: translateX(-50%);*/
/*  background-color: var(--bs-primary);*/
/*}*/

/* side-nav */
.side-nav-wrap {
  position: fixed;
  width: var(--side-nav-width);
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: left 0.3s;
  overflow-y: auto;
  padding: var(--spacing);
}

.side-nav {
  min-height: 100%;
  width: 100%;
}

.side-nav-wrap.show {
  left: 0 !important;
}

.side-nav .nav-sub {
  transition: all 0.3s;
  height: auto;
}

.side-nav .nav-sub.hide {
  height: 0;
  overflow: hidden;
}

.btn-extend.svg-right {
  transition: all 0.3s;
}

.btn-extend.extended.svg-right {
  display: inline-block;
  transform: rotate(90deg);
}

.side-nav .nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 1.06rem;
  color: var(--bs-secondary-color);
}

.side-nav .nav-link:hover {
  background-color: rgb(73, 74, 76);
  color: #fff;
}

.side-nav .nav-link.active {
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

.side-nav .nav-link.active::after {
  content: " ";
  position: absolute;
  width: 4px;
  height: 50%;
  background-color: var(--bs-primary);
  border-radius: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 4px 0 14px 1px var(--bs-primary);
}

/* section */
.section {
  margin: var(--section-margin);
  padding: var(--section-padding);
  background-color: var(--section-backgroun-color);
  border-radius: var(--section-border-radius);
  box-shadow: var(--section-box-shadow);
}

.section-head {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: var(--section-head-padding);
  margin: var(--section-head-margin);
}

.section-head .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  font-size: var(--section-title-font-size);
  line-height: var(--section-title-font-size);
  color: var(--section-title-color);
  font-weight: var(--section-title-font-weight);
  /*margin-right: 1rem;*/
}

.section-content {
  /*padding: var(--spacing);*/
}

.section-head-right {
  --font-size: 14px;
  --line-height: calc(var(--font-size) * 1.6);
  display: flex;
  align-items: center;
}

.section-head-right a {
  font-size: var(--font-size);
  line-height: var(--line-height);
  vertical-align: center;
}

.section-head-right a:hover {
  border-color: var(--bs-primary);
}

.section-head-right .more {
  width: var(--line-height);
  height: var(--line-height);
  font-size: var(--font-size);
  line-height: var(--line-height);
  padding: 0;
  text-align: center;
  font-weight: bold;
}

.section-head-right .slash {
  height: var(--font-size);
  overflow: hidden;
  line-height: var(--font-size);
  color: hsla(0, 0%, 100%, 0.14);
}

/* section */

/* data-item */
.index-badge {
  --index-badge-size: 1.3rem;
  display: inline-block;
  width: var(--index-badge-size);
  height: var(--index-badge-size);
  line-height: var(--index-badge-size);
  text-align: center;
  font-size: 14px;
  border-radius: var(--bs-border-radius);
  background-color: #ddd;
  color: #fff;
  font-weight: normal;
  font-style: normal;
}

.data-item:nth-of-type(1) .index-badge {
  background-color: #e5353e;
  color: #fff;
}

.data-item:nth-of-type(2) .index-badge {
  background-color: var(--bs-orange);
  color: #fff;
}

.data-item:nth-of-type(3) .index-badge {
  background-color: var(--bs-yellow);
  color: #fff;
}

.vod-item-3. .poster {
  display: none !important;
}

.vod-item-3.active .poster {
  display: block !important;
  width: 70px;
}

.vod-item-3.active .index-badge {
  display: none;
}

/* data-item */

/* vod */
.vod-play-list-box .section-head .title::after {
  display: none;
}

.vod-play-list-box.active .section-head a.btn,
.vod-play-list-box.active .expand,
.vod-play-list-box .section-content,
.vod-play-list-box .retract {
  display: none;
}

.vod-play-list-box .section-head {
  border-bottom: none;
}

.vod-play-list-box.active .section-content,
.vod-play-list-box.active .retract,
.vod-play-list-box .expand {
  display: block;
}
.player-box {
  position: relative;
  background: #000;
  padding-top: 56.25%;
}

.MacPlayer {
  position: absolute !important;
  top: 0;
  left: 0;
}

/* vod */

/* 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 */

/* other */
.go-top {
  --size: 42px;
  position: fixed;
  bottom: 175px;
  right: 20px;
  width: var(--size);
  height: var(--size);
  color: #fff;
  display: flex;
  /*box-shadow: var(--bs-box-shadow-sm);*/
  z-index: 999;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}

.logo {
  display: block;
  padding-top: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

/* auto */
@media screen and (max-width: 750px) {
  body {
    padding-left: 0;
  }

  .side-nav-wrap {
    left: -100%;
  }
}

.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;
}

/* other */
.vod-desc .info {
  word-break: break-all;
}
/* other */

/* vod-tip */
.vod-tip .tip-content {
  line-height: 30px;
  padding: 10px;
}

.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-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;
}

::-webkit-scrollbar {
  display: none;
  background: 0 0;
  width: 0;
}

.type-labels {
  --bg: none;
  --border-color: hsla(0, 0%, 100%, 0.06);
  --padding: 10px;
  --active-bg: hsla(0, 0%, 100%, 0.05);
  --active-color: var(--bs-primary);
  /* 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;
}
