/* ============================================================
   common.css - 公共基础样式（合并 animate, header, footer, login, page）
   ============================================================ */

/* ---------- 全局重置 & 基础 ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
}

html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

body {
    font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #f7f7f7;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

ul,
li {
    list-style: none;
}

img {
    /* 占位 */
}

button {
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

:root {
    --color-primary: #0eb6ff;
    --color-primary-hover: #0ca3e8;
    --color-primary-light: rgb(236, 245, 255);
    --color-export-bg: #f1f5f9;
    --color-export-bg-hover: #e2e8f0;
    --color-export-text: #475569;
    --color-export-border: #e2e8f0;
    --color-accent: #ff4d4d;
    --color-accent-hover: #ff3333;
    --gradient-btn: linear-gradient(180deg, #ff4d4d, #ff9052);
    --gradient-btn-hover: linear-gradient(180deg, #ff3333, #ff7a3d);
    --text-dark: #333;
    --text-gray: #737373;
    --text-light: #b3b3b3;
    --border-light: #ededed;
    --bg-light: #f7f7f7;
    --white: #fff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 0 1px rgba(14, 182, 255, 0.2);
}

@font-face {
    font-family: "iconfont";
    src: url("../../../fonts/iconfont.woff") format("woff"),
    url("../../../fonts/iconfont.ttf") format("truetype"),
    url("../../../fonts/iconfont.svg#iconfont") format("svg"),
    url("../../../fonts/iconfont.eot");
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-youjiantou:before {
    content: "\e60e";
}

.icon-gonggao:before {
    content: "\e689";
}

/* ---------- 工具类 ---------- */
.flex {
    display: flex;
}
.flex-jc {
    justify-content: center;
}
.flex-ac {
    align-items: center;
}
.flex-sb {
    justify-content: space-between;
}
.flex-wrap {
    flex-wrap: wrap;
}
.u-flex {
    display: flex;
}
.u-flex-wrap {
    flex-wrap: wrap;
}
.u-items-center {
    align-items: center;
}
.u-justify-between {
    justify-content: space-between;
}
.u-justify-center {
    justify-content: center;
}
.u-flex-one {
    flex: 1;
}
.u-mt16 {
    margin-top: 16px;
}
.u-mt24 {
    margin-top: 24px;
}
.u-mt30 {
    margin-top: 30px;
}
.u-mt40 {
    margin-top: 40px;
}
.u-mb20 {
    margin-bottom: 20px;
}
.u-pd24 {
    padding: 24px;
}
.u-bg-white {
    background-color: var(--white);
}
.u-text-center {
    text-align: center;
}
.u-c-primary {
    color: var(--color-primary);
}
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}
.pull-left {
    float: left;
}
.pull-right {
    float: right;
}
.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mt-10 {
    margin-top: 10px;
}
.mt10 {
    margin-top: 10px;
}
.mt20 {
    margin-top: 20px;
}
.mt-20 {
    margin-top: 20px;
}
.header.header--user + .fixed-container.flex {
    margin-top: 20px;
}
.mt16 {
    margin-top: 16px;
}
.ml8 {
    margin-left: 8px;
}
.mt30 {
    margin-top: 30px;
}
.mt40 {
    margin-top: 40px;
}
.mt60 {
    margin-top: 60px;
}
.mb20 {
    margin-bottom: 20px;
}
.alcenter {
    align-items: center;
}
.fw600 {
    font-weight: 600;
}
.text-main {
    color: var(--color-primary);
}
.text-danger {
    color: #ff7544;
}
.text-muted {
    color: #737373;
}
.mb40 {
    margin-bottom: 40px;
}
.mr10 {
    margin-right: 10px;
}
.mr16 {
    margin-right: 16px;
}
.p24 {
    padding: 24px;
}
.rounded {
    border-radius: 8px;
}
.rounded-full {
    border-radius: 100px;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.text-gray {
    color: #64748b;
}
.text-primary {
    color: var(--color-primary);
}
.bg-white {
    background: #fff;
}
.c-white {
    color: #fff;
}
.c-primary {
    color: #0eb6ff;
}
.c-gray {
    color: #737373;
}
.c-light-gray {
    color: #b3b3b3;
}

/* ---------- 布局容器 ---------- */
.l-container {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}
.container {
    width: 1440px;
    margin: 0 auto;
}
.containerl {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}
.fixed-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ---------- 通用头部 (common_header) ---------- */
.header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    margin: 0 !important;
    border-top: 0;
    border-bottom: 1px solid #edf2f7;
    z-index: 1200;
    background: #ffffff;
    box-shadow: none;
    min-height: 94px;
}
.header:hover {
    box-shadow: none;
}
.header .header__nav .header__nav-link {
    display: flex;
    width: 130px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 10px 10px;
    border-radius: 36px;
    transition: .3s;
    font-family: "Source Han Sans CN" !important;
    font-size: 18px !important;
    line-height: 27px;
    font-weight: 500 !important;
    color: #333 !important;
    text-decoration: none;
}
.header .header__nav .header__nav-link:hover {
    background: #eaf5ff;
    color: var(--color-primary) !important;
}
.header .header__nav .header__nav-link--active {
    background: var(--color-primary);
    color: #ffffff !important;
    font-weight: 500 !important;
    box-shadow: 0 6px 14px rgba(14, 182, 255, 0.28);
}
.header__nav-icon {
    filter: invert(54%) sepia(92%) saturate(1765%) hue-rotate(165deg) brightness(99%) contrast(102%);
}
.header__nav-link--active .header__nav-icon {
    filter: brightness(0) invert(1);
}
.header.header--card-recycle .header__nav,
.header.header--page .header__nav,
.header.header--user .header__nav {
    margin-left: 0;
    margin-right: auto;
}
.navbar-account-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0 0 18px;
    padding: 0;
}
.navbar-account-nav li {
    list-style: none;
    display: flex;
    justify-content: center;
}
.navbar-account-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 12px;
    background-color: #f8fafc;
    color: #334155;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}
.navbar-account-nav a:hover {
    background-color: #eef9ff;
    color: #0eb6ff;
}

.header__user {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header__user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #0eb6ff;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.header__user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}
.header__user-info a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.header__user-info a:hover {
    color: #d9dde6;
}
.header__user-info .line {
    color: #ffffee;
    user-select: none;
}
.header__user.logged-in {
    position: relative;
}
.navbar-user.dropdown {
    position: relative;
    display: inline-block;
}
.user-info-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.header__user-avatar {
    width: 40px;
    height: 40px;
    background-color: #f0f2f5;
    overflow: hidden;
}
.header__user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.personal-center-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #e2e8f0;
    background-color: transparent;
    border-radius: 0;
    font-size: 16px;
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.personal-center-btn:hover {
    border-color: #ffffff;
    color: #ffffff;
    background-color: rgba(14, 182, 255, 0.05);
}
.dropdown-trigger {
    font-size: 14px;
    color: #94a3b8;
    transition: transform 0.2s;
}
.navbar-user.dropdown:hover .dropdown-trigger {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 260px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1000;
    border: 1px solid #edf2f7;
}
.navbar-user.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    z-index: 1001;
}
.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -9px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
}
.navbar-account {
    padding: 18px 20px;
}
.navbar-account-name {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
    margin-bottom: 14px;
}
.navbar-account-name h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
}
.navbar-account-name h3 a {
    color: #1e293b;
    text-decoration: none;
}
.navbar-account-name .levels {
    font-size: 12px;
    color: #0eb6ff;
    margin: 0;
}
.navbar-account-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0 0 18px;
    padding: 0;
}
.navbar-account-nav li {
    list-style: none;
    display: flex;
    justify-content: center;
}
.navbar-account-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 12px;
    background-color: #f8fafc;
    color: #334155;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}
.navbar-account-nav a:hover {
    background-color: #eef9ff;
    color: #0eb6ff;
}
.navbar-account-set {
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}
.navbar-account-set a {
    flex: 1 1 0;
    float: none;
    text-align: center;
    color: #64748b;
    text-decoration: none;
}
.navbar-account-set a:hover {
    color: #0eb6ff;
}

/* ---------- 用户中心侧边导航 ---------- */
.profile-sidebar {
    min-width: 290px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 32px 0 36px;
    margin-right: 32px;
    flex-shrink: 0;
    height: auto;
    max-height: 110vh;
    /*overflow-y: auto;*/
    scrollbar-width: thin;
}
.profile-sidebar::-webkit-scrollbar {
    width: 4px;
}
.profile-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
.profile-sidebar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
.profile-sidebar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
.profile-avatar {
    text-align: center;
    padding: 0 24px 28px;
    border-bottom: 1px solid #edf2f7;
}
.avatar-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: linear-gradient(145deg, #0eb6ff, #3e8eff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    overflow: hidden;
}
.profile-name {
    font-size: 20px;
    font-weight: 700;
    margin: 8px 0 6px;
}
.profile-id {
    color: #94a3b8;
    font-size: 14px;
}
.profile-menu {
    margin-top: 32px;
    padding: 0 20px;
}
.menu-item {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 500;
    color: #475569;
    transition: all 0.3s;
    margin-bottom: 6px;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
}
.menu-item i {
    margin-right: 16px;
    width: 24px;
    font-size: 20px;
}
.menu-item.active {
    background: linear-gradient(95deg, #eef9ff, #fff);
    color: #0eb6ff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(14, 182, 255, 0.1);
}
.menu-item:hover:not(.active) {
    background: #f8fafc;
    transform: translateX(4px);
}
.menu-divider {
    height: 1px;
    background: #edf2f7;
    margin: 24px 20px;
}
.sidebar-footer {
    padding: 28px 24px 0;
    text-align: center;
    border-top: 1px solid #edf2f7;
    margin-top: 16px;
}
.service-btn {
    background: linear-gradient(135deg, #0eb6ff 0%, #2b68ff 100%);
    color: #fff;
    border: none;
    border-radius: 48px;
    width: 100%;
    padding: 14px 0;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(14, 182, 255, 0.25);
    letter-spacing: 1px;
}
.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(14, 182, 255, 0.35);
    background: linear-gradient(135deg, #2b68ff 0%, #0eb6ff 100%);
}
.hotline {
    margin-top: 28px;
    padding: 16px 12px;
    background: #f8fafc;
    border-radius: 24px;
    transition: all 0.2s;
}
.hotline p:first-child {
    font-size: 13px;
    font-weight: 500;
    color: #5b6e8c;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.hotline .text-primary {
    font-size: 20px;
    font-weight: 700;
    color: #0eb6ff;
    transition: 0.2s;
    cursor: pointer;
}
.hotline .text-primary:hover {
    color: #2b68ff;
    text-decoration: underline;
}

/* ---------- 公共头部收口层 ---------- */
.site-header,
.header {
    width: 100%;
    z-index: 1200;
    font-family: "Source Han Sans CN", "Microsoft YaHei", sans-serif;
}

.site-header {
    position: relative;
    padding: 0;
    /*background: #071220;*/
    box-shadow: none;
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.08);*/
    min-height: 94px;
    display: flex;
    align-items: center;
}

.site-header .containerl,
.header .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    min-height: 94px;
}

.site-header .containerl {
    max-width: 1600px;
    height: 94px;
    min-height: 94px;
}

.site-header .flex-row {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1;
    height: 100%;
}

.site-header .flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    height: 94px;
}

.site-header .header-logo,
.header .header__logo {
    flex: 0 0 auto;
}

.site-header .header-logo img,
.header .header__logo img {
    display: block;
    width: auto;
    height: 60px;
    max-width: 100%;
    object-fit: contain;
}

.site-header .nav-list,
.header .header__nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    min-width: 0;
}

.site-header .nav-list {
    margin-left: 48px;
    height: 100%;
    align-items: center;
}

.header .header__nav {
    margin-left: 0;
    margin-right: auto;
}

.site-header .nav-item,
.header .header__nav li {
    margin: 0;
    list-style: none;
}

.site-header .nav-item a,
.header .header__nav .header__nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 46px;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.site-header .nav-item a {
    min-width: 128px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    /*background: rgba(255, 255, 255, 0.08);*/
    /*border: 1px solid rgba(255, 255, 255, 0.12);*/
}

.site-header .nav-item a:hover,
.site-header .nav-item.active a {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.site-header .nav-item.active a {
    background: var(--color-primary);
    border-color: rgba(14, 182, 255, 0.32);
    box-shadow: 0 10px 22px rgba(14, 182, 255, 0.22);
}

.site-header .nav-item img,
.header .header__nav-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.site-header .header__user,
.header .header__user {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.site-header .header__user {
    height: 100%;
}

.site-header .header__user-avatar,
.header .header__user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f2f5;
    overflow: hidden;
    flex-shrink: 0;
}

.site-header .header__user-avatar img,
.header .header__user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-header .header__user-info,
.header .header__user-auth,
.header .header__user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.site-header .header__user-info a {
    color: #ffffff;
    font-weight: 500;
}

.site-header .header__user-info a:hover {
    color: rgba(255, 255, 255, 0.82);
}

.site-header .header__user-info .line {
    color: rgba(255, 255, 255, 0.74);
}

.header .header__user-auth a,
.header .header__user-info a {
    color: #334155;
    font-weight: 500;
}

.header .header__user-auth a:hover,
.header .header__user-info a:hover {
    color: var(--color-primary);
}

.header .header__user-auth span,
.header .header__user-info .line {
    color: #94a3b8;
    user-select: none;
}

.site-header .personal-center-btn,
.header .personal-center-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 12px;
    white-space: nowrap;
}

.site-header .personal-center-btn {
    border: 1px solid rgba(255, 255, 255, 0.72);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.site-header .personal-center-btn:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.header .personal-center-btn {
    border: 1px solid #d7e2ee;
    color: #334155;
    background: #ffffff;
}

.header .personal-center-btn:hover {
    border-color: rgba(14, 182, 255, 0.28);
    color: var(--color-primary);
    background: #eef9ff;
}

.site-header .dropdown-trigger,
.header .dropdown-trigger {
    font-size: 14px;
    color: #94a3b8;
    transition: transform 0.2s ease;
}

.navbar-user.dropdown:hover .dropdown-trigger {
    transform: rotate(180deg);
}

.site-header .dropdown-menu::before,
.site-header .dropdown-menu::after,
.header .dropdown-menu::before,
.header .dropdown-menu::after {
    right: 20px;
    left: auto;
}

.header.home-header--mobile {
    display: none !important;
}

@media screen and (max-width: 1200px) {
    .site-header .nav-list {
        margin-left: 24px;
        gap: 10px;
    }

    .site-header .nav-item a,
    .header .header__nav .header__nav-link {
        min-width: 0;
        padding: 8px 15px;
        font-size: 16px !important;
    }
}

@media screen and (max-width: 992px) {
    .site-header .flex-between,
    .header__inner {
        flex-wrap: wrap;
    }

    .site-header .nav-list {
        margin-left: 0;
        width: 100%;
        margin-top: 10px;
    }
}

@media screen and (max-width: 768px) {
    .site-header.home-header--desktop {
        display: none !important;
    }

    .header.home-header--mobile {
        display: flex !important;
    }

    .header.header--card-recycle .header__inner {
        display: grid;
        grid-template-columns: 1fr auto;
        column-gap: 8px;
    }
    .header.header--card-recycle .header__logo,
    .header.header--card-recycle .header__user {
        width: auto;
        min-width: 0;
    }
    .header.header--card-recycle .header__nav {
        justify-content: stretch;
    }
    .site-header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        padding: 12px 0 14px;
        background: #ffffff;
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
        min-height: 0;
    }

    .site-header .containerl {
        height: auto;
        min-height: 0;
        padding-left: 14px;
        padding-right: 14px;
    }

    .site-header .flex-between {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        height: auto;
    }

    .site-header .flex-row {
        display: contents;
    }

    .site-header .header-logo {
        order: 1;
        flex: 0 0 auto;
        width: 120px;
        max-width: none;
    }

    .site-header .header-logo img {
        height: 40px;
        max-height: 120px;
        width: auto;
    }

    .site-header .header__user {
        order: 2;
        margin-top: 0;
        margin-left: 10px;
        align-self: flex-start;
        justify-content: flex-end;
        gap: 8px;
    }

    .site-header .header__user-avatar {
        width: 30px;
        height: 30px;
    }

    .site-header .header__user-info {
        font-size: 13px;
        gap: 6px;
    }

    .site-header .header__user-info a,
    .site-header .header__user-info .line {
        color: #334155;
    }

    .site-header .nav-list {
        order: 3;
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        margin: 10px auto 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 8px;
        row-gap: 8px;
        padding: 8px 10px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    }

    .site-header .nav-item a {
        width: 100%;
        min-height: 34px;
        padding: 6px 10px;
        border-radius: 10px;
        justify-content: center;
        text-align: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #334155;
        background: #f8fbff;
        border: 1px solid #d8e6f3;
    }

    .site-header .nav-item a:hover {
        background: #eef7ff;
        border-color: #bfdcf6;
        color: var(--color-primary);
        transform: none;
    }

    .site-header .nav-item.active a {
        background: var(--color-primary);
        border-color: var(--color-primary);
        box-shadow: 0 8px 18px rgba(14, 182, 255, 0.2);
        color: #ffffff;
    }

    .site-header .nav-item img {
        width: 13px;
        height: 13px;
        margin-right: 0;
    }

    .site-header .nav-item a span {
        display: inline-block;
        white-space: nowrap;
        text-align: center;
    }

    .site-header .personal-center-btn {
        min-height: 32px;
        padding: 0 16px;
        border-radius: 0;
        border-color: #d7e2ee;
        color: #334155;
        font-size: 13px;
        line-height: 1;
        background-color: #ffffff;
    }

    .site-header .personal-center-btn:hover {
        border-color: rgba(14, 182, 255, 0.28);
        color: var(--color-primary);
        background-color: #eef9ff;
    }

    .site-header .dropdown-trigger {
        display: none;
    }

    .site-header .dropdown-menu {
        min-width: 220px;
        right: 0;
        left: auto;
    }

    .site-header .dropdown-menu::before,
    .site-header .dropdown-menu::after {
        right: 20px;
        left: auto;
    }
}

@media screen and (max-width: 576px) {
    .site-header .containerl {
        padding-left: 10px;
        padding-right: 10px;
    }

    .site-header .header-logo {
        flex-basis: 94px;
        max-width: 94px;
    }

    .site-header .header-logo img {
        height: 38px;
        max-height: 38px;
    }

    .site-header .header__user {
        margin-left: 8px;
    }

    .site-header .nav-list {
        margin: 8px auto 0;
        column-gap: 6px;
        row-gap: 6px;
        padding: 6px 8px;
    }

    .site-header .nav-item a {
        min-height: 28px;
        padding: 5px 6px;
        font-size: 12px;
        gap: 4px;
    }

    .site-header .nav-item img {
        width: 12px;
        height: 12px;
    }
}

/* ---------- 通用底部 (common_footer) ---------- */
.site-footer {
    background-color: #000;
    padding: 44px 0 40px;
    margin-top: 20px;
}
.site-footer .container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    text-align: left;
}
.site-footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    text-align: left;
}
.site-footer .footer-contact {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
}
.site-footer .footer-contact h2 {
    color: #fff;
    font-size: 40px;
    margin: 0;
}
.site-footer .footer-contact p {
    color: #b3b3b3;
    margin-top: 10px;
}
.site-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
    margin-bottom: 0;
}
.site-footer .footer-links a {
    color: #737373;
    margin: 0;
    padding-right: 14px;
    border-right: 1px solid #525354;
}
.site-footer .footer-links a:last-child {
    border-right: none;
    padding-right: 0;
}
.site-footer .footer-qr {
    flex: 0 0 auto;
    text-align: center;
}
.site-footer .footer-qr img {
    width: 108px;
    height: 108px;
}
.site-footer .footer-qr p {
    color: #b3b3b3;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}
.site-footer .footer-bottom {
    border-top: 1px solid #525354;
    padding-top: 12px;
    margin-top: 40px;
    font-size: 14px;
    color: #b3b3b3;
    text-align: left;
}
.site-footer .footer-bottom a {
    color: #b3b3b3;
    margin-right: 10px;
}
.site-footer .footer-bottom > div {
    margin-top: 10px;
}

/* ---------- 动画库 (animate) ---------- */
.animated {
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}
.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes bounce {
    from,
    20%,
    53%,
    80%,
    100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
@keyframes bounce {
    from,
    20%,
    53%,
    80%,
    100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

@-webkit-keyframes flash {
    from,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}
@keyframes flash {
    from,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}
.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {
    from,
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}
@keyframes shake {
    from,
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}
.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}
@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}
.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

/* ---------- 登录页 (login) ---------- */
.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.auth-panel {
    display: flex;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}
.auth-panel:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.auth-panel--with-banner {
    max-width: 960px;
    width: 100%;
}
.auth-panel--with-banner .auth-panel__form {
    flex: 1 1 50%;
    padding: 48px 44px;
}
.auth-panel--with-banner .auth-panel__banner {
    flex: 1 1 50%;
    position: relative;
    background: #eef2f6;
}
.auth-panel--no-banner {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
}
.auth-panel--no-banner .auth-panel__form {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    padding: 44px 36px;
}
.auth-panel__title {
    font-size: 30px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
}
.auth-panel__subtitle {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 28px;
    border-left: 3px solid var(--color-primary);
    padding-left: 16px;
}
.auth-tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    border-bottom: 1px solid #e9edf2;
}
.auth-tabs__btn {
    border: none;
    background: transparent;
    padding: 8px 0 10px;
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: 0.2s;
}
.auth-tabs__btn:hover {
    color: #1e293b;
}
.auth-tabs__btn--active {
    color: #0f172a;
    font-weight: 600;
    border-bottom-color: var(--color-primary);
}
.auth-form {
    transition: opacity 0.2s;
}
.auth-form--hidden {
    display: none;
}
.auth-form__group {
    margin-bottom: 18px;
}
.auth-form__group--with-btn {
    display: flex;
    gap: 12px;
    align-items: stretch;
}
.auth-form__group--with-btn .auth-form__label,
.auth-form__group--with-btn .auth-form__label--flex {
    flex: 1;
    min-width: 0;
}
.auth-form__label {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0 14px;
    background: #f8fafc;
    height: 48px;
    transition: 0.2s;
}
.auth-form__label:focus-within {
    border-color: var(--color-primary);
    background: white;
}
.auth-form__icon {
    font-size: 16px;
    color: #94a3b8;
    margin-right: 10px;
    width: 18px;
    text-align: center;
}
.auth-form__input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0;
    font-size: 15px;
    color: #1e293b;
    outline: none;
    height: 100%;
}
.auth-form__input::placeholder {
    color: #b3c0cd;
}
.auth-form__code-btn {
    flex-shrink: 0;
    min-width: 120px;
    background: #eef2f6;
    border: 1px solid #d1d9e6;
    border-radius: 8px;
    padding: 0 16px;
    height: 48px;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s;
}
.auth-form__code-btn:hover {
    background: #e2e8f0;
}
.auth-form__code-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.auth-form__options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 14px 0 22px;
    font-size: 14px;
}
.auth-form__remember {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
}
.auth-form__remember input[type="checkbox"] {
    accent-color: var(--color-primary);
    width: 16px;
    height: 16px;
}
.auth-form__link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}
.auth-form__link:hover {
    text-decoration: underline;
}
.auth-form__submit {
    width: 100%;
    background: var(--color-primary);
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}
.auth-form__submit:hover {
    background: var(--color-primary);
}
.auth-third {
    margin: 28px 0 14px;
    text-align: center;
}
.auth-third__title {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 18px;
    position: relative;
}
.auth-third__title::before,
.auth-third__title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 25%;
    height: 1px;
    background: #e2e8f0;
}
.auth-third__title::before {
    left: 0;
}
.auth-third__title::after {
    right: 0;
}
.auth-third__list {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.auth-third__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #475569;
    padding: 6px 12px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    min-width: 70px;
    transition: 0.2s;
}
.auth-third__item:hover {
    background: #f1f5f9;
}
.auth-third__icon {
    font-size: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    margin-bottom: 5px;
}
.auth-third__item--wechat .auth-third__icon {
    color: #2bae1a;
}
.auth-third__item--alipay .auth-third__icon {
    color: #1677ff;
}
.auth-third__name {
    font-size: 13px;
    font-weight: 500;
}
.auth-extra {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e9edf2;
}
.auth-extra__link {
    color: #64748b;
    font-size: 14px;
    text-decoration: none;
}
.auth-extra__link:hover {
    color: var(--color-primary-hover);
}
.auth-panel__banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.auth-panel__banner-link {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
}
.auth-third__mobile-reg {
    display: none;
}
.auth-form__remember--wrap {
    flex-wrap: wrap;
    gap: 4px 6px;
    line-height: 1.5;
}
.auth-form__label--password {
    position: relative;
}
.auth-form__label--password .auth-form__input {
    padding-right: 42px;
}
.auth-form__toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}
.auth-form__pwd-toggle {
    border: none;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}
.auth-form__pwd-toggle:hover {
    color: var(--color-primary-hover);
}
.auth-policy-link {
    color: var(--color-primary);
}

/* ---------- 通用布局 (page) ---------- */
.breadcrumb {
    padding-top: 5px;
    color: var(--text-light);
}
.breadcrumb a {
    color: var(--text-light);
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: var(--color-primary);
}
.breadcrumb span {
    margin: 0 6px;
}

.side-nav {
    background: var(--white);
    border-radius: 20px;
    padding: 24px 0;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}
.side-nav__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0 24px 16px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 8px;
}
.side-nav__list {
    padding: 8px 0;
}
.side-nav__item {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    font-size: 16px;
    color: var(--text-gray);
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    position: relative;
}
.side-nav__item:hover {
    background: #f8fafd;
    color: var(--color-primary);
    padding-left: 28px;
}
.side-nav__item--active {
    background: #f0f7ff;
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    font-weight: 500;
    padding-left: 28px;
}
.side-nav__item--active::after {
    content: "";
    position: absolute;
    right: 24px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-primary);
}

.main-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
}
.main-grid__left {
    flex: 1 1 0;
    min-width: 300px;
}
.main-grid__right {
    width: 280px;
    flex-shrink: 0;
}

.notice-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.notice-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}
.notice-card__date {
    display: inline-block;
    background: #f0f7ff;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
    padding: 4px 16px;
    border-radius: 40px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.notice-card__date strong {
    font-size: 18px;
    margin-right: 4px;
}
.notice-card__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}
.notice-card__content {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ---------- 响应式基础 ---------- */
@media screen and (max-width: 1440px) {
    body {
        min-width: auto;
        overflow-x: hidden;
    }
    .container,
    .containerl {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media screen and (max-width: 1024px) {
    .main-grid {
        flex-direction: column;
    }
    .main-grid__right {
        width: 100%;
    }
    .header__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .header__nav {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
    .header__user {
        margin-left: auto;
    }
}
@media screen and (max-width: 768px) {
    .header {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        margin: 0 !important;
        border: 0 !important;
        padding: 10px;
        border-bottom: 1px solid #edf2f7 !important;
        border-radius: 0 !important;
        background: #ffffff !important;
        box-shadow: none !important;
        height: auto !important;
        overflow: visible !important;
    }
    .header .header__inner {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas: "logo user" "nav nav";
        gap: 10px 8px;
        align-items: center;
        padding: 12px 12px 10px;
        max-width: none !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: #ffffff !important;
        box-shadow: none !important;
    }
    .header .l-container {
        max-width: none !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .header .header__logo {
        grid-area: logo;
        width: auto;
        max-width: none;
        height: 60px;
    }
    .header .header__logo img {
        height: 38px !important;
        max-height: 38px !important;
        max-width: 100%;
        width: auto;
        display: block;
    }
    .header .header__user {
        grid-area: user;
        margin-left: 0 !important;
        justify-content: flex-end;
        align-items: center;
    }
    .header .header__user-avatar {
        width: 26px;
        height: 26px;
    }
    .header .header__user-auth {
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .header .header__user-auth a {
        font-size: 15px;
        color: #3f4752;
    }
    .header .header__user-auth span {
        margin: 0 2px;
        color: #64748b;
    }
    .header .header__nav {
        grid-area: nav;
        margin: 0 !important;
        width: 100% !important;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 8px;
        justify-content: stretch !important;
    }
    .header .header__nav li {
        margin: 0;
    }
    .header .header__nav .header__nav-link {
        width: 100%;
        min-height: 34px;
        padding: 6px 8px;
        border-radius: 17px;
        font-size: 14px !important;
        line-height: 1.2;
        justify-content: center;
        gap: 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .header .header__nav .header__nav-link .header__nav-icon {
        width: 15px;
        height: 15px;
    }
    .header .navbar-user .user-info-wrapper {
        gap: 6px;
    }
    .header .navbar-user .personal-center-btn {
        height: 30px;
        line-height: 30px;
        padding: 0 10px;
        font-size: 13px;
    }
    .header .navbar-account-nav ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .header .navbar-account-nav a {
        justify-content: center;
        padding: 8px 6px;
        font-size: 12px;
        width: 100%;
        min-width: 0;
        white-space: nowrap !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .l-container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .site-footer .footer-top {
        flex-wrap: wrap;
        gap: 24px;
    }
    .site-footer .footer-contact h2 {
        font-size: 30px;
    }
    .site-footer .footer-qr {
        margin-top: 20px;
    }
}
@media screen and (max-width: 576px) {
    .site-footer .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .site-footer .footer-links {
        gap: 10px;
    }
    .site-footer .footer-bottom a {
        display: inline-block;
        margin-bottom: 5px;
    }
    .auth-main {
        padding: 24px 12px;
    }
    .auth-panel--no-banner {
        max-width: 100%;
    }
    .auth-panel--with-banner {
        flex-direction: column;
        max-width: 400px;
    }
    .auth-panel--with-banner .auth-panel__banner {
        display: none;
    }
    .auth-panel--with-banner .auth-panel__form,
    .auth-panel--no-banner .auth-panel__form {
        padding: 32px 24px;
    }
    .auth-extra {
        display: none;
    }
    .auth-third__mobile-reg {
        display: block;
        margin-top: 16px;
        font-size: 14px;
    }
    .auth-third__mobile-reg a {
        color: var(--color-primary);
        font-weight: 500;
    }
}

/* 顶部卡券回收导航下拉 */
.top-recycle-nav{position:relative!important}
.top-recycle-nav--inline{display:inline-flex;align-items:center;height:100%}
.top-recycle-nav>.top-recycle-dropdown{position:absolute;top:calc(100% + 10px);left:50%;z-index:10000;width:532px;padding:10px 10px 9px;background:#fff;border:1px solid #eef1f5;border-radius:0 0 12px 12px;box-shadow:0 16px 36px rgba(15,23,42,.14);opacity:0;visibility:hidden;pointer-events:none;transform:translateX(-50%) translateY(10px);transition:opacity .18s ease,visibility .18s ease,transform .18s ease;box-sizing:border-box}
.top-recycle-nav>.top-recycle-dropdown:before{content:"";position:absolute;left:0;right:0;top:-12px;height:12px}
.top-recycle-nav:hover>.top-recycle-dropdown{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0)}
.top-recycle-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px 11px}
.top-recycle-nav .top-recycle-dropdown a.top-recycle-card{display:flex!important;align-items:center!important;justify-content:space-between!important;width:auto!important;height:62px!important;min-width:0!important;margin:0!important;padding:10px 12px!important;border:0!important;border-radius:8px!important;text-decoration:none!important;overflow:hidden;box-shadow:none!important;transform:none!important;box-sizing:border-box}
.top-recycle-card:nth-child(8n+1){background:linear-gradient(135deg,#d9e8ff 0%,#cbc5ff 100%)!important}
.top-recycle-card:nth-child(8n+2){background:linear-gradient(135deg,#ffd8f1 0%,#fb8de1 100%)!important}
.top-recycle-card:nth-child(8n+3){background:linear-gradient(135deg,#c9ecff 0%,#6fc8ff 100%)!important}
.top-recycle-card:nth-child(8n+4){background:linear-gradient(135deg,#b7f6d4 0%,#79e4ba 100%)!important}
.top-recycle-card:nth-child(8n+5){background:linear-gradient(135deg,#ffc8c8 0%,#ff8d8a 100%)!important}
.top-recycle-card:nth-child(8n+6){background:linear-gradient(135deg,#9ff4e4 0%,#42ddbd 100%)!important}
.top-recycle-card:nth-child(8n+7){background:linear-gradient(135deg,#ffc3b4 0%,#ff8f73 100%)!important}
.top-recycle-card:nth-child(8n+8){background:linear-gradient(135deg,#ffe69a 0%,#ffc85d 100%)!important}
.top-recycle-card__copy{position:relative;z-index:2;display:flex;flex-direction:column;align-items:flex-start;gap:7px;min-width:0}
.top-recycle-card__copy strong{display:block;max-width:70px;color:#2269ff!important;font-size:16px!important;line-height:1.1!important;font-weight:800!important;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.top-recycle-card:nth-child(8n+2) .top-recycle-card__copy strong,.top-recycle-card:nth-child(8n+5) .top-recycle-card__copy strong,.top-recycle-card:nth-child(8n+7) .top-recycle-card__copy strong{color:#ff4a37!important}
.top-recycle-card:nth-child(8n+4) .top-recycle-card__copy strong,.top-recycle-card:nth-child(8n+6) .top-recycle-card__copy strong{color:#10b981!important}
.top-recycle-card:nth-child(8n+8) .top-recycle-card__copy strong{color:#ff8a00!important}
.top-recycle-card__copy em{display:inline-flex;align-items:center;height:20px;padding:0 8px;border-radius:999px;background:rgba(34,105,255,.56);color:#fff!important;font-size:12px!important;line-height:20px!important;font-style:normal!important;font-weight:700!important;white-space:nowrap}
.top-recycle-card:nth-child(8n+2) .top-recycle-card__copy em{background:rgba(255,74,185,.58)}
.top-recycle-card:nth-child(8n+3) .top-recycle-card__copy em{background:rgba(28,154,238,.58)}
.top-recycle-card:nth-child(8n+4) .top-recycle-card__copy em{background:rgba(16,185,129,.58)}
.top-recycle-card:nth-child(8n+5) .top-recycle-card__copy em{background:rgba(255,83,65,.58)}
.top-recycle-card:nth-child(8n+6) .top-recycle-card__copy em{background:rgba(14,184,154,.58)}
.top-recycle-card:nth-child(8n+7) .top-recycle-card__copy em{background:rgba(255,104,78,.58)}
.top-recycle-card:nth-child(8n+8) .top-recycle-card__copy em{background:rgba(255,160,24,.58)}
.top-recycle-card__icon{position:relative;z-index:1;width:42px!important;height:42px!important;margin:0!important;object-fit:contain!important;flex:0 0 auto;filter:drop-shadow(0 8px 10px rgba(0,0,0,.12))}
.top-recycle-hot{display:flex;align-items:center;gap:0;margin-top:10px;padding:7px 2px 0;border-top:1px solid #e5e7eb;color:#525b66;font-size:12px;line-height:22px;white-space:nowrap;overflow:hidden}
.top-recycle-hot strong{display:inline-flex;align-items:center;flex:0 0 auto;height:22px;margin:0 10px 0 0;padding:0;color:#3f4650;font-weight:700;font-size:12px;line-height:22px}
.top-recycle-hot__list{display:flex;align-items:center;gap:10px;flex:1 1 auto;min-width:0;height:22px;line-height:22px;overflow:hidden}
.top-recycle-nav .top-recycle-hot a{display:inline-flex!important;align-items:center!important;flex:0 0 auto!important;width:auto!important;height:22px!important;min-width:0!important;margin:0!important;padding:0!important;border:0!important;background:transparent!important;color:#525b66!important;font-size:12px!important;line-height:22px!important;font-weight:400!important;text-decoration:none!important;transform:none!important;box-shadow:none!important}
.top-recycle-nav .top-recycle-hot a:hover{color:#ff6a2a!important}
@media (min-width:1201px){body.default-home-page .site-header.home-header--desktop .nav-item.top-recycle-nav>a:hover{background:transparent!important;border-color:transparent!important;box-shadow:none!important;transform:none}}
@media (max-width:768px){.top-recycle-nav>.top-recycle-dropdown{display:none!important}}

/* ============================================================
   用户中心工作台：仅作用于 default 用户中心公共壳层
   ============================================================ */
.user-center-page { background: #f4f7fb; color: #0f172a; }
.header--user {
    background: #ffffff;
    border-bottom: 1px solid #e6edf5;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}
.header--user .header__inner {
    min-height: 82px;
    max-width: 1480px;
    padding: 0 24px;
}
.header--user .header__logo img { max-height: 60px; }
.header--user .header__nav { gap: 4px; }
.header.header--user .header__nav .header__nav-link {
    width: 108px;
    min-height: 48px;
    height: 60px;
    padding: 8px 16px;
    border-radius: 28px;
    background: transparent;
    color: #1f2937 !important;
    font-size: 18px !important;
    line-height: 27px;
    font-weight: 500 !important;
    box-shadow: none;
}
.header.header--user .header__nav .header__nav-icon {
    width: 20px;
    height: 20px;
}
.header.header--user .header__nav .header__nav-link:hover,
.header.header--user .header__nav .header__nav-link--active {
    background: #eaf5ff;
    color: #0ea5e9 !important;
    box-shadow: 0 6px 14px rgba(14, 182, 255, 0.12);
}
.header.header--user .header__nav .header__nav-link--active::after {
    display: none;
}
.header.header--user .header__nav .header__nav-link--active .header__nav-icon {
    filter: invert(54%) sepia(92%) saturate(1765%) hue-rotate(165deg) brightness(99%) contrast(102%);
}
.header--user .header__user-avatar { width: 34px; height: 34px; }
.header--user .personal-center-btn {
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
}
body.user-center-page .service-btn {
    min-width: 112px;
    padding: 8px 16px;
    border: 1px solid #d9e7ff;
    border-radius: 6px;
    background: #eaf0ff;
    color: #2468dd;
    font-weight: 600;
    line-height: 1.4;
}
body.user-center-page .service-btn:hover {
    border-color: #bcd5ff;
    background: #dfeaff;
    color: #155ec8;
}

.user-workspace.fixed-container {
    max-width: 1600px;
    min-height: calc(100vh - 82px);
    align-items: flex-start;
    gap: 24px;
    padding: 20px 20px 56px;
}
.header--user + .fixed-container.flex { margin-top: 0; }
.profile-sidebar {
    position: sticky;
    top: 20px;
    width: 248px;
    min-width: 248px;
    margin: 0;
    padding: 0 0 18px;
    border: 1px solid #e6edf5;
    border-radius: 8px;
    box-shadow: none;
    overflow: hidden;
}
.profile-avatar {
    padding: 24px 20px 20px;
    border-bottom: 1px solid #e6edf5;
    text-align: left;
    background: #f7fbff;
}
.avatar-img {
    width: 52px;
    height: 52px;
    margin: 0 0 12px;
    border: 2px solid #ffffff;
    border-radius: 8px;
    background: #dceeff;
    box-shadow: 0 2px 8px rgba(18, 118, 232, 0.14);
}
.profile-name { margin: 0 0 4px; color: #0f172a; font-size: 16px; font-weight: 700; }
.profile-id { color: #64748b; font-size: 12px; }
.profile-menu { margin: 12px 0 0; padding: 0 10px; }
.menu-item {
    min-height: 42px;
    margin: 2px 0;
    padding: 0 12px;
    border-radius: 6px;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
}
.menu-item i { width: 20px; margin-right: 10px; color: #94a3b8; font-size: 17px; text-align: center; }
.menu-item.active {
    background: #eaf4ff;
    color: #0b70df;
    box-shadow: inset 3px 0 0 #1276e8;
}
.menu-item.active i { color: #1276e8; }
.menu-item:hover:not(.active) { background: #f4f7fb; transform: none; color: #0f172a; }
.menu-divider { margin: 12px 10px; background: #e6edf5; }
.sidebar-footer { margin: 14px 10px 0; padding: 14px 10px 0; border-top: 1px solid #e6edf5; }
.service-btn {
    height: 38px;
    padding: 0 14px;
    border-radius: 6px;
    background: #1276e8;
    box-shadow: none;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 0;
}
.service-btn:hover { background: #075fca; box-shadow: none; transform: none; }
.hotline { margin-top: 12px; padding: 0; background: transparent; border-radius: 0; }
.hotline p { color: #64748b !important; font-size: 12px; line-height: 1.7; }
.hotline p:last-child { color: #0f172a !important; font-size: 13px; font-weight: 700; }

.profile-main {
    min-width: 0;
    overflow: visible;
}
.content-card {
    margin: 0 0 20px;
    padding: 28px;
    border: 1px solid #e6edf5;
    border-radius: 8px;
    box-shadow: none;
}
.card-title, .withdraw-title { margin-bottom: 20px; color: #0f172a; font-size: 18px; font-weight: 700; letter-spacing: 0; }
.dashboard-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin: 2px 0 20px;
    padding: 0 2px;
}
.dashboard-intro__eyebrow { margin: 0 0 7px; color: #1276e8; font-size: 13px; font-weight: 700; }
.dashboard-intro h1 { margin: 0; color: #0f172a; font-size: 26px; font-weight: 750; line-height: 1.25; }
.dashboard-intro__summary { margin: 8px 0 0; color: #64748b; font-size: 14px; line-height: 1.6; }
.dashboard-intro__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 40px;
    padding: 0 16px;
    border-radius: 6px;
    background: #1276e8;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}
.dashboard-intro__action:hover { background: #075fca; color: #ffffff; }
.safety-score-card {
    margin-bottom: 16px;
    padding: 24px 28px;
    border: 1px solid #d7eaff;
    border-radius: 8px;
    background: #edf7ff;
    color: #0f172a;
}
.score-number { color: #0b70df; font-size: 48px; }
.star-rating { margin-bottom: 5px; }
.star-icon { color: #f59e0b; font-size: 18px; }
.star-default { color: #cbd5e1; }
.safety-tip { color: #475569; font-size: 13px; }
.safety-grid { gap: 12px; margin-bottom: 20px; }
.safety-grid-item {
    min-height: 112px;
    padding: 18px;
    border: 1px solid #e6edf5;
    border-radius: 8px;
    box-shadow: none;
}
.safety-grid-item p:first-child { margin-bottom: 8px; color: #0f172a; font-size: 15px; }
.safety-grid-item p:last-child { color: #64748b; font-size: 13px; }
.safety-grid-item:hover { border-color: #a7d0fb; box-shadow: 0 6px 16px rgba(15, 76, 129, 0.08); transform: translateY(-2px); }
.icon-arrow { color: #1276e8; }
.fund-balance-area { padding: 22px 24px; border: 1px solid #e6edf5; border-radius: 8px; background: #f8fafc; }
.balance-label, .balance-extra-info { color: #64748b; font-size: 13px; }
.balance-number { color: #0f172a; font-size: 36px; }
.currency-symbol { color: #0f172a; font-size: 24px; }
.btn-withdraw-primary, .btn-primary { border-radius: 6px; background: #1276e8; box-shadow: none; }
.btn-withdraw-primary:hover, .btn-primary:hover { background: #075fca; box-shadow: none; transform: none; }
.view-all-link { padding: 0; border-radius: 0; background: transparent; color: #1276e8; font-weight: 600; }
.view-all-link:hover { background: transparent; color: #075fca; }

.withdraw-simple-table { border-collapse: separate; border-spacing: 0; }
.withdraw-simple-table th {
    padding: 12px;
    border-top: 1px solid #e6edf5;
    border-bottom: 1px solid #e6edf5;
    background: #f8fafc;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}
.withdraw-simple-table td { padding: 15px 12px; border-bottom-color: #edf2f7; color: #334155; font-size: 13px; }
.withdraw-simple-table tbody tr:hover { background: #fbfdff; }
.status-badge, .status-default, .status-success, .status-processing, .status-failed { border-radius: 4px; font-size: 12px; font-weight: 600; }
.status-success { background: #e8f8ef; color: #147a45; }
.status-processing { background: #fff5df; color: #ad6900; }
.status-failed { background: #fff0ee; color: #c24132; }

.table-header { gap: 16px; margin-bottom: 20px; }
.table-header h3 { color: #0f172a; font-size: 18px !important; }
.search-box, .form-input, .date-input, .date-range-select, .account-select {
    min-height: 40px;
    border: 1px solid #dce5ef;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: none;
    color: #0f172a;
    font-size: 14px;
}
.search-box:focus, .form-input:focus, .date-input:focus, .date-range-select:focus { border-color: #1276e8; box-shadow: 0 0 0 3px rgba(18, 118, 232, 0.12); }
.search-btn, .export-btn, .line-btn { min-height: 36px; border-radius: 6px; font-size: 13px; font-weight: 600; }
.search-btn, .export-btn { background: #1276e8; color: #ffffff; border-color: #1276e8; }
.line-btn { border-color: #dce5ef; background: #ffffff; color: #475569; }
.line-btn.is-active, .line-btn:hover { border-color: #1276e8; background: #eaf4ff; color: #0b70df; }
.order-filter-box, .filter-block { border: 1px solid #e6edf5; border-radius: 8px; background: #f8fafc; }
.profile-tabs { gap: 0; margin-bottom: 24px; border-bottom-color: #e6edf5; }
.profile-tab-item { padding: 11px 16px; color: #64748b; font-size: 14px; font-weight: 600; }
.profile-tab-item.active { color: #1276e8; border-bottom-color: #1276e8; }
.profile-tab-item:hover:not(.active) { border-radius: 0; background: #f8fafc; color: #0f172a; }
.basic-info-grid, .profile-form { max-width: 720px; margin-left: 0; }
.basic-info-grid .info-item, .info-row { min-height: 54px; border-bottom-color: #edf2f7; }
.info-label, .info-title { color: #64748b; font-size: 13px; }
.info-value { color: #0f172a; font-size: 14px; font-weight: 600; }
.edit-link, .edit-btn, .send-code-btn { color: #1276e8; }
.mobile-status-card, .mobile-bind-card, .real-certified-card, .account-item { border-color: #e6edf5; border-radius: 8px; background: #ffffff; }
.withdraw-method-tabs { gap: 10px; }
.method-card { border-radius: 8px; }
.method-card.active { border-color: #1276e8; background: #eaf4ff; box-shadow: none; }
.withdraw-notice { border-radius: 6px; }

@media (max-width: 960px) {
    .header--user .header__inner { padding: 0 16px; }
    .user-workspace.fixed-container { display: block; padding: 20px 16px 42px; }
    .profile-sidebar { position: static; width: 100%; min-width: 0; margin-bottom: 16px; }
    .profile-avatar { display: flex; align-items: center; gap: 12px; padding: 16px; }
    .profile-avatar .avatar-img { flex: 0 0 46px; width: 46px; height: 46px; margin: 0; }
    .profile-name { margin: 0; }
    .profile-id { margin: 4px 0 0; }
    .profile-menu { display: flex; gap: 4px; margin: 0; padding: 8px; overflow-x: auto; }
    .menu-item { flex: 0 0 auto; min-height: 36px; margin: 0; padding: 0 10px; }
    .menu-divider, .sidebar-footer { display: none; }
    .dashboard-intro { align-items: flex-start; }
}
@media (max-width: 640px) {
    .header--user .header__nav { display: none; }
    .header--user .header__inner { min-height: 60px; }
    .header--user .header__nav-link { height: 60px; }
    .content-card { padding: 18px 14px; border-radius: 6px; }
    .dashboard-intro { display: block; margin-bottom: 16px; }
    .dashboard-intro h1 { font-size: 22px; }
    .dashboard-intro__action { width: 100%; margin-top: 14px; }
    .safety-score-card { padding: 18px; }
    .score-number { font-size: 40px; }
    .safety-grid { display: block; }
    .safety-grid-item { min-height: 82px; margin-bottom: 10px; }
    .fund-balance-area { padding: 18px; }
    .withdraw-action { width: 100%; text-align: left; }
    .btn-withdraw-primary { max-width: none; }
    .profile-tabs { overflow-x: auto; flex-wrap: nowrap; }
    .profile-tab-item { flex: 0 0 auto; padding: 10px 12px; }
    .table-header { align-items: flex-start; flex-direction: column; }
    .table-header-right, .table-header-right .export-btn { width: 100%; }
}

/* 筛选工具条：订单、资金明细、提现记录共用 */
.user-center-page .order-filter-box,
.user-center-page .withdraw-record-page .filter-block {
    margin: 16px 0 20px;
    padding: 4px 14px;
    border: 1px solid #e1e9f2;
    border-radius: 8px;
    background: #fbfdff;
}
.user-center-page .order-filter-box .filter-line,
.user-center-page .withdraw-record-page .filter-line {
    min-height: 50px;
    gap: 14px;
    padding: 9px 0;
}
.user-center-page .order-filter-box .filter-line + .filter-line,
.user-center-page .withdraw-record-page .filter-line + .filter-line {
    border-top-color: #e9eff6;
}
.user-center-page .order-filter-box .filter-label,
.user-center-page .withdraw-record-page .filter-label {
    width: 32px;
    color: #718096;
    font-size: 13px;
    font-weight: 600;
    line-height: 30px;
}
.user-center-page .order-filter-box .filter-options,
.user-center-page .withdraw-record-page .filter-options,
.user-center-page .order-filter-box .order-tabs {
    gap: 6px;
    min-width: 0;
}
.user-center-page .order-filter-box .line-btn,
.user-center-page .withdraw-record-page .line-btn,
.user-center-page .order-filter-box .order-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    margin: 0;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 5px;
    background: transparent;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    line-height: 28px;
    box-shadow: none;
    transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}
.user-center-page .order-filter-box .line-btn:hover,
.user-center-page .withdraw-record-page .line-btn:hover,
.user-center-page .order-filter-box .order-tab:hover {
    border-color: #cfe3f8;
    background: #f0f7ff;
    color: #0b70df;
}
.user-center-page .order-filter-box .line-btn.is-active,
.user-center-page .withdraw-record-page .line-btn.is-active,
.user-center-page .order-filter-box .order-tab.active {
    border-color: #b9dafb;
    background: #e7f3ff;
    color: #0967cc;
    font-weight: 700;
}
.user-center-page .order-filter-box .line-btn:focus-visible,
.user-center-page .withdraw-record-page .line-btn:focus-visible,
.user-center-page .order-filter-box .order-tab:focus-visible {
    outline: 2px solid #1276e8;
    outline-offset: 2px;
}
@media (max-width: 640px) {
    .user-center-page .order-filter-box,
    .user-center-page .withdraw-record-page .filter-block { padding: 3px 10px; }
    .user-center-page .order-filter-box .filter-line,
    .user-center-page .withdraw-record-page .filter-line { gap: 8px; }
    .user-center-page .order-filter-box .filter-label,
    .user-center-page .withdraw-record-page .filter-label { width: 28px; font-size: 12px; }
    .user-center-page .order-filter-box .line-btn,
    .user-center-page .withdraw-record-page .line-btn,
    .user-center-page .order-filter-box .order-tab { padding: 0 8px; font-size: 12px; }
}
