/*
 * 搜盘鸭 Experience V3
 * 视觉目标：搜索指挥中心。所有核心正文均服务端输出，动效只做渐进增强。
 */
:root {
    --sp-ink: #0b1b2b;
    --sp-ink-soft: #31475d;
    --sp-night: #05131f;
    --sp-night-2: #08243a;
    --sp-night-3: #0d3554;
    --sp-cyan: #55e6c1;
    --sp-cyan-soft: #dffbf3;
    --sp-blue: #3478f6;
    --sp-blue-deep: #1e57d9;
    --sp-yellow: #ffbd2e;
    --sp-yellow-soft: #fff4d8;
    --sp-surface: #ffffff;
    --sp-canvas: #f3f6fa;
    --sp-line: #dde7f1;
    --sp-muted: #6f8194;
    --sp-shadow: 0 24px 70px rgba(9, 31, 51, .10);
    --sp-shadow-soft: 0 14px 42px rgba(9, 31, 51, .07);
}

html {
    scroll-padding-top: 92px;
}

html,
body {
    color: var(--sp-ink);
    background:
        radial-gradient(circle at 7% 8%, rgba(52, 120, 246, .055), transparent 24rem),
        radial-gradient(circle at 93% 34%, rgba(85, 230, 193, .045), transparent 26rem),
        var(--sp-canvas);
    font-family: "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-rendering: optimizeLegibility;
}

body {
    overflow-x: hidden;
}

::selection {
    color: #061827;
    background: rgba(85, 230, 193, .62);
}

:where(a, button, summary, [role="button"]):focus-visible {
    outline: 3px solid rgba(52, 120, 246, .35) !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;
}

button,
a,
input,
summary {
    -webkit-tap-highlight-color: transparent;
}

.headerBox {
    height: 76px;
    border-bottom: 1px solid rgba(214, 225, 236, .78);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 8px 35px rgba(9, 31, 51, .045);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.headerKox {
    height: 76px;
}

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

.brandMark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    background: linear-gradient(145deg, #ffd45d, var(--sp-yellow));
    box-shadow: 0 9px 24px rgba(255, 189, 46, .25);
}

.headerBox .box .logoBox .title {
    margin-left: 11px;
    color: var(--sp-ink);
    font-size: 20px;
    font-weight: 850;
    letter-spacing: -.02em;
}

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

.headerBox .box .navs .item,
.headerBox .box .navs a,
.headerBox .box .navs .navLink {
    position: relative;
    color: #41566c;
    font-size: 14px;
    font-weight: 700;
}

.headerBox .box .navs .navLink::after {
    position: absolute;
    right: 50%;
    bottom: 1px;
    left: 50%;
    height: 2px;
    border-radius: 2px;
    background: var(--sp-blue);
    content: "";
    transition: right .22s ease, left .22s ease;
}

.headerBox .box .navs .navLink:hover::after {
    right: 0;
    left: 0;
}

.headerBox .box .search {
    max-width: 390px;
    height: 44px;
    margin-right: 36px;
    border: 1px solid #dbe5ef;
    background: rgba(245, 248, 251, .94);
    box-shadow: inset 0 1px 0 #fff;
}

.headerBox .box .search::after {
    display: none;
}

.headerBox .box .search:focus-within {
    border-color: rgba(52, 120, 246, .45);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(52, 120, 246, .08);
}

.headerBox .box .search input {
    padding-left: 19px;
    font-size: 14px;
}

.headerBox .box .search .btn {
    width: 52px;
    height: 42px;
}

.homeExperience .headerBox {
    border-bottom-color: rgba(255, 255, 255, .07);
    background: rgba(5, 19, 31, .94);
    box-shadow: none;
}

.homeExperience .headerBox .box .logoBox .title {
    color: #fff;
}

.homeExperience .headerBox .box .navs .item,
.homeExperience .headerBox .box .navs a,
.homeExperience .headerBox .box .navs .navLink {
    color: rgba(231, 241, 250, .78);
}

.homeExperience .headerBox .box .navs .item:hover,
.homeExperience .headerBox .box .navs a:hover {
    color: #fff;
}

.homeExperience .headerBox .box .search {
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .09);
}

.homeExperience .headerBox .box .search input {
    color: #fff;
}

.homeExperience .headerBox .box .search input::placeholder {
    color: rgba(255, 255, 255, .55);
}

/* 首页首屏 */
.homeBox {
    width: min(1240px, calc(100% - 48px));
    padding-top: 24px;
}

.homeHero {
    isolation: isolate;
    min-height: 570px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 34px;
    background:
        radial-gradient(circle at 78% 8%, rgba(52, 120, 246, .33), transparent 31%),
        radial-gradient(circle at 82% 90%, rgba(85, 230, 193, .12), transparent 28%),
        linear-gradient(130deg, var(--sp-night) 0%, #072037 52%, #0a3150 100%);
    box-shadow: 0 34px 90px rgba(5, 22, 37, .25);
}

.homeHero::before {
    z-index: -2;
    opacity: .14;
    background-image:
        linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle at 75% 48%, #000, transparent 72%);
    -webkit-mask-image: radial-gradient(circle at 75% 48%, #000, transparent 72%);
}

.homeHero::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle 360px at var(--hero-x, 73%) var(--hero-y, 42%), rgba(85, 230, 193, .09), transparent 72%);
    content: "";
    pointer-events: none;
}

.particleField,
.heroNoise {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particleField {
    z-index: -1;
    opacity: .72;
}

.heroNoise {
    z-index: -1;
    opacity: .045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.heroGlowOne {
    width: 440px;
    height: 440px;
    right: -190px;
    top: -250px;
    background: rgba(52, 120, 246, .22);
}

.heroGlowTwo {
    width: 360px;
    height: 360px;
    right: 250px;
    bottom: -290px;
    background: rgba(85, 230, 193, .12);
}

.heroContent {
    width: 58%;
    margin-left: 64px;
    padding: 70px 0 66px;
}

.heroEyebrow {
    margin-bottom: 20px;
    color: rgba(220, 236, 250, .70);
    font-size: 12px;
    letter-spacing: .17em;
}

.heroEyebrow span {
    width: 34px;
    background: linear-gradient(90deg, var(--sp-cyan), var(--sp-yellow));
    box-shadow: 0 0 18px rgba(85, 230, 193, .5);
}

.homeHero h1 {
    max-width: 650px;
    margin: 0;
    font-size: clamp(46px, 5.4vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.065em;
}

.homeHero h1 em {
    color: transparent;
    background: linear-gradient(90deg, #fff2bb 0%, var(--sp-yellow) 40%, var(--sp-cyan) 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.heroDescription {
    max-width: 650px;
    margin-top: 22px;
    color: rgba(221, 235, 248, .72);
    font-size: 16px;
    line-height: 1.9;
}

.searchBox .heroSearch {
    width: min(680px, 100%);
    height: 68px;
    margin-top: 32px;
    padding: 6px 7px 6px 23px;
    border: 1px solid rgba(255, 255, 255, .66);
    border-radius: 19px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 21px 52px rgba(0, 8, 18, .26), 0 0 0 7px rgba(255, 255, 255, .045);
    transition: box-shadow .22s ease, transform .22s ease;
}

.searchBox .heroSearch:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 25px 58px rgba(0, 8, 18, .31), 0 0 0 7px rgba(85, 230, 193, .10);
}

.heroSearch .searchLead {
    color: #6d8197;
}

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

.searchBox .heroSearch .btn {
    width: 112px;
    height: 54px;
    border-radius: 14px;
    color: #081d2e;
    background: linear-gradient(135deg, #ffd45d, var(--sp-yellow));
    box-shadow: 0 8px 22px rgba(255, 189, 46, .23);
}

.searchBox .heroSearch .btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 13px 28px rgba(255, 189, 46, .32);
}

.platformRow {
    gap: 7px;
    margin-top: 21px;
}

.platformLabel {
    margin-right: 5px;
    color: rgba(213, 231, 245, .46);
}

.platformChip {
    padding: 6px 10px;
    border-color: rgba(255, 255, 255, .1);
    border-radius: 9px;
    color: rgba(235, 244, 252, .82);
    background: rgba(255, 255, 255, .055);
    backdrop-filter: blur(8px);
}

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

.trustRow {
    gap: 22px;
    margin-top: 20px;
    color: rgba(209, 228, 244, .56);
}

.trustRow i {
    color: #052234;
    background: var(--sp-cyan);
}

/* 首屏右侧平台拓扑 */
.heroNetwork {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 34px;
    width: 440px;
    height: 440px;
    transform: translateY(-50%) perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transform-style: preserve-3d;
    transition: transform .18s ease-out;
}

.networkHalo {
    position: absolute;
    border: 1px solid rgba(138, 190, 235, .18);
    border-radius: 50%;
}

.networkHalo::before,
.networkHalo::after {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--sp-cyan);
    box-shadow: 0 0 14px var(--sp-cyan);
    content: "";
}

.haloOne {
    inset: 34px;
    animation: haloSpin 24s linear infinite;
}

.haloOne::before {
    top: 34px;
    right: 57px;
}

.haloOne::after {
    bottom: 13px;
    left: 114px;
    background: var(--sp-yellow);
    box-shadow: 0 0 14px var(--sp-yellow);
}

.haloTwo {
    inset: 92px;
    border-style: dashed;
    animation: haloSpin 17s linear infinite reverse;
}

.haloTwo::before {
    top: -3px;
    left: 50%;
}

.haloTwo::after {
    right: -3px;
    bottom: 45px;
}

.networkCore {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 114px;
    height: 114px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(22, 70, 106, .92), rgba(5, 25, 41, .94));
    box-shadow: 0 22px 55px rgba(0, 5, 12, .38), inset 0 1px 0 rgba(255, 255, 255, .12), 0 0 44px rgba(52, 120, 246, .2);
    transform: translate(-50%, -50%) rotate(-5deg);
}

.networkCore strong {
    margin-top: 18px;
    color: #fff;
    font-size: 35px;
    line-height: 1;
}

.networkCore small {
    align-self: start;
    color: rgba(220, 238, 251, .54);
    font-size: 10px;
    letter-spacing: .12em;
}

.networkCoreSignal {
    position: absolute;
    top: 17px;
    right: 17px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sp-cyan);
    box-shadow: 0 0 0 6px rgba(85, 230, 193, .08), 0 0 16px var(--sp-cyan);
    animation: signalPulse 1.8s ease-in-out infinite;
}

.networkNode {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 92px;
    padding: 8px 12px 8px 9px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 14px;
    color: rgba(242, 248, 253, .86);
    background: rgba(8, 31, 50, .76);
    box-shadow: 0 16px 35px rgba(0, 6, 14, .25), inset 0 1px 0 rgba(255, 255, 255, .07);
    backdrop-filter: blur(14px);
    font-size: 12px;
    font-weight: 700;
    animation: nodeFloat 5s ease-in-out infinite;
}

.networkNode img {
    width: 29px;
    height: 29px;
    border: 3px solid rgba(255, 255, 255, .9);
    border-radius: 9px;
    background: #fff;
    object-fit: cover;
}

.nodeQuark { top: 24px; left: 172px; }
.nodeBaidu { top: 115px; right: 3px; animation-delay: -.8s; }
.nodeAli { right: 40px; bottom: 52px; animation-delay: -1.6s; }
.nodeUc { bottom: 12px; left: 78px; animation-delay: -2.4s; }
.nodeXunlei { top: 130px; left: -5px; animation-delay: -3.2s; }

.networkData {
    position: absolute;
    padding: 6px 9px;
    border: 1px solid rgba(85, 230, 193, .16);
    border-radius: 7px;
    color: rgba(85, 230, 193, .6);
    background: rgba(5, 22, 37, .7);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 8px;
    letter-spacing: .12em;
}

.dataOne { top: 50px; right: 20px; }
.dataTwo { bottom: 92px; left: 2px; }

@keyframes haloSpin { to { transform: rotate(360deg); } }
@keyframes nodeFloat { 50% { transform: translateY(-7px); } }
@keyframes signalPulse { 50% { opacity: .42; transform: scale(.82); } }

/* 首屏数据条 */
.capabilityStrip {
    position: relative;
    z-index: 5;
    display: grid;
    width: calc(100% - 64px);
    margin: -34px auto 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(218, 228, 238, .86);
    border-radius: 21px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 20px 56px rgba(9, 31, 51, .12);
    backdrop-filter: blur(18px);
}

.capabilityStrip > div {
    position: relative;
    padding: 23px 26px;
}

.capabilityStrip > div + div::before {
    position: absolute;
    top: 21px;
    bottom: 21px;
    left: 0;
    width: 1px;
    background: var(--sp-line);
    content: "";
}

.capabilityStrip strong,
.capabilityStrip span {
    display: block;
}

.capabilityStrip strong {
    color: var(--sp-ink);
    font-size: 18px;
    font-weight: 900;
}

.capabilityStrip span {
    margin-top: 4px;
    color: var(--sp-muted);
    font-size: 12px;
}

/* GEO 可读说明 */
.answerSection {
    display: grid;
    overflow: hidden;
    margin-top: 84px;
    grid-template-columns: .88fr 1.12fr;
    border: 1px solid var(--sp-line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--sp-shadow-soft);
}

.answerLead {
    position: relative;
    overflow: hidden;
    padding: 48px 46px;
    color: #fff;
    background:
        radial-gradient(circle at 10% 0, rgba(85, 230, 193, .15), transparent 31%),
        linear-gradient(145deg, #071a2b, #0b304b);
}

.answerLead::after {
    position: absolute;
    right: -62px;
    bottom: -62px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
    box-shadow: 0 0 0 36px rgba(255, 255, 255, .025), 0 0 0 72px rgba(255, 255, 255, .018);
    content: "";
}

.answerLead .sectionKicker {
    color: var(--sp-cyan);
}

.answerLead h2 {
    margin: 9px 0 0;
    color: #fff;
    font-size: 34px;
    line-height: 1.35;
}

.answerLead p {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    color: rgba(222, 236, 248, .71);
    font-size: 15px;
    line-height: 2;
}

.answerFlow {
    display: grid;
    padding: 24px 38px;
    align-content: center;
}

.answerFlow article {
    position: relative;
    display: grid;
    min-height: 92px;
    padding: 19px 0;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    border-bottom: 1px solid #e9eff5;
}

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

.answerFlow article > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 15px;
    color: var(--sp-blue-deep);
    background: #edf3ff;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 12px;
    font-weight: 900;
}

.answerFlow h3 {
    color: var(--sp-ink);
    font-size: 17px;
}

.answerFlow p {
    margin-top: 5px;
    color: var(--sp-muted);
    font-size: 13px;
    line-height: 1.7;
}

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

.sectionHeading {
    margin-bottom: 27px;
}

.sectionKicker {
    color: var(--sp-blue);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 11px;
    letter-spacing: .19em;
}

.sectionHeading h2 {
    margin-top: 7px;
    color: var(--sp-ink);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -.035em;
}

.sectionHeading > p {
    color: var(--sp-muted);
    line-height: 1.75;
}

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

.home .block,
.home.homeNO .block {
    overflow: hidden;
    border: 1px solid var(--sp-line);
    border-radius: 21px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--sp-shadow-soft);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.home .block:hover,
.home.homeNO .block:hover {
    border-color: #cbd9e7;
    box-shadow: 0 21px 52px rgba(9, 31, 51, .105);
    transform: translateY(-3px);
}

.home .nav {
    min-height: 56px;
    padding: 3px 22px 10px;
    color: var(--sp-ink);
    font-size: 16px;
    font-weight: 850;
}

.home .nav::after {
    width: 7px;
    height: 7px;
    margin-left: auto;
    border-radius: 50%;
    background: var(--sp-cyan);
    box-shadow: 0 0 0 5px rgba(85, 230, 193, .11);
    content: "";
}

.home.homeNO .content .list {
    padding: 0 15px 17px;
}

.home.homeNO .content .list .item p {
    position: relative;
    padding: 8px 10px 8px 30px;
    border-radius: 9px;
    color: #3c5167;
    font-size: 13px;
    transition: color .18s ease, background .18s ease, transform .18s ease;
}

.home.homeNO .content .list .item p > span {
    position: absolute;
    left: 8px;
    width: 15px;
    color: #9aa8b7;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 11px;
    text-align: center;
}

.home.homeNO .content .list .item:hover p {
    color: var(--sp-blue-deep);
    background: #f0f5ff;
    transform: translateX(2px);
}

.home .content .list .item .img {
    background: linear-gradient(145deg, #edf2f7, #e1e9f1);
}

.home .content .list .item .img img {
    transition: transform .5s ease;
}

.home .content .list .item:hover .img img {
    transform: scale(1.035);
}

.valueGrid {
    gap: 18px;
}

.valueGrid article {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 235px;
    padding: 31px;
    border: 1px solid var(--sp-line);
    border-radius: 23px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--sp-shadow-soft);
    transition: transform .25s ease, box-shadow .25s ease;
}

.valueGrid article::after {
    position: absolute;
    z-index: -1;
    right: -52px;
    bottom: -58px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(52, 120, 246, .045);
    content: "";
}

.valueGrid article:nth-child(2)::after { background: rgba(85, 230, 193, .08); }
.valueGrid article:nth-child(3)::after { background: rgba(255, 189, 46, .10); }

.valueGrid article:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 58px rgba(9, 31, 51, .11);
}

.valueIcon {
    width: 47px;
    height: 47px;
    border-radius: 15px;
    color: var(--sp-blue-deep);
    background: #edf3ff;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.valueGrid article:nth-child(2) .valueIcon { color: #087b62; background: var(--sp-cyan-soft); }
.valueGrid article:nth-child(3) .valueIcon { color: #8a5a00; background: var(--sp-yellow-soft); }

.valueGrid h3 {
    margin-top: 25px;
    color: var(--sp-ink);
    font-size: 19px;
    font-weight: 850;
}

.valueGrid p {
    margin-top: 11px;
    color: var(--sp-muted);
    font-size: 14px;
    line-height: 1.9;
}

.faqSection {
    padding-bottom: 70px;
}

.faqList {
    border: 1px solid var(--sp-line);
    border-radius: 23px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--sp-shadow-soft);
}

.faqList details {
    padding: 0 29px;
}

.faqList summary {
    padding: 22px 42px 22px 0;
    color: var(--sp-ink);
    font-size: 15px;
    font-weight: 800;
}

.faqList summary::after {
    top: 16px;
    display: grid;
    width: 33px;
    height: 33px;
    place-items: center;
    border-radius: 10px;
    background: #edf3ff;
    font-size: 19px;
}

.faqList details p {
    padding-bottom: 23px;
    color: var(--sp-muted);
    font-size: 14px;
    line-height: 1.9;
}

/* 搜索结果：深色控制台 + 明亮工作区 */
.networkSearchPage {
    width: min(1160px, calc(100% - 48px));
    min-height: calc(100vh - 260px);
    padding: 30px 0 76px;
}

.networkSearchHero {
    isolation: isolate;
    min-height: 306px;
    padding: 42px 46px 35px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 29px;
    background:
        radial-gradient(circle at 88% 16%, rgba(52, 120, 246, .34), transparent 32%),
        linear-gradient(135deg, #061522 0%, #092943 61%, #0c3a5d 100%);
    box-shadow: 0 30px 78px rgba(6, 25, 42, .22);
}

.networkSearchHero::after {
    right: -33px;
    bottom: -143px;
    width: 360px;
    height: 360px;
    box-shadow: 0 0 0 47px rgba(255, 255, 255, .025), 0 0 0 94px rgba(255, 255, 255, .018);
}

.networkHeroGrid {
    position: absolute;
    z-index: 0;
    inset: 0;
    opacity: .11;
    background-image:
        linear-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .14) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, transparent, #000 38%, #000);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 38%, #000);
}

.networkHeroScanner {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 68%;
    width: 1px;
    background: linear-gradient(transparent, rgba(85, 230, 193, .65), transparent);
    box-shadow: 0 0 18px rgba(85, 230, 193, .45);
    animation: scannerMove 7s ease-in-out infinite;
}

@keyframes scannerMove {
    50% { transform: translateX(180px); opacity: .35; }
}

.networkEyebrow {
    margin-bottom: 12px;
    color: var(--sp-cyan);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 10px;
}

.networkEyebrow i {
    background: var(--sp-cyan);
    box-shadow: 0 0 0 5px rgba(85, 230, 193, .1), 0 0 16px rgba(85, 230, 193, .5);
}

.networkSearchHero h1 {
    max-width: 820px;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    letter-spacing: -.045em;
}

.networkSearchHero .networkHeroCopy p {
    margin-top: 10px;
    color: rgba(218, 233, 247, .67);
    font-size: 14px;
}

.networkSearchForm {
    width: min(810px, 100%);
    height: 66px;
    margin-top: 27px;
    padding: 5px 6px 5px 21px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 9, 20, .27), 0 0 0 6px rgba(255, 255, 255, .04);
    transition: transform .2s ease, box-shadow .2s ease;
}

.networkSearchForm:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 23px 52px rgba(0, 9, 20, .32), 0 0 0 6px rgba(85, 230, 193, .09);
}

.networkSearchForm button {
    height: 54px;
    min-width: 116px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffd45d, var(--sp-yellow));
}

.networkTrustRow {
    gap: 22px;
    margin-top: 24px;
    color: rgba(218, 233, 247, .63);
}

.networkTrustRow b {
    color: var(--sp-cyan);
}

.networkWorkspace {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: calc(100% - 34px);
    margin: -14px auto 0;
    border: 1px solid rgba(218, 228, 238, .94);
    border-radius: 24px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 28px 72px rgba(9, 31, 51, .13);
}

.networkToolbar {
    gap: 34px;
    padding: 25px 28px 22px;
    background: linear-gradient(180deg, #fff, #fbfcfe);
}

.networkToolbarTitle {
    flex-basis: 188px;
}

.networkToolbarTitle > span {
    color: var(--sp-ink);
    font-size: 16px;
    font-weight: 900;
}

.networkToolbarTitle p {
    margin-top: 5px;
    color: var(--sp-muted);
    font-size: 11px;
}

.networkPanTabs {
    gap: 9px;
}

.networkPanTabs button {
    min-width: 114px;
    height: 44px;
    border-color: #e4ebf3;
    border-radius: 12px;
    color: #52677c;
    background: #f6f8fb;
    font-weight: 800;
}

.networkPanTabs button:hover {
    border-color: #cddcf1;
    transform: translateY(-1px);
}

.networkPanTabs button.active {
    border-color: #174dc6;
    background: linear-gradient(135deg, #3478f6, #1f5fe7);
    box-shadow: 0 10px 23px rgba(52, 120, 246, .24);
}

.networkResultHeader {
    min-height: 57px;
    padding: 0 29px;
    background: #f8fafc;
}

.networkResultDot {
    background: var(--sp-cyan);
    box-shadow: 0 0 0 5px rgba(85, 230, 193, .09);
}

.networkResultList {
    padding: 10px 28px 22px;
    counter-reset: result-card;
}

.networkResultCard {
    position: relative;
    min-height: 102px;
    padding: 19px 18px 19px 12px;
    counter-increment: result-card;
    border-bottom-color: #e8eef4;
}

.networkResultCard::before {
    position: absolute;
    top: 50%;
    left: -3px;
    width: 2px;
    height: 0;
    border-radius: 4px;
    background: linear-gradient(var(--sp-cyan), var(--sp-blue));
    content: "";
    transform: translateY(-50%);
    transition: height .2s ease;
}

.networkResultCard:hover {
    background: linear-gradient(90deg, rgba(52, 120, 246, .045), rgba(85, 230, 193, .018));
    transform: none;
}

.networkResultCard:hover::before {
    height: 56px;
}

.networkResultSource {
    flex-basis: 49px;
    width: 49px;
    height: 49px;
    border-color: #e1e9f2;
    border-radius: 15px;
    background: #f2f6fa;
    box-shadow: inset 0 1px 0 #fff;
}

.networkResultSource img {
    width: 29px;
    height: 29px;
    border-radius: 8px;
}

.networkResultTitle {
    color: #13283e;
    font-size: 16px;
    font-weight: 850;
}

.networkResultMeta {
    color: #8392a3;
}

.networkGetButton {
    min-width: 116px;
    height: 43px;
    border-color: #d7e4f8;
    border-radius: 12px;
    color: var(--sp-blue-deep);
    background: #edf4ff;
}

.networkResultActions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
}

.networkDetailButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 102px;
    height: 43px;
    border: 1px solid #dfe7ef;
    border-radius: 12px;
    color: #455c72;
    background: #fff;
    font-size: 13px;
    font-weight: 800;
    transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}

.networkDetailButton span {
    font-size: 14px;
}

.networkDetailButton:hover {
    border-color: #cbd9e9;
    color: var(--sp-blue-deep);
    background: #f6f9fd;
    transform: translateY(-1px);
}

.networkGetButton:hover {
    border-color: var(--sp-blue);
    background: linear-gradient(135deg, var(--sp-blue), var(--sp-blue-deep));
    transform: translateY(-1px);
}

.networkEmptyState {
    padding: 76px 20px 83px;
}

.networkEmptyIcon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #edf3f8;
}

.networkNotice {
    margin-top: 21px;
}

/* 资源详情档案 */
.detailBox {
    width: min(1120px, calc(100% - 48px));
    gap: 24px;
    padding-top: 25px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    min-height: 35px;
    margin-bottom: 14px;
    gap: 9px;
    color: #8795a4;
    font-size: 12px;
}

.breadcrumb a:hover {
    color: var(--sp-blue);
}

.breadcrumb strong {
    overflow: hidden;
    max-width: 260px;
    color: #607285;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detailHeading {
    display: none;
}

.detailBox .details {
    padding: 0;
    border: 1px solid var(--sp-line);
    border-radius: 25px;
    background: rgba(255, 255, 255, .97);
    box-shadow: var(--sp-shadow);
}

.detailTop {
    position: relative;
    display: grid;
    min-height: 285px;
    padding: 38px 42px;
    grid-template-columns: 174px minmax(0, 1fr);
    align-items: center;
    gap: 34px;
    overflow: hidden;
    border-bottom: 1px solid var(--sp-line);
    background:
        radial-gradient(circle at 9% 15%, rgba(85, 230, 193, .08), transparent 24%),
        radial-gradient(circle at 92% 90%, rgba(52, 120, 246, .08), transparent 29%),
        #fff;
}

.detailTop::after {
    position: absolute;
    top: -54px;
    right: -48px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(52, 120, 246, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 36px rgba(52, 120, 246, .025), 0 0 0 72px rgba(52, 120, 246, .015);
    content: "";
}

.detailBox .details .pic {
    width: 164px;
    height: 226px;
    margin: 0;
    border: 5px solid #fff;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(9, 31, 51, .18);
}

.detailPanVisual {
    position: relative;
    display: grid;
    width: 164px;
    height: 164px;
    place-items: center;
    border: 1px solid #dce7f1;
    border-radius: 35px;
    background: linear-gradient(145deg, #f7f9fc, #eaf1f7);
    box-shadow: 0 20px 45px rgba(9, 31, 51, .11), inset 0 1px 0 #fff;
}

.detailPanVisual img {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    border: 7px solid #fff;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 13px 28px rgba(9, 31, 51, .14);
}

.detailPanOrbit {
    position: absolute;
    inset: 18px;
    border: 1px dashed rgba(52, 120, 246, .25);
    border-radius: 50%;
    animation: haloSpin 18s linear infinite;
}

.detailPanOrbit::after {
    position: absolute;
    top: 8px;
    right: 19px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sp-cyan);
    box-shadow: 0 0 12px rgba(85, 230, 193, .65);
    content: "";
}

.detailSummary {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.detailBadges,
.detailQuickMeta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.detailBadges > span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
}

.detailVerified {
    color: #08775f;
    background: var(--sp-cyan-soft);
}

.detailVerified i {
    width: 6px;
    height: 6px;
    margin-right: 6px;
    border-radius: 50%;
    background: var(--sp-cyan);
    box-shadow: 0 0 0 4px rgba(85, 230, 193, .13);
}

.detailTemporary { color: #9a6200; background: var(--sp-yellow-soft); }
.detailPermanent { color: #2358c6; background: #edf3ff; }

.detailBox .details .title {
    max-width: 690px;
    margin: 17px 0 0;
    color: var(--sp-ink);
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 900;
    line-height: 1.42;
    letter-spacing: -.035em;
    text-align: left;
}

.detailIntro {
    max-width: 690px;
    margin-top: 13px;
    color: var(--sp-muted);
    font-size: 13px;
    line-height: 1.8;
}

.detailQuickMeta {
    margin-top: 18px;
    color: #5f7286;
    font-size: 12px;
}

.detailQuickMeta span {
    padding: 6px 10px;
    border: 1px solid #e2e9f0;
    border-radius: 8px;
    background: #f8fafc;
}

.detailFacts {
    padding: 28px 42px 8px;
}

.detailBox .details .cat {
    padding: 14px 0;
    border-bottom-color: #ebf0f5;
}

.detailBox .details .cat .l {
    width: 94px;
    color: #7e8e9e;
    font-size: 13px;
    font-weight: 700;
}

.detailBox .details .cat .r {
    color: #334a60;
    font-size: 14px;
    line-height: 1.9;
}

.detailDescriptionRow {
    display: grid !important;
    grid-template-columns: 94px minmax(0, 1fr);
}

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

.detailFactGrid .cat {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
}

.detailFactGrid .cat .r {
    display: flex;
    align-items: center;
}

.detailCode {
    color: #d94a42 !important;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 16px !important;
    font-weight: 900;
    letter-spacing: .08em;
}

.detailUrlRow {
    display: grid !important;
    grid-template-columns: 94px minmax(0, 1fr);
}

.detailUrl {
    display: block;
    overflow: hidden;
    max-width: 100%;
    padding: 11px 14px;
    border: 1px solid #dce7f3;
    border-radius: 11px;
    color: var(--sp-blue-deep) !important;
    background: #f1f6ff;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detailBox .details > .btns {
    margin: 0;
    padding: 25px 42px 34px;
    justify-content: flex-start;
}

.detailBox .details .btns .btn {
    min-width: 136px;
    height: 45px;
    margin: 0 10px 0 0;
    line-height: 45px;
    border: 1px solid #e0e8f0;
    border-radius: 12px;
    color: #41576c;
    background: #f5f8fb;
    font-weight: 750;
    transition: transform .18s ease, box-shadow .18s ease;
}

.detailBox .details .btns .btn:hover {
    transform: translateY(-2px);
}

.detailBox .details .btns .btn.btnCol {
    border-color: var(--sp-blue-deep);
    background: linear-gradient(135deg, var(--sp-blue), var(--sp-blue-deep));
    box-shadow: 0 10px 24px rgba(52, 120, 246, .21);
}

.detailBox .samelistNav {
    margin: 34px 0 15px;
    color: var(--sp-ink);
    font-size: 21px;
    font-weight: 900;
}

.detailBox .details.samelistBox {
    padding: 19px 24px;
    border-radius: 20px;
    box-shadow: var(--sp-shadow-soft);
}

.samelist .item p {
    padding: 9px 11px;
    border-radius: 8px;
    color: #42586d;
    transition: color .18s ease, background .18s ease;
}

.samelist .item:hover p {
    color: var(--sp-blue-deep);
    background: #f0f5ff;
}

.detailBox .right {
    width: 260px;
    margin-top: 49px;
}

.detailBox .right .nav {
    padding: 0 0 12px;
    color: var(--sp-ink);
    font-size: 15px;
    font-weight: 850;
}

.detailBox .right .box {
    min-height: 0;
    padding: 12px;
    border: 1px solid var(--sp-line);
    border-radius: 18px;
    box-shadow: var(--sp-shadow-soft);
}

/* 弹窗与页脚 */
.dialogUrlBox {
    border-radius: 22px;
}

.dialogUrlBox .el-dialog {
    border: 1px solid var(--sp-line);
    border-radius: 22px;
    box-shadow: 0 28px 85px rgba(5, 20, 34, .22);
}

.footerBox {
    margin-top: 24px;
    padding: 38px 0;
    color: #8297aa;
    background:
        radial-gradient(circle at 12% 0, rgba(85, 230, 193, .08), transparent 25%),
        #061522;
}

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

.footerBrand strong {
    font-weight: 850;
}

.footerBrand p {
    color: #72879a;
    line-height: 1.7;
}

.headerBox.isScrolled {
    box-shadow: 0 12px 38px rgba(9, 31, 51, .09);
}

.homeExperience .headerBox.isScrolled {
    background: rgba(5, 19, 31, .975);
    box-shadow: 0 12px 40px rgba(0, 8, 17, .25);
}

@media (max-width: 1080px) {
    .heroContent {
        width: 64%;
        margin-left: 48px;
    }

    .heroNetwork {
        right: 4px;
        width: 390px;
        height: 390px;
        opacity: .76;
        transform: translateY(-50%) scale(.9) perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    }

    .home.homeNO {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .heroContent {
        width: calc(100% - 88px);
    }

    .heroNetwork {
        right: -100px;
        opacity: .22;
    }

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

    .answerLead {
        padding: 40px;
    }

    .capabilityStrip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .detailBox .right {
        display: none;
    }
}

@media (max-width: 768px) {
    html,
    body {
        font-size: 16px;
    }

    .headerBox,
    .headerKox {
        height: 64px;
    }

    .headerBox .box {
        width: calc(100% - 28px);
        padding: 0;
    }

    .headerBox .box .logoBox .title {
        font-size: 18px;
    }

    .homeExperience .headerBox .box .navs .iconfont {
        color: #fff;
    }

    .homeBox {
        width: calc(100% - 24px);
        padding-top: 12px;
    }

    .homeHero {
        min-height: 0;
        border-radius: 24px;
    }

    .heroContent {
        width: calc(100% - 38px);
        margin: 0 auto;
        padding: 42px 0 37px;
    }

    .heroNetwork,
    .particleField {
        display: none;
    }

    .heroEyebrow {
        margin-bottom: 15px;
        font-size: 10px;
    }

    .homeHero h1 {
        font-size: clamp(36px, 11vw, 48px);
        line-height: 1.08;
    }

    .heroDescription {
        margin-top: 17px;
        font-size: 14px;
        line-height: 1.8;
    }

    .searchBox .heroSearch {
        height: 59px;
        margin-top: 25px;
        padding: 4px 4px 4px 15px;
        border-radius: 16px;
    }

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

    .searchBox .heroSearch .btn {
        width: 76px;
        height: 49px;
        border-radius: 12px;
        font-size: 14px;
    }

    .platformRow {
        margin-top: 17px;
    }

    .platformLabel {
        width: 100%;
    }

    .platformChip {
        padding: 5px 7px;
        font-size: 11px;
    }

    .trustRow {
        display: grid;
        margin-top: 16px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px 10px;
        font-size: 11px;
    }

    .capabilityStrip {
        width: calc(100% - 16px);
        margin-top: -20px;
        border-radius: 17px;
    }

    .capabilityStrip > div {
        padding: 17px 14px;
    }

    .capabilityStrip strong {
        font-size: 15px;
    }

    .capabilityStrip span {
        font-size: 10px;
    }

    .answerSection {
        margin-top: 56px;
        border-radius: 21px;
    }

    .answerLead {
        padding: 31px 25px;
    }

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

    .answerLead p {
        margin-top: 13px;
        font-size: 14px;
        line-height: 1.85;
    }

    .answerFlow {
        padding: 14px 22px;
    }

    .answerFlow article {
        min-height: 84px;
        grid-template-columns: 45px 1fr;
        gap: 12px;
    }

    .answerFlow article > span {
        width: 41px;
        height: 41px;
        border-radius: 12px;
    }

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

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

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

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

    .valueGrid article {
        min-height: 0;
        padding: 25px;
    }

    .faqSection {
        padding-bottom: 46px;
    }

    .faqList details {
        padding: 0 20px;
    }

    .faqList summary {
        padding: 20px 40px 20px 0;
        font-size: 14px;
    }

    .networkSearchPage {
        width: calc(100% - 24px);
        padding: 17px 0 53px;
    }

    .networkSearchHero {
        min-height: 0;
        padding: 30px 22px 35px;
        border-radius: 22px;
    }

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

    .networkSearchHero .networkHeroCopy p {
        font-size: 13px;
        line-height: 1.75;
    }

    .networkSearchForm {
        height: 57px;
        margin-top: 22px;
        padding-left: 14px;
        border-radius: 15px;
    }

    .networkSearchForm input {
        width: 0;
        padding: 0 8px;
        font-size: 14px;
    }

    .networkSearchForm button {
        min-width: 0;
        height: 47px;
        padding: 0 15px;
        border-radius: 12px;
        font-size: 13px;
    }

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

    .networkWorkspace {
        width: calc(100% - 10px);
        margin-top: -13px;
        border-radius: 19px;
    }

    .networkToolbar {
        padding: 21px 17px 17px;
    }

    .networkPanTabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .networkPanTabs button {
        min-width: 0;
        height: 42px;
        padding: 0 7px;
        font-size: 12px;
    }

    .networkResultHeader {
        padding: 0 17px;
    }

    .networkResultList {
        padding: 5px 12px 15px;
    }

    .networkResultCard {
        display: block;
        padding: 18px 4px;
    }

    .networkResultSource {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        margin-right: 11px;
        border-radius: 12px;
    }

    .networkResultSource img {
        width: 25px;
        height: 25px;
    }

    .networkResultTitle {
        display: -webkit-box;
        font-size: 15px;
        white-space: normal;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .networkGetButton {
        width: 100%;
        height: 41px;
        margin-top: 14px;
    }

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

    .networkResultActions .networkDetailButton,
    .networkResultActions .networkGetButton {
        width: 100%;
        min-width: 0;
        height: 41px;
        margin: 0;
    }

    .detailBox {
        display: block;
        width: calc(100% - 24px);
        padding-top: 14px;
    }

    .detailBox .left {
        width: 100%;
        padding: 0;
    }

    .breadcrumb {
        overflow: hidden;
        margin-bottom: 8px;
        white-space: nowrap;
    }

    .detailBox .details {
        margin-top: 0;
        border-radius: 20px;
    }

    .detailTop {
        display: block;
        min-height: 0;
        padding: 27px 21px;
    }

    .detailBox .details .pic,
    .detailPanVisual {
        width: 118px;
        height: 158px;
        margin: 0 0 24px;
        border-radius: 18px;
    }

    .detailPanVisual {
        height: 118px;
    }

    .detailPanVisual img {
        width: 57px;
        height: 57px;
        border-radius: 18px;
    }

    .detailBox .details .title {
        margin-top: 14px;
        font-size: 23px;
        line-height: 1.48;
    }

    .detailFacts {
        padding: 20px 21px 4px;
    }

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

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

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

    .detailBox .details > .btns {
        padding: 22px 21px 27px;
        gap: 9px;
    }

    .detailBox .details .btns .btn {
        min-width: 0;
        margin: 0;
    }

    .detailBox .details.samelistBox {
        padding: 13px 14px;
    }

    .samelist .item {
        width: 100%;
    }

    .footerBox {
        padding: 32px 20px;
    }

    .footerBox .box {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .platformChip img {
        display: none;
    }

    .trustRow span:last-child {
        grid-column: 1 / -1;
    }

    .networkSearchForm > i {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .particleField {
        display: none !important;
    }

    .networkHalo,
    .networkNode,
    .networkCoreSignal,
    .networkHeroScanner,
    .detailPanOrbit {
        animation: none !important;
    }
}

@media (forced-colors: active) {
    .homeHero,
    .networkSearchHero,
    .answerLead,
    .footerBox {
        border: 1px solid CanvasText;
    }
}
