/* B2B行业导航 - 现代科技感Aurora + Bento Grid 主题 */
:root {
    --bg: #f3f9f5;
    --bg-2: #e7f3ec;
    --surface: #ffffff;
    --surface-hover: #eef6f1;
    --border: rgba(20, 60, 45, 0.12);
    --text: #16291f;
    --text-dim: #5d6f67;
    --primary: #059669;
    --primary-2: #10b981;
    --accent: #047857;
    --success: #16a34a;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 10px 40px rgba(20, 60, 45, 0.12);
    --maxw: 1200px;
}

/* ===== 企业站 / 城市分站 专属主题：深灰 + 琥珀金（独立于主站清新绿，仅覆盖变量，不动结构与动画） ===== */
body.tpl-site {
    --bg: #f5f4f1;
    --bg-2: #eceae4;
    --surface: #ffffff;
    --surface-hover: #f0ede7;
    --border: rgba(70, 55, 30, 0.14);
    --text: #2a241c;
    --text-dim: #6b6253;
    --primary: #b7791f;
    --primary-2: #d69e2e;
    --accent: #8a5a12;
    --success: #15803d;
    --quote: #b7791f;
    --quote-2: #8a5a12;
    --shadow: 0 10px 40px rgba(60, 45, 20, 0.12);
}
/* 弹窗/悬浮按钮沿用琥珀金（企业站与城市分站通用，类名未在重排中改名） */
body.tpl-site .btn-quote { box-shadow: 0 8px 24px rgba(183,121,31,0.4); }
body.tpl-site .btn-quote:hover { box-shadow: 0 12px 32px rgba(183,121,31,0.55); }
body.tpl-site .quote-fab-btn { box-shadow: 0 10px 30px rgba(183,121,31,0.5); }

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Aurora 背景光晕 */
body::before, body::after {
    content: '';
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}
body::before {
    background: radial-gradient(circle, var(--primary), transparent 70%);
    top: -20%;
    left: -10%;
}
body::after {
    background: radial-gradient(circle, var(--accent), transparent 70%);
    bottom: -20%;
    right: -10%;
}

a { color: var(--primary); text-decoration: none;}
a:hover { color: var(--accent); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }

/* 顶部导航 */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    background: rgba(245, 250, 247, 0.82);
    border-bottom: 1px solid var(--border);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    gap: 24px;
}
.navbar .logo {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.navbar nav {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}
.navbar nav a {
    color: var(--text-dim);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    min-width: 88px;
    text-align: center;}
.navbar nav a:hover, .navbar nav a.active {
    color: var(--text);
    background: var(--surface-hover);
}

/* Hero */
.hero {
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.hero p {
    color: var(--text-dim);
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto;
}

/* Bento Grid */
.bento {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
    padding: 40px 0;
}
.bento-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.bento-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;}
.bento-item:hover {
    transform: translateY(-4px);
    border-color: rgba(5, 150, 105, 0.5);
    background: var(--surface-hover);
}
.bento-item:hover::before { opacity: 1; }
.bento-item .icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}
.bento-item h3 { font-size: 18px; margin-bottom: 8px; }
.bento-item p { color: var(--text-dim); font-size: 14px; }

/* 首页行业类目导航（类目名 + 该类目企业名称列表） */
.cat-directory {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 36px 0;
}
.cat-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;backdrop-filter: blur(10px);
}
.cat-block:hover { border-color: rgba(5, 150, 105, 0.45); }
.cat-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(90deg, rgba(5, 150, 105, 0.12), transparent 70%);
}
.cat-icon {
    width: 40px; height: 40px;
    flex: 0 0 40px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.cat-head h3 { font-size: 18px; white-space: nowrap; }
.cat-head h3 a { color: var(--text); }
.cat-head h3 a:hover { color: var(--primary-2); }
.cat-count {
    font-size: 12px;
    color: var(--primary-2);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: 999px;
    padding: 2px 10px;
    white-space: nowrap;
}
.cat-more {
    margin-left: auto;
    font-size: 13px;
    color: var(--text-dim);
    white-space: nowrap;
}
.cat-more:hover { color: var(--primary-2); }
.cat-sites {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px 22px;
}
.cat-site {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(5, 150, 105, 0.04);
    font-size: 14px;
    line-height: 1.4;}
.cat-site:hover {
    border-color: var(--primary);
    background: rgba(5, 150, 105, 0.12);
    transform: translateY(-2px);
}
.cat-site-name { color: var(--text); white-space: nowrap; }
.cat-site:hover .cat-site-name { color: var(--primary-2); }
.cat-site-kw {
    font-size: 12px;
    color: var(--text-dim);
    border-left: 1px solid var(--border);
    padding-left: 8px;
    white-space: nowrap;
}
.cat-empty { color: var(--text-dim); font-size: 13px; padding: 6px 0; }
@media (max-width: 640px) {
    .cat-head { padding: 14px 16px; flex-wrap: wrap; }
    .cat-sites { padding: 14px 16px; gap: 8px; }
    .cat-site { padding: 7px 12px; font-size: 13px; }
    .cat-site-kw { display: none; }
}

/* 企业站模板*/
.site-header {
    text-align: center;
    padding: 50px 20px 30px;
    border-bottom: 1px solid var(--border);
}
.site-header .logo-box {
    width: 80px; height: 80px;
    border-radius: 18px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; font-weight: 800; color: #fff;
}
.site-header h1 { font-size: 30px; margin-bottom: 8px; }
.site-header .sub { color: var(--text-dim); font-size: 14px; }

.section { padding: 50px 0; position: relative; z-index: 1; }
.section-title {
    font-size: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
}

/* 产品网格 */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;}
.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(5, 150, 105, 0.5);
}
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--bg-2);
}
.product-card .body { padding: 18px; }
.product-card h4 { font-size: 16px; margin-bottom: 8px; }
.product-card p { color: var(--text-dim); font-size: 14px; }

/* 联系方式 */
.contact-box {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(4, 120, 87, 0.1));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-item .ci-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--surface-hover);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-item .ci-label { font-size: 12px; color: var(--text-dim); }
.contact-item .ci-value { font-size: 15px; font-weight: 600; }
.contact-qr img { width: 120px; height: 120px; border-radius: 8px; }

/* 友情链接 */
.friend-links {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}
.friend-links .fl-title {
    font-size: 15px;
    color: var(--text-dim);
    margin-bottom: 16px;
    font-weight: 600;
}
.friend-links .fl-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.friend-links a {
    padding: 6px 14px;
    background: var(--surface-hover);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text);
    border: 1px solid var(--border);}
.friend-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* 面包屑*/
.breadcrumb {
    padding: 20px 0;
    color: var(--text-dim);
    font-size: 14px;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb span { margin: 0 6px; }

/* 页脚 */
.footer {
    border-top: 1px solid var(--border);
    padding: 30px 0;
    text-align: center;
    color: var(--text-dim);
    font-size: 13px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}
/* 页脚 SEO 索引链接（sitemap.xml / llms.txt） */
.footer__seo { margin: 6px 0 0; font-size: 12px; }

/* 按钮 */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;min-width: 100px;
    text-align: center;
}
.btn:hover { background: var(--surface-hover); }
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    color: #fff;
}
.btn-primary:hover { opacity: .9; color: #fff; background: linear-gradient(135deg, var(--primary), var(--accent)); }

/* 行业页站点列表*/
.site-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
}
.site-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;}
.site-card:hover {
    transform: translateY(-3px);
    border-color: rgba(5, 150, 105, 0.5);
}
.site-card h3 { font-size: 18px; margin-bottom: 10px; }
.site-card p { color: var(--text-dim); font-size: 14px; margin-bottom: 14px; }

/* 行业动态新闻（双列卡片）*/
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.news-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;}
.news-card:hover {
    transform: translateY(-3px);
    border-color: rgba(5, 150, 105, 0.5);
}
.news-card h3 { font-size: 16px; line-height: 1.5; margin: 10px 0 8px; }
.news-card p { color: var(--text-dim); font-size: 13px; margin-bottom: 10px; line-height: 1.7; }
.news-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-dim); }
.news-tag {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    padding: 2px 12px;
    border-radius: 999px;
    font-size: 12px;
    white-space: nowrap;
}
.news-more { color: var(--primary-2); font-size: 13px; font-weight: 600; }

/* 新闻详情页*/
.article-detail {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 40px;
    margin-bottom: 32px;
}
.article-detail h1 { font-size: 26px; line-height: 1.5; margin-bottom: 16px; }
.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    color: var(--text-dim);
    font-size: 13px;
    padding-bottom: 16px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--border);
}
.article-content { font-size: 15px; line-height: 2; color: var(--text); }
/* 富文本正文（行业动态编辑器产出）—— 与纯文本正文并存，样式只作用于已有元素，不动结构 */
.article-content > p:not(.article-summary) { margin: 0 0 16px; }
.article-content h2 { font-size: 20px; line-height: 1.6; margin: 28px 0 14px; }
.article-content h3 { font-size: 17px; line-height: 1.6; margin: 22px 0 12px; }
.article-content h4 { font-size: 16px; line-height: 1.6; margin: 18px 0 10px; }
.article-content ul, .article-content ol { margin: 0 0 16px; padding-left: 26px; }
.article-content li { margin-bottom: 6px; }
.article-content blockquote {
    margin: 0 0 16px;
    padding: 12px 18px;
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.08), rgba(16, 185, 129, 0.04));
    color: var(--text-dim);
}
.article-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 18px auto;
    border-radius: 10px;
}
.article-content figure { margin: 18px 0; }
.article-content figcaption {
    margin-top: 8px;
    text-align: center;
    font-size: 13px;
    color: var(--text-dim);
}
.article-content a { color: var(--primary); text-decoration: underline; }
.article-content a:hover { color: var(--primary-2); }
.article-content hr { border: none; border-top: 1px solid var(--border); margin: 26px 0; }
.article-content code {
    padding: 2px 7px;
    border-radius: 5px;
    background: rgba(5, 150, 105, 0.08);
    font-size: 13px;
}
.article-content pre {
    margin: 0 0 16px;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow-x: auto;
    line-height: 1.7;
}
.article-content pre code { padding: 0; background: none; }
.article-summary {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.08), rgba(16, 185, 129, 0.05));
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--text-dim);
    margin-bottom: 20px;
}

/* 响应式*/
@media (max-width: 768px) {
    .hero h1 { font-size: 30px; }
    .navbar .container { flex-wrap: wrap; height: auto; padding: 12px 20px; gap: 12px; }
    .navbar nav { flex-wrap: wrap; }
    .bento { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .site-hero-inner { flex-direction: column; text-align: center; }
    .site-hero-brand { flex-direction: column; text-align: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .products { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
    .news-grid { grid-template-columns: 1fr; }
    .article-detail { padding: 22px 18px; }
    .article-detail h1 { font-size: 21px; }
}

/* ===== 企业站增强组件（全行业通用）===== */
.hero-sm { padding: 36px 20px 16px; }
.hero-sm h1 { font-size: 32px; }
.empty-tip { color: var(--text-dim); text-align: center; padding: 40px; }
.icp { margin-top: 6px; }

/* 企业头图 */
.site-hero {
    position: relative;
    z-index: 1;
    padding: 48px 0 40px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(16, 185, 129, 0.06));
}
.site-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.site-hero-brand { display: flex; align-items: center; gap: 22px; }
.site-logo {
    width: 88px; height: 88px;
    border-radius: 20px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.35);
}
.site-hero-headtext { min-width: 0; }
.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-2);
    background: rgba(5, 150, 105, 0.12);
    border: 1px solid rgba(5, 150, 105, 0.3);
    margin-bottom: 14px;
}
.site-hero h1 { font-size: 34px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
.site-slogan { color: var(--primary-2); font-size: 16px; margin-bottom: 0; }
.site-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-lg { padding: 13px 28px; font-size: 15px; }

/* 标题装饰条*/
.section-title { display: flex; align-items: center; gap: 12px; }
.title-bar {
    width: 5px; height: 24px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    flex-shrink: 0;
}

/* 企业介绍 */
.about-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius);
    padding: 28px 30px;
    line-height: 2;
    color: var(--text-dim);
    font-size: 15px;
}

/* 产品图片占位 */
.product-img-placeholder {
    width: 100%; height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 44px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.25), rgba(4, 120, 87, 0.25));
}

/* 联系网格 */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}
.contact-box .ci-value { color: var(--text); }
.contact-box a.ci-value { color: var(--primary-2); text-decoration: none; }
.contact-qr { grid-column: span 1; }

/* 行业页站点卡片按钮*/
.site-card-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* 面包屑语义化 */
.breadcrumb { padding: 16px 20px; color: var(--text-dim); font-size: 14px; position: relative; z-index: 1; }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--primary-2); }
.breadcrumb strong { color: var(--text); font-weight: 600; }

@media (max-width: 480px) {
    .site-hero h1 { font-size: 26px; }
    .about-box { padding: 20px; }
    .section-title { font-size: 20px; }
}

/* ========== 产品卡片链接区========== */
.product-card a { text-decoration: none; color: inherit; display: block; }
.product-card h3 { font-size: 17px; margin-bottom: 8px; color: var(--text); }
.product-more {
    display: inline-block; margin-top: 10px;
    color: var(--primary-2); font-size: 13px; font-weight: 600;
}
.product-card:hover .product-more { transform: translateX(3px); }

/* ========== 产品详情页========== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 36px;
    align-items: start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}
.pd-gallery img {
    width: 100%; border-radius: 12px; border: 1px solid var(--border);
    object-fit: cover;
}
.pd-placeholder {
    width: 100%; min-height: 320px; display: flex;
    align-items: center; justify-content: center;
    font-size: 72px; background: rgba(5, 150, 105, 0.04);
    border-radius: 12px; border: 1px dashed var(--border);
}
.pd-info h1 { font-size: 26px; line-height: 1.4; margin-bottom: 12px; }
.pd-region { color: var(--primary-2); font-size: 14px; margin-bottom: 14px; }
.pd-desc { color: var(--text-dim); line-height: 1.9; margin-bottom: 22px; }
.pd-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.pd-tips { color: var(--text-dim); font-size: 13px; }
.product-content { line-height: 2; white-space: normal; }
.breadcrumb .current { color: var(--text-dim); }

/* ========== FAQ ========== */
.faq-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; align-items: start; }
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.faq-item summary {
    cursor: pointer;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 15px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(5, 150, 105, 0.08); }
.faq-arrow {color: var(--primary-2); font-size: 14px; }
.faq-item[open] .faq-arrow { transform: rotate(180deg); }
.faq-answer {
    padding: 0 20px 18px;
    color: var(--text-dim);
    line-height: 1.9;
    font-size: 14px;
}

/* ========== 在线询盘表单 ========== */
.inquiry-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 13px 16px;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--primary-2);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}
.inquiry-form button { align-self: flex-start; }
.inquiry-result {
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 16px;
    font-size: 14px;
}
.inquiry-ok { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.35); color: #047857; }
.inquiry-fail { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.35); color: #f87171; }

/* ========== 404 页面 ========== */
.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: var(--bg);
}
.error-code {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.error-page h1 { font-size: 26px; margin: 18px 0 10px; }
.error-msg { color: var(--text-dim); margin-bottom: 28px; max-width: 480px; line-height: 1.8; }
.error-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 768px) {
    .product-detail { grid-template-columns: 1fr; padding: 20px; gap: 22px; }
    .inquiry-form .form-row { grid-template-columns: 1fr; }
    .faq-list { grid-template-columns: 1fr; }
    .error-code { font-size: 84px; }
}

/* ========== 免费领取报价 - 主CTA按钮（暖色高转化）========== */
:root {
    --quote: #059669;
    --quote-2: #047857;
}
.btn-quote {
    background: linear-gradient(135deg, var(--quote) 0%, var(--quote-2) 100%);
    color: #fff !important;
    border: none;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);}
.btn-quote:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--quote) 0%, var(--quote-2) 100%);
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.55);
    color: #fff !important;
}
.btn-quote::after {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-20deg);}
.hero-cta-tip {
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-dim);
    text-align: center;
}
.site-hero-cta { text-align: center; }
.site-hero-cta .btn { margin: 6px; }

/* ========== 悬浮领取报价按钮 ========== */
.quote-fab {
    position: fixed;
    right: 24px;
    bottom: 32px;
    z-index: 900;
}
.quote-fab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    padding: 16px 22px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--quote) 0%, var(--quote-2) 100%);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.5);}
.quote-fab-btn:hover { transform: scale(1.06); }
.quote-fab-btn .qfb-icon { font-size: 20px;}
/* ========== 微信报价弹窗 ========== */
.quote-mask {
    position: fixed;
    inset: 0;
    background: rgba(16, 40, 30, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;}
.quote-mask.show { opacity: 1; visibility: visible; }
.quote-modal {
    position: relative;
    width: 100%;
    max-width: 330px;
    background: linear-gradient(180deg, #ffffff 0%, #eef6f1 100%);
    border: 1px solid rgba(5, 150, 105, 0.35);
    border-radius: 16px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(5, 150, 105, 0.05);
    overflow: hidden;
    transform: translateY(24px) scale(0.96);max-height: 92vh;
    overflow-y: auto;
}
.quote-mask.show .quote-modal { transform: translateY(0) scale(1); }
.quote-close {
    position: absolute;
    top: 8px; right: 10px;
    width: 30px; height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(5,150,105,0.1);
    color: var(--text);
    font-size: 19px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;}
.quote-close:hover { background: rgba(5,150,105,0.18); }

.qm-body { padding: 20px 18px 18px; text-align: center; }
.qm-title { font-size: 16px; font-weight: 800; color: var(--text); margin: 0 0 12px; line-height: 1.4; }

.qm-qr {
    display: inline-block;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 12px;
}
.qm-qr img { display: block; width: 140px; height: 140px; border-radius: 5px; }

.qm-wechat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.qmw-id {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary-2);
    letter-spacing: 1px;
    word-break: break-all;
}
.qmw-copy {
    border: none;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--quote), var(--quote-2));white-space: nowrap;
}
.qmw-copy:hover { transform: translateY(-1px); }
.qmw-copy.copied { background: linear-gradient(135deg, #10b981, #059669); }

.qm-phone {
    display: inline-block;
    margin-top: 2px;
    font-size: 16px;
    font-weight: 700;
    color: var(--success);
    text-decoration: none;
}

/* ========== 移动端自适应优化 ========== */
@media (max-width: 768px) {
    .quote-fab { right: 14px; bottom: 18px; }
    .quote-fab-btn { padding: 13px 18px; font-size: 14px; }
    .quote-fab-btn .qfb-icon { font-size: 17px; }
    .btn-lg { padding: 13px 22px; font-size: 15px; }
    /* 手机端导航：logo与菜单上下排布，菜单横向滑动 */
    .navbar .container {
        flex-wrap: wrap;
        height: auto;
        gap: 6px;
        padding-top: 8px;
        padding-bottom: 8px;
        justify-content: center;
    }
    .navbar .logo { font-size: 18px; width: 100%; text-align: center; }
    .navbar nav {
        width: 100%;
        gap: 4px;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        padding-bottom: 2px;
    }
    .navbar nav a { padding: 6px 12px; font-size: 13px; min-width: auto; }
}

/* ========== 企业站/城市分站 重排版式（移动优先响应式，完全独立于主站） ========== */
/* 通用：移动端基础排版、可读性、无横向溢出 */
body.tpl-site { font-size: 16px; line-height: 1.65; -webkit-text-size-adjust: 100%; }
body.tpl-site img { max-width: 100%; }

/* ---- 顶部导航：吸顶 + 桌面横向 / 移动汉堡 ---- */
body.tpl-site .es-header {
  position: sticky; top: 0; z-index: 800;
  background: var(--surface); border-bottom: 1px solid var(--border);
}
body.tpl-site .es-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 58px; gap: 12px;
}
body.tpl-site .es-logo {
  font-size: 18px; font-weight: 800; color: var(--text);
  text-decoration: none; white-space: nowrap; flex: 0 0 auto;
}
body.tpl-site .es-nav-toggle-cb { display: none; }
body.tpl-site .es-nav-toggle { display: none; }
body.tpl-site .es-nav { display: flex; align-items: center; gap: 4px; flex: 1 1 auto; justify-content: flex-end; }
body.tpl-site .es-nav a {
  color: var(--text-dim); text-decoration: none; font-size: 15px;
  padding: 8px 12px; border-radius: var(--radius-sm); white-space: nowrap;
}
body.tpl-site .es-nav a:hover { color: var(--primary); background: rgba(183,121,31,0.08); }

/* ---- 面包屑 ---- */
body.tpl-site .es-breadcrumb {
  color: var(--text-dim); font-size: 14px; padding: 16px 20px; position: relative; z-index: 1;
}
body.tpl-site .es-breadcrumb a { color: var(--text-dim); text-decoration: none; }
body.tpl-site .es-breadcrumb a:hover { color: var(--primary-2); }
body.tpl-site .es-breadcrumb span { margin: 0 6px; }
body.tpl-site .es-breadcrumb__current { color: var(--text-dim); }

/* ---- 首屏 Hero ---- */
body.tpl-site .es-hero {
  background: linear-gradient(135deg, rgba(183,121,31,0.12), rgba(138,90,18,0.06));
  border-bottom: 1px solid var(--border); padding: 32px 0 36px;
}
body.tpl-site .es-hero__inner { display: flex; flex-direction: column; gap: 24px; }
body.tpl-site .es-badge {
  display: inline-block; font-size: 13px; font-weight: 700; color: var(--accent);
  background: rgba(183,121,31,0.12); border: 1px solid rgba(183,121,31,0.3);
  padding: 5px 14px; border-radius: 999px; margin-bottom: 14px;
}
body.tpl-site .es-hero__title { font-size: 28px; line-height: 1.25; font-weight: 800; color: var(--text); margin-bottom: 10px; }
body.tpl-site .es-hero__slogan { font-size: 16px; color: var(--text-dim); margin-bottom: 20px; line-height: 1.6; }
body.tpl-site .es-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
body.tpl-site .es-hero__cta .btn { flex: 1 1 auto; min-width: 140px; }
body.tpl-site .es-hero__tip { margin-top: 12px; font-size: 13px; color: var(--text-dim); }
body.tpl-site .es-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 12px; margin: 18px 0 0; padding: 0; }
body.tpl-site .es-trust li {
  font-size: 14px; color: var(--text); background: var(--surface);
  border: 1px solid var(--border); border-radius: 999px; padding: 6px 14px;
}
body.tpl-site .es-hero__media { display: none; }
body.tpl-site .es-hero__logo-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 28px; text-align: center;
}
body.tpl-site .es-hero__logo {
  width: 96px; height: 96px; border-radius: 18px; object-fit: cover;
  box-shadow: 0 8px 30px rgba(183,121,31,0.35); margin: 0 auto 14px; display: block;
}
body.tpl-site .es-hero__logo-name { font-size: 20px; font-weight: 800; color: var(--text); }
body.tpl-site .es-hero__logo-tag { font-size: 14px; color: var(--accent); margin-top: 6px; font-weight: 700; }

/* ---- 通用区块 ---- */
body.tpl-site .es-section { padding: 36px 0; border-bottom: 1px solid var(--border); }
body.tpl-site .es-section:last-of-type { border-bottom: none; }
body.tpl-site .es-section__title {
  font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
body.tpl-site .es-section__title::before {
  content: ''; width: 6px; height: 22px; border-radius: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}
body.tpl-site .es-about {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; color: var(--text); line-height: 1.8; font-size: 16px;
}
body.tpl-site .es-about p { margin: 0 0 10px; }
body.tpl-site .es-about p:last-child { margin-bottom: 0; }

/* 企业介绍：左图右文，无底色无边框，直接使用网站背景 */
body.tpl-site .es-about-wrap {
  display: grid; grid-template-columns: 1fr; gap: 18px; align-items: center;
}
body.tpl-site .es-about__media { background: none; border: none; box-shadow: none; }
body.tpl-site .es-about__media img { display: block; width: 100%; height: auto; }
body.tpl-site .es-about__text { color: var(--text); line-height: 1.8; font-size: 16px; }
body.tpl-site .es-about__text p { margin: 0 0 10px; }
body.tpl-site .es-about__text p:last-child { margin-bottom: 0; }
@media (min-width: 700px) {
  body.tpl-site .es-about-wrap { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 26px; align-items: center; }
}

/* ---- 产品卡片栅格 ---- */
body.tpl-site .es-products { display: grid; gap: 16px; grid-template-columns: 1fr; }
body.tpl-site .es-product {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
body.tpl-site .es-product:hover { border-color: var(--primary); }
body.tpl-site .es-product__link { display: block; text-decoration: none; color: inherit; flex: 1 1 auto; }
body.tpl-site .es-product__media { aspect-ratio: 4/3; background: linear-gradient(135deg, rgba(183,121,31,0.25), rgba(138,90,18,0.25)); }
body.tpl-site .es-product__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
body.tpl-site .es-product__ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; }
body.tpl-site .es-product__body { padding: 14px 16px 18px; }
body.tpl-site .es-product__title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
body.tpl-site .es-product__desc {
  font-size: 13px; color: var(--text-dim); line-height: 1.6; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
body.tpl-site .es-product__more {
  display: block; width: fit-content; margin: 0 auto 16px;
  padding: 13px 34px;
  font-family: inherit; font-size: 15px; font-weight: 700; line-height: 1.2;
  text-align: center; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none; border-radius: var(--radius-sm);
  cursor: pointer;
}
body.tpl-site .es-product__more:hover { color: #fff; background: var(--accent); }

/* ---- FAQ 折叠 ---- */
body.tpl-site .es-faq { display: grid; gap: 12px; }
body.tpl-site .es-faq__item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
}
body.tpl-site .es-faq__q {
  list-style: none; cursor: pointer; padding: 14px 16px; font-size: 16px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
body.tpl-site .es-faq__q::-webkit-details-marker { display: none; }
body.tpl-site .es-faq__arrow { color: var(--primary); font-size: 18px; }
body.tpl-site .es-faq__item[open] .es-faq__arrow { transform: rotate(180deg); }
body.tpl-site .es-faq__a { padding: 0 16px 14px; font-size: 15px; color: var(--text-dim); line-height: 1.8; }
body.tpl-site .es-faq__a p { margin: 0 0 8px; }

/* ---- 行业动态 ---- */
body.tpl-site .es-news { display: grid; gap: 16px; grid-template-columns: 1fr; }
body.tpl-site .es-news__card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 8px;
}
body.tpl-site .es-news__meta { display: flex; align-items: center; gap: 10px; }
body.tpl-site .es-news__tag { font-size: 12px; font-weight: 700; color: var(--primary); background: rgba(183,121,31,0.12); padding: 2px 10px; border-radius: 999px; }
body.tpl-site .es-news__meta time { font-size: 12px; color: var(--text-dim); }
body.tpl-site .es-news__title { font-size: 16px; font-weight: 700; line-height: 1.5; }
body.tpl-site .es-news__title a { color: var(--text); text-decoration: none; }
body.tpl-site .es-news__title a:hover { color: var(--primary); }
body.tpl-site .es-news__summary { font-size: 14px; color: var(--text-dim); line-height: 1.6; margin: 0; }
body.tpl-site .es-news__more { font-size: 14px; font-weight: 700; color: var(--primary); text-decoration: none; margin-top: auto; }

/* ---- 联系我们 ---- */
body.tpl-site .es-contact {
  display: grid; gap: 12px; grid-template-columns: 1fr;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow);
}
body.tpl-site .es-contact__item { display: flex; align-items: center; gap: 12px; }
body.tpl-site .es-contact__icon {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; background: rgba(183,121,31,0.12);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
body.tpl-site .es-contact__label { font-size: 13px; color: var(--text-dim); }
body.tpl-site .es-contact__value { font-size: 16px; font-weight: 700; color: var(--text); text-decoration: none; word-break: break-all; }
body.tpl-site .es-contact__value:hover { color: var(--primary); }

/* ---- 询盘表单 ---- */
body.tpl-site .es-form {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow); display: grid; gap: 12px;
}
body.tpl-site .es-form__row { display: grid; gap: 12px; grid-template-columns: 1fr; }
body.tpl-site .es-form__input,
body.tpl-site .es-form__textarea {
  width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg);
  padding: 14px 16px; font-size: 16px; color: var(--text); font-family: inherit;
}
body.tpl-site .es-form__input { min-height: 48px; }
body.tpl-site .es-form__textarea { min-height: 110px; resize: vertical; }
body.tpl-site .es-form__input:focus,
body.tpl-site .es-form__textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(183,121,31,0.15); }
body.tpl-site .es-form__submit { width: 100%; min-height: 50px; }
body.tpl-site .es-form__privacy { font-size: 13px; color: var(--text-dim); margin: 0; text-align: center; }
body.tpl-site .es-form__result { border-radius: var(--radius-sm); padding: 12px 16px; font-size: 15px; }
body.tpl-site .es-form__result--ok { background: rgba(21,128,61,0.1); color: #15803d; border: 1px solid rgba(21,128,61,0.3); }
body.tpl-site .es-form__result--fail { background: rgba(220,38,38,0.08); color: #b91c1c; border: 1px solid rgba(220,38,38,0.3); }
/* ---- 询盘图形验证码（4 位数字）+ 提交按钮 ----
   窄屏：上下堆叠（验证码一行、按钮一行）；宽屏 ≥560px：输入框 / 图片 / 按钮 三者排成一行（规则在文件末尾断点里）
   版式：图片 48px 高，与 .es-form__input 的 min-height 严格等高对齐
   注意：≥560px 的 .es-form__row{grid-template-columns:1fr 1fr} 特异性更高，这里必须用两个类名才压得过 */
body.tpl-site .es-form__submitline { display: grid; gap: 12px; margin-top: 4px; }  /* 与需求框拉开 12+4=16px */
body.tpl-site .es-form__row.es-form__row--captcha { grid-template-columns: 1fr auto; align-items: center; }
body.tpl-site .es-form__captcha {
  height: 48px; width: auto; display: block; cursor: pointer;
  border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface);
}
body.tpl-site .es-form__captcha:hover { border-color: var(--primary); }

/* ---- 城市分站 ----
   等宽栅格：auto-fill 自动分列，每格同宽 → 行首行尾对齐，不再参差；
   minmax(150px,1fr) 保证「地名+主关键词」（最多 9 字）在 13px 下不折行、不被截断；
   单行省略只作超长地名的兜底（全称另存 title 属性） */
body.tpl-site .es-branches {
  display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
body.tpl-site .es-branch {
  display: block; min-width: 0;
  font-size: 13px; line-height: 1.45; text-align: center;
  color: var(--text); text-decoration: none; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 8px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
body.tpl-site .es-branch:hover { border-color: var(--primary); color: var(--primary); background: rgba(183,121,31,0.06); }

/* ---- 产品详情 ---- */
body.tpl-site .es-pd { display: grid; gap: 24px; }
body.tpl-site .es-pd__gallery {
  background: linear-gradient(135deg, rgba(183,121,31,0.25), rgba(138,90,18,0.25));
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
}
body.tpl-site .es-pd__img { width: 100%; height: 100%; object-fit: cover; display: block; }
body.tpl-site .es-pd__ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 64px; }
body.tpl-site .es-pd__title { font-size: 26px; font-weight: 800; color: var(--text); line-height: 1.3; }
body.tpl-site .es-pd__region { font-size: 14px; color: var(--accent); font-weight: 700; margin: 8px 0; }
body.tpl-site .es-pd__desc { font-size: 16px; color: var(--text-dim); line-height: 1.8; margin-bottom: 18px; }
body.tpl-site .es-pd__cta { display: flex; flex-wrap: wrap; gap: 12px; }
body.tpl-site .es-pd__cta .btn { flex: 1 1 auto; min-width: 140px; }
body.tpl-site .es-pd__tips { font-size: 13px; color: var(--text-dim); margin-top: 12px; }

/* ---- 页脚 ---- */
body.tpl-site .es-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 28px 0; }
body.tpl-site .es-footer__site { font-size: 15px; font-weight: 700; color: var(--text); margin: 0 0 6px; }
body.tpl-site .es-footer__icp { font-size: 12px; color: var(--text-dim); margin: 0; }
/* 页脚 SEO 索引链接（sitemap.xml / llms.txt） */
body.tpl-site .es-footer__seo { font-size: 12px; color: var(--text-dim); margin: 0 0 6px; }

/* ---- 移动端吸底 CTA（拇指区，长页随时转化） ---- */
body.tpl-site .es-mobile-cta { display: none; }

/* ========== 企业站/城市分站 响应式断点 ========== */
@media (min-width: 560px) {
  body.tpl-site .es-products { grid-template-columns: repeat(2, 1fr); }
  body.tpl-site .es-form__row { grid-template-columns: 1fr 1fr; }
  /* 验证码 + 提交按钮排成一行：1fr 给「输入框 + 图片」，auto 给按钮；
     按钮去掉全宽、压到 48px 与验证码等高，并靠 align-items:center 三者中线对齐 */
  body.tpl-site .es-form__submitline { grid-template-columns: 1fr auto; align-items: center; }
  body.tpl-site .es-form__submitline .es-form__submit {
    width: auto; min-height: 48px; padding-left: 28px; padding-right: 28px;
  }
}
@media (min-width: 700px) {
  body.tpl-site .es-news { grid-template-columns: repeat(2, 1fr); }
}

/* ==================================================================
   行业动态列表页（主域 /{行业别名}-news.html）
   形态：只显示「标题 + 发布时间」，**两列**排布；20 条一批，「加载更多」居中
   ================================================================== */
/* 区块标题行：标题（自带右侧渐隐分隔线）+ 右侧「查看全部」
   ⚠️ 标题被包进这一层后，它自身的 margin-bottom 被清零，所以「标题与正文的间距」必须由本容器提供，
      否则会出现「标题紧贴下方内容」的排版（与其它区块的 .section-title 24px 下边距保持一致）。 */
.section-head { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 24px; }
.section-head .section-title { flex: 1 1 auto; min-width: 0; margin-bottom: 0; }
.section-more { flex: 0 0 auto; font-size: 14px; font-weight: 700; color: var(--primary); text-decoration: none; }
.section-more:hover { color: var(--accent); }

.news-list__hint { color: var(--text-dim); font-size: 13px; margin: 12px 0 8px; }
/* 两列等宽栅格：列间距 32px，行内不留缝（靠每条的 1px 下边线分格） */
.news-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px; row-gap: 0;
  border-top: 1px solid var(--border);
}
.news-list__item { border-bottom: 1px solid var(--border); min-width: 0; }
.news-list__link {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 2px; text-decoration: none; color: var(--text);
}
.news-list__link:hover { color: var(--primary-2); }
.news-list__title {
  flex: 1 1 auto; min-width: 0; display: block;
  font-size: 15px; font-weight: 600; line-height: 1.6;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
/* 日期等宽数字，右端对齐不参差 */
.news-list__date { flex: 0 0 auto; font-size: 13px; color: var(--text-dim); font-variant-numeric: tabular-nums; }
/* 「加载更多」居中：按钮在上、状态文案在下，整体水平居中 */
.news-list__foot {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; margin-top: 26px;
}
.news-list__more { min-width: 200px; }
.news-list__status { font-size: 13px; color: var(--text-dim); }
.news-list__empty { color: var(--text-dim); padding: 24px 0; }

/* 窄屏：退回单列；标题允许两行内折行 */
@media (max-width: 700px) {
  .news-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .news-list__link { align-items: flex-start; gap: 8px; padding: 12px 2px; }
  .news-list__title {
    font-size: 15px; white-space: normal;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  }
  .news-list__more { min-width: 0; width: 100%; }
}

/* 企业站「行业动态」标题右侧的「查看全部」（沿用琥珀金主题变量） */
body.tpl-site .es-section__more {
  margin-left: auto; font-size: 13px; font-weight: 700;
  color: var(--primary); text-decoration: none; white-space: nowrap;
}
body.tpl-site .es-section__more:hover { color: var(--accent); }
@media (min-width: 768px) {
  body.tpl-site .es-hero { padding: 56px 0 64px; }
  body.tpl-site .es-hero__inner { flex-direction: row; align-items: center; gap: 40px; }
  body.tpl-site .es-hero__main { flex: 1 1 auto; min-width: 0; }
  body.tpl-site .es-hero__media { display: block; flex: 0 0 300px; }
  body.tpl-site .es-hero__title { font-size: 40px; }
  body.tpl-site .es-section { padding: 48px 0; }
  body.tpl-site .es-pd { grid-template-columns: 1fr 1fr; align-items: start; }
}
@media (min-width: 900px) {
  body.tpl-site .es-products { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 600px) {
  body.tpl-site .es-contact { grid-template-columns: repeat(2, 1fr); }
}

/* 移动端（≤768px）：汉堡菜单 + 吸底 CTA + 触控目标放大 */
@media (max-width: 768px) {
  body.tpl-site .es-nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; cursor: pointer; margin-left: auto; border-radius: 8px;
  }
  body.tpl-site .es-nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; margin: 0 auto; }
  body.tpl-site .es-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow); padding: 6px 12px 12px;
  }
  body.tpl-site .es-nav-toggle-cb:checked ~ .es-nav { display: flex; }
  body.tpl-site .es-nav a { padding: 14px 12px; font-size: 16px; border-bottom: 1px solid var(--border); }
  body.tpl-site .es-nav a:last-child { border-bottom: none; }

  body.tpl-site .es-mobile-cta {
    display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: var(--surface);
    border-top: 1px solid var(--border); box-shadow: 0 -6px 24px rgba(60,45,20,0.12);
  }
  body.tpl-site .es-mcta-btn {
    flex: 1 1 0; min-height: 50px; display: flex; align-items: center; justify-content: center;
    border-radius: 12px; font-size: 16px; font-weight: 800; text-decoration: none; color: #fff; border: none;
  }
  body.tpl-site .es-mcta-quote { background: linear-gradient(135deg, var(--quote), var(--quote-2)); }
  body.tpl-site .es-mcta-call { background: linear-gradient(135deg, var(--primary), var(--accent)); }
  body.tpl-site { padding-bottom: 78px; }
  body.tpl-site .quote-fab { display: none; }
  body.tpl-site .btn-lg { min-height: 48px; }
}

/* ========== 报价弹窗 · 分站琥珀金适配（与新 es- 设计统一） ========== */
body.tpl-site .quote-mask { background: rgba(42, 36, 28, 0.45); }
body.tpl-site .quote-modal {
  background: linear-gradient(180deg, #ffffff 0%, #faf6ec 100%);
  border-color: rgba(183, 121, 31, 0.35);
  box-shadow: 0 24px 70px rgba(30, 20, 5, 0.5);
}
body.tpl-site .quote-close { background: rgba(183, 121, 31, 0.12); }
body.tpl-site .quote-close:hover { background: rgba(183, 121, 31, 0.25); }
body.tpl-site .qmw-copy.copied { background: linear-gradient(135deg, var(--primary-2), var(--quote)); }

/* ========== 报价弹窗 · 小屏排版加固（两套主题通用） ========== */
@media (max-width: 480px) {
  .quote-mask { padding: 12px; }
  .qm-body { padding: 18px 14px 16px; }
  .qm-title { font-size: 15px; }
  .qm-qr { padding: 7px; }
  .qm-qr img { width: 130px; height: 130px; }
  .qmw-id { font-size: 16px; }
  .qmw-copy { padding: 7px 12px; font-size: 12px; }
}
