:root{
    --bg-primary:#14100E;
    --bg-secondary:#1D1713;
    --surface:#241C16;
    --surface-light:#2E251D;
    --border-weak:rgba(227,169,62,0.12);
    --border-strong:rgba(227,169,62,0.45);
    --brand-primary:#E3A93E;
    --brand-secondary:#B44032;
    --brand-gradient:linear-gradient(135deg,#E3A93E 0%,#C46B2A 55%,#A12D24 100%);
    --text-primary:#F3E7CE;
    --text-secondary:#C7B9A2;
    --text-muted:#9A8E7C;
    --success:#5B7B43;
    --shadow-card:0 12px 24px rgba(0,0,0,0.18);
    --shadow-hover:0 18px 34px rgba(0,0,0,0.30),0 0 0 1px rgba(227,169,62,0.35);
    --radius-lg:22px;
    --radius-md:12px;
    --radius-pill:999px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
    font-family:'Noto Sans SC',system-ui,-apple-system,sans-serif;
    background-color:var(--bg-primary);
    color:var(--text-primary);
    line-height:1.8;
    font-size:16px;
    overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--brand-primary);text-decoration:none;transition:color .2s}
a:hover{color:var(--brand-primary)}
.container{max-width:1200px;padding-left:24px;padding-right:24px}
.btn{border-radius:var(--radius-pill);font-weight:500;padding:.65rem 1.8rem;border:1px solid transparent;transition:all .25s;font-size:15px}
.btn:focus-visible{outline:2px solid var(--brand-primary);outline-offset:2px}
.btn-primary{
    background:var(--brand-gradient);
    color:#1a1208;
    border:none;
    font-weight:600;
    box-shadow:0 4px 18px rgba(227,169,62,0.2);
}
.btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 30px rgba(227,169,62,0.35);
    color:#1a1208;
}
.btn-primary:active{transform:translateY(-1px) scale(.98)}
.btn-outline{
    background:transparent;
    border:1px solid var(--border-strong);
    color:var(--brand-primary);
}
.btn-outline:hover{
    background:rgba(227,169,62,0.1);
    border-color:var(--brand-primary);
    color:var(--brand-primary);
    transform:translateY(-2px);
}
.btn-lg{padding:.9rem 2.6rem;font-size:17px}
.site-header{
    position:fixed;top:0;left:0;right:0;z-index:1000;
    background:rgba(20,16,14,0.72);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border-bottom:1px solid var(--border-weak);
    transition:background .3s,box-shadow .3s;
}
.site-header.scrolled{
    background:rgba(20,16,14,0.92);
    box-shadow:0 4px 24px rgba(0,0,0,0.3);
}
.header-inner{
    display:flex;align-items:center;justify-content:space-between;
    height:70px;
}
.logo{display:flex;align-items:center;gap:12px}
.logo-mark{
    width:42px;height:42px;border-radius:12px;
    background:var(--brand-gradient);
    display:flex;align-items:center;justify-content:center;
    font-size:20px;color:#1a1208;
    box-shadow:0 0 18px rgba(227,169,62,0.25);
}
.logo-text{
    font-family:'Noto Serif SC',serif;
    font-size:22px;font-weight:700;
    color:var(--text-primary);
    letter-spacing:.02em;
}
.btn-header{
    padding:.5rem 1.6rem;
    font-size:14px;
    font-weight:600;
    background:var(--brand-gradient);
    color:#1a1208;
    border:none;
    border-radius:var(--radius-pill);
    transition:all .25s;
}
.btn-header:hover{transform:translateY(-1px);box-shadow:0 6px 20px rgba(227,169,62,0.3);color:#1a1208}
/* 面包屑 */
.breadcrumb-wrap{
    padding:90px 0 0;
    background:linear-gradient(to bottom,var(--bg-primary),var(--bg-primary));
    position:relative;
    border-bottom:1px solid var(--border-weak);
}
.breadcrumb-custom{
    display:flex;
    list-style:none;
    padding:16px 0;
    margin:0;
    gap:8px;
    font-size:13px;
    color:var(--text-muted);
}
.breadcrumb-custom li a{color:var(--text-muted)}
.breadcrumb-custom li a:hover{color:var(--brand-primary)}
.breadcrumb-custom li+li::before{
    content:'›';
    margin-right:8px;
    color:var(--border-strong);
}
/* 分类页头部 */
.cat-hero{
    background:linear-gradient(rgba(20,16,14,0.9),rgba(20,16,14,0.6)),url('/assets/images/backpic/back-2.jpg');
    background-size:cover;
    background-position:center;
    padding:64px 0 72px;
    border-bottom:1px solid var(--border-weak);
}
.cat-hero h1{
    font-family:'Noto Serif SC',serif;
    font-size:clamp(2rem,3.5vw,3rem);
    font-weight:700;
    color:var(--text-primary);
    margin-bottom:12px;
}
.cat-hero p{
    color:var(--text-secondary);
    font-size:16px;
    max-width:580px;
    line-height:1.8;
}
/* 筛选区 */
.filter-section{
    background:var(--bg-secondary);
    padding:28px 0;
    border-bottom:1px solid var(--border-weak);
}
.filter-form{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    align-items:center;
}
.filter-form .form-select,
.filter-form .form-control{
    background:var(--surface);
    border:1px solid var(--border-weak);
    color:var(--text-primary);
    border-radius:var(--radius-pill);
    padding:.6rem 1.4rem;
    font-size:14px;
    min-width:140px;
    transition:border-color .2s,box-shadow .2s;
}
.filter-form .form-select:focus,
.filter-form .form-control:focus{
    border-color:var(--border-strong);
    box-shadow:0 0 0 3px rgba(227,169,62,0.1);
    outline:none;
    background:var(--surface-light);
    color:var(--text-primary);
}
.filter-form .form-select option{background:var(--surface);color:var(--text-primary)}
.filter-form .form-control::placeholder{color:var(--text-muted)}
.filter-form .search-wrap{
    position:relative;
    flex:1;
    min-width:220px;
}
.filter-form .search-wrap .fa-search{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:var(--text-muted);
    font-size:14px;
    pointer-events:none;
}
.filter-form .search-wrap .form-control{
    padding-left:44px;
    width:100%;
}
/* 主内容 */
.cat-main{padding:clamp(48px,6vw,80px) 0}
.cat-layout{
    display:grid;
    grid-template-columns:1fr 320px;
    gap:40px;
    align-items:start;
}
.studio-list{
    display:flex;
    flex-direction:column;
    gap:28px;
}
.studio-card{
    display:flex;
    gap:24px;
    background:var(--surface);
    border:1px solid var(--border-weak);
    border-radius:var(--radius-lg);
    padding:24px;
    transition:all .3s;
}
.studio-card:hover{
    border-color:var(--border-strong);
    box-shadow:var(--shadow-hover);
    transform:translateY(-4px);
    background:var(--surface-light);
}
.studio-pic{
    flex:0 0 220px;
    border-radius:var(--radius-md);
    overflow:hidden;
    position:relative;
}
.studio-pic img{
    width:100%;height:100%;
    object-fit:cover;
    min-height:190px;
    transition:transform .4s;
}
.studio-card:hover .studio-pic img{transform:scale(1.03)}
.studio-info{flex:1;display:flex;flex-direction:column}
.studio-top{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:8px}
.studio-name{
    font-family:'Noto Serif SC',serif;
    font-size:20px;font-weight:700;
    color:var(--text-primary);
}
.studio-region{
    font-size:12px;
    background:rgba(227,169,62,0.08);
    border:1px solid var(--border-weak);
    color:var(--brand-primary);
    padding:3px 12px;
    border-radius:var(--radius-pill);
}
.studio-tags{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:10px;
}
.studio-tags .tag{
    font-size:12px;
    color:var(--text-muted);
    background:var(--bg-secondary);
    border:1px solid var(--border-weak);
    padding:2px 10px;
    border-radius:var(--radius-pill);
}
.studio-desc{
    color:var(--text-secondary);
    font-size:14px;
    line-height:1.8;
    margin-bottom:12px;
    flex-grow:1;
}
.studio-stats{
    display:flex;
    gap:24px;
    padding-top:12px;
    border-top:1px solid var(--border-weak);
}
.studio-stats .stat-num{
    font-size:20px;
    font-weight:700;
    color:var(--brand-primary);
    font-variant-numeric:tabular-nums;
}
.studio-stats .stat-label{
    font-size:12px;
    color:var(--text-muted);
    display:block;
}
/* 分页 */
.pagination-custom{
    display:flex;
    justify-content:center;
    gap:8px;
    padding:40px 0 0;
    list-style:none;
}
.pagination-custom .page-link{
    background:var(--surface);
    border:1px solid var(--border-weak);
    color:var(--text-secondary);
    border-radius:var(--radius-pill);
    min-width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 14px;
    font-size:14px;
    transition:all .25s;
}
.pagination-custom .page-link:hover{
    border-color:var(--border-strong);
    color:var(--brand-primary);
    background:var(--surface-light);
    transform:translateY(-2px);
}
.pagination-custom .page-item.active .page-link{
    background:var(--brand-gradient);
    color:#1a1208;
    border-color:transparent;
    font-weight:600;
    box-shadow:0 4px 16px rgba(227,169,62,0.25);
}
.pagination-custom .page-item.disabled .page-link{
    opacity:.5;
    pointer-events:none;
}
/* 侧栏 */
.sidebar{
    position:sticky;
    top:90px;
    display:flex;
    flex-direction:column;
    gap:28px;
}
.side-widget{
    background:var(--surface);
    border:1px solid var(--border-weak);
    border-radius:var(--radius-lg);
    padding:28px;
}
.side-widget h3{
    font-family:'Noto Serif SC',serif;
    font-size:18px;
    font-weight:700;
    color:var(--text-primary);
    margin-bottom:20px;
    padding-bottom:12px;
    border-bottom:1px solid var(--border-weak);
    display:flex;
    align-items:center;
    gap:8px;
}
.side-widget h3 i{color:var(--brand-primary);font-size:16px}
.hot-list{
    list-style:none;
    padding:0;
    margin:0;
}
.hot-list li{
    display:flex;
    align-items:center;
    gap:14px;
    padding:12px 0;
    border-bottom:1px solid rgba(227,169,62,0.06);
    transition:all .2s;
}
.hot-list li:last-child{border-bottom:none}
.hot-list li:hover{padding-left:6px}
.hot-rank{
    width:28px;height:28px;
    border-radius:8px;
    background:rgba(227,169,62,0.1);
    border:1px solid var(--border-weak);
    display:flex;align-items:center;justify-content:center;
    font-size:13px;
    font-weight:700;
    color:var(--brand-primary);
    flex-shrink:0;
    font-variant-numeric:tabular-nums;
}
.hot-list li:nth-child(1) .hot-rank{
    background:var(--brand-gradient);
    color:#1a1208;
    border:none;
}
.hot-list li:nth-child(2) .hot-rank{
    background:rgba(227,169,62,0.25);
    color:var(--brand-primary);
    border-color:var(--border-strong);
}
.hot-info{flex:1;min-width:0}
.hot-name{
    font-size:14px;
    font-weight:500;
    color:var(--text-primary);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.hot-meta{
    font-size:12px;
    color:var(--text-muted);
}
/* CTA */
.cat-cta{
    background:linear-gradient(rgba(20,16,14,0.92),rgba(20,16,14,0.85)),url('/assets/images/backpic/back-3.webp');
    background-size:cover;
    background-position:center;
    padding:64px 0;
    text-align:center;
    border-top:1px solid var(--border-weak);
}
.cat-cta h2{
    font-family:'Noto Serif SC',serif;
    font-size:clamp(1.6rem,2.5vw,2.2rem);
    color:var(--text-primary);
    margin-bottom:12px;
}
.cat-cta p{color:var(--text-secondary);font-size:15px;margin-bottom:28px}
/* 页脚 */
.site-footer{
    background:#0B0908;
    border-top:1px solid var(--border-weak);
    padding:64px 0 0;
}
.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:48px;
    padding-bottom:40px;
}
.footer-brand .logo-text{font-size:20px}
.footer-brand p{
    color:var(--text-muted);
    font-size:14px;
    line-height:1.8;
    margin-top:14px;
    max-width:320px;
}
.footer-col h4{
    font-family:'Noto Serif SC',serif;
    font-size:15px;
    color:var(--text-primary);
    margin-bottom:16px;
    letter-spacing:.04em;
}
.footer-col ul{
    list-style:none;
    padding:0;margin:0;
}
.footer-col ul li{margin-bottom:10px}
.footer-col ul a{
    color:var(--text-muted);
    font-size:14px;
    transition:color .2s;
}
.footer-col ul a:hover{color:var(--brand-primary)}
.footer-copy{
    border-top:1px solid rgba(227,169,62,0.08);
    padding:20px 0;
    text-align:center;
    color:var(--text-muted);
    font-size:13px;
    letter-spacing:.03em;
}
/* 响应式 */
@media(max-width:992px){
    .cat-layout{grid-template-columns:1fr}
    .sidebar{position:static}
    .footer-grid{grid-template-columns:1fr 1fr;gap:32px}
    .studio-card{flex-direction:column}
    .studio-pic{flex:none;width:100%}
    .studio-pic img{min-height:180px;width:100%}
}
@media(max-width:768px){
    .header-inner{height:62px}
    .logo-text{font-size:18px}
    .logo-mark{width:36px;height:36px;font-size:16px}
    .btn-header{padding:.45rem 1.2rem;font-size:14px}
    .breadcrumb-wrap{padding-top:80px}
    .filter-form{flex-direction:column;align-items:stretch}
    .filter-form .search-wrap{min-width:100%}
    .cat-hero{padding:48px 0}
    .cat-hero h1{font-size:1.8rem}
    .footer-grid{grid-template-columns:1fr}
    .studio-stats{flex-wrap:wrap;gap:16px}
}
@media(max-width:576px){
    .container{padding-left:16px;padding-right:16px}
    .filter-form .form-select,
    .filter-form .form-control{width:100%}
    .studio-card{padding:18px}
    .pagination-custom .page-link{min-width:36px;height:36px}
}

:root{
 --bg-primary:#14100E;
 --bg-secondary:#1D1713;
 --surface:#241C16;
 --surface-light:#2E251D;
 --border-weak:rgba(227,169,62,0.12);
 --border-strong:rgba(227,169,62,0.45);
 --brand-primary:#E3A93E;
 --brand-secondary:#B44032;
 --brand-gradient:linear-gradient(135deg,#E3A93E 0%,#C46B2A 55%,#A12D24 100%);
 --text-primary:#F3E7CE;
 --text-secondary:#C7B9A2;
 --text-muted:#9A8E7C;
 --success:#5B7B43;
 --shadow-card:0 12px 24px rgba(0,0,0,0.18);
 --shadow-hover:0 18px 34px rgba(0,0,0,0.30),0 0 0 1px rgba(227,169,62,0.35);
 --radius-lg:22px;
 --radius-md:12px;
 --radius-pill:999px;
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
 font-family:'Noto Sans SC',system-ui,-apple-system,sans-serif;
 background-color:var(--bg-primary);
 color:var(--text-primary);
 line-height:1.8;
 font-size:16px;
 overflow-x:hidden;
 padding-top:70px;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--brand-primary);text-decoration:none;transition:color .2s}
a:hover{color:var(--brand-primary)}
.container{max-width:1200px;padding-left:24px;padding-right:24px}
.btn{
 border-radius:var(--radius-pill);
 font-weight:500;
 padding:.65rem 1.8rem;
 border:1px solid transparent;
 transition:all .25s;
 font-size:15px;
}
.btn:focus-visible{outline:2px solid var(--brand-primary);outline-offset:2px}
.btn-primary{
 background:var(--brand-gradient);
 color:#1a1208;
 border:none;
 font-weight:600;
 box-shadow:0 4px 18px rgba(227,169,62,0.2);
}
.btn-primary:hover{
 transform:translateY(-2px);
 box-shadow:0 8px 30px rgba(227,169,62,0.35);
 color:#1a1208;
}
.btn-primary:active{transform:translateY(-1px) scale(.98)}
.btn-outline{
 background:transparent;
 border:1px solid var(--border-strong);
 color:var(--brand-primary);
}
.btn-outline:hover{
 background:rgba(227,169,62,0.1);
 border-color:var(--brand-primary);
 color:var(--brand-primary);
 transform:translateY(-2px);
}
.btn-lg{padding:.9rem 2.6rem;font-size:17px}
.site-header{
 position:fixed;
 top:0;left:0;right:0;
 z-index:1000;
 background:rgba(20,16,14,0.72);
 backdrop-filter:blur(12px);
 -webkit-backdrop-filter:blur(12px);
 border-bottom:1px solid var(--border-weak);
 transition:background .3s,box-shadow .3s;
}
.site-header.scrolled{
 background:rgba(20,16,14,0.92);
 box-shadow:0 4px 24px rgba(0,0,0,0.3);
}
.header-inner{
 display:flex;
 align-items:center;
 justify-content:space-between;
 height:70px;
}
.logo{
 display:flex;
 align-items:center;
 gap:12px;
}
.logo-mark{
 width:42px;
 height:42px;
 border-radius:12px;
 background:var(--brand-gradient);
 display:flex;
 align-items:center;
 justify-content:center;
 font-size:20px;
 color:#1a1208;
 box-shadow:0 0 18px rgba(227,169,62,0.25);
}
.logo-text{
 font-family:'Noto Serif SC',serif;
 font-size:22px;
 font-weight:700;
 color:var(--text-primary);
 letter-spacing:.02em;
}
.btn-header{
 padding:.5rem 1.6rem;
 font-size:14px;
 font-weight:600;
 background:var(--brand-gradient);
 color:#1a1208;
 border:none;
 border-radius:var(--radius-pill);
 transition:all .25s;
 white-space:nowrap;
}
.btn-header:hover{
 transform:translateY(-1px);
 box-shadow:0 6px 20px rgba(227,169,62,0.3);
 color:#1a1208;
}
.breadcrumb-wrap{
 background:var(--bg-secondary);
 border-bottom:1px solid var(--border-weak);
 padding:16px 0;
}
.breadcrumb-custom{
 margin:0;
 --bs-breadcrumb-divider-color:var(--text-muted);
}
.breadcrumb-custom .breadcrumb-item{
 color:var(--text-muted);
 font-size:14px;
}
.breadcrumb-custom .breadcrumb-item a{
 color:var(--text-muted);
 transition:color .2s;
}
.breadcrumb-custom .breadcrumb-item a:hover{
 color:var(--brand-primary);
}
.breadcrumb-custom .breadcrumb-item.active{
 color:var(--brand-primary);
}
.breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before{
 color:var(--text-muted);
}
.cat-hero{
 background:linear-gradient(rgba(20,16,14,0.88),rgba(20,16,14,0.65)),url('/assets/images/backpic/back-2.jpg');
 background-size:cover;
 background-position:center;
 padding:clamp(48px,6vw,80px) 0;
 border-bottom:1px solid var(--border-weak);
 position:relative;
}
.cat-hero::after{
 content:'';
 position:absolute;
 bottom:0;left:0;right:0;
 height:80px;
 background:linear-gradient(to bottom,rgba(20,16,14,0),var(--bg-primary));
 pointer-events:none;
}
.cat-hero h1{
 font-family:'Noto Serif SC',serif;
 font-size:clamp(2rem,3.5vw,3rem);
 font-weight:700;
 color:var(--text-primary);
 margin-bottom:12px;
 line-height:1.3;
}
.cat-hero p{
 color:var(--text-secondary);
 font-size:16px;
 max-width:620px;
 line-height:1.8;
 margin-bottom:0;
}
.filter-section{
 background:var(--bg-secondary);
 padding:28px 0;
 border-bottom:1px solid var(--border-weak);
}
.filter-form{
 display:flex;
 gap:16px;
 flex-wrap:wrap;
 align-items:center;
}
.filter-form .form-select,
.filter-form .form-control{
 background:var(--surface);
 border:1px solid var(--border-weak);
 color:var(--text-primary);
 border-radius:var(--radius-pill);
 padding:.6rem 1.4rem;
 font-size:14px;
 min-width:140px;
 transition:border-color .2s,box-shadow .2s;
 cursor:pointer;
}
.filter-form .form-select:focus,
.filter-form .form-control:focus{
 border-color:var(--border-strong);
 box-shadow:0 0 0 3px rgba(227,169,62,0.1);
 outline:none;
 background:var(--surface-light);
 color:var(--text-primary);
}
.filter-form .form-select option{
 background:var(--surface);
 color:var(--text-primary);
}
.filter-form .form-control::placeholder{color:var(--text-muted)}
.filter-form .search-wrap{
 position:relative;
 flex:1;
 min-width:220px;
}
.filter-form .search-wrap .fa-magnifying-glass{
 position:absolute;
 left:18px;
 top:50%;
 transform:translateY(-50%);
 color:var(--text-muted);
 font-size:14px;
 pointer-events:none;
}
.filter-form .search-wrap .form-control{
 padding-left:44px;
 width:100%;
 cursor:text;
}
.filter-form .btn{
 min-width:120px;
}
.cat-main{
 padding:clamp(48px,6vw,80px) 0;
}
.result-info{
 color:var(--text-muted);
 font-size:14px;
 margin-bottom:24px;
 display:flex;
 align-items:center;
 gap:8px;
}
.result-info::before{
 content:'';
 width:4px;
 height:16px;
 background:var(--brand-gradient);
 border-radius:2px;
}
.studio-list{
 display:flex;
 flex-direction:column;
 gap:28px;
}
.studio-card{
 display:flex;
 gap:24px;
 background:var(--surface);
 border:1px solid var(--border-weak);
 border-radius:var(--radius-lg);
 padding:24px;
 transition:transform .3s,box-shadow .3s,border-color .3s,background .3s;
}
.studio-card:hover{
 border-color:var(--border-strong);
 box-shadow:var(--shadow-hover);
 transform:translateY(-4px);
 background:var(--surface-light);
}
.studio-pic{
 flex:0 0 260px;
 border-radius:var(--radius-md);
 overflow:hidden;
}
.studio-pic img{
 width:100%;
 height:100%;
 object-fit:cover;
 min-height:200px;
 transition:transform .4s;
}
.studio-card:hover .studio-pic img{transform:scale(1.03)}
.studio-body{
 flex:1;
 display:flex;
 flex-direction:column;
}
.studio-tags{
 display:flex;
 gap:8px;
 flex-wrap:wrap;
 margin-bottom:12px;
}
.studio-tags .tag{
 font-size:12px;
 color:var(--text-secondary);
 background:var(--bg-secondary);
 border:1px solid var(--border-weak);
 padding:2px 10px;
 border-radius:var(--radius-pill);
 transition:border-color .2s,color .2s;
}
.studio-tags .tag:hover{
 border-color:var(--border-strong);
 color:var(--brand-primary);
}
.studio-title{
 font-family:'Noto Serif SC',serif;
 font-size:22px;
 font-weight:700;
 color:var(--text-primary);
 margin-bottom:8px;
 line-height:1.3;
}
.studio-desc{
 color:var(--text-secondary);
 font-size:14px;
 line-height:1.8;
 margin-bottom:16px;
 flex:1;
}
.studio-meta{
 display:flex;
 gap:16px;
 flex-wrap:wrap;
}
.meta-badge{
 display:inline-flex;
 align-items:center;
 gap:6px;
 font-size:13px;
 color:var(--text-secondary);
 background:var(--bg-secondary);
 border:1px solid var(--border-weak);
 padding:4px 12px;
 border-radius:var(--radius-pill);
}
.meta-badge i{
 color:var(--brand-primary);
 font-size:12px;
}
.pagination-wrap{
 margin-top:48px;
 display:flex;
 justify-content:center;
}
.pagination-custom{
 gap:6px;
}
.pagination-custom .page-link{
 background:var(--surface);
 border:1px solid var(--border-weak);
 color:var(--text-secondary);
 border-radius:var(--radius-pill);
 margin:0;
 padding:.5rem 1.05rem;
 font-size:14px;
 transition:all .2s;
}
.pagination-custom .page-link:hover{
 background:var(--surface-light);
 border-color:var(--border-strong);
 color:var(--brand-primary);
}
.pagination-custom .page-item.active .page-link{
 background:var(--brand-gradient);
 color:#1a1208;
 border-color:transparent;
 font-weight:600;
 box-shadow:0 4px 16px rgba(227,169,62,0.25);
}
.pagination-custom .page-item.disabled .page-link{
 background:var(--bg-secondary);
 border-color:var(--border-weak);
 color:var(--text-muted);
 opacity:.6;
}
.pagination-custom .page-link:focus-visible{
 outline:2px solid var(--brand-primary);
 outline-offset:2px;
 box-shadow:none;
}
.sidebar-widget{
 background:var(--surface);
 border:1px solid var(--border-weak);
 border-radius:var(--radius-lg);
 padding:28px;
 margin-bottom:28px;
 transition:border-color .3s;
}
.sidebar-widget:hover{
 border-color:var(--border-weak);
}
.widget-title{
 font-family:'Noto Serif SC',serif;
 font-size:18px;
 font-weight:700;
 color:var(--text-primary);
 margin-bottom:20px;
 display:flex;
 align-items:center;
 gap:10px;
 padding-bottom:14px;
 border-bottom:1px solid var(--border-weak);
}
.widget-title i{
 color:var(--brand-primary);
 font-size:16px;
}
.hot-rank{
 list-style:none;
 padding:0;
 margin:0;
}
.hot-rank li{
 display:flex;
 align-items:center;
 gap:16px;
 padding:14px 0;
 border-bottom:1px solid var(--border-weak);
 transition:background .2s,padding-left .2s;
}
.hot-rank li:last-child{border-bottom:none}
.hot-rank li:hover{
 background:rgba(227,169,62,0.04);
 padding-left:6px;
}
.rank-num{
 font-family:'Noto Serif SC',serif;
 font-size:18px;
 font-weight:700;
 color:var(--brand-primary);
 min-width:36px;
 text-align:center;
 background:linear-gradient(135deg,rgba(227,169,62,0.15),rgba(180,64,50,0.08));
 border-radius:var(--radius-md);
 padding:4px 0;
 flex-shrink:0;
}
.rank-info{
 flex:1;
}
.rank-info h5{
 font-size:15px;
 font-weight:600;
 color:var(--text-primary);
 margin-bottom:2px;
 line-height:1.4;
}
.rank-info p{
 font-size:12px;
 color:var(--text-muted);
 margin:0;
}
.rank-link{
 font-size:13px;
 color:var(--brand-primary);
 white-space:nowrap;
 opacity:0;
 transition:opacity .2s;
}
.hot-rank li:hover .rank-link{opacity:1}
.hot-topics{
 list-style:none;
 padding:0;
 margin:0;
}
.hot-topics li{
 padding:10px 0;
 border-bottom:1px solid var(--border-weak);
}
.hot-topics li:last-child{border-bottom:none}
.hot-topics a{
 color:var(--text-secondary);
 font-size:14px;
 line-height:1.6;
 display:inline-block;
 transition:color .2s;
}
.hot-topics a:hover{
 color:var(--brand-primary);
}
.hot-topics a::after{
 content:' →';
 font-size:12px;
 opacity:0;
 transition:opacity .2s,margin-left .2s;
}
.hot-topics a:hover::after{
 opacity:1;
 margin-left:2px;
}
.cat-cta{
 background:linear-gradient(135deg,rgba(227,169,62,0.08),rgba(180,64,50,0.04)),var(--bg-secondary);
 border-top:1px solid var(--border-weak);
 border-bottom:1px solid var(--border-weak);
 padding:clamp(56px,7vw,80px) 0;
 text-align:center;
}
.cat-cta h2{
 font-family:'Noto Serif SC',serif;
 font-size:clamp(1.6rem,3vw,2.4rem);
 font-weight:700;
 color:var(--text-primary);
 margin-bottom:12px;
}
.cat-cta p{
 color:var(--text-secondary);
 font-size:16px;
 margin-bottom:32px;
}
.site-footer{
 background:#0E0B09;
 border-top:1px solid var(--border-weak);
 padding:60px 0 0;
}
.footer-grid{
 display:grid;
 grid-template-columns:1.5fr 1fr 1fr;
 gap:48px;
 padding-bottom:48px;
}
.footer-brand .logo{
 margin-bottom:16px;
}
.footer-brand .logo-text{
 color:var(--text-primary);
}
.footer-brand p{
 color:var(--text-muted);
 font-size:14px;
 line-height:1.8;
 max-width:340px;
 margin:0;
}
.footer-col h4{
 font-family:'Noto Serif SC',serif;
 font-size:16px;
 font-weight:700;
 color:var(--text-primary);
 margin-bottom:20px;
}
.footer-col ul{
 list-style:none;
 padding:0;
 margin:0;
}
.footer-col li{
 margin-bottom:10px;
}
.footer-col a{
 color:var(--text-muted);
 font-size:14px;
 transition:color .2s;
}
.footer-col a:hover{
 color:var(--brand-primary);
}
.footer-copy{
 border-top:1px solid rgba(227,169,62,0.08);
 padding:24px 0;
 text-align:center;
 color:var(--text-muted);
 font-size:14px;
}
@media (max-width: 991px){
 .footer-grid{
  grid-template-columns:1fr 1fr;
  gap:32px;
 }
 .studio-pic{
  flex:0 0 220px;
 }
}
@media (max-width: 767px){
 body{
  padding-top:64px;
 }
 .header-inner{
  height:64px;
 }
 .logo-text{
  font-size:19px;
 }
 .logo-mark{
  width:38px;
  height:38px;
  font-size:18px;
  border-radius:10px;
 }
 .btn-header{
  padding:.45rem 1.2rem;
  font-size:13px;
 }
 .studio-card{
  flex-direction:column;
  padding:16px;
  gap:16px;
 }
 .studio-pic{
  flex:none;
 }
 .studio-pic img{
  min-height:200px;
 }
 .filter-section .filter-form{
  flex-direction:column;
  align-items:stretch;
 }
 .filter-form .search-wrap{
  min-width:100%;
 }
 .filter-form .btn{
  width:100%;
 }
 .footer-grid{
  grid-template-columns:1fr;
  gap:28px;
 }
 .cat-hero{
  padding:40px 0 56px;
 }
}
@media (max-width: 575px){
 .container{
  padding-left:16px;
  padding-right:16px;
 }
 .breadcrumb-custom{
  flex-wrap:nowrap;
 }
 .studio-meta{
  flex-direction:column;
  gap:8px;
 }
 .pagination-custom .page-link{
  padding:.45rem .85rem;
  font-size:13px;
 }
 .sidebar-widget{
  padding:20px;
 }
 .cat-cta .btn-lg{
  width:100%;
 }
}

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
