/* ==========================================================================
   ShortTV 短剧主题 - 页面样式（首页 / 列表 / 详情 / 播放 / 搜索 / 会员 / 评论 / 页脚）
   ========================================================================== */

/* ---------- 页脚 ---------- */
.st-footer{
    margin-top:40px;
    padding:28px 0 22px;
    border-top:1px solid var(--c-border);
    background:var(--c-surface);
}
.st-footer__links{
    display:flex;flex-wrap:wrap;gap:8px 18px;
    padding-bottom:14px;
    font-size:13px;color:var(--c-text-muted);
}
.st-footer__links--friend{
    padding:12px 0 0;
    border-top:1px dashed var(--c-border);
}
.st-footer__bottom{
    margin-top:14px;padding-top:14px;
    border-top:1px solid var(--c-border);
    font-size:13px;color:var(--c-text-muted);line-height:1.9;
}
.st-footer__meta{display:flex;flex-wrap:wrap;align-items:center;gap:6px}
.st-footer__meta b{color:var(--c-accent)}

/* ==========================================================================
   首页
   ========================================================================== */
.st-home-channels{
    position:sticky;top:0;z-index:150;
    padding:10px 0;
    background:color-mix(in srgb,var(--c-bg) 90%,transparent);
    backdrop-filter:saturate(180%) blur(12px);
    -webkit-backdrop-filter:saturate(180%) blur(12px);
    border-bottom:1px solid var(--c-border);
}
@media (min-width:1024px){
    .st-home-channels{position:static;padding:14px 0;border-bottom:0;background:transparent;backdrop-filter:none}
}

/* 头图 Banner */
.st-hero{
    position:relative;
    margin:14px 0 6px;
    border-radius:var(--radius-xl);
    overflow:hidden;
    background:var(--c-surface-2);
}
.st-hero__slides{position:relative}
.st-hero__slide{
    position:absolute;inset:0;
    opacity:0;visibility:hidden;
    transition:opacity .5s var(--ease),visibility .5s var(--ease);
}
.st-hero__slide.is-active{position:relative;opacity:1;visibility:visible}
.st-hero__slide img{
    width:100%;height:100%;object-fit:cover;display:block;
    aspect-ratio:16 / 9;
}
@media (max-width:1023px){ .st-hero__slide img{aspect-ratio:16 / 10} }
.st-hero__shade{
    position:absolute;inset:0;
    background:linear-gradient(90deg,rgba(6,6,12,.86) 0%,rgba(6,6,12,.55) 42%,rgba(6,6,12,.05) 100%);
}
.st-hero__info{
    position:absolute;left:0;bottom:0;
    padding:18px 18px 20px;
    max-width:78%;
    color:#fff;
}
@media (min-width:1024px){ .st-hero__info{padding:34px 40px 36px;max-width:56%} }
.st-hero__badges{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:10px}
.st-hero__title{
    font-family:var(--font-head);
    font-size:22px;font-weight:800;line-height:1.25;
    margin-bottom:8px;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
@media (min-width:1024px){ .st-hero__title{font-size:34px} }
.st-hero__desc{
    font-size:13px;color:rgba(255,255,255,.78);line-height:1.7;
    margin-bottom:14px;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.st-hero__actions{display:flex;gap:10px;flex-wrap:wrap}
.st-hero__btn{
    height:40px;padding:0 22px;
    display:inline-flex;align-items:center;gap:7px;
    border-radius:var(--radius-pill);
    font-size:14px;font-weight:600;
    background:#fff;color:#121212;
    transition:transform var(--dur) var(--ease);
}
.st-hero__btn:hover{color:#121212;transform:translateY(-1px)}
.st-hero__btn svg{width:16px;height:16px}
.st-hero__btn--ghost{background:rgba(255,255,255,.16);color:#fff;backdrop-filter:blur(8px)}
.st-hero__btn--ghost:hover{color:#fff;background:rgba(255,255,255,.26)}
.st-hero__dots{
    position:absolute;right:16px;bottom:16px;
    display:flex;gap:6px;
}
.st-hero__dot{
    width:7px;height:7px;border-radius:999px;
    background:rgba(255,255,255,.45);
    transition:width var(--dur) var(--ease),background-color var(--dur) var(--ease);
}
.st-hero__dot.is-active{width:20px;background:#fff}
.st-hero__arrow{
    position:absolute;top:50%;transform:translateY(-50%);
    width:38px;height:38px;
    display:inline-flex;align-items:center;justify-content:center;
    border-radius:50%;
    background:rgba(10,10,16,.42);
    color:#fff;
    border:1px solid rgba(255,255,255,.22);
    cursor:pointer;
    opacity:0;
    transition:opacity var(--dur) var(--ease),background-color var(--dur) var(--ease);
}
.st-hero:hover .st-hero__arrow{opacity:1}
.st-hero__arrow:hover{background:rgba(10,10,16,.74)}
.st-hero__arrow:focus-visible{opacity:1}
.st-hero__arrow--prev{left:14px}
.st-hero__arrow--next{right:14px}
@media (max-width:1023px){ .st-hero__arrow{display:none} }

/* 首页双栏（PC） */
.st-home-cols{display:block}
@media (min-width:1024px){
    .st-home-cols{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:28px;align-items:start}
}
.st-side-sticky{position:sticky;top:calc(var(--header-h) + 18px)}

/* 榜单条目 */
.st-ranklist{counter-reset:rank}
.st-rank-item{
    display:flex;align-items:center;gap:12px;
    padding:9px 0;
    border-bottom:1px solid var(--c-border);
}
.st-rank-item:last-child{border-bottom:0}
.st-rank-item__no{
    flex:0 0 auto;width:24px;
    font-family:var(--font-head);
    font-size:16px;font-weight:800;font-style:italic;
    color:var(--c-text-muted);text-align:center;
}
.st-rank-item:nth-child(1) .st-rank-item__no{color:#ff2d55}
.st-rank-item:nth-child(2) .st-rank-item__no{color:#ff7a00}
.st-rank-item:nth-child(3) .st-rank-item__no{color:#ffb400}
.st-rank-item__pic{
    flex:0 0 auto;width:54px;height:72px;
    border-radius:var(--radius-sm);overflow:hidden;background:var(--c-surface-2);
}
.st-rank-item__pic img{width:100%;height:100%;object-fit:cover}
.st-rank-item__body{flex:1 1 auto;min-width:0}
.st-rank-item__name{
    font-size:14px;font-weight:600;
    overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.st-rank-item__meta{
    margin-top:4px;font-size:12px;color:var(--c-text-muted);
    overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.st-rank-item__hot{
    flex:0 0 auto;font-size:12px;color:var(--c-accent);font-weight:600;
}

/* Feed 剧集卡（大图） */
.st-feed{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
@media (min-width:560px){ .st-feed{grid-template-columns:repeat(3,minmax(0,1fr))} }
@media (min-width:768px){ .st-feed{grid-template-columns:repeat(4,minmax(0,1fr));gap:16px} }
@media (min-width:1024px){ .st-feed{grid-template-columns:repeat(5,minmax(0,1fr))} }
@media (min-width:1280px){ .st-feed{grid-template-columns:repeat(6,minmax(0,1fr));gap:20px} }

/* ==========================================================================
   筛选 / 列表页
   ========================================================================== */
.st-filter{
    background:var(--c-surface);
    border:1px solid var(--c-border);
    border-radius:var(--radius-lg);
    padding:6px 14px;
    margin-bottom:18px;
}
.st-filter__row{
    display:flex;gap:10px;
    padding:9px 0;
    border-bottom:1px solid var(--c-border);
}
.st-filter__row:last-child{border-bottom:0}
.st-filter__label{
    flex:0 0 auto;width:56px;
    font-size:13px;color:var(--c-text-muted);
    line-height:26px;
}
.st-filter__opts{
    display:flex;flex-wrap:wrap;gap:8px 14px;
    flex:1 1 auto;min-width:0;
}
.st-filter__opt{
    font-size:13px;line-height:26px;
    color:var(--c-text-muted);
    white-space:nowrap;
}
.st-filter__opt:hover{color:var(--c-accent)}
.st-filter__opt.is-active{color:var(--c-accent);font-weight:700}
.st-filter__more{
    background:none;border:0;color:var(--c-text-muted);font-size:13px;line-height:26px;
}

/* 排序栏 */
.st-sortbar{
    display:flex;align-items:center;gap:16px;
    margin-bottom:14px;
    font-size:14px;
}
.st-sortbar__item{color:var(--c-text-muted)}
.st-sortbar__item.is-active{color:var(--c-accent);font-weight:700}
.st-sortbar__count{margin-left:auto;font-size:13px;color:var(--c-text-muted)}

/* ==========================================================================
   详情页
   ========================================================================== */
.st-detail-hero{
    position:relative;
    margin:-1px -14px 0;
    padding:22px 14px 20px;
    overflow:hidden;
}
@media (min-width:1024px){ .st-detail-hero{margin:0;border-radius:var(--radius-xl);padding:32px} }
.st-detail-hero__bg{
    position:absolute;inset:0;
    background-size:cover;background-position:center;
    filter:blur(28px) saturate(140%);
    transform:scale(1.15);
    opacity:.5;
}
.st-detail-hero__shade{
    position:absolute;inset:0;
    background:linear-gradient(180deg,color-mix(in srgb,var(--c-bg) 55%,transparent),var(--c-bg) 92%);
}
.st-detail-hero__inner{
    position:relative;
    display:flex;gap:16px;align-items:flex-start;
}
@media (min-width:1024px){ .st-detail-hero__inner{gap:26px} }
.st-detail-poster{
    flex:0 0 auto;
    width:118px;aspect-ratio:var(--poster-ratio);
    border-radius:var(--radius);
    overflow:hidden;
    background:var(--c-surface-2);
    box-shadow:var(--shadow-lg);
}
@media (min-width:1024px){ .st-detail-poster{width:198px} }
.st-detail-poster img{width:100%;height:100%;object-fit:cover}
.st-detail-info{flex:1 1 auto;min-width:0}
.st-detail-info h1{
    font-family:var(--font-head);
    font-size:20px;font-weight:800;line-height:1.3;
    margin-bottom:8px;
}
@media (min-width:1024px){ .st-detail-info h1{font-size:30px} }
.st-detail-meta{
    display:flex;flex-wrap:wrap;gap:6px 10px;
    font-size:13px;color:var(--c-text-muted);
    margin-bottom:12px;
}
.st-detail-tags{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:14px}
.st-detail-actions{display:flex;flex-wrap:wrap;gap:10px}
.st-detail-stat{
    display:flex;flex-wrap:wrap;gap:14px;
    margin-top:14px;font-size:13px;color:var(--c-text-muted);
}
.st-detail-stat b{color:var(--c-text);font-weight:600}
.st-detail-stat .st-js-hits{color:var(--c-accent);font-weight:700}

.st-score{display:flex;align-items:center;gap:8px;margin-bottom:12px}
.st-score__val{
    font-family:var(--font-head);
    font-size:24px;font-weight:800;color:var(--st-gold);
    line-height:1;
}
.st-score__stars{display:flex;gap:3px}
.st-score__star{color:var(--c-border);cursor:pointer;line-height:0}
.st-score__star svg{width:17px;height:17px;fill:currentColor;stroke:none}
.st-score__star.is-on{color:var(--st-gold)}

/* 简介折叠 */
.st-plot{
    position:relative;
    font-size:14px;line-height:1.85;color:var(--c-text-muted);
    max-height:96px;overflow:hidden;
    transition:max-height .3s var(--ease);
}
.st-plot.is-open{max-height:none}
.st-plot__toggle{
    margin-top:6px;font-size:13px;color:var(--c-accent);font-weight:600;
}

/* 播放源 / 剧集 */
.st-playfrom{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:14px}
.st-playfrom__item{
    padding:6px 14px;border-radius:var(--radius-pill);
    font-size:13px;font-weight:600;
    background:var(--c-surface-2);color:var(--c-text-muted);
}
.st-playfrom__item.is-active{
    background:linear-gradient(135deg,var(--c-accent),var(--st-violet));
    color:var(--c-accent-ink);
}
.st-eps{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(74px,1fr));
    gap:8px;
    max-height:320px;overflow-y:auto;
    padding-right:4px;
}
.st-eps__item{
    display:flex;align-items:center;justify-content:center;
    height:36px;padding:0 8px;
    border-radius:var(--radius-sm);
    background:var(--c-surface-2);
    font-size:13px;
    overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
    transition:all var(--dur) var(--ease);
}
.st-eps__item:hover{background:var(--c-border);color:var(--c-text)}
.st-eps__item.is-active{
    background:linear-gradient(135deg,var(--c-accent),var(--st-violet));
    color:var(--c-accent-ink);font-weight:700;
}
.st-eps__item.is-lock{opacity:.55}

/* 演员 */
.st-actors{display:flex;flex-wrap:wrap;gap:14px}
.st-actors__item{width:66px;text-align:center}
.st-actors__pic{
    width:66px;height:66px;border-radius:50%;overflow:hidden;
    background:var(--c-surface-2);margin-bottom:6px;
}
.st-actors__pic img{width:100%;height:100%;object-fit:cover}
.st-actors__name{font-size:12px;color:var(--c-text-muted);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

/* ==========================================================================
   播放页
   ========================================================================== */
.st-player{
    position:relative;
    background:#000;
    border-radius:0;
    overflow:hidden;
}
@media (min-width:1024px){ .st-player{border-radius:var(--radius-lg)} }
.st-player__stage{position:relative;width:100%;aspect-ratio:16 / 9;background:#000}
.st-player__stage > *{width:100%;height:100%}
.st-player__bar{
    display:flex;align-items:center;gap:10px;
    padding:10px 0 2px;
    flex-wrap:wrap;
}
.st-player__title{
    flex:1 1 auto;min-width:0;
    font-size:15px;font-weight:600;
    overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.st-player__tools{display:flex;gap:8px;flex-wrap:wrap}

.st-epbar{
    position:fixed;left:0;right:0;bottom:calc(var(--tabbar-h) + env(safe-area-inset-bottom,0px));
    z-index:180;
    display:flex;align-items:center;gap:10px;
    padding:10px 14px;
    background:color-mix(in srgb,var(--c-surface) 94%,transparent);
    backdrop-filter:blur(14px);
    border-top:1px solid var(--c-border);
}
@media (min-width:1024px){ .st-epbar{position:static;border-radius:var(--radius-lg);border:1px solid var(--c-border);margin-top:14px} }
.st-epbar__list{
    display:flex;gap:8px;overflow-x:auto;flex:1 1 auto;
    scrollbar-width:none;
}
.st-epbar__list::-webkit-scrollbar{display:none}
.st-epbar__item{
    flex:0 0 auto;
    min-width:52px;height:34px;padding:0 10px;
    display:inline-flex;align-items:center;justify-content:center;
    border-radius:var(--radius-sm);
    background:var(--c-surface-2);font-size:13px;
}
.st-epbar__item.is-active{background:var(--c-accent);color:var(--c-accent-ink);font-weight:700}

/* ==========================================================================
   搜索页
   ========================================================================== */
.st-searchbox{position:relative;margin-bottom:16px}
.st-searchbox__inner{
    display:flex;align-items:center;gap:8px;
    height:48px;padding:0 6px 0 16px;
    border-radius:var(--radius-pill);
    background:var(--c-surface-2);
    border:1px solid transparent;
}
.st-searchbox__inner:focus-within{border-color:var(--c-accent);background:var(--c-surface)}
.st-searchbox input{flex:1 1 auto;min-width:0;height:100%;border:0;background:transparent;outline:none;font-size:15px}
.st-searchbox__btn{
    height:38px;padding:0 22px;border-radius:var(--radius-pill);
    background:linear-gradient(135deg,var(--c-accent),var(--st-violet));
    color:var(--c-accent-ink);font-size:14px;font-weight:600;
}
.st-searchbox__sug{
    position:absolute;left:0;right:0;top:calc(100% + 6px);
    background:var(--c-surface);
    border:1px solid var(--c-border);
    border-radius:var(--radius);
    box-shadow:var(--shadow-lg);
    overflow:hidden;display:none;z-index:120;
}
.st-searchbox__sug.is-show{display:block}
.st-searchbox__sug a{display:block;padding:10px 16px;font-size:14px}
.st-searchbox__sug a:hover{background:var(--c-surface-2)}

.st-hotwords{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:20px}
.st-hotwords a{
    padding:5px 12px;border-radius:var(--radius-pill);
    background:var(--c-surface-2);font-size:13px;color:var(--c-text-muted);
}
.st-hotwords a:hover{color:var(--c-accent);background:var(--c-border)}

/* ==========================================================================
   会员中心
   ========================================================================== */
.st-user{display:block}
@media (min-width:1024px){
    .st-user{display:grid;grid-template-columns:220px minmax(0,1fr);gap:26px;align-items:start}
}
.st-usermenu{
    background:var(--c-surface);
    border:1px solid var(--c-border);
    border-radius:var(--radius-lg);
    overflow:hidden;
    margin-bottom:18px;
}
@media (min-width:1024px){ .st-usermenu{position:sticky;top:calc(var(--header-h) + 18px);margin-bottom:0} }
.st-usermenu__head{
    display:flex;align-items:center;gap:12px;
    padding:16px;
    background:linear-gradient(135deg,var(--c-accent),var(--st-violet));
    color:var(--c-accent-ink);
}
.st-usermenu__avatar{
    width:48px;height:48px;border-radius:50%;overflow:hidden;
    background:rgba(255,255,255,.24);flex:0 0 auto;
}
.st-usermenu__avatar img{width:100%;height:100%;object-fit:cover}
.st-usermenu__name{font-size:15px;font-weight:700;line-height:1.3}
.st-usermenu__sub{font-size:12px;opacity:.85}
.st-usermenu__list{display:flex;flex-wrap:wrap;padding:8px}
@media (min-width:1024px){ .st-usermenu__list{flex-direction:column;flex-wrap:nowrap} }
.st-usermenu__item{
    display:flex;align-items:center;gap:9px;
    padding:10px 12px;border-radius:var(--radius-sm);
    font-size:14px;color:var(--c-text-muted);
}
.st-usermenu__item svg{width:17px;height:17px;flex:0 0 auto}
.st-usermenu__item:hover{background:var(--c-surface-2);color:var(--c-text)}
.st-usermenu__item.is-active{background:color-mix(in srgb,var(--c-accent) 12%,transparent);color:var(--c-accent);font-weight:700}

.st-stat-cards{
    display:grid;grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;margin-bottom:20px;
}
@media (min-width:768px){ .st-stat-cards{grid-template-columns:repeat(4,minmax(0,1fr))} }
.st-stat-card{
    padding:16px;border-radius:var(--radius-lg);
    background:var(--c-surface);border:1px solid var(--c-border);
}
.st-stat-card__num{
    font-family:var(--font-head);font-size:24px;font-weight:800;
    color:var(--c-accent);
}
.st-stat-card__label{font-size:13px;color:var(--c-text-muted);margin-top:2px}

.st-panel{
    background:var(--c-surface);
    border:1px solid var(--c-border);
    border-radius:var(--radius-lg);
    padding:16px;
    margin-bottom:18px;
}
.st-panel__head{
    display:flex;align-items:center;justify-content:space-between;
    gap:12px;margin-bottom:14px;
}
.st-panel__title{font-family:var(--font-head);font-size:16px;font-weight:700}

.st-table{width:100%;font-size:14px}
.st-table th,.st-table td{
    padding:11px 10px;text-align:left;
    border-bottom:1px solid var(--c-border);
}
.st-table th{font-size:13px;color:var(--c-text-muted);font-weight:600;white-space:nowrap}
.st-table tr:last-child td{border-bottom:0}
.st-table__wrap{overflow-x:auto}
.st-table img.st-table__pic{width:44px;height:58px;object-fit:cover;border-radius:6px}

/* 登录注册 */
.st-auth{
    max-width:420px;margin:26px auto;
    background:var(--c-surface);
    border:1px solid var(--c-border);
    border-radius:var(--radius-xl);
    padding:26px 22px;
}
.st-auth__title{font-family:var(--font-head);font-size:22px;font-weight:800;text-align:center;margin-bottom:6px}
.st-auth__sub{text-align:center;font-size:13px;color:var(--c-text-muted);margin-bottom:22px}
.st-auth__tabs{display:flex;gap:8px;margin-bottom:20px;justify-content:center}
.st-auth__tab{
    padding:6px 18px;border-radius:var(--radius-pill);
    font-size:14px;color:var(--c-text-muted);background:var(--c-surface-2);
}
.st-auth__tab.is-active{background:var(--c-accent);color:var(--c-accent-ink);font-weight:600}
.st-auth__foot{margin-top:16px;text-align:center;font-size:13px;color:var(--c-text-muted)}

/* ==========================================================================
   评论 / 留言
   ========================================================================== */
.st-comment__form{
    display:flex;gap:10px;margin-bottom:18px;
}
.st-comment__form textarea{flex:1 1 auto}
.st-comment__item{
    display:flex;gap:12px;
    padding:14px 0;
    border-bottom:1px solid var(--c-border);
}
.st-comment__item:last-child{border-bottom:0}
.st-comment__avatar{
    width:40px;height:40px;border-radius:50%;overflow:hidden;flex:0 0 auto;
    background:var(--c-surface-2);
}
.st-comment__avatar img{width:100%;height:100%;object-fit:cover}
.st-comment__body{flex:1 1 auto;min-width:0}
.st-comment__top{display:flex;align-items:center;gap:8px;margin-bottom:4px}
.st-comment__user{font-size:14px;font-weight:600}
.st-comment__time{font-size:12px;color:var(--c-text-muted)}
.st-comment__text{font-size:14px;line-height:1.75;color:var(--c-text);word-break:break-word}
.st-comment__reply{
    margin-top:8px;padding:10px 12px;
    border-radius:var(--radius-sm);
    background:var(--c-surface-2);
    font-size:13px;color:var(--c-text-muted);line-height:1.7;
}
.st-comment__tools{display:flex;align-items:center;gap:14px;margin-top:8px}
.st-comment__tool{
    display:inline-flex;align-items:center;gap:4px;
    font-size:12px;color:var(--c-text-muted);
    transition:color var(--dur) var(--ease);
}
.st-comment__tool:hover{color:var(--c-accent)}
.st-comment__tool svg{width:14px;height:14px}

/* 评分人数 / 顶踩 */
.st-detail-digg{display:flex;gap:10px;margin-top:12px}
.st-detail-digg__item{
    display:inline-flex;align-items:center;gap:6px;
    height:34px;padding:0 14px;border-radius:var(--radius-pill);
    background:var(--c-surface-2);font-size:13px;color:var(--c-text-muted);
}
.st-detail-digg__item:hover{color:var(--c-accent);background:var(--c-border)}
.st-detail-digg__item svg{width:15px;height:15px}

/* 分享 */
.st-share{display:flex;gap:8px;flex-wrap:wrap}
.st-share__item{
    display:inline-flex;align-items:center;gap:5px;
    height:32px;padding:0 12px;border-radius:var(--radius-pill);
    background:var(--c-surface-2);font-size:12px;color:var(--c-text-muted);
}
.st-share__item:hover{color:var(--c-accent)}

/* 播放页信息条 */
.st-playmeta{
    display:flex;flex-wrap:wrap;align-items:center;gap:8px 14px;
    font-size:13px;color:var(--c-text-muted);
    margin:10px 0 0;
}
.st-playmeta .st-js-hits{color:var(--c-accent);font-weight:700}

/* 剧集分组标题 */
.st-eps-group{margin-bottom:16px}
.st-eps-group__title{
    display:flex;align-items:center;justify-content:space-between;
    font-size:14px;font-weight:700;margin-bottom:10px;
}
.st-eps-group__count{font-size:12px;color:var(--c-text-muted);font-weight:400}

/* 播放页主布局 */
.st-play-cols{display:block}
@media (min-width:1024px){
    .st-play-cols{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:24px;align-items:start}
}


/* ==========================================================================
   专题 / 文章 / 演员等通用
   ========================================================================== */
.st-topic-card{
    display:block;
    border-radius:var(--radius-lg);
    overflow:hidden;
    background:var(--c-surface);
    border:1px solid var(--c-border);
    transition:transform var(--dur) var(--ease),box-shadow var(--dur) var(--ease);
}
.st-topic-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.st-topic-card__pic{aspect-ratio:16 / 9;overflow:hidden;background:var(--c-surface-2)}
.st-topic-card__pic img{width:100%;height:100%;object-fit:cover;transition:transform .4s var(--ease)}
.st-topic-card:hover .st-topic-card__pic img{transform:scale(1.05)}
.st-topic-card__body{padding:12px 14px}
.st-topic-card__title{font-size:15px;font-weight:700;margin-bottom:5px}
.st-topic-card__desc{font-size:13px;color:var(--c-text-muted);line-height:1.65}

.st-article-item{
    display:flex;gap:14px;
    padding:14px 0;
    border-bottom:1px solid var(--c-border);
}
.st-article-item__pic{
    flex:0 0 auto;width:132px;aspect-ratio:16/10;
    border-radius:var(--radius);overflow:hidden;background:var(--c-surface-2);
}
.st-article-item__pic img{width:100%;height:100%;object-fit:cover}
.st-article-item__body{flex:1 1 auto;min-width:0}
.st-article-item__title{font-size:16px;font-weight:600;margin-bottom:6px}
.st-article-item__desc{font-size:13px;color:var(--c-text-muted);line-height:1.7}
.st-article-item__meta{margin-top:8px;font-size:12px;color:var(--c-text-muted)}

.st-article-content{font-size:16px;line-height:1.9;word-break:break-word}
.st-article-content img{margin:12px auto;border-radius:var(--radius)}
.st-article-content p{margin:12px 0}
.st-article-content h2,.st-article-content h3{margin:20px 0 10px;font-family:var(--font-head)}

/* 演员墙 */
.st-actor-grid{
    display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;
}
@media (min-width:560px){ .st-actor-grid{grid-template-columns:repeat(4,minmax(0,1fr))} }
@media (min-width:768px){ .st-actor-grid{grid-template-columns:repeat(5,minmax(0,1fr))} }
@media (min-width:1024px){ .st-actor-grid{grid-template-columns:repeat(7,minmax(0,1fr))} }
.st-actor-card{text-align:center}
.st-actor-card__pic{
    aspect-ratio:1;border-radius:var(--radius-lg);overflow:hidden;
    background:var(--c-surface-2);margin-bottom:8px;
}
.st-actor-card__pic img{width:100%;height:100%;object-fit:cover;transition:transform .4s var(--ease)}
.st-actor-card:hover .st-actor-card__pic img{transform:scale(1.06)}
.st-actor-card__name{font-size:14px;font-weight:600}
.st-actor-card__sub{font-size:12px;color:var(--c-text-muted)}

/* 地图 */
.st-map-group{margin-bottom:18px}
.st-map-group__title{font-size:15px;font-weight:700;margin-bottom:10px}
.st-map-links{display:flex;flex-wrap:wrap;gap:8px}

/* 通用缝隙 */
.st-mt-lg{margin-top:26px}
.st-py{padding-top:18px;padding-bottom:18px}

/* 筛选折叠项 */
.st-filter__opt.is-hidden{display:none}

/* 卡片内文字兼容块级/行内元素 */
.st-card__body,.st-card__title,.st-card__meta{display:block}
.st-card__pic{display:flex;align-items:center;justify-content:center}

/* 面包屑按钮 */
.st-crumb .st-btn{height:30px;padding:0 14px;font-size:13px}

/* ==========================================================================
   播放页补充
   ========================================================================== */
.st-main--play{padding-bottom:24px}
@media (max-width:1023px){
    body.st-body-play .st-main{padding-bottom:calc(var(--tabbar-h) + env(safe-area-inset-bottom,0px) + 66px)}
}
.st-hidden{display:none !important}

.st-player__frame{position:relative;background:#000}
@media (min-width:1024px){ .st-player__frame{border-radius:var(--radius-lg);overflow:hidden} }
.st-player__loading{
    position:absolute;inset:0;z-index:3;
    display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;
    background:#000;color:rgba(255,255,255,.6);font-size:13px;
    transition:opacity .3s var(--ease),visibility .3s var(--ease);
}
.st-player__loading.is-hide{opacity:0;visibility:hidden}
.st-spinner{
    width:26px;height:26px;border-radius:50%;
    border:2px solid rgba(255,255,255,.18);
    border-top-color:var(--c-accent);
    animation:stSpin .8s linear infinite;
}
@keyframes stSpin{to{transform:rotate(360deg)}}

.st-player__bar{padding:12px 0 0;align-items:center}
.st-player__back{
    display:inline-flex;align-items:center;gap:4px;
    height:32px;padding:0 12px;border-radius:var(--radius-pill);
    background:var(--c-surface-2);font-size:13px;color:var(--c-text-muted);
    flex:0 0 auto;
}
.st-player__back:hover{color:var(--c-text)}
.st-player__title{display:flex;flex-direction:column;min-width:0;flex:1 1 auto}
.st-player__title h1{
    font-family:var(--font-head);
    font-size:16px;font-weight:700;line-height:1.3;
    overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.st-player__sub{font-size:12px;color:var(--c-text-muted);margin-top:2px}
.st-player__act{
    flex:0 0 auto;width:36px;height:36px;border-radius:50%;
    display:inline-flex;align-items:center;justify-content:center;
    background:var(--c-surface-2);color:var(--c-text-muted);
}
.st-player__act:hover{color:var(--c-accent)}
.st-player__nav{display:flex;gap:10px;margin-top:16px}
.st-player__nav .st-btn{flex:1 1 0}

.st-epbar__label{
    display:inline-flex;align-items:center;gap:8px;
    flex:0 0 auto;font-size:13px;color:var(--c-text-muted);
}
.st-epbar__label b{color:var(--c-accent);font-weight:700;max-width:120px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.st-epbar__label svg{transition:transform var(--dur) var(--ease)}
.st-epbar.is-open .st-epbar__label svg{transform:rotate(180deg)}
.st-epbar__total{font-size:12px;color:var(--c-text-muted)}
@media (max-width:1023px){
    .st-epbar{flex-direction:column;align-items:stretch;gap:8px}
    .st-epbar__list{max-height:0;overflow:hidden;transition:max-height .28s var(--ease)}
    .st-epbar.is-open .st-epbar__list{max-height:132px;overflow-y:auto}
}


/* ==========================================================================
   文章 / 专题 补充
   ========================================================================== */
.st-article-head h1{
    font-family:var(--font-head);
    font-size:24px;font-weight:800;line-height:1.35;
    margin-bottom:12px;
}
.st-article-meta{
    display:flex;flex-wrap:wrap;gap:8px 16px;
    font-size:13px;color:var(--c-text-muted);
    padding-bottom:16px;margin-bottom:18px;
    border-bottom:1px solid var(--c-border);
}
.st-article-body{font-size:16px;line-height:1.95;word-break:break-word}
.st-article-body img{max-width:100%;height:auto;border-radius:var(--radius);margin:14px auto;display:block}
.st-article-body p{margin:14px 0}
.st-article-body a{color:var(--c-accent)}
.st-article-body h2,.st-article-body h3,.st-article-body h4{
    font-family:var(--font-head);margin:24px 0 12px;line-height:1.4;
}
.st-article-body blockquote{
    margin:16px 0;padding:12px 16px;
    border-left:3px solid var(--c-accent);
    background:var(--c-surface-2);
    border-radius:0 var(--radius) var(--radius) 0;
    color:var(--c-text-muted);
}
.st-article-body table{width:100%;font-size:14px;margin:16px 0}
.st-article-body th,.st-article-body td{padding:10px;border:1px solid var(--c-border)}

/* 详情页右侧栏与主内容间距 */
.st-side-sticky > * + *{margin-top:16px}

/* 文章卡片 */
.st-article-list{display:grid;gap:14px}
.st-article-card{
    display:flex;gap:14px;padding:14px;
    border-radius:var(--radius);background:var(--c-surface);border:1px solid var(--c-border);
    transition:border-color var(--dur) var(--ease),transform var(--dur) var(--ease);
}
.st-article-card:hover{border-color:var(--c-accent);transform:translateY(-2px)}
.st-article-card__pic{
    width:156px;flex:0 0 auto;aspect-ratio:16/10;
    border-radius:var(--radius-sm);overflow:hidden;background:var(--c-surface-2);
}
.st-article-card__body{min-width:0;display:flex;flex-direction:column;gap:8px;flex:1 1 auto}
.st-article-card__title{font-size:16px;font-weight:700;line-height:1.45}
.st-article-card__desc{
    font-size:13px;color:var(--c-text-muted);line-height:1.7;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.st-article-card__meta{
    font-size:12px;color:var(--c-text-muted);
    display:flex;flex-wrap:wrap;gap:6px 14px;margin-top:auto;
}
@media (max-width:639px){
    .st-article-card{padding:12px;gap:12px}
    .st-article-card__pic{width:112px}
    .st-article-card__title{font-size:15px}
    .st-article-card__desc{-webkit-line-clamp:2;font-size:12px}
}

/* 授权/密码页 */
.st-auth{
    max-width:420px;margin:40px auto;padding:28px 22px;
    border-radius:var(--radius-lg);background:var(--c-surface);border:1px solid var(--c-border);
    text-align:center;
}
.st-auth__title{font-family:var(--font-head);font-size:20px;font-weight:800;margin-bottom:8px}
.st-auth__sub{font-size:13px;color:var(--c-text-muted);line-height:1.7;margin-bottom:20px}
.st-auth .st-field{margin-bottom:14px}
.st-auth__foot{margin-top:16px;font-size:13px}
.st-auth__foot a{color:var(--c-text-muted)}
.st-auth__foot a:hover{color:var(--c-accent)}

/* 分集剧情 */
.st-plot-list{display:grid;gap:10px}
.st-plot-item{padding:12px 0;border-bottom:1px solid var(--c-border)}
.st-plot-item:last-child{border-bottom:0}
.st-plot-item__title{font-size:14px;font-weight:700;margin-bottom:6px;color:var(--c-accent)}
.st-plot-item__text{font-size:13px;line-height:1.85;color:var(--c-text-muted)}

/* 下载列表 */
.st-downlist{display:grid;gap:10px}
.st-downlist__item{
    display:flex;align-items:center;justify-content:space-between;gap:12px;
    padding:12px 14px;border-radius:var(--radius-sm);
    background:var(--c-surface-2);font-size:14px;
}
.st-downlist__item:hover{background:var(--c-border)}
.st-downlist__name{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.st-downlist__btn{
    flex:0 0 auto;height:30px;padding:0 14px;border-radius:var(--radius-pill);
    display:inline-flex;align-items:center;font-size:13px;font-weight:600;
    background:var(--c-accent);color:#fff;
}

/* 卡片图片统一填充 */
.st-topic-card__pic img,
.st-actor-card__pic img,
.st-site-card__logo img,
.st-article-card__pic img,
.st-detail-poster img{width:100%;height:100%;object-fit:cover;display:block}
.st-topic-card__pic img,
.st-article-card__pic img{transition:transform .4s var(--ease)}
.st-topic-card:hover .st-topic-card__pic img,
.st-article-card:hover .st-article-card__pic img{transform:scale(1.05)}

/* 字母索引 */
.st-letters{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:18px}
.st-letters__item{
    min-width:34px;height:34px;padding:0 10px;
    display:inline-flex;align-items:center;justify-content:center;
    border-radius:var(--radius-sm);background:var(--c-surface-2);
    font-size:13px;color:var(--c-text-muted);
}
.st-letters__item:hover{color:var(--c-text)}
.st-letters__item.is-active{background:var(--c-accent);color:#fff}

/* 专题卡片 */
.st-topic-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
@media (min-width:768px){ .st-topic-list{grid-template-columns:repeat(3,minmax(0,1fr));gap:18px} }
@media (min-width:1024px){ .st-topic-list{grid-template-columns:repeat(4,minmax(0,1fr))} }
.st-topic-card{
    display:flex;flex-direction:column;
    border-radius:var(--radius);overflow:hidden;
    background:var(--c-surface);border:1px solid var(--c-border);
    transition:border-color var(--dur) var(--ease),transform var(--dur) var(--ease);
}
.st-topic-card:hover{border-color:var(--c-accent);transform:translateY(-2px)}
.st-topic-card__pic{position:relative;display:block;aspect-ratio:16/9;background:var(--c-surface-2)}
.st-topic-card__badge{
    position:absolute;left:8px;top:8px;
    padding:2px 8px;border-radius:var(--radius-pill);
    background:rgba(0,0,0,.55);color:#fff;font-size:11px;backdrop-filter:blur(6px);
}
.st-topic-card__body{display:flex;flex-direction:column;gap:6px;padding:12px}
.st-topic-card__title{font-size:15px;font-weight:700}
.st-topic-card__desc{font-size:12px;color:var(--c-text-muted);line-height:1.6;min-height:38px}
.st-topic-card__meta{display:flex;justify-content:space-between;font-size:12px;color:var(--c-text-muted)}

/* 演员卡片 */
.st-actor-list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
@media (min-width:768px){ .st-actor-list{grid-template-columns:repeat(5,minmax(0,1fr))} }
@media (min-width:1024px){ .st-actor-list{grid-template-columns:repeat(6,minmax(0,1fr))} }
.st-actor-card{display:flex;flex-direction:column;align-items:center;gap:8px;text-align:center}
.st-actor-card__pic{
    width:100%;aspect-ratio:3/4;border-radius:var(--radius);
    overflow:hidden;background:var(--c-surface-2);border:1px solid var(--c-border);
    transition:border-color var(--dur) var(--ease);
}
.st-actor-card:hover .st-actor-card__pic{border-color:var(--c-accent)}
.st-actor-card__name{font-size:14px;font-weight:600;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.st-actor-card__meta{font-size:12px;color:var(--c-text-muted)}

/* 网址/资源卡片 */
.st-site-list{display:grid;gap:12px}
@media (min-width:768px){ .st-site-list{grid-template-columns:repeat(2,minmax(0,1fr))} }
.st-site-card{
    display:flex;gap:12px;padding:14px;
    border-radius:var(--radius);background:var(--c-surface);border:1px solid var(--c-border);
}
.st-site-card:hover{border-color:var(--c-accent)}
.st-site-card__logo{width:52px;height:52px;flex:0 0 auto;border-radius:12px;overflow:hidden;background:var(--c-surface-2)}
.st-site-card__body{min-width:0;flex:1 1 auto}
.st-site-card__title{font-size:15px;font-weight:700;margin-bottom:4px}
.st-site-card__desc{font-size:12px;color:var(--c-text-muted);line-height:1.65;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.st-site-card__meta{display:flex;gap:12px;font-size:12px;color:var(--c-text-muted);margin-top:8px}

/* 留言板条目 */
.st-gbook__item{
    display:flex;gap:12px;
    padding:14px 0;
    border-bottom:1px solid var(--c-border);
}
.st-gbook__item:last-child{border-bottom:0}

/* 表单错误态 */
.is-error{border-color:var(--st-hot) !important}

/* 表格卡片化（移动端） */
@media (max-width:639px){
    .st-table--cards thead{display:none}
    .st-table--cards tr{
        display:flex;flex-wrap:wrap;gap:6px 12px;
        padding:12px 0;border-bottom:1px solid var(--c-border);
    }
    .st-table--cards td{border:0;padding:0;font-size:13px}
    .st-table--cards td[data-label]::before{
        content:attr(data-label);
        margin-right:6px;color:var(--c-text-muted);
    }
}

/* ==========================================================================
   会员中心（user/*）
   ========================================================================== */
.st-uc{display:block}
.st-uc__main{min-width:0}
.st-uc__main > * + *{margin-top:16px}
@media (min-width:1024px){
    .st-uc{display:grid;grid-template-columns:250px minmax(0,1fr);gap:20px;align-items:start}
    .st-uc__side{position:sticky;top:84px}
    .st-uc__side > * + *{margin-top:12px}
}

/* 面板补充 */
.st-panel__sub{font-size:12px;color:var(--c-text-muted);margin:18px 0 10px}
.st-panel__sub h4{
    font-family:var(--font-head);font-size:14px;font-weight:700;
    color:var(--c-text);margin:0;
}
.st-panel__badge{
    display:inline-flex;align-items:center;gap:4px;
    padding:4px 12px;border-radius:var(--radius-pill);
    background:var(--c-surface-2);font-size:12px;color:var(--c-text-muted);
}
.st-panel__badge b{color:var(--c-accent);font-weight:800}
.st-panel__more{
    font-size:13px;color:var(--c-text-muted);
    background:none;border:0;padding:0;cursor:pointer;
}
.st-panel__more:hover{color:var(--c-accent)}
.st-panel__foot{
    display:flex;flex-wrap:wrap;gap:10px;align-items:center;
    margin-top:16px;padding-top:16px;border-top:1px solid var(--c-border);
}
.st-panel--center{text-align:center}
.st-panel--center .st-panel__foot{justify-content:center}
.st-notice{
    padding:12px 14px;margin-bottom:16px;
    border-radius:var(--radius-sm);
    background:var(--c-surface-2);border:1px solid var(--c-border);
    font-size:13px;line-height:1.75;color:var(--c-text-muted);
}
.st-notice--warn{
    border-color:color-mix(in srgb,var(--st-gold) 45%,var(--c-border));
    background:color-mix(in srgb,var(--st-gold) 12%,var(--c-surface));
    color:var(--c-text);
}
.st-tablewrap{overflow-x:auto;-webkit-overflow-scrolling:touch}
.st-loading{
    padding:28px 0;text-align:center;
    font-size:13px;color:var(--c-text-muted);
}
.st-empty__actions{display:flex;justify-content:center;gap:10px;margin-top:14px}
.st-ellipsis-2{
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;
    overflow:hidden;
}
.st-btn-group{display:flex;flex-wrap:wrap;gap:10px}
.st-verify-img{
    height:42px;width:110px;flex:0 0 auto;
    border-radius:var(--radius-sm);border:1px solid var(--c-border);
    background:var(--c-surface-2);cursor:pointer;object-fit:cover;
}

/* 侧栏会员卡 */
.st-ucuser{
    display:flex;align-items:center;gap:12px;
    padding:16px;border-radius:var(--radius);
    background:linear-gradient(135deg,color-mix(in srgb,var(--c-accent) 16%,var(--c-surface)),var(--c-surface));
    border:1px solid var(--c-border);
}
.st-ucuser__avatar{
    position:relative;width:56px;height:56px;flex:0 0 auto;
    border-radius:50%;overflow:hidden;background:var(--c-surface-2);
}
.st-ucuser__avatar img{width:100%;height:100%;object-fit:cover;display:block}
.st-ucuser__crown{
    position:absolute;right:-2px;bottom:-2px;
    width:20px;height:20px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    background:var(--st-gold);color:#3a2a00;font-size:11px;font-weight:800;
}
.st-ucuser__info{min-width:0;flex:1 1 auto}
.st-ucuser__name{
    font-family:var(--font-head);font-size:16px;font-weight:700;
    overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.st-ucuser__meta{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-top:4px}
.st-ucuser__tag{
    padding:1px 8px;border-radius:var(--radius-pill);
    background:var(--c-accent);color:var(--c-accent-ink);
    font-size:11px;font-weight:700;
}
.st-ucuser__tag.is-vip{background:var(--st-gold);color:#3a2a00}
.st-ucuser__edit{font-size:12px;color:var(--c-text-muted)}
.st-ucuser__edit:hover{color:var(--c-accent)}

.st-ucstats{
    display:grid;grid-template-columns:repeat(3,1fr);
    gap:1px;margin-top:12px;
    border-radius:var(--radius);overflow:hidden;background:var(--c-border);
}
.st-ucstats__item{padding:10px 4px;background:var(--c-surface);text-align:center}
.st-ucstats__item b{display:block;font-size:16px;font-weight:800;color:var(--c-accent)}
.st-ucstats__item span{font-size:11px;color:var(--c-text-muted)}

/* 侧栏导航 */
.st-ucnav{
    margin-top:12px;padding:8px;
    border-radius:var(--radius);
    background:var(--c-surface);border:1px solid var(--c-border);
}
.st-ucnav__group{padding:10px 10px 6px;font-size:12px;font-weight:600;color:var(--c-text-muted)}
.st-ucnav__item{
    display:flex;align-items:center;gap:10px;
    height:40px;padding:0 12px;
    border-radius:var(--radius-sm);
    font-size:14px;color:var(--c-text);
}
.st-ucnav__item svg{width:17px;height:17px;flex:0 0 auto;color:var(--c-text-muted)}
.st-ucnav__item:hover{background:var(--c-surface-2)}
.st-ucnav__item.is-active{
    background:color-mix(in srgb,var(--c-accent) 14%,transparent);
    color:var(--c-accent);font-weight:600;
}
.st-ucnav__item.is-active svg{color:var(--c-accent)}
.st-ucnav__item--out{color:var(--st-hot)}
.st-ucnav__item--out svg{color:var(--st-hot)}
@media (max-width:1023px){
    .st-uc__side{margin-bottom:14px}
    .st-ucnav{
        margin-top:0;display:flex;gap:6px;
        overflow-x:auto;padding:6px;
    }
    .st-ucnav::-webkit-scrollbar{display:none}
    .st-ucnav__group{display:none}
    .st-ucnav__item{
        height:34px;flex:0 0 auto;padding:0 14px;
        background:var(--c-surface-2);font-size:13px;white-space:nowrap;
    }
    .st-ucnav__item svg{width:15px;height:15px}
    .st-ucnav__item.is-active{background:var(--c-accent);color:var(--c-accent-ink)}
    .st-ucnav__item.is-active svg{color:currentColor}
}

/* 个人中心头部 */
.st-hero--user{
    margin:0;padding:20px;
    border-radius:var(--radius-lg);
    background:linear-gradient(135deg,color-mix(in srgb,var(--c-accent) 20%,var(--c-surface)) 0%,var(--c-surface) 62%);
    border:1px solid var(--c-border);
}
.st-hero__bg{display:none}
.st-hero__inner{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.st-hero--user .st-hero__info{position:static;inset:auto}
.st-hero__avatar{
    width:64px;height:64px;flex:0 0 auto;border-radius:50%;
    overflow:hidden;background:var(--c-surface-2);
    border:2px solid color-mix(in srgb,var(--c-accent) 45%,transparent);
}
.st-hero__avatar img{width:100%;height:100%;object-fit:cover;display:block}
.st-hero--user .st-hero__name{
    font-family:var(--font-head);font-size:20px;font-weight:800;
    margin-bottom:6px;line-height:1.3;
}
.st-hero__tags{display:flex;flex-wrap:wrap;gap:6px}
.st-hero__tag{
    padding:2px 10px;border-radius:var(--radius-pill);
    background:var(--c-surface-2);color:var(--c-text-muted);
    font-size:12px;font-weight:600;
}
.st-hero__tag.is-vip{background:var(--st-gold);color:#3a2a00}
.st-hero--user .st-hero__actions{margin-left:auto}
.st-hero__stats{
    display:grid;grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;margin-top:18px;
}
@media (min-width:640px){ .st-hero__stats{grid-template-columns:repeat(4,minmax(0,1fr))} }
.st-hero__stat{
    display:flex;flex-direction:column;align-items:center;justify-content:center;
    gap:2px;padding:12px 8px;
    border-radius:var(--radius);background:var(--c-surface-2);
}
.st-hero__stat:hover{background:var(--c-border)}
.st-hero__stat b{font-size:17px;font-weight:800;color:var(--c-accent)}
.st-hero__stat span{font-size:12px;color:var(--c-text-muted)}

/* 快捷入口 */
.st-quick{
    display:grid;grid-template-columns:repeat(4,minmax(0,1fr));
    gap:10px;margin-top:16px;
}
@media (max-width:639px){ .st-quick{grid-template-columns:repeat(3,minmax(0,1fr));gap:8px} }
.st-quick__item{
    display:flex;flex-direction:column;align-items:center;justify-content:center;
    gap:6px;padding:14px 6px;text-align:center;
    border-radius:var(--radius);background:var(--c-surface);border:1px solid var(--c-border);
    font-size:12px;color:var(--c-text-muted);
}
.st-quick__item:hover{color:var(--c-accent);border-color:var(--c-accent)}

/* 进行中 / 记录列表 */
.st-uclist{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
@media (min-width:640px){ .st-uclist{grid-template-columns:repeat(3,minmax(0,1fr))} }
@media (min-width:1024px){ .st-uclist{grid-template-columns:repeat(4,minmax(0,1fr))} }
.st-media{
    position:relative;display:flex;flex-direction:column;
    border-radius:var(--radius);overflow:hidden;
    background:var(--c-surface);border:1px solid var(--c-border);
    transition:border-color var(--dur) var(--ease),transform var(--dur) var(--ease);
}
.st-media:hover{border-color:var(--c-accent);transform:translateY(-2px)}
.st-media__pic{
    position:relative;display:block;aspect-ratio:3/4;
    background:var(--c-surface-2);overflow:hidden;
}
.st-media__pic img{width:100%;height:100%;object-fit:cover;display:block}
.st-media__badge{
    position:absolute;left:6px;top:6px;
    padding:2px 8px;border-radius:var(--radius-pill);
    background:rgba(0,0,0,.6);color:#fff;font-size:11px;backdrop-filter:blur(6px);
}
.st-media__bar{
    position:absolute;left:0;right:0;bottom:0;height:3px;
    background:rgba(0,0,0,.35);
}
.st-media__bar i{display:block;height:100%;background:var(--c-accent)}
.st-media__body{padding:8px 10px 10px;min-width:0}
.st-media__title{display:block;font-size:13px;font-weight:600}
.st-media__meta{
    display:flex;flex-wrap:wrap;gap:4px 10px;
    margin-top:5px;font-size:11px;color:var(--c-text-muted);
}
.st-media__del{
    position:absolute;right:6px;top:6px;
    width:26px;height:26px;border-radius:50%;
    display:inline-flex;align-items:center;justify-content:center;
    background:rgba(0,0,0,.5);color:#fff;
}
.st-media__del:hover{background:var(--st-hot);color:#fff}

/* 积分流水 */
.st-plog{display:grid;gap:2px}
.st-plog__item{
    display:flex;align-items:center;gap:12px;
    padding:12px 2px;border-bottom:1px solid var(--c-border);
}
.st-plog__item:last-child{border-bottom:0}
.st-plog__left{flex:1 1 auto;min-width:0}
.st-plog__name{font-size:14px;font-weight:600}
.st-plog__time{font-size:12px;color:var(--c-text-muted);margin-top:3px}
.st-plog__points{
    flex:0 0 auto;font-family:var(--font-head);
    font-size:15px;font-weight:800;color:var(--st-success, #2ecc71);
}
.st-plog__points.is-minus{color:var(--st-hot)}

/* 订单列表 */
.st-odlist{display:grid;gap:12px}
.st-od{
    padding:14px;border-radius:var(--radius);
    background:var(--c-surface);border:1px solid var(--c-border);
}
.st-od__head{
    display:flex;align-items:center;justify-content:space-between;gap:10px;
    padding-bottom:10px;margin-bottom:12px;border-bottom:1px solid var(--c-border);
}
.st-od__no{font-size:12px;color:var(--c-text-muted);word-break:break-all}
.st-od__status{
    flex:0 0 auto;padding:2px 10px;border-radius:var(--radius-pill);
    background:var(--c-surface-2);font-size:12px;font-weight:600;color:var(--c-text-muted);
}
.st-od__status--1{background:color-mix(in srgb,var(--c-accent) 18%,transparent);color:var(--c-accent)}
.st-od__status--0{background:color-mix(in srgb,var(--st-gold) 22%,transparent);color:var(--c-text)}
.st-od__status--2{background:color-mix(in srgb,var(--st-hot) 18%,transparent);color:var(--st-hot)}
.st-od__body{display:grid;gap:8px}
.st-od__meta{
    display:flex;flex-wrap:wrap;gap:6px 16px;
    font-size:13px;color:var(--c-text-muted);
}
.st-od__meta b{color:var(--c-text)}
.st-od__name{font-size:14px;font-weight:600;color:var(--c-text)}
.st-od__price{font-family:var(--font-head);font-size:16px;font-weight:800;color:var(--c-accent)}
.st-od__code{
    padding:8px 10px;border-radius:var(--radius-sm);
    background:var(--c-surface-2);font-size:13px;word-break:break-all;
}
.st-od__delivery{
    padding:8px 10px;border-radius:var(--radius-sm);
    background:color-mix(in srgb,var(--c-accent) 12%,transparent);
    font-size:13px;word-break:break-all;
}
.st-od__delivery--fail{
    background:color-mix(in srgb,var(--st-hot) 12%,transparent);
    color:var(--st-hot);
}
.st-od__ops{display:flex;flex-wrap:wrap;gap:10px;margin-top:4px}

/* 支付 */
.st-pay{display:grid;gap:16px}
.st-pay__order{
    padding:16px;border-radius:var(--radius);
    background:var(--c-surface-2);
}
.st-pay__row{
    display:flex;align-items:center;justify-content:space-between;gap:12px;
    padding:9px 0;font-size:13px;color:var(--c-text-muted);
    border-bottom:1px dashed var(--c-border);
}
.st-pay__row:last-child{border-bottom:0}
.st-pay__row b{color:var(--c-text);font-weight:600;text-align:right;word-break:break-all}
.st-pay__price{font-family:var(--font-head);font-size:19px;font-weight:800;color:var(--c-accent) !important}
.st-pay__form{display:grid;gap:14px}
.st-pay__methods{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.st-pay__item{
    display:flex;align-items:center;gap:10px;
    padding:14px;border-radius:var(--radius);
    background:var(--c-surface);border:1px solid var(--c-border);
    cursor:pointer;
}
.st-pay__item:hover{border-color:var(--c-accent)}
.st-pay__item input{accent-color:var(--c-accent)}
.st-pay__name{font-size:14px;font-weight:600}
.st-qrcode{
    display:flex;flex-direction:column;align-items:center;gap:12px;
    padding:24px;text-align:center;
}
.st-qrcode__amount{font-family:var(--font-head);font-size:22px;font-weight:800;color:var(--c-accent)}
.st-qrcode__tip{font-size:13px;color:var(--c-text-muted);line-height:1.7}

/* 签到 */
.st-sign{display:grid;gap:16px}
.st-sign__hero{
    display:flex;align-items:center;gap:18px;flex-wrap:wrap;
    padding:20px;border-radius:var(--radius-lg);
    background:linear-gradient(135deg,color-mix(in srgb,var(--c-accent) 22%,var(--c-surface)) 0%,var(--c-surface) 65%);
    border:1px solid var(--c-border);
}
.st-sign__ring{
    width:96px;height:96px;flex:0 0 auto;border-radius:50%;
    display:flex;flex-direction:column;align-items:center;justify-content:center;
    background:var(--c-surface);
    border:3px solid color-mix(in srgb,var(--c-accent) 55%,transparent);
}
.st-sign__ring b{font-family:var(--font-head);font-size:26px;font-weight:800;color:var(--c-accent);line-height:1}
.st-sign__ring span{font-size:12px;color:var(--c-text-muted);margin-top:4px}
.st-sign__info{flex:1 1 220px;min-width:0}
.st-sign__title{font-family:var(--font-head);font-size:18px;font-weight:800;margin-bottom:6px}
.st-sign__sub{font-size:13px;color:var(--c-text-muted);line-height:1.75;margin-bottom:12px}
.st-signstats{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1px;background:var(--c-border);border-radius:var(--radius);overflow:hidden}
@media (min-width:640px){ .st-signstats{grid-template-columns:repeat(4,minmax(0,1fr))} }
.st-signstats__item{padding:12px 6px;background:var(--c-surface);text-align:center}
.st-signstats__item b{display:block;font-size:17px;font-weight:800;color:var(--c-text)}
.st-signstats__item span{font-size:12px;color:var(--c-text-muted)}
.st-signcal{
    padding:16px;border-radius:var(--radius);
    background:var(--c-surface);border:1px solid var(--c-border);
}
.st-signcal__week,.st-signcal__grid{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:6px}
.st-signcal__week{margin-bottom:8px}
.st-signcal__week span{text-align:center;font-size:12px;color:var(--c-text-muted)}
.st-signcal__cell{
    aspect-ratio:1/1;display:flex;align-items:center;justify-content:center;
    border-radius:var(--radius-sm);background:var(--c-surface-2);
    font-size:13px;color:var(--c-text-muted);
}
.st-signcal__cell.is-blank{background:transparent}
.st-signcal__cell.is-signed{
    background:color-mix(in srgb,var(--c-accent) 20%,transparent);
    color:var(--c-accent);font-weight:700;
}
.st-signcal__cell.is-today{
    outline:2px solid var(--c-accent);outline-offset:-2px;
    color:var(--c-text);font-weight:700;
}
.st-milestones,.st-ml{display:grid;gap:10px}
.st-milestone,.st-ml__item{
    display:flex;align-items:center;gap:12px;
    padding:12px 14px;border-radius:var(--radius-sm);
    background:var(--c-surface-2);border:1px solid transparent;
}
.st-milestone.is-ready{border-color:var(--c-accent);background:color-mix(in srgb,var(--c-accent) 10%,var(--c-surface))}
.st-milestone__info,.st-ml__info{flex:1 1 auto;min-width:0}
.st-milestone__info b,.st-ml__name{display:block;font-size:14px;font-weight:600}
.st-milestone__info span,.st-ml__desc{font-size:12px;color:var(--c-text-muted);margin-top:3px}
.st-milestone__status{font-size:12px;color:var(--c-text-muted);flex:0 0 auto}
.st-ml__points{font-family:var(--font-head);font-size:15px;font-weight:800;color:var(--c-accent);flex:0 0 auto}

/* 会员套餐 */
.st-vipplans{display:grid;gap:16px}
.st-vipplans__tip{font-size:12px;color:var(--c-text-muted);line-height:1.7}
.st-vipgroup{padding:16px;border-radius:var(--radius);background:var(--c-surface);border:1px solid var(--c-border)}
.st-vipgroup__head{
    display:flex;align-items:center;gap:10px;flex-wrap:wrap;
    padding-bottom:12px;margin-bottom:14px;border-bottom:1px solid var(--c-border);
}
.st-vipgroup__name{font-family:var(--font-head);font-size:16px;font-weight:800}
.st-vipgroup__plans{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
@media (min-width:768px){ .st-vipgroup__plans{grid-template-columns:repeat(4,minmax(0,1fr))} }
.st-vipcard{
    position:relative;display:flex;flex-direction:column;gap:6px;
    padding:16px 14px;border-radius:var(--radius);
    background:var(--c-surface-2);border:1px solid var(--c-border);
    text-align:center;transition:border-color var(--dur) var(--ease),transform var(--dur) var(--ease);
}
.st-vipcard:hover{border-color:var(--c-accent);transform:translateY(-2px)}
.st-vipcard.is-hot{border-color:var(--st-gold)}
.st-vipcard__hot{
    position:absolute;right:-1px;top:-1px;
    padding:2px 10px;border-radius:0 var(--radius) 0 var(--radius);
    background:var(--st-gold);color:#3a2a00;font-size:11px;font-weight:800;
}
.st-vipcard__label{font-size:13px;font-weight:600}
.st-vipcard__days{font-family:var(--font-head);font-size:24px;font-weight:800;line-height:1.1}
.st-vipcard__points{font-size:13px;font-weight:700;color:var(--c-accent)}
.st-js-vip-countdown{font-variant-numeric:tabular-nums;letter-spacing:.5px}
.st-vipcard__origin{font-size:12px;color:var(--c-text-muted);text-decoration:line-through}
.st-vipcard .st-btn{margin-top:8px}
.st-vipbox{padding:4px 2px}
.st-vipbox__head{margin-bottom:14px}
.st-vipbox__title{font-family:var(--font-head);font-size:18px;font-weight:800;margin-bottom:6px}
.st-vipbox__sub{font-size:13px;color:var(--c-text-muted);line-height:1.7}
.st-vipbox__foot{margin-top:14px}

/* 积分充值 */
.st-amounts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin-bottom:16px}
@media (min-width:640px){ .st-amounts{grid-template-columns:repeat(4,minmax(0,1fr))} }
.st-amount{
    padding:14px 8px;border-radius:var(--radius);
    background:var(--c-surface-2);border:1px solid var(--c-border);
    text-align:center;font-size:14px;font-weight:600;cursor:pointer;
}
.st-amount:hover{border-color:var(--c-accent)}
.st-amount.is-active{
    border-color:var(--c-accent);
    background:color-mix(in srgb,var(--c-accent) 14%,transparent);
    color:var(--c-accent);
}

/* 积分商城 */
.st-mall{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
@media (min-width:768px){ .st-mall{grid-template-columns:repeat(3,minmax(0,1fr))} }
.st-goods{
    display:flex;flex-direction:column;gap:8px;
    padding:14px;border-radius:var(--radius);
    background:var(--c-surface);border:1px solid var(--c-border);
}
.st-goods:hover{border-color:var(--c-accent)}
.st-goods__name{font-size:15px;font-weight:700}
.st-goods__desc{
    font-size:12px;color:var(--c-text-muted);line-height:1.7;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.st-goods__type{
    align-self:flex-start;padding:1px 8px;border-radius:var(--radius-pill);
    background:var(--c-surface-2);font-size:11px;color:var(--c-text-muted);
}
.st-goods__points{font-family:var(--font-head);font-size:17px;font-weight:800;color:var(--c-accent)}
.st-goods__stock{font-size:12px;color:var(--c-text-muted)}
.st-goods__qty{display:inline-flex;align-items:center;gap:0;border:1px solid var(--c-border);border-radius:var(--radius-sm);overflow:hidden;align-self:flex-start}
.st-goods__qty button{
    width:32px;height:32px;background:var(--c-surface-2);border:0;
    font-size:16px;color:var(--c-text);cursor:pointer;
}
.st-goods__qty button:hover{background:var(--c-border)}
.st-goods__qty input{
    width:46px;height:32px;border:0;background:transparent;
    text-align:center;font-size:14px;color:var(--c-text);
    border-left:1px solid var(--c-border);border-right:1px solid var(--c-border);
}
.st-goods__ops{display:flex;align-items:center;gap:10px;margin-top:auto}
.st-goods__ops .st-btn{flex:1 1 auto}
.st-goods__foot{display:flex;align-items:center;justify-content:space-between;gap:10px;font-size:13px}

/* 充值卡 */
.st-cards{display:grid;gap:12px}
.st-carditem{
    display:flex;gap:14px;padding:14px;
    border-radius:var(--radius);
    background:var(--c-surface);border:1px solid var(--c-border);
}
.st-carditem.is-used{opacity:.62}
.st-carditem__left{
    flex:0 0 auto;min-width:96px;
    display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;
    padding:10px;border-radius:var(--radius-sm);
    background:color-mix(in srgb,var(--c-accent) 12%,transparent);
}
.st-carditem__no{font-size:12px;color:var(--c-text-muted)}
.st-carditem__value{font-family:var(--font-head);font-size:19px;font-weight:800;color:var(--c-accent)}
.st-carditem__body{flex:1 1 auto;min-width:0;display:grid;gap:6px}
.st-carditem__meta{display:flex;flex-wrap:wrap;gap:6px 14px;font-size:12px;color:var(--c-text-muted)}
.st-carditem__used{
    align-self:flex-start;padding:2px 10px;border-radius:var(--radius-pill);
    background:var(--c-surface-2);font-size:12px;color:var(--c-text-muted);
}
.st-check{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--c-text-muted)}
.st-check input{accent-color:var(--c-accent)}

/* 头像设置 */
.st-portrait{display:grid;gap:18px;justify-items:center;text-align:center}
.st-portrait__preview{
    width:128px;height:128px;border-radius:50%;overflow:hidden;
    background:var(--c-surface-2);
    border:3px solid color-mix(in srgb,var(--c-accent) 40%,transparent);
}
.st-portrait__preview img{width:100%;height:100%;object-fit:cover;display:block}
.st-portrait__pick{display:flex;flex-wrap:wrap;gap:10px;justify-content:center}
.st-portrait__ops{display:flex;flex-wrap:wrap;gap:10px;justify-content:center}

/* 账号绑定 */
.st-bind{display:grid;gap:12px}
.st-bind__item{
    display:flex;align-items:center;gap:14px;flex-wrap:wrap;
    padding:14px;border-radius:var(--radius);
    background:var(--c-surface);border:1px solid var(--c-border);
}
.st-bind__label{flex:0 0 84px;font-size:14px;font-weight:600}
.st-bind__val{flex:1 1 auto;min-width:0;font-size:13px;color:var(--c-text-muted);word-break:break-all}
.st-bind__op{flex:0 0 auto}

/* 推广邀请 */
.st-invite{display:grid;grid-template-columns:repeat(1,minmax(0,1fr));gap:12px}
@media (min-width:768px){ .st-invite{grid-template-columns:repeat(2,minmax(0,1fr))} }
.st-invite__box{padding:14px;border-radius:var(--radius);background:var(--c-surface-2)}
.st-invite__label{font-size:12px;color:var(--c-text-muted);margin-bottom:8px}
.st-invite__val{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.st-invite__val b{font-family:var(--font-head);font-size:17px;font-weight:800;color:var(--c-accent);letter-spacing:.04em}
.st-invite__val .st-input{flex:1 1 160px;min-width:0}
.st-invitelist{display:grid;gap:12px}
.st-inviteitem{
    display:flex;gap:12px;padding:12px 0;
    border-bottom:1px solid var(--c-border);
}
.st-inviteitem:last-child{border-bottom:0}
.st-inviteitem__avatar{
    width:42px;height:42px;flex:0 0 auto;border-radius:50%;
    overflow:hidden;background:var(--c-surface-2);
}
.st-inviteitem__avatar img{width:100%;height:100%;object-fit:cover;display:block}
.st-inviteitem__body{flex:1 1 auto;min-width:0}
.st-inviteitem__name{font-size:14px;font-weight:600}
.st-inviteitem__meta{
    display:flex;flex-wrap:wrap;gap:4px 14px;
    margin-top:4px;font-size:12px;color:var(--c-text-muted);
}
.st-inviteitem__sub{
    display:flex;flex-wrap:wrap;align-items:center;gap:6px;
    margin-top:8px;font-size:12px;color:var(--c-text-muted);
}
.st-inviteitem__chip{
    padding:1px 8px;border-radius:var(--radius-pill);
    background:var(--c-surface-2);font-size:12px;color:var(--c-text);
}

/* 会员权益 */
.st-benefits{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
@media (min-width:768px){ .st-benefits{grid-template-columns:repeat(3,minmax(0,1fr))} }
.st-benefit{
    display:flex;flex-direction:column;gap:8px;
    padding:16px;border-radius:var(--radius);
    background:var(--c-surface);border:1px solid var(--c-border);
}
.st-benefit__ico{
    width:40px;height:40px;border-radius:12px;
    display:flex;align-items:center;justify-content:center;
    background:color-mix(in srgb,var(--c-accent) 16%,transparent);
    color:var(--c-accent);font-weight:800;
}
.st-benefit__title{font-size:15px;font-weight:700}
.st-benefit__desc{font-size:12px;color:var(--c-text-muted);line-height:1.7}

/* 权限对比 */
.st-popedom{min-width:520px}
.st-popedom th:first-child,.st-popedom td:first-child{text-align:left;min-width:160px}
.st-popedom__cell{text-align:center}
.st-popedom__name{font-size:13px}
.st-popedom__indent{display:inline-block;width:12px}
.st-popedom__yes{color:var(--c-accent);font-weight:800}
.st-popedom__no{color:var(--c-text-muted)}
tr.is-child .st-popedom__name{color:var(--c-text-muted)}

/* 站内消息 */
.st-notifylist{display:grid;gap:2px}
.st-notifyitem{
    position:relative;padding:14px 40px 14px 2px;
    border-bottom:1px solid var(--c-border);
}
.st-notifyitem:last-child{border-bottom:0}
.st-notifyitem.is-unread{background:color-mix(in srgb,var(--c-accent) 7%,transparent)}
.st-notifyitem__link{display:block}
.st-notifyitem__title{
    display:flex;align-items:center;gap:8px;
    font-size:14px;font-weight:600;
}
.st-notifyitem__dot{
    width:7px;height:7px;border-radius:50%;flex:0 0 auto;
    background:var(--st-hot);display:inline-block;
}
.st-notifyitem__text{
    margin-top:6px;font-size:13px;line-height:1.75;color:var(--c-text-muted);
    white-space:pre-wrap;word-break:break-word;
    display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
}
.st-notifyitem__meta{
    display:flex;flex-wrap:wrap;align-items:center;gap:8px;
    margin-top:8px;font-size:12px;color:var(--c-text-muted);
}
.st-notifyitem__tag{
    padding:1px 8px;border-radius:var(--radius-pill);
    background:var(--c-surface-2);
}
.st-notifyitem__del{
    position:absolute;right:0;top:12px;
    width:28px;height:28px;border-radius:50%;border:0;
    display:inline-flex;align-items:center;justify-content:center;
    background:var(--c-surface-2);color:var(--c-text-muted);cursor:pointer;
}
.st-notifyitem__del:hover{background:var(--st-hot);color:#fff}

/* 评论 / 留言 / 动态 */
.st-cmlist{display:grid;gap:2px}
.st-cmitem{padding:14px 0;border-bottom:1px solid var(--c-border)}
.st-cmitem:last-child{border-bottom:0}
.st-cmitem__head{display:flex;align-items:center;justify-content:space-between;gap:10px}
.st-cmitem__name{font-size:14px;font-weight:600}
.st-cmitem__time{font-size:12px;color:var(--c-text-muted);flex:0 0 auto}
.st-cmitem__content{margin-top:8px;font-size:14px;line-height:1.8;word-break:break-word;white-space:pre-wrap}
.st-cmitem__content img,.st-dynitem__text img{max-width:100%;vertical-align:-3px}
.st-cmitem__foot{margin-top:8px;font-size:12px;color:var(--c-text-muted)}
.st-gblist{display:grid;gap:2px}
.st-gbook__body{flex:1 1 auto;min-width:0}
.st-gbook__reply{
    margin-top:8px;padding:10px 12px;border-radius:var(--radius-sm);
    background:var(--c-surface-2);font-size:13px;line-height:1.75;
    color:var(--c-text-muted);white-space:pre-wrap;word-break:break-word;
}
.st-dynlist{display:grid;gap:2px}
.st-dynitem{padding:14px 0;border-bottom:1px solid var(--c-border)}
.st-dynitem:last-child{border-bottom:0}
.st-dynitem__head{display:flex;align-items:center;gap:10px}
.st-dynitem__avatar{width:36px;height:36px;flex:0 0 auto;border-radius:50%;object-fit:cover}
.st-dynitem__who{flex:1 1 auto;min-width:0}
.st-dynitem__name{display:block;font-size:14px;font-weight:600}
.st-dynitem__time{font-size:12px;color:var(--c-text-muted)}
.st-dynitem__tag{
    flex:0 0 auto;padding:1px 8px;border-radius:var(--radius-pill);
    background:var(--c-surface-2);font-size:11px;color:var(--c-text-muted);
}
.st-dynitem__text{margin-top:10px;font-size:14px;line-height:1.85;word-break:break-word;white-space:pre-wrap}
.st-tips{
    margin-bottom:4px;padding:12px 16px 12px 32px;
    border-radius:var(--radius-sm);
    background:var(--c-surface-2);
    font-size:13px;line-height:1.9;color:var(--c-text-muted);
    list-style:disc;
}
.st-tips li{list-style:disc}

/* 认证页补充 */
.st-auth__tabs{display:flex;gap:8px;justify-content:center;margin-bottom:20px}
.st-auth__tab{
    height:34px;padding:0 16px;border-radius:var(--radius-pill);
    border:1px solid var(--c-border);background:transparent;
    font-size:13px;color:var(--c-text-muted);cursor:pointer;
}
.st-auth__tab:hover{color:var(--c-text)}
.st-auth__tab.is-active{
    background:var(--c-accent);color:var(--c-accent-ink);
    border-color:var(--c-accent);font-weight:700;
}
.st-auth__other{margin-top:20px}
.st-auth__other-line{
    display:flex;align-items:center;gap:12px;
    margin-bottom:14px;font-size:12px;color:var(--c-text-muted);
}
.st-auth__other-line::before,.st-auth__other-line::after{
    content:'';flex:1 1 auto;height:1px;background:var(--c-border);
}
.st-auth__other-text{
    display:flex;align-items:center;justify-content:center;gap:12px;
    margin-top:20px;font-size:13px;color:var(--c-text-muted);
}
.st-auth__oauth{display:flex;gap:10px;justify-content:center}
.st-oauth-btn{
    height:40px;padding:0 18px;border-radius:var(--radius-pill);
    border:1px solid var(--c-border);background:var(--c-surface-2);
    display:inline-flex;align-items:center;gap:8px;
    font-size:13px;color:var(--c-text);cursor:pointer;
}
.st-oauth-btn:hover{border-color:var(--c-accent);color:var(--c-accent)}
.st-oauth-btn--qq:hover{border-color:#12b7f5;color:#12b7f5}
.st-oauth-btn--wx:hover{border-color:#07c160;color:#07c160}
.st-auth .st-field{text-align:left}
.st-field__row{display:flex;align-items:center;gap:10px}
.st-field__row .st-input{flex:1 1 auto;min-width:0}
.st-field__tip{margin-top:6px;font-size:12px;color:var(--c-text-muted);line-height:1.6}
.st-js-panel.is-hidden{display:none}

/* 弹窗内登录 */
.st-modal-auth{width:100%}
.st-modal-auth__head{margin-bottom:18px;text-align:center}
.st-modal-auth__title{font-family:var(--font-head);font-size:19px;font-weight:800;margin-bottom:6px}
.st-modal-auth__sub{font-size:13px;color:var(--c-text-muted)}
.st-modal-auth__foot{
    display:flex;align-items:center;justify-content:center;gap:8px;
    margin-top:16px;font-size:13px;color:var(--c-text-muted);
}
.st-modal-auth__foot a{color:var(--c-text-muted)}
.st-modal-auth__foot a:hover{color:var(--c-accent)}

/* 弹窗内用户信息 */
.st-panel-user{display:grid;gap:16px}
.st-panel-user__head{display:flex;align-items:center;gap:14px}
.st-panel-user__avatar{
    width:56px;height:56px;flex:0 0 auto;border-radius:50%;
    overflow:hidden;background:var(--c-surface-2);
}
.st-panel-user__avatar img{width:100%;height:100%;object-fit:cover;display:block}
.st-panel-user__info{min-width:0}
.st-panel-user__name{font-family:var(--font-head);font-size:17px;font-weight:800}
.st-panel-user__tags{display:flex;flex-wrap:wrap;gap:6px;margin-top:6px}
.st-panel-user__stats{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.st-panel-user__stats a{
    padding:12px;border-radius:var(--radius);
    background:var(--c-surface-2);text-align:center;
}
.st-panel-user__stats b{display:block;font-size:17px;font-weight:800;color:var(--c-accent)}
.st-panel-user__stats span{font-size:12px;color:var(--c-text-muted)}
.st-panel-user__links{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1px;background:var(--c-border);border-radius:var(--radius);overflow:hidden}
.st-panel-user__links a{
    padding:13px 14px;background:var(--c-surface);font-size:14px;
}
.st-panel-user__links a:hover{background:var(--c-surface-2);color:var(--c-accent)}

/* 订单详情 */
.st-orderinfo{display:grid;gap:16px}

/* ==========================================================================
   移动端竖屏 Feed（首页：全屏海报 + 上下滑动切换）
   ========================================================================== */
.st-vfeed-wrap{display:none;position:relative}

@media (max-width:1023px){
    .st-vfeed-wrap{display:block}
    /* 仅在竖屏 Feed 渲染出来时才隐藏常规首页内容，避免空站空白页 */
    body.st-body-feed .st-vfeed-wrap ~ .st-home-rest{display:none}
    body.has-tabbar.st-has-vfeed .st-main{padding-bottom:0}
    body.st-has-vfeed .st-backtop{display:none}
}

.st-vfeed{
    --vfeed-h:calc(100vh - 52px - var(--tabbar-h) - env(safe-area-inset-bottom,0px));
    --vfeed-h:calc(100dvh - 52px - var(--tabbar-h) - env(safe-area-inset-bottom,0px));
    position:relative;
    height:var(--vfeed-h);
    overflow-y:auto;
    overflow-x:hidden;
    scroll-snap-type:y mandatory;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior-y:contain;
    background:#05050a;
    color:#fff;
    scrollbar-width:none;
}
.st-vfeed::-webkit-scrollbar{display:none}

.st-vfeed__slide{
    position:relative;
    height:var(--vfeed-h);
    width:100%;
    overflow:hidden;
    scroll-snap-align:start;
    scroll-snap-stop:always;
    background:#05050a;
    display:flex;
    align-items:center;
    justify-content:center;
}
.st-vfeed__bg{
    position:absolute;inset:-8%;
    background-position:center;
    background-size:cover;
    filter:blur(26px) saturate(1.2);
    transform:scale(1.06);
    opacity:.5;
}
.st-vfeed__pic{
    position:absolute;inset:0;
    width:100%;height:100%;
    object-fit:cover;
    object-position:center top;
    opacity:0;
    transition:opacity .45s var(--ease);
}
.st-vfeed__pic.is-loaded{opacity:1}
.st-vfeed__shade{
    position:absolute;inset:0;pointer-events:none;
    background:linear-gradient(180deg,rgba(5,5,10,.55) 0%,rgba(5,5,10,.05) 24%,rgba(5,5,10,.32) 62%,rgba(5,5,10,.94) 100%);
}

/* 顶部频道（覆盖在图片上） */
.st-vfeed__channels{
    position:absolute;left:0;right:0;top:0;z-index:6;
    display:flex;align-items:center;gap:20px;
    padding:10px 16px 12px;
    overflow-x:auto;scrollbar-width:none;
    -webkit-mask-image:linear-gradient(90deg,#000 0,#000 calc(100% - 28px),transparent 100%);
    mask-image:linear-gradient(90deg,#000 0,#000 calc(100% - 28px),transparent 100%);
}
.st-vfeed__channels::-webkit-scrollbar{display:none}
.st-vfeed__chip{
    position:relative;flex:0 0 auto;
    padding-bottom:6px;
    font-size:16px;font-weight:600;
    color:rgba(255,255,255,.72);
    text-shadow:0 1px 8px rgba(0,0,0,.5);
    white-space:nowrap;
}
.st-vfeed__chip.is-active{color:#fff;font-size:17px}
.st-vfeed__chip.is-active::after{
    content:'';position:absolute;left:50%;bottom:0;
    width:18px;height:3px;border-radius:2px;
    transform:translateX(-50%);
    background:var(--c-accent);
}

/* 中央播放按钮 */
.st-vfeed__play{
    position:relative;z-index:4;
    width:64px;height:64px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    background:rgba(255,255,255,.93);
    color:#111;
    box-shadow:0 10px 30px rgba(0,0,0,.45);
    transition:transform .24s var(--ease);
}
.st-vfeed__play svg{width:26px;height:26px;margin-left:3px}
.st-vfeed__slide.is-active .st-vfeed__play{box-shadow:0 12px 34px rgba(0,0,0,.5)}
.st-vfeed__play:active{transform:scale(.92)}

/* 右侧操作栏 */
.st-vfeed__rail{
    position:absolute;right:12px;bottom:140px;z-index:5;
    display:flex;flex-direction:column;align-items:center;gap:16px;
}
.st-vfeed__act{
    display:flex;flex-direction:column;align-items:center;gap:4px;
    width:46px;
    color:#fff;font-size:11px;
    text-shadow:0 1px 6px rgba(0,0,0,.6);
}
.st-vfeed__act svg{width:26px;height:26px}
.st-vfeed__act.is-active{color:var(--c-accent)}

/* 底部信息 */
.st-vfeed__info{
    position:absolute;left:0;right:0;bottom:0;z-index:5;
    padding:0 70px 26px 16px;
}
.st-vfeed__title{
    margin-bottom:8px;
    font-family:var(--font-head);
    font-size:22px;font-weight:800;line-height:1.25;
    text-shadow:0 2px 12px rgba(0,0,0,.6);
}
.st-vfeed__badges{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:8px}
.st-vfeed__badge{
    padding:2px 8px;border-radius:var(--radius-pill);
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.18);
    font-size:11px;color:rgba(255,255,255,.9);
}
.st-vfeed__desc{
    margin-bottom:8px;
    font-size:13px;line-height:1.6;color:rgba(255,255,255,.72);
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.st-vfeed__more{
    display:inline-flex;align-items:center;gap:2px;
    font-size:13px;font-weight:600;color:rgba(255,255,255,.92);
}

/* 滑动提示 */
.st-vfeed__hint{
    position:absolute;left:50%;top:54px;z-index:7;
    display:flex;align-items:center;gap:4px;
    padding:6px 12px;border-radius:var(--radius-pill);
    background:rgba(0,0,0,.42);color:#fff;font-size:12px;
    transform:translateX(-50%);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    animation:stVfHint 1.8s var(--ease) infinite;
    transition:opacity .3s var(--ease);
}
.st-vfeed__hint svg{width:14px;height:14px}
.st-vfeed__hint.is-hidden{opacity:0;pointer-events:none}
@keyframes stVfHint{
    0%,100%{transform:translate(-50%,0)}
    50%{transform:translate(-50%,-6px)}
}


