@charset "UTF-8";
:root {
  --bg-color: #0d0d0d;
  --bg-secondary-color: #171717;
  --bg-tertiary-color: #262626;
  --theme-color: #262626;
  --theme-light-color: #434343;
  --text-color: #fff;
  --text-hint-color: #999;
  --dropdown-bg-color: #262626;
  --menu-hover-bg-color: rgba(255, 255, 255, .2);
  --shadow-color: rgba(0,0,0,.1);
  --shadow-hover-color: rgba(0,0,0,.15);
  --btn-text-color: #fff;
  --btn-hover-text-color: #fff;
  --theme-primary-1: #666666;
  --theme-primary-2: #595959;
  --theme-primary-3: #4d4d4d;
  --theme-primary-4: #404040;
  --theme-primary-5: #333333;
  --theme-primary-6: #262626;
  --theme-primary-7: #000000;
  --theme-primary-8: #000000;
  --theme-primary-9: #000000;
  --theme-primary-10: #000000;
  --theme-primary-r: 38;
  --theme-primary-g: 38;
  --theme-primary-b: 38;
}

html.dark-mode,
.sandbox-page.dark-mode {
  --bg-color: #0d0d0d;
  --bg-secondary-color: #171717;
  --bg-tertiary-color: #262626;
  --text-color: #fff;
  --dropdown-bg-color: #262626;
  --menu-hover-bg-color: rgba(255, 255, 255, .2);
}

html.light-mode,
.sandbox-page.light-mode {
  --bg-color: #fff;
  --bg-secondary-color: #f5f5f5;
  --bg-tertiary-color: #ebebeb;
  --text-color: #333;
  --dropdown-bg-color: #fff;
  --menu-hover-bg-color: rgba(0, 0, 0, .2);
}

.line-1, .button-poster .button-poster-item, .hot-tag-list .hot-tag-link {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.v-hidden {
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
  display: block;
  opacity: 0;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-end {
  justify-content: flex-end;
}

.gap-6 {
  gap: 6px;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.flex-center, .hot-tag-list .hot-tag-link {
  align-items: center;
  justify-content: center;
}

.flex-1 {
  flex: 1;
}

.flex-wrap {
  flex-wrap: wrap;
}

.shadow-box, .icon-poster .icon-poster-img, .sidebar-poster .sidebar-poster-item, .button-poster .button-poster-item, .hot-tag-list .hot-tag-link, .video-player .video-overlay-play, .video-player .video-overlay-poster-img, .search-box .search-form, .page-header .page-header-main {
  box-shadow: 0 4px 16px var(--shadow-color);
  transition: box-shadow 0.3s;
}
.shadow-box:hover, .icon-poster .icon-poster-img:hover, .sidebar-poster .sidebar-poster-item:hover, .button-poster .button-poster-item:hover, .hot-tag-list .hot-tag-link:hover, .video-player .video-overlay-play:hover, .video-player .video-overlay-poster-img:hover, .search-box .search-form:hover, .page-header .page-header-main:hover {
  box-shadow: 4px 8px 16px var(--shadow-hover-color);
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.lazy-load-img {
  background-image: url("/image/loading.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.lazy-load-img.loaded,
.lazy-load-img.error {
  background-image: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  background-color: var(--bg-color);
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0;
  }
}
.page-header .page-header-main {
  position: relative;
  z-index: 29;
  padding: 15px 20px;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 768px) {
  .page-header .page-header-main {
    padding: 15px;
  }
}
.page-header .header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(160deg, var(--theme-color), var(--theme-light-color));
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  transition: all 0.3s;
}
.page-header .header-bg::before, .page-header .header-bg::after {
  content: "";
  display: block;
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  top: -10px;
  z-index: 0;
}
.page-header .header-bg::before {
  left: -10px;
}
.page-header .header-bg::after {
  right: -10px;
}
.page-header h1 {
  margin: 0;
}
.page-header .logo {
  display: block;
  position: relative;
  z-index: 9;
  /* line-height: 44px; */
  font-size: 28px;
  cursor: pointer;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #fff;
}
.page-header .logo:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .page-header .logo {
    font-size: 20px;
  }
}
.page-header .menu-list .menu-link {
  height: 40px;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 15px;
  line-height: 24px;
  color: #fff;
  transition: all 0.3s ease;
  border-radius: 20px;
}
.page-header .menu-list .menu-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 992px) {
  .page-header .menu-list .menu-link {
    padding: 8px;
  }
}
.page-header .menu-list .menu-list-item {
  position: relative;
}
.page-header .menu-list .menu-list-item:hover .second-menu-list {
  display: block;
}
.page-header .menu-list .second-menu-list {
  display: none;
  position: absolute;
  top: 112%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-secondary-color);
  width: 100px;
  padding: 5px 0;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 0 0 1px var(--bg-tertiary-color);
}
.page-header .menu-list .second-menu-link {
  display: block;
  font-size: 16px;
  padding: 8px 15px;
  transition: background-color 0.3s;
  color: var(--text-color);
}
.page-header .menu-list .second-menu-link:hover {
  background-color: var(--bg-tertiary-color);
}
.page-header .drawer-btn {
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
}
.page-header .drawer-btn i {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.page-header .drawer-btn.is-active {
  z-index: 99;
}
.page-header .drawer-btn.is-active i:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%);
}
.page-header .drawer-btn.is-active i:nth-child(1) {
  transform: translateY(10px) rotate(45deg); /* 13.5px 大约是高度的一半 + 间距 */
}
.page-header .drawer-btn.is-active i:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg); /* 13.5px 大约是高度的一半 + 间距 */
}
@media screen and (max-width: 768px) {
  .page-header .drawer-btn {
    display: flex;
  }
  .page-header .menu-list {
    display: none;
  }
}
.page-header .header-menu-main {
  position: relative;
  z-index: 9;
}

.drawer-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 385;
}
.drawer-box .drawer-mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 387;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.drawer-box .drawer-mask.is-active {
  display: block;
}
.drawer-box .drawer-content {
  height: 100%;
  width: 80%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 389;
  background-color: var(--bg-color);
  padding-top: 20px;
  overflow-x: hidden;
  transition: transform 0.4s ease;
  transform: translateX(-100%);
}
.drawer-box .drawer-content.is-active {
  transform: translateX(0);
}
.drawer-box .drawer-menu-list {
  margin-top: 20px;
}
.drawer-box .menu-link {
  display: block;
  padding: 12px 20px;
  border-radius: 0;
  font-size: 16px;
  color: var(--text-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.drawer-box .menu-link:hover, .drawer-box .menu-link:active {
  background-color: var(--bg-secondary-color);
}
.drawer-box .second-menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 8px 15px;
}
.drawer-box .second-menu-link {
  display: block;
  color: var(--btn-text-color);
  background-color: var(--theme-color);
  border-radius: 4px;
  padding: 4px 8px;
  margin-bottom: 5px;
  font-size: 16px;
}
.drawer-box .second-menu-link:hover {
  color: var(--btn-hover-text-color);
  background-color: var(--theme-light-color);
}

@media screen and (max-width: 768px) {
  .drawer-box {
    display: block;
  }
}
.search-box {
  max-width: 260px;
  margin-left: 20px;
}
.search-box .search-form {
  border-radius: 26px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.search-box .search-form:focus-within {
  box-shadow: var(--shadow-hover-color);
  transform: translateY(-2px);
}
.search-box .search-input-box {
  flex: 1;
  overflow: hidden;
}
.search-box .search-input,
.search-box .search-btn {
  height: 40px;
}
.search-box .search-input {
  display: block;
  width: 100%;
  padding: 0 15px;
  background-color: #fff;
  color: #333;
}
.search-box .search-btn {
  flex-shrink: 0;
  color: var(--btn-text-color);
  font-size: 16px;
  width: 92px;
  background-color: var(--theme-color);
  transition: background-color 0.3s;
}
.search-box .search-btn:hover {
  color: var(--btn-hover-text-color);
  background-color: var(--theme-light-color);
}
@media screen and (max-width: 992px) {
  .search-box .search-btn {
    width: 60px;
    font-size: 14px;
  }
}

@media screen and (max-width: 992px) {
  .search-box {
    max-width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .search-box.menu-search {
    display: none;
  }
  .search-box.drawer-search {
    max-width: 260px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .page-body {
    padding: 0 5px;
  }
}
.page-footer {
  color: var(--text-color);
  text-align: center;
  margin-top: 40px;
  padding: 30px 0 80px;
  font-size: 14px;
}
.page-footer .website-map {
  color: var(--text-color);
}
.page-footer .website-map:hover {
  text-decoration: underline;
}

.keyword-list {
  display: none;
  margin-top: 20px;
}
.keyword-list.is-show {
  display: flex;
}
.keyword-list .keyword-btn {
  display: block;
  background-color: var(--theme-color);
  color: var(--btn-text-color);
  padding: 5px 10px;
  margin: 4px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}
.keyword-list .keyword-btn:hover {
  background-color: var(--theme-light-color);
  color: var(--btn-hover-text-color);
}

.content-block {
  margin: 15px auto;
  text-align: center;
  border-radius: 10px;
  padding: 20px 0;
}
.content-block .content-title {
  font-size: 20px;
  color: var(--text-color);
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
@media screen and (max-width: 768px) {
  .content-block .content-title {
    font-size: 18px;
    padding-bottom: 8px;
    margin-bottom: 10px;
  }
}
.content-block .title-text {
  font-size: 20px;
  font-weight: bold;
}
.content-block .title-text.has-border {
  position: relative;
  padding-left: 10px;
}
.content-block .title-text.has-border::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: 4px;
  border-radius: 2px;
  background-color: var(--text-color);
}
@keyframes rotateX360 {
  from {
    transform: rotateX(0);
  }
  to {
    transform: rotateX(-360deg);
  }
}
@keyframes rotateY360 {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(-360deg);
  }
}
.content-block .more-btn {
  font-size: 14px;
  color: var(--btn-text-color);
  padding: 4px 12px;
  border-radius: 20px;
  background-color: var(--theme-color);
  align-items: center;
  transition: background-color 0.3s ease;
}
.content-block .more-btn:hover {
  background-color: var(--theme-light-color);
  color: var(--btn-hover-text-color);
}
.content-block .more-btn:hover .arrow-icon {
  animation: rotateX360 1s linear;
}
.content-block .more-btn:hover .more-icon {
  animation: rotateY360 1s linear;
}
.content-block .more-btn-text {
  margin-right: 4px;
}

@media screen and (max-width: 768px) {
  .content-block {
    margin: 10px auto;
    padding: 10px 0;
  }
}
.content-list {
  margin: 0 -10px -20px;
}
.content-list .content-item {
  width: 20%;
  margin-bottom: 20px;
  padding: 0 10px;
}
@media screen and (max-width: 1200px) {
  .content-list .content-item {
    width: 25%;
  }
}
@media screen and (max-width: 992px) {
  .content-list .content-item {
    width: 33.33%;
  }
}
@media screen and (max-width: 768px) {
  .content-list .content-item {
    width: 50%;
    padding: 0 5px;
    margin-bottom: 10px;
  }
}
.content-list .content-card {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s;
}
.content-list .content-card:hover {
  transform: translateY(-5px);
}
.content-list .content-card:hover .content-poster {
  transform: scale(1.05);
}
.content-list .content-poster-box {
  height: 0;
  padding-top: 56.25%;
  position: relative;
}
.content-list .content-poster {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.content-list .content-title {
  padding: 15px;
  text-align: left;
  font-size: 16px;
  border: none;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .content-list .content-title {
    padding: 10px 5px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .content-list {
    margin: 0 -5px -10px;
  }
}
.video-player {
  position: relative;
  margin: 20px auto;
}
.video-player .video-ctrl {
  width: 100%;
  height: 657px;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .video-player .video-ctrl {
    height: 211px;
  }
}
.video-player .video-overlay-poster {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 89;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* 确保即使有意外情况，内容也不会溢出 */
}
.video-player .video-overlay-poster-link {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.video-player .video-overlay-poster-img {
  margin: 0 auto;
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 525px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .video-player .video-overlay-poster-img {
    max-height: 190px;
  }
}
.video-player .video-overlay-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 19;
  width: 90px;
  height: 36px;
  background-color: var(--theme-color);
  color: #fff;
  border-radius: 4px;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.video-player .video-overlay-play:hover {
  background-color: var(--theme-light-color);
}

.video-detail-card {
  margin-top: 10px;
  padding: 20px 20px 0;
  border-radius: 10px;
  background-color: var(--bg-secondary-color);
  color: var(--text-color);
  font-size: 14px;
}
.video-detail-card .video-title {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 20px;
}
.video-detail-card .video-date {
  padding-bottom: 20px;
}
.video-detail-card .video-cate {
  padding-bottom: 20px;
}

.hot-tag-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
  margin: 0 -5px;
}
.hot-tag-list .hot-tag-item {
  width: 16.66%;
  padding: 0 5px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .hot-tag-list .hot-tag-item {
    width: 33.33%;
  }
}
.hot-tag-list .hot-tag-link {
  display: block;
  cursor: pointer;
  width: 100%;
  height: 42px;
  background-color: rgba(var(--theme-primary-r), var(--theme-primary-g), var(--theme-primary-b), 0.1);
  border: 1px solid var(--theme-color);
  border-radius: 8px;
  padding: 10px;
  color: var(--text-color);
  transition: all 0.3s;
}
.hot-tag-list .hot-tag-link:hover {
  border-color: var(--theme-light-color);
  background-color: rgba(var(--theme-primary-r), var(--theme-primary-g), var(--theme-primary-b), 0.2);
  transform: translateY(-5px);
}

.ep--arrow-right-bold {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='%23fff' d='M338.752 104.704a64 64 0 0 0 0 90.496l316.8 316.8l-316.8 316.8a64 64 0 0 0 90.496 90.496l362.048-362.048a64 64 0 0 0 0-90.496L429.248 104.704a64 64 0 0 0-90.496 0'/%3E%3C/svg%3E");
}

.ep--refresh {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='%23fff' d='M771.776 794.88A384 384 0 0 1 128 512h64a320 320 0 0 0 555.712 216.448H654.72a32 32 0 1 1 0-64h149.056a32 32 0 0 1 32 32v148.928a32 32 0 1 1-64 0v-50.56zM276.288 295.616h92.992a32 32 0 0 1 0 64H220.16a32 32 0 0 1-32-32V178.56a32 32 0 0 1 64 0v50.56A384 384 0 0 1 896.128 512h-64a320 320 0 0 0-555.776-216.384z'/%3E%3C/svg%3E");
}

.marquee-container {
  --marquee-scroll-duration: 15s;
  --marquee-containner-width: 1168px;
  margin: 10px 0;
  width: 100%; /* 确保容器有固定宽度 */
  overflow: hidden; /* 隐藏超出容器的内容 */
  box-sizing: border-box;
  white-space: nowrap; /* 强制所有子内容在一行显示 */
  display: flex; /* 使用 flexbox 布局子元素，确保它们在同一行 */
  align-items: center; /* 垂直居中对齐 */
  position: relative; /* 为动画定位做准备 */
  color: var(--text-color);
  /* 定义滚动动画 */
}
.marquee-container .marquee-content {
  display: inline-block; /* 确保内容块可应用动画 */
  animation: scroll-left var(--marquee-scroll-duration) linear infinite; /* 应用滚动动画 */
}
@media screen and (min-width: 1200px) {
  .marquee-container .marquee-content:hover {
    animation-play-state: paused;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(calc(0% + var(--marquee-containner-width)));
  } /* 从最左侧开始滚动 */
  100% {
    transform: translateX(-100%);
  } /* 滚动距离等于内容宽度 */
}
.marquee-container .marquee-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
.marquee-container .marquee-list .marquee-item {
  display: inline-block; /* 列表项在一行内显示 */
}
.marquee-container .marquee-list .marquee-item:last-child .marquee-item-connector {
  display: none;
}
.marquee-container .marquee-list .marquee-item-link {
  text-decoration: none;
  color: #1677ff;
  transition: color 0.3s;
}
.marquee-container .marquee-list .marquee-item-link:hover {
  color: #4096ff;
}
.marquee-container .marquee-list .marquee-item-connector {
  color: var(--text-color);
}

.banner-poster .banner-poster-item {
  display: block;
  border: 1px solid var(--theme-color);
}
.banner-poster .banner-poster-img {
  display: block;
  width: 100%;
  height: 96px;
}
@media screen and (max-width: 768px) {
  .banner-poster .banner-poster-img {
    height: 72px;
  }
}

.button-poster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.button-poster .button-poster-item {
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  background-color: var(--theme-color);
  border-radius: 4px;
  transition: box-shadow 0.3s, background-color 0.3s;
}
.button-poster .button-poster-item:hover {
  background-color: var(--theme-light-color);
}
@media screen and (max-width: 768px) {
  .button-poster .button-poster-item {
    font-size: 14px;
  }
}

.sidebar-poster .sidebar-poster-item {
  position: fixed;
  display: block;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--theme-color);
  transition: transform 0.3s, box-shadow 0.3s;
}
.sidebar-poster .sidebar-poster-item:hover {
  transform: scale(1.1);
}
.sidebar-poster .sidebar-poster-img {
  display: block;
  width: 60px;
  height: 60px;
}
.sidebar-poster .bottom-sidebar-poster {
  position: fixed;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sidebar-poster .bottom-sidebar-poster .sidebar-poster-item {
  position: static;
}

.icon-poster {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.icon-poster .icon-poster-item {
  text-align: center;
  width: 60px;
  transition: transform 0.2s;
}
.icon-poster .icon-poster-item:hover {
  transform: translateY(-5px);
}
.icon-poster .icon-poster-img {
  display: block;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--theme-color);
}
.icon-poster .icon-poster-name {
  margin-top: 3px;
  font-size: 11px;
  color: var(--text-color);
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .icon-poster {
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
  }
}