/* 行业方案 · 图片化 / 界面示意图展示 */

.vis-quick-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.vis-quick-jump a {
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--of-border);
    color: var(--of-text) !important;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: border-color .2s, color .2s;
}
.vis-quick-jump a:hover {
    border-color: var(--of-primary);
    color: var(--of-primary) !important;
}

/* 行业方案 · 平台模式 */
.platform-mode-intro {
    display: grid;
    gap: 16px;
    margin: 28px 0 8px;
}
@media (min-width: 768px) {
    .platform-mode-intro { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
    .platform-mode-intro { grid-template-columns: repeat(4, 1fr); }
}
.platform-mode-card {
    padding: 20px 22px;
    border-radius: 14px;
    border: 1px solid var(--of-border);
    background: var(--of-card);
}
.platform-mode-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}
.platform-mode-card p {
    margin: 0 0 12px;
    font-size: 0.8125rem;
    color: var(--of-muted);
    line-height: 1.55;
}
.platform-mode-card ul {
    margin: 0;
    padding-left: 18px;
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.5;
}
.platform-mode-card--hybrid { border-color: #fbcfe8; background: linear-gradient(165deg,#fdf2f8,#fff); }
.platform-mode-card--hybrid h3 { color: #be185d; }
.platform-mode-card--content { border-color: #bae6fd; background: linear-gradient(165deg,#f0f9ff,#fff); }
.platform-mode-card--content h3 { color: #0369a1; }
.platform-mode-card--trade { border-color: #ddd6fe; background: linear-gradient(165deg,#f5f3ff,#fff); }
.platform-mode-card--trade h3 { color: #6d28d9; }
.platform-mode-card--delivery { border-color: #c7d2fe; background: linear-gradient(165deg,#eef2ff,#fff); }
.platform-mode-card--delivery h3 { color: #4338ca; }

.mode-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.mode-badge--hybrid { background: #fce7f3; color: #9d174d; }
.mode-badge--content { background: #e0f2fe; color: #0369a1; }
.mode-badge--trade { background: #ede9fe; color: #6d28d9; }
.mode-badge--delivery { background: #e0e7ff; color: #4338ca; }

.platform-mode-table .fn-name { white-space: nowrap; }
.platform-mode-table td:nth-child(2) { font-size: 0.8125rem; color: #475569; }

/* 商家页 · 多行业入驻 */
.merchant-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 6px;
    margin: 24px 0 8px;
    padding: 20px;
    background: linear-gradient(135deg,#f5f3ff,#faf5ff);
    border: 1px solid #e9d5ff;
    border-radius: 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #5b21b6;
}
.merchant-flow span { color: #a78bfa; font-weight: 400; }
.merchant-flow__step {
    padding: 8px 14px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ddd6fe;
    color: #6d28d9;
}
.vis-tile--merchant {
    border-color: #ede9fe;
}
.vis-tile--merchant:hover {
    border-color: #c4b5fd;
    box-shadow: 0 12px 32px rgba(109,40,217,.12);
}
.vis-tile__tag {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #7c3aed;
    background: #f5f3ff;
    padding: 2px 8px;
    border-radius: 4px;
}

/* 商家页 · 产品 Banner 列表（左图右文，参照推广页样式） */
.product-banner-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 36px;
}
.product-banner {
    display: grid;
    gap: 28px;
    align-items: center;
    padding: 36px 28px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 45%, #f0f9ff 100%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.25s, transform 0.25s;
}
.product-banner:hover {
    box-shadow: 0 20px 48px rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
}
@media (min-width: 900px) {
    .product-banner {
        grid-template-columns: 1.08fr 1fr;
        gap: 48px;
        padding: 48px 52px;
    }
    .product-banner--reverse .product-banner__media { order: 2; }
    .product-banner--reverse .product-banner__body { order: 1; }
}
.product-banner__media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--vis-bg, linear-gradient(145deg, #e0f2fe, #f0f9ff));
    min-height: 240px;
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.1);
}
.product-banner__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 75% 15%, rgba(255,255,255,.5), transparent);
    pointer-events: none;
}
.mock-stage--banner {
    min-height: 240px;
    padding: 28px 24px 24px;
}
.mock-stage--banner .mock-phone {
    width: 120px;
}
.mock-stage--banner .mock-phone__screen {
    min-height: 160px;
}
.mock-stage--banner .mock-desktop {
    max-width: 240px;
}
.product-banner__body {
    min-width: 0;
    padding: 4px 0;
}
.product-banner__cat {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--vis-accent, #2563eb);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.8);
}
.product-banner__body h3 {
    margin: 0 0 14px;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--of-text, #0f172a);
}
.product-banner__body > p {
    margin: 0 0 28px;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #64748b;
}
.product-banner__cta {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #fff !important;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
    transition: transform 0.2s, box-shadow 0.2s;
}
.product-banner__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.38);
    color: #fff !important;
}
.product-banner.vis--food .product-banner__cta {
    background: linear-gradient(135deg, #ea580c, #f97316);
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.28);
}
.product-banner.vis--food .product-banner__cta:hover {
    box-shadow: 0 12px 32px rgba(234, 88, 12, 0.38);
}
.product-banner.vis--community .product-banner__cta {
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.28);
}
.product-banner.vis--party .product-banner__cta {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.28);
}
.product-banner.vis--book .product-banner__cta {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.28);
}
@media (max-width: 899px) {
    .product-banner {
        padding: 28px 22px;
    }
    .product-banner__body > p {
        margin-bottom: 22px;
    }
    .mock-stage--banner .mock-desktop {
        display: none;
    }
}

.scope-split {
    display: grid;
    gap: 20px;
    margin-top: 28px;
}
@media (min-width: 768px) {
    .scope-split { grid-template-columns: 1fr 1fr; }
}
.scope-card {
    padding: 22px 24px;
    border-radius: 14px;
    border: 1px solid var(--of-border);
    background: var(--of-card);
}
.scope-card--merchant {
    border-color: #ddd6fe;
    background: linear-gradient(165deg,#faf5ff,#fff);
}
.scope-card--platform {
    border-color: #bae6fd;
    background: linear-gradient(165deg,#f0f9ff,#fff);
}
.scope-card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}
.scope-card--merchant h3 { color: #6d28d9; }
.scope-card--platform h3 { color: #0369a1; }
.scope-card p {
    margin: 0 0 12px;
    font-size: 0.875rem;
    color: var(--of-muted);
    line-height: 1.6;
}
.scope-card ul {
    margin: 0 0 14px;
    padding-left: 18px;
    font-size: 0.8125rem;
    color: #475569;
    line-height: 1.55;
}
.scope-card__link {
    font-size: 0.875rem;
    font-weight: 600;
}
.platform-info-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.platform-info-chips a {
    padding: 8px 14px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #bae6fd;
    color: #0369a1 !important;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none !important;
}
.platform-info-chips a:hover {
    border-color: #0284c7;
    background: #e0f2fe;
}

.page-subnav {
    padding: 10px 24px;
    background: #f8fafc;
    border-bottom: 1px solid var(--of-border);
    font-size: 0.875rem;
}
.page-subnav .container {
    max-width: 1100px;
    margin: 0 auto;
    color: var(--of-muted);
}
.page-subnav a {
    color: var(--of-primary);
    font-weight: 600;
    text-decoration: none;
}
.page-subnav a:hover { text-decoration: underline; }
.page-subnav__sep { margin: 0 8px; color: #cbd5e1; }
.page-subnav__current { color: var(--of-text); font-weight: 600; }

.vis-gallery {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.vis-showcase {
    display: grid;
    gap: 28px;
    align-items: center;
    padding: 28px;
    background: var(--of-card);
    border: 1px solid var(--of-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.25s;
}
.vis-showcase:hover {
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
}
@media (min-width: 900px) {
    .vis-showcase {
        grid-template-columns: 1.05fr 1fr;
        padding: 32px 36px;
    }
    .vis-showcase--reverse .vis-showcase__media { order: 2; }
    .vis-showcase--reverse .vis-showcase__body { order: 1; }
}

.vis-showcase__media {
    position: relative;
    min-height: 220px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--vis-bg, linear-gradient(145deg, #e0f2fe 0%, #f0f9ff 50%, #ecfdf5 100%));
}
.vis-showcase__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(255,255,255,.45), transparent);
    pointer-events: none;
}
.ind-vis-photo {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    min-height: 160px;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
}
.ind-vis-photo__img {
    display: block;
    width: auto;
    max-width: min(360px, 100%);
    max-height: 280px;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    object-fit: contain;
    object-position: center;
}

.vis-showcase__body { min-width: 0; }
.vis-showcase__kicker {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--vis-accent, #059669);
    text-transform: uppercase;
}
.vis-showcase__body h3 {
    margin: 0 0 10px;
    font-size: 1.35rem;
    line-height: 1.3;
}
.vis-showcase__body > p {
    margin: 0 0 14px;
    font-size: 0.9rem;
    color: var(--of-muted);
    line-height: 1.65;
}
.vis-showcase__points {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}
.vis-showcase__points li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    font-size: 0.8125rem;
    color: #475569;
    line-height: 1.5;
}
.vis-showcase__points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--vis-accent, #059669);
}
.vis-showcase__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.vis-chip {
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 999px;
    background: #f1f5f9;
    color: #64748b;
}
.vis-chip--dash { background: #ecfdf5; color: #047857; }
.vis-showcase__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.vis-btn {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none !important;
}
.vis-btn--primary {
    background: var(--vis-accent, #059669);
    color: #fff !important;
}
.vis-btn--ghost {
    border: 1px solid var(--of-border);
    color: var(--of-text) !important;
    background: #fff;
}

/* 双端样机容器 */
.mock-stage {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 220px;
    padding: 24px 20px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
}

.mock-phone {
    width: 108px;
    flex-shrink: 0;
    border-radius: 18px;
    padding: 8px 6px 10px;
    background: #1e293b;
    box-shadow: 0 12px 32px rgba(0,0,0,.25);
    transform: rotate(-4deg) translateY(4px);
    z-index: 2;
}
.mock-phone__bar {
    height: 14px;
    margin-bottom: 6px;
    border-radius: 8px;
    background: #334155;
}
.mock-phone__screen {
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    min-height: 140px;
}
.mock-phone__screen img,
.mock-desktop__screen img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.mock-desktop {
    flex: 1;
    max-width: 200px;
    border-radius: 10px 10px 0 0;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    transform: translateY(8px);
    z-index: 1;
}
.mock-desktop__top {
    height: 22px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 8px;
}
.mock-desktop__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #94a3b8;
}
.mock-desktop__screen {
    min-height: 120px;
    padding: 8px;
    background: #f1f5f9;
}

/* 示意 UI 块（通用） */
.ui-block { border-radius: 4px; background: #e2e8f0; margin-bottom: 5px; }
.ui-block--hero { height: 36px; background: linear-gradient(90deg, var(--ui-a,#38bdf8), var(--ui-b,#34d399)); opacity: .85; }
.ui-block--line { height: 6px; width: 75%; }
.ui-block--line-sm { height: 6px; width: 45%; }
.ui-row { display: flex; gap: 4px; margin-bottom: 5px; }
.ui-card-mini {
    flex: 1;
    height: 28px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #e2e8f0;
}
.ui-stat-row { display: flex; gap: 4px; margin-top: 6px; }
.ui-stat {
    flex: 1;
    height: 22px;
    border-radius: 4px;
    background: #fff;
    border-left: 3px solid var(--ui-a, #3b82f6);
}
.ui-chart {
    height: 40px;
    margin-top: 6px;
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(59,130,246,.15) 0%, transparent 100%);
    border-bottom: 2px solid var(--ui-a, #3b82f6);
}

.vis-group-head {
    margin: 48px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--of-border);
}
.vis-group-head h2 {
    margin: 0 0 6px;
    font-size: 1.25rem;
    text-align: left;
}
.vis-group-head p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--of-muted);
    text-align: left;
}

/* 首页精选网格 */
.vis-grid {
    display: grid;
    gap: 20px;
}
@media (min-width: 640px) {
    .vis-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
    .vis-grid { grid-template-columns: repeat(3, 1fr); }
}
.vis-tile {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit;
    border: 1px solid var(--of-border);
    background: #fff;
    transition: transform .2s, box-shadow .2s;
}
.vis-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(15,23,42,.12);
}
.vis-tile__img {
    height: 160px;
    position: relative;
    background: var(--vis-bg);
}
.vis-tile__img .mock-stage {
    min-height: 160px;
    padding: 16px 12px 12px;
    transform: scale(0.92);
    transform-origin: center bottom;
}
.vis-tile__img .mock-phone { width: 72px; }
.vis-tile__img .mock-phone__screen { min-height: 90px; }
.vis-tile__img .mock-desktop { max-width: 130px; display: none; }
@media (min-width: 480px) {
    .vis-tile__img .mock-desktop { display: block; }
}
.vis-tile__body { padding: 16px 18px 18px; }
.vis-tile__body h3 { margin: 0 0 6px; font-size: 1.05rem; }
.vis-tile__body p { margin: 0; font-size: 0.8125rem; color: var(--of-muted); line-height: 1.5; }

/* 主题色 */
.vis--retail { --vis-bg: linear-gradient(135deg,#dbeafe,#eff6ff); --vis-accent:#2563eb; --ui-a:#3b82f6; --ui-b:#60a5fa; }
.vis--local { --vis-bg: linear-gradient(135deg,#fce7f3,#fdf4ff); --vis-accent:#db2777; --ui-a:#ec4899; --ui-b:#f472b6; }
.vis--food { --vis-bg: linear-gradient(135deg,#ffedd5,#fff7ed); --vis-accent:#ea580c; --ui-a:#f97316; --ui-b:#fb923c; }
.vis--book { --vis-bg: linear-gradient(135deg,#d1fae5,#ecfdf5); --vis-accent:#059669; --ui-a:#10b981; --ui-b:#34d399; }
.vis--errand { --vis-bg: linear-gradient(135deg,#e0e7ff,#eef2ff); --vis-accent:#4f46e5; --ui-a:#6366f1; --ui-b:#818cf8; }
.vis--party { --vis-bg: linear-gradient(135deg,#fef3c7,#fffbeb); --vis-accent:#d97706; --ui-a:#f59e0b; --ui-b:#fbbf24; }
.vis--hotel { --vis-bg: linear-gradient(135deg,#e0f2fe,#f0f9ff); --vis-accent:#0284c7; --ui-a:#0ea5e9; --ui-b:#38bdf8; }
.vis--travel { --vis-bg: linear-gradient(135deg,#ccfbf1,#f0fdfa); --vis-accent:#0d9488; --ui-a:#14b8a6; --ui-b:#2dd4bf; }
.vis--community { --vis-bg: linear-gradient(135deg,#dcfce7,#f0fdf4); --vis-accent:#16a34a; --ui-a:#22c55e; --ui-b:#4ade80; }
.vis--wedding { --vis-bg: linear-gradient(135deg,#fce7f3,#fdf2f8); --vis-accent:#be185d; --ui-a:#ec4899; --ui-b:#f9a8d4; }
.vis--rent { --vis-bg: linear-gradient(135deg,#e0e7ff,#eef2ff); --vis-accent:#4338ca; --ui-a:#6366f1; --ui-b:#a5b4fc; }
.vis--recruit { --vis-bg: linear-gradient(135deg,#cffafe,#ecfeff); --vis-accent:#0e7490; --ui-a:#06b6d4; --ui-b:#67e8f9; }

/* 营销插件主题 */
.vis--coupon { --vis-bg: linear-gradient(135deg,#fce7f3,#fdf2f8); --vis-accent:#db2777; --ui-a:#ec4899; --ui-b:#f472b6; }
.vis--seckill { --vis-bg: linear-gradient(135deg,#ffedd5,#fff7ed); --vis-accent:#ea580c; --ui-a:#f97316; --ui-b:#fb923c; }
.vis--group { --vis-bg: linear-gradient(135deg,#dbeafe,#eff6ff); --vis-accent:#2563eb; --ui-a:#3b82f6; --ui-b:#60a5fa; }
.vis--bargain { --vis-bg: linear-gradient(135deg,#fce7f3,#faf5ff); --vis-accent:#c026d3; --ui-a:#d946ef; --ui-b:#e879f9; }
.vis--lottery { --vis-bg: linear-gradient(135deg,#fef9c3,#fffbeb); --vis-accent:#ca8a04; --ui-a:#eab308; --ui-b:#facc15; }
.vis--points { --vis-bg: linear-gradient(135deg,#d1fae5,#ecfdf5); --vis-accent:#059669; --ui-a:#10b981; --ui-b:#34d399; }
.vis--task { --vis-bg: linear-gradient(135deg,#e0e7ff,#eef2ff); --vis-accent:#4f46e5; --ui-a:#6366f1; --ui-b:#818cf8; }
.vis--stored { --vis-bg: linear-gradient(135deg,#ede9fe,#f5f3ff); --vis-accent:#7c3aed; --ui-a:#8b5cf6; --ui-b:#a78bfa; }
.vis--share { --vis-bg: linear-gradient(135deg,#cffafe,#ecfeff); --vis-accent:#0891b2; --ui-a:#06b6d4; --ui-b:#22d3ee; }
.vis--mkt { --vis-bg: linear-gradient(135deg,#fae8ff,#f5f3ff); --vis-accent:#9333ea; --ui-a:#a855f7; --ui-b:#c084fc; }

/* 营销示意 UI */
.ui-coupon {
    margin: 10px 8px;
    padding: 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}
.ui-countdown {
    margin: 8px;
    padding: 6px;
    border-radius: 6px;
    background: #1e293b;
    color: #f97316;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
}
.ui-avatars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 10px 0;
}
.ui-avatars span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #93c5fd;
    border: 2px solid #fff;
}
.ui-wheel {
    width: 56px;
    height: 56px;
    margin: 12px auto;
    border-radius: 50%;
    background: conic-gradient(#facc15 0 25%, #f97316 25% 50%, #ec4899 50% 75%, #8b5cf6 75% 100%);
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.vis-chip--plugin { background: #f5f3ff; color: #7c3aed; }

/* 平台交付：多端条、架构图 */
.vis--onboard { --vis-bg: linear-gradient(135deg,#ede9fe,#f5f3ff); --vis-accent:#7c3aed; --ui-a:#8b5cf6; --ui-b:#a78bfa; }
.vis--miniprog { --vis-bg: linear-gradient(135deg,#dcfce7,#ecfdf5); --vis-accent:#16a34a; --ui-a:#22c55e; --ui-b:#4ade80; }
.vis--station { --vis-bg: linear-gradient(135deg,#dbeafe,#eff6ff); --vis-accent:#1d4ed8; --ui-a:#3b82f6; --ui-b:#60a5fa; }
.vis--multiend { --vis-bg: linear-gradient(135deg,#e0f2fe,#f0f9ff); --vis-accent:#0891b2; --ui-a:#06b6d4; --ui-b:#22d3ee; }
.vis--custom { --vis-bg: linear-gradient(135deg,#1e293b,#334155); --vis-accent:#fbbf24; --ui-a:#f59e0b; --ui-b:#fcd34d; }
.vis-showcase--custom .vis-showcase__body h3,
.vis-showcase--custom .vis-showcase__body > p,
.vis-showcase--custom .vis-showcase__points li { color: #e2e8f0; }
.vis-showcase--custom .vis-showcase__kicker { color: #fcd34d; }
.vis-showcase--custom .vis-showcase__points li::before { background: #fbbf24; }

.multi-end-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 16px 8px 8px;
}
.multi-end-item {
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(0,0,0,.08);
    font-size: 0.75rem;
    font-weight: 600;
    color: #334155;
    text-align: center;
    min-width: 72px;
}
.multi-end-item span {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.mock-wechat-badge {
    display: inline-block;
    margin: 10px auto;
    padding: 4px 10px;
    border-radius: 6px;
    background: #22c55e;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
}
.mock-city-nodes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 14px 8px;
    flex-wrap: wrap;
}
.mock-city-node {
    padding: 6px 10px;
    border-radius: 8px;
    background: #fff;
    border: 2px solid #3b82f6;
    font-size: 9px;
    font-weight: 600;
    color: #1d4ed8;
}
.mock-city-node--hub {
    background: #1d4ed8;
    color: #fff;
    border-color: #1e40af;
}
.arch-stack {
    margin: 28px 0;
    padding: 24px;
    background: linear-gradient(180deg,#f8fafc,#fff);
    border: 1px solid var(--of-border);
    border-radius: 16px;
}
.arch-stack h3 {
    margin: 0 0 16px;
    font-size: 1.1rem;
    text-align: center;
}
.arch-layers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 520px;
    margin: 0 auto;
}
.arch-layer {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
    color: #fff;
}
.arch-layer--1 { background: linear-gradient(90deg,#1e40af,#2563eb); }
.arch-layer--2 { background: linear-gradient(90deg,#7c3aed,#8b5cf6); margin-left: 12px; margin-right: 12px; }
.arch-layer--3 { background: linear-gradient(90deg,#059669,#10b981); margin-left: 24px; margin-right: 24px; }
.arch-layer--4 { background: linear-gradient(90deg,#0891b2,#06b6d4); margin-left: 36px; margin-right: 36px; font-size: 0.75rem; }
.delivery-hero-band {
    padding: 40px 0;
    background: linear-gradient(165deg,#0f172a 0%,#1e3a5f 45%,#0c4a6e 100%);
    color: #f8fafc;
}
.delivery-hero-band h2 {
    margin: 0 0 8px;
    text-align: center;
    color: #fff;
}
.delivery-hero-band p {
    margin: 0 auto 24px;
    max-width: 40em;
    text-align: center;
    color: rgba(248,250,252,.8);
    font-size: 0.9375rem;
}
.delivery-quick {
    display: grid;
    gap: 12px;
}
@media (min-width: 768px) {
    .delivery-quick { grid-template-columns: repeat(5, 1fr); }
}
.delivery-quick a {
    display: block;
    padding: 14px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: #f8fafc !important;
    text-decoration: none !important;
    text-align: center;
    font-size: 0.8125rem;
    transition: background .2s;
}
.delivery-quick a:hover { background: rgba(255,255,255,.14); }
.delivery-quick a strong { display: block; font-size: 1.25rem; margin-bottom: 6px; }

.mock-dual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}
@media (min-width: 480px) {
    .mock-dual {
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
    }
}

/* 同城平台 · 六大场景（手机居中 + 左右文案） */
.local-spotlight {
    padding-top: 56px;
    padding-bottom: 56px;
    background: #fff;
}
.local-spotlight.section h2 {
    text-align: inherit;
}
.local-spotlight__head {
    text-align: center;
    margin-bottom: 40px;
}
.local-spotlight__head h2 {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    color: #0f172a;
}
.local-spotlight__head p {
    margin: 0 auto;
    max-width: 40em;
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.7;
}
.local-spotlight__layout {
    display: grid;
    gap: 32px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
@media (min-width: 1100px) {
    .local-spotlight__layout {
        grid-template-columns: minmax(260px, 1fr) minmax(300px, 360px) minmax(260px, 1fr);
        gap: 28px 32px;
        align-items: start;
    }
}
.local-spotlight__col {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
}
@media (min-width: 1100px) {
    .local-spotlight__col--left { padding-top: 24px; }
    .local-spotlight__col--right { padding-top: 48px; }
}
.local-spotlight__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    min-width: 0;
}
.local-spotlight__copy {
    flex: 1;
    min-width: 0;
}
.local-spotlight__item--reverse {
    flex-direction: row-reverse;
    text-align: right;
}
.local-spotlight__item--reverse .local-spotlight__copy a {
    display: inline-block;
}
.local-spotlight__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}
.local-spotlight__icon--errand { background: linear-gradient(145deg, #3b82f6, #2563eb); font-size: 1.125rem; }
.local-spotlight__icon--mall { background: linear-gradient(145deg, #fb923c, #ea580c); font-size: 0.6875rem; }
.local-spotlight__icon--travel { background: linear-gradient(145deg, #818cf8, #6366f1); font-size: 1.125rem; }
.local-spotlight__icon--home { background: linear-gradient(145deg, #f472b6, #db2777); font-size: 1.125rem; }
.local-spotlight__icon--food { background: linear-gradient(145deg, #ef4444, #dc2626); }
.local-spotlight__icon--info { background: linear-gradient(145deg, #2dd4bf, #0d9488); }
.local-spotlight__icon--job { background: linear-gradient(145deg, #4ade80, #16a34a); font-size: 1.125rem; }
.local-spotlight__copy h3 {
    margin: 0 0 8px;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
}
.local-spotlight__copy p {
    margin: 0 0 8px;
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.75;
    word-break: normal;
    overflow-wrap: break-word;
}
.local-spotlight__copy a {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}
.local-spotlight__copy a:hover {
    text-decoration: underline;
}
.local-spotlight__phone {
    margin: 0;
    text-align: center;
    order: -1;
    width: 100%;
    max-width: min(100%, 360px);
    justify-self: center;
}
@media (min-width: 1100px) {
    .local-spotlight__phone {
        order: 0;
        width: 100%;
        max-width: 360px;
        padding: 0;
        align-self: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.local-spotlight__phone img,
.local-spotlight__img {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
    margin: 0 auto;
    border-radius: 16px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.15));
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 同城平台 · 多商户 Banner */
.local-mall-banner {
    padding: 48px 0;
    background: linear-gradient(115deg, #0c4a8a 0%, #1d6fd4 42%, #2563eb 100%);
    color: #f8fafc;
    overflow: hidden;
}
.local-mall-banner a:not(.local-mall-banner__cta) {
    color: #bfdbfe;
}
.local-mall-banner__inner {
    display: grid;
    gap: 32px;
    align-items: center;
}
@media (min-width: 900px) {
    .local-mall-banner__inner {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 40px;
    }
}
.local-mall-banner__tag {
    display: inline-block;
    margin: 0 0 12px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #bfdbfe;
}
.local-mall-banner h2 {
    margin: 0 0 20px;
    font-size: clamp(1.5rem, 3.5vw, 2.15rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
}
.local-mall-banner__points {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}
.local-mall-banner__points li {
    position: relative;
    margin: 0 0 12px;
    padding-left: 18px;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(248, 250, 252, 0.92);
}
.local-mall-banner__points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7dd3fc;
}
.local-mall-banner__points strong {
    color: #fff;
    font-weight: 700;
}
.local-mall-banner__cta {
    display: inline-block;
    padding: 12px 36px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 4px;
    color: #fff !important;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.2s;
}
.local-mall-banner__cta:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}
.local-mall-banner__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.local-mall-banner__photo {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.local-mall-banner__illus {
    position: relative;
    width: min(100%, 320px);
    height: 220px;
}
.local-mall-banner__screen {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 72%;
    height: 78%;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.local-mall-banner__screen::before {
    content: '';
    position: absolute;
    left: 12%;
    top: 22%;
    width: 76%;
    height: 8px;
    border-radius: 4px;
    background: rgba(125, 211, 252, 0.7);
    box-shadow: 0 18px 0 rgba(255,255,255,0.15), 0 36px 0 rgba(255,255,255,0.1);
}
.local-mall-banner__person {
    position: absolute;
    left: 8%;
    bottom: 0;
    width: 88px;
    height: 140px;
    border-radius: 44px 44px 8px 8px;
    background: linear-gradient(180deg, #38bdf8, #1e40af);
    opacity: 0.85;
}
.local-mall-banner__person::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -28px;
    width: 52px;
    height: 52px;
    margin-left: -26px;
    border-radius: 50%;
    background: #fde68a;
    border: 3px solid rgba(255,255,255,0.5);
}

/* 同城平台 · 四象限能力 */
.local-cap-head {
    text-align: center;
    margin-bottom: 40px;
}
.local-cap-head h2 {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
}
.local-cap-head p {
    margin: 0 auto;
    max-width: 36em;
    font-size: 0.9375rem;
    color: var(--of-muted);
    line-height: 1.7;
}
.local-cap-hub {
    display: grid;
    gap: 20px;
    max-width: 1040px;
    margin: 0 auto;
}
@media (min-width: 900px) {
    .local-cap-hub {
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto;
        gap: 24px 28px;
        align-items: stretch;
    }
    .local-cap-card--tl { grid-column: 1; grid-row: 1; }
    .local-cap-card--tr { grid-column: 3; grid-row: 1; }
    .local-cap-hub__center { grid-column: 2; grid-row: 1 / 3; }
    .local-cap-card--bl { grid-column: 1; grid-row: 2; }
    .local-cap-card--br { grid-column: 3; grid-row: 2; }
}
.local-cap-card {
    padding: 24px 22px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}
.local-cap-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.local-cap-card__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    color: #fff;
}
.local-cap-card__icon--term { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.local-cap-card__icon--store { background: linear-gradient(135deg, #10b981, #059669); }
.local-cap-card__icon--mkt { background: linear-gradient(135deg, #f59e0b, #d97706); }
.local-cap-card__icon--vip { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.local-cap-card h3 {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
}
.local-cap-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px 16px;
}
.local-cap-card__list--cols {
    grid-template-columns: repeat(2, 1fr);
}
.local-cap-card__list li {
    position: relative;
    padding-left: 14px;
    font-size: 0.8125rem;
    color: #475569;
    line-height: 1.5;
}
.local-cap-card__list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}
.local-cap-card__more {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2563eb !important;
    text-decoration: none !important;
}
.local-cap-card__more:hover {
    text-decoration: underline !important;
}
.local-cap-hub__center {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
@media (min-width: 900px) {
    .local-cap-hub__center {
        display: flex;
    }
}
.local-cap-hub__magnet {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.local-cap-hub__orbit {
    position: absolute;
    inset: 0;
    border: 2px dashed #bfdbfe;
    border-radius: 50%;
    animation: local-cap-spin 24s linear infinite;
}
.local-cap-hub__orbit::before,
.local-cap-hub__orbit::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2563eb;
}
.local-cap-hub__orbit::before {
    top: -5px;
    left: 50%;
    margin-left: -5px;
}
.local-cap-hub__orbit::after {
    bottom: -5px;
    left: 50%;
    margin-left: -5px;
    background: #f59e0b;
}
@keyframes local-cap-spin {
    to { transform: rotate(360deg); }
}
.local-cap-hub__core {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(145deg, #2563eb, #1d4ed8);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}

/* 多商户 · 什么是新零售 */
.local-newretail {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid #e2e8f0;
}
.local-newretail__head {
    text-align: center;
    margin-bottom: 36px;
}
.local-newretail__head h3 {
    margin: 0 0 12px;
    font-size: clamp(1.25rem, 3vw, 1.625rem);
    font-weight: 800;
    color: #0f172a;
}
.local-newretail__head p {
    margin: 0 auto;
    max-width: 42em;
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.85;
}
.local-newretail__grid {
    display: grid;
    gap: 24px 20px;
}
@media (min-width: 640px) {
    .local-newretail__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .local-newretail__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 24px;
    }
}
@media (min-width: 1200px) {
    .local-newretail__grid {
        grid-template-columns: repeat(6, 1fr);
    }
}
.local-newretail__card {
    text-align: center;
    padding: 24px 20px 22px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.local-newretail__card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
}
.local-newretail__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    font-size: 1.375rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}
.local-newretail__icon--omni { background: linear-gradient(145deg, #fde047, #facc15); color: #713f12; }
.local-newretail__icon--data { background: linear-gradient(145deg, #86efac, #4ade80); color: #14532d; }
.local-newretail__icon--pay { background: linear-gradient(145deg, #c4b5fd, #a78bfa); color: #4c1d95; }
.local-newretail__icon--store { background: linear-gradient(145deg, #f9a8d4, #f472b6); color: #831843; }
.local-newretail__icon--delivery { background: linear-gradient(145deg, #7dd3fc, #38bdf8); color: #0c4a6e; }
.local-newretail__icon--chain { background: linear-gradient(145deg, #94a3b8, #64748b); color: #fff; }
.local-newretail__card h4 {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}
.local-newretail__card p {
    margin: 0;
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.75;
    text-align: left;
}
@media (min-width: 1200px) {
    .local-newretail__card p {
        text-align: center;
        font-size: 0.75rem;
    }
}

/* 多门店 · 菱形能力矩阵 */
.local-diamond-section {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid #e2e8f0;
}
.local-diamond-section__head {
    text-align: center;
    margin-bottom: 40px;
}
.local-diamond-section__head h3 {
    margin: 0 0 10px;
    font-size: clamp(1.25rem, 3vw, 1.625rem);
    font-weight: 800;
    color: #0f172a;
}
.local-diamond-section__head p {
    margin: 0 auto;
    max-width: 36em;
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.7;
}
.local-diamond-mosaic {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    gap: 16px 14px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 24px 0 12px;
}
@media (min-width: 768px) {
    .local-diamond-mosaic {
        grid-template-columns: repeat(8, minmax(0, 1fr));
        gap: 22px 18px;
        padding: 28px 0 16px;
    }
}
.local-diamond {
    position: relative;
    width: 76%;
    max-width: 118px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.18);
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 1;
}
.local-diamond:hover {
    z-index: 2;
    transform: rotate(45deg) scale(1.06);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.28);
}
.local-diamond span {
    display: block;
    transform: rotate(-45deg);
    max-width: 6.5em;
    padding: 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    color: #0f172a;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}
.local-diamond--wide {
    width: 88%;
    max-width: none;
    grid-column: span 2;
    justify-self: center;
}
.local-diamond--wide span {
    max-width: 11em;
    font-size: 0.625rem;
    line-height: 1.4;
}
.local-diamond--c1 { background: linear-gradient(145deg, #7dd3fc, #38bdf8); }
.local-diamond--c2 { background: linear-gradient(145deg, #60a5fa, #3b82f6); }
.local-diamond--c3 { background: linear-gradient(145deg, #818cf8, #6366f1); }
.local-diamond--c4 { background: linear-gradient(145deg, #a78bfa, #8b5cf6); }
.local-diamond--c5 { background: linear-gradient(145deg, #67e8f9, #22d3ee); }
.local-diamond--c6 { background: linear-gradient(145deg, #bfdbfe, #60a5fa); }
.local-diamond--c7 { background: linear-gradient(145deg, #c4b5fd, #7c3aed); }
.local-diamond--c8 { background: linear-gradient(145deg, #7dd3fc, #0ea5e9); }
@media (min-width: 768px) {
    .local-diamond-mosaic .local-diamond:nth-child(n+9) {
        margin-top: 4px;
    }
}

/* 同城平台 · 蓝色能力矩阵（中间手机 + 左右六点） */
.local-blue-matrix {
    position: relative;
    overflow: hidden;
    padding: 64px 0 72px;
    color: #fff;
}
.local-blue-matrix__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 42%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 58%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 74%),
        linear-gradient(135deg, #2563eb 0%, #3b82f6 35%, #6366f1 70%, #4f46e5 100%);
    pointer-events: none;
}
.local-blue-matrix__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 255, 255, 0.08), transparent 70%);
}
.local-blue-matrix__inner {
    position: relative;
    z-index: 1;
}
.local-blue-matrix__layout {
    display: grid;
    gap: 36px;
    align-items: center;
}
@media (min-width: 960px) {
    .local-blue-matrix__layout {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 300px) minmax(0, 1fr);
        gap: 24px 32px;
    }
}
.local-blue-matrix__col {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
@media (min-width: 960px) {
    .local-blue-matrix__col--left { padding-top: 16px; }
    .local-blue-matrix__col--right { padding-top: 40px; }
}
.local-blue-matrix__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.local-blue-matrix__item--reverse {
    flex-direction: row;
    text-align: right;
}
.local-blue-matrix__item--reverse .local-blue-matrix__copy {
    flex: 1;
}
.local-blue-matrix__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #2563eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.local-blue-matrix__icon svg {
    width: 26px;
    height: 26px;
}
.local-blue-matrix__copy h3 {
    margin: 0 0 6px;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}
.local-blue-matrix__copy p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}
.local-blue-matrix__phone {
    margin: 0;
    justify-self: center;
    max-width: 280px;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.28));
}
.local-blue-matrix__phone img,
.local-blue-matrix__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 28px;
    border: 4px solid rgba(255, 255, 255, 0.15);
}

/* 同城平台 · 解决方案 */
.local-solutions {
    padding: 64px 0 72px;
    background: linear-gradient(180deg, #f5f7fd 0%, #eef2fb 100%);
    border-top: 1px solid #e2e8f0;
}
.local-solutions__grid {
    display: grid;
    gap: 40px;
    align-items: center;
}
@media (min-width: 960px) {
    .local-solutions__grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px 56px;
    }
}
.local-solutions__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.04em;
}
.local-solutions__label::after {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #3b82f6);
    border-radius: 1px;
}
.local-solutions__copy h2 {
    margin: 0 0 20px;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    line-height: 1.45;
    color: #1e293b;
}
.local-solutions__desc {
    margin: 0 0 28px;
    font-size: 0.9375rem;
    line-height: 1.85;
    color: #64748b;
}
.local-solutions__cta {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 50%, #2563eb 100%);
    color: #fff !important;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow: 0 10px 32px rgba(99, 102, 241, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.local-solutions__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(99, 102, 241, 0.42);
}
.local-solutions__features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.local-solutions__feat {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.local-solutions__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    color: #3b82f6;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
}
.local-solutions__icon svg {
    width: 26px;
    height: 26px;
}
.local-solutions__feat h3 {
    margin: 0 0 8px;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1e293b;
}
.local-solutions__feat p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.75;
    color: #64748b;
}

@media (max-width: 959px) {
    .local-blue-matrix {
        padding: 48px 0 56px;
    }
    .local-blue-matrix__layout {
        grid-template-columns: 1fr;
    }
    .local-blue-matrix__phone {
        order: -1;
        max-width: 220px;
    }
    .local-blue-matrix__item--reverse {
        flex-direction: row;
        text-align: left;
    }
    .local-blue-matrix__col {
        gap: 22px;
    }
    .local-solutions {
        padding: 48px 0 56px;
    }
}

/* —— H5 / 手机端（行业图示） —— */
@media (max-width: 767px) {
    .vis-showcase {
        padding: 18px 16px;
        gap: 20px;
        border-radius: 14px;
    }
    .vis-showcase__body h3 {
        font-size: 1.15rem;
    }
    .vis-showcase__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .vis-showcase__actions .vis-btn {
        text-align: center;
        justify-content: center;
    }

    .ind-vis-photo {
        min-height: 140px;
        padding: 12px 8px;
    }
    .ind-vis-photo__img {
        max-width: min(300px, 100%);
        max-height: 220px;
    }

    .mock-stage {
        min-height: 180px;
        padding: 16px 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .mock-phone {
        width: 96px;
        transform: rotate(-2deg);
    }
    .mock-phone__screen {
        min-height: 120px;
    }
    .mock-desktop {
        max-width: 160px;
        flex: 0 1 auto;
        width: 100%;
    }

    .vis-grid {
        grid-template-columns: 1fr;
    }
    .vis-tile__img .mock-desktop {
        display: none;
    }

    .vis-quick-jump a {
        font-size: 0.8125rem;
        padding: 8px 12px;
    }

    .platform-mode-intro {
        grid-template-columns: 1fr;
    }
    .platform-mode-card {
        padding: 16px 18px;
    }

    .local-mall-banner {
        padding: 36px 0;
    }
    .local-mall-banner__visual {
        min-height: 160px;
    }
    .local-mall-banner__illus {
        height: 180px;
    }
    .local-cap-card__list--cols {
        grid-template-columns: 1fr;
    }
    .local-newretail {
        margin-top: 40px;
        padding-top: 36px;
    }
    .local-newretail__card p {
        text-align: left;
    }
    .local-diamond-section {
        margin-top: 40px;
        padding-top: 36px;
    }
    .local-diamond-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 12px;
    }
    .local-diamond {
        width: 78%;
        max-width: 104px;
    }
    .local-diamond--wide {
        grid-column: 1 / -1;
        width: 58%;
    }
    .local-diamond span {
        font-size: 0.625rem;
    }
    .local-spotlight__item--reverse {
        flex-direction: row;
        text-align: left;
    }
    .local-spotlight__phone img {
        max-width: 240px;
    }

    .delivery-hero-band {
        padding: 28px 0;
    }
    .delivery-quick {
        grid-template-columns: repeat(2, 1fr);
    }

    .arch-stack {
        padding: 16px;
    }
}
