:root {
  --st-bg: #0b0d10;
  --st-panel: #12161c;
  --st-panel-2: #171c24;
  --st-text: #eef2f7;
  --st-muted: #94a3b8;
  --st-border: #253041;
  --st-accent: #f59e0b;
  --st-container: 1180px;
  --st-radius: 10px;
}
* { box-sizing: border-box; }
html { background: var(--st-bg); color: var(--st-text); }
body { margin: 0; font-family: Arial, "Microsoft Yahei", sans-serif; background: var(--st-bg); color: var(--st-text); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
.st-body { min-height: 100vh; }
.st-container { width: min(var(--st-container), calc(100% - 24px)); margin: 0 auto; }
.st-main { padding: 14px 0 34px; }
.st-hidden { display: none; }
.st-text-muted { color: var(--st-muted); }
.st-header { position: sticky; top: 0; z-index: 50; background: rgba(11,13,16,.96); border-bottom: 1px solid var(--st-border); }
.st-header__inner { min-height: 58px; display: flex; align-items: center; gap: 18px; }
.st-logo { font-size: 22px; font-weight: 800; color: var(--st-accent); white-space: nowrap; }
.st-nav { display: flex; align-items: center; gap: 14px; overflow-x: auto; scrollbar-width: none; flex: 1; }
.st-nav::-webkit-scrollbar { display: none; }
.st-nav__link { color: var(--st-muted); white-space: nowrap; font-size: 14px; }
.st-nav__link:hover, .st-nav__link.is-active { color: var(--st-text); }
.st-header__actions { display: flex; align-items: center; gap: 8px; }
.st-header-search { display: block; }
.st-header-search__input, .st-search__input { width: 210px; border: 1px solid var(--st-border); background: var(--st-panel); color: var(--st-text); border-radius: 999px; padding: 9px 12px; outline: none; }
.st-icon-btn, .st-btn, .st-filter__btn { border: 1px solid var(--st-border); background: var(--st-panel); color: var(--st-text); border-radius: 999px; padding: 8px 12px; cursor: pointer; }
.st-icon-btn:hover, .st-btn:hover, .st-filter__btn:hover { border-color: var(--st-accent); }
.st-mobile-menu { position: relative; display: none; }
.st-dropdown { display: none; position: absolute; top: calc(100% + 8px); right: 0; min-width: 160px; padding: 8px; background: var(--st-panel-2); border: 1px solid var(--st-border); border-radius: var(--st-radius); box-shadow: 0 12px 32px rgba(0,0,0,.35); z-index: 60; }
.st-dropdown.is-open { display: block; }
.st-dropdown__item { display: block; padding: 9px 10px; border-radius: 8px; color: var(--st-muted); white-space: nowrap; }
.st-dropdown__item:hover { background: var(--st-panel); color: var(--st-text); }
.st-search { display: none; padding: 0 0 12px; }
.st-search.is-open { display: block; }
.st-search__form { display: flex; gap: 8px; }
.st-search__input { width: 100%; border-radius: 8px; }
.st-section, .st-row, .st-hot-strip, .st-meta-panel, .st-tabs, .st-page-header, .st-toolbar, .st-play-stage { background: var(--st-panel); border: 1px solid var(--st-border); border-radius: var(--st-radius); }
.st-section, .st-row, .st-hot-strip { margin: 14px 0; padding: 14px; }
.st-section__head, .st-row__head, .st-hot-strip__head, .st-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.st-section__title, .st-row__title, .st-hot-strip__title, .st-page-title, .st-play-title { margin: 0; font-size: 18px; line-height: 1.35; }
.st-section__more, .st-row__more, .st-hot-strip__more { color: var(--st-accent); font-size: 13px; white-space: nowrap; }
.st-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; margin-top: 12px; }
.st-grid--compact { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.st-card, .st-card--ad { min-width: 0; }
.st-card__link { display: block; }
.st-card__thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 8px; background: #07090c; border: 1px solid rgba(255,255,255,.04); }
.st-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.st-card__title { margin: 7px 0 0; color: var(--st-text); font-size: 13px; line-height: 1.35; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.st-card__badge { position: absolute; bottom: 5px; max-width: 70%; padding: 3px 6px; border-radius: 999px; background: rgba(0,0,0,.68); color: #fff; font-size: 11px; }
.st-card__badge--left { left: 5px; }
.st-card__badge--right { right: 5px; }
.st-card-h { display: grid; grid-template-columns: 96px 1fr; gap: 10px; align-items: center; padding: 8px; background: var(--st-panel); border: 1px solid var(--st-border); border-radius: var(--st-radius); }
.st-card-h__thumb { aspect-ratio: 16 / 9; overflow: hidden; border-radius: 8px; background: #07090c; }
.st-card-h__thumb img { width: 100%; height: 100%; object-fit: cover; }
.st-card-h__title { color: var(--st-text); font-size: 13px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.st-page-header { padding: 18px; margin-bottom: 14px; }
.st-page-subtitle { margin: 6px 0 0; color: var(--st-muted); }
.st-toolbar { position: relative; padding: 12px; margin-bottom: 14px; }
.st-toolbar__info { color: var(--st-muted); font-size: 13px; }
.st-filter { position: relative; }
.st-play-wrap { max-width: 1040px; }
.st-play-stage { padding: 8px; margin-bottom: 12px; background: #05070a; }
.aspect-w-16 { position: relative; width: 100%; padding-bottom: calc(9 / 16 * 100%); }
.aspect-w-16 > * { position: absolute; inset: 0; width: 100%; height: 100%; }
.plyr__video-wrapper { overflow: hidden; height: 100%; background: #000; border-radius: 8px; }
.MacPlayer, #playleft, iframe { max-width: 100%; }
.st-play-head { display: grid; gap: 10px; margin: 12px 0; }
.st-meta-panel, .st-tabs { padding: 12px; }
.st-meta-row { display: flex; gap: 10px; padding: 6px 0; color: var(--st-muted); }
.st-meta-row__label { min-width: 42px; color: var(--st-text); font-weight: 700; }
.st-meta-row__value a { color: var(--st-accent); }
.st-tabs__nav { display: flex; gap: 8px; margin-bottom: 10px; }
.st-tabs__btn { border: 1px solid var(--st-border); background: transparent; color: var(--st-muted); border-radius: 999px; padding: 7px 12px; cursor: pointer; }
.st-tabs__btn.is-active { color: #111827; background: var(--st-accent); border-color: var(--st-accent); }
.st-tabs__panel { display: none; }
.st-tabs__panel.is-active { display: block; }
.st-hot-strip__scroll { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin-top: 12px; }
.st-breadcrumb { color: var(--st-muted); font-size: 13px; margin: 10px 0; }
.st-breadcrumb a { color: var(--st-accent); }
.st-paging, .pagination { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin: 18px 0; }
.st-paging a, .st-paging span, .pagination a, .pagination span { padding: 8px 11px; border: 1px solid var(--st-border); border-radius: 8px; background: var(--st-panel); color: var(--st-muted); }
.st-footer { margin-top: 32px; border-top: 1px solid var(--st-border); padding: 24px 0 34px; color: var(--st-muted); }
.st-footer__inner { display: grid; gap: 12px; }
.st-footer__brand { color: var(--st-text); font-weight: 800; }
.st-footer__tags { display: flex; flex-wrap: wrap; gap: 8px 12px; font-size: 13px; }
.st-footer__tags a { color: var(--st-muted); }
.st-gotop { position: fixed; right: 14px; bottom: 14px; z-index: 40; }
.st-gotop a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--st-border); background: var(--st-panel); color: var(--st-accent); }
#ppap { position: relative; z-index: 9999; pointer-events: none; }
.ppap { position: fixed; z-index: 9999; pointer-events: auto; }
.ppap img { width: 60px; height: 60px; border-radius: 10px; box-shadow: 0 6px 20px rgba(0,0,0,.45); }
.ppap.zuo1 { top: 20%; left: 1%; } .ppap.zuo2 { top: 31%; left: 1%; } .ppap.zuo3 { top: 42%; left: 1%; } .ppap.zuo4 { top: 53%; left: 1%; } .ppap.zuo5 { top: 64%; left: 1%; } .ppap.zuo6 { top: 75%; left: 1%; }
.ppap.you1 { top: 20%; right: 1%; } .ppap.you2 { top: 31%; right: 1%; } .ppap.you3 { top: 42%; right: 1%; } .ppap.you4 { top: 53%; right: 1%; } .ppap.you5 { top: 64%; right: 1%; } .ppap.you6 { top: 75%; right: 1%; }
.ppap.xia1 { bottom: 2%; left: 5%; } .ppap.xia2 { bottom: 2%; left: 29%; } .ppap.xia3 { bottom: 2%; left: 53%; } .ppap.xia4 { bottom: 2%; left: 78%; }
.ppap.shang1 { top: 1%; left: 5%; } .ppap.shang2 { top: 1%; left: 29%; } .ppap.shang3 { top: 1%; left: 53%; } .ppap.shang4 { top: 1%; left: 78%; }
.uhghogro, .bba-container2 { width: min(var(--st-container), calc(100% - 24px)); margin: 8px auto !important; }
.uhghogro ul, .uhghogro li { margin: 0; padding: 0; list-style: none; }
.uhghogro img { border-radius: 8px; }
.bba-container2 .col-6.adwz { display: inline-block; width: calc(50% - 8px); margin: 4px; border-radius: 8px; background: rgba(245,158,11,.14) !important; border: 1px solid rgba(245,158,11,.25); line-height: 34px; height: 34px; overflow: hidden; }
.bba-container2 .text-white { color: #fbbf24 !important; }
.xiaotubiao-title { color: var(--st-muted) !important; font-size: 11px !important; }
@media (max-width: 1024px) { .st-grid, .st-grid--compact { grid-template-columns: repeat(4, minmax(0, 1fr)); } .st-hot-strip__scroll { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 760px) { .st-container { width: min(100% - 18px, var(--st-container)); } .st-header__inner { gap: 10px; } .st-nav, .st-header-search { display: none; } .st-mobile-menu { display: block; } .st-grid, .st-grid--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; } .st-hot-strip__scroll { grid-template-columns: repeat(2, minmax(0, 1fr)); } .st-section, .st-row, .st-hot-strip, .st-page-header, .st-toolbar { padding: 10px; } .ppap img { width: 50px; height: 50px; } }.st-rank-shortcuts { margin: 14px 0; padding: 12px; border: 1px solid var(--st-border); border-radius: var(--st-radius); background: var(--st-panel); }
.st-rank-shortcuts__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.st-rank-shortcuts__title { margin: 0; font-size: 17px; }
.st-rank-shortcuts__more, .st-rank-shortcuts__tab { color: var(--st-accent); }
.st-rank-shortcuts__tabs, .st-rank-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.st-rank-shortcuts__tab, .st-rank-tabs a, .st-rank-tabs__item { padding: 7px 10px; border: 1px solid var(--st-border); border-radius: 999px; color: var(--st-muted); background: var(--st-panel-2); font-size: 13px; }
.st-rank-shortcuts__tab--accent, .st-rank-tabs .is-active, .st-rank-tabs__item.is-active { color: #111827; background: var(--st-accent); border-color: var(--st-accent); }
.st-paging-mobile { display: none; }
.st-paging-desktop { display: flex; }
.st-paging__jump input { width: 70px; padding: 8px; border: 1px solid var(--st-border); border-radius: 8px; background: var(--st-panel); color: var(--st-text); }
.st-row__scroll { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.st-card-row { display: block; }
.st-card-row__thumb { aspect-ratio: 16 / 9; border-radius: 8px; overflow: hidden; background: #07090c; }
.st-card-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.st-card-row__title { margin-top: 7px; font-size: 13px; color: var(--st-text); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
@media (max-width: 760px) { .st-paging-mobile { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin: 16px 0; } .st-paging-desktop { display: none; } .st-row__scroll { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
