:root {
  --db01-red: #ff6a00;
  --db01-red-dark: #ef4d00;
  --db01-text: #111;
  --db01-muted: #888;
  --db01-line: #f0f0f0;
  --db01-bg: #fff;
  --db01-card: #fff;
  --db01-shadow: none;
  --db01-dark: #101219;
  --db01-dark-line: rgba(255, 255, 255, .08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--db01-text);
  background: var(--db01-bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.db01-wrap {
  width: min(1200px, calc(100vw - 32px));
  margin: 0 auto;
}

.db01-header {
  position: relative;
  top: 0;
  z-index: 30;
  color: #fff;
  background:
    radial-gradient(circle at 22% 40%, rgba(255, 128, 0, .18), transparent 28%),
    linear-gradient(180deg, #151821 0%, #0f1118 100%);
}

.db01-topbar__inner {
  display: flex;
  align-items: center;
  min-height: 60px;
  gap: 34px;
}

.db01-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 170px;
  font-size: 0;
  font-weight: 800;
  color: #fff;
}

.db01-logo__text {
  display: block;
  overflow: hidden;
  width: 130px;
  height: 36px;
  line-height: 36px;
  font-size: 22px;
  color: #fff;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.db01-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
}

.db01-nav__item {
  position: relative;
}

.db01-nav__link {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 60px;
  padding: 0 16px;
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.db01-nav__link:hover,
.db01-nav__link.is-active,
.db01-nav__link.active,
.db01-nav__more:has(.db01-nav__drop a.active) > .db01-nav__link {
  color: var(--db01-red);
  background: transparent;
}

.db01-nav__link.is-active::after,
.db01-nav__link.active::after,
.db01-nav__more:has(.db01-nav__drop a.active) > .db01-nav__link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--db01-red);
}

.db01-nav__drop {
  position: absolute;
  left: 0;
  top: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(80px, 1fr));
  gap: 8px;
  min-width: 220px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 2px;
  background: rgba(20, 23, 32, .96);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .24);
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  transition: .16s ease;
}

.db01-nav__item:hover .db01-nav__drop {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.db01-nav__more:not(:has(.db01-nav__more-link)) {
  display: none;
}

.db01-nav__drop a {
  overflow: hidden;
  padding: 7px 10px;
  border-radius: 8px;
  color: rgba(255, 255, 255, .76);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.db01-nav__drop a:hover,
.db01-nav__drop a.active {
  color: var(--db01-red);
  background: rgba(255, 106, 0, .1);
}

.db01-header__tools {
  display: flex;
  gap: 10px;
}

.db01-tool {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.db01-searchbar {
  border-top: 1px solid var(--db01-dark-line);
  background: rgba(10, 12, 18, .42);
}

.db01-searchbar__inner {
  display: flex;
  align-items: center;
  min-height: 50px;
  gap: 18px;
  overflow: hidden;
}

.db01-cat-btn {
  flex: 0 0 auto;
  height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-weight: 700;
  cursor: pointer;
}

.db01-search {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 220px;
  height: 38px;
  max-width: 420px;
  padding: 0 0 0 34px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 2px;
  background: rgba(255, 255, 255, .04);
  position: relative;
  overflow: hidden;
}

.db01-searchbar--column .db01-search {
  flex: 0 1 100%;
  width: 100%;
  max-width: none;
}

.db01-search::before {
  content: "⌕";
  position: absolute;
  left: 12px;
  top: 7px;
  color: rgba(255, 255, 255, .48);
}

.db01-search input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 10px;
  background: transparent;
  color: #fff;
}

.db01-search input::placeholder {
  color: rgba(255, 255, 255, .46);
}

.db01-search button {
  flex: 0 0 auto;
  align-self: stretch;
  min-width: 70px;
  padding: 0 18px;
  border: 0;
  color: #fff;
  background: var(--db01-red);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.db01-search button:hover {
  background: #ff7c1a;
}

.db01-hotwords {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  color: var(--db01-muted);
  white-space: nowrap;
}

.db01-hotwords span {
  flex: 0 0 auto;
  color: var(--db01-red);
}

.db01-hotwords__viewport {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.db01-hotwords__track {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: max-content;
  min-width: max-content;
  animation: db01-hotwords-scroll 24s linear infinite;
  will-change: transform;
}

.db01-hotwords__track:hover {
  animation-play-state: paused;
}

.db01-hotwords a {
  flex: 0 0 auto;
  color: var(--db01-red);
}

.db01-hotwords a:hover {
  color: #fff;
}

@keyframes db01-hotwords-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7.5px));
  }
}

.db01-page {
  padding: 0 0 40px;
}

.template-source-summary {
  display: none;
}

.db01-video-banner {
  position: relative;
  margin-top: 18px;
  color: #fff;
}

.db01-video-banner__viewport {
  position: relative;
  overflow: hidden;
  height: 420px;
  border-radius: 6px;
  background: #101219;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
  touch-action: pan-y;
}

.db01-video-banner__track {
  position: relative;
  height: 100%;
}

.db01-video-banner__item {
  position: absolute;
  inset: 0;
  height: 100%;
  color: #fff;
  background: #111827;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}

.db01-video-banner:not([data-video-banner-ready="1"]) .db01-video-banner__item:first-child,
.db01-video-banner__item.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.db01-video-banner__cover {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: #111827;
}

.db01-video-banner__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.db01-video-banner__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 8, 14, .76) 0%, rgba(5, 8, 14, .38) 42%, rgba(5, 8, 14, .1) 72%),
    linear-gradient(180deg, rgba(5, 8, 14, .04) 0%, rgba(5, 8, 14, .78) 100%);
}

.db01-video-banner__content {
  position: absolute;
  left: 38px;
  bottom: 34px;
  z-index: 2;
  display: grid;
  gap: 10px;
  width: min(560px, calc(100% - 110px));
  color: #fff;
}

.db01-video-banner__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.db01-video-banner__tags span {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 9px;
  border-radius: 2px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  font-size: 12px;
  line-height: 24px;
}

.db01-video-banner__tags span:first-child {
  background: var(--db01-red);
}

.db01-video-banner__content h2 {
  margin: 0;
  max-width: 88%;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0;
}

.db01-video-banner__content h2 a:hover {
  color: var(--db01-red);
}

.db01-video-banner__meta,
.db01-video-banner__summary {
  margin: 0;
  color: rgba(255, 255, 255, .76);
}

.db01-video-banner__summary {
  display: -webkit-box;
  overflow: hidden;
  max-width: 92%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.db01-video-banner__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 102px;
  height: 34px;
  margin-top: 4px;
  border-radius: 3px;
  color: #111;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.db01-video-banner__link:hover {
  color: #fff;
  background: var(--db01-red);
}

.db01-video-banner__arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(5, 11, 22, .52);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease;
}

.db01-video-banner__arrow::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 12px;
  width: 12px;
  height: 12px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.db01-video-banner__arrow:hover {
  background: var(--db01-red);
}

.db01-video-banner__arrow--prev {
  left: 14px;
}

.db01-video-banner__arrow--prev::before {
  transform: rotate(45deg);
}

.db01-video-banner__arrow--next {
  right: 14px;
}

.db01-video-banner__arrow--next::before {
  left: 11px;
  transform: rotate(-135deg);
}

.db01-video-banner__dots {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 7px;
}

.db01-video-banner__dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .48);
  transition: width .2s ease, background .2s ease;
}

.db01-video-banner__dots span.is-active {
  width: 18px;
  background: var(--db01-red);
}

.db01-video-banner:not(:has(.db01-video-banner__item)) {
  display: none;
}

.db01-hero {
  margin-top: -1px;
  padding: 42px 0 40px;
  background:
    radial-gradient(circle at 26% 40%, rgba(250, 173, 86, .32), transparent 28%),
    radial-gradient(circle at 72% 24%, rgba(82, 133, 170, .18), transparent 32%),
    linear-gradient(180deg, #11141d 0%, #171923 100%);
}

.db01-hero__main {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.db01-slide {
  position: relative;
  overflow: hidden;
  min-height: 318px;
  border-radius: 3px;
  background: #dfe4ed;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .35);
}

.db01-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .24s ease;
}

.db01-slide:hover img,
.db01-poster:hover img,
.db01-update:hover img {
  transform: scale(1.04);
}

.db01-slide__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 13, 22, .02), rgba(9, 13, 22, .72));
}

.db01-slide__text {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #fff;
}

.db01-slide__text strong {
  display: block;
  overflow: hidden;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.db01-slide__text em {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  color: rgba(255, 255, 255, .82);
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.db01-rank,
.db01-section,
.db01-filter,
.db01-detail,
.db01-play-source {
  border: 1px solid var(--db01-line);
  border-radius: 0;
  background: var(--db01-card);
  box-shadow: var(--db01-shadow);
}

.db01-rank h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.db01-update {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--db01-line);
}

.db01-update:first-of-type {
  border-top: 0;
}

.db01-update img {
  width: 58px;
  height: 76px;
  border-radius: 8px;
  object-fit: cover;
  background: #e8ecf3;
}

.db01-update strong,
.db01-update em,
.db01-rank span,
.db01-rank em {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.db01-update strong {
  padding-top: 4px;
  font-size: 15px;
}

.db01-update em,
.db01-rank em {
  margin-top: 4px;
  color: var(--db01-muted);
  font-style: normal;
  font-size: 12px;
}

.db01-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 28px;
  overflow: hidden;
}

.db01-channel__tip,
.db01-channel__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border-radius: 999px;
  color: #333;
  background: #f7f7f7;
  white-space: nowrap;
}

.db01-channel__tip {
  color: var(--db01-red);
  min-width: 260px;
  justify-content: flex-start;
}

.db01-channel__item strong {
  font-size: 15px;
  font-weight: 700;
}

.db01-channel__item span {
  display: none;
}

.db01-channel__item:hover,
.db01-channel__item.active {
  color: #fff;
  background: var(--db01-red);
}

.db01-channel__item:hover span,
.db01-channel__item.active span {
  color: #fff;
}

.db01-section {
  margin-top: 18px;
  padding: 0;
  border: 0;
}

.db01-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.db01-section__head h1,
.db01-section__head h2 {
  margin: 0;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.2;
}

.db01-section__head h1::before,
.db01-section__head h2::before {
  content: "♨";
  margin-right: 8px;
  color: var(--db01-red);
}

.db01-section__head a,
.db01-section__head span {
  color: var(--db01-muted);
}

.db01-column-rank {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.db01-column-rank__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--db01-line);
  color: var(--db01-text);
}

.db01-column-rank__item strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.db01-column-rank__item span {
  color: var(--db01-muted);
  font-size: 13px;
}

.db01-column-rank__item:hover strong {
  color: var(--db01-red);
}

.db01-sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.db01-sort a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(200, 43, 43, 0.24);
  border-radius: 4px;
  color: var(--db01-red);
  background: rgba(200, 43, 43, 0.06);
}

.db01-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--db01-muted);
}

.db01-pagination.hidden {
  display: none;
}

.db01-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 34px;
  border: 1px solid rgba(200, 43, 43, 0.24);
  border-radius: 4px;
  color: var(--db01-red);
  background: rgba(200, 43, 43, 0.06);
}

.db01-page-link.disabled {
  pointer-events: none;
  color: #a2a9b6;
  border-color: #e5e7eb;
  background: #f6f7f9;
}

.db01-poster-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px 16px;
}

.db01-poster-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.db01-poster {
  min-width: 0;
}

.db01-poster__cover {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 2 / 3;
  border-radius: 3px;
  background: #e4e9f1;
}

.db01-poster__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s ease;
}

.db01-poster__cover span {
  position: absolute;
  left: 0;
  top: 0;
  max-width: calc(100% - 16px);
  padding: 2px 6px;
  border-radius: 0;
  color: #fff;
  background: #1599ef;
  font-size: 12px;
}

.db01-poster h3 {
  overflow: hidden;
  margin: 8px 0 2px;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.db01-poster h3 a:hover {
  color: var(--db01-red);
}

.db01-poster p {
  overflow: hidden;
  margin: 0;
  color: var(--db01-muted);
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.db01-two {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.db01-main-list,
.db01-rank {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: var(--db01-shadow);
}

.db01-rank a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--db01-line);
}

.db01-rank a:first-of-type {
  border-top: 0;
}

.db01-rank b {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: #f1f3f8;
  counter-increment: rank;
}

.db01-rank {
  counter-reset: rank;
}

.db01-rank b::before {
  content: counter(rank);
  color: var(--db01-red);
  font-weight: 800;
}

.db01-column-page {
  padding-top: 28px;
}

.db01-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 14px;
  color: var(--db01-muted);
}

.db01-breadcrumb a:hover {
  color: var(--db01-red);
}

.db01-breadcrumb__parent:empty,
.db01-breadcrumb__parent:empty + .db01-breadcrumb__parent-sep {
  display: none;
}

.db01-filter {
  padding: 14px 20px;
  background: #fafafa;
}

.db01-filter__row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-top: 1px dashed #e5e5e5;
}

.db01-filter__row:first-child {
  border-top: 0;
}

.db01-filter__row strong {
  color: #111;
}

.db01-filter__row div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.db01-filter__row a {
  padding: 2px 10px;
  border-radius: 0;
  color: #555;
}

.db01-filter__row a:hover,
.db01-filter__row a.active,
.db01-filter__row a.is-active {
  color: #fff;
  background: var(--db01-red);
}

.db01-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.db01-pager a,
.db01-pager span {
  min-width: 44px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid var(--db01-line);
  border-radius: 0;
  color: #526075;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.db01-pager a:hover {
  color: #fff;
  border-color: var(--db01-red);
  background: var(--db01-red);
}

.db01-detail-page {
  padding-top: 28px;
}

.db01-detail {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 26px;
  padding: 24px 0;
  border: 0;
}

.db01-detail__cover {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: #e4e9f1;
  box-shadow: none;
}

.db01-detail__cover img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.db01-detail__cover span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  height: 44px;
  border-radius: 2px;
  color: #fff;
  background: var(--db01-red);
  font-weight: 800;
}

.db01-detail__info h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.22;
}

.db01-detail__sub {
  margin: 8px 0 12px;
  color: var(--db01-muted);
}

.db01-score {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 5px 0;
  border-radius: 0;
  background: transparent;
}

.db01-score strong {
  color: var(--db01-red);
  font-size: 28px;
  line-height: 1;
}

.db01-score span {
  color: var(--db01-muted);
}

.db01-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.db01-meta li {
  overflow: hidden;
  color: #3b4558;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.db01-meta span {
  color: var(--db01-muted);
}

.db01-intro {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #566176;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.db01-detail-body {
  color: #364154;
  font-size: 15px;
  line-height: 1.9;
}

.db01-detail-body p {
  margin: 0 0 14px;
}

.db01-detail__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.db01-detail__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 20px;
  border: 1px solid var(--db01-line);
  border-radius: 2px;
  color: #586376;
  background: #fff;
  font-weight: 700;
}

.db01-detail__actions .db01-play-btn {
  color: #fff;
  border-color: var(--db01-red);
  background: var(--db01-red);
}

.db01-detail__actions a[href=""] {
  display: none;
}

.db01-adjacent {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.db01-adjacent a {
  overflow: hidden;
  padding: 12px 14px;
  border: 1px solid var(--db01-line);
  color: var(--db01-text);
  white-space: nowrap;
  text-overflow: ellipsis;
  background: #fff;
}

.db01-adjacent a:hover {
  color: var(--db01-red);
  border-color: rgba(255, 106, 0, .28);
}

.db01-adjacent a[href=""] {
  display: none;
}

.db01-episode-list {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.db01-episode-line {
  margin: 0 0 12px;
  color: #172033;
  font-size: 14px;
  font-weight: 700;
}

.db01-episode-list a {
  display: grid;
  place-items: center;
  min-height: 40px;
  border: 1px solid var(--db01-line);
  border-radius: 0;
  color: #445066;
  background: #f8f9fc;
}

.db01-episode-list a:hover {
  color: #fff;
  border-color: var(--db01-red);
  background: var(--db01-red);
}

.db01-episode-list a.active {
  color: #fff;
  border-color: var(--db01-red);
  background: var(--db01-red);
}

.db01-episode-list button {
  display: grid;
  place-items: center;
  min-height: 40px;
  border: 1px solid var(--db01-line);
  border-radius: 0;
  color: #445066;
  background: #f8f9fc;
  font: inherit;
  cursor: pointer;
}

.db01-episode-list button:hover,
.db01-episode-list button.is-active {
  color: #fff;
  border-color: var(--db01-red);
  background: var(--db01-red);
}

.db01-player.player-shell {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 460px;
  margin-bottom: 16px;
  background: #080b12;
}

.db01-player .dplayer-stage,
.db01-player .player-stage,
.db01-player .player-message,
.db01-player .player-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.db01-player .player-iframe {
  border: 0;
  background: #080b12;
}

.db01-player .player-message {
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  pointer-events: none;
}

.db01-player .player-message div {
  display: grid;
  gap: 10px;
  text-align: center;
}

.db01-player .player-message strong {
  font-size: 24px;
}

.db01-player .player-message span,
.db01-player .player-message em {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.db01-player .player-message.is-hidden {
  display: none;
}

.db01-desc {
  color: #465266;
  font-size: 15px;
}

.db01-footer {
  margin-top: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--db01-line);
  color: var(--db01-muted);
  background: #fafafa;
}

.db01-friend {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--db01-line);
}

.db01-friend div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.db01-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 16px;
}

.db01-website-page .db01-section {
  margin-top: 22px;
}

.db01-website-hero {
  padding: 42px 0;
  color: #fff;
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 106, 0, .28), transparent 30%),
    linear-gradient(180deg, #11141d 0%, #181b24 100%);
}

.db01-website-hero h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 500;
}

.db01-website-hero p {
  max-width: 680px;
  margin: 10px 0 22px;
  color: rgba(255, 255, 255, .78);
}

.db01-website-search {
  max-width: 620px;
  border-left: 0;
  background: rgba(255, 255, 255, .08);
}

.db01-site-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.db01-site-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--db01-line);
  background: #fff;
}

.db01-site-card__main {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.db01-site-card__icon {
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--db01-line);
  background: #f7f8fb;
}

.db01-site-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.db01-site-card strong,
.db01-site-row strong {
  display: block;
  overflow: hidden;
  color: #172033;
  font-size: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.db01-site-card small,
.db01-site-row small {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  color: var(--db01-muted);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.db01-site-card p {
  overflow: hidden;
  margin: 12px 0 0;
  color: var(--db01-muted);
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.db01-site-list {
  border-top: 1px solid var(--db01-line);
}

.db01-site-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--db01-line);
}

.db01-site-row em {
  color: var(--db01-muted);
  font-style: normal;
  white-space: nowrap;
}

.db01-site-card:hover strong,
.db01-site-row:hover strong {
  color: var(--db01-red);
}

.db01-rank--wide {
  padding: 0;
}

.db01-website-detail {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--db01-line);
}

.db01-website-detail__icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 1px solid var(--db01-line);
  background: #f7f8fb;
}

.db01-website-detail__icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.db01-website-detail__body h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.22;
}

.db01-website-url {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  color: #445066;
}

.db01-website-url span {
  color: var(--db01-muted);
}

.db01-website-url a {
  color: var(--db01-red);
  word-break: break-all;
}

@media (max-width: 1100px) {
  .db01-two {
    grid-template-columns: 1fr;
  }

  .db01-hero__main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .db01-poster-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .db01-hotwords {
    display: none;
  }

  .db01-site-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .db01-wrap {
    width: min(100vw - 20px, 760px);
  }

  .db01-video-banner__viewport {
    height: 360px;
  }

  .db01-video-banner__item {
    height: 360px;
  }

  .db01-video-banner__cover {
    height: 100%;
  }

  .db01-video-banner__shade {
    background:
      linear-gradient(180deg, rgba(5, 8, 14, .08) 0%, rgba(5, 8, 14, .82) 100%);
  }

  .db01-video-banner__content {
    left: 18px;
    right: 18px;
    bottom: 20px;
    gap: 8px;
    width: auto;
  }

  .db01-video-banner__content h2 {
    max-width: 100%;
    font-size: 22px;
    line-height: 1.22;
  }

  .db01-video-banner__meta,
  .db01-video-banner__summary {
    font-size: 13px;
  }

  .db01-video-banner__summary {
    -webkit-line-clamp: 2;
  }

  .db01-video-banner__link {
    width: 92px;
    height: 30px;
  }

  .db01-video-banner__arrow {
    width: 32px;
    height: 32px;
  }

  .db01-video-banner__arrow::before {
    left: 13px;
    top: 10px;
    width: 10px;
    height: 10px;
  }

  .db01-video-banner__arrow--next::before {
    left: 9px;
  }

  .db01-video-banner__dots {
    right: 18px;
    bottom: 18px;
  }

  .db01-topbar__inner {
    gap: 12px;
  }

  .db01-logo {
    min-width: 0;
  }

  .db01-logo__text {
    width: auto;
    max-width: 120px;
    font-size: 18px;
  }

  .db01-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 122px;
    display: none;
    overflow: auto;
    max-height: calc(100vh - 140px);
    padding: 14px;
    border: 1px solid var(--db01-dark-line);
    border-radius: 0;
    background: #151821;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
  }

  .db01-show-nav .db01-nav {
    display: block;
  }

  .db01-nav__item,
  .db01-nav__link {
    display: block;
  }

  .db01-nav__drop {
    position: static;
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
    margin: 4px 0 10px;
    border: 0;
    opacity: 1;
    transform: none;
    visibility: visible;
    box-shadow: none;
  }

  .db01-searchbar__inner {
    gap: 10px;
  }

  .db01-cat-btn {
    padding: 0 12px;
  }

  .db01-hero__main {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .db01-slide:first-child {
    grid-row: span 1;
  }

  .db01-channel,
  .db01-poster-grid,
  .db01-poster-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .db01-detail {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .db01-meta,
  .db01-episode-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .db01-site-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .db01-website-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .db01-header__tools {
    display: none;
  }

  .db01-searchbar__inner {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .db01-search {
    order: 2;
    flex-basis: 100%;
  }

  .db01-hero__main {
    grid-auto-rows: 190px;
  }

  .db01-channel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .db01-poster-grid,
  .db01-poster-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .db01-section {
    padding: 14px;
  }

  .db01-detail {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .db01-detail__cover {
    width: min(220px, 70vw);
  }

  .db01-detail__info h1 {
    font-size: 24px;
  }

  .db01-filter__row {
    grid-template-columns: 1fr;
  }

  .db01-site-grid {
    grid-template-columns: 1fr;
  }

  .db01-site-row {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .db01-site-row em {
    grid-column: 2;
  }
}

/* Template ads */
.theme-ad {
  width: min(1200px, calc(100vw - 32px));
  margin: 12px auto;
}

.theme-ad__list {
  display: grid;
  gap: 10px;
}

.theme-ad__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.theme-ad__image {
  display: block;
  width: 100%;
  height: 90px;
  object-fit: fill;
  border: 0;
}

.theme-ad:not(:has(.theme-ad__link)) {
  display: none;
}

.db01-search-hot {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #edf0f5;
}

.db01-search-hot > span {
  flex: 0 0 auto;
  color: var(--db01-red);
  font-size: 14px;
  font-weight: 700;
  line-height: 30px;
}

.db01-search-hot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 10px;
}

.db01-search-hot__links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #f6f7f9;
  color: #1f2937;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.db01-search-hot__links a:hover {
  background: var(--db01-red);
  color: #fff;
}

.db01-search-hot:not(:has(a)) {
  display: none;
}

@media (max-width: 760px) {
  .theme-ad {
    width: 100%;
    margin: 10px auto;
  }
}

@media (min-width: 861px) {
  .db01-column-page > .db01-wrap,
  .db01-detail-page > .db01-wrap,
  .db01-list-page > .db01-wrap,
  .db01-search-page > .db01-wrap,
  .db01-website-page > .db01-wrap {
    width: min(1200px, calc(100vw - 32px));
  }
}

.theme-float-ad {
  position: fixed;
  top: 118px;
  right: 16px;
  z-index: 80;
  width: 320px;
}

.theme-float-ad__list {
  display: grid;
  gap: 6px;
}

.theme-float-ad__item {
  display: grid;
  grid-template-columns: 280px 40px;
  width: 320px;
  min-height: 56px;
  overflow: hidden;
  background: #111827;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .24);
}

.theme-float-ad__link {
  display: block;
  width: 280px;
  height: 56px;
}

.theme-float-ad__image {
  display: block;
  width: 280px;
  height: 56px;
  object-fit: fill;
  border: 0;
}

.theme-float-ad__close {
  width: 40px;
  height: 56px;
  padding: 0;
  border: 0;
  background: #111827;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 56px;
  cursor: pointer;
}

.theme-float-ad__close:hover {
  background: #ef233c;
}

.theme-float-ad:not(:has(.theme-float-ad__item)) {
  display: none;
}

@media (max-width: 760px) {
  .theme-float-ad {
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding: 6px 8px;
  }

  .theme-float-ad__list {
    gap: 5px;
  }

  .theme-float-ad__item {
    grid-template-columns: minmax(0, 1fr) 40px;
    width: 100%;
    min-height: 0;
  }

  .theme-float-ad__link {
    width: 100%;
    height: auto;
  }

  .theme-float-ad__image {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 1;
  }

  .theme-float-ad__close {
    width: 40px;
    height: auto;
    min-height: 52px;
    line-height: 1;
  }
}

.db01-site-list-page {
  padding: 28px 0 48px;
}

.db01-site-list h1 {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.25;
}

.db01-site-model {
  margin-bottom: 26px;
  padding: 20px 22px;
  border: 1px solid var(--db01-line);
  background: #fff;
}

.db01-site-model .db01-section__head {
  margin-bottom: 12px;
}

.db01-site-model h2 {
  margin: 0;
  font-size: 22px;
}

.db01-site-text-list {
  display: grid;
}

.db01-site-text-item {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) 150px minmax(0, 1.4fr);
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--db01-line);
}

.db01-site-text-item:first-child {
  border-top: 0;
}

.db01-site-text-item strong {
  overflow: hidden;
  color: var(--db01-text);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.db01-site-text-item span {
  color: var(--db01-muted);
}

.db01-site-text-item p {
  overflow: hidden;
  margin: 0;
  color: #566176;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.db01-site-text-item:hover strong {
  color: var(--db01-red);
}

.db01-site-model--video .db01-site-text-item strong {
  color: #f15b2a;
}

.db01-site-model--website .db01-site-text-item strong {
  color: #0b8f72;
}

.db01-site-model--article .db01-site-text-item strong {
  color: #2d6cdf;
}

.db01-site-model--actor .db01-site-text-item strong {
  color: #a653d8;
}

.db01-site-model--comic .db01-site-text-item strong {
  color: #d83f6f;
}

.db01-site-model--novel .db01-site-text-item strong {
  color: #b7791f;
}

.db01-site-text-item:hover strong {
  filter: brightness(.82);
}

@media (max-width: 760px) {
  .db01-site-text-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* wild_03: Cupfox 03 visual skin. */
:root {
  --db01-red: #d65338;
  --db01-red-dark: #b9422a;
  --db01-text: #1d2129;
  --db01-muted: #86909c;
  --db01-line: #edf0f5;
  --db01-bg: #f7f8fa;
  --db01-card: #ffffff;
  --db01-shadow: 0 10px 26px rgba(18, 32, 68, .06);
  --db01-dark: #2f3033;
  --db01-dark-line: #edf0f5;
}

body {
  padding-bottom: 64px;
  letter-spacing: 0;
}

.db01-wrap {
  width: min(1200px, calc(100% - 32px));
}

.db01-header,
.db01-topbar,
.db01-searchbar {
  color: var(--db01-text);
  background: #fff;
}

.db01-header {
  border-bottom: 1px solid var(--db01-line);
  box-shadow: 0 3px 14px rgba(18, 32, 68, .04);
}

.db01-topbar__inner {
  min-height: 66px;
  gap: 24px;
}

.db01-logo {
  min-width: 144px;
  color: var(--db01-red);
}

.db01-logo__text {
  width: 144px;
  color: var(--db01-red);
  font-size: 22px;
  line-height: 36px;
}

.db01-nav {
  gap: 2px;
}

.db01-nav__link {
  height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  color: #5f6673;
  font-size: 14px;
  font-weight: 700;
}

.db01-nav__link:hover,
.db01-nav__link.is-active,
.db01-nav__link.active,
.db01-nav__more:has(.db01-nav__drop a.active) > .db01-nav__link {
  color: var(--db01-red);
  background: #fff1ed;
}

.db01-nav__link.is-active::after,
.db01-nav__link.active::after,
.db01-nav__more:has(.db01-nav__drop a.active) > .db01-nav__link::after {
  display: none;
}

.db01-nav__drop {
  top: calc(100% + 6px);
  border: 1px solid var(--db01-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--db01-shadow);
}

.db01-nav__drop a {
  color: #5f6673;
}

.db01-nav__drop a:hover,
.db01-nav__drop a.active {
  color: var(--db01-red);
  background: #fff1ed;
}

.db01-searchbar {
  border-top: 1px solid var(--db01-line);
}

.db01-searchbar__inner {
  min-height: 42px;
}

.db01-hotwords {
  color: var(--db01-muted);
}

.db01-hotwords > span {
  color: var(--db01-red);
}

.db01-page,
.db01-home,
.db01-list-page,
.db01-search-page,
.db01-detail-page,
.db01-column-page,
.db01-website-page {
  background: var(--db01-bg);
}

.db01-page {
  padding: 18px 0 30px;
}

.db01-section,
.db01-detail,
.db01-site-card,
.db01-filter,
.db01-reader,
.db01-search-hot,
.db01-website-search {
  border: 1px solid var(--db01-line);
  border-radius: 8px;
  background: var(--db01-card);
  box-shadow: var(--db01-shadow);
}

.db01-section {
  padding: 16px;
}

.db01-section + .db01-section {
  margin-top: 14px;
}

.db01-section__head {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--db01-line);
}

.db01-section__head h1,
.db01-section__head h2,
.db01-column-title {
  color: var(--db01-text);
}

.db01-section__head h2 {
  font-size: 20px;
}

.db01-section__head > a,
.db01-section__head > span {
  color: var(--db01-red);
}

.db01-poster-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px 12px;
}

.db01-poster__cover {
  aspect-ratio: 2 / 3;
  border-radius: 7px;
  background: #eef1f5;
}

.db01-poster__cover::after {
  background: rgba(0, 0, 0, .12);
}

.db01-poster__cover > span {
  left: 6px;
  bottom: 6px;
  padding: 0;
  border-radius: 0;
  color: #f6a600;
  background: transparent;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
}

.db01-poster h3 {
  margin-top: 8px;
  color: var(--db01-text);
  font-size: 14px;
}

.db01-poster h3 a:hover,
.db01-poster:hover h3 a {
  color: var(--db01-red);
}

.db01-poster p {
  color: var(--db01-muted);
  font-size: 12px;
}

.db01-video-banner {
  margin-top: 16px;
  margin-bottom: 14px;
}

.db01-video-banner__viewport {
  border: 1px solid var(--db01-line);
  border-radius: 8px;
  box-shadow: var(--db01-shadow);
}

.db01-video-banner__item {
  min-height: 300px;
  background: #2f3033;
}

.db01-video-banner__shade {
  background: rgba(10, 12, 18, .62);
}

.db01-video-banner__content {
  max-width: 500px;
}

.db01-video-banner__tags span,
.db01-video-banner__link {
  border-color: transparent;
  color: var(--db01-red);
  background: #fff1ed;
}

.db01-video-banner__link:hover {
  color: #fff;
  background: var(--db01-red);
}

.db01-video-banner__dots button.is-active {
  background: var(--db01-red);
}

.db01-video-banner__arrow {
  border-color: rgba(255, 255, 255, .22);
}

.db01-breadcrumb {
  margin-bottom: 14px;
  color: var(--db01-muted);
}

.db01-breadcrumb a {
  color: var(--db01-red);
}

.db01-channel,
.db01-filter,
.db01-sort,
.db01-episode-list,
.db01-detail__actions {
  gap: 8px;
}

.db01-channel__item,
.db01-filter__row a,
.db01-sort a,
.db01-episode-list a,
.db01-episode-list button,
.db01-detail__actions a,
.db01-page-link {
  border-color: transparent;
  border-radius: 999px;
  color: var(--db01-red);
  background: #fff1ed;
}

.db01-channel__item:hover,
.db01-channel__item.active,
.db01-filter__row a:hover,
.db01-filter__row a.active,
.db01-sort a:hover,
.db01-sort a.active,
.db01-episode-list a:hover,
.db01-episode-list a.active,
.db01-episode-list button:hover,
.db01-episode-list button.is-active,
.db01-detail__actions a:hover,
.db01-page-link:hover {
  color: #fff;
  background: var(--db01-red);
}

.db01-filter {
  padding: 14px 16px;
}

.db01-filter__row + .db01-filter__row {
  border-color: var(--db01-line);
}

.db01-filter__row strong {
  color: var(--db01-text);
}

.db01-search,
.db01-form input,
.db01-form textarea,
.db01-form select {
  border-color: var(--db01-line);
  border-radius: 999px;
  color: var(--db01-text);
  background: #fff;
}

.db01-search {
  height: 46px;
  max-width: 460px;
  padding-left: 18px;
  box-shadow: 0 4px 18px rgba(29, 33, 41, .12);
}

.db01-search::before {
  display: none;
}

.db01-search input {
  color: var(--db01-text);
}

.db01-search input::placeholder {
  color: #aab0ba;
}

.db01-search button,
.db01-btn,
.db01-play-btn {
  border-radius: 999px;
  color: #fff;
  background: var(--db01-red);
}

.db01-search button:hover,
.db01-btn:hover,
.db01-play-btn:hover {
  background: var(--db01-red-dark);
}

.db01-detail {
  gap: 22px;
  padding: 18px;
}

.db01-detail__cover {
  border-radius: 7px;
}

.db01-detail h1 {
  font-size: 25px;
}

.db01-detail__sub,
.db01-meta,
.db01-desc,
.db01-intro,
.db01-detail-body {
  color: #4e5969;
}

.db01-score {
  border-color: #ffe4b0;
  color: #b97800;
  background: #fff8e7;
}

.db01-player {
  overflow: hidden;
  border: 1px solid var(--db01-line);
  border-radius: 4px;
  background: #05070c;
  box-shadow: var(--db01-shadow);
}

.db01-player-source-section {
  margin-top: 14px;
}

.db01-pagination {
  gap: 8px;
}

.db01-pagination span {
  color: var(--db01-muted);
}

.db01-adjacent a {
  border-color: var(--db01-line);
  border-radius: 8px;
  color: #5f6673;
  background: #fff;
}

.db01-adjacent a:hover {
  border-color: #ffd6cc;
  color: var(--db01-red);
  background: #fff1ed;
}

.db01-site-card,
.db01-site-row,
.db01-site-text-item {
  border-color: var(--db01-line);
  background: #fff;
}

.db01-footer {
  margin-top: 0;
  padding: 22px 0 78px;
  border-top: 1px solid var(--db01-line);
  color: var(--db01-muted);
  background: #fff;
}

.db01-footer a:hover {
  color: var(--db01-red);
}

@media (max-width: 980px) {
  .db01-poster-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .db01-topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
    gap: 8px;
  }

  .db01-search {
    width: min(100%, 460px);
  }

  .db01-nav {
    width: 100%;
    overflow-x: auto;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 58px;
  }

  .db01-wrap {
    width: min(100%, calc(100% - 20px));
  }

  .db01-page {
    padding: 10px 0 20px;
  }

  .db01-section,
  .db01-detail,
  .db01-filter,
  .db01-site-card,
  .db01-reader {
    border-radius: 8px;
  }

  .db01-poster-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 8px;
  }

  .db01-video-banner__item {
    min-height: 260px;
  }

  .db01-video-banner__content {
    padding: 22px 18px;
  }

  .db01-video-banner__summary {
    display: none;
  }

  .db01-detail {
    display: block;
  }

  .db01-detail__cover {
    width: min(170px, 48%);
    margin: 0 auto 16px;
  }
}
