:root {
  --TZT-FONT-SIZE: 1rem;
  --TZT-LINE-HEIGHT: 1.5;
  --TZT-CIRCLE: 10px;
  --TZT-MAIN: #f84d3a;
}

body[shoutu-theme="dark"] {
  --TZT-BG-0: #111111;
  --TZT-BG-1: #1e1e1e;
  --TZT-BG-2: #191919;
  --TZT-BG-3: #202020;
  --TZT-BG-4: #404040;
  --TZT-FG: #ffffff;
  --TZT-FG-0: rgba(255, 255, 255, 0.8);
  --TZT-FG-1: rgba(255, 255, 255, 0.5);
  --TZT-FG-3: rgba(255, 255, 255, 0.1);
  --TZT-INDIGO: #1196ff;
}

* { box-sizing: border-box; }

body.yingshizhanzhang_com-body {
  margin: 0;
  font-size: var(--TZT-FONT-SIZE);
  line-height: var(--TZT-LINE-HEIGHT);
  font-family: -apple-system-font, "Helvetica Neue", sans-serif;
  color: var(--TZT-FG);
  background-color: var(--TZT-BG-1);
}

.yingshizhanzhang_com-page { display: block; }
.yingshizhanzhang_com-page-bd { padding-left: 169px; }
.yingshizhanzhang_com-page-row { padding: 0 2rem; }

.yingshizhanzhang_com-leftbar {
  position: fixed;
  width: 169px;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  background-color: var(--TZT-BG-2);
  border-right: 1px solid var(--TZT-FG-3);
}

.yingshizhanzhang_com-leftbar-logo {
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  display: block;
}
.yingshizhanzhang_com-leftbar-logo a {
  color: #fff;
  text-decoration: none;
}
.yingshizhanzhang_com-leftbar-logo img {
  display: block;
  margin-top: 6px;
}
.yingshizhanzhang_com-menu-close {
  display: none;
  border: 1px solid var(--TZT-FG-3);
  background: var(--TZT-BG-3);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
}

.yingshizhanzhang_com-leftbar-menu { padding: 0; margin: 0; list-style: none; }
.yingshizhanzhang_com-leftbar-menu li a {
  display: block;
  color: var(--TZT-FG-0);
  padding: 0.9rem 1rem;
  text-decoration: none;
}
.yingshizhanzhang_com-leftbar-menu li a:hover,
.yingshizhanzhang_com-leftbar-menu li a.yingshizhanzhang_com-active {
  background-color: var(--TZT-MAIN);
  color: #fff;
}

.yingshizhanzhang_com-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--TZT-BG-2);
  padding: 0.8rem 2rem;
  border-bottom: 1px solid var(--TZT-FG-3);
  position: sticky;
  top: 0;
  z-index: 100;
}
.yingshizhanzhang_com-header-left {
  display: flex;
  align-items: center;
  gap: .7rem;
  width: 100%;
}
.yingshizhanzhang_com-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
  transition: all .2s ease;
}
.yingshizhanzhang_com-menu-toggle .bi {
  font-size: 1.15rem;
  line-height: 1;
}
.yingshizhanzhang_com-menu-toggle:hover {
  border-color: rgba(248, 77, 58, 0.7);
  background: linear-gradient(135deg, rgba(248, 77, 58, 0.34), rgba(248, 77, 58, 0.18));
}
.yingshizhanzhang_com-menu-toggle:active {
  transform: translateY(1px) scale(0.98);
}
.yingshizhanzhang_com-mobile-logo {
  display: none;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.yingshizhanzhang_com-mobile-logo img {
  display: block;
  max-height: 28px;
  width: auto;
}
.yingshizhanzhang_com-sidebar-mask {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 998;
}

.yingshizhanzhang_com-search-form { max-width: 460px; width: 100%; display: flex; align-items: center; }
.yingshizhanzhang_com-search-form .yingshizhanzhang_com-search-input,
.yingshizhanzhang_com-search-form .btn {
  height: 40px;
}
.yingshizhanzhang_com-search-form .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.yingshizhanzhang_com-search-input {
  background-color: var(--TZT-BG-0);
  border: 1px solid var(--TZT-FG-3);
  color: var(--TZT-FG-0);
}

.yingshizhanzhang_com-panel {
  position: relative;
  padding: 1.5rem;
  margin-top: 1.5rem;
  background-color: var(--TZT-BG-2);
  border-radius: var(--TZT-CIRCLE);
  border: 1px solid var(--TZT-FG-3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.yingshizhanzhang_com-panel-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.yingshizhanzhang_com-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(248, 77, 58, 0.16), rgba(17, 150, 255, 0.12));
}
.yingshizhanzhang_com-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1rem;
}
.yingshizhanzhang_com-rank-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.yingshizhanzhang_com-rank-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .45rem 0;
  border-bottom: 1px dashed var(--TZT-FG-3);
}
.yingshizhanzhang_com-rank-index {
  color: var(--TZT-MAIN);
  font-weight: 700;
  min-width: 20px;
}

.yingshizhanzhang_com-section-title { margin: 0; font-size: 1.4rem; font-weight: 700; }
.yingshizhanzhang_com-muted { color: var(--TZT-FG-1); }

.yingshizhanzhang_com-vodlist { display: flex; flex-wrap: wrap; gap: 15px; padding: 0; margin: 0; list-style: none; }
.yingshizhanzhang_com-vodlist-item { width: calc(100% / 8 - 15px); }

.yingshizhanzhang_com-cover {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.6rem;
  aspect-ratio: 2/3;
}
.yingshizhanzhang_com-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.yingshizhanzhang_com-cover:hover img { transform: scale(1.08); }
.yingshizhanzhang_com-cover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(0, 0, 0, .55), transparent);
  opacity: 0;
  transition: opacity .25s ease;
}
.yingshizhanzhang_com-vodlist-item:hover .yingshizhanzhang_com-cover::after { opacity: 1; }

.yingshizhanzhang_com-vod-title {
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: .2rem;
}
.yingshizhanzhang_com-vod-text { color: var(--TZT-FG-1); font-size: .85rem; }
.yingshizhanzhang_com-vodlist-item { transition: transform .2s ease; }
.yingshizhanzhang_com-vodlist-item:hover { transform: translateY(-4px); }
.yingshizhanzhang_com-topic-item { width: calc(100% / 4 - 15px); }
.yingshizhanzhang_com-topic-item .yingshizhanzhang_com-cover { aspect-ratio: 16/10; }

.yingshizhanzhang_com-footer {
  margin-top: 2rem;
  background-color: var(--TZT-BG-0);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--TZT-FG-3);
}
.yingshizhanzhang_com-fixedbar {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 110;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.yingshizhanzhang_com-fixedbar a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--TZT-FG-3);
  background: var(--TZT-BG-2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.yingshizhanzhang_com-link { color: var(--TZT-FG-1); text-decoration: none; }
.yingshizhanzhang_com-link:hover { color: var(--TZT-MAIN); }
.yingshizhanzhang_com-episode-active {
  background-color: var(--TZT-MAIN);
  color: #fff !important;
  padding: .3rem .6rem;
  border-radius: 8px;
}
.yingshizhanzhang_com-friend-link {
  display: inline-block;
  margin: 0.35rem 0.6rem 0.35rem 0;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--TZT-FG-3);
  border-radius: 999px;
}

.yingshizhanzhang_com-badge {
  display: inline-block;
  font-size: 10px;
  border-radius: 12px;
  padding: 0 8px;
  line-height: 20px;
  background-color: var(--TZT-MAIN);
  color: #fff;
}

.yingshizhanzhang_com-player-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  background: #000;
  border-radius: 8px;
}

.yingshizhanzhang_com-search-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: .8rem;
}
.yingshizhanzhang_com-chip {
  display: inline-block;
  padding: .25rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--TZT-FG-3);
  color: var(--TZT-FG-0);
  background: var(--TZT-BG-3);
  font-size: .82rem;
}
.yingshizhanzhang_com-chip.yingshizhanzhang_com-chip-active {
  background: var(--TZT-MAIN);
  border-color: var(--TZT-MAIN);
  color: #fff;
}
.yingshizhanzhang_com-search-result-item {
  padding: 1rem 1rem 1rem 1.2rem;
  border-left: 3px solid transparent;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: .8rem;
}
.yingshizhanzhang_com-search-result-item:hover {
  border-left-color: var(--TZT-MAIN);
  background: rgba(248, 77, 58, 0.08);
}
.yingshizhanzhang_com-keyword-highlight {
  color: #fff;
  background: rgba(248, 77, 58, .75);
  border-radius: 4px;
  padding: 0 .3rem;
}
.yingshizhanzhang_com-empty-tip {
  border: 1px dashed var(--TZT-FG-3);
  border-radius: 10px;
  padding: 1rem;
  color: var(--TZT-FG-1);
}
.yingshizhanzhang_com-player-frame iframe,
.yingshizhanzhang_com-player-frame video,
.yingshizhanzhang_com-player-frame .MacPlayer,
.yingshizhanzhang_com-player-frame .stui-player__video {
  width: 100% !important;
  height: 100% !important;
}

.mac_pages .page_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 .75rem;
  border: 1px solid var(--TZT-FG-3);
  border-radius: 8px;
  color: var(--TZT-FG-0);
  text-decoration: none;
  background: var(--TZT-BG-3);
}
.mac_pages .page_link:hover {
  border-color: var(--TZT-MAIN);
  color: #fff;
  background: rgba(248, 77, 58, .2);
}
.mac_pages .page_current {
  background: var(--TZT-MAIN);
  border-color: var(--TZT-MAIN);
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .yingshizhanzhang_com-page-bd { padding-left: 0; }
  .yingshizhanzhang_com-leftbar { transform: translateX(-100%); transition: transform .25s ease; }
  .yingshizhanzhang_com-leftbar.yingshizhanzhang_com-open { transform: translateX(0); }
  .yingshizhanzhang_com-sidebar-mask.yingshizhanzhang_com-open { display: block; }
  .yingshizhanzhang_com-vodlist-item { width: calc(100% / 5 - 15px); }
  .yingshizhanzhang_com-topic-item { width: calc(100% / 3 - 15px); }
  .yingshizhanzhang_com-menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .yingshizhanzhang_com-menu-close { display: inline-flex; align-items: center; justify-content: center; }
  .yingshizhanzhang_com-hero-grid { grid-template-columns: 1fr; }
}

@media screen and (max-width: 768px) {
  .yingshizhanzhang_com-header { padding: 0.8rem 1rem; }
  .yingshizhanzhang_com-page-row { padding: 0 1rem; }
  .yingshizhanzhang_com-vodlist-item { width: calc(100% / 2 - 15px); }
  .yingshizhanzhang_com-topic-item { width: calc(100% / 1 - 15px); }
  .yingshizhanzhang_com-footer { padding: 1rem; display: block; text-align: center; }
  .yingshizhanzhang_com-hotword { display: none; }
  .yingshizhanzhang_com-mobile-logo { display: inline-flex; align-items: center; }
  .yingshizhanzhang_com-header-left { gap: .5rem; align-items: center; }
  .yingshizhanzhang_com-search-form { max-width: none; flex: 1; min-width: 0; margin: 0; align-self: center; }
  .yingshizhanzhang_com-mobile-logo { flex: 0 0 auto; color: #fff; max-width: 40vw; overflow: hidden; text-overflow: ellipsis; line-height: 40px; height: 40px; }
  .yingshizhanzhang_com-mobile-logo img { max-height: 26px; margin-top: 4px; }
  .yingshizhanzhang_com-search-input { min-width: 0; }
}
