﻿:root {
    --c-bg: #f6f8fc;
    --c-surface: #ffffff;
    --c-text: #0f172a;
    --c-text-2: #334155;
    --c-text-3: #64748b;
    --c-border: rgba(15, 23, 42, .10);
    --c-primary: #1a4b8c;
    --c-primary-2: #0ea5e9;
    --c-accent: #06b6d4;
    --c-success: #16a34a;
    --c-warn: #f59e0b;
    --c-danger: #ef4444;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 1px rgba(15, 23, 42, .04);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, .10);
    --shadow-lg: 0 18px 60px rgba(15, 23, 42, .14);
    --r-sm: 4px;
    --r-md: 8px;
    --r-lg: 10px;
    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 16px;
    --sp-5: 20px;
    --sp-6: 24px;
    --sp-8: 32px;
    --sp-10: 40px;
    --sp-12: 48px;
    --sp-16: 64px;
    --sp-20: 80px;
    --container: 1200px;
    --container-n: 920px;
    --ease: cubic-bezier(.2, .8, .2, 1);
    --t: .22s var(--ease);
    --font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    --font-display: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    --grad: linear-gradient(135deg, rgba(37, 99, 235, .14), rgba(6, 182, 212, .12) 55%, rgba(14, 165, 233, .10));
    --grad-strong: linear-gradient(135deg, #2563eb, #06b6d4 58%, #0ea5e9);
    --grid-gap: 18px;
}

body.geo-theme-1 {
    --c-bg: #f6f8fc;
    --c-primary: #2563eb;
    --c-primary-2: #0ea5e9;
    --c-accent: #06b6d4;
    --c-warn: #f59e0b;
    --grad: linear-gradient(135deg, rgba(37, 99, 235, .14), rgba(6, 182, 212, .12) 55%, rgba(14, 165, 233, .10));
    --grad-strong: linear-gradient(135deg, #2563eb, #06b6d4 58%, #0ea5e9)
}

body.geo-theme-2 {
    --c-bg: #f3faf6;
    --c-primary: #176b4d;
    --c-primary-2: #2f9e70;
    --c-accent: #8bc34a;
    --c-warn: #d8a31a;
    --grad: linear-gradient(135deg, rgba(23, 107, 77, .14), rgba(139, 195, 74, .12) 58%, rgba(47, 158, 112, .08));
    --grad-strong: linear-gradient(135deg, #176b4d, #2f9e70 58%, #8bc34a)
}

body.geo-theme-3 {
    --c-bg: #f7f7f8;
    --c-primary: #b91c1c;
    --c-primary-2: #111827;
    --c-accent: #ef4444;
    --c-warn: #f97316;
    --grad: linear-gradient(135deg, rgba(17, 24, 39, .12), rgba(185, 28, 28, .10) 58%, rgba(239, 68, 68, .08));
    --grad-strong: linear-gradient(135deg, #111827, #b91c1c 62%, #ef4444)
}

body.geo-theme-4 {
    --c-bg: #f5f8fb;
    --c-primary: #0f4c75;
    --c-primary-2: #2b6f95;
    --c-accent: #38bdf8;
    --c-warn: #f59e0b;
    --grad: linear-gradient(135deg, rgba(15, 76, 117, .12), rgba(56, 189, 248, .10) 60%, rgba(226, 232, 240, .22));
    --grad-strong: linear-gradient(135deg, #0f4c75, #2b6f95 58%, #38bdf8)
}

body.geo-theme-5 {
    --c-bg: #f8f6f0;
    --c-primary: #1f2937;
    --c-primary-2: #0f172a;
    --c-accent: #c7982b;
    --c-warn: #d6a53a;
    --grad: linear-gradient(135deg, rgba(15, 23, 42, .10), rgba(199, 152, 43, .12) 58%, rgba(248, 246, 240, .26));
    --grad-strong: linear-gradient(135deg, #0f172a, #1f2937 58%, #c7982b)
}

body.geo-theme-2 .geo-hero {
    background: linear-gradient(135deg, #176b4d, #2f9e70)
}

body.geo-theme-3 .geo-hero {
    background: linear-gradient(135deg, #111827, #b91c1c)
}

body.geo-theme-4 .geo-hero {
    background: linear-gradient(135deg, #123d5a, #0f4c75)
}

body.geo-theme-5 .geo-hero {
    background: linear-gradient(135deg, #0f172a, #1f2937)
}

body.geo-theme-3 .geo-panel,
body.geo-theme-5 .geo-panel {
    border-radius: 6px
}

body.geo-theme-2 .geo-panel {
    background: rgba(255, 255, 255, .96)
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

a {
    color: inherit;
    text-decoration: none
}

ul,
ol {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit
}

input,
textarea,
select {
    font: inherit
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--sp-6)
}

.container-n {
    width: 100%;
    max-width: var(--container-n);
    margin: 0 auto;
    padding: 0 var(--sp-6)
}

.section {
    padding: var(--sp-20) 0
}

.section-sm {
    padding: var(--sp-12) 0
}

/* 通栏服务信息（替换原右侧服务信息卡后，迁入到此通栏区） */
.service-info-bar {
    padding: var(--sp-8) 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, .08), rgba(6, 182, 212, .06))
}

.service-info-card {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 24px 28px
}

.service-info-title {
    flex: 0 0 auto;
    min-width: 200px
}

.service-info-list {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none
}

.service-info-list li {
    display: flex;
    gap: 8px;
    align-items: baseline;
    font-size: 14px;
    line-height: 1.6
}

.service-info-list .si-k {
    color: var(--c-text-3);
    font-size: 12px;
    flex-shrink: 0
}

.service-info-list .si-v {
    color: var(--c-text);
    font-weight: 600;
    min-width: 0;
    word-break: break-all
}

.service-info-actions {
    flex: 0 0 auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

@media (max-width:900px) {
    .service-info-card {
        padding: 20px 18px;
        gap: 18px
    }

    .service-info-list {
        grid-template-columns: 1fr;
        gap: 8px
    }

    .service-info-title {
        min-width: 0;
        width: 100%
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: .01em;
    transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t)
}

.btn:active {
    transform: translateY(1px)
}

.btn-primary {
    color: #fff;
    background: var(--grad-strong);
    box-shadow: 0 14px 36px rgba(37, 99, 235, .22)
}

.btn-primary:hover {
    box-shadow: 0 18px 52px rgba(37, 99, 235, .26)
}

.btn-cta {
    color: #fff;
    background: #0f172a;
    border: 1px solid rgba(15, 23, 42, .18);
    border-radius: 6px;
    box-shadow: 0 16px 44px rgba(15, 23, 42, .18)
}

.btn-cta:hover {
    background: #111c33;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .22)
}

.btn-ghost {
    color: var(--c-text);
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--c-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px)
}

.btn-ghost:hover {
    background: none;
    border: 1px solid #ffffff
}

.btn-outline {
    color: var(--c-text);
    border: 1px solid rgba(15, 23, 42, .16);
    background: transparent
}

.btn-outline:hover {
    border-color: rgba(37, 99, 235, .35);
    box-shadow: var(--shadow-sm)
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-text-2);
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--c-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px)
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--c-accent);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, .16)
}

.muted {
    color: var(--c-text-3)
}

.h1 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -.02em
}

.h2 {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.6vw, 2.05rem);
    line-height: 1.2;
    letter-spacing: -.01em
}

.h3 {
    font-family: var(--font-display);
    font-size: 1.12rem;
    line-height: 1.35
}

.eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--c-primary)
}

.card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t)
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, .20)
}

.card-pad {
    padding: 22px
}

.topbar {
    background: rgba(255, 255, 255, .72);
    border-bottom: 1px solid var(--c-border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px)
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    color: var(--c-text-2);
    font-size: 13px
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap
}

.topbar-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border: 1px solid var(--c-border);
    border-radius: 6px;
    background: rgba(255, 255, 255, .78)
}

.topbar-strong {
    font-weight: 800;
    color: var(--c-text)
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    flex: 0 0 auto
}

.topbar-a {
    color: var(--c-text-2);
    font-weight: 700
}

.topbar-a:hover {
    color: var(--c-primary)
}

.topbar-phone {
    font-weight: 900;
    color: var(--c-text);
    letter-spacing: .01em;
    font-variant-numeric: tabular-nums
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 248, 252, .72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15, 23, 42, .08)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0
}


.brand-mark {
    display: none
}

.brand-mark svg {
    display: none
}

.brand-name {
    display: block;
    font-size: clamp(29px, 2vw, 34px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -.035em
}

.brand-sub {
    font-size: 12px;
    color: var(--c-text-3);
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 340px
}

.nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
    white-space: nowrap;
    min-width: 0
}


.nav a:hover {
    color: var(--c-primary)
}

.nav a.active {
    color: var(--c-primary)
}

.header-cta {
    display: none
}

.phone {
    font-weight: 900;
    color: var(--c-text);
    white-space: nowrap
}

.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid var(--c-border);
    background: rgba(255, 255, 255, .8);
    box-shadow: var(--shadow-sm)
}

.menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--c-text);
    margin: 4px auto;
    border-radius: 2px;
    transition: transform var(--t), opacity var(--t)
}

.mnav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(15, 23, 42, .55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 16px
}

.mnav.open {
    display: block
}

.mnav-panel {
    background: #fff;
    border-radius: var(--r-lg);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: var(--shadow-lg);
    max-width: 520px;
    margin: 0 auto;
    padding: 18px
}

.mnav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 6px 12px
}

.mnav-close {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid var(--c-border)
}

.mnav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 6px
}

.mnav-links a {
    padding: 12px 12px;
    border-radius: 8px;
    border: 1px solid var(--c-border);
    background: rgba(246, 248, 252, .7);
    font-weight: 900;
    color: var(--c-text-2)
}

.mnav-links a:hover {
    border-color: rgba(37, 99, 235, .25);
    background: rgba(37, 99, 235, .08);
    color: var(--c-primary)
}

.mnav-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 6px 6px;
    color: var(--c-text-3);
    font-size: 12px
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--grad);
    border-bottom: 1px solid rgba(15, 23, 42, .08)
}

.hero::before {
    content: "";
    position: absolute;
    inset: -140px -180px auto auto;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, .30), rgba(37, 99, 235, 0) 65%);
    filter: blur(2px)
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto auto -180px -180px;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, rgba(6, 182, 212, .28), rgba(6, 182, 212, 0) 65%)
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 26px;
    align-items: center;
    padding: 64px 0
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.hero-title {
    margin-top: 14px
}

.hero-title em {
    font-style: normal;
    color: var(--c-primary)
}

.hero-sub {
    margin-top: 16px;
    color: var(--c-text-2);
    max-width: 56ch
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px
}

.hero-meta {
    margin-top: 22px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    color: var(--c-text-3);
    font-size: 13px
}

.hero-meta strong {
    color: var(--c-text);
    font-weight: 900
}

.hero-side {
    display: grid;
    gap: 14px
}

.hero-panel {
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: var(--shadow-md);
    padding: 18px
}

.hero-panel-title {
    font-weight: 900
}

.hero-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px
}

.mini {
    border-radius: 8px;
    border: 1px solid var(--c-border);
    background: rgba(246, 248, 252, .7);
    padding: 14px
}

.mini b {
    display: block;
    font-size: 18px;
    letter-spacing: -.02em
}

.mini span {
    display: block;
    margin-top: 6px;
    color: var(--c-text-3);
    font-size: 12px
}

.hero-list {
    display: grid;
    gap: 10px;
    margin-top: 12px
}

.hero-li {
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.hero-li i {
    width: 20px;
    height: 20px;
    border-radius: 7px;
    background: rgba(37, 99, 235, .12);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--c-primary);
    font-weight: 900
}

.hero-li p {
    color: var(--c-text-2);
    font-size: 13px;
    line-height: 1.55
}

.grid {
    display: grid;
    gap: var(--grid-gap)
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}



.section-head p {
    color: var(--c-text-3);
}



.feat {
    display: flex;
    gap: 14px
}

.feat h3 {
    margin-top: 2px
}

.feat p {
    margin-top: 8px;
    color: var(--c-text-3);
    font-size: 14px
}

.media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch
}

.media-card {
    padding: 24px;
    position: relative;
    overflow: hidden
}

.media-card::after {
    content: "";
    position: absolute;
    inset: auto -120px -120px auto;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, .22), rgba(37, 99, 235, 0) 65%)
}

.media-kv {
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border);
    background: linear-gradient(135deg, rgba(37, 99, 235, .08), rgba(6, 182, 212, .06));
    padding: 24px;
    display: grid;
    gap: 10px
}

.kv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.kv-row b {
    font-weight: 900
}

.kv-row span {
    color: var(--c-text-3);
    font-size: 13px
}

.kv-bar {
    height: 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .08);
    overflow: hidden
}

.kv-bar>div {
    height: 100%;
    border-radius: 999px;
    background: var(--grad-strong)
}

.list {
    display: grid;
    gap: 14px
}

.list-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 16px;
    padding: 16px;
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t)
}

.list-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, .20)
}

.thumb {
    width: 100%;
    height: 110px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(15, 23, 42, .06)
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.li-title {
    font-weight: 1000;
    letter-spacing: -.01em;
    line-height: 1.35
}

.li-title a:hover {
    color: var(--c-primary)
}

.li-desc {
    margin-top: 8px;
    color: var(--c-text-3);
    font-size: 14px
}

.li-meta {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--c-text-3);
    font-size: 12px
}

.li-more {
    margin-left: auto;
    font-weight: 900;
    color: var(--c-primary)
}

.article {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    padding: 26px
}

.article h1 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    line-height: 1.25;
    letter-spacing: -.01em
}

.article-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--c-text-3);
    font-size: 12px;
    margin-top: 10px
}

.article-body {
    margin-top: 18px;
    color: var(--c-text-2)
}

.article-body p {
    margin: 12px 0
}

.article-body h2,
.article-body h3 {
    margin: 18px 0 10px;
    color: var(--c-text)
}

.article-body img {
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
    margin: 12px auto
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--c-text-3);
    font-size: 13px;
    padding: 14px 0
}

.breadcrumb a {
    color: var(--c-text-2);
    font-weight: 800
}

.breadcrumb a:hover {
    color: var(--c-primary)
}

.breadcrumb .sep {
    opacity: .7
}

.page-hero {
    background: linear-gradient(135deg, rgba(37, 99, 235, .14), rgba(255, 255, 255, 0) 55%), linear-gradient(315deg, rgba(6, 182, 212, .10), rgba(255, 255, 255, 0) 55%);
    border-bottom: 1px solid rgba(15, 23, 42, .08)
}

.page-hero-inner {
    padding: 44px 0
}

.page-hero-sub {
    margin-top: 10px;
    color: var(--c-text-3);
    max-width: 70ch
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate
}

.hero>.container,
.page-hero>.container {
    position: relative;
    z-index: 1
}

.hero-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    overflow: hidden
}

.hero-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-banner-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 15, 29, .82) 0%, rgba(7, 15, 29, .62) 38%, rgba(7, 15, 29, .36) 68%, rgba(7, 15, 29, .58) 100%)
}

.hero-has-banner {
    background: #0b1220;
    border-bottom: none
}

.hero-has-banner::before,
.hero-has-banner::after {
    display: none
}

.hero-has-banner .badge {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .18);
    color: #fff
}

.hero-has-banner .badge-dot {
    background: #7dd3fc;
    box-shadow: 0 0 0 4px rgba(125, 211, 252, .20)
}

.hero-has-banner .hero-title {
    color: #fff
}

.hero-has-banner .hero-title em {
    color: #bfdbfe
}

.hero-has-banner .hero-sub,
.hero-has-banner .hero-meta,
.hero-has-banner .muted {
    color: rgba(255, 255, 255, .82)
}

.hero-has-banner .hero-meta strong,
.hero-has-banner .hero-panel-title,
.hero-has-banner .mini b {
    color: #fff
}

.hero-has-banner .btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .18)
}

.hero-has-banner .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .24)
}

.hero-has-banner .btn-outline:hover {
    border-color: rgba(255, 255, 255, .40);
    background: rgba(255, 255, 255, .08)
}

.hero-has-banner .hero-panel {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .18);
    box-shadow: 0 18px 48px rgba(2, 6, 23, .24);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px)
}

.hero-has-banner .mini {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .14)
}

.hero-has-banner .mini span,
.hero-has-banner .hero-li p {
    color: rgba(255, 255, 255, .78)
}

.hero-has-banner .hero-li i {
    background: rgba(255, 255, 255, .16);
    color: #fff
}

.page-hero-has-banner {
    background: #0b1220;
    border-bottom: none
}

.page-hero-has-banner .page-hero-inner {
    padding: 72px 0
}

.page-hero-has-banner .eyebrow {
    color: #bfdbfe
}

.page-hero-has-banner .h2 {
    color: #fff
}

.page-hero-has-banner .page-hero-sub {
    color: rgba(255, 255, 255, .82);
    max-width: 72ch
}


.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 26px
}

.pagination a,
.pagination span {
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid var(--c-border);
    background: rgba(255, 255, 255, .86);
    color: var(--c-text-2);
    font-weight: 900;
    box-shadow: var(--shadow-sm)
}

.pagination a:hover {
    border-color: rgba(37, 99, 235, .25);
    color: var(--c-primary)
}

.pagination .active {
    background: rgba(37, 99, 235, .12);
    border-color: rgba(37, 99, 235, .25);
    color: var(--c-primary)
}

.footer {
    background: #0b1220;
    color: rgba(255, 255, 255, .86);
}

.footer-inner {
    padding: 40px 0
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    align-items: start
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.footer-brand .brand-mark {
    box-shadow: none
}

.footer-desc {
    margin-top: 12px;
    color: rgba(255, 255, 255, .68);
    max-width: 72ch
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px
}

.foot-box {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 14px;
    background: rgba(255, 255, 255, .04)
}

.foot-box b {
    display: block;
    font-weight: 900
}

.foot-box span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .70);
    font-size: 13px;
    line-height: 1.6
}

.friend {
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 14px
}

.friend-title {
    font-weight: 900;
    font-size: 13px;
    color: rgba(255, 255, 255, .80)
}

.friend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px
}

.friend-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, .74);
    border: 1px solid rgba(255, 255, 255, .14);
    padding: 6px 10px;
    border-radius: 6px
}

.friend-links a:hover {
    color: #fff;
    border-color: rgba(6, 182, 212, .40)
}

.footer-bottom {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, .60);
    font-size: 12px
}

.empty {
    padding: 44px;
    border: 1px dashed rgba(15, 23, 42, .18);
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, .76);
    text-align: center;
    color: var(--c-text-3)
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 18px;
    align-items: start
}

.side-card {
    padding: 18px
}

.side-title {
    font-weight: 1000;
    letter-spacing: -.01em
}

.side-list {
    margin-top: 12px;
    display: grid;
    gap: 10px
}

.side-list a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--c-border);
    background: rgba(246, 248, 252, .72);
    color: var(--c-text-2);
    font-weight: 900;
    line-height: 1.35
}

.side-list a:hover {
    border-color: rgba(37, 99, 235, .22);
    background: rgba(37, 99, 235, .08);
    color: var(--c-primary)
}

.side-list span {
    display: block;
    color: var(--c-text-3);
    font-weight: 800;
    font-size: 12px;
    margin-top: 6px
}

@media (max-width:1024px) {
    .topbar-phone {
        display: none
    }

    .nav {
        display: none
    }

    .menu-btn {
        display: block
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .two-col {
        grid-template-columns: 1fr
    }

    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 16px
    }
}

@media (max-width:1200px) {

    .brand-name {
        font-size: 24px
    }

    .brand-sub {
        display: none
    }
}

@media (max-width:640px) {

    .container,
    .container-n {
        padding: 0 14px
    }

    .topbar-left {
        gap: 8px
    }

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr
    }

    .list-item {
        grid-template-columns: 1fr
    }

    .thumb {
        height: 160px
    }

    .mnav-links {
        grid-template-columns: 1fr
    }


    .brand-name {
        font-size: 22px
    }

    .topbar-right {
        gap: 10px
    }

    .hero-inner {
        padding: 46px 0
    }

    .page-hero-inner {
        padding: 34px 0
    }
}


body.nav-open {
    overflow: hidden
}

.site-shell {
    min-height: 100vh
}

.top-strip {
    background: var(--theme-strip);
    color: #fff;
    font-size: 12px;
    letter-spacing: .02em
}

.top-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 0
}

.site-brand {
    background: var(--theme-head-bg);
    border-bottom: 1px solid var(--theme-line)
}

.site-brand .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    padding: 22px 0 14px
}

.company-wrap {
    min-width: 0;
    flex: 1
}

.company-title {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(26px, 2.6vw, 34px);
    line-height: 1.32;
    font-weight: 950;
    letter-spacing: -.03em;
    color: var(--theme-head-text);
    word-break: break-word
}

.company-sub {
    margin-top: 8px;
    font-size: 12px;
    color: var(--theme-head-sub)
}

.hotline-box {
    white-space: nowrap;
    text-align: right;
    color: var(--theme-accent);
    font-weight: 900;
    padding-top: 4px;
    line-height: 1.75
}

.nav-panel {
    background: var(--theme-nav-bg);
    border-top: 1px solid var(--theme-line);
    border-bottom: 2px solid var(--theme-accent)
}

.nav-panel .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none
}

.nav-list::-webkit-scrollbar {
    display: none
}

.nav-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 18px;
    font-size: 14px;
    font-weight: 800;
    color: var(--c-text-2);
    white-space: nowrap;
    transition: background var(--t), color var(--t)
}

.nav-list a:hover,
.nav-list a.is-active {
    background: var(--theme-nav-active-bg);
    color: var(--theme-accent)
}

.nav-meta {
    font-size: 12px;
    color: var(--c-text-3);
    white-space: nowrap
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--theme-line);
    background: var(--theme-nav-bg);
    color: var(--c-text);
    font-size: 20px;
    border-radius: 6px
}

.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .45);
    display: none;
    z-index: 70;
    padding: 14px
}

.mobile-nav.is-open {
    display: block
}

.mobile-panel {
    width: min(360px, 100%);
    height: 100%;
    margin-left: auto;
    background: var(--theme-mobile-bg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: var(--shadow-lg)
}

.mobile-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px
}

.mobile-head button {
    border: 1px solid var(--theme-line);
    background: none;
    width: 34px;
    height: 34px;
    color: var(--c-text);
    font-size: 18px;
    border-radius: 6px
}

.mobile-title {
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.35;
    font-weight: 900;
    color: var(--theme-head-text)
}

.mobile-sub,
.mobile-foot {
    font-size: 13px;
    color: var(--c-text-3)
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.mobile-links a {
    padding: 12px 14px;
    border: 1px solid var(--theme-line);
    background: var(--theme-mobile-item);
    font-weight: 800;
    color: var(--c-text-2);
    border-radius: 6px
}

.mobile-links a:hover {
    color: var(--theme-accent);
    border-color: rgba(0, 0, 0, .08)
}

@media (max-width:1024px) {
    .nav-meta {
        display: none
    }
}

@media (max-width:768px) {
    .site-brand .container {
        align-items: center;
        padding: 18px 0 12px
    }

    .about-inline-ad {
        float: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 16px !important;
    }

    .navbar-nav {
        flex-direction: row;
        gap: 18px
    }

    .navbar .nav-link {
        font-size: 12px;
    }

    .nav-item.active .nav-link {
        color: #1a4b8c !important;
        position: relative;
    }

    .nav-item.active .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: #1a4b8c;
        border-radius: 1px;
    }

    .hotline-box,
    .nav-meta {
        display: none
    }

    .nav-toggle {
        display: inline-flex
    }

    .nav-list {
        display: none
    }

    .company-title {
        font-size: 24px
    }

    .top-strip .container {
        gap: 10px
    }
}

body.theme-engineering {
    --c-bg: #f5f1f0;
    --c-surface: #ffffff;
    --c-text: #2d2320;
    --c-text-2: #4a3832;
    --c-text-3: #7b6861;
    --c-border: rgba(45, 35, 32, .12);
    --c-primary: #b33a2f;
    --c-primary-2: #d1604f;
    --c-accent: #1f2937;
    --grad: linear-gradient(135deg, rgba(179, 58, 47, .14), rgba(255, 255, 255, .42) 56%, rgba(31, 41, 55, .08));
    --grad-strong: linear-gradient(135deg, #b33a2f, #d1604f 58%, #d78963);
    --shadow-sm: 0 2px 6px rgba(57, 33, 28, .07), 0 1px 2px rgba(57, 33, 28, .05);
    --shadow-md: 0 18px 40px rgba(57, 33, 28, .14);
    --shadow-lg: 0 24px 64px rgba(57, 33, 28, .18);
    --theme-strip: #7b231d;
    --theme-head-bg: #ffffff;
    --theme-head-text: #2e2523;
    --theme-head-sub: #84706a;
    --theme-line: #e4d8d5;
    --theme-nav-bg: #ffffff;
    --theme-nav-active-bg: #f9efed;
    --theme-accent: #b33a2f;
    --theme-mobile-bg: #ffffff;
    --theme-mobile-item: #faf3f1;
    --r-sm: 4px;
    --r-md: 6px;
    --r-lg: 8px;
}

body.theme-engineering .btn {
    border-radius: 6px
}

body.theme-engineering .badge,
body.theme-engineering .topbar-pill,
body.theme-engineering .nav a {
    border-radius: 6px
}

body.theme-engineering .hero::before {
    background: radial-gradient(circle at 30% 30%, rgba(179, 58, 47, .22), rgba(179, 58, 47, 0) 65%)
}

body.theme-engineering .hero::after {
    background: radial-gradient(circle at 30% 30%, rgba(31, 41, 55, .16), rgba(31, 41, 55, 0) 65%)
}

body.theme-engineering .footer {
    background: #311816
}

body.theme-engineering .page-hero {
    background: linear-gradient(135deg, rgba(179, 58, 47, .12), rgba(255, 255, 255, 0) 55%), linear-gradient(315deg, rgba(31, 41, 55, .08), rgba(255, 255, 255, 0) 55%)
}

body.theme-engineering .icon,
body.theme-engineering .hero-li i {
    background: rgba(179, 58, 47, .10);
    color: #b33a2f;
    border-radius: 4px
}

body.theme-engineering .badge-dot {
    background: #b33a2f;
    box-shadow: 0 0 0 4px rgba(179, 58, 47, .14)
}

body.theme-engineering .card,
body.theme-engineering .article,
body.theme-engineering .list-item,
body.theme-engineering .hero-panel,
body.theme-engineering .mnav-panel {
    border-radius: 8px
}

/* GEO template unified shell */
:root {
    --geo-ink: #132033;
    --geo-muted: #526278;
    --geo-line: #e7edf4;
    --geo-soft: #f5f8fb;
    --geo-brand: #1a4b8c;
    --geo-brand-2: #123d5a;
    --geo-accent: #f59e0b;
    --geo-shadow: 0 18px 45px rgba(19, 32, 51, .08);
}

body.geo-page {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--geo-ink);
    background: #fff;
    line-height: 1.75
}

.geo-wrap {
    width: 1350px;
    max-width: calc(100% - 32px);
    margin: 0 auto
}

.geo-top {
    height: 76px;
    background: #fff;
    border-bottom: 1px solid var(--geo-line);
    position: sticky;
    top: 0;
    z-index: 40
}

.geo-top .geo-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px
}

.geo-brand {
    min-width: 0
}

.geo-brand h1 {
    font-size: 24px;
    line-height: 1.25;
    color: var(--geo-brand);
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.geo-brand p {
    font-size: 12px;
    color: var(--geo-muted)
}

.brand-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 3px
}

.site-certifications {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap
}

.site-certification {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 20px;
    padding: 1px 7px;
    border: 1px solid;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 800;
    line-height: 16px;
    white-space: nowrap
}

.site-certification i {
    display: inline-grid;
    place-items: center;
    width: 13px;
    height: 13px;
    border-radius: 2px;
    color: #fff;
    font-size: 10px;
    font-style: normal;
    line-height: 1
}

.site-certification-phone {
    color: #b45309;
    border-color: #f7c66b;
    background: #fff8e8
}

.site-certification-phone i {
    background: #f59e0b
}

.site-certification-license {
    color: #15803d;
    border-color: #86d99b;
    background: #f0fdf4
}

.site-certification-license i {
    background: #16a34a
}

.geo-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    font-weight: 800;
    color: #1f2937;
    white-space: nowrap
}

.geo-nav a:hover,
.geo-nav a.is-active {
    color: var(--geo-brand)
}

.geo-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--geo-brand);
    color: #fff !important;
    font-weight: 900
}

.geo-hero {
    background: linear-gradient(135deg, var(--geo-brand-2), #0d5677);
    color: #fff;
    padding: 58px 0;
    text-align: center
}

.geo-hero h2 {
    font-size: 38px;
    line-height: 1.25;
    font-weight: 900
}

.geo-hero p {
    max-width: 820px;
    margin: 14px auto 0;
    color: rgba(255, 255, 255, .82);
    font-size: 15px
}

.geo-breadcrumb {
    padding: 16px 0;
    color: var(--geo-muted);
    font-size: 14px
}

.geo-breadcrumb a {
    font-weight: 800;
    color: #334155
}

.geo-section {
    padding: 16px 0 30px
}

.geo-section.soft {
    background: var(--geo-soft)
}

.geo-section-head {
    text-align: center;
    margin-bottom: 28px
}

.geo-section-head h2 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 900;
    color: #111827
}

.geo-section-head p {
    margin-top: 8px;
    color: var(--geo-muted)
}

.geo-under {
    width: 54px;
    height: 4px;
    border-radius: 4px;
    background: var(--geo-accent);
    margin: 12px auto 0
}

.geo-grid {
    display: grid;
    gap: 22px
}

.geo-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.geo-grid-3 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.geo-card {
    background: #fff;
    border: 1px solid var(--geo-line);
    border-radius: 16px;
    box-shadow: var(--geo-shadow);
    overflow: hidden
}

.geo-card-body {
    padding: 22px
}

.geo-card h3 {
    font-size: 20px;
    line-height: 1.45;
    color: #172033;
    font-weight: 700;
    margin-bottom: 10px
}

.geo-card p,
.geo-muted {
    font-size: 14px;
    color: #45556a;
    line-height: 1.9
}

.geo-thumb {
    aspect-ratio: 4 / 3;
    background: #f1f5f9;
    overflow: hidden
}

.geo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.geo-thumb-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 900;
    background: linear-gradient(135deg, #eef5fb, #f8fafc)
}

.geo-more {
    color: var(--geo-brand);
    font-weight: 900;
    font-size: 14px
}

.geo-list {
    display: grid;
    gap: 14px
}

.geo-list-item {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--geo-line);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(19, 32, 51, .06)
}

.geo-list-item h3 {
    font-size: 25px;
    font-weight: bold;
}

.geo-list-item .geo-thumb {
    height: 118px;
    border-radius: 10px
}

.geo-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--geo-muted);
    font-size: 12px;
    margin-top: 10px
}

.geo-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start
}

.geo-panel {
    background: #fff;
    border: 1px solid var(--geo-line);
    border-radius: 16px;
    box-shadow: var(--geo-shadow);
    padding: 26px
}

.geo-side {
    display: grid;
    gap: 14px
}

.geo-side a {
    display: block;
    padding: 12px 14px;
    border: 1px solid var(--geo-line);
    border-radius: 10px;
    background: #f8fbff;
    color: #334155;
    font-weight: 800
}

.geo-side span {
    display: block;
    margin-top: 4px;
    color: var(--geo-muted);
    font-size: 12px;
    font-weight: 700
}

.geo-site-link-box {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px dashed #d9e3ee
}

.geo-site-link-box h4 {
    font-size: 15px;
    line-height: 1.4;
    color: #111827;
    margin-bottom: 10px
}

.geo-site-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.geo-site-links a {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 30px;
    padding: 5px 10px;
    border: 1px solid var(--geo-line);
    border-radius: 999px;
    background: #fff;
    color: #334155;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.45
}

.geo-site-links a:hover {
    color: var(--geo-brand);
    border-color: #c7d7e8;
    background: #f8fbff
}

.geo-article h1 {
    font-size: 26px;
    line-height: 1.35;
    font-weight: 600;
    margin-bottom: 12px
}

.geo-article-body {
    margin-top: 20px;
    color: #334155;
    line-height: 2
}

.geo-article-body p {
    margin: 12px 0
}

.geo-article-body img {
    border-radius: 14px;
    border: 1px solid var(--geo-line);
    margin: 14px auto
}

.geo-about-capability-head {
    margin: 42px 0 22px
}

.geo-about-capability .geo-panel {
    box-shadow: 0 10px 28px rgba(19, 32, 51, .06)
}

.geo-panel h3 {
    font-weight: 600;
    font-size: 23px;
}

.geo-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 28px;
    align-items: start
}

.geo-detail-image {
    border: 1px solid var(--geo-line);
    border-radius: 16px;
    padding: 10px;
    background: #fff
}

.geo-detail-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 10px;
    background: #f1f5f9
}

.geo-detail-shell {
    display: grid;
    gap: 24px
}

.geo-detail-shell>.geo-detail {
    background: #fff;
    border: 1px solid var(--geo-line);
    border-radius: 16px;
    box-shadow: var(--geo-shadow);
    padding: 26px
}

.geo-detail-placeholder {
    height: 430px;
    border-radius: 10px;
    background: linear-gradient(135deg, #eef5fb, #f8fafc);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #334155;
    padding: 24px
}

.geo-detail-placeholder strong {
    font-size: 24px;
    color: var(--geo-brand);
    line-height: 1.35
}

.geo-detail-placeholder span {
    margin-top: 10px;
    font-size: 15px;
    color: #64748b;
    font-weight: 800;
    line-height: 1.6
}

.geo-product-summary h1 {
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
    margin: 6px 0 10px;
    color: #111827
}

.geo-product-summary p {
    color: #45556a;
    line-height: 1.9;
    margin-bottom: 14px
}

.geo-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border: 1px solid var(--geo-line);
    border-radius: 4px;
    background: #f8fbff;
    color: var(--geo-brand);
    font-size: 12px;
    font-weight: 900
}

.geo-product-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start
}

.geo-product-grid .geo-article h2 {
    font-size: 24px;
    line-height: 1.35;
    color: #111827;
    font-weight: 700;
    margin-bottom: 12px
}

.geo-product-aside {
    display: grid;
    gap: 18px
}

.geo-product-aside .geo-panel h3 {
    font-weight: 700;
    font-size: 17px;
}

.geo-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px
}

.geo-chip-list span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 10px 12px;
    border: 1px solid var(--geo-line);
    border-radius: 12px;
    background: #f8fbff;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.geo-point-list {
    display: grid;
    gap: 8px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none
}

.geo-point-list li {
    position: relative;
    padding-left: 14px;
    color: #45556a;
    font-size: 13px;
    line-height: 1.75
}

.geo-point-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .78em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--geo-accent)
}

.geo-faq-mini {
    margin-top: 8px
}

.geo-faq-mini dt {
    font-weight: 900;
    color: #111827;
    margin-top: 12px;
    font-size: 14px
}

.geo-faq-mini dd {
    margin-top: 4px;
    color: #45556a;
    font-size: 13px;
    line-height: 1.75
}

.geo-related-list {
    display: grid;
    gap: 10px;
    margin-top: 12px
}

.geo-related-list a {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 58px;
    padding: 8px;
    border: 1px solid var(--geo-line);
    border-radius: 10px;
    background: #f8fbff;
    color: #334155;
    font-weight: 900;
    line-height: 1.45
}

.geo-related-list img {
    width: 58px;
    height: 44px;
    object-fit: cover;
    border-radius: 8px;
    background: #eef2f7
}

.geo-related-list i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 44px;
    border-radius: 8px;
    background: #eef5fb;
    color: var(--geo-brand);
    font-style: normal;
    font-size: 12px
}

.geo-related-list span {
    min-width: 0;
    word-break: break-word
}

.geo-case-image-list {
    display: grid;
    gap: 10px;
    margin-top: 12px
}

.geo-case-image-list img {
    width: 100%;
    height: 128px;
    object-fit: cover;
    border: 1px solid var(--geo-line);
    border-radius: 10px;
    background: #f1f5f9
}

.geo-info-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed #d9e3ee;
    font-size: 14px
}

.geo-info-row b {
    color: #64748b
}

.geo-info-row span {
    font-weight: 800;
    color: #1f2937;
    word-break: break-word
}

.geo-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px
}

.geo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 900;
    border: 1px solid transparent
}

.geo-btn-primary {
    background: var(--geo-accent);
    color: #172033
}

.geo-btn-outline {
    border-color: var(--geo-line);
    color: var(--geo-brand);
    background: #fff
}

.geo-empty {
    padding: 42px;
    border: 1px dashed #d5e1ee;
    border-radius: 14px;
    text-align: center;
    color: var(--geo-muted);
    background: #fff
}

.geo-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 30px 0;
    font-size: 13px
}

.geo-footer .geo-wrap {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap
}

.geo-footer a {
    color: #e2e8f0
}

.geo-footer-links {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    gap: 10px 14px;
    flex-wrap: wrap;
    padding-bottom: 14px;
    margin-bottom: 2px;
    border-bottom: 1px solid rgba(226, 232, 240, .14);
    text-align: left
}

.geo-footer-links b {
    color: #e2e8f0;
    font-size: 13px;
    white-space: nowrap
}

.geo-footer-links a {
    display: inline-flex;
    align-items: center;
    max-width: 220px;
    min-height: 28px;
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.geo-footer-links a:hover {
    color: #fff
}

.geo-site-note {
    flex: 0 0 100%;
    width: 100%;
    padding-top: 14px;
    margin-top: 2px;
    border-top: 1px solid rgba(226, 232, 240, .14);
    color: #94a3b8;
    line-height: 1.8
}

.banner-section-about .h-100 {
    display: block;
    width: 100%;
    text-align: center;
}

.banner-section-about {
    min-height: 260px;
}

.banner-section-about .h-100 .banner-text {
    width: 100%;
}

.banner-section-about .h-100 .banner-text h1 {
    font-size: 35px;
}

.geo-about-capability .geo-panel h3 {
    font-size: 20px;
    font-weight: 700;
}



@media(max-width:900px) {
    .geo-top {
        height: auto;
        position: relative
    }

    .geo-top .geo-wrap {
        padding: 14px 0;
        align-items: flex-start;
        flex-direction: column
    }

    .geo-nav {
        gap: 14px;
        flex-wrap: wrap
    }

    .geo-hero {
        padding: 46px 0
    }

    .geo-hero h2 {
        font-size: 30px
    }

    .geo-grid-2,
    .geo-grid-3,
    .geo-layout,
    .geo-detail,
    .geo-product-grid {
        grid-template-columns: 1fr
    }

    .geo-list-item {
        grid-template-columns: 1fr
    }


    .geo-detail-image img,
    .geo-detail-placeholder {
        height: 280px
    }
}

@media(max-width:560px) {
    .geo-wrap {
        max-width: calc(100% - 22px)
    }

    .geo-section {
        padding: 20px 0
    }

    .geo-hero h2 {
        font-size: 26px
    }

    .geo-card-body,
    .geo-panel,
    .geo-detail-shell>.geo-detail {
        padding: 20px
    }

    .geo-product-summary h1 {
        font-size: 26px
    }

    .geo-nav {
        font-size: 13px
    }

    .geo-phone {
        padding: 0 16px
    }
}