/* ============================================================
   frontend.css - 前台页面样式（首页、文章、协议、合作、下载、反馈、卡券回收等）
   ============================================================ */

/* ---------- 首页 (index) ---------- */
@font-face {
    font-family: 'YouSheBiaoTiHei-Regular';
    src: url('../fontFamliy/YouSheBiaoTiHei-2.ttf');
    font-weight: normal;
    font-style: normal;
}

input::placeholder {
    color: #94979d;
}

.flex-row {
    display: flex;
    align-items: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.animated {
    animation-duration: 0.3s;
    animation-fill-mode: both;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    animation-duration: 1.2s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.animate-on-scroll[data-animate="fadeInLeft"] {
    animation-name: fadeInLeft;
}

.animate-on-scroll[data-animate="fadeInRight"] {
    animation-name: fadeInRight;
}

.animate-on-scroll[data-animate="fadeInDown"] {
    animation-name: fadeInDown;
}

.animate-on-scroll[data-animate="fadeInUp"] {
    animation-name: fadeInUp;
}

.animate-on-scroll[data-animate="fadeIn"] {
    animation-name: fadeIn;
}

.animate-on-scroll.animated-in {
    animation-play-state: running;
}

/* 英雄区 */
.hero {
    width: 100%;
    background: url(../images/bg-home.png) no-repeat;
    background-size: cover;
    background-position: center top;
    padding-bottom: 200px;
    position: relative;
}
.hero .container {
    padding-top: 140px;
}
.hero-title-block {
    margin-bottom: 102px;
    width: 60%;
    margin: 0 auto;
}
.hero-title {
    font-family: 'YouSheBiaoTiHei-Regular', sans-serif;
    font-weight: 500;
    font-size: 90px;
    color: #fff;
    text-align: left;
}
.hero-title+.hero-title {
    text-align: right;
}
.search-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 102px;
}
.search-box {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}
.search-input {
    width: 604px;
    height: 40px;
    background: #fff;
    border-radius: 4px;
    border: none;
    padding: 0 11px;
    font-size: 14px;
    color: #333;
    margin-right: 12px;
    outline: none;
}
.search-btn {
    width: 54px;
    height: 40px;
    background: linear-gradient(180deg, #ff4d4d, #ff9052);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
}
.search-btn img {
    width: 20px;
}
.search-suggestions {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 51px;
    width: 670px;
}
.suggest-item {
    cursor: pointer;
    transition: 0.3s;
}
.suggest-item:hover {
    color: #fff;
}

/* 快捷入口卡片 */
.quick-cards {
    display: flex;
    justify-content: center;
    margin-top: -80px;
    position: relative;
    z-index: 2;
}
.quick-card {
    width: 248px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 30px 24px 24px;
    text-align: center;
    margin: 0 10px;
    height: 234px;
}
.quick-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}
.quick-card .title {
    font-size: 24px;
    color: #333;
    line-height: 36px;
    margin-top: 20px;
}
.quick-card button {
    position: relative;
    border-radius: 100px;
    width: 110px;
    height: 40px;
    margin-top: 16px;
    background: #fff;
    border: 1px solid #ededed;
    color: #737373;
    transition: 0.3s;
}
.quick-card button:hover {
    background-color: #ecf5ff;
    border-color: #a0cfff;
    color: #409eff;
}

/* 首页背景：除卡券列表外保持白色，避免继承公共底色。 */
body.default-home-page {
    background: #fff;
}
body.default-home-page .process-section,
body.default-home-page .features-section,
body.default-home-page .news-section,
body.default-home-page .faq-section,
body.default-home-page .cta-section {
    background: #fff;
}
body.default-home-page .cards-section {
    background: #f7f7f7;
}

/* 回收流程 */
.process-section {
    padding: 100px 0;
}
.section-title {
    font-size: 32px;
    font-weight: 500;
    color: #333;
    line-height: 48px;
    text-align: center;
}
.section-subtitle {
    font-size: 20px;
    color: #b3b3b3;
    line-height: 30px;
    text-align: center;
    margin: 12px 0 44px;
}
.process-steps {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: nowrap;
    gap: 20px;
}
.process-step {
    flex: 1;
    min-width: 0;
    padding: 27px 31px 46px 37px;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    transition: 0.3s;
}
.process-step:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.03);
}
.step-number {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 40px;
    color: #d8d8d8;
    line-height: 47px;
    margin-bottom: 36px;
}
.step-number span {
    margin-top: 18px;
}
.step-number img {
    width: 40px;
    transition: 0.5s;
}
.process-step:hover .step-number img {
    animation: swing 0.5s;
}
.step-title {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 11px;
}
.step-desc {
    font-size: 16px;
    color: #737373;
    line-height: 24px;
}

/* 选择理由 */
.features-section {
    margin-bottom: 100px;
}
.features-grid {
    display: flex;
    justify-content: space-between;
}
.feature-item {
    flex: 0 0 288px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.feature-item img {
    width: 65px;
    margin-bottom: 36px;
    transition: 0.5s;
}
.feature-item:hover img {
    transform: rotate(180deg);
}
.feature-title {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    line-height: 36px;
}
.feature-desc {
    font-size: 16px;
    color: #737373;
    line-height: 24px;
    margin-top: 12px;
}

/* 卡券列表轮播 */
.cards-section {
    background: #f7f7f7;
    padding-top: 80px;
    height: 700px;
}
.cards-scroll {
    overflow: hidden;
    position: relative;
}
.cards-row,
.cards-row-left {
    display: flex;
    gap: 80px;
    animation: scrollCards 20s linear infinite;
    margin-bottom: 40px;
    flex-wrap: nowrap;
    width: max-content;
}
.cards-row-left {
    animation: scrollCardsLeft 20s linear infinite !important;
}
@keyframes scrollCards {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes scrollCardsLeft {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}
.card-icon {
    width: 110px;
    height: 110px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    background-image: url(../images/home-swiper.png);
    background-repeat: no-repeat;
}
.card-icon img {
    width: 58px;
    height: 58px;
}
.card-label {
    font-size: 16px;
    color: #b3b3b3;
    text-align: center;
}

/* 新闻资讯 */
.news-section {
    background: #fff;
    padding: 80px 0;
}
.news-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.news-item {
    display: flex;
    flex: 0 0 48%;
    height: 140px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 32px;
    transition: 0.3s;
}
.news-item:hover {
    background-color: #f7f7f7;
}
.news-thumb {
    width: 200px;
    height: 140px;
    border-radius: 8px;
    margin-right: 24px;
    overflow: hidden;
}
.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.news-item:hover .news-thumb img {
    transform: scale(1.1);
}
.news-content {
    flex: 1;
    min-width: 0;
    position: relative;
}
.news-title {
    font-size: 17px;
    font-weight: bold;
    color: #333;
    line-height: 24px;
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 470px;
}
.news-summary {
    font-size: 14px;
    color: #b3b3b3;
    line-height: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 470px;
}
.news-title a,
.news-summary a {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news-meta {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news-source {
    font-size: 14px;
    color: #737373;
}
.news-source a {
    color: #0eb6ff;
}
.news-date {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #b3b3b3;
    margin-right: 10px;
}
.news-date img {
    width: 14px;
    margin-right: 8px;
}

/* FAQ */
.faq-section {
    background: #fff;
    padding: 0 0 76px;
}
.faq-tabs {
    margin: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.faq-tab {
    padding: 12px 24px;
    background: transparent;
    font-size: 18px;
    color: #333;
    border: 1px solid #ededed;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    transition: all 0.3s ease;
}
.faq-tab:hover {
    background-color: #ecf5ff;
    border-color: #a0cfff;
    color: #0eb6ff;
    transform: translateY(-2px);
}
.faq-tab:active {
    transform: translateY(0);
}
.faq-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.faq-item {
    width: 49%;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}
.faq-question {
    font-size: 24px;
    color: #333;
    line-height: 36px;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.faq-answer {
    font-size: 16px;
    color: #737373;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.faq-answer,
.faq-answer * {
    background: transparent !important;
}

/* 底部横幅 */
.cta-section {
    background: #f9f9f9;
    padding: 88px 0 100px;
    text-align: center;
}
.cta-text {
    font-size: 28px;
    font-weight: 500;
    color: #333;
    width: 827px;
    line-height: 42px;
    margin: 0 auto 60px;
}
.cta-btn {
    width: 300px;
    height: 68px;
    border-radius: 12px;
    background-color: #0eb6ff;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.qrcode-popover {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 12px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 1000;
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #f0f0f0;
}
.qrcode-popover canvas {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    background: #fff;
}
.qrcode-popover img {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    background: #fff;
    object-fit: cover;
}
.qrcode-popover::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent white transparent;
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.1));
}

/* ---------- 文章详情 (article_details) ---------- */
.main-grid__left .article-detail,
.main-grid__right .side-card {
    background-color: #ffffff !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05) !important;
    padding: 28px 30px !important;
    margin-bottom: 24px !important;
    transition: box-shadow 0.2s ease;
}
.main-grid__right .side-card {
    padding: 24px 22px !important;
}
.side-card>.side-card__title {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    padding-left: 0 !important;
    border-left: none;
}
.side-card>.hot-item,
.side-card>.random-item,
.side-card>.tag-cloud {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.hot-item,
.random-item {
    padding: 8px 0;
    border-bottom: 1px dashed #edf2f7;
}
.hot-item:last-child,
.random-item:last-child {
    border-bottom: none;
}
.article-detail__content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}
.article-detail__content pre {
    background: #0f172a !important;
    border-radius: 14px !important;
    padding: 20px !important;
    overflow-x: auto;
    font-size: 15px;
    line-height: 1.6;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.article-detail__content code {
    font-family: 'Fira Code', 'JetBrains Mono', 'Cascadia Code', 'Consolas', monospace !important;
    font-size: 14px;
    background: transparent !important;
    color: #e2e8f0;
    padding: 0 !important;
    border-radius: 0;
}
.article-detail__content code:not(pre code) {
    background: #eef2f6 !important;
    color: #dc2626 !important;
    padding: 2px 8px !important;
    border-radius: 6px;
    font-size: 0.9em;
}
.article-detail__abstract {
    background-color: #f1f5f9;
    border-left: 5px solid #3b82f6;
    padding: 18px 22px;
    border-radius: 12px;
    margin: 28px 0;
    color: #334155;
}
.article-nav {
    background: #f8fafc;
    border-radius: 18px;
    padding: 24px;
    margin: 40px 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
    width: 100%;
}
.article-nav__prev,
.article-nav__next {
    min-width: 0;
    padding: 14px 16px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e6edf5;
    cursor: pointer;
}
.article-nav__prev {
    grid-column: 1;
}
.article-nav__next {
    grid-column: 2;
    text-align: right;
}
.article-nav__label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}
.article-nav__title {
    display: block;
    color: #0f172a;
    font-size: 16px;
    line-height: 1.55;
    text-decoration: none;
    word-break: break-word;
}
.article-nav__title:hover {
    color: var(--color-primary);
}
.related-articles {
    margin-top: 40px;
}
.related-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.related-item {
    background: #ffffff;
    border: 1px solid #e9eef2;
    border-radius: 16px;
    padding: 12px;
    transition: all 0.2s;
    cursor: pointer;
}
.related-item:hover {
    border-color: #94a3b8;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.02);
}
.related-item__img {
    width: 100%;
    height: 133px;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    background: #eef2f7;
    margin-bottom: 10px;
}
.related-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.related-item__title {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.related-item__brief {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---------- 公告详情 (notice_detail) ---------- */
.notice-detail-page {
    min-height: 65vh;
    margin-bottom: 24px;
}
.notice-detail-page .main-grid__left .article-detail {
    background: #ffffff;
    border: 1px solid #e9eff6;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    padding: 30px 34px;
}
.notice-detail-page .page-title {
    margin: 0 0 14px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
    word-break: break-word;
}
.notice-detail-page .article-detail__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #edf2f7;
    margin-bottom: 22px;
}
.notice-detail-page .article-detail__meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #64748b;
    background: #f8fbff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 6px 12px;
}
.notice-detail-page .page-content {
    color: #1e293b;
    line-height: 1.9;
    font-size: 16px;
    word-break: break-word;
}
.notice-detail-page .page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 18px 0;
    display: block;
}
.notice-detail-page .page-content p:last-child {
    margin-bottom: 0;
}
.notice-detail-page .page-content table {
    max-width: 100%;
    width: 100%;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
    margin: 16px 0;
}
.notice-detail-page .page-content th,
.notice-detail-page .page-content td {
    border: 1px solid #e2e8f0;
    padding: 10px 12px;
    white-space: nowrap;
}
.notice-detail-page .page-content blockquote {
    margin: 18px 0;
    padding: 12px 16px;
    border-left: 4px solid #0eb6ff;
    background: #f5fbff;
    border-radius: 8px;
    color: #334155;
}

/* ---------- 协议 (agreement) ---------- */
.agreement-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
    color: #64748b;
    font-size: 14px;
}
.agreement-breadcrumb a {
    color: #0f172a;
    transition: color 0.2s ease;
}
.agreement-breadcrumb a:hover {
    color: #2563eb;
}
.agreement-page {
    margin-top: 22px;
    align-items: flex-start;
    min-height: 65vh;
    padding-bottom: 64px;
}
.agreement-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.75fr);
    gap: 24px;
    padding: 34px 38px;
    border-radius: 30px;
    background: radial-gradient(circle at top right, rgba(14, 182, 255, 0.18), transparent 26%), linear-gradient(135deg, #ffffff 0%, #f5fbff 46%, #edf7ff 100%);
    border: 1px solid #d8e7f5;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}
.agreement-hero__eyebrow {
    display: inline-block;
    color: #0ea5e9;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.agreement-hero__title {
    margin-top: 12px;
    color: #0f172a;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
}
.agreement-hero__desc {
    max-width: 760px;
    margin-top: 14px;
    color: #475569;
    font-size: 16px;
    line-height: 1.95;
}
.agreement-hero__meta {
    display: grid;
    align-content: center;
    gap: 12px;
}
.agreement-hero__meta span {
    display: block;
    padding: 20px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid #e2ebf5;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    color: #0f172a;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 700;
}
.agreement-layout {
    align-items: flex-start;
    gap: 28px;
    margin-top: 28px;
}
.agreement-page .main-grid__left {
    min-width: 0;
}
.agreement-article {
    background: #fff;
    border-radius: 30px;
    padding: 30px 32px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2ebf5;
}
.agreement-article__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #edf2f7;
}
.agreement-article__badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.agreement-article__hint {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    text-align: right;
}
.agreement-title {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.agreement-article .page-content {
    color: #334155;
    line-height: 1.9;
    font-size: 16px;
    word-break: break-word;
}
.agreement-article .page-content h1,
.agreement-article .page-content h2,
.agreement-article .page-content h3,
.agreement-article .page-content h4 {
    color: #0f172a;
    margin-top: 26px;
    margin-bottom: 12px;
    line-height: 1.4;
}
.agreement-article .page-content p {
    margin-bottom: 14px;
}
.agreement-article .page-content ul,
.agreement-article .page-content ol {
    margin: 10px 0 18px 20px;
}
.agreement-article .page-content blockquote {
    margin: 18px 0;
    padding: 14px 16px;
    background: #f8fbff;
    border-left: 4px solid #0ea5e9;
    color: #334155;
    border-radius: 8px;
}
.agreement-article .page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 14px;
}
.agreement-article .page-content table th,
.agreement-article .page-content table td {
    border: 1px solid #e2e8f0;
    padding: 10px 12px;
    text-align: left;
}
.agreement-article .page-content table th {
    background: #f8fafc;
    color: #0f172a;
    font-weight: 600;
}
.agreement-page .main-grid__right {
    position: sticky;
    top: 112px;
    min-height: 60vh;
}

/* ---------- 协议FAQ (agreement_problem) ---------- */
.faq-accordion {
    margin-top: 8px;
    width: 100%;
}
.agreement-article--faq .faq-accordion .faq-item {
    width: 100%;
}
.faq-accordion .faq-item {
    margin-bottom: 6px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}
.faq-accordion .faq-item:nth-child(even) {
    background: #f3f4f6;
}
.faq-accordion .faq-item.is-open {
    background: #fff;
}
.faq-accordion .faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.35;
}
.faq-accordion .faq-question__icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 11px;
    line-height: 1;
}
.faq-accordion .faq-icon-up {
    display: none;
}
.faq-accordion .faq-item.is-open .faq-icon-up {
    display: inline;
}
.faq-accordion .faq-item.is-open .faq-icon-down {
    display: none;
}
.faq-accordion .faq-item.is-open .faq-question {
    background: #fff;
}
.faq-accordion .faq-answer {
    padding: 8px 12px 10px;
    border-top: 1px solid #e5e7eb;
    background: var(--color-primary-light);
    border-radius: 5px;
}
.faq-accordion .faq-answer .page-content {
    margin: 0;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.65;
    word-break: break-word;
}
.faq-accordion .faq-answer .page-content p {
    margin: 0 0 6px;
}
.faq-accordion .faq-answer .page-content p:last-child {
    margin-bottom: 0;
}

/* ---------- 合作 (cooperate + page_cooperate) ---------- */
.cooperate-faq {
    margin-top: 80px;
}
.cooperate-faq .faq-grid {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}
.cooperate-faq .faq-item {
    width: auto;
    margin-bottom: 0;
    height: 100%;
}
.cooperate-faq .no-news {
    grid-column: 1 / -1;
}
@media (max-width: 768px) {
    .cooperate-faq {
        margin-top: 48px;
    }
    .cooperate-faq .faq-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .cooperate-faq .faq-item {
        padding: 16px 12px;
    }
    .cooperate-faq .faq-question {
        font-size: 14px;
        line-height: 1.5;
    }
    .cooperate-faq .faq-answer {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* ---------- 下载 (download) ---------- */
.download-page .hero-section {
    background: linear-gradient(180deg, #fff, #f0f6fc);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}
.download-page .hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.download-page .hero-content {
    flex: 1;
    min-width: 0;
    max-width: 920px;
}
.download-page .hero-title {
    font-family: 'YouSheBiaoTiHei-Regular', sans-serif;
    font-size: 46px;
    font-weight: 500;
    color: #1e2a3a;
    line-height: 1.18;
    letter-spacing: 0;
    white-space: nowrap;
}
.download-page .hero-subtitle {
    font-size: 24px;
    color: #4a5a6e;
    margin-top: 26px;
    font-weight: 400;
    text-align: left;
}
.download-page .feature-icons {
    display: flex;
    justify-content: space-between;
    margin-top: 92px;
    gap: 32px;
    max-width: 760px;
}
.download-page .feature-item {
    flex: 0 0 180px;
    text-align: center;
    min-width: 0;
}
.download-page .feature-item img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    opacity: 0.98;
    transition: transform 0.25s ease, filter 0.25s ease;
}
.download-page .feature-item:hover img {
    transform: translateY(-4px);
    filter: brightness(1.02);
}
.download-page .feature-item p {
    margin-top: 16px;
    color: #8a94a6;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
}
.download-page .phone-mockup {
    position: relative;
    display: block;
    width: 360px;
    height: 680px;
    background: #0b0f14;
    border-radius: 36px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 6px #e8edf2;
    overflow: hidden;
    flex-shrink: 0;
}
.download-page .phone-screen {
    width: 100%;
    height: 100%;
    background: #f4f8ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.download-page .dynamic-qr {
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
}
.download-page .dynamic-qr i {
    font-size: 70px;
    color: #0eb6ff;
    margin-bottom: 12px;
}
.download-page .dynamic-qr span {
    background: #e5f5ff;
    color: #0eb6ff;
    padding: 4px 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
}
.download-page .phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 26px;
    background: #0b0f14;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}
.download-page .platform-section {
    padding: 80px 0 100px;
}
.download-page .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #1e2a3a;
    margin-bottom: 12px;
}
.download-page .section-desc {
    text-align: center;
    font-size: 18px;
    color: #5f6f82;
    margin-bottom: 56px;
    font-weight: 400;
}
.download-page .platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.download-page .platform-card {
    background: #fff;
    border-radius: 28px;
    padding: 32px 20px 28px;
    box-shadow: 0 12px 28px -8px rgba(0, 32, 64, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.download-page .platform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -12px rgba(14, 182, 255, 0.25), 0 8px 16px -6px rgba(0, 40, 80, 0.1);
    border-color: rgba(14, 182, 255, 0.15);
}
.download-page .platform-card .card-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(145deg, #f9fcff, #ecf4fc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #0eb6ff;
    font-size: 40px;
    box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.8), 0 8px 16px -8px rgba(0, 80, 120, 0.2);
    transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
}
.download-page .platform-card:hover .card-icon {
    background: #0eb6ff;
    color: #fff;
    box-shadow: 0 10px 20px -6px rgba(14, 182, 255, 0.5);
}
.download-page .platform-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1e2a3a;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.download-page .qr-preview {
    width: 130px;
    height: 130px;
    margin: 16px auto 18px;
    background: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(14, 182, 255, 0.1);
    transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
}
.download-page .qr-preview i {
    font-size: 48px;
    color: #0eb6ff;
    opacity: 0.8;
}
.download-page .qr-preview.dots {
    background: #fff;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2px;
    padding: 8px;
}
.download-page .qr-preview.dots span {
    aspect-ratio: 1 / 1;
    background: #0eb6ff;
    border-radius: 2px;
    opacity: 0.7;
}
.download-page .qr-preview.dots span:nth-child(3n) {
    opacity: 1;
}
.download-page .qr-preview.dots span:nth-child(5n) {
    background: #1e2a3a;
    opacity: 0.5;
}
.download-page .download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0eb6ff;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 28px;
    border-radius: 60px;
    margin-top: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
    box-shadow: 0 10px 18px -10px #0eb6ff;
    width: fit-content;
}
.download-page .download-btn i {
    font-size: 18px;
}
.download-page .download-btn:hover {
    background: #0095d6;
    box-shadow: 0 16px 24px -12px #0eb6ff;
    transform: scale(1.02);
}
.download-page .platform-card p {
    color: #5f6f82;
    font-size: 15px;
    margin-top: 8px;
    font-weight: 400;
}
.download-page .animate-up {
    opacity: 0;
    animation: downloadFadeUp 0.6s forwards;
}
.download-page .delay-1 {
    animation-delay: 0.1s;
}
.download-page .delay-2 {
    animation-delay: 0.2s;
}
.download-page .delay-3 {
    animation-delay: 0.3s;
}
@keyframes downloadFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .download-page .hero-grid {
        gap: 24px;
    }
    .download-page .hero-content {
        max-width: none;
    }
    .download-page .phone-mockup {
        display: none;
    }
    .download-page .hero-title {
        font-size: 42px;
        white-space: normal;
    }
    .download-page .hero-subtitle {
        font-size: 20px;
        margin-top: 24px;
    }
    .download-page .feature-icons {
        margin-top: 48px;
        gap: 18px;
        justify-content: flex-start;
        max-width: none;
    }
    .download-page .feature-item {
        flex: 1;
    }
    .download-page .feature-item img {
        width: 64px;
        height: 64px;
    }
    .download-page .platform-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .download-page .platform-card {
        min-width: 0;
        padding: 20px 12px 18px;
        border-radius: 20px;
    }
    .download-page .platform-card h4 {
        font-size: 16px;
    }
    .download-page .platform-card p {
        font-size: 13px;
        line-height: 1.5;
    }
    .download-page .platform-card .card-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 14px;
        font-size: 28px;
    }
    .download-page .qr-preview {
        width: 96px;
        height: 96px;
        margin: 12px auto 14px;
    }
    .download-page .qr-preview i {
        font-size: 34px;
    }
    .download-page .download-btn {
        width: 100%;
        padding: 10px 12px;
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .download-page .hero-section {
        padding: 44px 0 52px;
    }
    .download-page .hero-title {
        font-size: 30px;
        white-space: normal;
    }
    .download-page .hero-subtitle {
        font-size: 16px;
        margin-top: 18px;
    }
    .download-page .feature-item p {
        margin-top: 14px;
        font-size: 13px;
        white-space: normal;
    }
    .download-page .platform-section {
        padding: 48px 0 60px;
    }
    .download-page .section-title {
        font-size: 26px;
    }
    .download-page .section-desc {
        font-size: 14px;
        margin-bottom: 28px;
    }
}

/* ---------- 反馈 (feed_back) ---------- */
.status-badge.closed {
    background: #eef2f6;
    color: #667085;
}
.feedback-record-btn {
    border: 1px solid #dbe7f3;
    background: #fff;
    color: #0eb6ff;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.feedback-record-btn:hover {
    border-color: #0eb6ff;
    background: #f2fbff;
}
.feedback-record-layer .layui-layer-content {
    background: #f8fafc;
}
.feedback-record-layer .layui-layer-title {
    height: 48px;
    line-height: 48px;
    padding: 0 18px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    border-bottom: 1px solid #eef2f6;
    background: #fff;
}
.feedback-record-layer .layui-layer-setwin {
    top: 16px;
    right: 14px;
}
.feedback-record-layer .layui-layer-btn {
    padding: 12px 18px 16px;
    border-top: 1px solid #eef2f6;
    background: #fff;
}
.feedback-record-layer .layui-layer-btn .layui-layer-btn0 {
    margin: 0;
    height: 34px;
    line-height: 34px;
    padding: 0 18px;
    border: 0;
    border-radius: 4px;
    background: #1e9fff;
}
.feedback-record-dialog {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.feedback-record-list {
    flex: 1;
    overflow-y: auto;
    padding: 18px 16px;
    background: #fff;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}
.feedback-record-empty {
    padding: 24px 0;
    text-align: center;
    color: #98a2b3;
    font-size: 14px;
}
.feedback-record-item {
    max-width: 78%;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f5f7fb;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}
.feedback-record-item.user {
    margin-left: auto;
    background: linear-gradient(135deg, #f1fbff, #e6f7ff);
}
.feedback-record-item.admin {
    margin-right: auto;
    background: #f7f8fb;
}
.feedback-record-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.feedback-record-role {
    min-width: 44px;
    height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}
.feedback-record-role.user {
    background: #38bdf8;
}
.feedback-record-role.admin {
    background: #fb923c;
}
.feedback-record-name {
    font-size: 14px;
    font-weight: 600;
    color: #344054;
}
.feedback-record-time {
    margin-left: auto;
    font-size: 12px;
    color: #98a2b3;
}
.feedback-record-content {
    color: #1f2937;
    line-height: 1.8;
    font-size: 14px;
    word-break: break-word;
}
.feedback-record-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
.feedback-record-image-item {
    display: block;
    width: 88px;
    height: 88px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #fff;
}
.feedback-record-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feedback-record-editor {
    background: #fff;
    padding: 14px 16px 10px;
}
.feedback-record-textarea {
    width: 100%;
    min-height: 84px;
    padding: 14px 16px;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.6;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}
.feedback-record-textarea:focus {
    border-color: #0eb6ff;
    box-shadow: 0 0 0 3px rgba(14, 182, 255, 0.12);
}
.feedback-upload-preview {
    display: none;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
.feedback-upload-preview-item {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e5e7eb;
    background: #fff;
}
.feedback-upload-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feedback-upload-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.7);
    color: #fff;
    cursor: pointer;
    line-height: 20px;
    font-size: 12px;
}
.feedback-record-toolbar {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.feedback-record-toolbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.feedback-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 4px;
    border: 1px solid #d0d5dd;
    background: #fff;
    color: #344054;
    font-size: 13px;
    cursor: pointer;
}
.feedback-upload-tip {
    color: #98a2b3;
    font-size: 12px;
}
.feedback-send-btn {
    border: 0;
    border-radius: 999px;
    background: #69be58;
    color: #fff;
    min-width: 92px;
    height: 32px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.feedback-send-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
@media (max-width: 768px) {
    .feedback-record-layer {
        width: calc(100vw - 20px) !important;
        max-width: calc(100vw - 20px) !important;
        left: 10px !important;
        margin: 0 !important;
    }
    .feedback-record-layer .layui-layer-content {
        height: calc(100vh - 146px) !important;
    }
    .feedback-record-item {
        max-width: 100%;
    }
    .feedback-record-time {
        width: 100%;
        margin-left: 0;
    }
    .feedback-record-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .feedback-record-toolbar-left {
        justify-content: space-between;
    }
    .feedback-send-btn {
        width: 100%;
        height: 40px;
    }
}

/* ---------- 卡券回收 (card_recycle + tuantuan) ---------- */
#singlePanel .single-input-group input {
    width: 30%;
}
.upload-preview-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    margin-top: 12px;
}
.upload-preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fafafa;
}
.upload-preview-thumb {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}
.upload-preview-remove {
    width: 100%;
    padding: 4px 0;
    border: 1px solid #ef4444;
    border-radius: 6px;
    color: #ef4444;
    background: #fff;
    cursor: pointer;
}
.submit-login-mask {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(1.5px);
    border-radius: 12px;
}
.submit-login-mask__content {
    text-align: center;
    padding: 0 20px;
}
.submit-login-mask__tip {
    margin-bottom: 14px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}
.submit-login-mask__btn {
    display: inline-block;
    min-width: 156px;
    line-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: var(--color-primary);
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(14, 182, 255, .35);
}
.submit-login-mask__btn:hover {
    color: #fff;
    background: var(--color-primary-hover);
    text-decoration: none;
}
@media (max-width: 768px) {
    .submit-login-mask__tip {
        font-size: 16px;
    }
    .submit-login-mask__btn {
        min-width: 128px;
        line-height: 40px;
        font-size: 16px;
    }
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}
.category-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    min-height: 52px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    transition: all .2s ease;
}
.category-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.18);
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
}
.category-item:nth-child(8n+1) {
    background: #31aae3;
}
.category-item:nth-child(8n+2) {
    background: #f94b73;
}
.category-item:nth-child(8n+3) {
    background: #ffa53a;
}
.category-item:nth-child(8n+4) {
    background: #b171ea;
}
.category-item:nth-child(8n+5) {
    background: #43d182;
}
.category-item:nth-child(8n+6) {
    background: #ff6e42;
}
.category-item:nth-child(8n+7) {
    background: #aedf2c;
}
.category-item:nth-child(8n+8) {
    background: #f9a43e;
}
.category-item:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .65);
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .18);
}
.category-item:hover::before {
    opacity: 1;
}
.category-item.active {
    color: #fff;
    border-color: rgba(255, 255, 255, .95);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .22), 0 10px 20px rgba(0, 0, 0, .2);
}
.category-item.active::after {
    content: "✓";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 16px;
    height: 16px;
    background: rgba(120, 136, 158, 0.9);
    color: #fff;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    border-top-left-radius: 6px;
}
.category-item__icon {
    width: 32px;
    height: 32px;
    margin: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.category-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.category-item__name {
    font-size: 15px;
    line-height: 1;
    color: inherit;
    margin: 0;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}
.category-item:hover .category-item__icon img {
    animation: cardRecycleIconShakeX .45s ease-in-out;
}
#goodsCard .goods-grid {
    gap: 16px;
}
#goodsCard .goods-item {
    width: calc(25% - 8px);
    padding: 17px 6px;
    border-radius: 12px;
}
#goodsCard .goods-item__img {
    width: 36px;
    height: 36px;
    margin: 0 auto 6px;
}
#goodsCard .goods-item__name {
    font-size: 13px;
    line-height: 1.2;
}
@media (min-width: 768px) {
    #goodsCard .goods-item {
        width: calc(12.5% - 12px);
    }
}
@media (min-width: 992px) {
    #goodsCard .goods-item {
        width: calc(10% - 13px);
    }
}
#faceCard .face-item {
    width: calc(25% - 8px + 30px);
}
.card-recycle-empty {
    width: 100%;
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 16px;
    border: 1px dashed #d8e3f2;
    border-radius: 12px;
    background: #f8fbff;
    color: #8a94ad;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    box-sizing: border-box;
}
.goods-grid .card-recycle-empty,
.face-grid .card-recycle-empty {
    grid-column: 1 / -1;
}
.card-recycle-empty--panel {
    min-height: 72px;
    margin: 0;
}
@media (min-width: 768px) {
    #faceCard .face-item {
        width: calc(12.5% - 12px + 30px);
    }
}
@media (min-width: 992px) {
    #faceCard .face-item {
        width: calc(10% - 13px + 30px);
    }
}
#batchPanel .submit-textarea__field .line-numbered-textarea textarea {
    padding: 4px 4px 4px 14px !important;
    background-position: 0 4px;
}
#batchPanel .submit-textarea {
    flex-wrap: nowrap;
    align-items: flex-start;
}
#batchPanel .submit-textarea__field {
    flex: 1 1 auto;
    min-width: 0;
}
#batchPanel .submit-tip {
    width: 320px;
    flex: 0 0 320px;
    height: 230px;
    min-height: 230px;
    padding: 18px 16px;
    box-sizing: border-box;
}
#batchPanel .line-numbers {
    flex: 0 0 52px;
    width: 52px;
    height: 230px;
    padding: 9px 0;
    box-sizing: border-box;
}
#batchPanel .line-numbers span {
    height: 25.5px;
    line-height: 25.5px;
}
#batchPanel .submit-textarea__field .line-numbered-textarea {
    height: 230px;
    min-height: 230px;
}
#batchPanel .submit-textarea__field .line-numbered-textarea textarea {
    height: 230px;
    min-height: 230px;
    max-height: 230px;
    line-height: 1.7;
    resize: none;
    white-space: pre;
    word-break: normal;
    overflow-wrap: normal;
    overflow-x: auto;
    overflow-y: auto;
}
.line-numbers span.is-active {
    color: #0eb6ff;
    font-weight: 600;
}
.bottom-info__articles .article-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 0;
}
.bottom-info__articles .card__title {
    margin-bottom: 5px;
}
.bottom-info__articles .article-item {
    display: block;
    padding: 0;
}
.bottom-info__articles .article-item__img {
    width: 100%;
    height: 170px;
    aspect-ratio: 16 / 9;
    margin-bottom: 4px;
    overflow: hidden;
}
.bottom-info__articles .article-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.bottom-info__articles .article-item:hover .article-item__img img {
    transform: scale(1.06);
}
.bottom-info__articles .article-item__brief {
    -webkit-line-clamp: 2;
}
@media (max-width: 992px) {
    .bottom-info__articles .article-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .bottom-info__articles .article-list {
        grid-template-columns: 1fr;
    }
}
#hotArticlesList .article-item__img {
    height: 170px !important;
    min-height: 170px;
    max-height: 170px;
}
#hotArticlesList .article-item__img img {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.35s ease;
}
#hotArticlesList .article-item:hover .article-item__img img {
    transform: scale(1.06);
}
.card-recycle-main {
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    margin-top: 10px;
}
@media (max-width: 768px) {
    #goodsCard .goods-grid,
    #faceCard .face-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }
    #goodsCard .goods-item,
    #faceCard .face-item {
        width: auto !important;
        min-width: 0;
        box-sizing: border-box;
    }
    #goodsCard .goods-item {
        padding: 12px 6px;
    }
    #faceCard .face-item {
        padding: 28px 8px 22px;
    }
    #singlePanel .single-input-group,
    #singlePanel .single-input-group input {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    .submit-textarea {
        gap: 12px;
        flex-wrap: wrap;
    }
    #batchPanel .submit-textarea {
        flex-wrap: wrap;
    }
    .submit-textarea__field {
        flex: 1 1 100%;
        min-width: 0;
        width: 100%;
    }
    #batchPanel .submit-textarea__field {
        flex: 1 1 100%;
        width: 100%;
    }
    #batchPanel .submit-textarea__field .line-numbered-textarea {
        width: 100%;
    }
    .submit-tip {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    #batchPanel .submit-tip {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
    }
}

/* tuantuan 补充样式 */
.search-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
@media (max-width: 768px) {
    .search-bar__inner {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        align-items: center;
    }
}
@media (max-width: 576px) {
    .search-bar__inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}
.search-style-4 {
    background: url(../images/bg.png);
    padding: 35px 0;
    margin-bottom: 5px;
}
.search-style-4 .search-box {
    flex: 0 1 500px;
    min-width: 300px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 182, 255, 0.2);
    border-radius: 24px;
    overflow: hidden;
    height: 56px;
    box-shadow: 0 4px 20px rgba(14, 182, 255, 0.1);
    transition: all 0.3s ease;
}
.search-style-4 .search-box:focus-within {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--color-primary);
    box-shadow: 0 8px 32px rgba(14, 182, 255, 0.2);
}
.search-style-4 .search-input {
    flex: 1;
    border: none;
    padding: 0 24px;
    font-size: 16px;
    outline: none;
    background: transparent;
    height: 100%;
    color: var(--text-dark);
}
.search-style-4 .search-input::placeholder {
    color: var(--text-gray);
    font-size: 16px;
}
.search-style-4 .search-button {
    background: transparent;
    border: none;
    color: var(--color-primary);
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.search-style-4 .search-button:hover {
    background: rgba(14, 182, 255, 0.1);
    border-radius: 50%;
}
.search-style-4 .search-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
    margin-bottom: 8px;
}
.card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}
.card__title {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.card__title-bar {
    width: 4px;
    height: 20px;
    background: #0eb6ff;
    border-radius: 2px;
    margin-right: 12px;
}
.card__title-text {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}
.category-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    min-height: 52px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    transition: all .2s ease;
}
.category-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.18);
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
}
.category-item:nth-child(8n+1) {
    background: #31aae3;
}
.category-item:nth-child(8n+2) {
    background: #f94b73;
}
.category-item:nth-child(8n+3) {
    background: #ffa53a;
}
.category-item:nth-child(8n+4) {
    background: #b171ea;
}
.category-item:nth-child(8n+5) {
    background: #43d182;
}
.category-item:nth-child(8n+6) {
    background: #ff6e42;
}
.category-item:nth-child(8n+7) {
    background: #aedf2c;
}
.category-item:nth-child(8n+8) {
    background: #f9a43e;
}
.category-item:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .65);
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .18);
}
.category-item:hover::before {
    opacity: 1;
}
.category-item.active {
    color: #fff;
    border-color: rgba(255, 255, 255, .95);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .22), 0 10px 20px rgba(0, 0, 0, .2);
}
.category-item__icon {
    width: 32px;
    height: 32px;
    margin: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.category-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.category-item__name {
    font-size: 15px;
    line-height: 1;
    color: inherit;
    margin: 0;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}
.category-item.active::after {
    content: "✓";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 16px;
    height: 16px;
    background: rgba(120, 136, 158, 0.9);
    color: #fff;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    border-top-left-radius: 6px;
}
.category-item:hover .category-item__icon img {
    animation: cardRecycleIconShakeX .45s ease-in-out;
}
@keyframes cardRecycleIconShakeX {
    0% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(-9deg);
    }
    40% {
        transform: rotate(9deg);
    }
    60% {
        transform: rotate(-7deg);
    }
    80% {
        transform: rotate(7deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
.goods-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.goods-item {
    width: calc(50% - 8px);
    background: #ffffff;
    border: 1px solid #e9f1ff;
    border-radius: 18px;
    padding: 18px 8px;
    text-align: center;
    transition: all 0.25s ease;
    cursor: pointer;
    display: block;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.goods-item:hover {
    border-color: #ff7544;
    box-shadow: 0 10px 22px rgba(255, 117, 68, 0.1);
    transform: scale(1.02) translateY(-2px);
}
.goods-item.active {
    border-color: #ff7544;
    background: #fff4f0;
    border-width: 1.5px;
}
.goods-item__img {
    width: 56px;
    height: 56px;
    margin: 0 auto 10px;
}
.goods-item__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.goods-item__name {
    font-weight: 500;
    font-size: 16px;
    color: #2c3e50;
}
@media (min-width: 768px) {
    .goods-item {
        width: calc(20% - 13px);
    }
}
.face-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.face-item {
    width: calc(50% - 8px);
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 24px 16px 18px;
    position: relative;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.face-item:hover {
    border-color: #ff7544;
    box-shadow: 0 12px 24px rgba(255, 117, 68, 0.12);
    transform: translateY(-3px);
}
.face-item.active {
    border-color: #ff7544;
    background: #fff9f7;
    border-width: 1.5px;
}
.face-item__discount,
.face-item__badge {
    position: absolute;
    top: 0;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    border-radius: 0 20px 0 16px;
    line-height: 1.2;
    letter-spacing: 0.3px;
}
.face-item__discount {
    right: 0;
    background: #fff4d8;
    color: #f9a72e;
}
.face-item__badge {
    left: 0;
    background: #e9ecef;
    color: #495057;
    border-radius: 20px 0 16px 0;
}
.face-item__badge--maintain {
    background: #9aa5b1;
    color: white;
}
.face-item__value {
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    color: #1a2634;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.3;
    word-break: break-word;
}
.face-item .text-muted {
    font-size: 14px;
    color: #7a8698;
    margin-right: 8px;
}
.face-item .text-danger {
    font-size: 16px;
    font-weight: 700;
    color: #ff7544;
    margin-left: auto;
    line-height: 1.2;
}
.face-item.disabled {
    opacity: 0.55;
    filter: grayscale(0.6);
    pointer-events: none;
    cursor: not-allowed;
    border-color: #ddd;
}
@media (min-width: 768px) {
    .face-item {
        width: calc(25% - 12px);
    }
}
@media (min-width: 992px) {
    .face-item {
        width: calc(20% - 13px);
    }
}
.submit-radio {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.submit-radio-label {
    display: inline-flex;
    cursor: pointer;
    font-size: 15px;
    user-select: none;
}
.submit-radio-label .radio-hidden {
    display: none;
}
.submit-radio-label .radio-custom {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 40px;
    background-color: #f0f2f5;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.submit-radio-label .radio-hidden:checked+.radio-custom {
    background-color: #0eb6ff;
    color: white;
    box-shadow: 0 4px 10px rgba(14, 182, 255, 0.3);
}
.submit-radio-label .radio-custom:hover {
    background-color: #e0e4e9;
}
.submit-radio-label .radio-hidden:checked+.radio-custom:hover {
    background-color: #0099e6;
}
.submit-area {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
}
.line-numbered-textarea {
    display: flex;
    border: 1px solid #dcdfe6;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    max-height: 400px;
}
.line-numbers {
    width: 44px;
    background: #f9f9fb;
    border-right: 1px solid #e4e7ed;
    text-align: center;
    font-family: monospace;
    font-size: 14px;
    line-height: 30px;
    color: #aaa;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 12px 0;
    box-sizing: border-box;
}
.line-numbers::-webkit-scrollbar {
    display: none;
}
.line-numbers span {
    display: block;
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #999;
}
.line-numbered-textarea textarea {
    flex: 1;
    min-height: 180px;
    padding: 12px 12px 12px 16px;
    border: none;
    resize: vertical;
    font-family: monospace;
    font-size: 14px;
    line-height: 30px;
    background: repeating-linear-gradient( to bottom, #f7f9fc 0px, #f7f9fc 30px, #ffffff 30px, #ffffff 60px);
    background-size: 100% 60px;
    background-position: 0 12px;
    background-attachment: local;
    outline: none;
    overflow-y: auto;
}
.single-input-group {
    flex: 1;
    min-width: 200px;
}
.single-input-group label {
    display: block;
    margin-bottom: 6px;
    color: #737373;
}
.single-input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #dcdfe6;
    border-radius: 8px;
    transition: 0.2s;
}
.single-input-group input:focus {
    border-color: #0eb6ff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(14, 182, 255, 0.1);
}
.upload-area {
    border: 2px dashed #dcdfe6;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    background: #fafbfc;
    cursor: pointer;
    transition: 0.2s;
}
.upload-area:hover {
    border-color: #0eb6ff;
    background: #f0f9ff;
}
.upload-area__icon {
    font-size: 40px;
    color: #aaa;
    margin-bottom: 12px;
}
.upload-area__text {
    color: #666;
    margin-bottom: 4px;
}
.upload-area__hint {
    font-size: 12px;
    color: #999;
}
.submit-textarea {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
}
.submit-textarea__field {
    flex: 1 1 0;
    min-width: 320px;
}
.submit-tip {
    width: 640px;
    flex: 0 0 640px;
    background: linear-gradient(180deg, rgba(14, 182, 255, 0.08), rgba(14, 182, 255, 0.03));
    border-radius: 16px;
    padding: 22px 20px;
    border: 1px solid rgba(14, 182, 255, 0.14);
    box-shadow: 0 10px 28px rgba(14, 182, 255, 0.08);
}
.submit-tip .text-main {
    font-size: 16px;
    line-height: 1.4;
}
.submit-tip .text-muted {
    line-height: 1.8;
    font-size: 14px;
}
.submit-textarea__field .line-numbered-textarea {
    min-height: 230px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}
.submit-textarea__field .line-numbered-textarea textarea {
    min-height: 230px;
    padding: 9px 9px 9px 28px;
    font-size: 15px;
    line-height: 1.7;
}
.submit-footer {
    border-top: 1px dashed #ddd;
    padding-top: 24px;
    margin-top: 24px;
}
.submit-footer__checkbox {
    margin-bottom: 16px;
}
.submit-footer__checkbox label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
}
.submit-footer__checkbox a {
    color: #0eb6ff;
    margin: 0 4px;
}
.submit-footer__checkbox a:hover {
    text-decoration: underline;
}
.submit-footer__button {
    background: #0eb6ff;
    border: none;
    color: white;
    width: 100%;
    max-width: 316px;
    height: 52px;
    border-radius: 26px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}
.submit-footer__button:hover {
    background: #0099e6;
    transform: scale(1.02);
}
.btn-light {
    background: #fff;
    border: 1px solid #0eb6ff;
    color: #0eb6ff;
    height: 40px;
    padding: 0 20px;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
}
.btn-light:hover {
    background: #0eb6ff;
    color: #fff;
}
.mt24.flex.alcenter {
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
#countDisplay {
    line-height: 1.6;
}
.bottom-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 10px 0;
}
@media (min-width: 768px) {
    .bottom-info {
        flex-direction: row;
        align-items: stretch;
    }
    .bottom-info .card {
        flex: 1;
        min-width: 0;
    }
}
@media (min-width: 992px) {
    .bottom-info__notice {
        flex: 0 0 30%;
        max-width: 30%;
    }
    .bottom-info__articles {
        flex: 0 0 70%;
        max-width: 70%;
    }
}
.notice-content {
    color: #4a4a4a;
    line-height: 1.7;
}
.notice-content strong {
    color: #ff7544;
}
.article-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.article-item {
    width: 100%;
    cursor: pointer;
    display: flex;
    gap: 12px;
    align-items: center;
    transition: 0.2s;
    padding: 8px;
    border-radius: 8px;
    color: inherit;
}
.bottom-info__notice .notice-content {
    max-height: 280px;
}
.bottom-info__articles .article-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
}
.bottom-info__articles .article-item {
    display: block;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}
.bottom-info__articles .article-item:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
}
.bottom-info__articles .article-item__img {
    width: 100%;
    height: 170px;
    aspect-ratio: 16 / 9;
    margin-bottom: 12px;
    border-radius: 0;
    overflow: hidden;
}
.bottom-info__articles .article-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.bottom-info__articles .article-item:hover .article-item__img img {
    transform: scale(1.06);
}
.bottom-info__articles .article-item__content {
    min-width: 0;
}
.bottom-info__articles .article-item__title {
    font-size: 15px;
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 4px;
}
.bottom-info__articles .article-item__brief {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 992px) {
    .bottom-info__articles .article-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .bottom-info__articles .article-list {
        grid-template-columns: 1fr;
    }
}
@media (min-width: 992px) {
    .bottom-info__notice {
        flex: 0 0 30%;
        max-width: 30%;
    }
    .bottom-info__articles {
        flex: 0 0 70%;
        max-width: 70%;
    }
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.modal.active {
    display: flex;
}
.modal__content {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
}
.modal__content h3 {
    margin-bottom: 16px;
    color: #333;
}
.modal__content p {
    margin-bottom: 24px;
    color: #666;
    white-space: pre-wrap;
}
.modal__close {
    background: #0eb6ff;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
}
.category-item,
.goods-item,
.face-item {
    transition: transform 0.1s, box-shadow 0.2s, border-color 0.2s;
    cursor: pointer;
}
.category-item:active,
.goods-item:active,
.face-item:active {
    transform: scale(0.97);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.text-warning {
    color: #f59e0b;
}
.modal.hide {
    display: none;
}
#loginModal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    z-index: 2100;
    display: block;
    max-height: 420px;
}
#loginModal.hide {
    display: none;
}
.modal-cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
}
.modal-cover.hide {
    display: none;
}
#loginModal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
#loginModal .modal-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1e293b;
}
#loginModal .modal-close {
    font-size: 30px;
    color: #94a3b8;
    line-height: 1;
    transition: color 0.2s;
}
#loginModal .modal-close:hover {
    color: #ef4444;
}
#loginModal .form-group {
    margin-bottom: 20px;
}
#loginModal .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    font-size: 16px;
}
#loginModal .btn-primary {
    background: var(--color-primary);
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}
#loginModal .btn-primary:hover {
    background: #0099e6;
    box-shadow: 0 10px 20px rgba(14, 182, 255, 0.3);
}
.modal#protocolModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 2200;
}
.modal#protocolModal.active {
    display: flex;
}
.modal#protocolModal .modal__content {
    background: white;
    max-width: 500px;
    width: 90%;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
}
.modal#protocolModal .modal__content h3 {
    margin-bottom: 16px;
    font-size: 22px;
    color: #1e293b;
}
.modal#protocolModal .modal__content p {
    margin-bottom: 24px;
    color: #4b5563;
    white-space: pre-wrap;
    line-height: 1.6;
}
.modal#protocolModal .modal__close {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 10px 32px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.modal#protocolModal .modal__close:hover {
    background: #0099e6;
}
.recycle-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.recycle-loading {
    text-align: center;
}
.recycle-loading img {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
}
.recycle-loading h3 {
    font-size: 20px;
    color: var(--color-primary);
    font-weight: 500;
}
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    border-radius: 16px;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0eb6ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
#goodsCard,
#faceCard {
    position: relative;
}
.is-switching {
    cursor: wait !important;
}
.category-item.is-switching,
.goods-item.is-switching,
.face-item.is-switching,
.is-switching .category-item,
.is-switching .goods-item,
.is-switching .face-item {
    pointer-events: none;
    opacity: 0.7;
}
#unloginOverlay button {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.no-data {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 16px;
    width: 100%;
    grid-column: 1 / -1;
}

/* ---------- 公共页脚 (footer) ---------- */
.site-footer .footer-top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 40px;
    width: 100%;
    text-align: left;
}
.site-footer .footer-contact {
    flex: 1 1 auto;
    min-width: 0;
}
.site-footer .footer-qr {
    flex: 0 0 auto;
    text-align: center;
}
.site-footer .footer-links {
    display: flex !important;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
    margin-bottom: 0;
}
.site-footer .footer-links a {
    margin: 0;
    padding-right: 14px;
    border-right: 1px solid #525354;
}
.site-footer .footer-links a:last-child {
    border-right: none;
    padding-right: 0;
}

/* ---------- 前台响应式补充 ---------- */
@media screen and (max-width: 1200px) {
    .hero-title {
        font-size: 70px;
        line-height: 1.2;
    }
    .hero-title-block {
        width: 80%;
    }
    .search-suggestions {
        width: 100%;
        max-width: 670px;
        line-height: 20px;
    }
}
@media screen and (max-width: 992px) {
    .hero {
        padding-bottom: 150px;
    }
    .hero-title {
        font-size: 60px;
    }
    .hero-title+.hero-title {
        text-align: center;
    }
    .search-box {
        width: 100%;
    }
    .search-input {
        width: 100%;
        max-width: none;
    }
    .quick-cards {
        flex-wrap: wrap;
        margin-top: -40px;
    }
    .quick-card {
        width: calc(50% - 20px);
        margin-bottom: 20px;
    }
    .process-steps {
        flex-wrap: wrap;
    }
    .process-step {
        flex: 0 0 calc(50% - 20px);
        margin-bottom: 20px;
    }
    .features-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    .feature-item {
        flex: 0 0 calc(50% - 30px);
        margin-bottom: 30px;
    }
    .cards-section {
        height: auto;
        padding-bottom: 50px;
    }
    .cards-row,
    .cards-row-left {
        gap: 30px;
    }
    .news-grid {
        justify-content: center;
    }
    .news-item {
        flex: 0 0 100%;
        height: auto;
        flex-wrap: wrap;
    }
    .news-thumb {
        width: 100%;
        height: auto;
        max-height: 200px;
        margin-right: 0;
    }
    .news-content {
        padding: 15px;
        position: static;
    }
    .news-meta {
        position: static;
        margin-top: 10px;
    }
    .faq-item {
        width: 100%;
    }
    .cta-text {
        width: auto;
        font-size: 24px;
        padding: 0 20px;
    }
    .footer-top {
        flex-wrap: wrap;
    }
    .footer-qr {
        margin-top: 20px;
    }
    .agreement-page .main-grid__right {
        position: static;
        top: auto;
    }
    .notice-detail-page .main-grid__left .article-detail {
        padding: 24px 20px;
        border-radius: 16px;
    }
    .notice-detail-page .page-title {
        font-size: 24px;
    }
}
@media screen and (max-width: 768px) {
    .hero .container {
        padding-top: 216px;
    }
    .agreement-breadcrumb {
        margin-top: 16px;
        font-size: 13px;
    }
    .agreement-page {
        margin-top: 16px;
        padding-bottom: 40px;
    }
    .agreement-hero {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        padding: 24px 20px;
        border-radius: 24px;
    }
    .agreement-hero__title {
        font-size: 30px;
    }
    .agreement-hero__desc {
        font-size: 14px;
        line-height: 1.85;
    }
    .agreement-hero__meta span {
        padding: 16px 18px;
        border-radius: 18px;
        font-size: 14px;
    }
    .agreement-layout {
        margin-top: 22px;
    }
    .hero-title {
        font-size: 40px;
        line-height: 1.2;
    }
    .hero-title-block {
        width: 100%;
    }
    .search-wrapper {
        margin-top: 40px;
    }
    .search-suggestions {
        width: 100%;
        font-size: 12px;
    }
    .quick-card {
        width: 100%;
        margin: 0 0 20px;
    }
    .process-step {
        flex: 0 0 100%;
    }
    .feature-item {
        flex: 0 0 100%;
    }
    .cards-row,
    .cards-row-left {
        gap: 20px;
    }
    .card-label {
        font-size: 14px;
    }
    .cta-btn {
        width: 90%;
    }
    .footer-contact h2 {
        font-size: 30px;
    }
    .agreement-article {
        padding: 22px 18px;
        border-radius: 24px;
    }
    .agreement-article__top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 18px;
        padding-bottom: 18px;
    }
    .agreement-article__hint {
        text-align: left;
    }
    .agreement-title {
        font-size: 26px;
        margin-bottom: 14px;
    }
    .agreement-article .page-content {
        font-size: 15px;
        line-height: 1.8;
    }
    .notice-detail-page {
        min-height: auto;
        margin-bottom: 14px;
    }
    .notice-detail-page .article-detail__meta {
        margin-bottom: 16px;
        padding-bottom: 14px;
    }
    .notice-detail-page .page-content {
        font-size: 15px;
        line-height: 1.8;
    }
    .main-grid__left .article-detail,
    .main-grid__right .side-card {
        padding: 20px 18px !important;
    }
    .article-detail__content pre {
        padding: 16px !important;
    }
    .article-nav {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    .article-nav__next {
        text-align: left;
    }
    .related-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .search-box {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }
    .search-input {
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
        margin-right: 8px;
        margin-bottom: 0;
    }
    .search-box>a {
        flex: 0 0 auto;
        display: inline-flex;
    }
    .search-btn {
        width: 50px;
        min-width: 50px;
        height: 40px;
    }
    .hero {
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }
    .news-grid .news-item {
        width: 95%;
        flex: 0 0 95%;
        margin-left: auto;
        margin-right: auto;
    }
    .news-item .news-title,
    .news-item .news-summary {
        max-width: 100%;
    }
    .news-item .news-title {
        font-size: 18px;
        line-height: 1.35;
        margin-bottom: 8px;
    }
    .news-item .news-summary {
        font-size: 13px;
        line-height: 1.5;
    }
    .news-item .news-source,
    .news-item .news-date {
        font-size: 12px;
    }
    .news-item .news-date img {
        width: 12px;
        margin-right: 6px;
    }
}
@media screen and (max-width: 576px) {
    .hero .container {
        padding-top: 204px;
    }
    .default-home-page .search-box {
        flex-wrap: nowrap;
        align-items: stretch;
    }
    .default-home-page .search-input {
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
        height: 36px;
        margin: 0 8px 0 0;
    }
    .default-home-page .search-box > a {
        display: flex;
        flex: 0 0 46px;
        height: 36px;
        line-height: 0;
    }
    .default-home-page .search-btn {
        width: 100%;
        min-width: 0;
        height: 100%;
        margin: 0;
        padding: 0;
    }
    .hero {
        background-size: cover;
        background-position: center top;
    }
    .hero-title {
        font-size: 32px;
    }
    .step-number {
        font-size: 30px;
    }
    .step-number img {
        width: 30px;
    }
    .step-title {
        font-size: 18px;
    }
    .step-desc {
        font-size: 14px;
    }
    .footer-links {
        flex-wrap: wrap;
        gap: 10px;
    }
    .footer-bottom a {
        display: inline-block;
        margin-bottom: 5px;
    }
    .related-list {
        grid-template-columns: 1fr;
    }
}

/* ---------- 公告列表 (notice_index) ---------- */
.notice-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
    color: #64748b;
    font-size: 14px;
}
.notice-breadcrumb a {
    color: #0f172a;
    transition: color 0.2s ease;
}
.notice-breadcrumb a:hover {
    color: #2563eb;
}
.notice-page-v2 {
    margin-top: 22px;
    padding-bottom: 64px;
    min-height: 65vh;
}
.notice-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.9fr);
    gap: 24px;
    padding: 34px 38px;
    border-radius: 30px;
    background: radial-gradient(circle at top right, rgba(14, 182, 255, 0.18), transparent 26%), linear-gradient(135deg, #ffffff 0%, #f5fbff 46%, #edf7ff 100%);
    border: 1px solid #d8e7f5;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}
.notice-hero__eyebrow {
    display: inline-block;
    color: #0ea5e9;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.notice-hero__title {
    margin-top: 12px;
    color: #0f172a;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 0;
}
.notice-hero__desc {
    max-width: 760px;
    margin-top: 14px;
    color: #475569;
    font-size: 16px;
    line-height: 1.95;
}
.notice-hero__stats {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 12px;
    align-content: center;
}
.notice-hero__stat {
    padding: 20px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid #e2ebf5;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}
.notice-hero__stat strong {
    display: block;
    color: #0f172a;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
}
.notice-hero__stat span {
    display: block;
    margin-top: 8px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}
.notice-section-nav {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}
.notice-section-nav__item {
    min-width: 0;
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.notice-section-nav__item:hover {
    transform: translateY(-2px);
    border-color: #bfdbfe;
    background: #f8fbff;
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.08);
}
.notice-section-nav__item.is-active {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    border-color: transparent;
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.2);
}
.notice-section-nav__item strong {
    display: block;
    color: #0f172a;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 800;
}
.notice-section-nav__item span {
    display: block;
    margin-top: 8px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.7;
}
.notice-section-nav__item.is-active strong,
.notice-section-nav__item.is-active span {
    color: #ffffff;
}
.notice-layout {
    align-items: flex-start;
    gap: 28px;
    margin-top: 28px;
}
.notice-layout .main-grid__left {
    min-width: 0;
}
.notice-stream {
    padding: 30px 32px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #e2ebf5;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}
.notice-stream__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    padding-bottom: 20px;
    margin-bottom: 22px;
    border-bottom: 1px solid #edf2f7;
}
.notice-stream__eyebrow {
    display: inline-block;
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.notice-stream__title {
    margin-top: 10px;
    color: #0f172a;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
}
.notice-stream__summary {
    max-width: 320px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.8;
}
.notice-stream__list {
    display: grid;
    gap: 18px;
}
.notice-feed-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.notice-feed-card:hover {
    transform: translateY(-2px);
    border-color: #bfdbfe;
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.08);
}
.notice-feed-card__date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #f5fbff 100%);
    border: 1px solid #dbeafe;
}
.notice-feed-card__month {
    color: #0f172a;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
}
.notice-feed-card__year {
    margin-top: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.notice-feed-card__body {
    min-width: 0;
}
.notice-feed-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.notice-feed-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
}
.notice-feed-card__time {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
}
.notice-feed-card__title {
    margin-top: 14px;
}
.notice-feed-card__title a {
    color: #0f172a;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 800;
}
.notice-feed-card__title a:hover {
    color: #2563eb;
}
.notice-feed-card__excerpt {
    margin-top: 12px;
    color: #475569;
    font-size: 15px;
    line-height: 1.9;
}
.notice-feed-card__footer {
    margin-top: 18px;
}
.notice-feed-card__link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.notice-feed-card__link:hover {
    transform: translateX(2px);
    background: #2563eb;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.16);
}
.notice-empty-card {
    padding: 34px 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
    border: 1px dashed #c7d7e8;
    text-align: center;
}
.notice-empty-card strong {
    display: block;
    color: #0f172a;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 800;
}
.notice-empty-card p {
    margin-top: 10px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
}
.notice-page-v2 .pagination {
    display: flex;
    justify-content: center;
    margin: 0;
    padding-left: 0;
    list-style: none;
}
.notice-page-v2 .pagination-wrapper,
.notice-page-v2 .pagination-wrapper.flex.flex-end,
.notice-page-v2 .notice-pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.notice-page-v2 .pagination-wrapper .pagination-total {
    float: none;
    margin: 0;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.notice-page-v2 .pagination > li {
    margin: 0 4px;
}
.notice-page-v2 .pagination > li > a,
.notice-page-v2 .pagination > li > span {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.2s;
}
.notice-page-v2 .pagination > li > a:hover,
.notice-page-v2 .pagination > .active > span {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}
.notice-page-v2 .pagination > .disabled > span {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background-color: #fafafa;
    cursor: not-allowed;
}

/* ---------- 帮助中心右侧导航 (notice_menu) ---------- */
.help-center-sidebar {
    width: 320px;
    flex-shrink: 0;
}
.help-center-sidebar .help-center-nav {
    position: sticky;
    top: 112px;
}
.help-center-nav {
    padding: 18px;
    border-radius: 28px;
    background: radial-gradient(circle at top right, rgba(14, 182, 255, 0.16), transparent 28%), linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dde9f5;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}
.help-center-nav__head {
    padding: 6px 6px 18px;
    border-bottom: 1px solid #edf2f7;
}
.help-center-nav__eyebrow {
    display: inline-block;
    color: #0ea5e9;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.help-center-nav__title {
    margin-top: 10px;
    color: #0f172a;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
}
.help-center-nav__desc {
    margin-top: 10px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}
.help-center-nav__focus {
    margin-top: 16px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, #eff6ff 0%, #f7fbff 100%);
    border: 1px solid #dbeafe;
}
.help-center-nav__focus-label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
}
.help-center-nav__focus-title {
    display: block;
    margin-top: 12px;
    color: #0f172a;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
}
.help-center-nav__focus-desc {
    margin-top: 8px;
    color: #475569;
    font-size: 14px;
    line-height: 1.75;
}
.help-center-nav__section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 0 6px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
}
.help-center-nav__section em {
    color: #94a3b8;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
}
.help-center-nav__list {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}
.help-center-nav__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.help-center-nav__item:hover {
    transform: translateY(-2px);
    border-color: #bfdbfe;
    background: #f8fbff;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
}
.help-center-nav__item.is-active {
    border-color: transparent;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}
.help-center-nav__item-copy {
    min-width: 0;
}
.help-center-nav__item-copy strong {
    display: block;
    color: inherit;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}
.help-center-nav__item-copy em {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.6;
    font-style: normal;
}
.help-center-nav__item.is-active .help-center-nav__item-copy strong,
.help-center-nav__item.is-active .help-center-nav__item-copy em {
    color: #ffffff;
}
.help-center-nav__item-state {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.help-center-nav__item.is-active .help-center-nav__item-state {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}
.help-center-nav__empty {
    padding: 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    color: #64748b;
    font-size: 14px;
}
.help-center-nav__footer {
    margin-top: 18px;
    padding: 18px;
    border-radius: 22px;
    background: #0f172a;
    color: #e2e8f0;
}
.help-center-nav__footer span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7dd3fc;
}
.help-center-nav__footer strong {
    display: block;
    margin-top: 10px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
    color: #ffffff;
}
.help-center-nav__footer p {
    margin-top: 8px;
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 1280px) {
    .notice-section-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 1024px) {
    .notice-hero {
        grid-template-columns: minmax(0, 1fr);
    }
    .notice-layout {
        flex-direction: column;
    }
    .help-center-sidebar {
        width: 100%;
    }
    .help-center-sidebar .help-center-nav {
        position: static;
        top: auto;
    }
}
@media (max-width: 768px) {
    .notice-breadcrumb {
        margin-top: 16px;
        font-size: 13px;
    }
    .notice-page-v2 {
        margin-top: 16px;
        padding-bottom: 40px;
    }
    .notice-hero {
        gap: 18px;
        padding: 24px 20px;
        border-radius: 24px;
    }
    .notice-hero__title {
        font-size: 30px;
    }
    .notice-hero__desc {
        font-size: 14px;
        line-height: 1.85;
    }
    .notice-section-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 20px;
    }
    .notice-section-nav__item {
        padding: 16px 14px 14px;
        border-radius: 18px;
    }
    .notice-section-nav__item strong {
        font-size: 15px;
    }
    .notice-section-nav__item span {
        font-size: 12px;
    }
    .notice-stream {
        padding: 22px 18px;
        border-radius: 24px;
    }
    .notice-stream__head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 18px;
        padding-bottom: 18px;
    }
    .notice-stream__title {
        font-size: 24px;
    }
    .notice-stream__summary {
        max-width: none;
        font-size: 13px;
    }
    .notice-feed-card {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        padding: 18px;
        border-radius: 20px;
    }
    .notice-feed-card__date {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        padding: 14px 16px;
        border-radius: 16px;
    }
    .notice-feed-card__month {
        font-size: 24px;
    }
    .notice-feed-card__year {
        margin-top: 0;
    }
    .notice-feed-card__title a {
        font-size: 20px;
    }
    .notice-feed-card__excerpt {
        font-size: 14px;
        line-height: 1.85;
    }
    .notice-page-v2 .pagination > li > a,
    .notice-page-v2 .pagination > li > span {
        padding: 5px 10px;
        font-size: 13px;
    }
    .notice-page-v2 .pagination-wrapper,
    .notice-page-v2 .pagination-wrapper.flex.flex-end,
    .notice-page-v2 .notice-pagination {
        justify-content: center;
    }
    .help-center-nav {
        padding: 14px;
        border-radius: 22px;
    }
    .help-center-nav__title {
        font-size: 20px;
    }
    .help-center-nav__focus {
        padding: 16px;
        border-radius: 18px;
    }
    .help-center-nav__focus-title {
        font-size: 18px;
    }
    .help-center-nav__item {
        padding: 13px 14px;
        border-radius: 16px;
    }
    .help-center-nav__footer {
        padding: 16px;
        border-radius: 18px;
    }
    .help-center-nav__footer strong {
        font-size: 20px;
    }
}
@media (max-width: 480px) {
    .notice-section-nav {
        grid-template-columns: minmax(0, 1fr);
    }
    .notice-page-v2 .pagination > li > a,
    .notice-page-v2 .pagination > li > span {
        padding: 4px 8px;
        font-size: 12px;
    }
}

/* ---------- 文章列表 (article_index) ---------- */
.article-page {
    min-height: 67vh;
    height: auto;
    margin-top: 20px !important;
    margin-bottom: 20px;
}
.article-page .category-tabs {
    background: var(--white);
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.article-page .category-tab {
    padding: 8px 22px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 16px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
    background: var(--white);
}
.article-page .category-tab:hover {
    border-color: var(--color-primary);
    background: #f2faff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.article-page .category-tab--active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--white);
}
.article-page .category-tab--active:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 182, 255, 0.3);
}
.article-page .article-list {
    display: block;
    background: var(--white);
    border-radius: 16px;
    margin-top: 20px;
    padding: 24px 30px;
    transition: box-shadow 0.3s;
}
.article-page .article-list:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}
.article-page .article-list__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.article-page .article-list__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
}
.article-page .article-list__title span {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
}
.article-page .article-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    border-radius: 12px;
}
.article-page .article-item:last-child {
    border-bottom: none;
}
.article-page .article-item:hover {
    background: #f9f9fc;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}
.article-page .article-item__img {
    width: 160px;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform 0.2s;
}
.article-page .article-item:hover .article-item__img {
    transform: scale(1.02);
}
.article-page .article-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.article-page .article-item__content {
    flex: 1;
    min-width: 0;
}
.article-page .article-item__title {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.2s;
}
.article-page .article-item:hover .article-item__title {
    color: var(--color-primary);
}
.article-page .article-item__brief {
    font-size: 14px;
    color: var(--text-gray);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 18px;
    line-height: 1.6;
}
.article-page .article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    color: #999;
}
.article-page .article-meta__item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.article-page .side-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 20px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s;
}
.article-page .side-card:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}
.article-page .side-card__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f2f2f2;
}
.article-page .hot-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 0;
    border-bottom: none;
}
.article-page .hot-item__index {
    width: 22px;
    height: 22px;
    background: #dee2e6;
    border: 1px solid #c4c4c4;
    color: #515355;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}
.article-page .hot-item__index--1 {
    background: #f62020;
    border-color: #f62020;
    color: var(--white);
}
.article-page .hot-item__index--2 {
    background: #f65220;
    border-color: #f65220;
    color: var(--white);
}
.article-page .hot-item__index--3 {
    background: #f0a413;
    border-color: #f0a413;
    color: var(--white);
}
.article-page .hot-item__link,
.article-page .random-item__link {
    font-size: 16px;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}
.article-page .hot-item__link:hover,
.article-page .random-item__link:hover {
    color: var(--color-primary);
}
.article-page .random-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 0;
    border-bottom: none;
}
.article-page .random-item__dot {
    width: 6px;
    height: 6px;
    background: #aaa;
    border-radius: 50%;
    flex-shrink: 0;
}
.article-page .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.article-page .tag {
    display: inline-block;
    padding: 5px 14px;
    background-color: #f0f2f5;
    color: #4a4a4a;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}
.article-page .tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    border-color: #ddd;
}
.article-page .tag--blue {
    background: #eef7ff;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.article-page .tag--blue:hover {
    border-color: var(--color-primary);
}
.article-page .pagination {
    display: flex;
    justify-content: center;
    margin: 0;
    padding-left: 0;
    list-style: none;
}
.article-page .pagination-wrapper,
.article-page .pagination-wrapper.flex.flex-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.article-page .pagination-wrapper .pagination-total {
    float: none;
    margin: 0;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.article-page .pagination > li {
    margin: 0 4px;
}
.article-page .pagination > li > a,
.article-page .pagination > li > span {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.2s;
}
.article-page .pagination > li > a:hover,
.article-page .pagination > .active > span {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}
.article-page .pagination > .disabled > span {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background-color: #fafafa;
    cursor: not-allowed;
}
@media screen and (max-width: 768px) {
    .article-page {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .article-page .category-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 16px;
    }
    .article-page .category-tab {
        text-align: center;
        padding: 8px 4px;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .article-page .article-list,
    .article-page .side-card,
    .article-page .category-tabs {
        padding-left: 12px;
        padding-right: 12px;
    }
    .article-page .article-item {
        flex-direction: column;
        gap: 12px;
    }
    .article-page .article-item__img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .article-page .article-item__title {
        font-size: 20px;
        line-height: 1.3;
    }
    .article-page .article-meta {
        gap: 12px;
        font-size: 13px;
    }
    .article-page .pagination > li > a,
    .article-page .pagination > li > span {
        padding: 5px 10px;
        font-size: 13px;
    }
    .article-page .pagination-wrapper,
    .article-page .pagination-wrapper.flex.flex-end {
        display: block !important;
        width: 100%;
        overflow-x: hidden;
    }
    .article-page .pagination-wrapper .pagination {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 6px;
        margin-top: 0;
    }
    .article-page .pagination > li {
        margin: 0;
    }
    .article-page .hot-item__link,
    .article-page .random-item__link {
        white-space: normal;
        word-break: break-word;
        font-size: 14px;
    }
    .article-page .hot-item__index {
        width: 20px;
        height: 20px;
        font-size: 11px;
        line-height: 18px;
    }
}
@media screen and (max-width: 480px) {
    .article-page .article-list,
    .article-page .side-card,
    .article-page .category-tabs {
        padding-left: 8px;
        padding-right: 8px;
    }
}
@media screen and (max-width: 375px) {
    .article-page .category-tabs {
        grid-template-columns: 1fr;
    }
    .article-page .category-tab {
        white-space: normal;
        word-break: break-word;
        padding: 6px 8px;
    }
    .article-page .article-item__title {
        font-size: 18px;
    }
    .article-page .pagination > li > a,
    .article-page .pagination > li > span {
        padding: 4px 8px;
        font-size: 12px;
    }
    .article-page .hot-item__link,
    .article-page .random-item__link {
        font-size: 13px;
    }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
    .article-page .category-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .article-page .category-tab {
        padding: 7px 16px;
        font-size: 14px;
    }
    .article-page .article-item__img {
        width: 170px;
        height: 120px;
        aspect-ratio: auto;
    }
    .article-page .article-item__title {
        font-size: 20px;
    }
}
@media screen and (min-width: 1600px) {
    .article-page .article-item__img {
        width: 220px;
        height: 160px;
    }
    .article-page .article-item__title {
        font-size: 24px;
    }
    .article-page .main-grid__right {
        width: 320px;
    }
}

/* ---------- 文章详情页 (article_details) ---------- */
.article-detail-page {
    min-height: 67vh;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.article-detail-page .main-grid__left .article-detail,
.article-detail-page .main-grid__right .side-card {
    background-color: #ffffff !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05) !important;
    padding: 28px 30px !important;
    margin-bottom: 24px !important;
    transition: box-shadow 0.2s ease;
}
.article-detail-page .main-grid__right .side-card {
    padding: 24px 22px !important;
}
.article-detail-page .article-detail__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
    word-break: break-word;
}
.article-detail-page .article-detail__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 20px;
}
.article-detail-page .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-gray);
    font-size: 14px;
}
.article-detail-page .side-card > .side-card__title {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    padding-left: 0 !important;
    border-left: none;
}
.article-detail-page .side-card > .hot-item,
.article-detail-page .side-card > .random-item,
.article-detail-page .side-card > .tag-cloud {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.article-detail-page .hot-item,
.article-detail-page .random-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #edf2f7;
}
.article-detail-page .hot-item:last-child,
.article-detail-page .random-item:last-child {
    border-bottom: none;
}
.article-detail-page .hot-item__index {
    width: 22px;
    height: 22px;
    background: #dee2e6;
    border: 1px solid #c4c4c4;
    color: #515355;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}
.article-detail-page .hot-item__index--1 {
    background: #f62020;
    border-color: #f62020;
    color: var(--white);
}
.article-detail-page .hot-item__index--2 {
    background: #f65220;
    border-color: #f65220;
    color: var(--white);
}
.article-detail-page .hot-item__index--3 {
    background: #f0a413;
    border-color: #f0a413;
    color: var(--white);
}
.article-detail-page .hot-item__link,
.article-detail-page .random-item__link {
    font-size: 16px;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}
.article-detail-page .hot-item__link:hover,
.article-detail-page .random-item__link:hover {
    color: var(--color-primary);
}
.article-detail-page .random-item__dot {
    width: 6px;
    height: 6px;
    background: #aaa;
    border-radius: 50%;
    flex-shrink: 0;
}
.article-detail-page .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.article-detail-page .tag {
    display: inline-block;
    padding: 5px 14px;
    background-color: #f0f2f5;
    color: #4a4a4a;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}
.article-detail-page .tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    border-color: #ddd;
}
.article-detail-page .tag--blue {
    background: #eef7ff;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.article-detail-page .tag--blue:hover {
    border-color: var(--color-primary);
}
.article-detail-page .article-detail__content {
    line-height: 1.8;
}
.article-detail-page .article-detail__content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}
.article-detail-page .article-detail__content pre,
.article-detail-page .article-detail__content .hljs {
    background: #0f172a !important;
    border-radius: 14px !important;
    padding: 20px !important;
    overflow-x: auto;
    font-size: 15px;
    line-height: 1.6;
    color: #e2e8f0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.article-detail-page .article-detail__content code {
    font-family: 'Fira Code', 'JetBrains Mono', 'Cascadia Code', 'Consolas', monospace !important;
    font-size: 14px;
    background: transparent !important;
    color: #e2e8f0;
    padding: 0 !important;
    border-radius: 0;
}
.article-detail-page .article-detail__content code:not(pre code) {
    background: #eef2f6 !important;
    color: #dc2626 !important;
    padding: 2px 8px !important;
    border-radius: 6px;
    font-size: 0.9em;
}
.article-detail-page .article-detail__abstract {
    background-color: #f1f5f9;
    border-left: 5px solid #3b82f6;
    padding: 18px 22px;
    border-radius: 12px;
    margin: 28px 0;
    color: #334155;
}
.article-detail-page .article-nav {
    background: #f8fafc;
    border-radius: 18px;
    padding: 24px;
    margin: 40px 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
    width: 100%;
}
.article-detail-page .article-nav__prev,
.article-detail-page .article-nav__next {
    min-width: 0;
    padding: 14px 16px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e6edf5;
    cursor: pointer;
}
.article-detail-page .article-nav__prev {
    grid-column: 1;
}
.article-detail-page .article-nav__next {
    grid-column: 2;
    text-align: right;
}
.article-detail-page .article-nav__label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}
.article-detail-page .article-nav__title {
    display: block;
    color: #0f172a;
    font-size: 16px;
    line-height: 1.55;
    text-decoration: none;
    word-break: break-word;
}
.article-detail-page .article-nav__title:hover {
    color: var(--color-primary);
}
.article-detail-page .related-articles {
    margin-top: 40px;
}
.article-detail-page .related-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}
.article-detail-page .related-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.article-detail-page .related-item {
    background: #ffffff;
    border: 1px solid #e9eef2;
    border-radius: 16px;
    padding: 12px;
    transition: all 0.2s;
    cursor: pointer;
}
.article-detail-page .related-item:hover {
    border-color: #94a3b8;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.02);
}
.article-detail-page .related-item__img {
    width: 100%;
    height: 133px;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    background: #eef2f7;
    margin-bottom: 10px;
}
.article-detail-page .related-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.article-detail-page .related-item__title {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article-detail-page .related-item__brief {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 768px) {
    .article-detail-page .main-grid__left .article-detail,
    .article-detail-page .main-grid__right .side-card {
        padding: 20px 18px !important;
    }
    .article-detail-page .article-detail__title {
        font-size: 24px;
    }
    .article-detail-page .article-detail__meta {
        flex-wrap: wrap;
        gap: 8px;
    }
    .article-detail-page .article-detail__content pre,
    .article-detail-page .article-detail__content .hljs {
        padding: 16px !important;
    }
    .article-detail-page .article-nav {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    .article-detail-page .article-nav__next {
        text-align: left;
    }
    .article-detail-page .related-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .article-detail-page .hot-item__link,
    .article-detail-page .random-item__link {
        white-space: normal;
        word-break: break-word;
        font-size: 14px;
    }
    .article-detail-page .hot-item__index {
        width: 20px;
        height: 20px;
        font-size: 11px;
        line-height: 18px;
    }
}
@media (max-width: 520px) {
    .article-detail-page .related-list {
        grid-template-columns: 1fr;
    }
}

/* ---------- 企业合作 (page_cooperate) ---------- */
.cooperate-page {
    min-height: 67vh;
    background: #f7f7f7;
}
.cooperate-page .animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.cooperate-page .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.cooperate-page .animate-on-scroll.zoom {
    opacity: 0;
    transform: scale(0.9);
}
.cooperate-page .animate-on-scroll.zoom.visible {
    opacity: 1;
    transform: scale(1);
}
.cooperate-page .firm-top-bg {
    background-image: url(../images/firm/firm-top-bg.png);
    background-size: 100% 100%;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}
.cooperate-page .firm-top-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}
.cooperate-page .firm-top-title {
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}
.cooperate-page .firm-top-title .wqdff {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}
.cooperate-page .firm-top-title .terwt {
    font-size: 16px;
    opacity: 0.9;
    line-height: 25px;
}
.cooperate-page .cooperate-advantages-section {
    width: 100%;
}
.cooperate-page .cooperate-advantages-panel {
    max-width: 1334px;
    margin: 0 auto;
    padding: 0 10px;
}
.cooperate-page .firm-title {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}
.cooperate-page .c_b3b3b3 {
    color: #b3b3b3;
}
.cooperate-page .ft20 {
    font-size: 20px;
}
.cooperate-page .flex-one {
    flex: 1;
}
.cooperate-page .cooperate-advantages-grid {
    flex-wrap: wrap;
}
.cooperate-page .cooperate-advantages-item {
    margin-bottom: 30px;
}
.cooperate-page .firm-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.cooperate-page .firm-img:hover {
    transform: scale(1.1) rotate(5deg);
}
.cooperate-page .firm-ss-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-top: 10px;
}
.cooperate-page .firm-ss-content {
    font-size: 16px;
    color: #b3b3b3;
    max-width: 226px;
    margin: 10px auto 0;
    line-height: 1.5;
}
.cooperate-page .faq-section {
    background: #fff;
    padding: 60px 0;
}
.cooperate-page .process-steps {
    display: flex;
    justify-content: space-around;
    margin: 60px 0;
    flex-wrap: wrap;
}
.cooperate-page .step-item {
    text-align: center;
    flex: 0 1 180px;
    margin: 20px;
}
.cooperate-page .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    line-height: 1;
    background: #0eb6ff;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cooperate-page .step-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(14, 182, 255, 0.3);
}
.cooperate-page .step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.cooperate-page .step-desc {
    color: #737373;
    font-size: 14px;
    line-height: 20px;
}
.cooperate-page .cooperate-faq {
    margin-top: 20px;
    margin-bottom: 20px;
}
.cooperate-page .cooperate-faq .faq-grid {
    margin-top: 20px;
}
@media screen and (max-width: 768px) {
    .cooperate-page .firm-top-bg {
        height: 300px;
        background-size: cover;
    }
    .cooperate-page .firm-top-title .wqdff,
    .cooperate-page .firm-title {
        font-size: 30px;
    }
    .cooperate-page .firm-top-title .terwt {
        font-size: 14px;
        line-height: 1.8;
    }
    .cooperate-page .cooperate-advantages-grid {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: space-between;
        gap: 12px 0;
    }
    .cooperate-page .cooperate-advantages-item {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 14px;
        padding: 0 6px;
        box-sizing: border-box;
    }
    .cooperate-page .firm-img {
        width: 64px;
        height: 64px;
        margin-bottom: 14px;
    }
    .cooperate-page .firm-ss-title {
        font-size: 16px;
    }
    .cooperate-page .firm-ss-content {
        font-size: 13px;
        line-height: 1.6;
    }
    .cooperate-page .faq-section {
        padding: 42px 0;
    }
    .cooperate-page .process-steps {
        margin: 36px 0;
        gap: 10px;
    }
    .cooperate-page .step-item {
        flex: 1 1 160px;
        margin: 12px;
    }
}
@media screen and (max-width: 480px) {
    .cooperate-page .cooperate-advantages-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .cooperate-page .process-steps {
        flex-direction: column;
        align-items: stretch;
    }
    .cooperate-page .step-item {
        flex: 1 1 auto;
    }
}
/* Card recycle face-value price layout */
.face-price-layout {
    width: 100%;
    min-height: 58px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px;
    box-sizing: border-box;
}

.face-price-original {
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ff5a1f !important;
    font-size: 18px !important;
    font-weight: 500;
    line-height: 1.2 !important;
    white-space: nowrap;
}

.face-price-meta {
    position: static !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    color: #4b5563;
    font-size: 14px !important;
    line-height: 1.2 !important;
    white-space: nowrap;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.face-price-amount,
.face-price-discount {
    position: static !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

.face-price-amount {
    color: #4b5563 !important;
}

.face-price-discount {
    color: #ff5f57 !important;
}

.face-price-divider {
    display: block !important;
    flex: 0 0 1px !important;
    width: 1px !important;
    height: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: #d1d5db !important;
    color: transparent !important;
    overflow: hidden;
}

@media (max-width: 480px) {
    .face-price-layout {
        gap: 6px;
    }

    .face-price-original {
        font-size: 16px !important;
    }

    .face-price-meta {
        gap: 6px !important;
        font-size: 13px !important;
    }
}
/* default首页移动端H5视觉优化 */
@media (max-width: 768px) {
    html {
        overflow-x: hidden;
    }

    body.default-home-page {
        overflow-x: hidden;
        background: #f6f8fb;
        color: #172033;
        -webkit-font-smoothing: antialiased;
    }

    body.default-home-page .container {
        width: 100%;
        max-width: none;
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }

    body.default-home-page .hero {
        min-height: auto;
        padding: 0 0 28px;
        border-radius: 0 0 26px 26px;
        overflow: hidden;
    }

    body.default-home-page .hero .container {
        padding-top: 22px;
    }

    body.default-home-page .hero-title-block {
        margin: 0 auto 18px;
        text-align: center;
    }

    body.default-home-page .hero-title {
        font-size: clamp(26px, 8vw, 38px);
        line-height: 1.18;
        letter-spacing: 0;
        white-space: normal;
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
    }

    body.default-home-page .search-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    body.default-home-page .search-box {
        height: 50px;
        padding: 5px 5px 5px 16px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 12px 28px rgba(34, 98, 255, 0.16);
        box-sizing: border-box;
    }

    body.default-home-page .search-input {
        min-width: 0;
        height: 40px;
        font-size: 14px;
    }

    body.default-home-page #searchLink,
    body.default-home-page .search-btn {
        width: 44px;
        min-width: 44px;
        height: 44px;
        border-radius: 50%;
    }

    body.default-home-page .search-btn img {
        width: 18px;
        height: 18px;
    }

    body.default-home-page .search-suggestions {
        margin-top: 10px;
        padding: 0 4px 2px;
        font-size: 12px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.86);
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    body.default-home-page .search-suggestions::-webkit-scrollbar {
        display: none;
    }

    body.default-home-page .quick-cards {
        position: relative;
        width: auto;
        max-width: none;
        margin: -14px 16px 18px;
        padding: 12px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 14px 34px rgba(22, 34, 56, 0.10);
        box-sizing: border-box;
    }

    body.default-home-page .quick-card {
        width: auto;
        min-width: 0;
        height: auto;
        padding: 14px 8px 12px;
        border-radius: 16px;
        background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
        box-shadow: none;
        box-sizing: border-box;
    }

    body.default-home-page .quick-card .flex-center {
        height: 46px;
    }

    body.default-home-page .quick-card img {
        max-width: 42px;
        max-height: 42px;
    }

    body.default-home-page .quick-card .title {
        margin: 8px 0 10px;
        font-size: 14px;
        line-height: 1.25;
    }

    body.default-home-page .quick-card button {
        min-width: 96px;
        height: 36px;
        padding: 0 12px;
        border-radius: 999px;
        font-size: 13px;
    }

    body.default-home-page .process-section,
    body.default-home-page .features-section,
    body.default-home-page .cards-section,
    body.default-home-page .news-section,
    body.default-home-page .faq-section,
    body.default-home-page .cta-section {
        padding: 26px 0;
        margin: 0;
    }

    body.default-home-page .section-title {
        font-size: 21px;
        line-height: 1.32;
        text-align: center;
        margin-bottom: 8px;
    }

    body.default-home-page .section-subtitle {
        max-width: 280px;
        margin: 0 auto 18px;
        font-size: 13px;
        line-height: 1.55;
        text-align: center;
        color: #6d7788;
    }

    body.default-home-page .process-steps {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    body.default-home-page .process-step {
        position: relative;
        min-height: 0;
        padding: 14px 14px 14px 76px;
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 10px 26px rgba(29, 48, 78, 0.07);
        text-align: left;
        box-sizing: border-box;
    }

    body.default-home-page .step-number {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        margin: 0;
    }

    body.default-home-page .step-number span {
        width: 22px;
        height: 22px;
        line-height: 22px;
        font-size: 12px;
    }

    body.default-home-page .step-number img {
        width: 48px;
        height: 48px;
        object-fit: contain;
    }

    body.default-home-page .step-title {
        margin: 0 0 5px;
        font-size: 15px;
        line-height: 1.35;
    }

    body.default-home-page .step-desc {
        font-size: 12px;
        line-height: 1.55;
        color: #7a8495;
    }

    body.default-home-page .features-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    body.default-home-page .feature-item {
        min-width: 0;
        padding: 16px 10px;
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 10px 26px rgba(29, 48, 78, 0.07);
    }

    body.default-home-page .feature-item img {
        width: 42px;
        height: 42px;
        object-fit: contain;
    }

    body.default-home-page .feature-title {
        margin-top: 10px;
        font-size: 15px;
    }

    body.default-home-page .feature-desc {
        margin-top: 6px;
        font-size: 12px;
        line-height: 1.55;
    }

    body.default-home-page .cards-scroll {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 4px 0 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    body.default-home-page .cards-scroll::-webkit-scrollbar {
        display: none;
    }

    body.default-home-page .cards-row,
    body.default-home-page .cards-row-left {
        width: max-content;
        min-width: 100%;
        gap: 12px;
    }

    body.default-home-page .cards-row > div,
    body.default-home-page .cards-row-left > div {
        width: 126px;
        min-width: 126px;
        min-height: 148px;
        padding: 8px 8px 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
        box-shadow: 0 10px 24px rgba(29, 48, 78, 0.08);
        box-sizing: border-box;
        overflow: visible;
    }

    body.default-home-page .card-icon {
        width: 110px;
        height: 110px;
        margin: 0 auto 6px;
        flex: 0 0 110px;
        transform: none;
        border-radius: 14px;
        background-color: #ffffff;
        background-repeat: no-repeat;
        box-shadow: none;
        box-sizing: border-box;
    }

    body.default-home-page .card-label {
        font-size: 12px;
        line-height: 1.35;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
    }

    body.default-home-page .news-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    body.default-home-page .news-item {
        display: grid;
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 10px 26px rgba(29, 48, 78, 0.07);
        box-sizing: border-box;
    }

    body.default-home-page .news-thumb {
        width: 96px;
        height: 76px;
        border-radius: 12px;
        overflow: hidden;
    }

    body.default-home-page .news-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    body.default-home-page .news-content {
        min-width: 0;
    }

    body.default-home-page .news-title {
        margin: 0 0 6px;
        font-size: 15px;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    body.default-home-page .news-summary {
        margin: 0;
        font-size: 12px;
        line-height: 1.45;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    body.default-home-page .news-meta {
        margin-top: 7px;
        font-size: 11px;
        color: #99a2b2;
    }

    body.default-home-page .faq-tabs {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    body.default-home-page .faq-tabs::-webkit-scrollbar {
        display: none;
    }

    body.default-home-page .faq-tab {
        flex: 0 0 auto;
        min-height: 38px;
        padding: 0 14px;
        border-radius: 999px;
        white-space: nowrap;
        box-sizing: border-box;
    }

    body.default-home-page .faq-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 12px;
    }

    body.default-home-page .faq-item {
        padding: 14px;
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 10px 26px rgba(29, 48, 78, 0.07);
    }

    body.default-home-page .faq-question {
        font-size: 15px;
        line-height: 1.45;
    }

    body.default-home-page .faq-answer {
        margin-top: 7px;
        font-size: 12px;
        line-height: 1.6;
    }

    body.default-home-page .cta-section {
        margin: 0 16px 24px;
        padding: 24px 16px calc(24px + env(safe-area-inset-bottom));
        border-radius: 22px;
        background-size: cover;
        box-sizing: border-box;
    }

    body.default-home-page .cta-title {
        font-size: 22px;
        line-height: 1.35;
    }

    body.default-home-page .cta-subtitle {
        margin-top: 8px;
        font-size: 13px;
        line-height: 1.55;
    }

    body.default-home-page .cta-btn {
        min-width: 148px;
        height: 46px;
        margin-top: 16px;
        border-radius: 999px;
        font-size: 15px;
    }
}

@media (max-width: 374px) {
    body.default-home-page .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    body.default-home-page .quick-cards {
        margin-left: 12px;
        margin-right: 12px;
        padding: 10px;
    }

    body.default-home-page .quick-card button {
        min-width: 86px;
        padding: 0 10px;
    }

    body.default-home-page .news-item {
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 10px;
    }

    body.default-home-page .news-thumb {
        width: 86px;
        height: 70px;
    }
}

/* default卡券回收页移动端H5优化 */
.tt-login-modal {
    padding: 10px 0 0;
    background: #fff;
}

.tt-login-title {
    margin: 0 0 18px;
    padding: 0 16px;
    color: #0f172a;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.tt-login-tabs {
    display: flex;
    gap: 26px;
    margin-bottom: 14px;
    padding: 0 16px;
    border-bottom: 1px solid #e5e7eb;
}

.tt-login-tab {
    position: relative;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #475569;
    font-size: 16px;
    cursor: pointer;
}

.tt-login-tab.is-active {
    color: #0f172a;
    font-weight: 600;
}

.tt-login-tab.is-active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: #0eb6ff;
}

.tt-login-body {
    padding: 0 16px 16px;
}

.tt-login-field {
    margin-bottom: 12px;
}

.tt-login-input {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #d7e2ee;
    border-radius: 8px;
    outline: none;
    background: #f8fafc;
    font-size: 14px;
    box-sizing: border-box;
}

.tt-login-input:focus {
    border-color: #0eb6ff;
}

.tt-login-row {
    display: flex;
    gap: 10px;
}

.tt-login-row .tt-login-input {
    flex: 1;
    min-width: 0;
}

.tt-login-code-btn {
    flex: 0 0 100px;
    height: 42px;
    border: 1px solid #cfdbe8;
    border-radius: 8px;
    background: #f3f7fb;
    color: #0f172a;
    font-size: 13px;
    cursor: pointer;
}

.tt-login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0 14px;
    color: #0f172a;
    font-size: 14px;
}

.tt-login-options label {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tt-login-options input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: #0eb6ff;
}

.tt-login-options a {
    color: #0ea5e9;
    text-decoration: none;
}

.tt-login-submit {
    width: 100%;
    height: 42px;
    margin-top: 4px;
    border: 0;
    border-radius: 8px;
    background: #0eb6ff;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.tt-login-submit[disabled] {
    opacity: .7;
    cursor: not-allowed;
}

.layui-layer.tt-login-layer {
    border-radius: 20px !important;
    overflow: visible !important;
}

.layui-layer.tt-login-layer .layui-layer-content {
    border-radius: 20px !important;
    overflow: hidden;
}

.layui-layer.tt-login-layer .layui-layer-setwin {
    top: 10px !important;
    right: 10px !important;
    z-index: 12;
}

@media (max-width: 768px) {
    .tt-login-title {
        font-size: 20px;
    }

    .tt-login-tabs {
        gap: 20px;
    }

    .tt-login-code-btn {
        flex-basis: 96px;
    }
}

@media (max-width: 768px) {
    html {
        overflow-x: hidden;
    }

    body.default-card-recycle-page {
        overflow-x: hidden;
        background: #f5f7fb;
        color: #172033;
        -webkit-font-smoothing: antialiased;
    }

    .search-card {
        background: #f5f7fb;
    }

    .search-style-4 {
        margin-bottom: 0;
        padding: 18px 0 20px;
        background-size: cover;
        background-position: center;
        border-radius: 0 0 24px 24px;
        overflow: hidden;
    }

    .search-style-4 .search-bar__inner {
        width: 100%;
        padding: 0 14px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        box-sizing: border-box;
    }

    .search-style-4 .search-bar__inner > img {
        width: 150px;
        max-width: 48vw;
        height: auto;
        margin: 0 auto;
        object-fit: contain;
    }

    .search-style-4 .search-box {
        flex: none;
        width: 100%;
        min-width: 0;
        height: 48px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(14, 182, 255, 0.16);
        box-shadow: 0 12px 28px rgba(15, 36, 70, 0.14);
        box-sizing: border-box;
    }

    .search-style-4 .search-input {
        min-width: 0;
        height: 100%;
        padding: 0 14px 0 18px;
        font-size: 14px;
    }

    .search-style-4 .search-input::placeholder {
        font-size: 13px;
        color: #8b97a8;
    }

    .search-style-4 .search-button {
        width: 48px;
        min-width: 48px;
        height: 48px;
        color: #0eb6ff;
    }

    .search-style-4 .search-button svg {
        width: 21px;
        height: 21px;
    }

    .card-recycle-main {
        width: 100%;
        max-width: none;
        margin-top: 12px;
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }

    .card-recycle-main .card,
    .card-recycle-main .submit-area {
        margin-bottom: 12px;
        padding: 16px 14px;
        border-radius: 20px;
        border: 1px solid rgba(226, 232, 240, 0.9);
        background: #ffffff;
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
        box-sizing: border-box;
    }

    .card-recycle-main .card:hover {
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    }

    .card-recycle-main .card__title {
        margin-bottom: 14px;
        align-items: center;
    }

    .card-recycle-main .card__title-bar {
        width: 4px;
        height: 18px;
        margin-right: 9px;
        border-radius: 999px;
        background: linear-gradient(180deg, #15c2ff 0%, #0b8fff 100%);
    }

    .card-recycle-main .card__title-text {
        font-size: 16px;
        line-height: 1.35;
        font-weight: 700;
        color: #101828;
    }

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

    .category-item {
        min-height: 48px;
        padding: 9px 10px;
        border-radius: 14px;
        justify-content: flex-start;
        gap: 8px;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.10);
    }

    .category-item__icon {
        width: 28px;
        height: 28px;
    }

    .category-item__name {
        min-width: 0;
        font-size: 13px;
        line-height: 1.3;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .category-item.active {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35), 0 10px 20px rgba(15, 23, 42, 0.16);
    }

    .card-recycle-pinyin-filter {
        margin: 0 -2px 12px;
        padding-bottom: 5px;
        display: flex;
        align-items: center;
        gap: 7px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .card-recycle-pinyin-filter::-webkit-scrollbar {
        display: none;
    }

    .card-recycle-pinyin-filter__label {
        flex: 0 0 auto;
        font-size: 12px;
        color: #667085;
    }

    .card-recycle-pinyin-filter__item {
        flex: 0 0 auto;
        min-width: 34px;
        height: 32px;
        padding: 0 10px;
        border-radius: 999px;
        font-size: 12px;
    }

    #goodsCard .goods-grid,
    #faceCard .face-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    #goodsCard .goods-item {
        width: auto !important;
        min-width: 0;
        min-height: 112px;
        padding: 14px 8px 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        border-color: #e7eef8;
        background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
        box-sizing: border-box;
    }

    #goodsCard .goods-item.active {
        border-color: #ff7544;
        background: #fff6f2;
        box-shadow: 0 10px 22px rgba(255, 117, 68, 0.12);
    }

    #goodsCard .goods-item__img {
        width: 48px;
        height: 48px;
        margin-bottom: 9px;
    }

    #goodsCard .goods-item__name {
        width: 100%;
        font-size: 13px;
        line-height: 1.35;
        color: #263445;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #faceCard .face-item {
        width: auto !important;
        min-width: 0;
        min-height: 78px;
        padding: 12px 8px;
        border-radius: 16px;
        border-color: #e7eef8;
        background: #ffffff;
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
        box-sizing: border-box;
    }

    #faceCard .face-item.active {
        border-color: #ff7544;
        background: #fff7f3;
        box-shadow: 0 10px 22px rgba(255, 117, 68, 0.12);
    }

    .face-price-layout {
        min-height: 52px;
        gap: 6px;
    }

    .face-price-original {
        max-width: 100%;
        font-size: 15px !important;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .face-price-meta {
        gap: 6px !important;
        font-size: 12px !important;
    }

    .submit-area {
        overflow: hidden;
    }

    .submit-radio {
        margin: 0 -2px 16px;
        padding-bottom: 4px;
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .submit-radio::-webkit-scrollbar {
        display: none;
    }

    .submit-radio-label {
        flex: 0 0 auto;
        font-size: 13px;
    }

    .submit-radio-label .radio-custom {
        min-height: 38px;
        padding: 0 15px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: #f1f5f9;
        color: #344054;
    }

    .submit-radio-label .radio-hidden:checked + .radio-custom {
        background: linear-gradient(135deg, #14b8ff 0%, #0e8fff 100%);
        box-shadow: 0 8px 18px rgba(14, 182, 255, 0.22);
    }

    #singleInputContainer {
        gap: 12px !important;
        margin-bottom: 14px !important;
    }

    .single-input-group {
        width: 100%;
        min-width: 0;
    }

    .single-input-group label {
        margin-bottom: 7px;
        font-size: 13px;
        color: #667085;
    }

    .single-input-group input,
    #textPanel textarea {
        width: 100%;
        min-height: 46px;
        padding: 0 13px;
        border-radius: 13px;
        border: 1px solid #d9e4f2;
        background: #fbfdff;
        font-size: 14px;
        box-sizing: border-box;
    }

    #textPanel textarea {
        min-height: 120px;
        padding: 12px 13px;
        line-height: 1.6;
    }

    .submit-textarea {
        gap: 12px;
    }

    .submit-textarea__field,
    #batchPanel .submit-textarea__field {
        flex: 1 1 100%;
        width: 100%;
        min-width: 0;
    }

    .submit-textarea__field .line-numbered-textarea {
        min-height: 188px;
        border-radius: 16px;
        border-color: #d9e4f2;
        box-shadow: none;
    }

    .line-numbers {
        width: 36px;
        font-size: 12px;
    }

    .line-numbered-textarea textarea,
    .submit-textarea__field .line-numbered-textarea textarea {
        min-height: 188px;
        padding: 10px 10px 10px 12px;
        font-size: 13px;
        line-height: 26px;
    }

    .submit-tip,
    #batchPanel .submit-tip {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        padding: 14px;
        border-radius: 16px;
        box-shadow: none;
        box-sizing: border-box;
    }

    .submit-tip .text-main {
        font-size: 14px;
    }

    .submit-tip .text-muted {
        margin-top: 8px;
        font-size: 12px;
        line-height: 1.65;
    }

    .upload-area {
        padding: 26px 14px;
        border-radius: 18px;
        background: linear-gradient(180deg, #fbfdff 0%, #f4f9ff 100%);
    }

    .upload-area__icon {
        margin-bottom: 8px;
        font-size: 34px;
    }

    .upload-area__text {
        font-size: 14px;
    }

    .upload-preview-list {
        margin-top: 12px;
    }

    .text-muted,
    #singleHint,
    #globalFaceRemark,
    #countDisplay {
        font-size: 12px;
        line-height: 1.65;
    }

    .mt24.flex.alcenter {
        gap: 10px;
        align-items: stretch;
    }

    .btn-light {
        width: 100%;
        height: 42px;
        border-radius: 999px;
        font-size: 14px;
    }

    .submit-footer {
        margin-top: 18px;
        padding-top: 18px;
        border-top-color: #e5eaf2;
    }

    .submit-footer__checkbox {
        margin-bottom: 14px;
        padding: 12px;
        border-radius: 16px;
        background: #f8fbff;
        border: 1px solid #edf2f7;
    }

    .submit-footer__checkbox label {
        margin-bottom: 9px;
        display: flex;
        align-items: flex-start;
        gap: 7px;
        font-size: 12px;
        line-height: 1.55;
        color: #475467;
    }

    .submit-footer__checkbox input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-top: 2px;
        flex: 0 0 auto;
        accent-color: #0eb6ff;
    }

    .submit-footer__button {
        width: 100%;
        max-width: none;
        height: 48px;
        border-radius: 999px;
        font-size: 15px;
        box-shadow: 0 12px 24px rgba(14, 182, 255, 0.26);
    }

    .submit-login-mask {
        border-radius: 20px;
    }

    .submit-login-mask__content {
        width: calc(100% - 32px);
        padding: 20px 16px;
        border-radius: 18px;
        box-sizing: border-box;
    }

    .submit-login-mask__tip {
        font-size: 14px;
        line-height: 1.6;
    }

    .submit-login-mask__btn {
        min-height: 42px;
        padding: 0 20px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .bottom-info {
        gap: 12px;
        margin: 12px 0 18px;
    }

    .bottom-info__notice .notice-content {
        max-height: none;
        overflow: visible;
        overflow-wrap: anywhere;
        word-break: break-word;
        font-size: 13px;
        line-height: 1.75;
        color: #475467;
    }

    .bottom-info__notice .notice-content img,
    .bottom-info__notice .notice-content video,
    .bottom-info__notice .notice-content iframe {
        max-width: 100%;
        height: auto;
    }

    .bottom-info__notice .notice-content table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
    }

    .bottom-info__articles .article-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bottom-info__articles .article-item {
        display: grid;
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 10px;
        align-items: center;
        padding: 10px;
        border-radius: 16px;
        background: #f8fbff;
        border: 1px solid #edf2f7;
    }

    .bottom-info__articles .article-item__img,
    #hotArticlesList .article-item__img {
        width: 92px !important;
        height: 68px !important;
        min-height: 68px;
        max-height: 68px;
        margin: 0;
        border-radius: 12px;
    }

    .bottom-info__articles .article-item__title {
        margin-bottom: 4px;
        font-size: 14px;
        line-height: 1.45;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .bottom-info__articles .article-item__brief {
        font-size: 12px;
        line-height: 1.45;
    }
}

@media (max-width: 374px) {
    .card-recycle-main {
        padding-left: 10px;
        padding-right: 10px;
    }

    .card-recycle-main .card,
    .card-recycle-main .submit-area {
        padding-left: 12px;
        padding-right: 12px;
    }

    .category-grid,
    #goodsCard .goods-grid,
    #faceCard .face-grid {
        gap: 8px;
    }

    #goodsCard .goods-item__img {
        width: 44px;
        height: 44px;
    }
}
