/*
 * 搜盘鸭 Editorial Search UI
 * 方向：成熟中文搜索产品。搜索和真实内容优先，装饰退后。
 */
:root {
    --duck-yellow: #f7b500;
    --duck-yellow-deep: #d99600;
    --duck-yellow-soft: #fff8df;
    --duck-ink: #16181d;
    --duck-text: #283341;
    --duck-muted: #778291;
    --duck-line: #e3e7ec;
    --duck-line-dark: #cfd5dc;
    --duck-canvas: #f5f6f8;
    --duck-surface: #fff;
    --duck-blue: #245ec7;
    --duck-green: #168367;
    --duck-shadow: 0 8px 28px rgba(24, 32, 43, .06);
}

/* R41：前台会员中心。继续沿用站点黄/墨色视觉，不改变公开搜索主流程。 */
.accountPage {
    background: #f4f6f8;
}

.accountShell {
    width: min(1120px, calc(100% - 32px));
    margin: 34px auto 56px;
}

.accountAuthShell {
    display: grid;
    min-height: 620px;
    place-items: center;
}

.accountAuthCard,
.accountTopbar,
.accountPanel {
    box-sizing: border-box;
    border: 1px solid #dfe4e9;
    border-radius: 14px;
    background: #fff;
}

.accountAuthCard {
    width: min(480px, 100%);
    padding: 38px 42px;
    box-shadow: 0 18px 50px rgba(18, 28, 40, .08);
}

.accountAuthBrand {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    border-radius: 13px;
    background: #ffb800;
    color: #172033;
    font-size: 28px;
    font-weight: 900;
    place-items: center;
}

.accountEyebrow {
    margin: 0 0 8px;
    color: #9b7000;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
}

.accountAuthCard h1,
.accountTopbar h1,
.accountPanel h2 {
    margin: 0;
    color: #111827;
    line-height: 1.25;
}

.accountAuthCard h1,
.accountTopbar h1 {
    font-size: 30px;
}

.accountPanel h2 {
    font-size: 20px;
}

.accountLead,
.accountPanelHint {
    color: #687386;
    line-height: 1.75;
}

.accountLead {
    margin: 12px 0 24px;
}

.accountForm {
    display: grid;
    gap: 16px;
}

.accountForm label {
    display: grid;
    gap: 7px;
    color: #283447;
    font-size: 14px;
    font-weight: 700;
}

.accountForm label em {
    color: #8b95a3;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
}

.accountForm input,
.accountForm select,
.accountForm textarea,
.accountKeyRow input {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid #cfd6df;
    border-radius: 8px;
    outline: 0;
    background: #fff;
    color: #172033;
    font: inherit;
}

.accountForm input,
.accountForm select,
.accountKeyRow input {
    height: 46px;
    padding: 0 13px;
}

.accountForm textarea {
    min-height: 92px;
    padding: 12px 13px;
    resize: vertical;
}

.accountForm input:focus,
.accountForm select:focus,
.accountForm textarea:focus,
.accountKeyRow input:focus {
    border-color: #d99d00;
    box-shadow: 0 0 0 3px rgba(255, 184, 0, .14);
}

.accountHoney {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.accountPrimaryButton,
.accountGhostButton,
.accountKeyRow button {
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
}

.accountPrimaryButton {
    min-height: 46px;
    padding: 0 20px;
    background: #ffb800;
    color: #172033;
}

.accountPrimaryButton:hover {
    background: #f2ab00;
}

.accountPrimaryButton:disabled,
.accountGhostButton:disabled,
.accountKeyRow button:disabled {
    cursor: wait;
    opacity: .6;
}

.accountSwitch {
    margin: 22px 0 8px;
    color: #697587;
    text-align: center;
}

.accountSwitch a,
.accountBackLink,
.accountPanelHead a {
    color: #8c6500;
    font-weight: 700;
}

.accountBackLink {
    display: inline-block;
    margin-top: 14px;
    font-size: 13px;
}

.accountFormMessage {
    min-height: 20px;
    margin-top: 10px;
    font-size: 13px;
}

.accountFormMessage.is-error {
    color: #d83232;
}

.accountFormMessage.is-success {
    color: #14805e;
}

.accountTopbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding: 28px 32px;
}

.accountTopbar .accountLead {
    margin: 8px 0 0;
}

.accountGhostButton {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #d6dce4;
    background: #fff;
    color: #3d495a;
}

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

.accountPanel {
    min-width: 0;
    padding: 26px;
}

.accountPanelHead {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.accountPanelHead > span,
.accountPanelHead > a {
    flex: 0 0 auto;
    color: #7b8797;
    font-size: 13px;
}

.accountPanelHint {
    margin: 13px 0 18px;
    font-size: 14px;
}

.accountKeyRow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
}

.accountKeyRow input {
    background: #f7f8fa;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.accountKeyRow button {
    min-width: 62px;
    padding: 0 12px;
    border: 1px solid #d5dce5;
    background: #fff;
    color: #445064;
}

.accountApiMeta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
    color: #7c8796;
    font-size: 13px;
}

.accountCompactButton {
    min-height: 38px;
}

.accountSubmitPanel {
    grid-row: span 2;
}

.accountReviewPanel {
    grid-column: 1 / -1;
}

.accountFormSplit {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 12px;
}

.accountRecordList,
.accountSubmissionList {
    display: grid;
    margin-top: 16px;
}

.accountRecordList a,
.accountSubmissionList article {
    padding: 13px 0;
    border-top: 1px solid #edf0f3;
}

.accountRecordList a:first-child,
.accountSubmissionList article:first-child {
    border-top: 0;
}

.accountRecordList a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #1f2937;
}

.accountRecordList span,
.accountSubmissionList span {
    color: #8a94a3;
    font-size: 12px;
}

.accountSubmissionList article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 14px;
}

.accountSubmissionList article > div {
    display: grid;
    gap: 5px;
}

.accountSubmissionList article > b {
    align-self: start;
    padding: 4px 8px;
    border-radius: 999px;
    background: #fff3cd;
    color: #8a6500;
    font-size: 12px;
}

.accountSubmissionList article > b.is-status-1 {
    background: #dff7ee;
    color: #117a59;
}

.accountSubmissionList article > b.is-status-2 {
    background: #fde8e8;
    color: #b22e2e;
}

.accountSubmissionList article > p {
    grid-column: 1 / -1;
    margin: 2px 0 0;
    color: #778293;
    font-size: 13px;
}

.accountEmpty {
    margin-top: 18px;
    padding: 24px;
    border-radius: 9px;
    background: #f7f8fa;
    color: #7b8696;
    text-align: center;
}

@media (max-width: 768px) {
    .accountShell {
        width: calc(100% - 24px);
        margin: 18px auto 34px;
    }

    .accountAuthShell {
        min-height: auto;
    }

    .accountAuthCard,
    .accountTopbar,
    .accountPanel {
        border-radius: 11px;
    }

    .accountAuthCard {
        padding: 28px 22px;
    }

    .accountAuthCard h1,
    .accountTopbar h1 {
        font-size: 25px;
    }

    .accountTopbar {
        align-items: flex-start;
        padding: 22px;
    }

    .accountGrid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .accountPanel {
        padding: 21px 18px;
    }

    .accountSubmitPanel {
        grid-row: auto;
    }

    .accountFormSplit {
        grid-template-columns: 1fr;
    }

    .accountKeyRow {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .accountKeyRow button:last-child {
        grid-column: 1 / -1;
        min-height: 40px;
    }

    .accountRecordList a {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 420px) {
    .accountTopbar {
        flex-direction: column;
        gap: 18px;
    }

    .accountGhostButton {
        width: 100%;
    }
}

html,
body {
    color: var(--duck-ink);
    background: var(--duck-canvas);
    font-family: "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before,
.headBg {
    display: none !important;
}

::selection {
    color: var(--duck-ink);
    background: #ffe28b;
}

:where(a, button, summary, [role="button"]):focus-visible {
    outline: 2px solid var(--duck-ink) !important;
    outline-offset: 3px;
}

.heroSearch input:focus-visible,
.networkSearchForm input:focus-visible,
.headerBox .search input:focus-visible,
.searchDetail input:focus-visible,
.searchList input:focus-visible {
    outline: 0 !important;
}

/* 顶部导航：白底、紧凑、稳定，不使用玻璃效果 */
.headerBox,
.homeExperience .headerBox,
.headerBox.isScrolled,
.homeExperience .headerBox.isScrolled {
    height: 70px;
    border-bottom: 1px solid var(--duck-line);
    background: rgba(255, 255, 255, .98);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.headerKox {
    height: 70px;
}

.headerBox .box {
    width: min(1180px, calc(100% - 40px));
}

.brandMark {
    width: 38px;
    height: 38px;
    border: 1px solid #e2a700;
    border-radius: 7px;
    color: var(--duck-ink);
    background: var(--duck-yellow);
    box-shadow: none;
    font-size: 18px;
}

.headerBox .box .logoBox .title,
.homeExperience .headerBox .box .logoBox .title {
    margin-left: 10px;
    color: var(--duck-ink);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -.03em;
}

.headerBox .box .navs {
    gap: 25px;
}

.headerBox .box .navs .item,
.headerBox .box .navs a,
.headerBox .box .navs .navLink,
.homeExperience .headerBox .box .navs .item,
.homeExperience .headerBox .box .navs a,
.homeExperience .headerBox .box .navs .navLink {
    color: #4f5966;
    font-size: 14px;
    font-weight: 650;
}

.headerBox .box .navs .item:hover,
.headerBox .box .navs a:hover,
.homeExperience .headerBox .box .navs .item:hover,
.homeExperience .headerBox .box .navs a:hover {
    color: var(--duck-ink);
}

.headerBox .box .navs .navLink::after {
    bottom: -7px;
    height: 2px;
    border-radius: 0;
    background: var(--duck-yellow);
}

.headerBox .box .search,
.homeExperience .headerBox .box .search {
    max-width: 350px;
    height: 40px;
    margin-right: 31px;
    border: 1px solid var(--duck-line-dark);
    border-radius: 6px;
    color: var(--duck-ink);
    background: #f8f9fa;
    box-shadow: none;
}

.headerBox .box .search:focus-within,
.homeExperience .headerBox .box .search:focus-within {
    border-color: #9da6b1;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(247, 181, 0, .16);
}

.headerBox .box .search input,
.homeExperience .headerBox .box .search input {
    color: var(--duck-ink);
}

.headerBox .box .search input::placeholder,
.homeExperience .headerBox .box .search input::placeholder {
    color: #99a1ab;
}

.headerBox .box .search .btn {
    width: 48px;
    height: 38px;
    color: var(--duck-ink);
    background: var(--duck-yellow);
}

.homeExperience .headerBox .search {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity .18s ease, transform .18s ease;
}

.homeExperience .headerBox.isScrolled .search {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

/* 首页：搜索先于介绍，真实资源紧跟首屏 */
.homeBox {
    display: flex;
    width: min(1180px, calc(100% - 40px));
    padding-top: 30px;
    flex-direction: column;
}

.homeHero {
    order: 1;
    min-height: 0;
    overflow: visible;
    border: 1px solid var(--duck-line);
    border-top: 5px solid var(--duck-yellow);
    border-radius: 10px;
    color: var(--duck-ink);
    background: var(--duck-surface);
    box-shadow: var(--duck-shadow);
}

.homeHero::before,
.homeHero::after,
.particleField,
.heroNoise,
.heroGlow,
.heroNetwork {
    display: none !important;
}

.heroContent {
    width: min(930px, calc(100% - 80px));
    margin: 0 auto;
    padding: 58px 0 46px;
    text-align: center;
}

.heroEyebrow {
    display: inline-flex;
    min-height: 27px;
    margin: 0 0 14px;
    padding: 0 10px;
    align-items: center;
    border-radius: 4px;
    color: #755600;
    background: var(--duck-yellow-soft);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .04em;
}

.homeHero h1 {
    max-width: none;
    margin: 0;
    color: var(--duck-ink);
    font-size: clamp(38px, 4.2vw, 54px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -.055em;
}

.heroDescription {
    max-width: 720px;
    margin: 13px auto 0;
    color: #687382;
    font-size: 15px;
    line-height: 1.8;
}

.smartSearchShell {
    position: relative;
    z-index: 35;
    width: min(860px, 100%);
    margin: 27px auto 0;
    text-align: left;
}

.searchBox .heroSearch {
    width: 100%;
    height: 62px;
    margin: 0;
    padding: 5px 6px 5px 20px;
    border: 2px solid var(--duck-ink);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 5px 0 var(--duck-ink);
    transition: box-shadow .18s ease, transform .18s ease;
}

.searchBox .heroSearch:focus-within {
    border-color: var(--duck-ink);
    transform: translateY(2px);
    box-shadow: 0 3px 0 var(--duck-ink);
}

.heroSearch .searchLead {
    color: #7d8793;
}

.searchBox .heroSearch input {
    padding-left: 12px;
    color: var(--duck-ink);
    font-size: 16px;
}

.searchBox .heroSearch .btn {
    width: 108px;
    height: 48px;
    border: 0;
    border-radius: 5px;
    color: var(--duck-ink);
    background: var(--duck-yellow);
    box-shadow: none;
    font-size: 15px;
    font-weight: 850;
}

.searchBox .heroSearch .btn:hover {
    background: #ffc629;
    box-shadow: none;
    transform: none;
}

.homeHotWords {
    display: flex;
    min-height: 28px;
    margin-top: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px 15px;
    color: var(--duck-muted);
    font-size: 12px;
}

.homeHotWords > span {
    color: #9a7100;
    font-weight: 750;
}

.homeHotWords a {
    color: #606b78;
}

.homeHotWords a:hover {
    color: var(--duck-ink);
    text-decoration: underline;
    text-decoration-color: var(--duck-yellow);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.platformRow {
    margin-top: 20px;
    justify-content: center;
    gap: 9px 20px;
}

.platformLabel {
    margin-right: 0;
    color: #929aa5;
    font-size: 12px;
}

.platformChip {
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #56616e;
    background: transparent;
    backdrop-filter: none;
    font-size: 12px;
}

.platformChip img {
    border-radius: 4px;
}

/* 搜索建议：像搜索产品，不像弹出的装饰卡 */
.searchAssist {
    position: absolute;
    z-index: 50;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    overflow: hidden;
    padding: 17px 20px 19px;
    border: 1px solid var(--duck-line-dark);
    border-radius: 7px;
    color: var(--duck-ink);
    background: #fff;
    box-shadow: 0 14px 35px rgba(21, 28, 38, .13);
}

.searchAssist[hidden] {
    display: none !important;
}

.searchAssistGroup + .searchAssistGroup {
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid var(--duck-line);
}

.searchAssistHeading {
    display: flex;
    min-height: 25px;
    margin-bottom: 7px;
    align-items: center;
    gap: 8px;
}

.searchAssistHeading span {
    font-size: 13px;
    font-weight: 800;
}

.searchAssistHeading small {
    color: #9aa2ac;
    font-size: 11px;
}

.searchAssistHeading button {
    margin-left: auto;
    padding: 3px 0;
    color: #7f8995;
    background: transparent;
    cursor: pointer;
    font-size: 11px;
}

.searchAssistHeading button:hover {
    color: #c53932;
}

.searchAssistWords {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 8px;
}

.searchAssistWords a,
.searchAssistWords button {
    overflow: hidden;
    max-width: 220px;
    padding: 6px 10px;
    border: 1px solid #e4e8ed;
    border-radius: 5px;
    color: #53606e;
    background: #f8f9fa;
    cursor: pointer;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.searchAssistWords a::before,
.searchAssistWords button::before {
    display: none;
}

.searchAssistWords a:hover,
.searchAssistWords button:hover {
    border-color: #d7a51b;
    color: var(--duck-ink);
    background: var(--duck-yellow-soft);
}

/* 模块顺序：资源内容提前，说明内容后置 */
.homeDiscover { order: 2; }
.capabilityStrip { order: 3; }
.answerSection { order: 4; }
.valueSection { order: 5; }
.faqSection { order: 6; }

.homeDiscover,
.valueSection,
.faqSection {
    padding-top: 50px;
}

.homeDiscover {
    padding-top: 46px;
}

.sectionHeading {
    margin-bottom: 19px;
    align-items: end;
}

.sectionKicker,
.answerLead .sectionKicker {
    color: #987000;
    font-family: inherit;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .04em;
}

.sectionHeading h2 {
    margin-top: 4px;
    color: var(--duck-ink);
    font-size: 27px;
    font-weight: 850;
    letter-spacing: -.035em;
}

.sectionHeading > p {
    max-width: 470px;
    color: var(--duck-muted);
    font-size: 13px;
    line-height: 1.7;
}

.home.homeNO {
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home .block,
.home.homeNO .block {
    overflow: hidden;
    border: 1px solid var(--duck-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.home .block:hover,
.home.homeNO .block:hover {
    border-color: #cbd1d8;
    box-shadow: 0 7px 22px rgba(26, 34, 44, .07);
    transform: none;
}

.home .nav {
    min-height: 53px;
    padding: 4px 18px 8px;
    border-bottom: 1px solid #edf0f3;
    color: var(--duck-ink);
    background: #fafbfc;
    font-size: 15px;
    font-weight: 800;
}

.home .nav::after {
    width: 5px;
    height: 16px;
    margin-left: auto;
    border-radius: 0;
    background: var(--duck-yellow);
    box-shadow: none;
}

.home.homeNO .content .list {
    padding: 8px 12px 13px;
}

.home.homeNO .content .list .item p {
    padding: 8px 8px 8px 29px;
    border-radius: 4px;
    color: #465361;
    font-size: 13px;
}

.home.homeNO .content .list .item p > span {
    left: 7px;
    color: #a1a8b1;
    font-family: inherit;
}

.home.homeNO .content .list .item:hover p {
    color: var(--duck-ink);
    background: var(--duck-yellow-soft);
    transform: none;
}

.home .content .list .item .img {
    background: #f0f2f5;
}

.capabilityStrip {
    position: relative;
    z-index: 1;
    display: grid;
    width: 100%;
    margin: 38px 0 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--duck-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
    backdrop-filter: none;
}

.capabilityStrip > div {
    padding: 19px 22px;
}

.capabilityStrip > div + div::before {
    top: 16px;
    bottom: 16px;
    background: var(--duck-line);
}

.capabilityStrip strong {
    font-size: 16px;
    font-weight: 850;
}

.capabilityStrip span {
    margin-top: 3px;
    color: var(--duck-muted);
    font-size: 11px;
}

.answerSection {
    display: grid;
    overflow: hidden;
    margin-top: 50px;
    grid-template-columns: .9fr 1.1fr;
    border: 1px solid var(--duck-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
}

.answerLead {
    position: relative;
    overflow: visible;
    padding: 39px 40px;
    border-right: 1px solid var(--duck-line);
    color: var(--duck-ink);
    background: #fafbfc;
}

.answerLead::after {
    display: none;
}

.answerLead h2 {
    margin-top: 6px;
    color: var(--duck-ink);
    font-size: 28px;
}

.answerLead p {
    margin-top: 14px;
    color: #65717f;
    font-size: 14px;
    line-height: 1.9;
}

.answerFlow {
    padding: 17px 32px;
}

.answerFlow article {
    min-height: 83px;
    padding: 16px 0;
    grid-template-columns: 42px 1fr;
    gap: 14px;
}

.answerFlow article > span {
    width: 38px;
    height: 38px;
    border: 1px solid #ead48a;
    border-radius: 5px;
    color: #6f5200;
    background: var(--duck-yellow-soft);
    font-family: inherit;
    font-size: 14px;
}

.answerFlow h3 {
    font-size: 15px;
}

.answerFlow p {
    font-size: 12px;
}

.valueGrid {
    overflow: hidden;
    gap: 0;
    border: 1px solid var(--duck-line);
    border-radius: 8px;
    background: #fff;
}

.valueGrid article,
.valueGrid article:hover {
    min-height: 205px;
    padding: 27px;
    border: 0;
    border-right: 1px solid var(--duck-line);
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    transform: none;
}

.valueGrid article:last-child {
    border-right: 0;
}

.valueGrid article::after {
    display: none;
}

.valueIcon,
.valueGrid article:nth-child(2) .valueIcon,
.valueGrid article:nth-child(3) .valueIcon {
    width: 39px;
    height: 39px;
    border: 1px solid #ead48a;
    border-radius: 5px;
    color: #6f5200;
    background: var(--duck-yellow-soft);
    font-family: inherit;
    font-size: 15px;
}

.valueGrid h3 {
    margin-top: 20px;
    font-size: 17px;
}

.valueGrid p {
    font-size: 13px;
    line-height: 1.8;
}

.faqSection {
    padding-bottom: 60px;
}

.faqList {
    border: 1px solid var(--duck-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
}

.faqList details {
    border-bottom-color: var(--duck-line);
}

.faqList summary::after {
    border-radius: 4px;
    color: var(--duck-ink);
    background: var(--duck-yellow-soft);
}

/* 搜索结果页：取消营销首屏，直接进入检索工作区 */
.networkSearchPage {
    width: min(1120px, calc(100% - 40px));
    padding: 28px 0 56px;
}

.networkSearchHero {
    min-height: 0;
    overflow: visible;
    padding: 28px 30px 31px;
    border: 1px solid var(--duck-line);
    border-radius: 8px;
    color: var(--duck-ink);
    background: #fff;
    box-shadow: none;
}

.networkSearchHero::after,
.networkHeroGrid,
.networkHeroScanner,
.networkTrustRow {
    display: none !important;
}

.networkHeroCopy {
    max-width: none;
}

.networkEyebrow {
    color: #8b6804;
    font-family: inherit;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .04em;
}

.networkEyebrow i {
    display: none;
}

.networkSearchHero h1 {
    margin-top: 5px;
    color: var(--duck-ink);
    font-size: clamp(26px, 3vw, 35px);
    line-height: 1.35;
    letter-spacing: -.035em;
}

.networkSearchHero .networkHeroCopy p {
    margin-top: 6px;
    color: var(--duck-muted);
    font-size: 13px;
}

.networkSmartSearch {
    width: 100%;
    margin: 20px 0 0;
}

.networkSearchForm {
    width: 100%;
    height: 58px;
    margin: 0;
    padding: 5px 6px 5px 18px;
    border: 2px solid var(--duck-ink);
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 4px 0 var(--duck-ink);
}

.networkSearchForm:focus-within {
    border-color: var(--duck-ink);
    box-shadow: 0 2px 0 var(--duck-ink);
    transform: translateY(2px);
}

.networkSearchForm input {
    color: var(--duck-ink);
}

.networkSearchForm button {
    height: 44px;
    border-radius: 4px;
    color: var(--duck-ink);
    background: var(--duck-yellow);
    box-shadow: none;
}

.networkSearchForm button:hover {
    background: #ffc629;
    transform: none;
}

.networkWorkspace {
    width: 100%;
    margin: 20px 0 0;
    overflow: hidden;
    border: 1px solid var(--duck-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
}

.networkToolbar {
    padding: 18px 22px 15px;
    border-bottom: 1px solid var(--duck-line);
    background: #fafbfc;
}

.networkToolbarTitle > span {
    font-size: 14px;
    font-weight: 800;
}

.networkToolbarTitle p {
    margin-top: 2px;
    font-size: 11px;
}

.networkPanTabs {
    gap: 7px;
}

.networkPanTabs button {
    position: relative;
    min-width: 0;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #dfe3e8;
    border-radius: 5px;
    color: #596574;
    background: #fff;
    box-shadow: none;
}

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

.networkPanTabs button:hover {
    border-color: #bfc6ce;
    color: var(--duck-ink);
    background: #fff;
    transform: none;
}

.networkPanTabs button.active {
    border-color: #d29b00;
    color: var(--duck-ink);
    background: var(--duck-yellow);
    box-shadow: none;
}

.networkLocalIcon,
.networkPanTabs button img {
    border-radius: 4px;
}

.networkResultHeader {
    min-height: 50px;
    padding: 0 22px;
    border: 0;
    border-bottom: 1px solid var(--duck-line);
    background: #fff;
}

.networkResultDot,
.networkResultDot.loading {
    border-radius: 50%;
}

.networkResultDot.loading {
    background: var(--duck-yellow);
    box-shadow: 0 0 0 4px rgba(247, 181, 0, .15);
}

.networkResultCount b {
    color: var(--duck-blue);
}

.networkSearchProgress {
    position: relative;
    display: grid;
    min-height: 82px;
    padding: 15px 22px 18px;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    overflow: hidden;
    border-bottom: 1px solid #f0dfaa;
    background: var(--duck-yellow-soft);
}

.searchRadar {
    width: 32px;
    height: 32px;
    border: 3px solid #ead796;
    border-top-color: var(--duck-ink);
    border-radius: 50%;
    background: transparent;
    animation: duckSpin .85s linear infinite;
}

.searchRadar::before,
.searchRadar::after,
.searchRadar i,
.searchRadar span,
.searchProgressSignal {
    display: none;
}

.searchProgressCopy strong {
    color: var(--duck-ink);
    font-size: 14px;
    font-weight: 800;
}

.searchProgressCopy p {
    margin-top: 3px;
    color: #786c4b;
    font-size: 12px;
    line-height: 1.55;
}

.searchProgressTrack {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    overflow: hidden;
    background: rgba(199, 155, 27, .13);
}

.searchProgressTrack span {
    display: block;
    width: 22%;
    height: 100%;
    background: var(--duck-yellow-deep);
    animation: duckTrack 1.55s ease-in-out infinite;
}

@keyframes duckSpin { to { transform: rotate(360deg); } }
@keyframes duckTrack {
    from { transform: translateX(-110%); }
    to { transform: translateX(520%); }
}

.networkResultList {
    padding: 0 22px;
}

.networkResultSection {
    background: #fff;
}

.networkResultSection--public {
    border-top: 8px solid #f2f4f6;
}

.networkResultSectionHead {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 30px;
    border-bottom: 1px solid var(--duck-line);
    background: #fafbfc;
}

.networkResultSectionHead > div {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.networkResultSectionHead strong {
    color: var(--duck-ink);
    font-size: 14px;
    font-weight: 800;
}

.networkResultSectionHead p {
    margin: 0;
    color: #7a8794;
    font-size: 12px;
    line-height: 1.5;
    text-align: right;
}

.networkSectionBadge,
.networkInlineOrigin {
    display: inline-flex;
    min-height: 23px;
    align-items: center;
    padding: 0 8px;
    border-radius: 4px;
    color: #715300;
    background: #fff0bd;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.networkSectionBadge--local,
.networkInlineOrigin {
    color: #087561;
    background: #ddf7ef;
}

.networkInlineOrigin {
    min-height: 20px;
    padding: 0 6px;
    font-size: 10px;
}

.networkResultSection--local .networkResultCard::before {
    background: #26b998;
}

.networkResultSection--local .networkResultSectionHead {
    background: #f6fcfa;
}

.networkResultCard {
    min-height: 94px;
    padding: 17px 8px;
    border-bottom-color: var(--duck-line);
    animation: duckResultIn .22s ease both;
}

.networkResultCard::before {
    width: 3px;
    background: var(--duck-yellow);
}

.networkResultCard:hover {
    background: #fafbfc;
}

@keyframes duckResultIn {
    from { opacity: .25; }
    to { opacity: 1; }
}

.networkResultSource {
    border-radius: 7px;
    background: #f3f5f7;
}

.networkResultTitle {
    color: var(--duck-ink);
    font-size: 15px;
    font-weight: 800;
}

.networkGetButton,
.networkDetailButton {
    height: 40px;
    border-radius: 5px;
}

.networkDetailButton {
    color: #53606e;
    background: #fff;
}

.networkGetButton {
    border-color: #e1ab13;
    color: var(--duck-ink);
    background: var(--duck-yellow);
}

.networkGetButton:hover {
    border-color: #cf9900;
    color: var(--duck-ink);
    background: #ffc629;
    transform: none;
}

.networkDetailButton:hover {
    color: var(--duck-ink);
    background: #f5f6f8;
    transform: none;
}

.networkLoadingCards {
    padding: 10px 0;
}

.networkEmptyState {
    padding: 62px 20px 68px;
}

.networkEmptyIcon {
    border-radius: 7px;
    background: #f0f2f4;
}

.networkNotice {
    margin: 0;
    padding: 14px 22px;
    border-top: 1px solid var(--duck-line);
    color: #77828f;
    background: #fafbfc;
    font-size: 12px;
    line-height: 1.7;
    text-align: left;
}

.networkNotice span {
    display: inline-block;
    margin-right: 8px;
    padding: 2px 6px;
    border-radius: 3px;
    color: #775800;
    background: var(--duck-yellow-soft);
    font-weight: 750;
}

/* 详情页：紧凑、可阅读的资源档案 */
.detailBox {
    width: min(1180px, calc(100% - 40px));
    gap: 26px;
    align-items: flex-start;
}

.breadcrumb {
    margin-bottom: 12px;
}

.detailBox .left {
    min-width: 0;
    overflow: visible;
}

.detailBox .right {
    width: 258px;
    margin: 35px 0 0;
    flex: 0 0 258px;
}

.detailBox .details {
    overflow: hidden;
    border: 1px solid var(--duck-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
}

.detailTop {
    display: grid;
    min-height: 0;
    padding: 30px 34px;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 28px;
    border-bottom: 1px solid var(--duck-line);
    background: #fff;
}

.detailTop::after {
    display: none;
}

.detailBox .details .pic,
.detailPanVisual {
    width: 112px;
    height: 112px;
    margin: 0;
    border: 1px solid var(--duck-line);
    border-radius: 8px;
    background: #f6f7f9;
    box-shadow: none;
}

.detailPanVisual img {
    width: 56px;
    height: 56px;
    border: 5px solid #fff;
    border-radius: 9px;
    box-shadow: 0 5px 15px rgba(24, 32, 43, .10);
}

.detailBox .details .pic {
    height: 154px;
}

.detailSummary {
    min-width: 0;
}

.detailPanOrbit {
    display: none;
}

.detailBadges > span,
.detailQuickMeta span {
    border-radius: 4px;
}

.detailVerified {
    color: #146c59;
    background: #eaf7f3;
}

.detailTemporary {
    background: var(--duck-yellow-soft);
}

.detailPermanent {
    color: #3c5e91;
    background: #eef3f9;
}

.detailBox .details .title {
    max-width: none;
    margin-top: 14px;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.38;
    letter-spacing: -.02em;
}

.detailFacts {
    padding: 18px 34px 4px;
}

.detailBox .details .cat {
    min-width: 0;
    padding: 13px 0;
}

.detailBox .details .cat .l {
    width: auto;
    min-width: 0;
    color: #7b8794;
    font-size: 13px;
    font-weight: 700;
}

.detailBox .details .cat .r {
    width: auto !important;
    min-width: 0;
    color: #303b47;
    flex: initial;
    font-size: 14px;
    line-height: 1.8;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.detailDescriptionRow,
.detailUrlRow,
.detailFactGrid .cat {
    grid-template-columns: 96px minmax(0, 1fr);
}

.detailDescriptionRow .r {
    max-width: 720px;
}

.detailFactGrid {
    column-gap: 30px;
}

.detailFactGrid .cat .r {
    display: flex;
    width: auto !important;
    flex-wrap: wrap;
}

.detailUrl {
    display: block;
    width: 100%;
    max-width: 720px;
    box-sizing: border-box;
    border-radius: 5px;
    color: var(--duck-blue) !important;
    background: #f5f7fa;
}

.detailBox .details > .btns {
    padding: 18px 34px 28px;
    gap: 10px;
}

.detailBox .details .btns .btn {
    min-width: 132px;
    margin: 0;
    border-radius: 5px;
    box-shadow: none;
}

.detailBox .details .btns .btn:hover {
    transform: none;
}

.detailBox .details .btns .btn.btnCol {
    border-color: #d69e00;
    color: var(--duck-ink);
    background: var(--duck-yellow);
    box-shadow: none;
}

.detailBox .details.samelistBox,
.detailBox .right .box {
    border-radius: 8px;
    box-shadow: none;
}

.relatedResources {
    margin-top: 26px;
}

.relatedHeading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 10px;
}

.detailBox .relatedHeading .samelistNav {
    margin: 0;
}

.relatedHeading > span {
    color: #8c96a1;
    font-size: 12px;
}

.samelist .item p {
    border-radius: 4px;
}

.samelist .item:hover p {
    color: var(--duck-ink);
    background: var(--duck-yellow-soft);
}

/* 页脚保持清晰的站点边界 */
.footerBox {
    margin-top: 20px;
    padding: 34px 0;
    color: #9098a1;
    background: #1d2025;
}

.footerBox .box {
    width: min(1180px, calc(100% - 40px));
}

.footerBrand p {
    color: #8f979f;
}

.dialogUrlBox,
.el-dialog.dialogUrlBox {
    width: min(640px, calc(100vw - 32px)) !important;
    border: 1px solid rgba(18, 35, 52, .1);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(14, 29, 43, .26);
}

.dialogUrlBox .el-dialog__header {
    margin: 0;
    padding: 22px 24px 0;
}

.dialogUrlBox .el-dialog__headerbtn {
    top: 16px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color .2s ease, color .2s ease;
}

.dialogUrlBox .el-dialog__headerbtn:hover {
    background: #f2f4f7;
}

.dialogUrlBox .el-dialog__body {
    padding: 0 38px 38px;
}

.transferWait {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 22px;
    padding: 18px 0 8px;
    text-align: center;
    color: var(--duck-ink);
}

.transferWait::before {
    content: '';
    position: absolute;
    inset: 20px 8px 0;
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 32%, rgba(255, 188, 25, .13), transparent 34%),
        linear-gradient(180deg, rgba(247, 249, 251, .3), rgba(247, 249, 251, .86));
    pointer-events: none;
}

.transferLoader,
.transferWaitCopy,
.transferProgressRail {
    position: relative;
    z-index: 1;
}

.transferLoader {
    width: 94px;
    height: 94px;
    display: grid;
    place-items: center;
}

.transferLoaderOrbit {
    position: absolute;
    inset: 0;
    border: 2px solid #e9edf2;
    border-top-color: var(--duck-yellow);
    border-right-color: rgba(255, 188, 25, .45);
    border-radius: 50%;
    animation: duckSpin 1s cubic-bezier(.55, .2, .35, .8) infinite;
}

.transferLoaderOrbit::after {
    content: '';
    position: absolute;
    width: 9px;
    height: 9px;
    top: 7px;
    right: 12px;
    border-radius: 50%;
    background: var(--duck-yellow);
    box-shadow: 0 0 0 5px rgba(255, 188, 25, .14);
}

.transferLoaderCore {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #172433;
    background: #ffbd1b;
    box-shadow: 0 14px 28px rgba(232, 157, 0, .24);
    font-size: 27px;
    font-weight: 900;
    transform: rotate(-3deg);
}

.transferWait strong {
    display: block;
    margin-bottom: 9px;
    color: #122234;
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -.02em;
}

.transferWait p {
    margin: 0;
    color: var(--duck-muted);
    font-size: 14px;
}

.transferProgressRail {
    width: min(310px, 76%);
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: #e7ebf0;
}

.transferProgressRail span {
    position: absolute;
    inset: 0 auto 0 -42%;
    width: 42%;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, #ffbd1b 25%, #f29d00 70%, transparent);
    animation: duckProgress 1.45s ease-in-out infinite;
}

@keyframes duckSpin {
    to { transform: rotate(360deg); }
}

@keyframes duckProgress {
    0% { left: -42%; }
    100% { left: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .transferLoaderOrbit,
    .transferProgressRail span {
        animation-duration: 3s;
    }
}

@media (max-width: 980px) {
    .home.homeNO {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .answerSection {
        grid-template-columns: 1fr;
    }

    .answerLead {
        border-right: 0;
        border-bottom: 1px solid var(--duck-line);
    }

    .networkToolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .networkToolbarTitle {
        width: 100%;
        flex: 0 0 auto;
    }

    .networkPanTabs {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .headerBox,
    .homeExperience .headerBox,
    .headerBox.isScrolled,
    .homeExperience .headerBox.isScrolled,
    .headerKox {
        height: 62px;
    }

    .headerBox .box {
        width: calc(100% - 24px);
    }

    .homeExperience .headerBox .box .navs .iconfont {
        color: var(--duck-ink);
    }

    .homeBox,
    .networkSearchPage {
        width: calc(100% - 20px);
    }

    .homeBox {
        padding-top: 10px;
    }

    .homeHero {
        border-top-width: 4px;
        border-radius: 7px;
    }

    .heroContent {
        width: calc(100% - 30px);
        padding: 35px 0 30px;
    }

    .heroEyebrow {
        min-height: 24px;
        margin-bottom: 11px;
        font-size: 11px;
    }

    .homeHero h1 {
        font-size: clamp(31px, 10vw, 40px);
    }

    .heroDescription {
        margin-top: 11px;
        font-size: 13px;
        line-height: 1.7;
    }

    .smartSearchShell {
        margin-top: 21px;
    }

    .searchBox .heroSearch {
        height: 55px;
        padding: 4px 4px 4px 13px;
        border-radius: 6px;
        box-shadow: 0 4px 0 var(--duck-ink);
    }

    .searchBox .heroSearch input {
        width: 0;
        min-width: 0;
        padding-left: 8px;
        font-size: 14px;
    }

    .searchBox .heroSearch .btn {
        width: 72px;
        height: 43px;
        border-radius: 4px;
        font-size: 13px;
    }

    .homeHotWords {
        max-height: 50px;
        overflow: hidden;
        justify-content: flex-start;
        gap: 6px 12px;
        font-size: 11px;
    }

    .platformRow {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        justify-content: center;
        align-items: center;
        gap: 10px 4px;
    }

    .platformLabel {
        width: auto;
        grid-column: 1 / -1;
        text-align: center;
    }

    .platformChip {
        display: inline-flex;
        min-width: 0;
        align-items: center;
        justify-content: center;
        gap: 5px;
        white-space: nowrap;
    }

    /* theme-v3 曾在 390px 以下隐藏图标，移动端在最终主题中明确恢复。 */
    .platformChip img {
        display: block !important;
        width: 17px;
        height: 17px;
        flex: 0 0 17px;
        object-fit: contain;
    }

    .searchAssist {
        max-height: 290px;
        overflow-y: auto;
        padding: 14px;
        border-radius: 6px;
    }

    .searchAssistWords a,
    .searchAssistWords button {
        max-width: calc(50% - 4px);
    }

    .homeDiscover,
    .valueSection,
    .faqSection {
        padding-top: 40px;
    }

    .sectionHeading {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .sectionHeading h2 {
        font-size: 23px;
    }

    .home.homeNO,
    .valueGrid {
        grid-template-columns: 1fr;
    }

    .capabilityStrip {
        margin-top: 28px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 7px;
    }

    .capabilityStrip > div {
        padding: 15px 13px;
    }

    .capabilityStrip > div:nth-child(3)::before {
        display: none;
    }

    .capabilityStrip > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--duck-line);
    }

    .answerSection {
        margin-top: 40px;
        border-radius: 7px;
    }

    .answerLead {
        padding: 27px 23px;
    }

    .answerLead h2 {
        font-size: 24px;
    }

    .answerFlow {
        padding: 11px 21px;
    }

    .valueGrid article,
    .valueGrid article:hover {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--duck-line);
    }

    .valueGrid article:last-child {
        border-bottom: 0;
    }

    .networkSearchPage {
        padding: 14px 0 45px;
    }

    .networkSearchHero {
        padding: 22px 16px 25px;
        border-radius: 7px;
    }

    .networkSearchHero h1 {
        font-size: 25px;
    }

    .networkSearchForm {
        height: 54px;
        padding-left: 12px;
        border-radius: 6px;
    }

    .networkSearchForm input {
        width: 0;
        min-width: 0;
        padding: 0 7px;
        font-size: 13px;
    }

    .networkSearchForm button {
        min-width: 0;
        height: 40px;
        padding: 0 12px;
        font-size: 12px;
    }

    .networkWorkspace {
        margin-top: 13px;
        border-radius: 7px;
    }

    .networkToolbar {
        gap: 12px;
        padding: 16px 14px 14px;
    }

    .networkToolbarTitle p {
        margin: 4px 0 0;
        font-size: 13px;
        line-height: 1.55;
    }

    .networkPanTabs {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 8px;
        overflow: visible;
        padding: 0;
    }

    .networkPanTabs button {
        grid-column: span 4;
        width: 100%;
        min-width: 0;
        height: 44px;
        padding: 0 8px;
        gap: 6px;
        box-sizing: border-box;
        border-radius: 7px;
        white-space: nowrap;
        font-size: 12px;
        line-height: 1;
    }

    .networkPanTabs--1 button {
        grid-column: span 12;
    }

    .networkPanTabs--2 button,
    .networkPanTabs--4 button {
        grid-column: span 6;
    }

    .networkPanTabs--5 button:nth-child(n + 4) {
        grid-column: span 6;
    }

    .networkPanTabs--7 button {
        grid-column: span 3;
    }

    .networkPanTabs--7 button:nth-child(n + 5) {
        grid-column: span 4;
    }

    .networkPanTabs button img,
    .networkPanTabs .networkLocalIcon {
        width: 17px;
        height: 17px;
        flex: 0 0 17px;
    }

    .networkPanTabs button small {
        position: absolute;
        top: -5px;
        right: -4px;
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        font-size: 10px;
        line-height: 16px;
    }

    .networkPanLabel {
        flex: 0 1 auto;
    }

    .networkResultHeader {
        padding: 0 14px;
    }

    .networkSearchProgress {
        min-height: 79px;
        padding: 14px 15px 17px;
        grid-template-columns: 31px minmax(0, 1fr);
        gap: 11px;
    }

    .searchRadar {
        width: 28px;
        height: 28px;
    }

    .searchProgressCopy strong {
        font-size: 13px;
    }

    .searchProgressCopy p {
        font-size: 11px;
    }

    .networkResultList {
        padding: 0 10px;
    }

    .networkResultSectionHead {
        min-height: 64px;
        align-items: flex-start;
        padding: 13px 14px;
        box-sizing: border-box;
    }

    .networkResultSectionHead > div {
        display: grid;
        gap: 6px;
    }

    .networkResultSectionHead strong {
        font-size: 13px;
    }

    .networkResultSectionHead p {
        max-width: 135px;
        padding-top: 3px;
        font-size: 11px;
    }

    .networkNotice {
        padding: 13px 14px;
    }

    .detailBox {
        display: block;
        width: calc(100% - 20px);
    }

    .detailBox .left {
        width: 100%;
    }

    .detailTop {
        display: block;
        padding: 24px 20px;
    }

    .detailBox .details .pic,
    .detailPanVisual {
        width: 82px;
        height: 82px;
        margin-bottom: 20px;
    }

    .detailBox .details .pic {
        width: 104px;
        height: 142px;
    }

    .detailPanVisual img {
        width: 44px;
        height: 44px;
    }

    .detailBox .details .title {
        margin-top: 12px;
        font-size: 23px;
    }

    .detailFacts {
        padding: 20px 20px 5px;
    }

    .detailDescriptionRow,
    .detailUrlRow,
    .detailFactGrid .cat {
        display: block !important;
    }

    .detailFactGrid {
        grid-template-columns: 1fr;
    }

    .detailBox .details .cat .l {
        margin-bottom: 4px;
    }

    .detailBox .details .cat .r,
    .detailFactGrid .cat .r {
        display: flex;
        width: auto !important;
        min-width: 0;
    }

    .detailDescriptionRow .r {
        display: block !important;
    }

    .detailUrl {
        max-width: 100%;
    }

    .detailBox .details > .btns {
        padding: 19px 20px 25px;
    }

    .relatedHeading > span {
        display: none;
    }

    .footerBox .box {
        width: calc(100% - 24px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .searchRadar,
    .searchProgressTrack span,
    .networkResultCard {
        animation: none !important;
    }
}

/* R34：前台弹层改为轻量原生组件，避免为少量弹窗加载整套 Element Plus。 */
body.duckModalOpen {
    overflow: hidden;
}

.duckModal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(11, 22, 34, .58);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.duckModalPanel {
    position: relative;
    width: min(420px, calc(100vw - 32px));
    max-height: min(84vh, 760px);
    overflow: auto;
    box-sizing: border-box;
    border: 1px solid rgba(18, 35, 52, .12);
    border-radius: 18px;
    color: var(--duck-ink, #122234);
    background: #fff;
    box-shadow: 0 30px 90px rgba(7, 20, 33, .3);
    animation: duckModalIn .2s ease-out both;
}

.duckModalClose {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #707b87;
    background: #f3f5f7;
    font: 400 27px/36px Arial, sans-serif;
    cursor: pointer;
    transition: color .18s ease, background-color .18s ease, transform .18s ease;
}

.duckModalClose:hover,
.duckModalClose:focus-visible {
    color: #132538;
    background: #e8edf2;
    outline: 2px solid rgba(255, 189, 27, .7);
    outline-offset: 2px;
    transform: rotate(4deg);
}

.duckQrModal {
    width: min(360px, calc(100vw - 32px));
    padding: 62px 26px 26px;
}

.duckQrModal > img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.duckDemandModal {
    width: min(460px, calc(100vw - 32px));
    padding: 58px 28px 28px;
}

.layerBox textarea {
    display: block;
    width: 100%;
    min-height: 150px;
    margin-top: 18px;
    padding: 14px 15px;
    resize: vertical;
    box-sizing: border-box;
    border: 1px solid #d9e0e7;
    border-radius: 10px;
    color: #132538;
    background: #f8fafb;
    font: inherit;
    line-height: 1.65;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.layerBox textarea:focus {
    border-color: #ffbd1b;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(255, 189, 27, .18);
}

.layerBox .vbtn {
    display: block;
    width: 100%;
    border: 0;
    font: inherit;
    font-weight: 750;
}

.layerBox .vbtn:disabled {
    cursor: wait;
    opacity: .64;
}

.duckNavModal {
    width: min(390px, calc(100vw - 32px));
    padding: 62px 24px 24px;
}

.duckNavModal .drawer {
    display: grid;
    gap: 10px;
}

.duckNavModal .drawer > a,
.duckNavModal .drawer > .item,
.duckNavModal .drawer .btns a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 1px solid #dce3e9;
    border-radius: 9px;
    color: #173047;
    background: #fff;
    font: inherit;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.duckResourceModal.dialogUrlBox {
    width: min(640px, calc(100vw - 32px)) !important;
    overflow: auto;
}

.duckResourceModal .dialogUrl {
    min-height: 150px;
    padding: 58px 38px 36px;
    box-sizing: border-box;
}

.networkPanTabs button small {
    display: inline-grid;
    min-width: 18px;
    height: 18px;
    place-items: center;
    padding: 0 5px;
    border-radius: 999px;
    color: #5e6c79;
    background: #edf1f4;
    font-size: 11px;
    font-weight: 750;
    line-height: 18px;
}

.networkPanTabs button.active small {
    color: #132538;
    background: rgba(255, 255, 255, .62);
}

.duckToast {
    position: fixed;
    top: 22px;
    left: 50%;
    z-index: 4000;
    max-width: min(520px, calc(100vw - 32px));
    padding: 12px 18px;
    box-sizing: border-box;
    border: 1px solid #dce3e9;
    border-radius: 10px;
    color: #173047;
    background: #fff;
    box-shadow: 0 16px 44px rgba(10, 28, 44, .18);
    font-size: 14px;
    font-weight: 650;
    opacity: 0;
    transform: translate(-50%, -14px);
    transition: opacity .18s ease, transform .18s ease;
}

.duckToast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.duckToast--success {
    border-left: 4px solid #27b793;
}

.duckToast--error {
    border-left: 4px solid #e45454;
}

@keyframes duckModalIn {
    from { opacity: 0; transform: translateY(10px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
    .duckModal {
        align-items: center;
        padding: 14px;
    }

    .duckModalPanel,
    .duckResourceModal.dialogUrlBox {
        width: calc(100vw - 28px) !important;
        max-height: 82vh;
        border-radius: 17px;
    }

    .duckResourceModal .dialogUrl {
        padding: 56px 22px 28px;
    }

    .transferWait {
        min-height: 280px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .duckModalPanel,
    .duckToast {
        animation: none;
        transition: none;
    }
}

/* Open API documentation */
.apiDocsExperience {
    color: #142538;
    background: #f3f5f7;
}

.apiDocsPage {
    width: min(1180px, calc(100% - 40px));
    margin: 34px auto 72px;
}

.apiDocsHero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 54px;
    align-items: center;
    min-height: 344px;
    padding: 58px 62px;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid #dce2e8;
    border-top: 5px solid #ffba00;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(22, 37, 54, .07);
}

.apiDocsHero::after {
    position: absolute;
    right: -110px;
    bottom: -190px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 186, 0, .34);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255, 186, 0, .05), 0 0 0 110px rgba(255, 186, 0, .025);
    content: "";
    pointer-events: none;
}

.apiDocsHeroCopy,
.apiDocsStatusCard {
    position: relative;
    z-index: 1;
}

.apiDocsEyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 4px;
    color: #7d5a00;
    background: #fff3cb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .11em;
}

.apiDocsHero h1 {
    max-width: 680px;
    margin: 20px 0 16px;
    color: #101d2b;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.13;
    letter-spacing: -.045em;
}

.apiDocsHeroCopy > p {
    max-width: 720px;
    margin: 0;
    color: #607080;
    font-size: 16px;
    line-height: 1.9;
}

.apiDocsActions {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.apiDocsActions a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 19px;
    border: 1px solid #d8dfe6;
    border-radius: 7px;
    color: #213448;
    background: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.apiDocsActions .apiDocsPrimary {
    border-color: #ffba00;
    color: #142538;
    background: #ffba00;
}

.apiDocsStatusCard {
    padding: 24px;
    border: 1px solid #d8e0e7;
    border-radius: 10px;
    background: rgba(248, 250, 251, .96);
}

.apiDocsStatusHead {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-bottom: 17px;
    border-bottom: 1px solid #e0e6eb;
    font-size: 15px;
}

.apiDocsStatusDot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #dd5960;
    box-shadow: 0 0 0 5px rgba(221, 89, 96, .11);
}

.apiDocsStatusDot.is-online {
    background: #25b78f;
    box-shadow: 0 0 0 5px rgba(37, 183, 143, .12);
}

.apiDocsStatusCard dl {
    margin: 10px 0 0;
}

.apiDocsStatusCard dl > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 9px 0;
    font-size: 13px;
}

.apiDocsStatusCard dt {
    color: #82909e;
}

.apiDocsStatusCard dd {
    margin: 0;
    color: #203347;
    font-weight: 750;
    text-align: right;
}

.apiDocsTrustRow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 14px 0 32px;
}

.apiDocsTrustRow article {
    display: flex;
    gap: 14px;
    align-items: center;
    min-height: 88px;
    padding: 16px 20px;
    box-sizing: border-box;
    border: 1px solid #dce2e8;
    border-radius: 10px;
    background: #fff;
}

.apiDocsTrustRow b {
    color: #c18b00;
    font: 800 13px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.apiDocsTrustRow div {
    display: grid;
    gap: 5px;
}

.apiDocsTrustRow strong {
    color: #142538;
    font-size: 15px;
}

.apiDocsTrustRow span {
    color: #758391;
    font-size: 12px;
    line-height: 1.5;
}

.apiDocsLayout {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.apiDocsSideNav {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 3px;
    padding: 17px 12px;
    border: 1px solid #dce2e8;
    border-radius: 10px;
    background: #fff;
}

.apiDocsSideNav strong {
    padding: 6px 10px 10px;
    color: #142538;
    font-size: 13px;
}

.apiDocsSideNav a {
    padding: 9px 10px;
    border-radius: 6px;
    color: #657585;
    font-size: 13px;
    text-decoration: none;
}

.apiDocsSideNav a:hover {
    color: #142538;
    background: #fff6db;
}

.apiDocsContent {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.apiDocSection {
    scroll-margin-top: 94px;
    padding: 34px 38px;
    border: 1px solid #dce2e8;
    border-radius: 11px;
    background: #fff;
}

.apiDocSectionTitle {
    display: flex;
    gap: 17px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.apiDocSectionTitle > span {
    flex: 0 0 auto;
    padding-top: 4px;
    color: #b17f00;
    font: 800 12px/1.4 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.apiDocSectionTitle h2 {
    margin: 0;
    color: #122336;
    font-size: 23px;
    line-height: 1.35;
}

.apiDocSectionTitle p {
    margin: 7px 0 0;
    color: #7a8794;
    font-size: 13px;
    line-height: 1.65;
}

.apiDocsNotice {
    padding: 18px 20px;
    border-left: 4px solid #ffba00;
    border-radius: 6px;
    background: #fff8e4;
}

.apiDocsNotice strong {
    color: #4b3b0a;
    font-size: 14px;
}

.apiDocsNotice p,
.apiDocsBodyText {
    margin: 7px 0 0;
    color: #657382;
    font-size: 14px;
    line-height: 1.85;
}

.apiDocsEndpointLine {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    margin-top: 16px;
    padding: 12px 14px;
    border: 1px solid #dce3e9;
    border-radius: 7px;
    background: #f7f9fa;
}

.apiDocsEndpointLine > span {
    color: #778695;
    font-size: 12px;
    font-weight: 750;
}

.apiDocsEndpointLine code {
    overflow: hidden;
    color: #20374c;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.apiDocsEndpointLine button,
.apiDocsCodeHead button {
    padding: 0;
    border: 0;
    color: #946b00;
    background: transparent;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.apiDocsMethodBar {
    display: flex;
    gap: 13px;
    align-items: center;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid #d8e0e7;
    border-radius: 7px;
    background: #f8fafb;
}

.apiDocsMethodBar b {
    padding: 5px 8px;
    border-radius: 4px;
    color: #155d4c;
    background: #dff7ee;
    font-size: 11px;
}

.apiDocsMethodBar code {
    color: #172c40;
    font-size: 14px;
    font-weight: 750;
}

.apiDocsMethodBar span {
    margin-left: auto;
    color: #7d8994;
    font-size: 12px;
}

.apiDocsTableWrap {
    overflow-x: auto;
    border: 1px solid #dde4e9;
    border-radius: 7px;
}

.apiDocsTable {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    font-size: 13px;
}

.apiDocsTable th,
.apiDocsTable td {
    padding: 13px 15px;
    border-bottom: 1px solid #e5eaee;
    color: #5f7080;
    text-align: left;
    line-height: 1.6;
}

.apiDocsTable th {
    color: #27394b;
    background: #f6f8f9;
    font-size: 12px;
    font-weight: 800;
}

.apiDocsTable tr:last-child td {
    border-bottom: 0;
}

.apiDocsTable code,
.apiDocsFieldGrid code,
.apiDocsErrorList code,
.apiDocsSteps code,
.apiDocSectionTitle code {
    padding: 2px 5px;
    border-radius: 4px;
    color: #8b6500;
    background: #fff5d7;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: .92em;
}

.apiDocSection h3 {
    margin: 25px 0 10px;
    color: #213448;
    font-size: 14px;
}

.apiDocsCodeCard {
    overflow: hidden;
    border: 1px solid #253a4e;
    border-radius: 8px;
    background: #102131;
}

.apiDocsCodeHead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 37px;
    padding: 0 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: #91a7ba;
    font-size: 11px;
    letter-spacing: .04em;
}

.apiDocsCodeHead button {
    color: #ffd25b;
}

.apiDocsCodeCard pre {
    margin: 0;
    padding: 18px 20px 20px;
    overflow-x: auto;
    color: #e8f0f6;
    font: 13px/1.72 ui-monospace, SFMono-Regular, Consolas, monospace;
    tab-size: 2;
}

.apiDocsCodeCard code {
    font: inherit;
    white-space: pre;
}

.apiDocsFieldGrid,
.apiDocsErrorList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 14px;
}

.apiDocsFieldGrid > div,
.apiDocsErrorList > div {
    display: grid;
    gap: 8px;
    padding: 14px 15px;
    border: 1px solid #e0e6eb;
    border-radius: 7px;
    background: #fafbfc;
}

.apiDocsFieldGrid span,
.apiDocsErrorList span {
    color: #6b7a88;
    font-size: 12px;
    line-height: 1.55;
}

.apiDocsErrorList b {
    color: #c13e45;
    font: 800 13px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.apiDocsSteps {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: api-steps;
}

.apiDocsSteps li {
    position: relative;
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 20px;
    padding: 16px 0 16px 40px;
    border-bottom: 1px solid #e5eaee;
    counter-increment: api-steps;
}

.apiDocsSteps li:last-child {
    border-bottom: 0;
}

.apiDocsSteps li::before {
    position: absolute;
    top: 16px;
    left: 0;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    color: #473500;
    background: #ffcf4b;
    content: counter(api-steps);
    font-size: 11px;
    font-weight: 900;
}

.apiDocsSteps b {
    color: #203448;
    font-size: 13px;
}

.apiDocsSteps span {
    color: #687886;
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .apiDocsHero {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 44px 38px;
    }

    .apiDocsStatusCard {
        max-width: 420px;
    }

    .apiDocsLayout {
        grid-template-columns: 1fr;
    }

    .apiDocsSideNav {
        position: static;
        display: flex;
        gap: 5px;
        overflow-x: auto;
        padding: 9px;
    }

    .apiDocsSideNav strong {
        display: none;
    }

    .apiDocsSideNav a {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

@media (max-width: 640px) {
    .apiDocsPage {
        width: calc(100% - 24px);
        margin: 18px auto 50px;
    }

    .apiDocsHero {
        min-height: 0;
        padding: 35px 24px 28px;
        border-radius: 11px;
    }

    .apiDocsHero h1 {
        margin-top: 16px;
        font-size: 33px;
        letter-spacing: -.04em;
    }

    .apiDocsHeroCopy > p {
        font-size: 14px;
        line-height: 1.8;
    }

    .apiDocsActions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .apiDocsStatusCard {
        padding: 18px;
    }

    .apiDocsTrustRow {
        grid-template-columns: 1fr;
    }

    .apiDocsTrustRow article {
        min-height: 76px;
    }

    .apiDocsLayout {
        gap: 14px;
    }

    .apiDocSection {
        padding: 27px 20px;
        border-radius: 9px;
    }

    .apiDocSectionTitle {
        gap: 12px;
        margin-bottom: 20px;
    }

    .apiDocSectionTitle h2 {
        font-size: 20px;
    }

    .apiDocsEndpointLine {
        grid-template-columns: 1fr auto;
    }

    .apiDocsEndpointLine > span {
        grid-column: 1 / -1;
    }

    .apiDocsMethodBar span {
        display: none;
    }

    .apiDocsFieldGrid,
    .apiDocsErrorList {
        grid-template-columns: 1fr;
    }

    .apiDocsCodeCard pre {
        padding: 16px;
        font-size: 12px;
    }

    .apiDocsSteps li {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

/* R38：移动端结果改为紧凑信息行，避免按钮和留白形成“老人模式”。 */
@media (max-width: 640px) {
    .networkResultHeader {
        min-height: 44px;
        padding: 0 12px;
    }

    .networkResultHeader strong,
    .networkResultCount,
    .networkResultCount b {
        font-size: 12px;
    }

    .networkResultSectionHead {
        min-height: 50px;
        padding: 9px 12px;
        align-items: center;
    }

    .networkResultSectionHead > div {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .networkResultSectionHead strong {
        font-size: 12px;
    }

    .networkResultSectionHead p {
        max-width: 125px;
        padding-top: 0;
        font-size: 10px;
    }

    .networkSectionBadge {
        min-height: 20px;
        padding: 0 6px;
        font-size: 10px;
    }

    .networkResultList {
        padding: 0 12px;
    }

    .networkResultCard {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px 10px;
        min-height: 0;
        padding: 11px 2px;
        align-items: center;
    }

    .networkResultMain {
        min-width: 0;
        grid-column: 1;
    }

    .networkResultSource {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        margin-right: 9px;
        border-radius: 9px;
    }

    .networkResultSource img {
        width: 20px;
        height: 20px;
        border-radius: 5px;
    }

    .networkResultTitle {
        font-size: 14px;
        line-height: 1.38;
        -webkit-line-clamp: 2;
    }

    .networkResultMeta {
        gap: 5px;
        margin-top: 4px;
        font-size: 11px;
        line-height: 1.4;
    }

    .networkInlineOrigin {
        min-height: 18px;
        padding: 0 5px;
        font-size: 9px;
    }

    .networkResultCard > .networkGetButton,
    .networkResultActions .networkGetButton {
        width: auto;
        min-width: 84px;
        height: 36px;
        margin: 0;
        padding: 0 9px;
        gap: 5px;
        border-radius: 6px;
        font-size: 12px;
        align-self: center;
    }

    .networkGetButton span {
        font-size: 13px;
    }

    .networkResultActions {
        display: block;
        margin: 0;
        grid-column: 2;
        align-self: center;
    }

    .networkResultActions .networkDetailButton {
        display: none;
    }

    .networkResultCard::before {
        left: -1px;
    }

    .networkResultSection--public {
        border-top-width: 6px;
    }
}

/* R40：修复搜索结果页的搜索历史被后续内容层遮挡。 */
.networkSearchPage .networkSearchHero {
    position: relative;
    z-index: 3;
}

.networkSearchPage .networkWorkspace {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    /* 手机键盘会显著压缩可视区域，搜索辅助内容改为正常文档流，避免覆盖下一块。 */
    .networkSearchPage .networkSmartSearch .searchAssist {
        position: static;
        inset: auto;
        width: 100%;
        max-height: 260px;
        max-height: min(260px, 38svh);
        margin-top: 12px;
        overflow-x: hidden;
        overflow-y: auto;
        box-sizing: border-box;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 9px 24px rgba(21, 28, 38, .1);
    }

    .networkSearchPage .searchAssistHeading {
        min-width: 0;
    }

    .networkSearchPage .searchAssistHeading small {
        overflow: hidden;
        min-width: 0;
        flex: 1 1 auto;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .networkSearchPage .searchAssistHeading button {
        flex: 0 0 auto;
    }

    .networkSearchPage .searchAssistWords a,
    .networkSearchPage .searchAssistWords button {
        max-width: calc(50% - 4px);
    }
}
