/* ============================================================
   神州商标代理 · 官网主题（参考华进联合 aciplaw 浅色企业风）
   白底 + 品牌蓝 + 蓝色渐变 + 红点缀；页脚保持深色不变
   ============================================================ */

:root {
    /* 浅色企业底 */
    --paper: #FFFFFF;
    --paper-2: #F5F7FA;
    --paper-3: #EDF1FA;
    --ink: #1A1A1B;
    --ink-soft: #5A5F66;
    --ink-faint: #9AA0A6;
    /* 品牌蓝 + 渐变 + 红点缀 */
    --brand: #2F6BFF;
    --brand-deep: #2453CC;
    --brand-light: #EDF1FA;
    --brand-grad: linear-gradient(120deg, #2F6BFF 0%, #6C8BFF 55%, #8D7BFA 100%);
    --accent: #ED3A35; /* 红点缀 */
    --line: #E6E8EC;
    /* 页脚深色（保持不变） */
    --indigo: #041218;
    --indigo-soft: #3A4A52;
    --seal: #C0392B; /* 图样框印记仍用（logo/错误页） */

    --sans: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", "微软雅黑", sans-serif;
    --serif: "Noto Serif SC", "Songti SC", "STSong", "SimSun", serif;
    --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
    --maxw: 1200px;
    --radius: 6px;
    --shadow: 0 1px 2px rgba(26,26,27,.04), 0 10px 28px -14px rgba(26,26,27,.14);
    --shadow-lg: 0 4px 14px rgba(26,26,27,.07), 0 28px 56px -24px rgba(26,26,27,.24);
}

/* ---------- 基础 ---------- */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* 固定页头在滚动条出现/消失时会产生横向偏移，稳定预留滚动条槽位避免各页菜单位置跳变 */
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--brand);
    text-decoration: none;
}

    a:hover {
        color: var(--brand-deep);
    }

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4 {
    font-family: var(--sans);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.28;
    margin: 0 0 .5em;
}

h1 {
    font-size: clamp(28px, 4vw, 44px);
}

h2 {
    font-size: clamp(22px, 2.6vw, 32px);
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 15.5px;
}

p {
    margin: 0 0 1em;
}

:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 880px;
}

/* ---------- 眉题已移除（2026-09-02 全站去 eyebrow） ---------- */

/* 区块 */
.section {
    padding: 72px 0;
}

.section--paper2 {
    background: var(--paper-2);
}

.section--news {
    background: url('/images/bk_news.jpg') center / cover no-repeat;
}

.section--indigo {
    background: var(--indigo);
    color: #C7D0D6;
}

    .section--indigo h2, .section--indigo h3 {
        color: #EEF1F2;
    }

.section-head {
    max-width: 720px;
    margin-bottom: 44px;
}

.section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head p {
    color: var(--ink-soft);
}

.section--indigo .section-head p {
    color: #9FB0B8;
}

/* ---------- 页头（浅色企业导航） ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 3px rgba(26,26,27,.04);
}

/* ---------- 页头 · 首页透明叠加（叠在主图 Banner 上） ---------- */
.site-header--overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    transition: background .3s ease, box-shadow .3s ease;
}

    .site-header--overlay.is-scrolled {
        background: rgba(11, 22, 48, .55);
        box-shadow: 0 1px 8px rgba(0, 0, 0, .22);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .site-header--overlay .header-auth .auth-login,
    .site-header--overlay .lang-toggle,
    .site-header--overlay .search-toggle,
    .site-header--overlay .nav-toggle {
        color: #fff;
    }

    .site-header--overlay .header-auth .auth-login i {
        color: #fff;
        padding-right:3px;
    }

    .site-header--overlay .lang-toggle:hover {
        color: #fff;
        background: rgba(255, 255, 255, .14);
    }

@media (min-width: 992px) {
    .site-header--overlay .nav > li > a {
        color: rgba(255, 255, 255, .92);
    }

        .site-header--overlay .nav > li > a:hover,
        .site-header--overlay .nav > li > a.is-active {
            color: #fff;
        }

        .site-header--overlay .nav > li > a.is-active::before {
            background: #fff;
        }

    .site-header--overlay .nav .has-dropdown > a::after {
        color: rgba(255, 255, 255, .6);
    }
}

.mainnav {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 78px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: none;
}

.brand-mark {
    width: 44px;
    height: 44px;
    flex: none;
}

.brand-logo {
    height: 66px;
    width: auto;
    display: block;
    flex: none;
}

.brand-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: .01em;
}

.brand-sub {
    display: block;
    font-size: 10px;
    color: var(--ink-faint);
    letter-spacing: .18em;
    font-weight: 500;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    white-space: nowrap;
    flex: none;
}

/* 首页透明页头：品牌主/副标题随文字变白 */
.site-header--overlay .brand-name { color: #fff; }
.site-header--overlay .brand-sub { color: rgba(255, 255, 255, .7); }

.nav {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

    .nav > li {
        list-style: none;
        position: relative;
        flex: none;
        white-space: nowrap;
    }

        .nav > li > a {
            display: block;
            padding: 10px 16px;
            font-size: 16px;
            color: var(--ink);
            border-radius: var(--radius);
            position: relative;
            white-space: nowrap;
        }

            .nav > li > a:hover, .nav > li > a.is-active {
                color: var(--brand);
            }

                .nav > li > a.is-active::before {
                    content: "";
                    position: absolute;
                    left: 16px;
                    right: 16px;
                    bottom: 2px;
                    height: 2px;
                    background: var(--brand);
                }
    /* 下拉菜单 */
    .nav .has-dropdown > a::after {
        content: "▾";
        font-size: 11px;
        margin-left: 6px;
        color: var(--ink-faint);
    }

    .nav .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 150px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        padding: 8px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        transition: all .18s ease;
        z-index: 60;
    }

    .nav > li.has-dropdown:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav .dropdown a {
        display: block;
        padding: 9px 20px;
        font-size: 14px;
        color: var(--ink-soft);
    }

        .nav .dropdown a:hover {
            color: var(--brand);
            background: var(--paper-2);
        }
.nav-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 24px;
    color: var(--ink);
    cursor: pointer;
}

/* ---------- 按钮 ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    border-radius: var(--radius);
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .16s ease;
    font-family: var(--sans);
}

.btn--seal {
    background: var(--brand);
    color: #fff;
}

    .btn--seal:hover {
        background: var(--brand-deep);
        color: #fff;
        transform: translateY(-1px);
    }

.btn--ghost {
    background: #fff;
    color: var(--brand);
    border-color: var(--brand);
}

    .btn--ghost:hover {
        background: var(--brand);
        color: #fff;
    }

.btn--paper {
    background: #fff;
    color: var(--brand);
    box-shadow: var(--shadow);
}

    .btn--paper:hover {
        background: var(--paper-2);
    }

.btn--sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn--lg {
    padding: 15px 36px;
    font-size: 16px;
}

.btn--pill {
    border-radius: 999px;
    padding-left: 30px;
    padding-right: 30px;
}

    .btn--pill:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 22px -8px rgba(47, 107, 255, .55);
    }

/* ---------- 商标图样框（logo/错误页保留） ---------- */
.mark {
    position: relative;
    display: inline-grid;
    place-items: center;
    background: #fff;
    border: 1px solid var(--ink);
}

    .mark::before {
        content: "";
        position: absolute;
        inset: 6px;
        border: 1px solid var(--line);
        pointer-events: none;
    }

    .mark::after {
        content: "®";
        position: absolute;
        top: 5px;
        right: 7px;
        font-family: var(--serif);
        font-size: 11px;
        color: var(--ink-faint);
    }

.mark__seal {
    display: inline-grid;
    place-items: center;
    background: var(--seal);
    color: #fff;
    font-family: var(--serif);
    font-weight: 700;
    line-height: 1.15;
}

.mark--sm {
    width: 64px;
    height: 64px;
}

    .mark--sm .mark__seal {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

/* ---------- Banner 主图（全屏） ---------- */
.banner {
    position: relative;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
    background: #0E1E3C;
}

.banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10, 20, 45, .56) 0%,
        rgba(10, 20, 45, .12) 45%,
        rgba(10, 20, 45, .40) 100%);
}

/* Banner 主图加载占位：图片就绪前显示灰底 + 加载提示 */
.banner-loading {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: #e9ecef;
    color: #8a909a;
    font-size: 14px;
    letter-spacing: .08em;
    transition: opacity .45s ease, visibility .45s ease;
}

.banner-loading__spinner {
    width: 34px;
    height: 34px;
    border: 3px solid rgba(47, 107, 255, .18);
    border-top-color: #2F6BFF;
    border-radius: 50%;
    animation: banner-spin .8s linear infinite;
}

@keyframes banner-spin {
    to { transform: rotate(360deg); }
}

/* 图片就绪后淡出占位层 */
.banner.is-loaded .banner-loading {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.banner > .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 78px;
    padding-bottom: 88px;
}

.banner-copy {
    max-width: 620px;
    color: #fff;
}

    .banner-copy h1 {
        color: #fff;
        font-size: clamp(32px, 4.8vw, 54px);
        margin-bottom: .35em;
        letter-spacing: .01em;
    }

    .banner-copy p {
        color: rgba(255,255,255,.85);
        font-size: 17px;
        margin-bottom: 30px;
    }

    .banner-copy .btn--seal {
        background: #fff;
        color: var(--brand);
    }

        .banner-copy .btn--seal:hover {
            background: var(--paper-2);
        }

/* 底部 88px 浅蓝信息带（透明度 50%） */
.banner-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 88px;
    z-index: 3;
    background: rgba(150, 184, 255, .5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

    .banner-strip > .container {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

.strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

    .strip-item i {
        width: 32px;
        height: 32px;
        flex: none;
        display: grid;
        place-items: center;
        font-size: 26px;
        color: #fff;
    }

/* ---------- 实力带 ---------- */
.strength {
    padding: 72px 0;
    background: url('/images/content_bk2.png') center / cover no-repeat;
}

    .strength .strength-grid {
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 56px;
        align-items: center;
    }

    .strength h2 {
        margin-bottom: .5em;
    }

    .strength .intro {
        color: var(--ink-soft);
        font-size: 16px;
    }

.strength-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.strength-stat {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(255, 255, 255, .95);
    border-radius: 12px;
    padding: 24px 26px;
    box-shadow: 0 10px 28px -14px rgba(47, 107, 255, .22);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .strength-stat:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 36px -16px rgba(47, 107, 255, .34);
    }

    /* 顶部品牌渐变装饰条，hover 展开 */
    .strength-stat::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--brand-grad);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s ease;
    }

    .strength-stat:hover::before {
        transform: scaleX(1);
    }

    .strength-stat .num {
        font-size: 40px;
        font-weight: 800;
        line-height: 1;
        letter-spacing: -.01em;
    }

        .strength-stat .num-val {
            background: var(--brand-grad);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            -webkit-text-fill-color: transparent;
            font-variant-numeric: tabular-nums;
        }

        .strength-stat .num em {
            font-style: normal;
            font-size: 20px;
            font-weight: 700;
            color: var(--brand);
            margin-left: 2px;
        }

    .strength-stat .lbl {
        font-size: 13px;
        font-weight: 500;
        color: var(--ink-soft);
        margin-top: 10px;
        letter-spacing: .02em;
    }

.strength-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.strength-badge {
    padding: 8px 16px;
    font-size: 13px;
    color: var(--brand);
    background: var(--brand-light);
    border-radius: 4px;
    font-weight: 600;
}

/* ---------- 卡片网格 ---------- */
.grid {
    display: grid;
    gap: 22px;
}

.grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
    transition: transform .16s ease, box-shadow .16s ease;
    display: flex;
    flex-direction: column;
}

    .card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: #C9D6F5;
    }

.card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 17px;
    margin-bottom: .4em;
}

    .card h3 a {
        color: var(--ink);
    }

        .card h3 a:hover {
            color: var(--brand);
        }

.card p {
    color: var(--ink-soft);
    font-size: 14px;
    margin: 0;
    flex: 1;
}

.card__more {
    margin-top: 16px;
    font-size: 14px;
    color: var(--brand);
    font-weight: 600;
}

.card__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand);
    background: var(--brand-light);
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.service-card {
    border-top: 3px solid var(--brand);
}

/* 案例卡片（4 列：图 180px + 公司名 + 服务类型/行业） */
.case-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* 图片区：整幅铺满的独立色块，底部分隔线与文字区视觉分开 */
.case-card__img {
    height: 170px;
    flex: none;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

    .case-card__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .25s ease;
    }

    .case-card:hover .case-card__img img {
        transform: scale(1.04);
    }

.case-card__body {
    padding: 16px;
    flex: 1;
    background: #f1f1f1;
}

    .case-card__body h3 {
        font-size: 15px;
        margin: 0 0 8px;
        color: var(--ink);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.case-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.case-tag {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 4px;
    background: var(--brand-light);
    color: var(--brand);
    font-weight: 600;
    line-height: 1.4;
}

.case-tag--gray {
    background: var(--paper-2);
    color: var(--ink-soft);
}

/* 资讯卡片 */
.news-card {
    padding: 0;
    overflow: hidden;
    height: 360px;
    display: flex;
    flex-direction: column;
}

.news-card__img {
    height: 166px;
    flex: none;
    background: var(--paper-2);
}

    .news-card__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.news-card__body {
    padding: 18px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.news-card .date {
    font-size: 12px;
    color: var(--ink-faint);
}

.news-card__body h3 {
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__body p {
    font-size: 13.5px;
    color: var(--ink-soft);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__more {
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
}

/* ---------- 合作伙伴轮播 ---------- */
.partners {
    background: var(--paper-2) url('/images/content_bk_blue.png') center / cover no-repeat;
    padding: 56px 0;
}

.partner-carousel {
    overflow: hidden;
    position: relative;
}

.partner-track {
    display: flex;
    gap: 24px;
    animation: partnerScroll 28s linear infinite;
    width: max-content;
}

    .partner-track:hover {
        animation-play-state: paused;
    }

.partner-item {
    flex: none;
    width: 200px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .partner-item:hover {
        transform: translateY(-4px);
        border-color: #C9D6F5;
        box-shadow: var(--shadow-lg);
    }

    .partner-item__img {
        display: grid;
        place-items: center;
        height: 110px;
        padding: 14px;
        background: #fff;
    }

        .partner-item__img img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

    .partner-item__name {
        display: block;
        padding: 10px 12px;
        font-size: 13px;
        font-weight: 600;
        color: var(--ink);
        text-align: center;
        background: var(--paper-2);
        border-top: 1px solid var(--line);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

@keyframes partnerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ---------- 资质 ---------- */
.honor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.honor-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

    .honor-item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: #C9D6F5;
    }

    .honor-item .honor-icon {
        width: 56px;
        height: 56px;
        margin: 0 auto 12px;
        display: grid;
        place-items: center;
        font-size: 26px;
        color: #fff;
        background: var(--brand-grad);
        border-radius: 12px;
    }

    .honor-item .honor-img {
        aspect-ratio: 4/3;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 6px;
        margin-bottom: 12px;
        overflow: hidden;
        padding: 8px;
    }

        .honor-item .honor-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    .honor-item .honor-img--empty {
        width: 100%;
        height: 100%;
        display: grid;
        place-items: center;
        font-size: 32px;
        color: var(--brand);
        background: var(--brand-light);
    }

    .honor-item .honor-year {
        font-size: 12px;
        color: var(--brand);
        font-weight: 600;
        margin-bottom: 4px;
    }

    .honor-item .honor-intro {
        font-size: 12px;
        color: var(--ink-soft);
        margin: 0;
        line-height: 1.5;
    }

    .honor-item h4 {
        font-size: 14px;
        margin-bottom: .2em;
    }

    .honor-item .honor-org {
        font-size: 12px;
        color: var(--ink-faint);
    }

/* ---------- 团队 ---------- */
.team-item {
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 22px 18px;
    box-shadow: var(--shadow);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

    .team-item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: #C9D6F5;
    }

    .team-item .team-img {
        aspect-ratio: 1;
        border-radius: 8px;
        overflow: hidden;
        background: #fff;
        margin-bottom: 14px;
        padding: 10px;
    }

        .team-item .team-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    .team-item h4 {
        font-size: 16px;
        margin-bottom: .2em;
    }

    .team-item .team-role {
        font-size: 12.5px;
        color: var(--brand);
        font-weight: 600;
    }

    .team-item .team-years {
        font-size: 12px;
        color: var(--ink-faint);
    }

    .team-item .team-intro {
        font-size: 12px;
        color: var(--ink-soft);
        margin: 6px 0 0;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

.team-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
}

    .team-filter input {
        flex: 1;
        min-width: 0;
        padding: 9px 14px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        font-size: 14px;
        color: var(--ink);
        font-family: var(--sans);
    }

    .team-filter select {
        padding: 9px 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        font-size: 14px;
        color: var(--ink);
        font-family: var(--sans);
        background: #fff;
    }

    .team-filter input:focus, .team-filter select:focus {
        outline: none;
        border-color: var(--brand);
        box-shadow: 0 0 0 3px var(--brand-light);
    }

/* ---------- 页脚（保持不变 · 深色） ---------- */
.site-footer {
    background: var(--indigo);
    color: #B7C3CA;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 56px 0 40px;
}

    .footer-main h4 {
        color: #EEF1F2;
        font-size: 13px;
        letter-spacing: .14em;
        margin-bottom: 16px;
        text-transform: uppercase;
    }

    .footer-main a {
        display: block;
        color: #B7C3CA;
        font-size: 14px;
        padding: 4px 0;
    }

        .footer-main a:hover {
            color: #fff;
        }

.footer-brand .brand-name {
    color: #EEF1F2;
}

.footer-brand p {
    font-size: 13px;
    margin-top: 14px;
    color: #8FA0A8;
}

.footer-brand .brand {
    margin-bottom: 8px;
}

.footer-contact li {
    list-style: none;
    font-size: 13px;
    padding: 4px 0;
}

.footer-contact ul {
    padding: 0;
    margin: 0;
}

.footer-hotline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

    .footer-hotline i {
        width: 32px;
        height: 32px;
        flex: none;
        display: grid;
        place-items: center;
        font-size: 15px;
        color: #fff;
        background: var(--brand);
        border-radius: 50%;
    }

.footer-bottom {
    border-top: 1px solid rgba(238,241,242,.12);
    padding: 18px 0;
    font-size: 12px;
    color: #7C8B93;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    align-items: center;
    justify-content: center;
}

    .footer-bottom a {
        color: #7C8B93;
        display: inline;
    }

        .footer-bottom a:hover {
            color: #fff;
        }

/* ---------- 悬浮菜单（float-bar，参考 chnerp） ---------- */
.float-bar {
    position: fixed;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 60;
}

.fb-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 60px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    cursor: pointer;
    color: var(--ink-soft);
    text-align: center;
    transition: background .15s ease, color .15s ease;
    padding: 0;
    font-family: var(--sans);
}

    .fb-item + .fb-item {
        border-top: 0;
    }

    .fb-item--top {
        border-radius: 26px 26px 0 0;
    }

    .fb-item--bottom {
        border-radius: 0 0 26px 26px;
    }

    .fb-item:hover {
        background: var(--paper-2);
        color: var(--brand);
    }

.fb-avatar {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-top: 14px;
    border-radius: 50%;
    background:
        url('/images/icon_contact.png') center / cover no-repeat,
        var(--brand-grad);
    color: #fff;
    font-size: 22px;
    box-shadow: var(--shadow-lg);
    transition: transform .16s ease, background .16s ease;
    align-self: center;
}

    .fb-avatar:hover {
        transform: translateY(-2px);
        background:
            url('/images/icon_contact.png') center / cover no-repeat,
            linear-gradient(120deg, #6E9BFF 0%, #94B0FF 55%, #B3A0FF 100%);
    }

.fb-icon {
    font-size: 20px;
    line-height: 1;
    color: var(--brand);
}

.fb-label {
    font-size: 11px;
    margin-top: 5px;
}

.fb-popup {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 14px 18px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: all .18s ease;
    white-space: nowrap;
    z-index: 61;
}

    .fb-item:hover .fb-popup {
        opacity: 1;
        visibility: visible;
    }

.fb-phone {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand);
    margin: 0 0 2px;
}

.fb-popup p {
    margin: 0 0 2px;
    font-size: 13px;
    color: var(--ink-soft);
}

.fb-popup-img {
    width: 130px;
    height: 130px;
    border-radius: 6px;
    background: var(--paper-2);
}

/* 邮件在线咨询弹窗（保持不变） */
.consult-panel {
    position: absolute;
    right: calc(100% + 12px);
    top: 0;
    width: 320px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 24px;
    display: none;
    z-index: 62;
}

    .consult-panel.is-open {
        display: block;
    }

    .consult-panel h3 {
        font-size: 17px;
        margin-bottom: 4px;
    }

    .consult-panel .consult-sub {
        font-size: 12.5px;
        color: var(--ink-faint);
        margin-bottom: 18px;
    }

/* ---------- 表单 ---------- */
.form-field {
    margin-bottom: 16px;
}

    .form-field label {
        display: block;
        font-size: 13px;
        color: var(--ink-soft);
        margin-bottom: 6px;
    }

    .form-field input, .form-field select, .form-field textarea {
        width: 100%;
        padding: 10px 12px;
        font-size: 14.5px;
        font-family: var(--sans);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        color: var(--ink);
    }

        .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
            outline: none;
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--brand-light);
        }

.form-check {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--ink-soft);
}

    .form-check input {
        width: auto;
        margin-top: 4px;
    }

.form-msg {
    font-size: 14px;
    padding: 12px 14px;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.form-msg--ok {
    background: #E6F1E6;
    color: #2E7D32;
}

.form-msg--err {
    background: #FDECEC;
    color: #C62828;
}

/* ---------- 面包屑 / 页头横幅 ---------- */
.breadcrumb {
    font-size: 13px;
    color: var(--ink-faint);
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

    .breadcrumb a {
        color: var(--ink-faint);
    }

        .breadcrumb a:hover {
            color: var(--brand);
        }

    .breadcrumb span {
        margin: 0 8px;
        color: var(--line);
    }

.page-hero {
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    padding: 48px 0;
}

    .page-hero h1 {
        margin-bottom: 8px;
    }

    .page-hero .lead {
        color: var(--ink-soft);
        max-width: 680px;
    }

/* ---------- 联系我们：Banner 背景 + 联系方式卡片 + 留言表单 ---------- */
.page-hero--contact {
    position: relative;
    background: url('/images/banner_contact_us.jpg') center / cover no-repeat;
    height: 500px;
    display: flex;
    align-items: center;
    padding: 0;
}

    /* 整幅压暗渐变：白字在浅色图上可读 */
    .page-hero--contact::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(11, 22, 48, .78) 0%, rgba(11, 22, 48, .5) 50%, rgba(11, 22, 48, .38) 100%);
        pointer-events: none;
    }

    .page-hero--contact .container {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    .page-hero--contact h1 {
        color: #fff;
    }

    .page-hero--contact .lead {
        color: rgba(255, 255, 255, .82);
    }

/* ---------- 通用 Banner（子页面统一，顶部压暗渐变供透明页头白字） ---------- */
.page-hero--banner {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    padding: 0;
}

    .page-hero--banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(11, 22, 48, .78) 0%, rgba(11, 22, 48, .5) 50%, rgba(11, 22, 48, .38) 100%);
        pointer-events: none;
    }

    .page-hero--banner .container {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    .page-hero--banner h1 {
        color: #fff;
    }

    .page-hero--banner .lead {
        color: rgba(255, 255, 255, .82);
    }

/* ---------- 关于我们：统计 + 发展历程 ---------- */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

    .hero-stats .stat {
        text-align: center;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 20px 12px;
        box-shadow: var(--shadow);
        transition: transform .16s ease, box-shadow .16s ease;
    }

    .hero-stats .stat:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

    .hero-stats .stat .num {
        font-size: 30px;
        font-weight: 800;
        color: var(--brand);
        line-height: 1.1;
        font-variant-numeric: tabular-nums;
    }

        .hero-stats .stat .num em {
            font-style: normal;
            font-size: 16px;
        }

    .hero-stats .stat .lbl {
        font-size: 12px;
        color: var(--ink-faint);
        margin-top: 5px;
    }

.timeline {
    position: relative;
    margin-top: 32px;
    padding: 20px 0;
}

    /* 中间竖向时间轴线（蓝→橙渐变） */
    .timeline::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 3px;
        transform: translateX(-50%);
        background: linear-gradient(to bottom, #2c5aa0, #f5a623);
        border-radius: 2px;
    }

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 24px;
    margin-bottom: 22px;
}

    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: right;
    }

    .timeline-item:nth-child(even) {
        left: 50%;
        text-align: left;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    /* 节点圆点（橙色） */
    .timeline-dot {
        position: absolute;
        top: 30px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #f5a623;
        border: 4px solid #fff;
        box-shadow: 0 0 0 3px #2c5aa0;
        z-index: 2;
    }

    .timeline-item:nth-child(odd) .timeline-dot {
        right: -12px;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: -12px;
    }

.timeline-year {
    display: inline-block;
    font-size: 34px;
    font-weight: 800;
    color: #2F6BFF;
    line-height: 1.1;
    margin-bottom: 12px;
}

    /* 年度下方渐变装饰条 */
    .timeline-year::after {
        content: "";
        display: block;
        height: 4px;
        margin-top: 5px;
        border-radius: 2px;
        background: linear-gradient(90deg, #2c5aa0, #f5a623);
    }

.timeline-card {
    display: inline-block;
    text-align: left;
    max-width: 420px;
    width: 100%;
    background: #fff;
    border: 3px solid #3f4650;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .16s ease, box-shadow .16s ease;
}

    .timeline-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

.timeline-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.timeline-content {
    padding: 16px 20px;
}

.timeline-content h4 {
    font-size: 16px;
    margin: 0 0 6px;
    color: var(--ink);
}

.timeline-content p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin: 0;
}

/* 图片查看大图（lightbox） */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, .82);
    display: grid;
    place-items: center;
    cursor: zoom-out;
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

    .lightbox-inner img {
        max-width: 90vw;
        max-height: 85vh;
        object-fit: contain;
        border-radius: 8px;
        display: block;
        box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
    }

.lightbox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
}

/* 移动端：改回单边时间轴（线靠左，卡片靠右） */
@media (max-width: 767px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        text-align: left;
        padding: 0 0 0 44px;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 11px;
        right: auto;
    }

    .timeline-card {
        max-width: 100%;
    }
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 16px 18px;
    box-shadow: var(--shadow);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

    .contact-card:hover {
        transform: translateY(-2px);
        border-color: #C9D6F5;
        box-shadow: var(--shadow-lg);
    }

    .contact-card > i {
        width: 40px;
        height: 40px;
        flex: none;
        display: grid;
        place-items: center;
        font-size: 18px;
        color: #fff;
        background: var(--brand-grad);
        border-radius: 50%;
    }

.cc-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cc-label {
    font-size: 12px;
    color: var(--ink-faint);
}

.cc-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    word-break: break-all;
}

.contact-form {
    margin-top: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 24px;
    box-shadow: var(--shadow);
}

    .contact-form .form-field label {
        font-weight: 600;
        color: var(--ink);
    }

.field-err {
    color: var(--seal);
    font-size: 12px;
}

.captcha-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

    .captcha-row input {
        flex: 1;
        min-width: 0;
    }

.captcha-img {
    width: 120px;
    height: 40px;
    flex: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    background: var(--paper-2);
}

/* ---------- 列表页 ---------- */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.case-search {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

    .case-search input {
        flex: 1;
        min-width: 0;
        padding: 10px 14px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        font-size: 14px;
        color: var(--ink);
        font-family: var(--sans);
        background: #fff;
    }

    .case-search input:focus {
        outline: none;
        border-color: var(--brand);
        box-shadow: 0 0 0 3px var(--brand-light);
    }

.filter-chip {
    padding: 7px 16px;
    font-size: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    color: var(--ink-soft);
    background: #fff;
    cursor: pointer;
}

    .filter-chip:hover {
        border-color: var(--brand);
        color: var(--brand);
    }

    .filter-chip.is-active {
        background: var(--brand);
        border-color: var(--brand);
        color: #fff;
    }

/* ---------- 文章正文 ---------- */
.article-body {
    font-size: 16.5px;
    line-height: 1.95;
    color: #333;
}

    .article-body h2 {
        font-size: 23px;
        margin: 1.6em 0 .6em;
    }

    .article-body h3 {
        font-size: 18px;
        margin: 1.4em 0 .5em;
    }

    .article-body blockquote {
        border-left: 3px solid var(--brand);
        margin: 1.4em 0;
        padding: .4em 1.2em;
        background: var(--paper-2);
        color: var(--ink-soft);
    }

.article-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 12.5px;
    color: var(--ink-faint);
    margin-bottom: 20px;
}

.article-cover {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin-bottom: 24px;
}

/* ---------- FAQ ---------- */
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    background: #fff;
    border: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--sans);
}

    .faq-q::after {
        content: "+";
        font-size: 20px;
        color: var(--brand);
        font-weight: 400;
    }

.faq-item.is-open .faq-q::after {
    content: "−";
}

.faq-a {
    display: none;
    padding: 0 20px 16px;
    font-size: 14px;
    color: var(--ink-soft);
}

.faq-item.is-open .faq-a {
    display: block;
}

/* ---------- 分页 ---------- */
.pager {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}

    .pager a, .pager span {
        min-width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        font-size: 14px;
        color: var(--ink-soft);
        background: #fff;
    }

    .pager .is-current {
        background: var(--brand);
        border-color: var(--brand);
        color: #fff;
    }

    .pager a:hover {
        border-color: var(--brand);
        color: var(--brand);
    }

/* ---------- CTA 带 ---------- */
.cta-band {
    background: var(--brand-grad);
    border-radius: 10px;
    padding: 44px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

    .cta-band h2 {
        color: #fff;
        margin-bottom: 6px;
    }

    .cta-band p {
        color: rgba(255,255,255,.85);
        margin: 0;
    }

    .cta-band .cta-tel {
        font-size: 24px;
        font-weight: 800;
        color: #fff;
    }

/* ---------- 响应式 ---------- */
@media (max-width: 1199px) {
    .grid--4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .grid--3, .grid--2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .honor-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .strength .strength-grid {
        grid-template-columns: 1fr;
    }

    .header-search {
        display: none;
    }

    .mainnav {
        position: relative;
    }

    .nav {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 12px 24px;
        gap: 0;
    }

        .nav.is-open {
            display: flex;
        }

        .nav > li > a {
            padding: 12px 0;
            border-bottom: 1px solid var(--line);
            border-radius: 0;
        }

        .nav .dropdown {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            border: 0;
            padding: 0 0 0 16px;
        }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .banner {
        min-height: 520px;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 48px 0;
    }

    .grid--4, .grid--3, .grid--2 {
        grid-template-columns: 1fr;
    }

    .honor-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .strength-stats {
        grid-template-columns: 1fr;
    }

    .consult-panel {
        width: 280px;
        right: calc(100% + 10px);
    }

    .float-bar {
        right: 6px;
    }

    .fb-item {
        width: 46px;
        height: 56px;
    }

    .cta-band {
        padding: 32px 24px;
    }

    .banner {
        min-height: 480px;
    }

    .banner-strip {
        height: 72px;
    }

    .banner-strip > .container {
        justify-content: flex-start;
        overflow-x: auto;
        gap: 26px;
    }

    .banner-strip > .container::-webkit-scrollbar {
        display: none;
    }

    .strip-item {
        font-size: 14px;
    }

    .banner > .container {
        padding-bottom: 72px;
    }

    .partner-item {
        width: 150px;
    }

    .partner-item__img {
        height: 90px;
        padding: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .partner-track {
        animation: none;
    }
}

/* ---------- 页头登录 + 搜索（链接样式） ---------- */
.header-auth { display: flex; align-items: center; gap: 2px; flex: none; }
.header-auth .auth-login {
    font-size: 15px; color: var(--ink); white-space: nowrap; padding: 8px 10px;
}
.header-auth .auth-login { display: inline-flex; align-items: center; gap: 6px; transition: opacity .2s ease; }
.header-auth .auth-login i { font-size: 22px; color: var(--brand); }
.header-auth .auth-login:hover { opacity: 0.7; }

/* 页头搜索：32x32 图标，hover 展开 200px 搜索框（输入框左 + 搜索按钮右，回车跳搜索页） */
.header-tools { display: flex; align-items: center; gap: 10px; flex: none; }
.header-search { position: relative; display: flex; align-items: center; flex: none; }
.search-toggle { display: inline-flex; align-items: center; gap: 5px; height: 38px; padding: 0 10px; border: 0; background: none; font-size: 15px; font-family: var(--sans); color: var(--ink); cursor: pointer; border-radius: var(--radius); transition: opacity .2s ease; white-space: nowrap; flex-shrink: 0; }
.search-toggle i { font-size: 22px; }
.search-toggle:hover { opacity: 0.7; }
.search-pop { position: absolute; top: calc(100% + 6px); right: 0; width: 200px; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow-lg); padding: 4px; opacity: 0; visibility: hidden; transition: opacity .15s ease, visibility .15s ease; z-index: 61; }
.header-search:hover .search-pop { opacity: 1; visibility: visible; }
.search-pop form { display: flex; width: 100%; }
.search-pop input { flex: 1; min-width: 0; border: 0; padding: 7px 10px; font-size: 14px; color: var(--ink); background: transparent; font-family: var(--sans); }
.search-pop input:focus { outline: none; }
.search-pop button { width: 34px; height: 32px; flex: none; display: grid; place-items: center; border: 0; background: var(--brand); color: #fff; border-radius: 6px; cursor: pointer; font-size: 14px; }
.search-pop button:hover { background: var(--brand-deep); }

/* ---------- Banner 下查询区 ---------- */
.search-section { position: relative; z-index: 5; height: 88px; display: flex; align-items: center; justify-content: center; background: var(--paper); }
.search-section::before { content: ""; position: absolute; inset: 0; background: url('/images/bk_search.jpg') center / cover no-repeat; opacity: 0.5; }
.search-section .container { position: relative; z-index: 1; width: 100%; display: flex; justify-content: center; }
.search-bar { max-width: 860px;width:100%; margin: 0 auto; display: flex; align-items: center; background: #fff; border-radius: 48px; box-shadow: var(--shadow-lg); padding: 6px 6px 6px 26px; }
.search-bar input { flex: 1; border: 0; padding: 13px 0; font-size: 16px; color: var(--ink); background: transparent; font-family: var(--sans); }
.search-bar input:focus { outline: none; }
.search-bar input::placeholder { color: var(--ink-faint); }
.search-bar button { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; border: 0; background: var(--brand); color: #fff; border-radius: 40px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: var(--sans); }
.search-bar button:hover { background: var(--brand-deep); }
@media (max-width: 767px) {
    .search-bar { border-radius: 40px; padding-left: 20px; }
    .search-bar button { padding: 12px 20px; }
}

/* ---------- 搜索结果卡片：整行横排，左缩略图右文字 ---------- */
.search-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.search-card {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 14px 18px;
}
.search-card__thumb {
    width: 148px;
    height: 92px;
    flex: none;
    border-radius: 4px;
    overflow: hidden;
    background: var(--paper-2);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
}
    .search-card__thumb img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .search-card__thumb--icon img { padding: 14px; }
    .search-card__thumb--icon i { font-size: 30px; color: var(--brand); }
.search-card__body { flex: 1; min-width: 0; }
    .search-card__body h3 { font-size: 16px; margin: 0 0 4px; }
    .search-card__body p {
        margin: 0;
        font-size: 13px;
        color: var(--ink-soft);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
@media (max-width: 767px) {
    .search-card__thumb { width: 104px; height: 72px; }
    .search-card { gap: 12px; padding: 12px 14px; }
}

/* ---------- 服务领域分区 ---------- */
.area { padding: 64px 0; border-bottom: 1px solid var(--line); }
.area--trademark { background: linear-gradient(135deg, #E9F1FF 0%, #F6F9FF 100%); }
.area--patent { background: linear-gradient(135deg, #EFECFF 0%, #F8F6FF 100%); }
.area--consulting { background: url('/images/content_bk.jpg') center / cover no-repeat; }
.area-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-bottom: 36px; }
.area-head h2 { font-size: 30px; margin-bottom: 8px; }
.area-tagline { color: var(--brand); font-weight: 600; font-size: 17px; margin: 0; }
.area-desc { color: var(--ink-soft); font-size: 15px; margin: 0; }
.area-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 8px;
}

.svc-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 18px 20px;
    box-shadow: var(--shadow);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

    .svc-item:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
        border-color: #C9D6F5;
    }

.svc-icon {
    width: 44px;
    height: 44px;
    flex: none;
    display: grid;
    place-items: center;
    font-size: 20px;
    color: #fff;
    background: var(--brand-grad);
    border-radius: 10px;
}

.svc-body h3 {
    font-size: 16px;
    margin: 0 0 4px;
    color: var(--ink);
}

.svc-body p {
    font-size: 13px;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.6;
}
.area-honors { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.area-honor { padding: 7px 14px; font-size: 13px; color: var(--brand); background: var(--brand-light); border-radius: 4px; font-weight: 600; }
@media (max-width: 767px) {
    .area-head { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- 语种下拉 ---------- */
.lang { position: relative; flex: none; }
.lang-toggle { display: inline-flex; align-items: center; justify-content: center; gap: 6px; height: 38px; padding: 0 10px; border: 0; background: none; color: var(--ink-soft); font-size: 14px; cursor: pointer; border-radius: var(--radius); white-space: nowrap; flex-shrink: 0; }
.lang-toggle i { font-size: 24px; }
.lang-toggle:hover { color: var(--brand); background: var(--paper-2); }
.lang-dropdown { position: absolute; top: 100%; right: 0; min-width: 168px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .18s ease; z-index: 60; }
.lang:hover .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown a { display: block; padding: 9px 20px; font-size: 14px; color: var(--ink-soft); }
.lang-dropdown a:hover { color: var(--brand); background: var(--paper-2); }
.lang-dropdown a.is-active { color: var(--brand); font-weight: 600; }

/* ---------- 后台富文本输出的正文（关于我们等） ---------- */
.rich-content { line-height: 1.9; color: var(--ink-soft, #4a5568); }
.rich-content h2 { margin: 28px 0 12px; font-size: 22px; }
.rich-content h2:first-child { margin-top: 0; }
.rich-content h3 { margin: 22px 0 10px; font-size: 18px; }
.rich-content p { margin: 0 0 14px; }
.rich-content img { max-width: 100%; height: auto; border-radius: 8px; }
.rich-content ul, .rich-content ol { padding-left: 22px; margin: 0 0 14px; }
.rich-content li { margin-bottom: 6px; }
.rich-content table { width: 100%; border-collapse: collapse; margin: 0 0 16px; }
.rich-content th, .rich-content td { border: 1px solid var(--line, #e2e8f0); padding: 8px 12px; text-align: left; }
.rich-content blockquote { margin: 0 0 14px; padding: 10px 16px; border-left: 3px solid var(--brand, #2F6BFF); background: #f7f9fd; }

/* ---------- 创始人说 ---------- */
.founder-profile {
    display: flex;
    gap: 56px;
    align-items: center;
}

.founder-photo {
    flex: 0 0 320px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    background: var(--paper-2);
}

    .founder-photo img {
        display: block;
        width: 100%;
        height: auto;
    }

.founder-info h2 {
    font-family: var(--serif);
    font-size: 30px;
    margin: 10px 0 4px;
    letter-spacing: 2px;
}

.founder-name {
    font-size: 18px;
    color: var(--ink);
    margin: 6px 0 16px;
}

    .founder-name em {
        font-style: normal;
        font-size: 13px;
        color: var(--seal);
        border: 1px solid rgba(192, 57, 43, .35);
        border-radius: 999px;
        padding: 2px 10px;
        margin-left: 8px;
        vertical-align: 2px;
    }

.founder-intro {
    color: var(--ink-soft);
    line-height: 2;
    max-width: 640px;
}

.founder-chapters {
    margin-top: 8px;
}

.founder-chapter {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 30px 26px 26px;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .founder-chapter:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(26, 26, 27, .06), 0 32px 64px -24px rgba(26, 26, 27, .22);
    }

    /* 右上角淡色衬线字水印 */
    .founder-chapter::after {
        position: absolute;
        top: 8px;
        right: 16px;
        font-family: var(--serif);
        font-size: 64px;
        line-height: 1;
        color: var(--ink);
        opacity: .05;
        pointer-events: none;
    }

    .founder-chapter:nth-child(1)::after { content: "初"; }
    .founder-chapter:nth-child(2)::after { content: "选"; }
    .founder-chapter:nth-child(3)::after { content: "需"; }
    .founder-chapter:nth-child(4)::after { content: "用"; }
    .founder-chapter:nth-child(5)::after { content: "未"; }

/* 渐变图标徽章 */
.chapter-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

    .founder-chapter:nth-child(1) .chapter-icon { background: linear-gradient(135deg, #ED3A35, #FF7A59); box-shadow: 0 10px 20px -8px rgba(237, 58, 53, .55); }
    .founder-chapter:nth-child(2) .chapter-icon { background: linear-gradient(135deg, #2F6BFF, #6C8BFF); box-shadow: 0 10px 20px -8px rgba(47, 107, 255, .55); }
    .founder-chapter:nth-child(3) .chapter-icon { background: linear-gradient(135deg, #7B5BFA, #A78BFA); box-shadow: 0 10px 20px -8px rgba(123, 91, 250, .55); }
    .founder-chapter:nth-child(4) .chapter-icon { background: linear-gradient(135deg, #0EA47A, #3EC9A7); box-shadow: 0 10px 20px -8px rgba(14, 164, 122, .55); }
    .founder-chapter:nth-child(5) .chapter-icon { background: linear-gradient(135deg, #F59E0B, #FFB84D); box-shadow: 0 10px 20px -8px rgba(245, 158, 11, .55); }

.founder-chapter h4 {
    font-family: var(--serif);
    font-size: 21px;
    margin: 18px 0 10px;
}

.founder-chapter p {
    color: var(--ink-soft);
    line-height: 1.9;
    margin: 0;
}

.founder-quotes {
    list-style: none;
    counter-reset: fq;
    margin: 0;
    padding: 0;
}

    .founder-quotes li {
        counter-increment: fq;
        position: relative;
        padding: 18px 22px 18px 66px;
        margin-bottom: 14px;
        border-radius: 12px;
        border: 1px solid var(--line);
        color: var(--ink-soft);
        line-height: 1.9;
        transition: transform .16s ease, box-shadow .16s ease;
    }

        .founder-quotes li:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 22px -10px rgba(26, 26, 27, .18);
        }

        .founder-quotes li::before {
            content: counter(fq);
            position: absolute;
            left: 20px;
            top: 20px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            color: #fff;
            font-family: var(--serif);
            font-size: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    /* 十条逐条不同色的浅色渐变 + 同色序号徽章 */
    .founder-quotes li:nth-child(1)  { background: linear-gradient(135deg, #EBF2FF, #F7FAFF); border-color: #D8E4FF; }
    .founder-quotes li:nth-child(1)::before  { background: #2F6BFF; }
    .founder-quotes li:nth-child(2)  { background: linear-gradient(135deg, #FDEDEC, #FFF8F6); border-color: #F5D9D6; }
    .founder-quotes li:nth-child(2)::before  { background: #ED3A35; }
    .founder-quotes li:nth-child(3)  { background: linear-gradient(135deg, #F1EBFE, #FAF7FF); border-color: #E4D8FB; }
    .founder-quotes li:nth-child(3)::before  { background: #7B5BFA; }
    .founder-quotes li:nth-child(4)  { background: linear-gradient(135deg, #E5F9F1, #F5FDF9); border-color: #CDEEDF; }
    .founder-quotes li:nth-child(4)::before  { background: #0EA47A; }
    .founder-quotes li:nth-child(5)  { background: linear-gradient(135deg, #FFF3E0, #FFFBF4); border-color: #F8E3C2; }
    .founder-quotes li:nth-child(5)::before  { background: #F59E0B; }
    .founder-quotes li:nth-child(6)  { background: linear-gradient(135deg, #FCEBF4, #FFF7FB); border-color: #F5D3E4; }
    .founder-quotes li:nth-child(6)::before  { background: #D63384; }
    .founder-quotes li:nth-child(7)  { background: linear-gradient(135deg, #E8ECFF, #F7F8FF); border-color: #D3D9FB; }
    .founder-quotes li:nth-child(7)::before  { background: #3B4BE0; }
    .founder-quotes li:nth-child(8)  { background: linear-gradient(135deg, #E0F7FA, #F4FDFE); border-color: #C4EAF0; }
    .founder-quotes li:nth-child(8)::before  { background: #00ACC1; }
    .founder-quotes li:nth-child(9)  { background: linear-gradient(135deg, #FBF6DE, #FEFCF0); border-color: #F0E7C0; }
    .founder-quotes li:nth-child(9)::before  { background: #C9A227; }
    .founder-quotes li:nth-child(10) { background: linear-gradient(135deg, #EDF2F7, #F9FBFD); border-color: #D5DDE5; }
    .founder-quotes li:nth-child(10)::before { background: #4A5568; }

/* 服务理念收尾区 */
.service-idea-seal {
    width: 260px;
    margin: 8px auto 40px;
    background: #fff;
    border-radius: 18px;
    padding: 10px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

    .service-idea-seal img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 14px;
    }

.founder-ideas {
    margin-top: 8px;
}

.idea-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 22px 24px;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .idea-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(26, 26, 27, .06), 0 32px 64px -24px rgba(26, 26, 27, .22);
    }

.idea-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

    .idea-item:nth-child(1) .idea-icon { background: linear-gradient(135deg, #ED3A35, #FF7A59); box-shadow: 0 10px 20px -8px rgba(237, 58, 53, .55); }
    .idea-item:nth-child(2) .idea-icon { background: linear-gradient(135deg, #2F6BFF, #6C8BFF); box-shadow: 0 10px 20px -8px rgba(47, 107, 255, .55); }
    .idea-item:nth-child(3) .idea-icon { background: linear-gradient(135deg, #F59E0B, #FFB84D); box-shadow: 0 10px 20px -8px rgba(245, 158, 11, .55); }
    .idea-item:nth-child(4) .idea-icon { background: linear-gradient(135deg, #0EA47A, #3EC9A7); box-shadow: 0 10px 20px -8px rgba(14, 164, 122, .55); }

.idea-item h4 {
    font-family: var(--serif);
    font-size: 20px;
    margin: 16px 0 10px;
}

.idea-item p {
    color: var(--ink-soft);
    line-height: 1.9;
    margin: 0;
}

@media (max-width: 767px) {
    .founder-profile {
        flex-direction: column;
        gap: 28px;
        align-items: flex-start;
    }

        .founder-photo {
            flex: none;
            width: 100%;
            max-width: 320px;
            margin: 0 auto;
        }
}
