/*
Theme Name: Topkat
Theme URI: https://topkat.cn
Author: Topkat Environmental Technology
Description: 拓凯环保科技 - 柴油机尾气治理与高温烟气净化 - 轻量级B2B工业风格主题
Version: 1.0.0
Text Domain: topkat
Tags: b2b, industrial, environmental
*/

/* ==================== 全局样式 ==================== */
:root {
    --topkat-dark: #0B3B4C;
    --topkat-green: #1E8E4E;
    --topkat-light: #f5f7f8;
    --topkat-gray: #555f66;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: "Microsoft YaHei", "PingFang SC", -apple-system, sans-serif;
    color: #333;
    line-height: 1.7;
    background: #fff;
}

a { color: var(--topkat-green); text-decoration: none; }
a:hover { color: var(--topkat-dark); }

img { max-width: 100%; height: auto; }

.container { max-width: 100%; margin: 0 auto; padding: 0 40px; }

/* ==================== 顶部导航（Caterpillar 风格） ==================== */
.topkat-header {
    background: var(--topkat-dark);
    color: #fff;
    padding: 0;                 /* 顶部不占额外留白 */
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.topkat-header .container {
    display: block;            /* 双行布局：第一行 header-top + 第二行 nav */
}

/* 单行布局：logo + 搜索框 + 导航 + 语言切换 */
.header-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}

.topkat-logo {
    display: flex;
    align-items: center;
    color: #fff;
    flex-shrink: 0;
}
.topkat-logo img {
    height: 180px;             /* logo 放大 3 倍 */
    width: auto;
    max-width: 400px;
    object-fit: contain;
    background: transparent !important;
    display: block;
}
.topkat-logo .brand-en { font-size: 12px; opacity: 0.7; letter-spacing: 1px; }

/* 搜索框（logo 与导航之间弹性居中） */
.topkat-search {
    flex: 1;
    max-width: 460px;
    min-width: 200px;
    display: flex;
    align-items: center;
    margin: 0 12px;
}
.topkat-search-input {
    flex: 1;
    height: 34px;
    padding: 0 14px;
    font-size: 13px;
    color: #2b3a40;
    background: #fff;
    border: 1px solid #cfd8dc;
    border-right: none;
    border-radius: 18px 0 0 18px;
    outline: none;
    transition: border-color .2s;
}
.topkat-search-input:focus { border-color: var(--topkat-green); }
.topkat-search-btn {
    height: 34px;
    width: 44px;
    background: var(--topkat-green);
    color: #fff;
    border: 1px solid var(--topkat-green);
    border-left: none;
    border-radius: 0 18px 18px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.topkat-search-btn:hover { background: #177a3f; border-color: #177a3f; }

/* 主导航（搜索框右侧）+ 语言切换 */
.topkat-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
}
.topkat-nav a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: all .2s;
    white-space: nowrap;
}
.topkat-nav a:hover,
.topkat-nav .current-menu-item a {
    color: #4ec97f;
    border-bottom-color: var(--topkat-green);
}

/* 语言切换器（紧跟在『联系我们』右边） */
.topkat-nav .language-switcher {
    margin-left: 12px;
    padding-left: 14px;
    border-left: 1px solid rgba(255,255,255,.25);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.language-switcher a,
.language-switcher span.lang-sep {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: color .2s;
}
.language-switcher a:hover,
.language-switcher a.lang-current {
    color: #fff;
    font-weight: 600;
}
.language-switcher a.lang-current {
    color: var(--topkat-green);
}
.language-switcher .lang-sep { color: rgba(255,255,255,.4); }

/* 首页隐藏顶部左上角 logo，改到 Hero 区正中 */
/* 首页左上角 logo 已改为始终显示，删除隐藏规则 */

/* ==================== Hero 主横幅 ==================== */
.topkat-hero {
    background: linear-gradient(135deg, var(--topkat-dark) 0%, #14556e 100%);
    color: #fff;
    padding: 70px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.topkat-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(30,142,78,.3) 0%, transparent 70%);
}
.topkat-hero .hero-logo {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
}
.topkat-hero .hero-logo img {
    height: 78px;
    width: auto;
    max-width: 260px;
    display: inline-block;
    background: transparent;
}
.topkat-hero h1 {
    font-size: 46px;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 2px;
}
.topkat-hero .hero-intro {
    max-width: 920px;
    margin: 0 auto 44px;
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,.88);
    position: relative;
    text-align: justify;
    text-align-last: center;
}
.topkat-hero .meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
}
.topkat-hero .meta div {
    background: rgba(255,255,255,.1);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,.2);
}

/* ==================== 数据条（全宽占满屏幕） ==================== */
.topkat-stats {
    background: var(--topkat-green);
    color: #fff;
    padding: 22px 0;            /* 高度也略减，更紧凑 */
}
.topkat-stats .container {
    max-width: 100%;            /* 覆盖全局 .container 的 1200px 限制，让数据条占满屏幕 */
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    text-align: center;
}
.topkat-stats .stat-num {
    font-size: 32px;
    font-weight: 700;
}
.topkat-stats .stat-label {
    font-size: 13px;
    opacity: 0.85;
    margin-top: 4px;
}

/* ==================== 通用板块 ==================== */
.topkat-section {
    padding: 70px 0;
}
.topkat-section:nth-child(even) { background: var(--topkat-light); }

.topkat-section h2 {
    text-align: center;
    color: var(--topkat-dark);
    font-size: 32px;
    margin-bottom: 12px;
}
.topkat-section .section-sub {
    text-align: center;
    color: var(--topkat-gray);
    font-size: 16px;
    margin-bottom: 50px;
}

/* ==================== 主打产品区块 ==================== */
.featured-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.featured-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    transition: transform .3s;
}
.featured-card:hover { transform: translateY(-6px); }
.featured-card .img-box {
    height: 200px;
    background: var(--topkat-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.featured-card .img-box img { max-height: 100%; }
.featured-card .body {
    padding: 24px;
}
.featured-card h3 {
    color: var(--topkat-dark);
    font-size: 20px;
    margin-bottom: 12px;
}
.featured-card p {
    color: var(--topkat-gray);
    font-size: 14px;
    line-height: 1.7;
}
.featured-card .btn {
    display: inline-block;
    margin-top: 16px;
    color: var(--topkat-green);
    font-weight: 600;
    border-bottom: 2px solid var(--topkat-green);
}

/* ==================== 产品分类 (三大类) ==================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.category-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    border-top: 4px solid var(--topkat-green);
    text-align: center;
}
.category-card .icon {
    width: 80px;
    height: 80px;
    background: var(--topkat-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--topkat-green);
    font-size: 36px;
}
.category-card h3 {
    color: var(--topkat-dark);
    font-size: 22px;
    margin-bottom: 16px;
}
.category-card p {
    color: var(--topkat-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.category-card .count {
    color: var(--topkat-green);
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 8px;
}

/* ==================== 公司优势 ==================== */
.advantages {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.advantage {
    text-align: center;
    padding: 34px 22px;
    background: var(--topkat-green);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(30,142,78,.25);
    color: #fff;
}
.advantage .num {
    width: 56px;
    height: 56px;
    line-height: 56px;
    margin: 0 auto 16px;
    background: rgba(255,255,255,.18);
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
}
.advantage h4 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 12px;
}
.advantage p {
    color: rgba(255,255,255,.92);
    font-size: 13.5px;
    line-height: 1.75;
    text-align: left;
}

/* ==================== 产品列表 (产品中心页) ==================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    transition: all .3s;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.product-card .img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--topkat-light);
}
.product-card .body {
    padding: 18px;
}
.product-card h4 {
    font-size: 15px;
    color: var(--topkat-dark);
    margin-bottom: 8px;
    line-height: 1.5;
    min-height: 45px;
}
.product-card .cat-tag {
    display: inline-block;
    background: var(--topkat-light);
    color: var(--topkat-green);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    margin-bottom: 8px;
}

/* ==================== 首页底部 CTA ==================== */
.topkat-cta {
    background: linear-gradient(135deg, var(--topkat-dark) 0%, #14556e 100%);
    color: #fff;
    padding: 90px 0;
    text-align: center;
    position: relative;
}
.topkat-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(30,142,78,.25) 0%, transparent 70%);
}
.topkat-cta .container { position: relative; }
.topkat-cta h2 {
    font-size: 42px;
    margin-bottom: 32px;
    letter-spacing: 2px;
    color: #fff;
}
.topkat-cta .btn-large {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 16px 56px;
    border-radius: 9999px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #fff;
    transition: all .3s;
}
.topkat-cta .btn-large:hover {
    background: #fff;
    color: var(--topkat-dark);
}

/* ==================== 页脚 ==================== */
.topkat-footer {
    background: var(--topkat-dark);
    color: #cdd5da;
    padding: 50px 0 20px;
}
.topkat-footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.topkat-footer h5 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 16px;
}
.topkat-footer ul { list-style: none; }
.topkat-footer li {
    padding: 4px 0;
    font-size: 14px;
}
.topkat-footer a { color: #cdd5da; }
.topkat-footer a:hover { color: #4ec97f; }
.topkat-footer .copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 13px;
}

/* ==================== 应用场景页：左右两栏 ==================== */
.applications-section { background: var(--topkat-light); }
.applications-section .section-sub {
    text-align: center;
    margin-bottom: 50px;
}
.scenario-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.scenario-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    align-items: stretch;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(11, 59, 76, 0.06);
    transition: transform .3s, box-shadow .3s;
}
.scenario-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11, 59, 76, 0.12);
}
.scenario-row.reverse .scenario-text { order: 2; }
.scenario-row.reverse .scenario-img  { order: 1; }
.scenario-row .scenario-text {
    padding: 50px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.scenario-row .scenario-tag {
    display: inline-block;
    background: rgba(30, 142, 78, 0.1);
    color: var(--topkat-green);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    align-self: flex-start;
    font-weight: 600;
}
.scenario-row .scenario-text h3 {
    color: var(--topkat-dark);
    font-size: 24px;
    margin: 0 0 14px;
    line-height: 1.4;
    font-weight: 700;
}
.scenario-row .scenario-text p {
    color: var(--topkat-gray);
    line-height: 1.85;
    font-size: 15px;
    margin: 0;
}
.scenario-row .scenario-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 340px;
}
.applications-summary {
    text-align: center;
    margin-top: 60px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #f7faf9 0%, #eef5f1 100%);
    border-radius: 16px;
}
.applications-summary p {
    max-width: 800px;
    margin: 0 auto 24px;
    color: var(--topkat-gray);
    font-size: 16px;
    line-height: 1.85;
}
.applications-summary .btn-large {
    background: var(--topkat-green);
    color: #fff;
    padding: 16px 44px;
    border-radius: 40px;
    border: 2px solid var(--topkat-green);
    font-size: 17px;
    font-weight: 600;
    display: inline-block;
    transition: all .3s;
}
.applications-summary .btn-large:hover {
    background: transparent;
    color: var(--topkat-green);
}

/* ==================== 文章详情 ==================== */
.topkat-content {
    padding: 50px 0;
}
.topkat-content h1 {
    color: var(--topkat-dark);
    font-size: 32px;
    margin-bottom: 20px;
}
.topkat-content .featured-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}
.topkat-content .product-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
}
.topkat-content .product-gallery img {
    width: 100%;
    border-radius: 4px;
}
.topkat-content p, .topkat-content li {
    color: #444;
    line-height: 1.85;
    margin-bottom: 14px;
}

/* ==================== 产品详情页轮播 ==================== */
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}
.detail-gallery-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
    position: sticky;
    top: 100px;
}
.product-carousel { position: relative; }
.carousel-main {
    background: var(--topkat-light);
    border-radius: 10px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 16px;
}
.carousel-main .carousel-slide {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: none;
    transition: opacity .3s;
}
.carousel-main .carousel-slide.active { display: block; }
.carousel-main.no-image span { color: #999; }
.carousel-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.carousel-thumbs .thumb {
    width: 72px;
    height: 72px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: var(--topkat-light);
    padding: 0;
    flex-shrink: 0;
}
.carousel-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }
.carousel-thumbs .thumb.active { border-color: var(--topkat-green); }

.product-intro { margin-bottom: 40px; }
.product-intro h3,
.product-specs h3 {
    color: var(--topkat-dark);
    font-size: 22px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--topkat-green);
    display: inline-block;
}
.product-intro p {
    color: #444;
    line-height: 1.9;
    margin-bottom: 14px;
    font-size: 15px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.spec-table tr:nth-child(odd) { background: #f8fafb; }
.spec-table tr:nth-child(even) { background: #fff; }
.spec-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #eef2f4;
    color: #444;
    width: 25%;
}
.spec-table td:nth-child(odd) {
    color: var(--topkat-dark);
    font-weight: 600;
    background: rgba(11,59,76,.04);
}
.spec-table tr:last-child td { border-bottom: none; }

/* ==================== 产品详情页 ==================== */
.breadcrumb {
    font-size: 14px;
    color: #7a8a92;
    margin-bottom: 18px;
}
.breadcrumb a { color: var(--topkat-green); }
.breadcrumb span { margin: 0 6px; color: #b8c4c9; }
.entry-title {
    color: var(--topkat-dark);
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 12px;
}
.entry-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.entry-meta .prod-num {
    font-size: 13px;
    color: #7a8a92;
    background: #f0f4f5;
    padding: 5px 12px;
    border-radius: 20px;
}
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 36px;
    align-items: start;
}
.detail-gallery .featured-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0;
    border: 1px solid #e8edef;
}
.detail-actions {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.btn-alt {
    background: transparent;
    color: var(--topkat-green);
    border: 2px solid var(--topkat-green);
}
.btn-alt:hover { background: var(--topkat-green); color: #fff; }

/* ==================== 产品详情：基础信息卡 ==================== */
.product-info-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: linear-gradient(135deg, #f7faf9 0%, #eef5f1 100%);
    border: 1px solid #d8e8df;
    border-radius: 10px;
    margin: 22px 0 14px;
    overflow: hidden;
}
.product-info-bar .info-item {
    padding: 16px 20px;
    text-align: center;
    border-right: 1px solid #d8e8df;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.product-info-bar .info-item:last-child {
    border-right: none;
}
.product-info-bar .info-label {
    font-size: 12px;
    color: #6e7c83;
    letter-spacing: 1px;
}
.product-info-bar .info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--topkat-dark);
    word-break: break-all;
}

.product-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 0 0 22px;
}
.product-keywords .kw-label {
    font-size: 14px;
    color: #6e7c83;
    margin-right: 4px;
}
.product-keywords .kw-tag {
    background: #fff;
    color: var(--topkat-dark);
    border: 1px solid #d8e8df;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 13px;
}

/* ==================== 产品详情：分类介绍卡片 ==================== */
.detail-sections {
    margin-top: 50px;
}
.sections-title {
    font-size: 24px;
    color: var(--topkat-dark);
    margin-bottom: 24px;
    padding-left: 14px;
    border-left: 4px solid var(--topkat-green);
    line-height: 1.2;
}
.section-card {
    background: #fff;
    border: 1px solid #e8edef;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
}
.section-card:hover {
    box-shadow: 0 6px 24px rgba(11, 59, 76, 0.08);
    transform: translateY(-2px);
}
/* 第十一轮：序号内联到标题（1、工作原理），不再用独立 icon 圆 */
.section-title {
    font-size: 17px;
    color: var(--topkat-dark);
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 16px 22px;
    background: linear-gradient(90deg, #f7faf9 0%, #ffffff 100%);
    border-bottom: 1px solid #e8edef;
}
.section-body {
    padding: 22px 26px;
    line-height: 1.85;
    color: #38474d;
    font-size: 15px;
}
.section-body p {
    margin: 0 0 12px;
}
.section-body p:last-child {
    margin-bottom: 0;
}
/* 第十一轮：列表用标准 decimal 编号（1,2,3,4 顺序） */
.section-list {
    margin: 6px 0 12px;
    padding-left: 28px;
    list-style: decimal;
}
.section-list li {
    padding-left: 4px;
    margin-bottom: 8px;
    line-height: 1.85;
}
.section-list li::before {
    content: none;
}

@media (max-width: 900px) {
    .product-info-bar { grid-template-columns: repeat(2, 1fr); }
    .product-info-bar .info-item:nth-child(2) { border-right: none; }
    .product-info-bar .info-item:nth-child(1),
    .product-info-bar .info-item:nth-child(2) {
        border-bottom: 1px solid #d8e8df;
    }
}
@media (max-width: 900px) {
    .detail-layout { grid-template-columns: 1fr; }
    .detail-gallery-card { position: static; }
    .carousel-main { height: 260px; }
    .spec-table td { width: auto; display: block; }
    .spec-table tr { display: block; margin-bottom: 10px; }
    .section-title { padding: 12px 16px; font-size: 15px; }
    .section-body { padding: 16px 18px; font-size: 14px; }
    .sections-title { font-size: 20px; }
}

/* ==================== 响应式 ==================== */
@media (max-width: 900px) {
    .topkat-hero { padding: 50px 0 60px; }
    .topkat-hero .hero-logo img { height: 58px; }
    .topkat-cta h2 { font-size: 28px; }
    .topkat-cta .btn-large { padding: 14px 36px; font-size: 16px; }
    .topkat-hero h1 { font-size: 26px; margin-bottom: 16px; }
    .topkat-hero .hero-intro { font-size: 14px; line-height: 1.75; text-align: left; text-align-last: auto; margin-bottom: 36px; }
    .topkat-logo img { height: 56px; max-width: 140px; }
    .featured-products, .category-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .scenario-row { grid-template-columns: 1fr; gap: 0; }
    .scenario-row.reverse .scenario-text { order: 2; }
    .scenario-row.reverse .scenario-img  { order: 1; }
    .scenario-row .scenario-text { padding: 28px 22px; }
    .scenario-row .scenario-text h3 { font-size: 20px; }
    .scenario-row .scenario-img { min-height: 220px; }
    .advantages { grid-template-columns: 1fr; }
    .advantage p { text-align: center; }
    .topkat-stats .container { grid-template-columns: repeat(2, 1fr); }
    .topkat-footer .container { grid-template-columns: 1fr; }
    /* 窄屏：隐藏导航链接，仅保留 logo + 搜索框 + 语言切换 */
    .header-row { flex-wrap: wrap; gap: 10px; }
    .topkat-nav { margin-left: auto; gap: 10px; }
    .topkat-nav > a { display: none; }
    .topkat-nav .language-switcher { margin-left: 0; }
    .topkat-search { order: 3; flex-basis: 100%; max-width: 100%; margin: 0; }
}

/* 产品详细介绍插图（来自供应商网） */
.section-body img.topkat-content-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 16px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
