*,*::before,*::after {
    box-sizing: border-box
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%
}

:root {
    --bg: #f5f5f5;
    --surface: #fff;
    --card: #fff;
    --chip: #ececec;
    --text: #0a0a0a;
    --text-soft: #2e2e2e;
    --muted: #8a8a8a;
    --line: rgba(0,0,0,.07);
    --stroke: rgba(0,0,0,.07);
    --stroke-strong: rgba(0,0,0,.14);
    --accent: #0a0a0a;
    --accent-ink: #f5f5f5;
    --accent-soft: rgba(10,10,10,.07);
    --accent-deep: #000;
    --shadow: rgba(0,0,0,.04);
    --overlay: rgba(0,0,0,.4);
    --card-shadow: 0 1px 2px rgba(0,0,0,.03),0 8px 24px rgba(0,0,0,.05);
    --card-shadow-hover: 0 2px 4px rgba(0,0,0,.04),0 16px 40px rgba(0,0,0,.08);
    --radius: 20px;
    --radius-sm: 12px;
    --sidebar-w: 232px;
    --main-max: 1680px;
    --main-pad: 16px;
    --plaza-aside-w: 300px;
    --main-bar-h: 70px;
    --font: system-ui,-apple-system,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC",sans-serif
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.55;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%
}

html.uc-ui-lock,html.uc-ui-lock body,body.uc-ui-lock,body.sidebar-open,body.mobile-nav-open {
    overflow: hidden!important
}

html.uc-preload *,html.uc-preload *::before,html.uc-preload *::after {
    transition: none!important;
    animation: none!important
}

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

button,input,textarea,select {
    font: inherit;
    color: inherit
}

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

.is-hidden {
    display: none!important
}

.mobile-only {
    display: none!important
}

.app {
    display: flex;
    min-height: 100vh;
    width: 100%
}

.sidebar {
    position: sticky;
    top: 0;
    align-self: flex-start;
    width: var(--sidebar-w,225px);
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: var(--surface);
    border-right: 1px solid var(--line);
    z-index: 30
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 70px;
    height: auto;
    padding: 12px 16px;
    margin: 0;
    font-weight: 800;
    letter-spacing: -.03em;
    border-bottom: 1px solid var(--line);
    flex: 0 0 auto;
    box-sizing: border-box
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 14px;
    font-weight: 800;
    flex: 0 0 auto
}

.logo-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1px;
    min-width: 0;
    flex: 1
}

.logo-text {
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%
}

.logo-sub {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--muted);
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%
}

.logo-img {
    display: block;
    height: 36px;
    width: auto;
    max-width: 168px;
    object-fit: contain;
    object-position: left center
}

.sidebar-nav {
    flex: 1;
    overflow: auto;
    padding: 14px 12px 12px;
    scrollbar-width: thin
}

.sidebar-label {
    margin: 14px 8px 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted)
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    height: 48px;
    padding: 0 12px;
    border-radius: 12px;
    margin-bottom: 4px;
    color: var(--text);
    font-size: 14px;
    box-sizing: border-box
}

.sidebar-link i {
    font-size: 20px;
    opacity: 1;
    width: 22px;
    text-align: center;
    color: var(--text-soft)
}

.sidebar-link span {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.sidebar-link em {
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
    flex: 0 0 auto;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--chip);
    line-height: 1;
    box-sizing: border-box
}

.sidebar-link:hover {
    background: var(--chip);
    color: var(--text)
}

.sidebar-link:hover i {
    color: var(--text)
}

.sidebar-link:hover em {
    background: #fff;
    color: var(--text-soft)
}

.sidebar-link.on {
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 600;
}

.sidebar-link.on i {
    opacity: 1;
    color: var(--accent)
}

.sidebar-link.on em {
    background: var(--accent);
    color: var(--accent-ink);
    opacity: 1
}

.sidebar-notices {
    margin: 14px 4px 4px;
    padding-top: 12px;
    border-top: 1px solid var(--line)
}

html:not(.layout-dual):not(.layout-triple) .sidebar-notices {
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 16px;
    padding-right: 16px
}

.sidebar-notices-head {
    margin: 0 6px 8px;
    font-size: 12px;
    font-weight: 750;
    color: var(--text-soft)
}

.sidebar-notices-list {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.sidebar-notice-link {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 12px;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35
}

.sidebar-notice-link i {
    font-size: 14px;
    opacity: .7;
    margin-top: 1px;
    flex: 0 0 auto
}

.sidebar-notice-link span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.sidebar-notice-link:hover {
    background: var(--chip);
    color: var(--text)
}

.sidebar-notice-link:hover i {
    opacity: 1;
    color: var(--accent)
}

.sidebar-foot {
    position: relative;
    margin: 0;
    padding: 0 14px;
    border-top: 1px solid var(--line);
    flex: 0 0 auto;
    height: 72px;
    min-height: 72px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    background: var(--surface)
}

.sidebar-user-row {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0
}

.sidebar-user {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 14px
}

.sidebar-user:hover {
    background: var(--chip)
}

.sidebar-user img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto
}

.sidebar-user > div {
    min-width: 0
}

.sidebar-user strong {
    display: block;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.sidebar-user small {
    color: var(--muted);
    font-size: 11px
}

.sidebar-login {
    flex: 1;
    min-width: 0
}

.sidebar-set-btn {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--chip);
    color: var(--text-soft);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .15s ease,color .15s ease,border-color .15s ease
}

.sidebar-set-btn i {
    font-size: 18px
}

.sidebar-set-btn:hover {
    background: #fff;
    border-color: var(--stroke-strong);
    color: var(--text)
}

.sidebar-set-btn[aria-expanded="true"] {
    background: var(--accent);
    color: var(--accent-ink);
    border-color: transparent
}

.prefs-label {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted)
}

.prefs-themes {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 8px
}

.prefs-theme {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 8px;
    min-width: 0;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--chip);
    font-size: 12px;
    font-weight: 650;
    color: var(--text-soft);
    cursor: pointer;
    text-align: left
}

.prefs-theme > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.prefs-theme:hover {
    background: #fff;
    border-color: var(--stroke-strong);
    color: var(--text)
}

.prefs-theme.on {
    background: var(--accent);
    color: var(--accent-ink);
    border-color: transparent
}

.prefs-theme-swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex: 0 0 auto;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.12)
}

.prefs-theme-blue {
    background: #2563eb
}

.prefs-theme-green {
    background: #16a34a
}

.prefs-theme-red {
    background: #dc2626
}

.prefs-theme-orange {
    background: #ea580c
}

.prefs-theme-pink {
    background: #db2777
}

.prefs-theme-teal {
    background: #0d9488
}

.prefs-theme-indigo {
    background: #4f46e5
}

.prefs-theme-cyan {
    background: #0891b2
}

.prefs-theme-ink {
    background: #0a0a0a
}

.prefs-theme.on .prefs-theme-swatch {
    box-shadow: 0 0 0 2px rgba(255,255,255,.55)
}

.prefs-sec + .prefs-sec {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line)
}

.prefs-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px
}

.prefs-layout-btn {
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--chip);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-soft);
    cursor: pointer;
    transition: background .15s ease,border-color .15s ease,color .15s ease
}

.prefs-layout-btn i {
    font-size: 16px
}

.prefs-layout-btn:hover {
    background: #fff;
    border-color: var(--stroke-strong);
    color: var(--text)
}

.prefs-layout-btn.on {
    background: var(--accent);
    color: var(--accent-ink);
    border-color: transparent
}

.bar-left {
    display: none;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    min-width: 0
}

.bar-brand {
    display: none;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    font-weight: 800;
    letter-spacing: -.03em;
    min-width: 0
}

.bar-brand .logo-copy {
    flex: 0 1 auto
}

.bar-brand .logo-text {
    max-width: 9em
}

.bar-brand .logo-img {
    height: 32px;
    max-width: 140px
}

.bar-brand.has-logo {
    gap: 0
}

.bar-ver,.bar-rank-btn,.bar-nav-tab-link {
    display: none
}

#js-mobile-nav-toggle {
    display: none
}

.bar-set-btn {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text-soft);
    place-items: center;
    cursor: pointer;
    transition: background .15s ease,color .15s ease,border-color .15s ease
}

.bar-set-btn i {
    font-size: 18px
}

.bar-set-btn:hover {
    border-color: var(--stroke-strong);
    color: var(--text)
}

.bar-set-btn[aria-expanded="true"] {
    background: var(--accent);
    color: var(--accent-ink);
    border-color: transparent
}

.bar-msg-btn {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text-soft);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .15s ease,color .15s ease,border-color .15s ease;
    text-decoration: none
}

.bar-msg-btn:hover {
    border-color: var(--stroke-strong);
    color: var(--text)
}

.bar-msg-btn i {
    font-size: 18px;
    line-height: 1
}

.bar-msg-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--danger);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0,0,0,.12)
}

.bar-signin-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text-soft);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .15s ease,color .15s ease,border-color .15s ease
}

.bar-signin-btn i {
    font-size: 18px;
    line-height: 1
}

.bar-signin-btn:hover {
    border-color: var(--stroke-strong);
    color: var(--text)
}

html.layout-dual .sidebar,html.layout-triple .sidebar {
    display: none
}

html.layout-triple {
    --plaza-aside-w: 280px
}

html.layout-dual .bar-left,html.layout-triple .bar-left {
    display: flex
}

html.layout-dual .bar-brand,html.layout-triple .bar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0
}

html.layout-dual .bar-brand .logo-copy,html.layout-triple .bar-brand .logo-copy {
    display: flex;
    min-width: 0;
    flex: 1 1 auto
}

html.layout-dual .bar-brand .logo-sub,html.layout-triple .bar-brand .logo-sub {
    max-width: none;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-word
}

html.layout-dual .bar-brand .logo-img,html.layout-triple .bar-brand .logo-img {
    height: 34px;
    max-width: 160px
}

html.layout-dual .bar-brand.has-logo,html.layout-triple .bar-brand.has-logo {
    gap: 0
}

html.layout-dual .bar-ver,html.layout-triple .bar-ver {
    display: none!important
}

html:not(.layout-dual):not(.layout-triple) .bar-set-btn,html.layout-dual .bar-set-btn,html.layout-triple .bar-set-btn {
    display: grid
}

html:not(.layout-dual):not(.layout-triple) .sidebar-foot {
    display: none
}

html.layout-dual body.sidebar-open,html.layout-triple body.sidebar-open {
    overflow: auto
}

html.layout-dual body.sidebar-open::before,html.layout-triple body.sidebar-open::before {
    display: none
}

html:not(.layout-dual):not(.layout-triple) {
    --shell-pad: 28px;
    --float-rail-space: 6%;
    --single-content-gap: 2%
}

html:not(.layout-dual):not(.layout-triple) .main-scroll {
    padding-left: 0;
    padding-right: 0
}

html:not(.layout-dual):not(.layout-triple) .site-foot {
    padding-left: 0;
    padding-right: 0
}

html:not(.layout-dual):not(.layout-triple) .main-bar-inner,html:not(.layout-dual):not(.layout-triple) .content,html:not(.layout-dual):not(.layout-triple) .site-foot-inner,html:not(.layout-dual):not(.layout-triple) .site-foot-bottom-inner {
    width: min(var(--main-max,1600px),calc(100% - var(--single-content-gap) - var(--float-rail-space)));
    max-width: none;
    margin-left: var(--single-content-gap);
    margin-right: var(--float-rail-space);
    box-sizing: border-box
}

html:not(.layout-dual):not(.layout-triple) .content,html:not(.layout-dual):not(.layout-triple) .plaza-main {
    min-width: 0
}

html.layout-dual,html.layout-triple {
    --shell-pad: 28px
}

html.layout-dual .main-scroll,html.layout-triple .main-scroll {
    padding-left: 0;
    padding-right: 0
}

html.layout-dual .site-foot,html.layout-triple .site-foot {
    padding-left: 0;
    padding-right: 0
}

html.layout-dual .main-bar-inner,html.layout-dual .content,html.layout-dual .site-foot-inner,html.layout-dual .site-foot-bottom-inner {
    width: min(80%,calc(100% - var(--shell-pad) * 2));
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box
}

html.layout-triple .main-bar-inner,html.layout-triple .content,html.layout-triple .site-foot-inner,html.layout-triple .site-foot-bottom-inner {
    width: min(80%,calc(100% - var(--shell-pad) * 2));
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box
}

html.layout-dual .main-bar-inner,html.layout-triple .main-bar-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative
}

html.layout-dual .bar-left,html.layout-triple .bar-left {
    position: static;
    transform: none;
    margin-right: 0;
    flex: 0 0 auto
}

html.layout-dual .bar-center,html.layout-triple .bar-center {
    flex: 0 1 auto;
    min-width: 0;
    margin-left: 7.5%
}

html.layout-dual .bar-right,html.layout-triple .bar-right {
    margin-left: auto;
    flex: 0 0 auto
}

.bar-nav-item[data-shell="single"],.bar-nav-item[data-shell="dual"],.bar-nav-item[data-shell="triple"],.bar-nav-item[data-shell="dual_triple"] {
    display: none!important
}

html:not(.layout-dual):not(.layout-triple) .bar-nav-item[data-shell="single"] {
    display: inline-flex!important
}

html.layout-dual .bar-nav-item[data-shell="dual"],html.layout-dual .bar-nav-item[data-shell="dual_triple"] {
    display: inline-flex!important
}

html.layout-triple .bar-nav-item[data-shell="triple"],html.layout-triple .bar-nav-item[data-shell="dual_triple"] {
    display: inline-flex!important
}

.bar-nav-item[data-shell="all"] {
    display: inline-flex
}

.bar-nav-drop {
    position: relative;
    flex: 0 0 auto
}

.bar-nav-drop-btn {
    height: 36px;
    padding: 0 10px 0 12px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: var(--text-soft);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: background .15s ease,color .15s ease
}

.bar-nav-drop-btn:hover {
    color: var(--accent);
    background: transparent
}

.bar-nav-drop-btn.on,.bar-nav-drop.open .bar-nav-drop-btn {
    background: transparent;
    color: var(--accent)
}

.bar-nav-drop-btn.on .bar-nav-drop-caret,.bar-nav-drop.open .bar-nav-drop-btn .bar-nav-drop-caret {
    opacity: 1;
    color: inherit
}

.bar-nav-drop-caret {
    font-size: 16px;
    opacity: .7;
    flex: 0 0 auto
}

.bar-nav-drop-menu {
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    z-index: 40;
    transform: translateX(-50%);
    min-width: max(100%,180px);
    width: max-content;
    padding: 8px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--card);
    box-shadow: var(--card-shadow-hover);
    display: flex;
    flex-direction: column;
    gap: 2px
}

.bar-nav-drop-menu[hidden] {
    display: none!important
}

.bar-nav-drop-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 600;
    transition: background .15s ease,color .15s ease
}

.bar-nav-drop-item i {
    font-size: 16px;
    opacity: .7;
    width: 18px;
    text-align: center;
    flex: 0 0 auto
}

.bar-nav-drop-item span {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.bar-nav-drop-item em {
    font-style: normal;
    font-size: 11px;
    color: var(--muted);
    font-variant-numeric: tabular-nums
}

.bar-nav-drop-item:hover {
    background: var(--chip);
    color: var(--text)
}

.bar-nav-drop-item.on {
    background: var(--accent);
    color: var(--accent-ink)
}

.bar-nav-drop-item.on i,.bar-nav-drop-item.on em {
    opacity: 1;
    color: inherit
}

.prefs-panel {
    position: fixed;
    z-index: 80;
    width: min(var(--plaza-aside-w,300px),calc(100vw - 24px));
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--card);
    box-shadow: var(--card-shadow-hover)
}

.prefs-panel[hidden] {
    display: none!important
}

.prefs-panel.prefs-panel-in-drawer {
    z-index: 90;
    box-shadow: var(--card-shadow-hover)
}

.main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column
}

.main-bar {
    position: sticky;
    top: 0;
    z-index: 20;
    --main-bar-h: 70px;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--line);
    box-shadow: none
}

.main-bar-inner {
    width: min(var(--main-max,1680px),calc(100% - var(--main-pad,16px) * 2));
    margin: 0 auto;
    height: var(--main-bar-h,70px);
    display: flex;
    align-items: center;
    gap: 12px
}

.bar-center {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0
}

.bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    flex: 0 0 auto;
    min-width: 0
}

.bar-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0
}

.bar-nav > a.bar-nav-item {
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.bar-nav > a.bar-nav-item i {
    font-size: 16px;
    line-height: 1
}

.bar-nav > a.bar-nav-item:hover {
    color: var(--accent);
    background: transparent
}

.bar-nav > a.bar-nav-item.on {
    color: var(--accent);
    background: transparent
}

.bar-search {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    padding: 0 10px 0 14px;
    max-width: 300px;
    width: 240px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--muted);
    cursor: pointer;
    text-align: left;
    box-shadow: 0 1px 2px var(--shadow);
    transition: border-color .15s ease,box-shadow .15s ease,color .15s ease
}

.bar-search:hover {
    border-color: var(--stroke-strong);
    color: var(--text);
    box-shadow: var(--card-shadow)
}

.bar-search > i {
    flex: 0 0 auto;
    font-size: 16px;
    line-height: 1
}

.bar-search > span:not(.bar-search-keys) {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    min-width: 0
}

.bar-search-keys {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex: 0 0 auto;
    margin-left: auto
}

.bar-search kbd,.bar-search-keys kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    color: var(--muted);
    background: #fff;
    border: 1px solid color-mix(in srgb,var(--line) 90%,#cbd5e1);
    border-radius: 6px;
    box-shadow: 0 1px 0 color-mix(in srgb,var(--line) 70%,transparent)
}

.bar-spacer {
    flex: 1
}

.bar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto
}

.bar-post-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: var(--accent-ink);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .15s ease,color .15s ease,border-color .15s ease,opacity .15s ease,filter .15s ease
}

.bar-post-btn:hover {
    border-color: var(--accent);
    color: var(--accent-ink);
    filter: brightness(1.06)
}

.bar-post-btn i {
    font-size: 18px;
    line-height: 1
}

.bar-icon {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    display: grid;
    place-items: center;
    cursor: pointer
}

.main-scroll {
    flex: 1;
    padding: 16px var(--main-pad,16px) 32px
}

.content {
    width: min(var(--main-max,1680px),100%);
    margin: 0 auto
}

.site-foot {
    width: 100%;
    margin: 0;
    padding: 40px 0 0;
    border-top: 1px solid var(--line);
    background: var(--card,#fff);
    flex-shrink: 0
}

.site-foot-inner {
    width: min(var(--main-max,1680px),100%);
    margin: 0 auto;
    padding: 0 0 24px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    box-sizing: border-box
}

.site-foot-grid {
    display: grid;
    grid-template-columns: minmax(0,1.35fr) repeat(var(--foot-cols,3),minmax(0,1fr));
    gap: 28px 36px;
    padding-bottom: 0
}

.site-foot-grid[data-cols="0"] {
    grid-template-columns: minmax(0,1fr)
}

.site-foot-grid[data-cols="1"] {
    grid-template-columns: minmax(0,1.35fr) minmax(0,1fr)
}

.site-foot-grid[data-cols="2"] {
    grid-template-columns: minmax(0,1.35fr) repeat(2,minmax(0,1fr))
}

.site-foot-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    min-width: 0
}

.site-foot-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -.02em
}

.site-foot-brand-link .logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    font-size: 14px
}

.site-foot-brand-link .logo-text {
    font-size: 16px;
    max-width: 12em
}

.site-foot-brand-link .logo-img {
    height: 40px;
    max-width: 180px
}

.site-foot-brand-link.has-logo {
    gap: 0
}

.site-foot-desc {
    margin: 0;
    max-width: 28em;
    font-size: 13px;
    line-height: 1.65;
    font-weight: 500;
    color: var(--muted)
}

.site-foot-title {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.01em
}

.site-foot-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0
}

.site-foot-col > a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 600;
    transition: color .15s ease
}

.site-foot-col > a:hover {
    color: var(--accent)
}

.site-foot-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.site-foot-social a,.site-foot-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--chip);
    color: var(--text-soft);
    display: grid;
    place-items: center;
    font-size: 17px;
    transition: background .15s ease,border-color .15s ease,color .15s ease,transform .15s ease;
    cursor: pointer;
    padding: 0;
    appearance: none;
    -webkit-appearance: none
}

.site-foot-social a:hover,.site-foot-social-btn:hover {
    border-color: transparent;
    background: var(--accent);
    color: var(--accent-ink);
    transform: translateY(-1px)
}

.site-qr-hit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle
}

.site-qr-panel {
    position: absolute;
    z-index: 60;
    left: 50%;
    bottom: calc(100% + 12px);
    width: 148px;
    padding: 12px 12px 10px;
    border-radius: 14px;
    background: var(--panel,#fff);
    border: 1px solid var(--line,#e6eef0);
    box-shadow: 0 14px 36px rgba(15,23,42,.16);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: opacity .18s ease,transform .18s ease,visibility .18s ease
}

.site-qr-panel::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 12px;
    height: 12px;
    margin-left: -6px;
    background: var(--panel,#fff);
    border-right: 1px solid var(--line,#e6eef0);
    border-bottom: 1px solid var(--line,#e6eef0);
    transform: rotate(45deg)
}

.site-qr-panel img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
    margin: 0 auto 8px;
    border-radius: 6px;
    background: #fff
}

.site-qr-panel em {
    display: block;
    font-style: normal;
    font-size: 12px;
    font-weight: 650;
    color: var(--text-soft);
    line-height: 1.3
}

.site-qr-hit:hover .site-qr-panel,.site-qr-hit.is-open .site-qr-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0)
}

.site-qr-hit-float .site-qr-panel {
    left: auto;
    right: calc(100% + 14px);
    bottom: 50%;
    transform: translateY(50%) translateX(10px)
}

.site-qr-hit-float .site-qr-panel::after {
    left: auto;
    right: -6px;
    bottom: 50%;
    margin: 0 0 -6px;
    border-right: 0;
    border-bottom: 0;
    border-left: 1px solid var(--line,#e6eef0);
    border-top: 1px solid var(--line,#e6eef0)
}

.site-qr-hit-float:hover .site-qr-panel,.site-qr-hit-float.is-open .site-qr-panel {
    transform: translateY(50%) translateX(0)
}

.site-foot-qr-pop {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    background: rgba(15,23,42,.45);
    padding: 20px
}

.site-foot-qr-pop[hidden] {
    display: none!important
}

.site-foot-qr-card {
    width: min(280px,100%);
    background: var(--panel,#fff);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px 18px 14px;
    box-shadow: 0 18px 50px rgba(15,23,42,.18);
    text-align: center
}

.site-foot-qr-card img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    display: block;
    margin: 0 auto 12px
}

.site-foot-qr-card strong {
    display: block;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 8px
}

.site-foot-qr-card .site-foot-qr-close {
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 13px;
    cursor: pointer;
    padding: 6px 10px
}

.site-foot-bottom {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 72px;
    min-height: 72px;
    border-top: 1px solid var(--line);
    box-sizing: border-box
}

.site-foot-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
    height: 100%;
    min-height: 0;
    padding: 0;
    box-sizing: border-box
}

.site-foot-copy {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin: 0
}

.site-foot-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500
}

.site-foot-legal a {
    color: var(--muted)
}

.site-foot-legal a:hover {
    color: var(--accent)
}

html:not(.layout-dual):not(.layout-triple) .site-foot-bottom {
    width: 100%;
    margin-left: 0;
    display: block;
    background: var(--card,#fff)
}

html:not(.layout-dual):not(.layout-triple) .site-foot-bottom-inner {
    grid-column: auto
}

.site-float {
    position: fixed;
    right: auto;
    left: auto;
    width: 52px;
    bottom: 96px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-sizing: border-box
}

.site-float-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.site-float-btn {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.52);
    color: var(--text);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(15,23,42,.12),inset 0 1px 0 rgba(255,255,255,.65);
    border: 1px solid rgba(255,255,255,.55);
    backdrop-filter: blur(20px) saturate(1.35);
    -webkit-backdrop-filter: blur(20px) saturate(1.35);
    text-decoration: none;
    transition: transform .2s ease,box-shadow .2s ease,color .15s ease,background .15s ease;
    box-sizing: border-box
}

.site-float-btn:hover {
    transform: translateY(-2px);
    color: var(--accent);
    background: rgba(255,255,255,.68);
    box-shadow: 0 10px 28px rgba(15,23,42,.14),inset 0 1px 0 rgba(255,255,255,.75)
}

.site-float-btn i {
    font-size: 26px;
    line-height: 1
}

.site-float .back-top {
    position: static;
    right: auto;
    bottom: auto
}

.back-top {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.52);
    color: var(--accent);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(15,23,42,.12),inset 0 1px 0 rgba(255,255,255,.65);
    border: 1px solid rgba(255,255,255,.55);
    backdrop-filter: blur(20px) saturate(1.35);
    -webkit-backdrop-filter: blur(20px) saturate(1.35);
    transition: opacity .2s ease,transform .2s ease,background .15s ease,box-shadow .2s ease
}

.back-top[hidden] {
    display: none!important
}

.back-top:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.68);
    box-shadow: 0 10px 28px rgba(15,23,42,.14),inset 0 1px 0 rgba(255,255,255,.75)
}

.back-top i {
    font-size: 26px
}

@media (max-width: 960px) {
    .site-foot {
        padding:32px 0 0
    }

    .site-foot-inner {
        padding: 0 16px 22px
    }

    .site-foot-grid {
        grid-template-columns: 1fr!important;
        gap: 18px
    }

    .site-foot-brand {
        grid-column: auto
    }

    .site-foot-col {
        display: none!important
    }

    .site-foot-bottom {
        height: auto;
        min-height: 64px
    }

    .site-foot-bottom-inner {
        padding: 0 16px;
        height: auto;
        min-height: 64px
    }
}

@media (max-width: 960px) {
    .site-float {
        left:auto!important;
        right: 12px;
        bottom: calc(88px + env(safe-area-inset-bottom,0px));
        width: 40px;
        gap: 8px;
        transition: bottom .28s ease
    }

    body.tabbar-hidden .site-float {
        bottom: calc(16px + env(safe-area-inset-bottom,0px))
    }

    .site-float-actions {
        gap: 8px
    }

    .site-float-btn,.site-float .back-top,.back-top {
        width: 40px;
        height: 40px
    }

    .site-float-btn i,.back-top i {
        font-size: 20px
    }
}

@media (max-width: 640px) {
    .site-foot {
        padding:28px 0 0
    }

    .site-foot-inner {
        padding: 0 16px 18px
    }

    .site-foot-grid {
        grid-template-columns: 1fr!important
    }

    .site-foot-col {
        display: none!important
    }

    .site-foot-bottom {
        height: auto;
        min-height: 0
    }

    .site-foot-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;
        padding: 14px 16px;
        height: auto;
        min-height: 0
    }

    .site-float {
        left: auto!important;
        right: 10px;
        bottom: calc(80px + env(safe-area-inset-bottom,0px));
        width: 36px;
        gap: 7px
    }

    body.tabbar-hidden .site-float {
        bottom: calc(14px + env(safe-area-inset-bottom,0px))
    }

    .site-float-actions {
        gap: 7px
    }

    .site-float-btn,.site-float .back-top,.back-top {
        width: 36px;
        height: 36px
    }

    .site-float-btn i,.back-top i {
        font-size: 18px
    }
}

.plaza-main {
    --plaza-aside-w: 300px;
    display: grid;
    grid-template-columns: minmax(0,1fr) var(--plaza-aside-w);
    gap: 20px;
    align-items: start;
}

.plaza-left {
    display: none;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 86px;
    min-width: 0
}

html.layout-triple .plaza-main:has(> .plaza-left) {
    --plaza-aside-w: 280px;
    grid-template-columns: 225px minmax(0,1fr) var(--plaza-aside-w);
    gap: 18px
}

html.layout-triple .plaza-main:has(> .plaza-left) > .plaza-left {
    display: flex
}

.aside-card.plaza-left-card {
    padding: 12px;
    overflow: hidden
}

.plaza-left-card .sec-head {
    margin-bottom: 8px
}

.plaza-left-nav {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.plaza-left-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    height: 48px;
    padding: 0 14px;
    border-radius: 12px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.35;
    transition: background .15s ease,color .15s ease;
    box-sizing: border-box
}

button.plaza-left-link {
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    font: inherit;
    color: inherit;
    text-align: left
}

.plaza-left-link i {
    font-size: 22px;
    line-height: 1;
    opacity: 1;
    width: 24px;
    text-align: center;
    flex: 0 0 auto;
    color: var(--text-soft)
}

.plaza-left-link span {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.plaza-left-link em {
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
    flex: 0 0 auto;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--chip);
    line-height: 1;
    box-sizing: border-box
}

.plaza-left-link:hover {
    background: var(--chip);
    color: var(--text)
}

.plaza-left-link:hover i {
    color: var(--text)
}

.plaza-left-link:hover em {
    background: #fff;
    color: var(--text-soft)
}

.plaza-left-link.on {
    background: var(--accent-soft);
    color: var(--accent);
	font-weight: 600;
}

.plaza-left-link.on i {
    opacity: 1;
    color: var(--accent)
}

.plaza-left-link.on em {
    background: var(--accent);
    color: var(--accent-ink);
    opacity: 1
}

.plaza-left-link.on::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 8px;
    bottom: 8px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: var(--accent)
}

.plaza-left-empty {
    padding: 12px 14px;
    font-size: 13px;
    color: var(--muted)
}

.plaza-left-notices .aside-item {
    padding: 8px 0
}

.plaza-left-notices .aside-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.friends-sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px
}

.friends-sec-head h2 {
    flex: 1;
    min-width: 0
}

.friends-apply-btn {
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
    line-height: 1
}

.friends-apply-btn i {
    font-size: 15px
}

.friends-apply-btn:hover {
    color: var(--accent)
}

.friends-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px
}

.friends-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    max-width: 100%;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.3;
    transition: color .15s ease
}

.friends-link i {
    font-size: 14px;
    color: var(--muted);
    flex: 0 0 auto
}

.friends-link span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.friends-link:hover,.friends-link:hover i {
    color: var(--accent)
}

.plaza-left > .ad-slot {
    margin: 0
}

.plaza-feed {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.plaza-aside {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 86px
}

.aside-card {
    background: var(--card);
    border: 0;
    border-radius: var(--radius,20px);
    box-shadow: var(--card-shadow);
    padding: 16px
}

.aside-card .sec-head {
    margin: 0 0 10px;
    padding: 0
}

.aside-list {
    display: flex;
    flex-direction: column;
    gap: 0
}

.aside-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 9px 0;
    border-radius: 0;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4
}

.aside-item:hover {
    background: transparent;
    color: var(--accent)
}

.aside-item i {
    color: var(--muted);
    margin-top: 2px;
    flex: 0 0 auto
}

.aside-item:hover i {
    color: var(--accent)
}

.aside-item span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.aside-author-row {
    display: flex;
    align-items: center;
    gap: 12px
}

.aside-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--chip)
}

.aside-author-avatar-wrap {
    flex: 0 0 auto
}

.uc-avatar-link {
    display: inline-block;
    line-height: 0;
    flex: 0 0 auto;
    border-radius: 50%
}

.uc-avatar {
    position: relative;
    display: inline-block;
    line-height: 0;
    flex: 0 0 auto;
    vertical-align: middle
}

.uc-avatar-img {
    display: block;
    border-radius: 50%;
    object-fit: cover;
    background: var(--chip);
    box-sizing: border-box;
    border: 3px solid var(--avatar-ring,var(--line));
}

.uc-avatar--xs .uc-avatar-img {
    width: 24px;
    height: 24px;
    border-width: 2px
}

.uc-avatar--sm .uc-avatar-img {
    width: 32px;
    height: 32px;
    border-width: 2px
}

.uc-avatar--md .uc-avatar-img {
    width: 50px;
    height: 50px;
    border-width: 2px
}

.uc-avatar--lg .uc-avatar-img {
    width: 52px;
    height: 52px;
    border-width: 3px
}

.uc-avatar--xl .uc-avatar-img {
    width: 84px;
    height: 84px;
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08)
}

.uc-avatar-badge {
    position: absolute;
    right: -4px;
    bottom: -4px;
    z-index: 1;
    width: 18px;
    height: 18px;
    border-radius: 0;
    display: grid;
    place-items: center;
    color: var(--avatar-ring,var(--accent));
    font-size: 14px;
    font-style: normal;
    line-height: 1;
    border: 0;
    box-sizing: border-box;
    background: transparent!important;
    box-shadow: none;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,.28))
}

.uc-avatar-badge.is-img {
    padding: 0;
    object-fit: contain;
    background: transparent!important;
    border-radius: 0
}

.uc-avatar--xs .uc-avatar-badge {
    width: 14px;
    height: 14px;
    font-size: 12px;
    right: -3px;
    bottom: -3px
}

.uc-avatar--sm .uc-avatar-badge {
    width: 18px;
    height: 18px;
    font-size: 14px
}

.uc-avatar--md .uc-avatar-badge {
    width: 22px;
    height: 22px;
    font-size: 17px;
    right: -5px;
    bottom: -5px
}

.uc-avatar--lg .uc-avatar-badge {
    width: 26px;
    height: 26px;
    font-size: 20px;
    right: -5px;
    bottom: -5px
}

.uc-avatar--xl .uc-avatar-badge {
    width: 34px;
    height: 34px;
    font-size: 26px;
    right: -4px;
    bottom: -4px
}

.aside-author-meta {
    min-width: 0;
    flex: 1
}

.aside-author-meta strong,.aside-author-name {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 15px;
    font-weight: 750
}

.aside-author-meta > span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px
}

.aside-author-stats {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 6px;
    margin-top: 14px
}

.aside-author-stat {
    text-align: center;
    padding: 4px 2px
}

.aside-author-stat b {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2
}

.aside-author-stat span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: var(--muted);
    font-weight: 600
}

.aside-author-contact {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--chip);
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px
}

.aside-author-contact div {
    display: flex;
    justify-content: space-between;
    gap: 10px
}

.aside-author-contact span {
    color: var(--muted)
}

.aside-author-contact b {
    font-weight: 650;
    color: var(--text);
    word-break: break-all;
    text-align: right
}

.aside-author-actions {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap
}

.aside-author-actions .btn {
    flex: 1;
    border-radius: 999px;
    min-width: 88px
}

.aside-author-recent {
    margin-top: 10px
}

.aside-author-recent .aside-list {
    gap: 0
}

.aside-author-recent .aside-item {
    padding: 8px
}

.sec-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 12px
}

.sec-head h2 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -.01em
}

.sec-head span {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600
}

.hot-rank {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0
}

.hot-rank-item a {
    display: grid;
    grid-template-columns: 22px minmax(0,1fr);
    align-items: center;
    gap: 8px;
    padding: 9px 0;
    border-radius: 0;
    transition: color .15s ease
}

.hot-rank-item a:hover {
    background: transparent
}

.hot-rank-item a:hover .hot-title {
    color: var(--accent)
}

.hot-rank-item a:hover .hot-no {
    opacity: 1
}

.hot-no {
    font-style: normal;
    font-size: 13px;
    font-weight: 800;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
    text-align: left
}

.hot-no.top {
    color: var(--text)
}

.hot-rank-item:nth-child(1) .hot-no {
    color: #e11d48
}

.hot-rank-item:nth-child(2) .hot-no {
    color: #ea580c
}

.hot-rank-item:nth-child(3) .hot-no {
    color: #ca8a04
}

.hot-title {
    min-width: 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-soft);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.hot-rank-item a:hover .hot-title {
    color: var(--accent)
}

.member-rank-card {
    overflow: hidden
}

.member-rank-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0 0 10px
}

.member-rank-head h2 {
    margin: 0;
    flex: 0 1 auto;
    min-width: 0
}

.member-rank-more {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    white-space: nowrap;
    transition: color .15s ease
}

.member-rank-more i {
    font-size: 14px;
    margin-left: -1px
}

.member-rank-more:hover {
    color: var(--accent)
}

.member-rank-empty {
    padding: 22px 8px;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    font-weight: 600
}

.mr-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px
}

.mr-list:empty {
    display: none
}

.mr-item {
    margin: 0
}

.mr-link {
    display: grid;
    grid-template-columns: 36px minmax(0,1fr) auto;
    align-items: center;
    gap: 8px;
    padding: 9px 0;
    border-radius: 0;
    color: inherit;
    transition: color .15s ease
}

.mr-link:hover {
    background: transparent
}

.mr-link:hover .mr-name {
    color: var(--accent)
}

.mr-avatar {
    display: block;
    line-height: 0
}

.mr-meta {
    min-width: 0
}

.mr-meta strong {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    font-size: 13px;
    font-weight: 550;
    color: var(--text);
    line-height: 1.25
}

.mr-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.mr-meta .work-level {
    flex: 0 0 auto;
    transform: scale(.9);
    transform-origin: left center
}

.mr-stat {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.mr-value {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-soft);
    font-variant-numeric: tabular-nums;
    padding-right: 2px
}

.mr-link:hover .mr-value {
    color: var(--accent)
}

.member-rank {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    flex-direction: column;
    gap: 2px
}

.member-rank.is-on {
    display: flex
}

.member-rank[hidden] {
    display: none!important
}

.member-rank-item {
    display: grid;
    grid-template-columns: 36px 40px minmax(0,1fr);
    align-items: center;
    gap: 10px;
    padding: 10px 8px;
    border-radius: 12px
}

.member-medal {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-style: normal;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.5),0 2px 6px rgba(0,0,0,.12)
}

.member-medal.gold {
    color: #b45309;
    background: linear-gradient(145deg,#fff3b0,#ffd24a 45%,#f0a100)
}

.member-medal.silver {
    color: #475569;
    background: linear-gradient(145deg,#f8fafc,#d7dee8 45%,#94a3b8)
}

.member-medal.bronze {
    color: #9a3412;
    background: linear-gradient(145deg,#ffedd5,#f0a06a 45%,#c2410c)
}

.member-rank-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--chip)
}

.member-rank-meta {
    min-width: 0
}

.member-rank-meta strong {
    display: block;
    font-size: 13px;
    font-weight: 550;
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.member-rank-meta span {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    color: var(--muted);
    font-weight: 600
}

.aside-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 2px 0 4px
}

.aside-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--chip);
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 650;
    transition: background .15s ease,border-color .15s ease,color .15s ease
}

.aside-tag em {
    font-style: normal;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
    opacity: .85
}

.aside-tag:hover {
    background: #fff;
    border-color: var(--stroke-strong);
    color: var(--text)
}

.aside-tag[style]:hover {
    filter: brightness(.97)
}

.topic-tag[style] {
    border-color: transparent
}

.work-card,.article-card,.empty-card,.uc-panel,.uc-side-card,.compose-shell,.auth-card,.search-panel,.uc-modal-panel {
    background: var(--card);
    border: 0;
    border-radius: var(--radius,20px);
    box-shadow: var(--card-shadow)
}

.board-hero {
    border: 0;
    border-radius: var(--radius,20px);
    box-shadow: var(--card-shadow)
}

.feed-stack {
    display: flex;
    flex-direction: column;
    gap: 0
}

html.feed-cols-2 .feed-stack {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px;
    align-items: stretch
}

html.feed-cols-2 .feed-stack > .empty-card {
    grid-column: 1/-1
}

html.feed-cols-2 .feed-stack .work-card {
    height: 100%
}

html.feed-cols-2 .work-body {
    height: 100%
}

.work-card {
    display: block;
    padding: 0;
    overflow: hidden;
    position: relative;
    min-width: 0;
    transition: box-shadow .15s ease
}

.work-main-link,.work-foot {
    color: inherit;
    text-decoration: none;
    display: block
}

.work-title:hover .work-title-text,
.work-main-link:hover .work-title-text {
    color: var(--accent)
}

.work-thumb {
    text-decoration: none;
    color: inherit
}

.work-avatar-wrap.uc-avatar-link,
a.uc-avatar-link.work-avatar-wrap,
.work-head > a.uc-avatar-link {
    flex: 0 0 auto;
    display: block;
    line-height: 0;
    position: relative;
    z-index: 2
}

.work-avatar-link {
    flex: 0 0 auto;
    display: block;
    line-height: 0;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2
}

.work-author {
    font-weight: 550;
    color: var(--text-soft);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    position: relative;
    z-index: 2
}

a.work-author:hover {
    color: var(--accent)
}

.work-body {
    min-width: 0;
    display: flex;
    flex-direction: column
}

.work-flags {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    max-width: 100%;
    /* 与标题同一行盒，避免部分安卓机 flex 垂直错位 */
    height: 1.45em;
    line-height: 1;
    flex: 0 0 auto;
    align-self: center
}

.work-title {
    margin: 0;
    line-height: 1.45;
    color: var(--text);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    min-width: 0;
    overflow: hidden
}

.work-title>.badge,.work-title>.work-flags {
    flex: 0 0 auto;
    align-self: center
}

.work-title-main {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    line-height: 1.45;
    align-self: center
}

.work-title-text {
    font-weight: 500;
    min-width: 0;
    flex: 0 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.45;
    transition: color .15s ease;
    /* 抑制安卓 WebView 额外字距导致的“飘高” */
    display: block;
    -webkit-font-smoothing: antialiased
}

.work-media {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 15px;
    line-height: 1;
    opacity: .85
}

.work-media i {
    display: inline-flex
}

.work-card.is-notice .work-title {
    color: var(--danger)
}

.work-excerpt {
    margin: 0;
    line-height: 1.65;
    color: var(--muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.work-head {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0
}

.work-avatar {
    object-fit: cover;
    background: var(--chip);
    flex: 0 0 auto
}

.work-who {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    min-width: 0;
    flex: 1;
    font-size: 12px;
    color: var(--muted);
    font-weight: 600
}

.work-who-top {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    max-width: 100%
}

.work-level {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    height: 18px;
    padding: 0 7px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 750;
    font-style: normal;
    line-height: 1;
    letter-spacing: .02em;
    color: #fff!important;
    border: 0;
    background: var(--level-bg,#64748b);
    box-shadow: 0 1px 2px rgba(15,23,42,.12)
}

.work-level::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient( 110deg,transparent 18%,rgba(255,255,255,.14) 34%,rgba(255,255,255,.55) 50%,rgba(255,255,255,.14) 66%,transparent 82% );
    width: 180%;
    transform: translateX(-100%);
    animation: level-shine 2s ease-in-out infinite
}

@keyframes level-shine {
    0%,12% {
        transform: translateX(-100%)
    }

    72% {
        transform: translateX(55%)
    }

    100% {
        transform: translateX(55%)
    }
}

@media (prefers-reduced-motion:reduce) {
    .work-level::after,.mnav-user-level::after {
        animation: none;
        display: none
    }
}

.level-progress {
    width: 100%;
    min-width: 0;
    margin-top: 8px
}

.level-progress-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 650
}

.level-progress-cur {
    color: var(--text);
    font-weight: 750;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.level-progress-hint {
    color: var(--muted);
    font-weight: 600;
    flex: 0 0 auto;
    white-space: nowrap
}

.level-progress-track {
    height: 6px;
    border-radius: 999px;
    background: var(--chip);
    overflow: hidden;
    border: 1px solid color-mix(in srgb,var(--line) 80%,transparent)
}

.level-progress-bar {
    display: block;
    height: 100%;
    border-radius: inherit;
    width: 0;
    background: var(--level-bg,#64748b);
    transition: width .35s ease
}

.level-progress.is-compact {
    margin-top: 4px;
    max-width: 160px
}

.level-progress.is-compact .level-progress-meta {
    margin-bottom: 3px;
    font-size: 10px
}

.level-progress.is-compact .level-progress-track {
    height: 4px
}

.level-progress.is-compact .level-progress-hint {
    max-width: 7.5em;
    overflow: hidden;
    text-overflow: ellipsis
}

.work-who .level-progress.is-compact {
    max-width: 140px
}

.aside-author-meta .level-progress {
    margin-top: 8px
}

.reply-main > .level-progress {
    margin: 2px 0 8px;
    max-width: 220px
}

.user-home-hero-body > .level-progress {
    margin-top: 14px;
    max-width: 420px
}

.uc-profile-text .level-progress {
    margin-top: 8px
}

.user-dd-head .level-progress {
    margin-top: 8px;
    min-width: 140px
}

.sidebar-user .level-progress {
    margin-top: 4px
}

.uc-info-item .level-progress {
    margin-top: 2px
}

.topic-copyright {
    margin: 20px 0 0;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: transparent;
    box-shadow: none;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box
}

.topic-copyright-head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 14px
}

.topic-copyright-head i {
    color: var(--muted)
}

.topic-copyright-body {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-soft,#4b5563);
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal
}

.work-dot {
    opacity: .45
}

.work-time {
    white-space: nowrap;
    font-size: 11px;
    font-weight: 550;
    color: var(--muted)
}

.work-cat {
    flex: 0 0 auto;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--chip);
    font-size: 11px;
    font-weight: 650;
    color: var(--text-soft);
    white-space: nowrap;
    max-width: 8em;
    overflow: hidden;
    text-overflow: ellipsis
}

.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.work-foot {
    display: flex;
    align-items: center;
    gap: 10px
}

.work-stats {
    display: flex;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600
}

.work-stats i {
    margin-right: 3px;
    font-size: 14px;
    vertical-align: -2px
}

.work-thumb {
    display: none
}

.work-thumb-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.work-thumb-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--muted);
    opacity: .55
}

.work-reply-meta {
    display: none
}

.work-inline-stats {
    display: none
}

.feed-style-stream {
    background: var(--card);
    border: 0;
    border-radius: var(--radius,20px);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    gap: 0
}

.feed-style-stream .work-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--line)
}

.feed-style-stream .work-card:last-child {
    border-bottom: 0
}

.feed-style-stream .work-card:hover {
    background: var(--accent-soft)
}

.feed-style-stream .work-body {
    padding: 16px 18px;
    gap: 8px
}

.feed-style-stream .work-head {
    order: 0
}

.feed-style-stream .work-main-link {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0
}

.feed-style-stream .work-title {
    font-size: 17px;
    letter-spacing: -.02em;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    min-width: 0;
    overflow: hidden
}

.feed-style-stream .work-flags {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    height: 1.45em;
    line-height: 1;
    max-width: 48%;
    overflow: hidden
}

.feed-style-stream .work-title-main {
    min-width: 0;
    flex: 1;
    overflow: hidden
}

.feed-style-stream .work-excerpt {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.feed-style-stream .work-foot {
    margin-top: 2px
}

.feed-style-stream .work-avatar,.feed-style-stream .work-avatar-wrap .uc-avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%
}

.feed-style-stream .work-avatar {
    box-shadow: 0 0 0 2px #fff,0 0 0 3px var(--line)
}

.feed-style-stream .work-avatar-wrap .uc-avatar-img {
    box-shadow: none
}

.feed-style-stream .work-cat {
    border: 0
}

html.feed-cols-2 .feed-style-stream {
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
    gap: 12px
}

html.feed-cols-2 .feed-style-stream .work-card {
    background: var(--card);
    border: 0;
    border-radius: 16px;
    box-shadow: var(--card-shadow)
}

html.feed-cols-2 .feed-style-stream .work-card:hover {
    background: var(--card);
    border-color: transparent;
    box-shadow: var(--card-shadow-hover)
}

html.feed-cols-2 .feed-style-stream .work-title {
    font-size: 16px
}

html.feed-cols-2 .feed-style-stream .work-excerpt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

html.feed-cols-2 .feed-style-stream .work-foot {
    margin-top: auto
}

.feed-style-stream > .empty-card,.feed-style-row > .empty-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent
}

.feed-style-row {
    background: var(--card);
    border: 0;
    border-radius: var(--radius,20px);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    gap: 0
}

.feed-style-row .work-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid color-mix(in srgb,var(--line) 85%,transparent);
    transition: background .15s ease
}

.feed-style-row .work-card:last-child {
    border-bottom: 0
}

.feed-style-row .work-card:hover {
    background: color-mix(in srgb,var(--accent-soft) 55%,transparent)
}

.feed-style-row .work-card:hover .work-title-text {
    color: var(--accent)
}

.feed-style-row .work-body {
    display: grid;
    grid-template-columns: 44px minmax(0,1fr) auto auto;
    grid-template-areas: "avatar title type stats" "avatar meta type stats";
    column-gap: 12px;
    row-gap: 6px;
    padding: 14px 18px;
    align-items: center;
    min-height: 0;
    box-sizing: border-box
}

.feed-style-row .work-head {
    display: contents
}

.feed-style-row .work-main-link {
    display: contents
}

.feed-style-row .work-head > a.uc-avatar-link,
.feed-style-row .work-avatar-wrap {
    grid-area: avatar;
    align-self: center;
    line-height: 0
}

.feed-style-row .work-avatar,.feed-style-row .work-avatar-wrap .uc-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%
}

.feed-style-row .work-avatar-wrap .uc-avatar {
    --avatar-ring: transparent
}

.feed-style-row .work-avatar-wrap .uc-avatar-badge {
    width: 18px;
    height: 18px;
    font-size: 13px;
    right: -3px;
    bottom: -3px;
    transform: none;
    transform-origin: bottom right
}

.feed-style-row .work-title {
    grid-area: title;
    margin: 0;
    min-width: 0;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -.01em;
    line-height: 1.45;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px
}

.feed-style-row .work-flags {
    display: inline-flex;
    gap: 5px;
    flex: 0 0 auto;
    max-width: none
}

.feed-style-row .work-flags .badge {
    height: 20px;
    padding: 0 7px;
    font-size: 11px
}

.feed-style-row .work-title-main {
    min-width: 0;
    flex: 1;
    overflow: hidden
}

.feed-style-row .work-title-text {
    min-width: 0;
    flex: 0 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
    display: block;
    -webkit-line-clamp: unset
}

.feed-style-row .work-who {
    grid-area: meta;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    min-width: 0;
    justify-self: start;
    font-size: 12px;
    font-weight: 550;
    color: var(--muted);
    line-height: 1.3
}

.feed-style-row .work-who-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    max-width: 100%;
    flex: 0 1 auto
}

.feed-style-row .work-author {
    font-size: 12px;
    font-weight: 650;
    color: var(--text-soft)
}

.feed-style-row .work-level {
    height: 18px;
    padding: 0 6px;
    font-size: 10px;
    border-radius: 999px;
    box-shadow: none
}

.feed-style-row .work-time {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    opacity: .95
}

.feed-style-row .work-time::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    margin-right: 8px;
    border-radius: 50%;
    background: currentColor;
    opacity: .4;
    vertical-align: middle
}

.feed-style-row .badge-type {
    grid-area: type;
    justify-self: start;
    align-self: center;
    height: 22px;
    padding: 0 9px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 650;
    border: 0;
    background: color-mix(in srgb,var(--accent-soft) 80%,transparent);
    color: var(--accent-deep,var(--text-soft))
}

.feed-style-row .work-dot,.feed-style-row .work-cat {
    display: none!important
}

.feed-style-row .work-excerpt,.feed-style-row .work-tags {
    display: none!important
}

.feed-style-row .work-foot {
    grid-area: stats;
    align-self: center;
    justify-self: end;
    margin: 0;
    padding: 0;
    border: 0;
    gap: 8px
}

.feed-style-row .work-stats {
    gap: 14px;
    font-size: 13px;
    font-weight: 550;
    color: var(--muted);
    white-space: nowrap
}

.feed-style-row .work-stats span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-width: 2.2em
}

.feed-style-row .work-stats i {
    margin: 0;
    font-size: 15px;
    opacity: .72
}

.feed-style-row .work-more {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    background: transparent;
    transition: background .15s ease,color .15s ease
}

.feed-style-row .work-card:hover .work-more {
    background: var(--chip);
    color: var(--accent)
}

html.feed-cols-2 .feed-style-row {
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
    gap: 10px
}

html.feed-cols-2 .feed-style-row .work-card {
    background: var(--card);
    border: 0;
    border-radius: 14px
}

html.feed-cols-2 .feed-style-row .work-body {
    grid-template-columns: 44px minmax(0,1fr) auto;
    grid-template-areas: "avatar title title" "avatar meta type" "stats stats stats";
    row-gap: 6px;
    padding: 14px 16px;
    min-height: 0
}

html.feed-cols-2 .feed-style-row .work-avatar,html.feed-cols-2 .feed-style-row .work-avatar-wrap .uc-avatar-img {
    width: 44px;
    height: 44px
}

html.feed-cols-2 .feed-style-row .work-foot {
    justify-self: start;
    margin-top: 2px
}

html.feed-cols-2 .feed-style-row .work-title-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.feed-style-magazine {
    gap: 14px
}

.feed-style-magazine .work-card {
    background: var(--card);
    border: 0;
    border-radius: 18px;
    box-shadow: var(--card-shadow)
}

.feed-style-magazine .work-card:hover {
    transform: translateY(-2px);
    border-color: transparent;
    box-shadow: var(--card-shadow-hover)
}

.feed-style-magazine .work-body {
    padding: 22px 22px 18px;
    gap: 12px
}

.feed-style-magazine .work-main-link {
    display: contents
}

.feed-style-magazine .work-title {
    order: 0;
    font-size: 16px;
    letter-spacing: -.02em;
    font-weight: 500;
    line-height: 1.35;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    min-width: 0;
    overflow: hidden
}

.feed-style-magazine .work-flags {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto
}

.feed-style-magazine .work-title-main {
    min-width: 0;
    flex: 1;
    overflow: hidden
}

.feed-style-magazine .work-title-text {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    flex: 0 1 auto
}

.feed-style-magazine .work-excerpt {
    order: 1;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-soft);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.feed-style-magazine .work-head {
    order: 2;
    padding-top: 4px
}

.feed-style-magazine .work-tags {
    order: 3
}

.feed-style-magazine .work-foot {
    order: 4;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--line)
}

.feed-style-magazine .work-avatar,.feed-style-magazine .work-avatar-wrap .uc-avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%
}

.feed-style-magazine .work-avatar {
    box-shadow: 0 0 0 2px #fff,0 0 0 3px var(--line)
}

.feed-style-magazine .work-avatar-wrap .uc-avatar-img {
    box-shadow: none
}

.feed-style-magazine .work-avatar-wrap .uc-avatar-badge {
    width: 16px;
    height: 16px;
    font-size: 12px;
    right: -3px;
    bottom: -3px
}

.feed-style-magazine .work-who {
    font-size: 12px;
    gap: 2px
}

.feed-style-magazine .work-author {
    font-size: 12px;
    font-weight: 650
}

.feed-style-magazine .work-level {
    height: 18px;
    padding: 0 6px;
    font-size: 10px;
    border-radius: 999px;
    box-shadow: none
}

.feed-style-magazine .work-cat {
    border: 0;
    background: var(--surface)
}

html.feed-cols-2 .feed-style-magazine {
    gap: 14px
}

html.feed-cols-2 .feed-style-magazine .work-title {
    font-size: 18px
}

html.feed-cols-2 .feed-style-magazine .work-excerpt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.feed-style-thumb {
    gap: 12px
}

.feed-style-thumb .work-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    transition: box-shadow .15s ease,background .15s ease
}

.feed-style-thumb .work-card:hover {
    box-shadow: 0 8px 24px rgba(15,23,42,.08);
    background: color-mix(in srgb,var(--card) 92%,var(--accent-soft))
}

.feed-style-thumb .work-thumb {
    display: block;
    flex: 0 0 112px;
    width: 112px;
    height: 112px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--chip);
    align-self: center
}

.feed-style-thumb .work-thumb.is-empty {
    background: linear-gradient(145deg,var(--chip),color-mix(in srgb,var(--surface) 70%,var(--chip)))
}

.feed-style-thumb .work-body {
    flex: 1;
    min-width: 0;
    padding: 2px 2px 0 0;
    gap: 8px;
    justify-content: flex-start
}

.feed-style-thumb .work-main-link {
    display: contents
}

.feed-style-thumb .work-title {
    order: 0;
    font-size: 16px;
    line-height: 1.45;
    flex: 0 0 auto
}

.feed-style-thumb .work-flags {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    max-width: 40%;
    overflow: hidden
}

.feed-style-thumb .work-title-main {
    min-width: 0;
    flex: 1;
    overflow: hidden
}

.feed-style-thumb .work-title-text {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0
}

.feed-style-thumb .work-excerpt {
    order: 1;
    flex: 0 0 auto;
    min-width: 0;
    width: 100%;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted)
}

.feed-style-thumb .work-tags {
    display: none!important
}

.feed-style-thumb .work-media {
    display: none!important
}

.feed-style-thumb .badge-type,.feed-style-thumb .work-cat {
    display: none!important
}

.feed-style-thumb .work-head {
    order: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 4px;
    min-width: 0;
    flex: 0 0 auto
}

.feed-style-thumb .work-head > a.uc-avatar-link,
.feed-style-thumb .work-avatar-wrap {
    flex: 0 0 auto;
    line-height: 0
}

.feed-style-thumb .work-avatar-wrap .uc-avatar-img {
    width: 22px;
    height: 22px;
    border-width: 1.5px;
    border-radius: 50%
}

.feed-style-thumb .work-avatar-wrap .uc-avatar-badge {
    width: 10px;
    height: 10px;
    font-size: 8px;
    right: -1px;
    bottom: -1px
}

.feed-style-thumb .work-who {
    flex: 1;
    min-width: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px
}

.feed-style-thumb .work-who-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    flex: 1;
    overflow: hidden
}

.feed-style-thumb .work-author {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    max-width: 8em;
    overflow: hidden;
    text-overflow: ellipsis
}

.feed-style-thumb .work-level {
    height: 16px;
    padding: 0 6px;
    font-size: 10px;
    border-radius: 999px;
    box-shadow: none
}

.feed-style-thumb .work-time {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 550;
    color: var(--muted);
    margin-left: auto
}

.feed-style-thumb .work-reply-meta {
    display: none!important
}

.feed-style-thumb .work-inline-stats {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    margin-left: 2px
}

.feed-style-thumb .work-inline-stats > span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap
}

.feed-style-thumb .work-inline-stats i {
    font-size: 13px;
    line-height: 1
}

.feed-style-thumb .work-foot {
    display: none!important
}

html.feed-cols-2 .feed-style-thumb {
    gap: 12px
}

html.feed-cols-2 .feed-style-thumb .work-thumb {
    flex-basis: 96px;
    width: 96px;
    height: 96px
}

html.feed-cols-2 .feed-style-thumb .work-title {
    font-size: 15px
}

html.feed-cols-2 .feed-style-thumb .work-excerpt {
    -webkit-line-clamp: 2
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 18px;
    min-height: 18px;
    max-height: 18px;
    padding: 0 7px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1;
    white-space: nowrap;
    vertical-align: middle
}

/* 标题前徽章：相对标题行盒垂直居中，兼容部分安卓机 */
.work-title .badge,
.work-flags .badge {
    position: relative;
    top: 0;
    flex: 0 0 auto;
    height: 16px;
    min-height: 16px;
    max-height: 16px;
    padding: 0 6px;
    font-size: 10px;
    line-height: 1;
    transform: translateY(0)
}

.badge-top,.badge-hot {
    background: var(--danger-soft);
    color: var(--danger)
}

.badge-ok {
    background: var(--success-soft);
    color: var(--success)
}

.badge-featured {
    background: color-mix(in srgb,#0d9488 16%,transparent);
    color: #0f766e
}

.badge-pay {
    background: var(--warning-soft);
    color: var(--warning)
}

.badge-redpacket {
    background: color-mix(in srgb,#e11d48 12%,transparent);
    color: #be123c
}

.badge-redpacket i {
    margin-right: 2px;
    vertical-align: -1px
}

.work-media .rp-flag {
    color: #e11d48
}

.badge-lottery {
    background: color-mix(in srgb,#2563eb 12%,transparent);
    color: #1d4ed8
}

.badge-lottery i {
    margin-right: 2px;
    vertical-align: -1px
}

.work-media .lt-flag {
    color: #2563eb
}

.badge-notice {
    background: var(--accent-soft);
    color: var(--text)
}

.badge-highlight {
    background: color-mix(in srgb,var(--hl-color,#e11d48) 16%,transparent);
    color: var(--hl-color,#e11d48)
}

.work-card.is-highlight .work-title-text,.detail-head h1.is-highlight {
    color: var(--hl-color,#e11d48);
    font-weight: 600
}

.badge-tag {
    background: var(--chip);
    color: var(--muted);
    border: 1px solid var(--line);
    height: 22px;
    font-size: 11px
}

.badge-tag[style] {
    border-color: transparent
}

.feed-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0
}

.feed-toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto
}

.feed-count {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600
}

.feed-view {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: 0 1px 2px var(--shadow)
}

.feed-view-btn {
    height: 30px;
    padding: 0 11px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700
}

.feed-view-btn i {
    font-size: 14px
}

.feed-view-btn:hover {
    color: var(--text)
}

.feed-view-btn.on {
    background: var(--accent);
    color: var(--accent-ink)
}

.feed-tabs {
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 1px 2px var(--shadow)
}

.feed-tab {
    height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
    display: inline-flex;
    align-items: center
}

.feed-tab:hover {
    color: var(--text)
}

.feed-tab.on {
    background: var(--accent);
    color: var(--accent-ink);
    box-shadow: 0 4px 12px rgba(0,0,0,.12)
}

.board-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 28px 26px;
    --board-hero-ink: var(--text,#0f172a);
    background: linear-gradient(165deg,color-mix(in srgb,var(--accent) 14%,var(--card,#fff)) 0%,color-mix(in srgb,var(--accent) 5%,var(--card,#fff)) 42%,color-mix(in srgb,var(--accent-soft) 45%,var(--card,#fff)) 100%)
}

.board-hero::before,.board-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    filter: blur(2px)
}

.board-hero::before {
    width: min(380px,72%);
    height: min(380px,150%);
    top: -52%;
    right: -10%;
    background: radial-gradient(circle at 40% 40%,color-mix(in srgb,var(--accent) 26%,transparent) 0%,color-mix(in srgb,var(--brand-lite,var(--accent)) 12%,transparent) 44%,transparent 72%);
    opacity: .85
}

.board-hero::after {
    width: min(260px,46%);
    height: min(260px,120%);
    left: -8%;
    bottom: -58%;
    background: radial-gradient(circle at 50% 45%,color-mix(in srgb,var(--accent) 16%,transparent) 0%,color-mix(in srgb,var(--brand-lite,var(--accent)) 8%,transparent) 48%,transparent 74%);
    opacity: .75
}

.board-hero-bg {
    position: absolute;
    inset: -18px;
    background-position: center;
    background-size: cover;
    pointer-events: none;
    filter: brightness(0.7)
}

.board-hero-mask {
    position: absolute;
    inset: 0;
    filter: brightness(0.7)
}

.board-hero.has-cover {
    background: transparent;
    --board-hero-ink: var(--accent-ink)
}

.board-hero.has-cover::before,.board-hero.has-cover::after {
    content: none;
    display: none
}

.board-hero > .board-hero-bg,.board-hero > .board-hero-mask {
    z-index: 0
}

.board-hero-inner {
    position: relative;
    z-index: 1
}

.board-hero-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px
}

.board-hero-title {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.04em;
    min-width: 0;
    color: var(--board-hero-ink)
}

.board-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto
}

.board-publish-btn {
    height: 36px;
    padding: 0 16px;
    white-space: nowrap;
    text-decoration: none
}

.board-follow-btn {
    height: 36px;
    padding: 0 14px;
    border-radius: 50px;
    border: 1px solid var(--line);
    background: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    color: var(--accent-ink)
}

.board-follow-btn.on {
    background: var(--accent);
    color: var(--accent-ink);
    border-color: transparent
}

.board-hero-desc {
    margin: 10px 0 0;
    color: var(--board-hero-ink);
    font-size: 14px;
    line-height: 1.7;
    max-width: 48em
}

.board-hero-meta {
    display: flex;
    gap: 14px;
    margin-top: 14px;
    color: var(--board-hero-ink);
    font-size: 13px;
    font-weight: 600
}

.board-hero-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    align-items: center
}

.board-cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.2;
    color: var(--accent-ink);
    background: rgba(255,255,255,.55);
    border: 1px solid color-mix(in srgb,var(--accent-ink) 18%,transparent);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: .15s ease
}

.board-hero:not(.has-cover) .board-cat-chip {
    background: var(--chip,#f1f5f9);
    border-color: var(--line);
    color: var(--text,#0f172a)
}

.board-cat-chip i {
    font-size: 14px;
    line-height: 1
}

.board-cat-chip:hover {
    opacity: .92;
    transform: translateY(-1px)
}

.board-cat-chip.on {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff
}

.board-cat-empty {
    font-size: 12px;
    color: var(--muted);
    font-weight: 550
}

.board-hero-mods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px
}

.board-mod-label,.board-mod-chip {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--accent);
    border: 1px solid var(--line);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-ink)
}

.board-mod-user {
    gap: 6px;
    padding-left: 4px
}

.board-mod-user img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover
}

.board-mod-user em {
    font-style: normal;
    font-weight: 650;
    color: var(--accent-ink)
}

.board-mod-badge {
    font-style: normal;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 6px;
    background: var(--accent);
    color: #fff
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 38px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--chip);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .12s ease
}

.btn:hover {
    background: #fff
}

.btn-primary {
    background: var(--accent);
    color: var(--accent-ink);
    border-color: transparent;
    border-radius: 999px
}

.btn-primary:hover {
    opacity: .92;
    color: var(--accent-ink);
    background: var(--accent)
}

.btn-primary.on,.btn.on {
    background: var(--chip);
    color: var(--muted);
    border: 1px solid var(--line)
}

.btn-line {
    background: transparent
}

.field {
    margin: 0 0 12px
}

.field label {
    display: block;
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 650;
    color: var(--muted)
}

.input,.uc-modal-input,.uc-share-url {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--chip);
    outline: 0
}

textarea.input {
    height: auto;
    min-height: 120px;
    padding: 12px;
    resize: vertical;
    line-height: 1.65
}

.input:focus,.uc-modal-input:focus {
    background: #fff;
    border-color: var(--stroke-strong);
    box-shadow: 0 0 0 3px var(--accent-soft)
}

.uc-select {
    position: relative;
    display: block;
    width: 100%
}

.uc-select-native {
    position: absolute!important;
    width: 1px!important;
    height: 1px!important;
    padding: 0!important;
    margin: -1px!important;
    overflow: hidden!important;
    clip: rect(0,0,0,0)!important;
    white-space: nowrap!important;
    border: 0!important;
    opacity: 0!important;
    pointer-events: none!important
}

.uc-select-trigger {
    position: relative;
    width: 100%;
    height: 42px;
    padding: 0 36px 0 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--chip);
    outline: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color .12s ease,background .12s ease,box-shadow .12s ease
}

.uc-select-trigger::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
    transition: transform .15s ease
}

.uc-select.is-open .uc-select-trigger::after {
    transform: translateY(-20%) rotate(225deg)
}

.uc-select-trigger:hover {
    background: #fff;
    border-color: var(--stroke-strong)
}

.uc-select.is-open .uc-select-trigger,.uc-select-trigger:focus {
    background: #fff;
    border-color: var(--stroke-strong);
    box-shadow: 0 0 0 3px var(--accent-soft)
}

.uc-select.is-disabled .uc-select-trigger {
    opacity: .6;
    cursor: not-allowed;
    background: var(--chip)
}

.uc-select-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.uc-select-label.is-placeholder {
    color: var(--muted);
    font-weight: 550
}

.uc-select-menu {
    position: absolute;
    z-index: 80;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    max-height: 240px;
    overflow: auto;
    padding: 6px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--card,#fff);
    box-shadow: 0 12px 32px rgba(15,23,42,.12);
    scrollbar-width: none;
    -ms-overflow-style: none
}

.uc-select-menu::-webkit-scrollbar {
    width: 0!important;
    height: 0!important;
    display: none!important
}

.uc-select-menu[hidden] {
    display: none!important
}

.uc-select-opt {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 10px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    cursor: pointer
}

.uc-select-opt:hover {
    background: var(--chip)
}

.uc-select-opt.is-active {
    background: var(--accent-soft);
    color: var(--accent)
}

.uc-select-opt:disabled {
    opacity: .45;
    cursor: default
}

.hide-ed-row .uc-select-trigger,.netdisk-ed-row .uc-select-trigger,.rp-field .uc-select-trigger {
    height: 42px;
    border-radius: 12px
}

.captcha-row {
    display: flex;
    gap: 10px;
    align-items: center
}

.captcha-row .input {
    flex: 1
}

.captcha-row img {
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--line);
    cursor: pointer
}

.mail-code-row {
    display: flex;
    gap: 10px;
    align-items: center
}

.mail-code-row .input {
    flex: 1;
    min-width: 0
}

.mail-code-row .btn {
    flex: 0 0 auto;
    height: 42px;
    padding: 0 14px;
    margin: 0;
    white-space: nowrap
}

.field-tip {
    margin: 6px 0 0;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5
}

.form-tip {
    color: var(--muted);
    font-size: 12px
}

.form-tip a {
    color: var(--text);
    font-weight: 650
}

.empty {
    padding: 56px 20px;
    text-align: center;
    color: var(--muted)
}

.empty-card {
    padding: 0
}

.pager {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 22px 0 0
}

.pager a,.pager span {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--muted);
    font-weight: 650;
    font-size: 13px
}

.pager .cur {
    background: var(--accent);
    color: var(--accent-ink);
    border-color: transparent
}

.article-card {
    padding: 28px;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: anywhere
}

.article-card.soft {
    padding: 20px 24px
}

.author-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line)
}

.author-strip-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover
}

.author-strip-meta {
    min-width: 0;
    flex: 1
}

.author-strip-meta strong {
    display: block;
    font-size: 15px;
    font-weight: 750
}

.author-strip-meta span {
    font-size: 12px;
    color: var(--muted)
}

.author-strip-actions {
    display: flex;
    gap: 8px
}

.detail-head h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 550
}

.detail-meta a {
    color: var(--text);
    font-weight: 700
}

.detail-body {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-soft);
    word-break: break-word
}

.detail-body > *:first-child {
    margin-top: 0
}

.detail-body > *:last-child {
    margin-bottom: 0
}

.detail-body p {
    margin: 0 0 .85em
}

.detail-body ul,.detail-body ol {
    margin: 0 0 .85em;
    padding-left: 1.4em
}

.detail-body blockquote {
    margin: .85em 0;
    padding: 10px 14px;
    border-left: 3px solid var(--accent);
    background: var(--chip);
    color: var(--text-soft);
    border-radius: 0 10px 10px 0
}

.detail-body pre {
    margin: .85em 0;
    padding: 12px 14px;
    overflow: auto;
    border-radius: 12px;
    background: var(--chip);
    font-size: 13px;
    line-height: 1.55
}

.detail-body code {
    font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
    font-size: .92em
}

.detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: .5em 0
}

.detail-body a {
    color: var(--accent-deep);
    text-decoration: underline;
    text-underline-offset: 2px
}

.detail-body h1,.detail-body h2,.detail-body h3,.detail-body h4 {
    margin: 1.1em 0 .5em;
    color: var(--text);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.3
}

.detail-body h1 {
    font-size: 1.35em
}

.detail-body h2 {
    font-size: 1.2em
}

.detail-body h3 {
    font-size: 1.1em
}

.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px
}

.topic-tag {
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--chip);
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 650;
    color: var(--text-soft)
}

.lock {
    margin-top: 20px;
    padding: 18px;
    border-radius: 16px;
    background: var(--chip);
    border: 1px dashed var(--line)
}

.lock strong {
    display: block;
    margin-bottom: 6px
}

.lock p {
    margin: 0 0 12px;
    color: var(--muted)
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.topic-adjacent {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: 14px;
    padding: 0;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    background: transparent;
    border: 0;
    box-shadow: none
}

.topic-adj {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    min-height: 76px;
    padding: 20px 22px;
    border-radius: var(--radius,20px);
    background: var(--card);
    box-shadow: var(--card-shadow);
    color: inherit;
    text-decoration: none
}

a.topic-adj:hover {
    background: var(--card);
    color: inherit
}

a.topic-adj:hover .topic-adj-title {
    color: var(--accent)
}

a.topic-adj:hover .topic-adj-icon {
    color: var(--accent)
}

.topic-adj-next {
    justify-content: flex-end;
    text-align: right
}

.topic-adj-icon {
    flex: 0 0 auto;
    font-size: 24px;
    line-height: 1;
    color: var(--muted)
}

.topic-adj-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.topic-adj-label {
    font-style: normal;
    font-size: 12px;
    font-weight: 650;
    color: var(--muted);
    letter-spacing: .04em
}

.topic-adj-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.topic-adj.is-empty {
    opacity: .55;
    cursor: default
}

.topic-adj.is-empty .topic-adj-title {
    font-weight: 500;
    color: var(--muted)
}

.article-card > .lock {
    margin-top: 20px
}

.rail-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: #f4f4f5;
    color: #52525b;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s ease,color .15s ease,border-color .15s ease,filter .15s ease
}

.rail-btn b,.rail-badge {
    font-weight: 750
}

.rail-btn i {
    font-size: 16px;
    line-height: 1
}

/* topic action buttons: fixed palette, ignore theme accent */
.rail-btn-like {
    color: #e11d48;
    background: #fff1f2
}

.rail-btn-like:hover {
    background: #ffe4e6
}

.rail-btn-like.on {
    color: #fff;
    background: #e11d48;
    border-color: transparent
}

.rail-btn-fav {
    color: #d97706;
    background: #fffbeb
}

.rail-btn-fav:hover {
    background: #fef3c7
}

.rail-btn-fav.on {
    color: #fff;
    background: #d97706;
    border-color: transparent
}

.rail-btn-comment {
    color: #0284c7;
    background: #f0f9ff
}

.rail-btn-comment:hover {
    background: #e0f2fe
}

.rail-btn-share {
    color: #4f46e5;
    background: #eef2ff
}

.rail-btn-share:hover {
    background: #e0e7ff
}

.rail-btn-reward {
    color: #c2410c;
    background: #fff7ed
}

.rail-btn-reward:hover {
    background: #ffedd5
}

.rail-btn-report {
    color: #1a1a1a;
    background: #f0f0f0;
    border-color: #d4d4d4
}

.rail-btn-report:hover {
    color: #0a0a0a;
    background: #e5e5e5;
    border-color: #c4c4c4
}

.mod-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    align-items: center;
    overflow: visible;
    position: relative;
    z-index: 5
}

.mod-btn {
    height: 32px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--chip);
    font-size: 12px;
    font-weight: 650;
    cursor: pointer
}

.mod-btn.on {
    background: var(--accent-soft);
    color: var(--accent);
    border-color: transparent
}

.mod-btn-danger {
    color: #b91c1c;
    background: var(--danger-soft)
}

.mod-hl {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 6
}

.mod-move {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 6
}

.mod-move-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 40;
    min-width: 168px;
    max-width: min(260px,70vw);
    max-height: 260px;
    overflow: auto;
    padding: 6px;
    border-radius: 12px;
    background: var(--card,#fff);
    box-shadow: var(--card-shadow,0 10px 30px rgba(15,23,42,.12));
    display: flex;
    flex-direction: column;
    gap: 2px;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.mod-move-menu::-webkit-scrollbar {
    width: 0!important;
    height: 0!important;
    display: none!important
}

.mod-move-menu[hidden] {
    display: none!important
}

.mod-move-item {
    display: block;
    width: 100%;
    padding: 8px 10px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--text-soft);
    font: inherit;
    font-size: 12px;
    font-weight: 650;
    cursor: pointer;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.mod-move-item:hover {
    background: var(--chip);
    color: var(--text)
}

.mod-move-item.on,.mod-move-item:disabled {
    background: var(--accent-soft);
    color: var(--accent);
    cursor: default;
    opacity: .85
}

.mod-hl-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 40;
    min-width: 148px;
    padding: 6px;
    border-radius: 12px;
    background: var(--card,#fff);
    box-shadow: var(--card-shadow,0 10px 30px rgba(15,23,42,.12));
    display: flex;
    flex-direction: column;
    gap: 2px
}

.mod-hl-menu[hidden] {
    display: none!important
}

.mod-hl-swatch {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 10px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--text-soft);
    font: inherit;
    font-size: 12px;
    font-weight: 650;
    cursor: pointer;
    text-align: left
}

.mod-hl-swatch:hover {
    background: var(--chip);
    color: var(--text)
}

.mod-hl-swatch.on {
    background: var(--accent-soft);
    color: var(--accent)
}

.mod-hl-swatch i {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex: 0 0 auto;
    display: block;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.08)
}

.section {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted)
}

.author-posts {
    display: flex;
    flex-direction: column
}

.author-post {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 4px;
    border-radius: 10px
}

.author-post:hover {
    background: var(--chip)
}

.author-post-title {
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.author-post-time {
    color: var(--muted);
    font-size: 12px;
    flex: 0 0 auto
}

.reply-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 12px
}

.reply-head-title {
    font-size: 13px;
    font-weight: 750;
    color: var(--muted);
    letter-spacing: .04em
}

.reply-sort {
    display: flex;
    gap: 4px;
    padding: 3px;
    border-radius: 999px;
    background: var(--chip);
    border: 1px solid var(--line)
}

.reply-sort-tab {
    height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 650;
    color: var(--muted);
    display: inline-flex;
    align-items: center
}

.reply-sort-tab.on {
    background: var(--accent);
    color: var(--accent-ink)
}

.reply {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 0
}

.reply:first-of-type {
    border-top: 0;
    padding-top: 8px
}

.reply-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--chip);
    flex: 0 0 auto;
    box-shadow: 0 0 0 2px #fff,0 0 0 3px var(--line)
}

.reply > .uc-avatar-link {
    flex: 0 0 auto;
    line-height: 0;
    display: block;
    align-self: flex-start;
    width: 50px;
    height: 50px;
    margin-top: 0;
    overflow: visible
}

.reply > .reply-avatar-wrap {
    flex: 0 0 auto;
    line-height: 0;
    display: block;
    align-self: flex-start;
    width: 45px;
    height: 45px;
    margin-top: 0;
    overflow: visible
}

.reply-main {
    position: relative;
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    min-height: 45px;
    padding-right: 0;
    box-sizing: border-box
}

.reply-main:has(.reply-quote) {
    gap: 10px
}

.reply-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-width: 0;
    min-height: 24px
}

.reply-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 6px;
    min-width: 0;
    flex: 1;
    font-size: 12px;
    line-height: 20px;
    color: var(--muted);
    font-weight: 600
}

.reply-user {
    color: var(--text-soft);
    font-weight: 550;
    line-height: 20px;
    font-size: 13px
}

a.reply-user:hover {
    color: var(--accent)
}

.reply-level,.reply-op {
    height: 16px;
    padding: 0 6px;
    font-size: 10px;
    line-height: 16px
}

.reply-time {
    font-weight: 550;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
    line-height: 20px
}

.reply-actions-wrap {
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-end
}

.reply-more-toggle {
    display: none;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--muted);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background .15s,color .15s;
    flex: 0 0 auto
}

.reply-more-toggle:hover {
    background: var(--chip);
    color: var(--text-soft)
}

.reply-more-toggle i {
    display: block
}

.reply-actions {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex: 0 0 auto;
    height: auto;
    margin: 0;
    padding: 0
}

.reply-action {
    height: 24px;
    padding: 0 10px;
    border: 0;
    border-radius: 999px;
    background: var(--chip);
    color: var(--muted);
    font-size: 11px;
    font-weight: 650;
    cursor: pointer
}

.reply-action:hover {
    color: var(--accent);
    background: var(--accent-soft)
}

.reply-action i {
    display: none
}

.reply-mod-del {
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.reply-mod-del i {
    display: none;
    font-size: 14px
}

.reply-accepted-badge {
    margin-left: 4px
}

.reply.is-accepted {
    background: color-mix(in srgb,var(--success-soft) 55%,transparent);
    margin: 0 -10px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 14px
}

.reply-quote {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 10px 12px;
    border-radius: 12px;
    background: color-mix(in srgb,var(--accent-soft) 55%,var(--chip));
    font-size: 12px;
    line-height: 1.55
}

.reply-quote-meta {
    color: var(--muted);
    font-weight: 650;
    margin-bottom: 4px
}

.reply-quote-text {
    color: var(--text-soft);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.reply-at {
    color: var(--accent-deep);
    font-weight: 700
}

.badge-type {
    background: var(--accent-soft);
    color: var(--text)
}

.badge-type.type-article {
    background: #e0f2fe;
    color: #0369a1
}

.badge-type.type-question {
    background: #fef3c7;
    color: #b45309
}

.badge-type.type-discussion {
    background: var(--chip);
    color: var(--text-soft)
}

.badge-bounty {
    background: #fff7ed;
    color: #c2410c
}

.badge-solved {
    background: var(--success-soft,#ecfdf5);
    color: var(--success,#059669);
    gap: 3px
}

.badge-unsolved {
    background: #fff7ed;
    color: #c2410c;
    gap: 3px
}

.badge-solved i,.badge-unsolved i {
    font-size: 12px;
    line-height: 1
}

.uc-item-title .work-media,.user-home-row-title .work-media {
    margin-left: 6px;
    vertical-align: middle;
    flex: 0 0 auto
}

.compose-bounty-tip {
    margin: 6px 0 0;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.45
}

.compose-bounty-tip b {
    color: var(--text);
    font-weight: 700
}

.uc-coin-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 8px 8px 8px 12px;
    border-radius: 12px;
    background: var(--chip);
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 650
}

.uc-coin-pill-main {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    color: inherit;
    text-decoration: none
}

.uc-coin-pill-main i {
    font-size: 18px;
    color: #c2410c;
    flex: 0 0 auto
}

.uc-coin-pill-main b {
    color: var(--text);
    font-weight: 800
}

.uc-coin-pill-main:hover {
    color: var(--text)
}

.uc-coin-sep {
    opacity: .45;
    margin: 0 2px
}

.uc-recharge-btn {
    flex: 0 0 auto;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap
}

.uc-recharge-btn:hover {
    opacity: .92;
    color: var(--accent-ink)
}

.recharge-form {
    padding: 8px 22px 22px
}

.recharge-section {
    margin: 0 0 18px
}

.recharge-label {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted)
}

.recharge-packages,.recharge-channels {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px
}

.recharge-pack {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--chip);
    cursor: pointer;
    user-select: none
}

.recharge-pack input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.recharge-pack strong {
    font-size: 16px;
    font-weight: 800;
    color: var(--text)
}

.recharge-pack span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 650
}

.recharge-pack.on {
    border-color: var(--accent);
    background: var(--accent-soft)
}

.recharge-pack-badge {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    margin: 0;
    padding: 3px 8px 4px 9px;
    border-radius: 0 12px 0 10px;
    background: #e11d48;
    color: #fff;
    font-size: 11px;
    font-weight: 750;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: .02em;
    pointer-events: none
}

.recharge-channel {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 14px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--chip);
    text-align: left;
    font: inherit;
    color: var(--text);
    cursor: pointer;
    user-select: none;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    transition: border-color .15s ease,background .15s ease,box-shadow .15s ease,color .15s ease
}

.recharge-channel .pay-ico {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: remixicon!important;
    font-style: normal;
    font-size: 22px;
    line-height: 1;
    -webkit-font-smoothing: antialiased
}

.recharge-channel.pm-zfb .pay-ico::before {
    content: "\ea2b"
}

.recharge-channel.pm-wx .pay-ico::before {
    content: "\f2b7"
}

.recharge-channel.pm-qq .pay-ico::before {
    content: "\f03a"
}

.recharge-channel span {
    font-size: 14px;
    font-weight: 750
}

.recharge-channel.pm-zfb {
    color: #1677ff!important;
    border-color: #1677ff!important;
    background: rgba(22,119,255,.10)!important
}

.recharge-channel.pm-zfb .pay-ico,.recharge-channel.pm-zfb span {
    color: #1677ff!important
}

.recharge-channel.pm-zfb.is-on,.recharge-channel.pm-zfb:hover {
    background: rgba(22,119,255,.18)!important;
    box-shadow: inset 0 0 0 1px rgba(22,119,255,.55)
}

.recharge-channel.pm-wx {
    color: #07c160!important;
    border-color: #07c160!important;
    background: rgba(7,193,96,.10)!important
}

.recharge-channel.pm-wx .pay-ico,.recharge-channel.pm-wx span {
    color: #07c160!important
}

.recharge-channel.pm-wx.is-on,.recharge-channel.pm-wx:hover {
    background: rgba(7,193,96,.18)!important;
    box-shadow: inset 0 0 0 1px rgba(7,193,96,.55)
}

.recharge-channel.pm-qq {
    color: #12b7f5!important;
    border-color: #12b7f5!important;
    background: rgba(18,183,245,.10)!important
}

.recharge-channel.pm-qq .pay-ico,.recharge-channel.pm-qq span {
    color: #12b7f5!important
}

.recharge-channel.pm-qq.is-on,.recharge-channel.pm-qq:hover {
    background: rgba(18,183,245,.18)!important;
    box-shadow: inset 0 0 0 1px rgba(18,183,245,.55)
}

.recharge-channel.pm-bank {
    color: #b45309!important;
    border-color: #b45309!important;
    background: rgba(180,83,9,.10)!important
}

.recharge-channel.pm-bank .pay-ico,.recharge-channel.pm-bank span {
    color: #b45309!important
}

.recharge-channel.pm-bank .bank-ico::before {
    content: "\f2d2"
}

.recharge-channel.pm-bank.is-on,.recharge-channel.pm-bank:hover {
    background: rgba(180,83,9,.18)!important;
    box-shadow: inset 0 0 0 1px rgba(180,83,9,.55)
}

.withdraw-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px
}

.withdraw-input-wrap > .withdraw-input {
    flex: 1 1 auto;
    min-width: 0;
    width: auto
}

.withdraw-input {
    display: block;
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--chip);
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: border-color .15s,box-shadow .15s
}

.withdraw-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft)
}

.withdraw-select-wrap {
    position: relative;
    display: block;
    width: 100%;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--chip);
    transition: border-color .15s,box-shadow .15s
}

.withdraw-select-wrap:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft)
}

.withdraw-select-wrap > .withdraw-select {
    display: block;
    width: 100%;
    height: 100%;
    border: 0 !important;
    border-radius: 12px;
    background: transparent !important;
    background-image: none !important;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    outline: none;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer
}

.withdraw-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center
}

.withdraw-input::placeholder {
    color: var(--muted);
    font-weight: 400
}

.withdraw-hint {
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-soft);
    white-space: nowrap
}

.recharge-tip {
    margin: 0 22px 16px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5
}

.recharge-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 8px
}

.recharge-sandbox {
    margin: 0 22px 22px;
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--chip);
    border: 1px dashed var(--line)
}

.recharge-sandbox.is-hidden {
    display: none
}

.pay-order-panel {
    width: min(420px,100%);
    padding: 22px 20px 20px;
    text-align: center
}

.pay-order-card {
    display: flex;
    flex-direction: column;
    align-items: center
}

.pay-order-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 28px;
    padding: 0 12px;
    margin-bottom: 8px;
    border-radius: 999px;
    background: var(--chip);
    border: 1px solid var(--line);
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 700
}

.pay-order-badge i {
    font-size: 15px;
    line-height: 1
}

.pay-order-badge .pay-ico {
    width: 15px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: remixicon!important;
    font-style: normal;
    font-size: 15px;
    line-height: 1
}

.pay-order-badge.pm-zfb .pay-ico::before {
    content: "\ea2b"
}

.pay-order-badge.pm-wx .pay-ico::before {
    content: "\f2b7"
}

.pay-order-badge.pm-qq .pay-ico::before {
    content: "\f03a"
}

.pay-order-badge.pm-zfb {
    color: #1677ff;
    background: rgba(22,119,255,.10);
    border-color: rgba(22,119,255,.28)
}

.pay-order-badge.pm-wx {
    color: #07c160;
    background: rgba(7,193,96,.10);
    border-color: rgba(7,193,96,.28)
}

.pay-order-badge.pm-qq {
    color: #12b7f5;
    background: rgba(18,183,245,.10);
    border-color: rgba(18,183,245,.28)
}

.pay-order-amount {
    margin: 4px 0 8px;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--text);
    line-height: 1.1
}

.pay-order-meta {
    margin: 0 0 6px;
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5
}

.pay-order-no {
    margin: 0 0 14px;
    font-size: 12px;
    color: var(--muted);
    word-break: break-all
}

.pay-order-qr-wrap {
    margin: 0 0 10px
}

.pay-order-qr-wrap.is-hidden,.pay-order-sandbox.is-hidden {
    display: none
}

.pay-order-qr {
    width: 220px;
    height: 220px;
    display: block;
    margin: 0 auto 10px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 10px;
    box-sizing: border-box
}

.pay-order-hint {
    margin: 0;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5
}

.pay-order-sandbox {
    margin: 4px 0 12px;
    width: 100%
}

.pay-order-sandbox .btn {
    width: 100%;
    margin-top: 10px
}

.pay-order-status {
    margin: 8px 0 0;
    font-size: 13px;
    font-weight: 650;
    color: var(--text-soft)
}

.pay-order-status.is-ok {
    color: #15803d
}

.pay-order-status.is-err {
    color: #b91c1c
}

.recharge-result {
    padding: 36px 22px 40px;
    text-align: center
}

.recharge-result i {
    font-size: 42px;
    display: block;
    margin-bottom: 10px
}

.recharge-result.is-ok i {
    color: #15803d
}

.recharge-result.is-wait i {
    color: var(--muted)
}

.recharge-result strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px
}

.recharge-result p {
    margin: 0 0 8px;
    color: var(--text-soft);
    font-size: 14px
}

.recharge-order-no {
    font-size: 12px!important;
    color: var(--muted)!important
}

.recharge-result-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap
}

@media (max-width: 640px) {
    .recharge-packages,.recharge-channels {
        grid-template-columns:1fr
    }
}

.uc-inline-link {
    margin-left: 8px;
    font-size: 12px;
    font-weight: 650;
    color: var(--accent)
}

.coin-balance-num {
    color: #c2410c;
    font-weight: 800
}

.coin-log-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 0 8px
}

.coin-log-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 22px;
    border-top: 1px solid var(--line)
}

.coin-log-main {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.coin-log-type {
    font-size: 14px;
    font-weight: 750;
    color: var(--text)
}

.coin-log-remark {
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.45;
    word-break: break-word
}

.coin-log-time {
    font-size: 11px;
    color: var(--muted);
    font-style: normal;
    font-weight: 600
}

.coin-log-side {
    flex: 0 0 auto;
    min-width: 72px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 4px
}

.coin-delta {
    font-size: 16px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    line-height: 1.2
}

.coin-delta.is-plus {
    color: #15803d
}

.coin-delta.is-minus {
    color: #b91c1c
}

.coin-after {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    white-space: nowrap
}

.coin-log-empty {
    padding: 28px 22px
}

.coin-log-pager {
    padding: 8px 22px 20px
}

.work-card.type-article .work-excerpt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.feed-style-thumb .work-excerpt,.feed-style-thumb .work-card.type-article .work-excerpt,.feed-style-thumb .work-card.type-discussion .work-excerpt,.feed-style-thumb .work-card.type-question .work-excerpt {
    display: -webkit-box!important;
    -webkit-box-orient: vertical!important;
    -webkit-line-clamp: 2!important;
    line-clamp: 2!important;
    overflow: hidden!important;
    text-overflow: ellipsis!important;
    white-space: normal!important;
    word-break: break-word!important;
    overflow-wrap: anywhere!important;
    max-height: 3em!important;
    min-height: 3em;
    line-height: 1.5!important;
    height: auto!important
}

.work-card .work-head .badge-type {
    flex: 0 0 auto;
    font-size: 10px;
    padding: 2px 7px
}

.work-card.type-question .work-stats span:nth-child(2) {
    color: var(--accent-deep);
    font-weight: 650
}

.aside-author-meta strong a {
    color: inherit
}

.aside-author-meta strong a:hover {
    color: var(--accent)
}

.member-rank-avatar-link {
    line-height: 0;
    display: block;
    border-radius: 50%;
    overflow: hidden
}

.member-rank-meta strong a {
    color: inherit
}

.member-rank-meta strong a:hover {
    color: var(--accent)
}

a.board-mod-chip {
    text-decoration: none;
    color: inherit
}

a.board-mod-chip:hover {
    opacity: .9
}

.aside-card.user-home-hero,.user-home-hero {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    isolation: isolate;
    min-height: 188px;
    background: linear-gradient(180deg,color-mix(in srgb,var(--card) 45%,transparent) 0%,var(--card) 92%),linear-gradient(155deg,color-mix(in srgb,var(--accent) 12%,var(--card)) 0%,color-mix(in srgb,var(--brand-lite,var(--accent)) 8%,var(--card)) 40%,var(--card) 100%);
    border-bottom: 2px solid color-mix(in srgb,var(--accent) 12%,transparent)
}

.user-home-hero::before,.user-home-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    filter: blur(2px)
}

.user-home-hero::before {
    width: min(480px,75%);
    height: min(480px,180%);
    top: -52%;
    right: -10%;
    background: radial-gradient(circle at 40% 40%,color-mix(in srgb,var(--accent) 35%,transparent) 0%,color-mix(in srgb,var(--brand-lite,var(--accent)) 18%,transparent) 42%,transparent 72%);
    opacity: .95
}

.user-home-hero::after {
    width: min(320px,52%);
    height: min(320px,140%);
    left: -8%;
    bottom: -58%;
    background: radial-gradient(circle at 55% 40%,color-mix(in srgb,var(--brand-lite,var(--accent)) 28%,transparent) 0%,color-mix(in srgb,var(--accent-soft) 80%,transparent) 48%,transparent 74%);
    opacity: .9;
    box-shadow: 0 0 100px var(--brand-glow,var(--accent-soft))
}

.user-home-hero-main {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px 24px;
    padding: 36px 30px 28px
}

.user-home-hero-identity {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    min-width: 0;
    flex: 1
}

.user-home-hero-avatar-wrap {
    flex: 0 0 auto;
    line-height: 0;
    position: relative;
    z-index: 2
}

.user-home-hero-avatar-wrap .uc-avatar--xl .uc-avatar-img {
    box-shadow: 0 12px 36px color-mix(in srgb,var(--accent) 20%,rgba(15,23,42,.1));
    background: var(--card)
}

.user-home-hero-who {
    min-width: 0;
}

.user-home-hero-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px
}

.user-home-hero-name {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.15;
    color: var(--text)
}

.user-home-hero-tags {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px
}

.user-home-hero-tags .work-level,.user-home-hero-role {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 750;
    font-style: normal;
    letter-spacing: .02em;
    line-height: 1;
    box-sizing: border-box
}

.user-home-hero-role {
    color: var(--accent-deep,var(--accent));
    background: color-mix(in srgb,var(--accent-soft) 85%,var(--card));
    border: 1px solid color-mix(in srgb,var(--accent) 16%,transparent);
    box-shadow: none
}

.user-home-hero-bio {
    margin: 10px 0 0;
    display: block;
    min-width: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-soft);
    font-weight: 550
}

.user-home-hero-bio span {
    min-width: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.user-home-hero-dates {
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 600
}

.user-home-hero-dates span {
    display: inline-flex;
    align-items: center;
    gap: 5px
}

.user-home-hero-dates i {
    font-size: 13px;
    opacity: .75
}

.user-home-hero-stats {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: flex;
    gap: 0
}

.user-home-hero-stats li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    gap: 2px;
    border-right: 1px solid color-mix(in srgb,var(--accent) 10%,var(--line))
}

.user-home-hero-stats li:first-child {
    padding-left: 0
}

.user-home-hero-stats li:last-child {
    border-right: none;
    padding-right: 0
}

.user-home-hero-stats li b {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    font-variant-numeric: tabular-nums
}

.user-home-hero-stats li span {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted)
}

.user-home-hero-actions {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    padding-top: 4px
}

.user-home-follow {
    min-width: 88px;
    height: 36px;
    padding: 0 16px;
    border-radius: 12px
}

.user-home-hero-actions .btn {
    min-width: 88px;
    height: 36px;
    min-height: 36px;
    padding: 0 16px;
    border-radius: 12px
}

.user-home-hero-actions .btn-message {
    margin-left: 0
}

.user-home-follow.on {
    background: color-mix(in srgb,var(--card) 82%,transparent);
    color: var(--text-soft);
    border: 1px solid var(--line);
    box-shadow: none;
    backdrop-filter: blur(8px)
}

.user-home-hero-actions .btn-line {
    background: color-mix(in srgb,var(--card) 78%,transparent);
    backdrop-filter: blur(8px)
}

.user-home-profile {
    padding: 18px 20px 22px
}

.user-home-profile-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 14px;
    align-items: stretch
}

.user-home-profile-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 16px 16px 14px;
    border-radius: 14px;
    background: var(--chip);
    border: 1px solid var(--line)
}

.user-home-profile-title {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 750;
    color: var(--text);
    letter-spacing: .02em;
    flex: 0 0 auto
}

.user-home-profile-dl {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1
}

.user-home-profile-dl > div {
    display: grid;
    grid-template-columns: 76px minmax(0,1fr);
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
    align-items: start
}

.user-home-profile-dl > div:first-child {
    border-top: 0;
    padding-top: 0
}

.user-home-profile-dl dt {
    margin: 0;
    font-size: 12px;
    color: var(--muted);
    font-weight: 650;
    padding-top: 1px
}

.user-home-profile-dl dd {
    margin: 0;
    font-size: 13px;
    color: var(--text);
    font-weight: 650;
    word-break: break-all
}

.user-home-profile-hint dd {
    color: var(--muted);
    font-weight: 600
}

.user-home-profile-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    grid-template-rows: repeat(2,minmax(0,1fr));
    gap: 10px
}

.user-home-profile-stats li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    align-items: center;
    height: 100%;
    min-height: 0;
    padding: 16px 12px;
    text-align: center;
    box-sizing: border-box;
    border-radius: 12px;
    background: var(--card);
    border: 1px solid var(--line)
}

.user-home-profile-stats b {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    font-variant-numeric: tabular-nums
}

.user-home-profile-stats span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600
}

.user-home-profile-card.has-mod-ops .user-home-profile-stats {
    flex: 1;
    min-height: 0;
    gap: 6px;
    grid-template-rows: repeat(2,minmax(0,1fr))
}

.user-home-profile-card.has-mod-ops .user-home-profile-stats li {
    height: 100%;
    min-height: 0;
    padding: 10px 6px;
    gap: 3px;
    border-radius: 10px
}

.user-home-profile-card.has-mod-ops .user-home-profile-stats b {
    font-size: 16px
}

.user-home-profile-card.has-mod-ops .user-home-profile-stats span {
    font-size: 11px
}

.user-home-profile-ops {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    flex: 0 0 auto
}

.user-home-profile-ops-btns {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%
}

.user-home-profile-ops-btns .btn {
    flex: 1 1 0;
    min-width: 0;
    width: auto
}

.user-home-toolbar {
    margin: 0;
    padding: 0;
    border: 0;
    min-width: 0;
    box-sizing: border-box;
    gap: 12px
}

/* 与广场一致：胶囊只包裹 TAB，不拉满整行；右侧单独放数量 */
.user-home-toolbar .feed-tabs {
    flex: 0 1 auto;
    width: max-content;
    max-width: calc(100% - 88px);
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.user-home-toolbar .feed-tabs::-webkit-scrollbar {
    width: 0!important;
    height: 0!important;
    display: none!important
}

.user-home-toolbar .feed-tab {
    flex: 0 0 auto
}

.user-home-toolbar .feed-toolbar-right {
    flex: 0 0 auto;
    margin-left: auto
}

.user-home-toolbar .feed-count {
    white-space: nowrap;
    line-height: 1;
    padding: 0 2px
}

.user-home-profile-panel {
    padding: 0;
    overflow: hidden
}

.user-home-feed .work-card.is-reply-card .work-excerpt {
    color: var(--text-soft)
}

.user-home-feed .work-card.is-disabled {
    pointer-events: none;
    opacity: .72
}

.user-home-feed .work-card.is-disabled .work-more {
    opacity: .35
}

.user-home-pager {
    padding: 0;
    border: 0
}

.user-home-aside .sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px
}

.user-home-aside .sec-head h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 750
}

.user-home-side-count {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    white-space: nowrap
}

.user-home-side-empty {
    padding: 8px 0 4px;
    font-size: 13px
}

.user-home-avatars {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 10px 8px
}

.user-home-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 0;
    text-decoration: none;
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 650;
    text-align: center
}

.user-home-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--chip);
    transition: transform .15s ease
}

.user-home-avatar:hover {
    color: var(--accent)
}

.user-home-avatar:hover img {
    transform: scale(1.06)
}

.user-home-avatar span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.user-home-rewards {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.user-home-reward {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0
}

.user-home-reward-user {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
    text-decoration: none;
    color: var(--text);
    font-size: 13px;
    font-weight: 650
}

.user-home-reward-user img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--chip);
    flex: 0 0 auto
}

.user-home-reward-user span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

a.user-home-reward-user:hover {
    color: var(--accent)
}

.user-home-reward-meta {
    flex: 0 0 auto;
    text-align: right;
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.35
}

.user-home-reward-meta b {
    color: var(--accent-deep,var(--accent));
    font-weight: 800;
    font-variant-numeric: tabular-nums
}

.user-home-reward-meta em {
    display: block;
    font-style: normal;
    font-size: 11px;
    font-weight: 550;
    opacity: .85
}

.uc-item-title a {
    color: inherit
}

.uc-item-title a:hover {
    color: var(--accent)
}

.follow-user-main > a {
    line-height: 0;
    display: block;
    flex: 0 0 auto
}

@media (max-width: 720px) {
    .user-home-hero-main {
        flex-direction:column;
        align-items: stretch;
        padding: 26px 18px 22px
    }

    .user-home-hero-identity {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .user-home-hero-title {
        flex-direction: column;
        align-items: center;
        justify-content: center
    }

    .user-home-hero-name {
        white-space: normal
    }

    .user-home-hero-tags {
        justify-content: center
    }

    .user-home-hero-bio {
        justify-content: center;
        text-align: center
    }

    .user-home-hero-dates {
        justify-content: center
    }

    .user-home-hero-stats {
        justify-content: center
    }

    .user-home-hero-stats li {
        padding: 6px 10px
    }

    .user-home-hero-stats li b {
        font-size: 14px
    }

    .user-home-hero-actions {
        justify-content: center
    }

    .user-home-profile-grid {
        grid-template-columns: 1fr
    }

    .user-home-profile-stats {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }

    .user-home-toolbar {
        gap: 8px
    }

    .user-home-toolbar .feed-tabs {
        max-width: calc(100% - 72px)
    }
}

.reply-dot {
    opacity: .45
}

.reply-floor {
    font-variant-numeric: tabular-nums
}

.reply-mod-del {
    height: 24px;
    padding: 0 10px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #b91c1c;
    font: inherit;
    font-size: 11px;
    font-weight: 650;
    cursor: pointer;
    background: color-mix(in srgb, #fee2e2 80%, transparent);
}

.reply-mod-del:hover {
    background: color-mix(in srgb,#fee2e2 50%,transparent);
}

.reply-content {
    font-size: 13px;
    line-height: 20px;
    color: var(--text-soft);
    word-break: break-word;
    margin: 0;
    width: 100%
}

.reply-main:has(.reply-quote) .reply-content {
    line-height: 1.65
}

.reply-form {
    margin-top: 20px;
    padding-top: 4px
}

.reply-login {
    margin-top: 0;
    padding: 48px 18px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg,var(--accent-soft),color-mix(in srgb,var(--accent-soft) 30%,transparent));
    border: 1px dashed var(--stroke-strong);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.reply-login-icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    color: var(--accent);
    font-size: 22px;
    box-shadow: var(--card-shadow)
}

.reply-login-main {
    flex: 1 1 200px;
    min-width: 0
}

.reply-login-title {
    font-size: 15px;
    font-weight: 750;
    color: var(--text)
}

.reply-login-desc {
    margin-top: 4px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6
}

.reply-login-btn {
    flex: 0 0 auto
}

@media (max-width: 520px) {
    .reply-login-card {
        padding: 14px
    }

    .reply-login {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 18px
    }

    .reply-login-icon {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        font-size: 18px
    }

    .reply-login-main {
        flex: 0 0 auto
    }

    .reply-login-title {
        font-size: 15px;
        margin-bottom: 2px
    }

    .reply-login-desc {
        font-size: 12px;
        color: var(--muted);
        line-height: 1.4
    }

    .reply-login-btn {
        width: auto;
        min-width: 120px;
        height: 36px;
        padding: 0 18px;
        font-size: 13px;
        margin-top: 2px
    }
}

.reply-login-card {
    padding: 18px
}

.shell-member {
    grid-template-columns: 300px minmax(0,1fr)
}

.shell-member > .uc-aside {
    order: -1
}

.shell-member > .uc-main {
    order: 1
}

.uc-side-card {
    padding: 18px
}

.uc-side-profile {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(152deg,color-mix(in srgb,var(--accent) 10%,var(--card,#fff)) 0%,color-mix(in srgb,var(--accent-soft) 20%,var(--card,#fff)) 36%,var(--card,#fff) 100%)
}

.uc-side-profile::before {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    width: min(240px,88%);
    height: 120px;
    top: -48px;
    right: -28px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 50% 55%,color-mix(in srgb,var(--accent) 24%,transparent) 0%,color-mix(in srgb,var(--brand-lite,var(--accent)) 10%,transparent) 46%,transparent 74%);
    opacity: .72
}

.uc-side-profile::after {
    content: none;
    display: none
}

.uc-side-profile > * {
    position: relative;
    z-index: 1
}

.uc-nav-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px
}

.uc-nav-card .uc-tab {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
    height: 40px;
    padding: 0 14px
}

.uc-profile {
    display: flex;
    align-items: center;
    gap: 14px
}

.uc-profile > img,.uc-profile-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: var(--chip)
}

.uc-profile-avatar {
    position: relative;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;
    flex: 0 0 auto;
    line-height: 0;
    overflow: hidden;
    display: block
}

.uc-profile-avatar-tip {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(15,23,42,.45);
    color: #fff;
    font-size: 18px;
    opacity: 0;
    transition: opacity .15s ease;
    pointer-events: none
}

.uc-profile-avatar:hover .uc-profile-avatar-tip {
    opacity: 1
}

.uc-profile-text h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.03em
}

.uc-profile-text p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px
}

.uc-avatar-panel {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 6px
}

.uc-avatar-preview {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
    border: 3px solid var(--card);
    box-shadow: 0 0 0 1px var(--line);
    background: var(--chip)
}

.uc-avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.uc-avatar-actions {
    min-width: 0;
    flex: 1
}

.uc-avatar-pick {
    cursor: pointer;
    display: inline-flex
}

.uc-profile-extra {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.uc-profile-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-soft);
    font-weight: 600
}

.uc-profile-row i {
    color: var(--muted);
    font-size: 14px
}

.uc-stats {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 6px;
    margin-top: 16px
}

.uc-stat {
    text-align: center;
    padding: 10px 4px;
    border-radius: 12px;
    background: var(--chip)
}

.uc-stat b {
    display: block;
    font-size: 16px;
    font-weight: 800
}

.uc-stat span {
    font-size: 11px;
    color: var(--muted)
}

.uc-main {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.uc-nav,.uc-mobile-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.uc-tab {
    height: 34px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
    display: inline-flex;
    align-items: center
}

.uc-tab.on {
    background: var(--accent);
    color: var(--accent-ink);
    border-color: transparent
}

.uc-tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    margin-left: 6px;
    border-radius: 999px;
    background: #e11d48;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1
}

.uc-panel {
    overflow: hidden
}

.uc-panel:has(.msg-reply-form),.uc-panel:has(.msg-conv-list) {
    overflow: visible
}

.uc-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 20px 22px 10px
}

.uc-panel-head > div:first-child {
    min-width: 0;
    flex: 1 1 auto
}

.uc-panel-head h2 {
    margin: 0;
    font-size: 17px;
    font-weight: 750
}



.uc-panel-head p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 12px
}

.uc-form {
    padding: 8px 22px 22px;
    max-width: none;
    width: 100%;
    box-sizing: border-box
}

.uc-form .field {
    max-width: none
}

.uc-form .btn {
    margin-top: 4px
}

.uc-form[hidden] {
    display: none!important
}

.uc-settings-tabs {
    display: inline-flex;
    gap: 2px;
    margin: 0;
    padding: 3px;
    flex: 0 0 auto;
    border-radius: 12px;
    background: var(--chip)
}

.uc-settings-tab {
    height: 32px;
    padding: 0 14px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s ease,color .15s ease;
    white-space: nowrap;
    line-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.uc-settings-tab:hover {
    color: var(--text)
}

.uc-settings-tab.on {
    background: var(--accent);
    color: var(--accent-ink)
}

@media (max-width: 860px) {
    .uc-panel-head {
        flex-direction:column;
        align-items: stretch;
        gap: 14px
    }

    .uc-panel-head > div:first-child {
        flex: none;
        width: 100%
    }

    .uc-settings-tabs {
        display: flex;
        width: 100%;
        flex: none;
        box-sizing: border-box;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none
    }

    .uc-settings-tabs::-webkit-scrollbar {
        display: none
    }

    .uc-settings-tab {
        flex: 1 0 auto;
        min-width: 0;
        padding: 0 12px;
        text-align: center
    }
}

.uc-privacy-field .uc-switch {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin: 0;
    font-weight: 550;
    color: var(--text-soft);
    line-height: 1.45
}

.uc-bind-row {
    display: flex;
    align-items: center;
    gap: 10px
}

.uc-bind-row .input {
    flex: 1;
    min-width: 0
}

.uc-form .input.is-locked,.uc-bind-row .input.is-locked {
    color: var(--text-soft);
    cursor: default;
    background: var(--chip,#f4f7f8)
}

.uc-bind-row .uc-bind-toggle {
    flex: 0 0 auto;
    height: 42px;
    padding: 0 14px;
    white-space: nowrap
}

.uc-bind-code {
    margin-top: 12px
}

.uc-bind-code > label {
    display: block;
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 650;
    color: var(--muted)
}

.uc-oauth-bind {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line)
}

.uc-oauth-bind-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 12px
}

.uc-oauth-bind-head strong {
    font-size: 14px;
    font-weight: 750
}

.uc-oauth-bind-head span {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.45
}

.uc-oauth-bind-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.uc-oauth-bind-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--chip,#f7fafb)
}

.uc-oauth-bind-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0
}

.uc-oauth-bind-ico {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(148,163,184,.28);
    font-size: 20px;
    flex: 0 0 auto
}

.uc-oauth-bind-ico-wechat {
    color: #07c160
}

.uc-oauth-bind-ico-qq {
    color: #12b7f5
}

.uc-oauth-bind-copy {
    min-width: 0
}

.uc-oauth-bind-copy strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3
}

.uc-oauth-bind-copy span {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: var(--muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 42vw
}

.uc-phone-login-tip {
    margin-top: 4px;
    margin-bottom: 12px
}

.uc-switch input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0)
}

.uc-switch-ui {
    position: relative;
    flex: 0 0 auto;
    width: 42px;
    height: 24px;
    margin-top: 1px;
    border-radius: 999px;
    background: var(--chip);
    border: 1px solid var(--line);
    transition: background .18s ease,border-color .18s ease
}

.uc-switch-ui::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15,23,42,.18);
    transition: transform .18s ease
}

.uc-switch input[type="checkbox"]:checked + .uc-switch-ui {
    background: var(--accent);
    border-color: transparent
}

.uc-switch input[type="checkbox"]:checked + .uc-switch-ui::after {
    transform: translateX(18px)
}

.uc-switch-text {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    padding-top: 2px
}

.uc-panel > .section {
    margin: 8px 22px 0;
    padding-top: 18px;
    border-top: 1px solid var(--line)
}

.uc-panel > .lock {
    margin: 12px 22px 22px
}

.uc-list {
    padding-bottom: 8px
}

.uc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    border-top: 1px solid var(--line)
}

.uc-item:hover {
    background: var(--chip)
}

.uc-item-main {
    min-width: 0;
    flex: 1
}

.uc-item-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px
}

.uc-item-actions .btn {
    height: 32px;
    padding: 0 12px;
    font-size: 12px
}

.uc-pager {
    padding: 12px 22px 20px;
    margin: 0;
    box-sizing: border-box;
    width: 100%
}

.uc-item-title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    min-width: 0
}

.uc-item-title-main {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    flex: 1;
    overflow: hidden
}

.uc-item-title-main>span:first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.uc-item-meta {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: var(--muted)
}

.uc-activity {
    display: flex;
    flex-direction: column;
    padding: 4px 0 10px
}

.uc-activity-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 22px;
    border-top: 1px solid var(--line)
}

.uc-activity-item:first-child {
    border-top: 0
}

.uc-activity-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    background: var(--chip);
    color: var(--text-soft);
    font-size: 16px
}

.uc-activity-icon.is-follow {
    background: var(--accent-soft);
    color: var(--accent)
}

.uc-activity-icon.is-reply {
    background: var(--success-soft);
    color: var(--success)
}

.uc-activity-icon.is-topic {
    background: var(--warning-soft);
    color: var(--warning)
}

.uc-activity-body {
    min-width: 0;
    flex: 1
}

.uc-activity-text {
    margin: 0;
    font-size: 14px;
    font-weight: 650;
    color: var(--text);
    line-height: 1.45;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.uc-activity-text a {
    color: var(--text);
    font-weight: 500
}

.uc-activity-text a:hover {
    color: var(--accent)
}

.uc-activity-sub {
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.uc-activity-time {
    flex: 0 0 auto;
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    white-space: nowrap;
    padding-top: 2px
}

.uc-info-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px;
    padding: 8px 22px 22px
}

.uc-info-item {
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--chip);
    border: 1px solid var(--line)
}

.uc-info-item-full {
    grid-column: 1 / -1
}

.uc-info-item label {
    display: block;
    margin: 0 0 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted)
}

.uc-info-item span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    word-break: break-all
}

@media (max-width: 640px) {
    .uc-info-grid {
        grid-template-columns:1fr
    }
}

.follow-section {
    padding: 4px 0 10px
}

.follow-section + .follow-section {
    border-top: 1px solid var(--line);
    margin-top: 8px;
    padding-top: 16px
}

.follow-section-title {
    margin: 0 22px 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted)
}

.follow-board-main,.follow-user-main {
    display: flex;
    align-items: center;
    gap: 12px
}

.follow-board-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--chip);
    font-size: 18px
}

.follow-user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover
}

.follow-user-actions {
    display: flex;
    gap: 8px
}

.follow-user-item,.follow-board-item {
    cursor: default
}

.follow-user-item:hover,.follow-board-item:hover {
    background: transparent
}

.compose-layout .compose-main {
    gap: 16px
}

.compose-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0
}

.compose-head-text {
    min-width: 0;
    flex: 1
}

.compose-back {
    flex: 0 0 auto;
    align-self: center;
    margin-left: auto;
    height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    white-space: nowrap;
    text-decoration: none;
    background: #fff!important;
    border: 1px solid var(--line);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.compose-back:hover {
    background: #fff!important;
    border-color: var(--stroke-strong);
    color: var(--text)
}

.compose-head-text h1 {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.04em
}

.compose-head-text p {
    margin: 6px 0 0;
    color: var(--muted)
}

.compose-shell {
    padding: 22px 24px
}

.compose-section {
    margin: 0 0 20px
}

.compose-meta-section > * + * {
    margin-top: 20px
}

.compose-meta-section .compose-meta-row + .compose-meta-row {
    margin-top: 20px
}

.compose-label {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted)
}

.compose-label small {
    font-weight: 500;
    margin-left: 6px;
    opacity: .8
}

.compose-boards {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.compose-board-chip {
    width: 100%;
    min-height: 44px;
    height: auto;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--chip);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 650;
    cursor: pointer;
    text-align: left;
    color: var(--text-soft);
    transition: background .15s ease,color .15s ease,border-color .15s ease
}

.compose-board-chip i {
    font-size: 16px;
    line-height: 1;
    opacity: .7;
    flex: 0 0 auto;
    width: 18px;
    text-align: center;
    display: grid;
    place-items: center
}

.compose-board-chip > span {
    flex: 1;
    min-width: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.compose-board-type {
    flex: 0 0 auto;
    margin: 0;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .02em;
    line-height: 1;
    white-space: nowrap
}

.compose-board-chip:hover {
    background: #fff;
    border-color: var(--stroke-strong);
    color: var(--text)
}

.compose-board-chip.on {
    background: var(--accent);
    color: var(--accent-ink);
    border-color: transparent
}

.compose-board-chip.on i {
    opacity: 1
}

.compose-board-chip.on .compose-board-type {
    color: inherit;
    opacity: .85
}

.compose-title-input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 24px;
    font-weight: 750;
    letter-spacing: -.03em;
    padding: 4px 0
}

.compose-title-meta {
    text-align: right;
    font-size: 11px;
    color: var(--muted)
}

.compose-body-input {
    width: 100%;
    min-height: 280px;
    border: 0;
    outline: 0;
    resize: vertical;
    background: transparent;
    font-size: 16px;
    line-height: 1.75
}

.compose-meta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.compose-meta-item label {
    display: block;
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 650;
    color: var(--muted)
}

.compose-extras {
    margin-top: 20px;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: var(--card,#fff);
    overflow: visible;
    position: relative;
    z-index: 2
}

.compose-extras-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    padding: 14px 0;
    background: var(--surface,#fff)
}

.compose-extras-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0
}

.compose-extras-title strong {
    font-size: 14px;
    font-weight: 750;
    line-height: 1.3
}

.compose-extras-title span {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4
}

.compose-extras-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-left: auto
}

.compose-extra-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--chip,#f4f7f8);
    font-size: 12px;
    font-weight: 650;
    cursor: pointer;
    user-select: none;
    color: var(--text-soft);
    transition: background .15s ease,border-color .15s ease,color .15s ease
}

.compose-extra-check i {
    font-size: 14px;
    line-height: 1;
    opacity: .75
}

.compose-extra-check:has(input:checked) {
    border-color: transparent;
    background: var(--accent);
    color: var(--accent-ink)
}

.compose-extra-check:has(input:checked) i {
    opacity: 1
}

.compose-extra-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    margin: 0
}

.compose-extras-panels {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: visible
}

.compose-extras-panels:not(:has(.compose-extra-panel:not([hidden]))) {
    display: none;
    padding: 0
}

.compose-extra-title {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0
}

.compose-extra-panel {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15,23,42,.03);
    overflow: visible;
    position: relative;
    z-index: 1
}

.compose-extra-panel:has(.uc-select.is-open) {
    z-index: 30
}

.compose-extra-panel[hidden] {
    display: none!important
}

.compose-extra-panel i {
    font-size: 18px;
    line-height: 1;
    color: var(--accent,#246384);
    flex: 0 0 auto
}

.compose-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px solid var(--line)
}

.compose-rules-list {
    margin: 0;
    padding: 0 0 0 1.15em;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500
}

.compose-rules-tip {
    margin: 14px 0 0;
    font-size: 12px;
    color: var(--muted);
    font-weight: 600
}

.tag-selected {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px
}

.tag-add-row {
    display: flex;
    gap: 8px
}

.tag-add-row .input {
    flex: 1
}

.tag-suggest {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-top: 10px
}

.tag-suggest-label {
    font-size: 11px;
    color: var(--muted)
}

.topic-tag-on {
    position: relative;
    padding-right: 22px
}

.tag-x {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--muted);
    font-size: 14px;
    line-height: 1
}

.topic-tag-pick.on {
    background: var(--accent);
    color: var(--accent-ink);
    border-color: transparent
}

.auth-page {
    width: min(420px,100%);
    margin: 48px auto
}

.auth-card {
    padding: 28px
}

.auth-card h1 {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 800
}

.auth-card > p {
    margin: 0 0 18px;
    color: var(--muted)
}

.user-dd {
    position: relative
}

.user-dd-btn {
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    width: auto;
    height: auto;
    overflow: visible;
    display: grid;
    place-items: center;
    line-height: 0
}

.user-dd-btn .user-dd-trigger-avatar .uc-avatar-img {
    width: 36px;
    height: 36px;
    border-width: 2px
}

.user-dd-btn .user-dd-trigger-avatar .uc-avatar-badge {
    width: 16px;
    height: 16px;
    font-size: 12px;
    right: -3px;
    bottom: -3px
}

.user-dd-menu {
    position: absolute;
    right: 0;
    top: calc(50% + (var(--main-bar-h,70px) / 2));
    width: var(--plaza-aside-w,300px);
    padding: 0 0 12px;
    border-radius: 18px;
    background: var(--card,#fff);
    border: 1px solid var(--line);
    box-shadow: var(--card-shadow-hover,0 16px 40px rgba(15,23,42,.14));
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transform-origin: top right;
    transition: opacity .16s ease,visibility .16s ease,transform .16s ease;
    overflow: hidden;
    z-index: 40;
    box-sizing: border-box
}

.user-dd.open .user-dd-menu {
    opacity: 1;
    visibility: visible;
    transform: none
}

.user-dd-head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 16px 14px 20px;
    border: 0;
    border-radius: 0;
    text-decoration: none;
    color: inherit;
    overflow: visible;
    isolation: isolate;
    background: linear-gradient(180deg,color-mix(in srgb,var(--accent) 9%,var(--card,#fff)) 0%,color-mix(in srgb,var(--accent-soft,var(--accent)) 12%,var(--card,#fff)) 48%,var(--card,#fff) 100%);
    transition: filter .15s ease
}

.user-dd-head::before {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    width: 170px;
    height: 170px;
    top: -78px;
    right: -52px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%,color-mix(in srgb,var(--accent) 14%,transparent) 0%,color-mix(in srgb,var(--brand-lite,var(--accent)) 6%,transparent) 46%,transparent 72%);
    opacity: .65;
    mask-image: linear-gradient(180deg,#000 0%,#000 55%,transparent 100%);
    -webkit-mask-image: linear-gradient(180deg,#000 0%,#000 55%,transparent 100%)
}

.user-dd-head::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    width: 120px;
    height: 120px;
    left: -40px;
    bottom: -42px;
    border-radius: 50%;
    border: 18px solid color-mix(in srgb,var(--accent) 8%,transparent);
    opacity: .28;
    mask-image: linear-gradient(180deg,#000 0%,transparent 88%);
    -webkit-mask-image: linear-gradient(180deg,#000 0%,transparent 88%)
}

.user-dd-head:hover {
    filter: brightness(1.02)
}

.user-dd-head > * {
    position: relative;
    z-index: 1
}

.user-dd-head .user-dd-head-avatar-wrap {
    flex: 0 0 auto
}

.user-dd-head .user-dd-head-avatar-wrap .uc-avatar-img {
    width: 48px;
    height: 48px;
    border-width: 2px
}

.user-dd-who {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.user-dd-who strong {
    display: block;
    font-size: 15px;
    font-weight: 780;
    line-height: 1.2;
    color: var(--accent-deep,var(--accent));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.user-dd-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0
}

.user-dd-tag,.user-dd-gold {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0 9px;
    height: 24px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 750;
    font-style: normal;
    line-height: 1;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box
}

.user-dd-tag {
    background: color-mix(in srgb,var(--accent) 14%,#fff);
    color: var(--accent-deep,var(--accent));
    border: 1px solid color-mix(in srgb,var(--accent) 24%,transparent);
    box-shadow: 0 1px 2px color-mix(in srgb,var(--accent) 10%,transparent)
}

.user-dd-tag i {
    font-size: 13px;
    line-height: 1;
    color: var(--accent);
    flex: 0 0 auto
}

.user-dd-gold {
    background: linear-gradient(180deg,#fffbeb,#fde68a);
    color: #b45309;
    border: 1px solid rgba(217,119,6,.28);
    box-shadow: 0 1px 2px rgba(180,83,9,.12)
}

.user-dd-gold i {
    font-size: 14px;
    line-height: 1;
    color: #d97706;
    flex: 0 0 auto
}

.user-dd-head-go {
    flex: 0 0 auto;
    font-size: 20px;
    color: var(--accent-deep,var(--accent));
    opacity: .55;
    transition: opacity .15s ease,transform .15s ease
}

.user-dd-head:hover .user-dd-head-go {
    opacity: 1;
    transform: translateX(2px)
}

.user-dd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0;
    padding: 4px 12px 0;
    background: var(--card,#fff)
}

.user-dd-chip {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-height: 44px;
    min-width: 0;
    padding: 0 12px;
    border-radius: 12px;
    background: var(--chip);
    border: 0;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
    text-align: left;
    transition: background .14s ease,color .14s ease
}

.user-dd-chip i {
    font-size: 16px;
    line-height: 1;
    color: var(--muted);
    flex: 0 0 auto
}

.user-dd-chip span {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2
}

.user-dd-chip:hover {
    background: color-mix(in srgb,var(--accent-soft) 70%,var(--chip));
    color: var(--text)
}

.user-dd-chip:hover i {
    color: var(--accent)
}

.user-dd-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 10px 12px 0;
    border-top: 0;
    background: var(--card,#fff)
}

.user-dd-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: 0;
    transition: background .14s ease,opacity .14s ease
}

.user-dd-action i {
    font-size: 16px;
    color: inherit
}

.user-dd-action.is-admin {
    background: color-mix(in srgb,var(--accent-soft) 80%,var(--chip));
    color: var(--accent-deep,var(--accent))
}

.user-dd-action.is-admin:hover {
    filter: brightness(.97)
}

.user-dd-action.is-logout {
    background: var(--chip);
    color: #b91c1c
}

.user-dd-action.is-logout:hover {
    background: #fee2e2
}

.user-dd-list,.user-dd-foot {
    display: none
}

.user-dd-danger {
    color: #b91c1c!important
}

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    align-content: start;
    justify-items: center;
    padding: 14vh 20px;
    background: var(--overlay);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px)
}

.search-overlay[hidden] {
    display: none!important
}

.search-panel {
    width: min(560px,100%);
    padding: 18px
}

.search-form {
    display: flex;
    align-items: center;
    gap: 10px
}

.search-form-icon {
    color: var(--muted);
    font-size: 18px
}

.search-input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 17px;
    font-weight: 600;
    padding: 8px 0
}

.search-esc {
    font-size: 11px;
    padding: 3px 7px;
    border-radius: 6px;
    border: 1px solid var(--line);
    color: var(--muted)
}

.search-hint {
    margin-top: 10px;
    font-size: 12px;
    color: var(--muted)
}

.uc-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.uc-modal.open {
    display: flex
}

.uc-modal-mask {
    position: absolute;
    inset: 0;
    background: var(--overlay)
}

.uc-modal-panel {
    position: relative;
    z-index: 1;
    width: min(400px,100%);
    padding: 24px 20px;
    text-align: center;
    max-height: min(90vh,920px);
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.uc-modal-panel::-webkit-scrollbar,
.uc-modal-body::-webkit-scrollbar,
.mobile-nav-body::-webkit-scrollbar,
.msg-dialog::-webkit-scrollbar {
    width: 0!important;
    height: 0!important;
    display: none!important
}

.uc-modal-body,
.mobile-nav-body,
.msg-dialog {
    scrollbar-width: none;
    -ms-overflow-style: none
}

.uc-modal-x {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    color: var(--muted)
}

.uc-modal-icon {
    font-size: 28px;
    margin-bottom: 6px
}

.uc-modal-title {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 750
}

.uc-modal-msg {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6
}

.uc-modal-field {
    margin: 0 0 12px;
    text-align: left
}

.uc-modal-actions {
    display: flex;
    gap: 8px;
    justify-content: center
}

.uc-modal-btn {
    min-width: 88px
}

.uc-modal-ok {
    height: 38px;
    padding: 0 14px;
    border-radius: 12px;
    border: 0;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    cursor: pointer
}

.uc-modal-cancel {
    height: 38px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--chip);
    font-weight: 700;
    cursor: pointer
}

.uc-auth-panel {
    text-align: left;
    width: min(420px,100%);
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 16px
}

.uc-auth-panel.has-poster {
    width: min(860px,100%);
    min-height: 520px
}

.uc-auth-poster {
    display: none;
    position: relative;
    flex: 0 0 46%;
    min-width: 0;
    background: #f4f6f8;
    overflow: hidden
}

.uc-auth-panel.has-poster .uc-auth-poster {
    display: block
}

.uc-auth-poster .uc-slider,.uc-auth-poster .uc-auth-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    margin: 0;
    border-radius: 0;
    aspect-ratio: auto
}

.uc-auth-poster .uc-slider-viewport {
    position: absolute;
    inset: 0
}

.uc-auth-poster .uc-slider-cap {
    font-size: 14px;
    padding: 24px 16px 40px
}

.uc-auth-poster .uc-slider-dots {
    bottom: 18px;
    gap: 8px
}

.uc-auth-poster .uc-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 4px;
    background: rgba(255,255,255,.45)
}

.uc-auth-poster .uc-slider-dot.on {
    width: 10px;
    height: 10px;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(0,0,0,.12)
}

.uc-auth-main {
    flex: 1 1 auto;
    min-width: 0;
    padding: 36px 40px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.uc-auth-title {
    margin: 0 0 28px;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .02em;
    color: #1a1d21
}

.uc-auth-form {
    margin: 0
}

.uc-auth-field {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    margin: 0 0 14px;
    padding: 0 14px;
    border-radius: 10px;
    background: #f0f2f5;
    border: 1px solid transparent;
    transition: border-color .15s,background .15s,box-shadow .15s
}

.uc-auth-field:focus-within {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft)
}

.uc-auth-field label {
    flex: 0 0 auto;
    min-width: 3em;
    margin: 0;
    font-size: 14px;
    font-weight: 650;
    color: #5b6470;
    white-space: nowrap
}

.uc-auth-input {
    flex: 1 1 auto;
    min-width: 0;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 14px;
    color: #1a1d21;
    outline: none;
    box-shadow: none !important
}

.uc-auth-input::placeholder {
    color: #a0a8b4
}

.uc-auth-field-captcha .uc-auth-captcha,.uc-auth-field-action .uc-auth-action {
    flex: 0 0 auto;
    margin-left: 4px
}

.uc-auth-captcha {
    height: 34px;
    width: 96px;
    border-radius: 6px;
    cursor: pointer;
    object-fit: cover;
    background: #e8ebef
}

.uc-auth-action {
    height: 34px;
    padding: 0 4px;
    border: 0;
    background: transparent;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap
}

.uc-auth-action:disabled {
    opacity: .55;
    cursor: not-allowed
}

.uc-auth-row {
    margin: -2px 0 16px;
    font-size: 13px
}

.uc-auth-row a {
    color: var(--accent);
    font-weight: 650;
    text-decoration: none
}

.uc-auth-row a:hover {
    opacity: .8
}

.uc-auth-btn {
    display: block;
    width: 100%;
    height: 48px;
    margin: 0;
    border: 0;
    border-radius: 10px;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 15px;
    font-weight: 750;
    cursor: pointer;
    transition: filter .15s,transform .1s
}

.uc-auth-btn:hover {
    filter: brightness(1.06)
}

.uc-auth-btn:active {
    transform: scale(.995)
}

.uc-auth-legal {
    margin: 14px 0 0;
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
    color: #9aa3af
}

.uc-auth-legal a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px
}

.uc-auth-legal a:hover {
    color: var(--accent)
}

.uc-auth-alts {
    margin-top: 18px
}

.uc-auth-alts-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 14px;
    color: #9aa3af;
    font-size: 12px;
    line-height: 1
}

.uc-auth-alts-line::before,.uc-auth-alts-line::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(148,163,184,.35)
}

.uc-auth-alts-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap
}

.uc-auth-alt {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(148,163,184,.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #64748b;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    transition: transform .15s ease,border-color .15s ease,color .15s ease,box-shadow .15s ease
}

.uc-auth-alt:hover {
    transform: translateY(-1px);
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(15,23,42,.08)
}

.uc-auth-alt-wechat {
    color: #07c160
}

.uc-auth-alt-wechat:hover {
    background: #ecfdf3;
    color: #07c160
}

.uc-auth-alt-qq {
    color: #12b7f5
}

.uc-auth-alt-qq:hover {
    background: #eef9fe;
    color: #12b7f5
}

.uc-auth-alt-phone {
    color: #2563eb
}

.uc-auth-alt-phone:hover {
    background: #eff6ff;
    color: #2563eb
}

/* ????????????????????????? */
#uc-phone-form .uc-auth-alt-phone {
    display: none !important
}

.uc-auth-alt-account {
    color: #0f766e
}

.uc-auth-alt-account:hover {
    background: #f0fdfa;
    color: #0f766e
}

.page-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.page-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    box-sizing: border-box;
    transition: background .15s ease,color .15s ease
}

.page-nav-item span {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.page-nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex: 0 0 auto;
    background: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft)
}

.page-nav-item:hover {
    background: var(--chip);
    color: var(--text)
}

.page-nav-item.is-active {
    background: var(--accent-soft);
    color: var(--accent)
}

.page-nav-empty {
    margin: 0;
    padding: 8px 4px;
    font-size: 12px;
    color: var(--muted)
}

.shell-static-page .static-page-card .detail-head {
    margin-bottom: 0
}

.shell-static-page .static-page-card .detail-head h1 {
    margin-bottom: 0
}

.page-nav-card {
    padding: 12px
}

.plaza-main.shell-static-page,.plaza-main.badge-layout {
    grid-template-columns: minmax(0,1fr) 300px
}

html.layout-triple .plaza-main.shell-static-page:has(> .plaza-left),html.layout-triple .plaza-main.badge-layout:has(> .plaza-left) {
    grid-template-columns: minmax(0,1fr) 300px
}

html.layout-triple .plaza-main.shell-static-page > .plaza-left,html.layout-triple .plaza-main.badge-layout > .plaza-left,.plaza-main.shell-static-page > .plaza-left,.plaza-main.badge-layout > .plaza-left {
    display: none!important
}

.uc-auth-switch {
    margin: 22px 0 0;
    text-align: center;
    font-size: 13px;
    color: #6b7280
}

.uc-auth-switch a {
    color: var(--accent);
    font-weight: 750;
    text-decoration: none
}

.uc-auth-switch a:hover {
    opacity: .8
}

.uc-auth-panel .uc-modal-x {
    top: 12px;
    right: 12px;
    z-index: 3;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(6px)
}

@media (max-width: 960px) {
    .uc-auth-modal {
        padding:16px;
        align-items: center
    }

    .uc-auth-modal .uc-auth-panel,.uc-auth-modal .uc-auth-panel.has-poster {
        width: 100%;
        max-width: none;
        min-height: 0
    }

    .uc-auth-poster {
        display: none !important
    }

    .uc-auth-main {
        padding: 28px 22px 22px
    }

    .uc-auth-title {
        margin-bottom: 22px;
        font-size: 20px
    }
}

.uc-toast-root {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none
}

.uc-toast {
    pointer-events: auto;
    min-width: 200px;
    max-width: min(420px,92vw);
    padding: 11px 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--card-shadow-hover);
    font-size: 13px;
    font-weight: 650;
    text-align: center
}

.uc-toast-success {
    color: var(--success)
}

.uc-toast-warn,.uc-toast-warning {
    color: var(--warning)
}

.uc-toast-error {
    color: var(--danger)
}

.uc-share-panel {
    text-align: left
}

.uc-share-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 10px;
    margin: 14px 0
}

.uc-share-item {
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--muted);
    font-weight: 650;
    min-width: 0
}

.uc-share-item em {
    font-style: normal;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.uc-share-ico {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 20px;
    flex: 0 0 auto
}

.uc-share-wechat {
    background: #07c160
}

.uc-share-weibo {
    background: #e6162d
}

.uc-share-qq {
    background: #12b7f5
}

.uc-share-qzone {
    background: #ffc107;
    color: #333
}

.uc-share-copy {
    display: flex;
    gap: 8px;
    align-items: center
}

.uc-share-url {
    flex: 1;
    min-width: 0;
    height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--chip);
    outline: 0;
    font: inherit;
    font-size: 13px;
    color: var(--text)
}

.uc-share-copy-btn {
    flex: 0 0 auto;
    height: 42px;
    min-width: 64px;
    padding: 0 12px;
    border-radius: 12px;
    border: 0;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    cursor: pointer
}

.uc-report-panel {
    text-align: left;
    width: min(420px,100%);
    box-sizing: border-box
}

.uc-report-panel .uc-modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin: 0 8px 0 0;
    font-size: 22px;
    line-height: 1;
    color: var(--text)
}

.uc-report-panel .uc-modal-title {
    display: inline;
    vertical-align: middle;
    margin: 0;
    font-size: 18px;
    line-height: 1.3
}

.uc-report-panel .uc-modal-msg {
    margin: 8px 0 14px
}

.uc-report-types {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 12px;
    width: 100%;
    box-sizing: border-box;
    text-align: left
}

.uc-report-type {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    min-height: 44px;
    padding: 11px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--chip);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35
}

.uc-report-type input[type="radio"] {
    width: 16px;
    height: 16px;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
    accent-color: var(--accent);
    align-self: center
}

.uc-report-type span {
    flex: 1;
    min-width: 0;
    text-align: left
}

.uc-report-panel .uc-modal-field {
    margin: 0 0 14px;
    width: 100%;
    box-sizing: border-box
}

.uc-modal-textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    min-height: 96px;
    margin: 0;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--chip);
    outline: 0;
    resize: vertical;
    font: inherit;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text)
}

.uc-modal-textarea:focus {
    background: #fff;
    border-color: var(--stroke-strong);
    box-shadow: 0 0 0 3px var(--accent-soft)
}

.uc-report-panel .uc-modal-actions {
    justify-content: flex-end;
    margin-top: 2px
}

.uc-reward-panel {
    text-align: left;
    width: min(380px,100%);
    box-sizing: border-box
}

.uc-reward-panel .uc-modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin: 0 8px 0 0;
    font-size: 22px;
    line-height: 1;
    color: var(--accent)
}

.uc-reward-panel .uc-modal-title {
    display: inline;
    vertical-align: middle;
    margin: 0;
    font-size: 18px;
    line-height: 1.3
}

.uc-reward-balance {
    margin: 8px 0 2px;
    font-size: 13px
}

.uc-reward-balance b {
    color: var(--accent)
}

.uc-reward-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 4px
}

.uc-reward-amount {
    min-width: 56px;
    height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--chip);
    font-weight: 700;
    font-size: 13px;
    color: var(--text);
    cursor: pointer
}

.uc-reward-amount:hover {
    border-color: var(--stroke-strong)
}

.uc-reward-amount.on {
    background: var(--accent);
    border-color: transparent;
    color: #fff
}

.uc-reward-input {
    margin-top: 2px;
    text-align: left
}

.uc-reward-panel .uc-modal-actions {
    justify-content: flex-end;
    margin-top: 2px
}

.uc-slider {
    position: relative;
    margin: 0;
    width: 100%;
    height: auto;
    max-height: none;
    min-height: 0;
    aspect-ratio: var(--uc-slider-ar,7 / 3);
    border-radius: var(--radius,20px);
    overflow: hidden;
    border: 0;
    box-shadow: var(--card-shadow)
}

.plaza-feed > .uc-slider {
    margin: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: var(--uc-slider-ar,7 / 3)
}

.uc-slider-viewport {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.uc-slider-track {
    display: flex;
    height: 100%;
    transition: transform .45s cubic-bezier(.22,.61,.36,1)
}

.uc-slider-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden
}

.uc-slider-slide img {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center
}

.uc-slider-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 18px 14px;
    background: linear-gradient(180deg,transparent,rgba(0,0,0,.5));
    color: #fff;
    font-size: 15px;
    font-weight: 700
}

.uc-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 99px;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: rgba(255,255,255,.92);
    font-size: 20px;
    line-height: 1;
    background: rgba(18,20,26,.48);
    -webkit-backdrop-filter: blur(14px) saturate(1.25);
    backdrop-filter: blur(14px) saturate(1.25);
    box-shadow: 0 6px 18px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.08);
    opacity: 0;
    transition: opacity .2s,background .2s,border-color .2s,transform .2s
}

.uc-slider-btn:hover {
    background: rgba(12,14,18,.62);
    border-color: rgba(255,255,255,.22)
}

.uc-slider-btn:active {
    transform: translateY(-50%) scale(.96)
}

.uc-slider:hover .uc-slider-btn {
    opacity: 1
}

.uc-slider-prev {
    left: 12px
}

.uc-slider-next {
    right: 12px
}

.uc-slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 6px;
    pointer-events: none
}

.uc-slider-dot {
    pointer-events: auto;
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: rgba(255,255,255,.5);
    cursor: pointer
}

.uc-slider-dot.on {
    width: 16px;
    background: #fff
}

@media (min-width: 961px) {
    /* PC 固定画幅，避免宽图把轮播压扁；图片 cover 铺满 */
    .uc-slider {
        height: auto;
        max-height: min(48vh,560px);
        aspect-ratio: 5 / 2
    }

    .plaza-feed > .uc-slider {
        height: auto;
        max-height: min(48vh,560px);
        aspect-ratio: 5 / 2
    }

    html.layout-triple .uc-slider,html.layout-triple .plaza-feed > .uc-slider {
        max-height: min(44vh,520px);
        aspect-ratio: 5 / 2
    }
}

.ad-slot {
    margin: 0
}

.plaza-feed > .ad-slot {
    margin: 0
}

.plaza-left > .ad-slot,
.plaza-aside > .ad-slot {
    margin: 0
}

.ad-slot .ad-banner,
.ad-slot > div {
    display: block;
    border-radius: var(--radius,20px);
    overflow: hidden;
    border: 0
}

.ad-slot .ad-banner-img,
.ad-slot .ad-banner img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top
}

.card {
    background: var(--card);
    border: 0;
    border-radius: var(--radius,20px);
    box-shadow: var(--card-shadow)
}

.card-pad {
    padding: 18px
}

.surface {
    background: var(--card)
}

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: none;
    height: 100%;
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden
}

.mobile-nav.open {
    display: block
}

.mobile-nav[hidden] {
    display: none!important
}

.mobile-nav-mask {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,.42);
    opacity: 0;
    transition: opacity .22s ease
}

.mobile-nav.open .mobile-nav-mask {
    opacity: 1
}

.mobile-nav-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: auto;
    width: min(320px,86vw);
    height: 100%;
    max-height: 100%;
    background: #fff;
    border-left: 1px solid var(--line);
    box-shadow: var(--card-shadow-hover);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
    transform: translateX(104%);
    transition: transform .22s ease
}

.mobile-nav.open .mobile-nav-panel {
    transform: none
}

.mobile-nav-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y
}

.mobile-nav-sec {
    padding: 10px 14px 12px;
    border-bottom: 1px solid var(--line);
    box-sizing: border-box
}

.mobile-nav-sec:last-child {
    border-bottom: 0
}

.mobile-nav-body .plaza-left-link {
    min-height: 48px;
    height: 48px;
    padding: 0 14px;
    border-radius: 12px;
    gap: 12px
}

.mobile-nav-body .plaza-left-link i {
    font-size: 20px;
    width: 22px;
    opacity: 1
}

.mobile-nav-body .plaza-left-link.on::before {
    content: none;
    display: none
}

.mobile-nav-body .sec-head {
    margin: 0 0 8px;
    padding: 0 4px
}

.mobile-nav-body .sec-head h2 {
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted)
}

.mobile-nav .bar-nav-item {
    width: 100%;
    box-sizing: border-box
}

.mobile-nav .bar-nav-item[data-shell="all"],html:not(.layout-dual):not(.layout-triple) .mobile-nav .bar-nav-item[data-shell="single"],html.layout-dual .mobile-nav .bar-nav-item[data-shell="dual"],html.layout-dual .mobile-nav .bar-nav-item[data-shell="dual_triple"],html.layout-triple .mobile-nav .bar-nav-item[data-shell="triple"],html.layout-triple .mobile-nav .bar-nav-item[data-shell="dual_triple"] {
    display: flex!important
}

.mnav-user {
    position: relative;
    isolation: isolate;
    padding: 14px;
    margin: 0;
    border-bottom: 1px solid var(--line);
    box-sizing: border-box;
    background: linear-gradient(152deg,color-mix(in srgb,var(--accent) 10%,var(--card,#fff)) 0%,color-mix(in srgb,var(--accent-soft) 35%,var(--card,#fff)) 20%,var(--card,#fff) 100%)
}

.mnav-user::before {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    width: min(220px,90%);
    height: 110px;
    top: -44px;
    right: -24px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 50% 55%,color-mix(in srgb,var(--accent) 24%,transparent) 0%,color-mix(in srgb,var(--brand-lite,var(--accent)) 10%,transparent) 46%,transparent 74%);
    opacity: .72
}

.mnav-user > * {
    position: relative;
    z-index: 1
}

.mnav-user-head {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0
}

.mnav-user-avatar-wrap {
    flex: 0 0 auto
}

.mnav-user-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
    background: var(--chip);
    border: 1px solid var(--line)
}

.mnav-user-meta {
    min-width: 0;
    flex: 1
}

.mnav-user-name {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.mnav-user-name strong {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%
}

.mnav-user-name em,.mnav-user-level {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    font-style: normal;
    font-size: 11px;
    font-weight: 650;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 999px;
    background: #374151;
    color: #fff;
    flex: 0 0 auto
}

.mnav-user-level::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient( 110deg,transparent 18%,rgba(255,255,255,.14) 34%,rgba(255,255,255,.55) 50%,rgba(255,255,255,.14) 66%,transparent 82% );
    width: 180%;
    transform: translateX(-100%);
    animation: level-shine 2s ease-in-out infinite
}

.mnav-user-set {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--muted);
    display: grid;
    place-items: center;
    cursor: pointer
}

.mnav-user-set i {
    font-size: 20px;
    line-height: 1
}

.mnav-user-set:hover,.mnav-user-set[aria-expanded="true"] {
    color: var(--accent);
    background: var(--chip,#f3f4f6)
}

.mnav-user-id {
    margin: 6px 0 0;
    font-size: 12px;
    color: var(--muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.mnav-user-chips {
    display: flex;
    gap: 8px;
    margin-top: 14px
}

.mnav-chip {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 34px;
    padding: 0 6px;
    border: 0;
    border-radius: 999px;
    background: #f3f4f6;
    color: var(--text);
    font-size: 12px;
    font-weight: 650;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap
}

.mnav-chip i {
    font-size: 14px;
    line-height: 1;
    flex: 0 0 auto
}

.mnav-chip-vip {
    background: #ffe566;
    color: #1f2937
}

.mnav-chip-logout {
    color: #dc2626;
    background: #fef2f2
}

.mnav-uc-block {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.mnav-uc-stats {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 6px
}

.mnav-uc-stat {
    text-align: center;
    padding: 10px 4px;
    border-radius: 12px;
    background: var(--chip,#f3f4f6);
    text-decoration: none;
    color: inherit;
    min-width: 0
}

.mnav-uc-stat b {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    font-variant-numeric: tabular-nums
}

.mnav-uc-stat span {
    font-size: 11px;
    color: var(--muted)
}

.mnav-uc-coin {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 8px 8px 12px;
    border-radius: 12px;
    background: var(--chip,#f3f4f6);
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 650
}

.mnav-uc-coin-main {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
    color: inherit;
    text-decoration: none;
    overflow: hidden
}

.mnav-uc-coin-main i {
    font-size: 18px;
    color: #c2410c;
    flex: 0 0 auto
}

.mnav-uc-coin-main b {
    color: var(--text);
    font-weight: 800
}

.mnav-uc-sep {
    opacity: .45;
    margin: 0 2px;
    flex: 0 0 auto
}

.mnav-uc-recharge {
    flex: 0 0 auto;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--accent-ink,#fff);
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap
}

.mnav-user-guest {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 8px 10px;
    text-align: center;
    background: transparent
}

.mnav-user-guest-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e5e7eb;
    color: #9ca3af
}

.mnav-user-guest-avatar i {
    font-size: 36px;
    line-height: 1
}

.mnav-user-guest-login {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
    border: 0;
    cursor: pointer;
    min-width: 148px;
    height: 40px;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-ink,#fff);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: none
}

.mnav-user-guest-login:hover {
    opacity: .92
}

.mnav-user-guest-reg {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--muted,#8a8a8a)
}

.mnav-user-guest-reg a {
    color: var(--accent);
    font-weight: 750;
    text-decoration: none;
    margin-left: 2px
}

.mnav-user-guest-reg a:hover {
    opacity: .85
}

.mobile-nav-foot {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom,0px));
    border-top: 1px solid var(--line);
    background: #fff;
    box-sizing: border-box
}

.mnav-foot-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #f8fafc;
    color: var(--text);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box
}

.mnav-foot-btn i {
    font-size: 18px
}

@media (max-width: 960px) {
    .plaza-main {
        grid-template-columns:minmax(0,1fr)
    }

    .plaza-main.shell-static-page,.plaza-main.badge-layout,html.layout-triple .plaza-main.shell-static-page:has(> .plaza-left),html.layout-triple .plaza-main.badge-layout:has(> .plaza-left) {
        grid-template-columns: minmax(0,1fr)
    }

    html.layout-triple .plaza-main:has(> .plaza-left) {
        grid-template-columns: minmax(0,1fr)
    }

    html.layout-triple .plaza-main:has(> .plaza-left) > .plaza-left {
        display: none
    }

    .plaza-aside,.plaza-left,.plaza-feed {
        position: static;
        min-width: 0;
        max-width: 100%
    }

    .article-card {
        padding: 20px 16px
    }

    .topic-adjacent {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .topic-adj {
        min-height: 68px;
        padding: 18px 16px
    }

    .detail-body {
        overflow-wrap: anywhere;
        word-break: break-word;
        min-width: 0
    }

    .detail-actions {
        gap: 6px
    }

    .topic-adj-next {
        justify-content: flex-start;
        text-align: left
    }

    .topic-adj-next .topic-adj-icon {
        order: -1
    }

    .detail-actions .rail-btn {
        flex: 1 1 auto;
        min-width: calc(33.33% - 6px);
        justify-content: center;
        padding: 0 10px;
        box-sizing: border-box
    }

    .feed-style-row .work-body {
        grid-template-columns: 44px minmax(0,1fr) auto;
        grid-template-areas: "avatar title title" "avatar meta stats";
        column-gap: 10px;
        row-gap: 6px;
        padding: 14px 16px;
        align-items: center
    }

    .feed-style-row .badge-type {
        display: none
    }

    .feed-style-row .work-title {
        align-items: center;
        flex-wrap: nowrap;
        gap: 6px;
        font-size: 16px;
        line-height: 1.45
    }

    .feed-style-row .work-flags {
        flex: 0 0 auto;
        max-width: none;
        flex-wrap: nowrap
    }

    .feed-style-row .work-title-text {
        flex: 1 1 auto;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        -webkit-line-clamp: unset;
        line-height: 1.45
    }

    .feed-style-row .work-avatar,.feed-style-row .work-avatar-wrap .uc-avatar-img {
        width: 44px;
        height: 44px
    }

    .feed-style-row .work-who {
        gap: 6px;
        width: max-content;
        max-width: 100%;
        justify-self: start;
        min-width: 0
    }

    .feed-style-row .work-who-top {
        flex: 0 1 auto;
        min-width: 0
    }

    .feed-style-row .work-author {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .feed-style-row .work-foot {
        align-self: center;
        justify-self: start;
        margin: 0;
        gap: 0
    }

    .feed-style-row .work-stats {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        white-space: nowrap
    }

    .feed-style-row .work-stats span {
        min-width: 0
    }

    .feed-style-row .work-stats span:last-child {
        display: inline-flex
    }

    .feed-style-row .work-more {
        display: none
    }

    .uc-nav-card {
        flex-direction: row;
        flex-wrap: wrap
    }

    .uc-nav-card .uc-tab {
        width: auto
    }

    .mobile-only {
        display: grid!important
    }

    .sidebar {
        display: none!important
    }

    body.sidebar-open::before {
        display: none
    }

    .compose-layout .compose-aside {
        order: -1
    }

    .compose-meta-row {
        grid-template-columns: 1fr
    }

    .main-scroll {
        padding: 16px 0 40px
    }

    .site-foot {
        padding-left: 0;
        padding-right: 0
    }

    html:not(.layout-dual):not(.layout-triple) .main-scroll,html:not(.layout-dual):not(.layout-triple) .site-foot,html.layout-dual .main-scroll,html.layout-triple .main-scroll,html.layout-dual .site-foot,html.layout-triple .site-foot {
        padding-left: 0;
        padding-right: 0
    }

    .main-bar-inner,.content,.site-foot-inner,.site-foot-bottom-inner,html:not(.layout-dual):not(.layout-triple) .main-bar-inner,html:not(.layout-dual):not(.layout-triple) .content,html:not(.layout-dual):not(.layout-triple) .site-foot-inner,html:not(.layout-dual):not(.layout-triple) .site-foot-bottom-inner,html.layout-dual .main-bar-inner,html.layout-dual .content,html.layout-dual .site-foot-inner,html.layout-dual .site-foot-bottom-inner,html.layout-triple .main-bar-inner,html.layout-triple .content,html.layout-triple .site-foot-inner,html.layout-triple .site-foot-bottom-inner {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box
    }

    html:not(.layout-dual):not(.layout-triple) .site-foot-bottom {
        width: 100%;
        margin-left: 0;
        display: block;
        grid-template-columns: none
    }

    html:not(.layout-dual):not(.layout-triple) .site-foot-bottom-inner {
        grid-column: auto;
        height: auto;
        min-height: 64px
    }

    .bar-nav-item[data-shell="single"],.bar-nav-item[data-shell="dual"],.bar-nav-item[data-shell="triple"],.bar-nav-item[data-shell="dual_triple"] {
        display: none!important
    }

    html:not(.layout-dual):not(.layout-triple) .bar-nav-item[data-shell="single"],html.layout-dual .bar-nav-item[data-shell="dual"],html.layout-dual .bar-nav-item[data-shell="dual_triple"],html.layout-triple .bar-nav-item[data-shell="triple"],html.layout-triple .bar-nav-item[data-shell="dual_triple"] {
        display: none!important
    }

    .bar-nav > a.bar-nav-item[data-shell="all"] {
        display: inline-flex!important
    }

    .bar-nav > .bar-nav-drop.bar-nav-item[data-shell="all"] {
        display: inline-flex!important
    }

    .main-bar {
        background: #fff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        --mobile-gutter: 16px
    }

    html:not(.layout-dual):not(.layout-triple) .main-bar-inner,html.layout-dual .main-bar-inner,html.layout-triple .main-bar-inner,.main-bar-inner {
        width: 100%!important;
        max-width: none!important;
        margin: 0!important;
        height: auto;
        min-height: 0;
        padding: 0 var(--mobile-gutter,16px)!important;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        box-sizing: border-box
    }

    .bar-left,.bar-right {
        display: flex!important;
        align-items: center;
        height: 52px;
        min-height: 52px;
        gap: 0;
        margin: 0;
        padding: 0!important;
        box-sizing: border-box
    }

    .bar-left {
        position: static!important;
        right: auto!important;
        top: auto!important;
        transform: none!important;
        margin-right: 0!important;
        flex: 1 1 auto;
        min-width: 0;
        gap: 10px
    }

    .bar-brand {
        display: inline-flex!important;
        align-items: center;
        gap: 8px;
        flex: 1 1 auto;
        min-width: 0;
        max-width: 100%
    }

    .bar-brand .logo-copy {
        display: flex!important;
        min-width: 0;
        flex: 1 1 auto
    }

    .bar-brand .logo-text {
        display: block!important;
        max-width: 100%;
        font-size: 14px
    }

    .bar-brand .logo-sub {
        display: block!important;
        max-width: none;
        width: auto;
        font-size: 10px;
        white-space: normal!important;
        overflow: visible!important;
        text-overflow: unset!important;
        word-break: break-word
    }

    .bar-brand .logo-mark {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: 15px
    }

    .bar-brand .logo-img {
        height: 30px;
        max-width: min(140px,42vw)
    }

    .bar-brand.has-logo {
        flex: 0 0 auto
    }

    .bar-ver {
        display: none!important
    }

    .bar-center {
        display: block!important;
        order: 3;
        flex: 0 0 100%!important;
        width: 100%!important;
        max-width: 100%!important;
        min-width: 0;
        margin: 0!important;
        padding: 0!important;
        border-top: 0;
        overflow: visible;
        box-sizing: border-box
    }

    html.layout-dual .bar-center,html.layout-triple .bar-center,html:not(.layout-dual):not(.layout-triple) .bar-center {
        margin-left: 0!important;
        padding-left: 0!important;
        padding-right: 0!important
    }

    .bar-nav {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        gap: 18px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
        box-sizing: border-box
    }

    .bar-nav::-webkit-scrollbar {
        display: none
    }

    .bar-nav > a.bar-nav-item,.bar-nav > .bar-nav-drop {
        flex: 0 0 auto;
        min-width: 0;
        justify-content: center
    }

    .bar-nav > a.bar-nav-item,.bar-nav .bar-nav-tab-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        width: auto;
        padding: 10px 2px 12px;
        border-radius: 0;
        background: transparent!important;
        color: var(--muted);
        font-size: 14px;
        font-weight: 650;
        white-space: nowrap;
        position: relative;
        box-shadow: none!important;
        border: 0!important
    }

    .bar-nav .bar-nav-tab-link {
        display: inline-flex!important
    }

    .bar-nav > a.bar-nav-item i,.bar-nav .bar-nav-tab-link i {
        display: none
    }

    .bar-nav > a.bar-nav-item.on,.bar-nav .bar-nav-tab-link.on {
        color: var(--accent)!important;
        background: transparent!important
    }

    .bar-nav > a.bar-nav-item.on::after,.bar-nav .bar-nav-tab-link.on::after {
        content: "";
        display: block;
        position: absolute;
        left: 2px;
        right: 2px;
        bottom: 0;
        height: 3px;
        border-radius: 5px;
        background: var(--accent)
    }

    .bar-nav > a.bar-nav-item > span,.bar-nav .bar-nav-tab-link > span {
        position: relative;
        display: inline-block;
        line-height: 1.2;
        max-width: none;
        overflow: visible;
        text-overflow: unset
    }

    .bar-nav > a.bar-nav-item.on > span::after,.bar-nav .bar-nav-tab-link.on > span::after {
        content: none;
        display: none
    }

    .bar-nav-drop {
        display: inline-flex;
        align-items: center;
        width: auto
    }

    .bar-nav-drop-btn,.bar-nav-drop-menu {
        display: none!important
    }

    .bar-right {
        margin-left: 0!important;
        margin-right: -9px!important;
        width: auto;
        flex: 0 0 auto;
        gap: 0
    }

    .bar-actions {
        display: none!important
    }

    #js-mobile-nav-toggle,.bar-search,.bar-rank-btn,.bar-signin-btn {
        box-sizing: border-box;
        width: 40px!important;
        height: 40px!important;
        min-width: 40px;
        min-height: 40px;
        margin: 0;
        padding: 0!important;
        border: 0!important;
        border-radius: 0!important;
        background: transparent!important;
        box-shadow: none!important;
        color: var(--text);
        display: inline-grid!important;
        place-items: center;
        line-height: 0;
        flex: 0 0 40px;
        align-self: center;
        text-decoration: none
    }

    #js-mobile-nav-toggle {
        display: inline-grid!important
    }

    .bar-rank-btn {
        display: inline-grid!important
    }

    .bar-search:hover,.bar-rank-btn:hover,.bar-signin-btn:hover {
        background: transparent!important;
        border: 0!important;
        box-shadow: none!important;
        color: var(--text)
    }

    .bar-search span,.bar-search-keys,.bar-search kbd {
        display: none!important
    }

    #js-mobile-nav-toggle i,.bar-search i,.bar-rank-btn i,.bar-signin-btn i {
        font-size: 22px!important;
        line-height: 1!important;
        width: 22px;
        height: 22px;
        display: block;
        margin: 0
    }

    .bar-post-btn,.bar-set-btn,.main-bar .user-dd {
        display: none!important
    }

    html.layout-dual .bar-set-btn,html.layout-triple .bar-set-btn {
        display: none!important
    }

    .uc-slider-btn,.uc-slider:hover .uc-slider-btn {
        display: none!important;
        opacity: 0!important;
        pointer-events: none!important
    }

    html.feed-cols-2 .feed-stack {
        grid-template-columns: 1fr
    }

    .feed-toolbar {
        gap: 8px;
        align-items: center;
        min-width: 0
    }

    .feed-tabs {
        flex: 0 1 auto;
        width: max-content;
        max-width: calc(100% - 76px);
        min-width: 0;
        gap: 2px;
        padding: 3px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        box-sizing: border-box
    }

    .feed-tabs::-webkit-scrollbar {
        display: none
    }

    .feed-tab {
        height: 30px;
        padding: 0 10px;
        font-size: 12px;
        flex: 0 0 auto;
        justify-content: center
    }

    .feed-toolbar-right {
        gap: 6px;
        flex: 0 0 auto;
        margin-left: auto
    }

    .feed-view {
        padding: 2px
    }

    .feed-view-btn {
        height: 28px;
        padding: 0 8px;
        font-size: 11px
    }

    .feed-view-btn span {
        display: none
    }

    .feed-view-btn i {
        font-size: 15px
    }

    .feed-style-stream .work-body,.feed-style-magazine .work-body {
        padding: 12px 14px;
        gap: 6px
    }

    .feed-style-stream .work-title,.feed-style-magazine .work-title {
        font-size: 15px;
        line-height: 1.45;
        gap: 6px;
        align-items: center
    }

    .feed-style-stream .work-flags,.feed-style-magazine .work-flags {
        max-width: 42%;
        gap: 4px;
        height: 1.45em;
        line-height: 1;
        align-self: center
    }

    .feed-style-stream .work-flags .badge,
    .feed-style-magazine .work-flags .badge,
    .feed-style-row .work-flags .badge {
        height: 15px;
        min-height: 15px;
        max-height: 15px;
        padding: 0 5px;
        font-size: 9px;
        line-height: 1
    }

    .feed-style-stream .work-title-main,
    .feed-style-magazine .work-title-main {
        align-self: center;
        line-height: 1.45
    }

    .feed-style-stream .work-title-text,
    .feed-style-magazine .work-title-text {
        line-height: 1.45
    }

    .feed-style-stream .work-excerpt,.feed-style-magazine .work-excerpt {
        font-size: 12px
    }

    .work-head {
        gap: 8px
    }

    .work-card .work-head .badge-type {
        font-size: 9px;
        padding: 1px 5px;
        max-width: 4.5em;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .work-cat {
        max-width: 5.5em;
        font-size: 10px;
        padding: 2px 6px
    }

    .work-level {
        height: 16px;
        padding: 0 6px;
        font-size: 9px
    }

    .plaza-feed {
        gap: 10px
    }

    .board-hero {
        padding: 14px 14px 12px
    }

    .board-hero-top {
        gap: 8px;
        align-items: center
    }

    .board-hero-title {
        font-size: 18px;
        letter-spacing: -.02em
    }

    .board-hero-desc {
        margin-top: 4px;
        font-size: 12px;
        line-height: 1.45;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    .board-hero-meta {
        margin-top: 8px;
        gap: 10px;
        font-size: 12px
    }

    .board-hero-actions {
        gap: 6px
    }

    .board-publish-btn,.board-follow-btn {
        height: 30px;
        padding: 0 12px;
        font-size: 12px
    }

    .board-hero-cats {
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 10px;
        overflow: visible
    }

    .board-cat-chip {
        flex: 0 0 auto;
        padding: 4px 10px;
        font-size: 12px;
        gap: 4px
    }

    .board-cat-chip i {
        font-size: 13px
    }

    .board-hero-mods {
        margin-top: 8px;
        gap: 6px
    }

    .board-mod-label,.board-mod-chip {
        height: 24px;
        font-size: 11px
    }

    .reply > .uc-avatar-link,.reply > .reply-avatar-wrap {
        flex-shrink: 0;
        overflow: visible
    }

    .reply-top {
        flex-wrap: wrap;
        align-items: flex-start
    }

    .reply-meta {
        align-items: flex-start;
        min-width: 0
    }

    .reply-actions {
        margin-left: auto;
        align-self: flex-start
    }
}

@media (max-width: 640px) {
    html,body {
        overflow-x: hidden;
        max-width: 100vw
    }

    .main-bar {
        --mobile-gutter:12px
    }

    .main-bar-inner,html:not(.layout-dual):not(.layout-triple) .main-bar-inner,html.layout-dual .main-bar-inner,html.layout-triple .main-bar-inner,.content,html:not(.layout-dual):not(.layout-triple) .content,html.layout-dual .content,html.layout-triple .content,.site-foot-inner,.site-foot-bottom-inner {
        padding-left: 12px!important;
        padding-right: 12px!important
    }

    .bar-nav {
        gap: 30px
    }

    .bar-nav > a.bar-nav-item,.bar-nav .bar-nav-tab-link {
        font-size: 13px
    }

    .bar-nav > a.bar-nav-item.on::after,.bar-nav .bar-nav-tab-link.on::after {
        bottom: 0;
        height: 3px
    }

    .work-body {
        padding: 12px
    }

    .feed-style-magazine .work-title {
        font-size: 15px
    }

    .feed-style-stream .work-title {
        font-size: 15px
    }

    .feed-style-thumb .work-card {
        padding: 12px;
        gap: 12px
    }

    .feed-style-thumb .work-thumb {
        flex-basis: 88px;
        width: 88px;
        height: 88px;
        border-radius: 10px
    }

    .feed-style-thumb .work-title {
        font-size: 14px
    }

    .feed-style-thumb .work-author {
        max-width: 5.5em
    }

    .feed-style-stream .work-stats span:last-child {
        display: none
    }

    .feed-style-magazine .work-stats span:last-child {
        display: none
    }

    .detail-head h1 {
        font-size: 24px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .author-strip {
        flex-wrap: wrap
    }

    .author-strip-actions {
        width: 100%
    }

    .author-strip-actions .btn {
        flex: 1
    }

    .compose-meta-row {
        grid-template-columns: 1fr
    }

    .uc-share-grid {
        grid-template-columns: repeat(4,minmax(0,1fr));
        gap: 6px
    }

    .uc-share-ico {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 18px
    }

    .uc-share-item {
        font-size: 10px;
        gap: 4px
    }

    .feed-tab {
        padding: 0 8px;
        font-size: 12px
    }

    .feed-view-btn {
        padding: 0 7px
    }

    .board-hero {
        padding: 15px
    }

    .board-hero-title {
        font-size: 17px
    }

    .board-hero-meta {
        margin-top: 6px;
        font-size: 11px
    }

    .board-hero-cats {
        margin-top: 8px;
        gap: 5px
    }

    .mobile-nav-panel {
        right: 0;
        width: 75%;
        max-width: none;
        height: 100%;
        max-height: 100%;
        border-left: 0;
        padding-top: env(safe-area-inset-top,0px);
        padding-bottom: env(safe-area-inset-bottom,0px)
    }

    .mobile-nav-body {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain
    }

    .reply {
        gap: 10px;
        padding: 12px 0;
        -webkit-box-align: start;
        align-items: flex-start
    }

    .reply > .uc-avatar-link {
        display: block;
        flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        width: 45px;
        height: 45px;
        margin-right: 2px;
        line-height: 0;
        -webkit-align-self: flex-start;
        align-self: flex-start;
        overflow: visible;
        position: relative
    }

    .reply > .reply-avatar-wrap {
        flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        width: 40px;
        height: 40px;
        margin-right: 2px;
        -webkit-align-self: flex-start;
        align-self: flex-start;
        overflow: visible;
        position: relative;
        display: block;
        line-height: 0
    }

    .reply .uc-avatar--md .uc-avatar-img {
        width: 45px;
        height: 45px;
        border-width: 2px
    }

    .reply .uc-avatar--md .uc-avatar-badge {
        width: 16px;
        height: 16px;
        font-size: 12px;
        right: -2px;
        bottom: -2px
    }

    .reply-main {
        min-width: 0;
        min-height: 40px;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        flex: 1;
        gap: 0;
    }

    .reply-top {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        gap: 0;
        width: 100%;
        min-width: 0
    }

    .reply-meta {
        display: block;
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 auto;
        flex: 1 1 auto;
        min-width: 0;
        max-width: 100%;
        font-size: 0;
        line-height: 15px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle
    }

    .reply-meta::after {
        content: "";
        display: inline-block;
        width: 0;
        height: 100%;
        vertical-align: middle
    }

    .reply-user,
    .reply-level,
    .reply-op,
    .reply-dot,
    .reply-floor,
    .reply-time,
    .reply-accepted-badge,
    .badge-icons,
    .badge-icons-sm {
        display: inline-block;
        vertical-align: middle;
        float: none;
        white-space: nowrap;
        max-width: 100%;
        min-width: 0
    }

    .reply-user {
        font-size: 14px;
        line-height: 20px;
        font-weight: 600;
        color: var(--text-soft)
    }

    .reply-level,
    .reply-op {
        height: 16px;
        padding: 0 5px;
        font-size: 10px;
        line-height: 16px;
        border-radius: 999px;
        margin: 0 1px
    }

    .reply-dot {
        font-size: 11px;
        color: var(--border-strong);
        padding: 0 2px
    }

    .reply-floor {
        font-size: 11px;
        color: var(--muted)
    }

    .reply-time {
        font-size: 11px;
        line-height: 20px;
        color: var(--muted)
    }

    .reply-accepted-badge {
        font-size: 10px;
        margin-left: 2px
    }

    .badge-icons-sm,
    .badge-icons {
        max-width: 80px;
        overflow: hidden;
        line-height: 1;
        margin: 0 2px
    }

    .badge-icons-sm .badge-icon,
    .badge-icons .badge-icon {
        display: inline-block;
        vertical-align: middle
    }

    .badge-icons-sm .badge-icon img,
    .badge-icons .badge-icon img {
        max-height: 12px;
        max-width: 20px;
        display: block
    }

    .reply-actions-wrap {
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
        position: relative;
        margin-left: 2px
    }

    .reply-more-toggle {
        display: -webkit-inline-flex;
        display: inline-flex
    }

    .reply-actions {
        position: absolute;
        top: 100%;
        right: 0;
        z-index: 50;
        display: none;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: stretch;
        align-items: stretch;
        gap: 0;
        min-width: 110px;
        margin: 4px 0 0;
        padding: 6px 0;
        background: var(--surface);
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0,0,0,.12),0 1px 4px rgba(0,0,0,.08);
        -webkit-box-shadow: 0 4px 16px rgba(0,0,0,.12),0 1px 4px rgba(0,0,0,.08)
    }

    .reply-actions-wrap.is-open .reply-actions {
        display: -webkit-flex;
        display: flex
    }

    .reply-action,.reply-mod-del {
        height: 36px;
        padding: 0 14px;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: var(--text-soft);
        font-size: 13px;
        font-weight: 500;
        text-align: left;
        white-space: nowrap;
        display: -webkit-inline-flex;
        display: inline-flex;
        -webkit-align-items: center;
        align-items: center;
        gap: 8px;
        -webkit-box-pack: start;
        justify-content: flex-start
    }

    .reply-action i,.reply-mod-del i {
        display: block;
        font-size: 16px;
        flex: 0 0 auto
    }

    .reply-action span,.reply-mod-del span {
        flex: 1 1 auto
    }

    .reply-action:hover,.reply-mod-del:hover {
        background: var(--chip);
        color: var(--text)
    }

    .reply-mod-del {
        color: #b91c1c
    }

    .reply-mod-del:hover {
        background: color-mix(in srgb,#fee2e2 60%,transparent);
        color: #991b1b
    }

    .reply-action:active,.reply-mod-del:active {
        background: var(--border)
    }

    .reply-content {
        font-size: 14px;
        line-height: 1.5;
    }

    .badge-icons-sm {
        display: -webkit-inline-flex;
        display: inline-flex;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-align-items: center;
        align-items: center;
        gap: 2px;
        margin-left: 1px;
        flex: 0 1 auto;
        -webkit-flex: 0 1 auto;
        max-width: 60%;
        overflow: hidden;
        vertical-align: middle;
        line-height: 1;
        min-width: 0
    }

    .badge-icons-sm .badge-icon img {
        max-height: 12px;
        max-width: 22px;
        display: block
    }

    .badge-icons {
        display: -webkit-inline-flex;
        display: inline-flex;
        -webkit-align-items: center;
        align-items: center;
        gap: 2px;
        margin-left: 1px;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
        flex: 0 1 auto;
        -webkit-flex: 0 1 auto;
        max-width: 60%;
        overflow: hidden;
        vertical-align: middle;
        line-height: 1;
        min-width: 0
    }

    .badge-icons .badge-icon img {
        max-height: 12px;
        max-width: 22px
    }

    .reply-accepted-badge {
        -webkit-align-self: center;
        align-self: center;
        white-space: nowrap;
        flex: 0 0 auto;
        -webkit-flex: 0 0 auto
    }
}

.btn-message {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.msg-tabs {
    display: flex;
    gap: 10px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line)
}

.msg-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--chip);
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 600;
    transition: background .15s,color .15s
}

.msg-tab.on {
    background: var(--accent);
    color: var(--accent-ink)
}

.msg-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #e11d48;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    margin-left: 2px
}

.msg-tabs-head {
    display: none;
    gap: 4px;
    padding: 4px;
    border: 0;
    border-radius: 999px;
    background: var(--chip)
}

.msg-tabs-head .msg-tab {
    padding: 0 22px;
    height: 38px;
    border-radius: 999px;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    gap: 6px
}

.msg-tabs-head .msg-tab.on {
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 700
}

.msg-tabs-head .msg-badge {
    min-width: 20px;
    height: 20px;
    font-size: 12px
}

.msg-tabs-mobile {
    display: flex
}

@media (max-width: 767px) {
    .uc-panel-head:has(+ .msg-tabs-mobile) {
        flex-direction:column;
        align-items: flex-start;
        gap: 8px
    }

    .msg-tabs-mobile {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 6px;
        margin: 0;
        padding: 0 14px 14px;
        border-bottom: 1px solid var(--line);
        box-sizing: border-box;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none
    }

    .msg-tabs-mobile::-webkit-scrollbar {
        display: none
    }

    .msg-tabs-mobile .msg-tab {
        flex: 1 1 0;
        min-width: 0;
        justify-content: center;
        height: 34px;
        padding: 0 6px;
        font-size: 12px;
        font-weight: 650;
        gap: 3px;
        white-space: nowrap;
        overflow: hidden;
        box-sizing: border-box;
        line-height: 1
    }

    .msg-tabs-mobile .msg-tab i {
        font-size: 14px;
        flex: 0 0 auto
    }

    .msg-tabs-mobile .msg-badge {
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        font-size: 10px;
        margin-left: 0
    }
}

.msg-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px 22px
}

.msg-conv-list {
    display: flex;
    flex-direction: column;
    padding: 8px 10px 16px
}

.msg-conv {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: background .15s
}

.msg-conv:hover {
    background: var(--chip)
}

.msg-conv.has-new {
    background: rgba(59,130,246,.06)
}

.msg-conv.has-new:hover {
    background: rgba(59,130,246,.1)
}

.msg-conv-avatar-wrap {
    position: relative;
    flex: 0 0 auto;
    line-height: 0
}

.msg-conv-avatar .uc-avatar-img,.msg-conv .uc-avatar.msg-conv-avatar .uc-avatar-img {
    width: 48px;
    height: 48px;
    border-width: 2px
}

.msg-conv-avatar .uc-avatar-badge,.msg-conv .uc-avatar.msg-conv-avatar .uc-avatar-badge {
    width: 18px;
    height: 18px;
    font-size: 13px;
    right: -3px;
    bottom: -3px
}

.msg-conv-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    z-index: 2;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #e11d48;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    font-style: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px var(--card,#fff)
}

.msg-conv-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.msg-conv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px
}

.msg-conv-name {
    font-size: 15px;
    font-weight: 550;
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.msg-conv.has-new .msg-conv-name {
    font-weight: 650
}

.msg-conv-time {
    flex: 0 0 auto;
    font-size: 12px;
    color: var(--muted)
}

.msg-conv-sub {
    align-items: center
}

.msg-conv-preview {
    min-width: 0;
    flex: 1;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.msg-conv.has-new .msg-conv-preview {
    color: var(--text-soft);
    font-weight: 600
}

.msg-conv-preview em {
    font-style: normal;
    color: var(--muted);
    font-weight: 600;
    margin-right: 2px
}

.msg-conv-new {
    flex: 0 0 auto;
    height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    background: #e11d48;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 20px
}

.msg-conv .msg-read-state {
    flex: 0 0 auto;
    margin: 0
}

@media (min-width: 768px) {
    .msg-tabs-head {
        display:flex
    }

    .msg-tabs-mobile {
        display: none
    }
}

.msg-item {
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    transition: background .15s,border-color .15s,box-shadow .15s
}

.msg-item:hover {
    border-color: var(--stroke-strong);
    box-shadow: var(--card-shadow)
}

.msg-item.unread {
    background: rgba(59,130,246,.06);
    border-color: rgba(59,130,246,.2)
}

.msg-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px
}

.msg-from {
    font-weight: 600;
    color: var(--text-soft)
}

.msg-title {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 8px;
    line-height: 1.4
}

.msg-content {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.6;
    word-break: break-word
}

.msg-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px
}

.msg-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 8px;
    border: 0;
    background: var(--accent-soft);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s,color .15s,transform .1s
}

.msg-btn:hover {
    background: var(--accent);
    color: var(--accent-ink)
}

.msg-btn:active {
    transform: scale(.97)
}

.msg-btn.reply {
    background: var(--accent);
    color: var(--accent-ink)
}

.msg-btn.reply:hover {
    background: var(--accent-deep)
}

.msg-btn.mark-read:hover {
    background: var(--accent);
    color: var(--accent-ink)
}

.msg-btn.delete {
    background: #fee2e2;
    color: #dc2626
}

.msg-btn.delete:hover {
    background: #fecaca;
    color: #b91c1c
}

.msg-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--muted)
}

.msg-empty i {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: .6
}

.uc-panel:has(.msg-dialog) {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: visible
}

.msg-dialog {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 22px;
    min-height: 260px;
    overflow: visible;
    min-width: 0
}

.msg-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    width: 100%;
    overflow: visible;
    min-width: 0
}

.msg-row.me {
    flex-direction: row-reverse
}

.msg-row > .uc-avatar-link,.msg-row > .uc-avatar,.msg-avatar {
    flex: 0 0 auto
}

.msg-row .msg-avatar .uc-avatar-img,.msg-row .uc-avatar.msg-avatar .uc-avatar-img {
    width: 38px;
    height: 38px;
    border-width: 2px
}

.msg-row .msg-avatar .uc-avatar-badge,.msg-row .uc-avatar.msg-avatar .uc-avatar-badge {
    width: 16px;
    height: 16px;
    font-size: 12px;
    right: -3px;
    bottom: -3px
}

.msg-col {
    display: flex;
    flex-direction: column;
    max-width: min(560px,calc(100% - 52px));
    min-width: 0;
    flex: 0 1 auto
}

.msg-row.me .msg-col {
    align-items: flex-end
}

.msg-row:not(.me) .msg-col {
    align-items: flex-start
}

.msg-bubble-wrap {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    max-width: 100%;
    min-width: 0
}

.msg-row:not(.me) .msg-bubble-wrap {
    flex-direction: row-reverse
}

.msg-bubble {
    flex: 0 1 auto;
    width: fit-content;
    max-width: 100%;
    min-width: 0;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
    word-break: break-word;
    overflow-wrap: anywhere;
    box-sizing: border-box
}

.msg-row:not(.me) .msg-bubble {
    background: var(--chip);
    color: var(--text);
    border-top-left-radius: 4px
}

.msg-row.me .msg-bubble {
    background: var(--accent);
    color: var(--accent-ink);
    border-top-right-radius: 4px
}

.msg-bubble-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    padding: 0 2px;
    font-size: 11px;
    color: var(--muted);
    line-height: 1.2;
    max-width: 100%
}

.msg-row.me .msg-bubble-meta {
    justify-content: flex-end
}

.msg-row:not(.me) .msg-bubble-meta {
    justify-content: flex-start
}

.msg-bubble-time {
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap
}

.msg-read-state {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    font-weight: 600;
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 999px;
    background: var(--chip);
    line-height: 1.4
}

.msg-read-state.read {
    color: #16a34a;
    background: #dcfce7
}

.msg-read-state:not(.read) {
    color: #d97706;
    background: #fef3c7
}

.msg-quote-btn {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 1px 6px;
    border: 0;
    border-radius: 999px;
    background: var(--chip);
    color: var(--muted);
    font: inherit;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s,background .15s,color .15s
}

.msg-row:hover .msg-quote-btn,.msg-quote-btn:focus {
    opacity: 1;
    pointer-events: auto
}

.msg-quote-btn:hover,.msg-quote-btn:focus {
    background: var(--accent);
    color: var(--accent-ink)
}

.msg-quote {
    display: block;
    margin: 0 0 8px;
    padding: 8px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    max-width: 100%;
    background: rgba(0,0,0,.08);
    border-left: 3px solid rgba(255,255,255,.5)
}

.msg-row:not(.me) .msg-quote {
    background: rgba(0,0,0,.05);
    border-left-color: var(--accent)
}

.msg-quote-name {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
    opacity: .9
}

.msg-quote-text {
    display: block;
    font-size: 12px;
    line-height: 1.4;
    opacity: .8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.msg-quote-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 8px 8px 8px 12px;
    border-radius: 12px;
    background: var(--chip);
    border-left: 3px solid var(--accent)
}

.msg-quote-bar[hidden] {
    display: none!important
}

.msg-quote-bar-body {
    flex: 1;
    min-width: 0
}

.msg-quote-bar-body strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px
}

.msg-quote-bar-body span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.msg-quote-clear {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.msg-quote-clear:hover {
    background: var(--surface);
    color: var(--text)
}

.msg-reply-form {
    position: relative;
    z-index: 2;
    padding: 16px 22px;
    border-top: 1px solid var(--line);
    overflow: visible
}

.msg-reply-text {
    width: 100%;
    min-height: 90px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.6;
    resize: vertical;
    outline: none;
    transition: border-color .15s,box-shadow .15s
}

.msg-reply-text:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59,130,246,.12)
}

.msg-reply-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 12px;
    gap: 8px
}

.msg-emoji-wrap {
    position: relative
}

.msg-emoji-toggle {
    width: 40px;
    height: 40px;
    border: 0;
    background: var(--chip);
    color: var(--muted);
    font-size: 22px;
    cursor: pointer;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s,color .15s
}

.msg-emoji-toggle:hover {
    background: var(--accent);
    color: var(--accent-ink)
}

.msg-emoji-panel {
    position: absolute;
    bottom: 48px;
    right: 0;
    left: auto;
    display: none;
    grid-template-columns: repeat(8,1fr);
    gap: 2px;
    padding: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    width: 288px;
    z-index: 20
}

.msg-emoji-panel.show {
    display: grid
}

.msg-emoji {
    font-size: 20px;
    line-height: 1;
    padding: 5px;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    transition: background .15s
}

.msg-emoji:hover {
    background: var(--chip)
}

.msg-send-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 18px;
    cursor: pointer;
    transition: background .15s,transform .1s;
    box-shadow: 0 2px 6px rgba(59,130,246,.25)
}

.msg-send-btn:hover {
    background: var(--accent-deep)
}

.msg-send-btn:active {
    transform: scale(.95)
}

.msg-send-btn:disabled {
    opacity: .6;
    cursor: not-allowed
}

.uc-modal-has-content .uc-modal-panel {
    max-width: 520px
}

.uc-modal-body:empty {
    display: none
}

.uc-pm-panel {
    text-align: left;
    width: min(440px,100%);
    box-sizing: border-box;
    padding: 20px 20px 16px
}

.uc-pm-panel .uc-modal-x {
    top: 14px;
    right: 14px
}

.uc-pm-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 32px 16px 0
}

.uc-pm-ico {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 20px
}

.uc-pm-head-text {
    min-width: 0
}

.uc-pm-title {
    margin: 0;
    font-size: 17px;
    font-weight: 750;
    line-height: 1.25;
    color: var(--text)
}

.uc-pm-to {
    margin: 4px 0 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.3
}

.uc-pm-to b {
    color: var(--text);
    font-weight: 700
}

.uc-pm-box {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface)
}

.uc-pm-box:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft)
}

.uc-pm-text {
    display: block;
    width: 100%;
    box-sizing: border-box;
    min-height: 128px;
    max-height: 280px;
    margin: 0;
    padding: 14px 14px 6px;
    border: 0;
    background: transparent;
    resize: vertical;
    outline: 0;
    font: inherit;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text)
}

.uc-pm-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px 10px
}

.uc-pm-emoji-btn {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 10px;
    flex: 0 0 auto;
    background: var(--chip);
    color: var(--muted);
    font-size: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s,color .15s
}

.uc-pm-emoji-btn:hover,.uc-pm-emoji-btn.on {
    background: var(--accent);
    color: var(--accent-ink)
}

.uc-pm-emoji-panel {
    position: absolute;
    left: 10px;
    bottom: 52px;
    z-index: 4;
    display: none;
    grid-template-columns: repeat(8,1fr);
    gap: 2px;
    width: min(288px,calc(100% - 20px));
    padding: 8px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,.14)
}

.uc-pm-emoji-panel.show {
    display: grid
}

.uc-pm-emoji {
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center
}

.uc-pm-emoji:hover {
    background: var(--chip)
}

.uc-pm-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto
}

.uc-pm-count {
    font-size: 12px;
    color: var(--muted);
    font-variant-numeric: tabular-nums
}

.uc-pm-count.over {
    color: #e11d48;
    font-weight: 700
}

.uc-pm-send {
    height: 36px;
    padding: 0 16px;
    border: 0;
    border-radius: 12px;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(59,130,246,.22);
    transition: background .15s,transform .1s
}

.uc-pm-send:hover {
    background: var(--accent-deep)
}

.uc-pm-send:active {
    transform: scale(.97)
}

.uc-pm-send:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none
}

.uc-pm-tip {
    margin: 10px 2px 0;
    font-size: 12px;
    color: var(--muted)
}

.site-tabbar {
    display: none
}

@media (max-width: 960px) {
    :root {
        --site-tabbar-h:66px;
        --site-tabbar-gap: 0px
    }

    body {
        padding-bottom: calc(var(--site-tabbar-h) + env(safe-area-inset-bottom,0px));
        transition: padding-bottom .28s ease
    }

    body.tabbar-hidden {
        padding-bottom: env(safe-area-inset-bottom,0px)
    }

    .site-tabbar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        transform: translateY(0);
        z-index: 60;
        width: 100%;
        max-width: none;
        height: calc(var(--site-tabbar-h) + env(safe-area-inset-bottom,0px));
        padding: 0 0 env(safe-area-inset-bottom,0px);
        margin: 0;
        box-sizing: border-box;
        align-items: stretch;
        justify-content: space-between;
        gap: 0;
        border-radius: 0;
        background: rgba(255,255,255,.92);
        border: 0;
        box-shadow: 0 -4px 18px rgba(15,23,42,.06);
        backdrop-filter: blur(16px) saturate(1.2);
        -webkit-backdrop-filter: blur(16px) saturate(1.2);
        transition: transform .28s ease,opacity .28s ease,visibility .28s ease
    }

    .site-tabbar.is-hidden {
        transform: translateY(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none
    }

    body.mobile-nav-open .site-tabbar,body.uc-ui-lock .site-tabbar {
        opacity: 0;
        visibility: hidden;
        pointer-events: none
    }

    .site-tabbar-item {
        appearance: none;
        -webkit-appearance: none;
        position: relative;
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        margin: 0;
        padding: 0;
        border: 0;
        background: transparent;
        color: #9ca3af;
        text-decoration: none;
        cursor: pointer;
        font: inherit;
        border-radius: 0;
        transition: color .15s ease,background .15s ease
    }

    .site-tabbar-item i {
        font-size: 22px;
        line-height: 1
    }

    .site-tabbar-item span {
        font-size: 10px;
        font-weight: 650;
        line-height: 1.1;
        letter-spacing: .02em
    }

    .site-tabbar-item.on {
        color: var(--accent)
    }

    .site-tabbar-item:active {
        background: rgba(0,0,0,.04)
    }

    .site-tabbar-badge {
        position: absolute;
        top: 2px;
        right: calc(50% - 18px);
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        border-radius: 999px;
        background: #e11d48;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        font-style: normal;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1
    }
}
