/* 覆盖通用内容样式配色 */
:root {
    --content-primary: #2563eb;
    --content-primary-dark: #1d4ed8;
    --content-primary-light: #60a5fa;
}

/* ========== 分站模板 - 简约白底蓝色风 ========== */
:root {
    --tpl-primary: #2563eb;
    --tpl-primary-dark: #1d4ed8;
    --tpl-primary-light: #3b82f6;
    --tpl-accent: #0ea5e9;
    --tpl-bg: #ffffff;
    --tpl-bg-light: #f8fafc;
    --tpl-bg-gray: #f1f5f9;
    --tpl-text: #1e293b;
    --tpl-text-secondary: #64748b;
    --tpl-text-muted: #94a3b8;
    --tpl-border: #e2e8f0;
    --tpl-border-light: #f1f5f9;
    --tpl-radius: 8px;
    --tpl-radius-lg: 12px;
    --tpl-shadow: 0 1px 3px rgba(0,0,0,0.06);
    --tpl-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --tpl-shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
    --tpl-container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background: var(--tpl-bg);
    color: var(--tpl-text);
    line-height: 1.6;
    font-size: 15px;
}
a { color: var(--tpl-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--tpl-primary-dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.tpl-container {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
    padding: 0;
}

/* ========== 顶部信息栏 ========== */
.tpl-topbar {
    background: #2563eb;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}
.tpl-topbar .tpl-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tpl-topbar-left span { opacity: 1; color: #fff; font-weight: 500; }
.tpl-topbar-right {
    display: flex;
    gap: 24px;
}
.tpl-topbar-right span { color: #fff; }
.tpl-topbar-right strong { font-weight: 700; color: #fff; }

/* ========== 导航栏 ========== */
.tpl-header {
    background: #fff;
    box-shadow: var(--tpl-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}
.tpl-header .tpl-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.tpl-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.tpl-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--tpl-primary), var(--tpl-accent));
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}
.tpl-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--tpl-text);
}
.tpl-logo-text span { color: var(--tpl-primary); }

.tpl-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.tpl-nav > a, .tpl-nav-dropdown > a {
    display: block;
    padding: 10px 16px;
    color: var(--tpl-text);
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s;
}
.tpl-nav > a:hover, .tpl-nav-dropdown > a:hover,
.tpl-nav > a.active, .tpl-nav-dropdown > a.active {
    color: var(--tpl-primary);
    background: var(--tpl-bg-light);
}
.tpl-nav-dropdown { position: relative; }
.tpl-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--tpl-border);
    border-radius: 8px;
    box-shadow: var(--tpl-shadow-lg);
    min-width: 160px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s;
    z-index: 50;
}
.tpl-nav-dropdown:hover .tpl-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.tpl-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--tpl-text);
    font-size: 14px;
    transition: all 0.15s;
}
.tpl-dropdown-menu a:hover {
    background: var(--tpl-bg-light);
    color: var(--tpl-primary);
}

.tpl-header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2563eb;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
}
.tpl-header-phone:hover {
    background: var(--tpl-primary-dark);
    color: #fff;
    transform: translateY(-1px);
}
.tpl-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--tpl-text);
}

/* ========== 通用区块 ========== */
.tpl-section {
    padding: 72px 0;
}
.tpl-section-gray { background: var(--tpl-bg-light); }
.tpl-section-title {
    text-align: center;
    margin-bottom: 48px;
}
.tpl-section-title .label {
    display: inline-block;
    color: var(--tpl-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.tpl-section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--tpl-text);
    margin-bottom: 12px;
}
.tpl-section-title p {
    color: var(--tpl-text-secondary);
    font-size: 16px;
}

/* ========== 按钮 ========== */
.tpl-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}
.tpl-btn-primary {
    background: var(--tpl-primary);
    color: #fff;
}
.tpl-btn-primary:hover {
    background: var(--tpl-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--tpl-shadow-md);
}
.tpl-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}
.tpl-btn-outline:hover {
    background: #fff;
    color: var(--tpl-primary);
    border-color: #fff;
}

/* ========== 首页Hero区域统计数据（蓝色背景上用白色） ========== */
.hero-stat .num { color: #fff !important; }
.hero-stat .label { color: rgba(255,255,255,0.85) !important; }
.hero-stats { border-top-color: rgba(255,255,255,0.2) !important; }

/* ========== 底部数据统计板块 ========== */
.stats-section { background: #f8fafc !important; }
.stats-section .stat-item .num { color: #2563eb !important; }
.stats-section .stat-item .label { color: #1e293b !important; }

/* ========== CTA区域 ========== */
.tpl-cta {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    padding: 64px 0;
    color: #fff;
}
.tpl-cta-content {
    text-align: center;
}
.tpl-cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}
.tpl-cta-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 28px;
}
.tpl-cta-phone {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-right: 20px;
}
.tpl-cta-phone:hover { color: #fff; }

/* ========== 页脚 ========== */
.tpl-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 56px 0 0;
}
.tpl-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.tpl-footer-brand .tpl-logo-text { color: #fff; }
.tpl-footer-brand p {
    margin: 16px 0;
    font-size: 14px;
    line-height: 1.8;
    color: #94a3b8;
}
.tpl-footer-contact-item {
    font-size: 14px;
    margin-bottom: 10px;
    color: #cbd5e1;
}
.tpl-footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
.tpl-footer-col ul li {
    margin-bottom: 12px;
}
.tpl-footer-col ul li a {
    color: #94a3b8;
    font-size: 14px;
    transition: color 0.2s;
}
.tpl-footer-col ul li a:hover {
    color: var(--tpl-primary-light);
}
.tpl-footer-notice {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-left: 3px solid var(--tpl-primary-light);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin-bottom: 32px;
}
.tpl-footer-notice-title {
    color: var(--tpl-primary-light);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}
.tpl-footer-notice p {
    font-size: 13px;
    line-height: 1.9;
    color: #94a3b8;
    margin-bottom: 8px;
}
.tpl-footer-notice p:last-child { margin-bottom: 0; }
.tpl-footer-notice strong { color: #cbd5e1; }
.tpl-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.tpl-footer-bottom p {
    font-size: 13px;
    color: #94a3b8;
}
.tpl-footer-bottom a { color: #94a3b8; }
.tpl-footer-bottom a:hover { color: var(--tpl-primary-light); }

/* ========== 内页Banner ========== */
.tpl-page-banner {
    background: linear-gradient(135deg, var(--tpl-primary) 0%, var(--tpl-accent) 100%);
    padding: 80px 0 60px;
    color: #fff;
    text-align: center;
}
.tpl-page-banner .breadcrumb {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 16px;
}
.tpl-page-banner .breadcrumb a { color: #fff; }
.tpl-page-banner h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}
.tpl-page-banner p {
    font-size: 16px;
    opacity: 0.9;
}

/* ========== 卡片网格 ========== */
.tpl-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tpl-card {
    background: #fff;
    border: 1px solid var(--tpl-border);
    border-radius: var(--tpl-radius-lg);
    padding: 32px;
    transition: all 0.3s;
}
.tpl-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tpl-shadow-lg);
    border-color: var(--tpl-primary-light);
}
.tpl-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--tpl-primary), var(--tpl-accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}
.tpl-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--tpl-text);
    margin-bottom: 12px;
}
.tpl-card p {
    color: var(--tpl-text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}
.tpl-card .more {
    color: var(--tpl-primary);
    font-size: 14px;
    font-weight: 600;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
    .tpl-card-grid { grid-template-columns: repeat(2, 1fr); }
    .tpl-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .tpl-topbar-right { display: none; }
    .tpl-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px;
        box-shadow: var(--tpl-shadow-lg);
        gap: 0;
    }
    .tpl-nav.show { display: flex; }
    .tpl-nav > a, .tpl-nav-dropdown > a { padding: 12px 16px; }
    .tpl-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 20px;
    }
    .tpl-header-phone { display: none; }
    .tpl-mobile-toggle { display: block; }
    .tpl-card-grid { grid-template-columns: 1fr; }
    .tpl-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .tpl-footer-bottom { flex-direction: column; text-align: center; }
    .tpl-section { padding: 48px 0; }
    .tpl-section-title h2 { font-size: 26px; }
    .tpl-page-banner h1 { font-size: 28px; }
    .tpl-cta-content h2 { font-size: 26px; }
    .tpl-cta-phone { font-size: 22px; display: block; margin: 0 0 16px 0; }
}

/* ========== 页面主体内容样式（兼容主站类名，蓝白风格） ========== */

/* 首页Hero Banner */
.hero {
    position: relative;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 50%, #38bdf8 100%);
    padding: 100px 0 80px;
    overflow: hidden;
    color: #fff;
}
.hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
}
.hero-visual { display: none; }
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
    padding: 8px 16px; border-radius: 20px; font-size: 14px;
    margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.2);
}
.hero-badge .dot {
    width: 8px; height: 8px; background: #4ade80; border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.hero h1 {
    font-size: 44px; font-weight: 700; line-height: 1.3; margin-bottom: 20px;
}
.hero h1 .highlight {
    background: linear-gradient(90deg, #fef3c7, #fde68a);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 17px; line-height: 1.8; opacity: 0.9; margin-bottom: 32px;
}
.hero-actions {
    display: flex; gap: 16px; margin-bottom: 48px;
}
.hero-actions .btn-gold {
    background: #fff; color: #2563eb;
}
.hero-actions .btn-gold:hover {
    background: #f1f5f9; color: #1d4ed8; transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.hero-actions .btn-outline {
    background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5);
}
.hero-actions .btn-outline:hover {
    background: rgba(255,255,255,0.1); border-color: #fff; color: #fff;
}
.hero-stats {
    display: flex; gap: 48px; padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat .num {
    font-size: 36px; font-weight: 700; margin-bottom: 4px;
}
.hero-stat .num small { font-size: 20px; }
.hero-stat .label { font-size: 14px; opacity: 0.8; }

/* 容器和区块 */
.container { max-width: 1400px; width: 95%; margin: 0 auto; padding: 0; }
.section { padding: 72px 0; }
.section-gray { background: #f8fafc; }

/* 区块标题 */
.section-title { text-align: center; margin-bottom: 48px; }
.section-title .label {
    display: inline-block; color: #2563eb; font-size: 13px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}
.section-title h2 { font-size: 32px; font-weight: 700; color: #1e293b; margin-bottom: 12px; }
.section-title p { color: #64748b; font-size: 16px; }

/* 按钮 */
.btn {
    display: inline-block; padding: 12px 28px; border-radius: 8px;
    font-size: 15px; font-weight: 600; transition: all 0.2s; cursor: pointer; border: none; text-decoration: none;
}
.btn-gold { background: #2563eb; color: #fff; }
.btn-gold:hover { background: #1d4ed8; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37,99,235,0.3); }
.btn-outline { background: transparent; color: #2563eb; border: 2px solid #2563eb; }
.btn-outline:hover { background: #2563eb; color: #fff; }

/* 内页Banner */
.page-banner {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    padding: 80px 0 60px; color: #fff; text-align: center;
}
.page-banner .breadcrumb { font-size: 14px; opacity: 0.8; margin-bottom: 16px; }
.page-banner .breadcrumb a { color: #fff; }
.page-banner h1 { font-size: 36px; font-weight: 700; margin-bottom: 12px; }
.page-banner p { font-size: 16px; opacity: 0.9; }

/* 业务卡片网格 */
.business-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.business-card {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
    padding: 32px; transition: all 0.3s;
}
.business-card:hover {
    transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #3b82f6;
}
.business-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 20px;
}
.business-card h3 { font-size: 20px; font-weight: 600; color: #1e293b; margin-bottom: 12px; }
.business-card p { color: #64748b; font-size: 14px; line-height: 1.8; margin-bottom: 16px; }
.business-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.business-tags span {
    background: #eff6ff; color: #2563eb; padding: 4px 12px;
    border-radius: 20px; font-size: 12px; font-weight: 500;
}
.business-card .more {
    display: inline-flex; align-items: center; gap: 6px;
    color: #2563eb; font-size: 14px; font-weight: 600;
    margin-top: auto; transition: all 0.2s;
}
.business-card .more:hover {
    color: #1d4ed8; gap: 10px;
}
.business-card .more svg { width: 16px; height: 16px; }
.business-card { display: flex; flex-direction: column; }

/* 产品筛选 */
.product-filter {
    display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 40px;
}
.product-filter a {
    padding: 8px 20px; border-radius: 20px; font-size: 14px; font-weight: 500;
    color: #64748b; background: #f1f5f9; transition: all 0.2s;
}
.product-filter a:hover, .product-filter a.active {
    background: #2563eb; color: #fff;
}

/* 产品列表 */
.product-list {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.product-card {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
    overflow: hidden; transition: all 0.3s; text-decoration: none; display: block;
}
.product-card:hover {
    transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #3b82f6;
}
.product-thumb {
    position: relative; height: 200px; background: #f1f5f9;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb .icon { font-size: 48px; }
.cat-tag {
    position: absolute; top: 12px; left: 12px;
    background: rgba(37,99,235,0.9); color: #fff;
    padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 500;
}
.product-body { padding: 24px; }
.product-body h3 { font-size: 18px; font-weight: 600; color: #1e293b; margin-bottom: 10px; }
.product-body p { color: #64748b; font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.product-body .more { color: #2563eb; font-size: 14px; font-weight: 600; }

/* 资讯网格 */
.news-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.news-card {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
    overflow: hidden; transition: all 0.3s; text-decoration: none; display: block;
}
.news-card:hover {
    transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #3b82f6;
}
.news-thumb {
    height: 180px; background: #f1f5f9; overflow: hidden;
}
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-body { padding: 20px 24px; }
.news-meta { display: flex; gap: 16px; font-size: 12px; color: #94a3b8; margin-bottom: 10px; }
.news-body h3 { font-size: 17px; font-weight: 600; color: #1e293b; margin-bottom: 10px; line-height: 1.5; }
.news-body p { color: #64748b; font-size: 13px; line-height: 1.7; }

/* 数据统计 */
.stats-section {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    padding: 64px 0; color: #fff;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center;
}
.stat-item .num { font-size: 48px; font-weight: 700; margin-bottom: 8px; }
.stat-item .num small { font-size: 24px; }
.stat-item .label { font-size: 15px; opacity: 0.9; }

/* 优势网格 */
.advantages-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.advantage-item {
    display: flex; gap: 20px; background: #fff; border: 1px solid #e2e8f0;
    border-radius: 12px; padding: 28px; transition: all 0.3s;
}
.advantage-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); border-color: #3b82f6;
}
.advantage-num {
    width: 48px; height: 48px; flex-shrink: 0;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700; color: #fff;
}
.advantage-content h4 { font-size: 18px; font-weight: 600; color: #1e293b; margin-bottom: 8px; }
.advantage-content p { color: #64748b; font-size: 14px; line-height: 1.7; }

/* 联系页面 */
.contact-layout {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px;
}
.contact-info-card {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 32px;
}
.contact-info-card h3 { font-size: 22px; font-weight: 700; color: #1e293b; margin-bottom: 24px; }
.contact-info-item {
    display: flex; gap: 16px; margin-bottom: 20px; padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: #eff6ff; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; color: #2563eb;
}
.contact-info-item h4 { font-size: 14px; color: #94a3b8; margin-bottom: 4px; font-weight: 500; }
.contact-info-item p { font-size: 16px; color: #1e293b; font-weight: 500; }

/* 表单 */
.admin-form, .contact-form { background: #fff; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; color: #334155; margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 10px 14px; border: 1px solid #e2e8f0; border-radius: 8px;
    font-size: 14px; color: #1e293b; transition: border-color 0.2s;
    background: #fff;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* 详情页 */
.detail-header { text-align: center; margin-bottom: 40px; }
.detail-header h1 { font-size: 32px; font-weight: 700; color: #1e293b; margin-bottom: 16px; }
.detail-meta { display: flex; justify-content: center; gap: 24px; color: #94a3b8; font-size: 14px; }
.detail-content {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 40px;
    font-size: 16px; line-height: 1.9; color: #334155;
}
.detail-content h2, .detail-content h3 { color: #1e293b; margin: 24px 0 12px; }
.detail-content p { margin-bottom: 16px; }
.detail-content img { max-width: 100%; border-radius: 8px; margin: 16px 0; }

/* 分页 */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span {
    padding: 8px 16px; border-radius: 8px; font-size: 14px;
    border: 1px solid #e2e8f0; color: #64748b; transition: all 0.2s;
}
.pagination a:hover { background: #2563eb; color: #fff; border-color: #2563eb; }
.pagination .current { background: #2563eb; color: #fff; border-color: #2563eb; }

/* 空状态 */
.empty-state { text-align: center; padding: 80px 0; color: #94a3b8; }
.empty-state h3 { font-size: 20px; margin-bottom: 12px; color: #64748b; }

/* 响应式 - 主体内容 */
@media (max-width: 1024px) {
    .business-grid, .product-list, .news-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; }
    .advantages-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .section { padding: 48px 0; }
    .section-title h2 { font-size: 26px; }
    .page-banner h1 { font-size: 28px; }
    .business-grid, .product-list, .news-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 24px; }
    .stat-item .num { font-size: 36px; }
    .form-row { grid-template-columns: 1fr; }
    .detail-content { padding: 24px; }
    .detail-header h1 { font-size: 24px; }
    /* Hero Banner 移动端 */
    .hero { padding: 60px 0 50px; }
    .hero h1 { font-size: 28px; line-height: 1.4; }
    .hero-subtitle { font-size: 15px; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .hero-stats { flex-direction: column; gap: 20px; padding-top: 24px; }
    .hero-slider-content .hero-stats { flex-direction: row; flex-wrap: nowrap; gap: 16px; padding-top: 14px; margin-top: 16px; }
    .hero-slider-content .hero-stat { flex-shrink: 0; }
    .hero-slider-content .hero-stat .num { font-size: 20px; }
    .hero-slider-content .hero-stat .num small { font-size: 11px; }
    .hero-slider-content .hero-stat .label { font-size: 11px; }
    .hero-stat .num { font-size: 28px; }
}

/* ========== 关于我们 - 公司简介（分站蓝白风格） ========== */
.about-intro {
    background: #ffffff;
    border: 1px solid var(--tpl-border);
    border-radius: var(--tpl-radius-lg);
    padding: 48px;
    margin-bottom: 48px;
    box-shadow: var(--tpl-shadow);
}
.about-intro-title {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--tpl-primary);
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--tpl-primary-light);
    display: inline-block;
}
.about-intro-content {
    font-size: 16px;
    line-height: 2;
    color: var(--tpl-text-secondary);
}
.about-intro-content p {
    margin-bottom: 16px;
}
.about-intro-content p:last-child {
    margin-bottom: 0;
}
.about-intro-content h1,
.about-intro-content h2,
.about-intro-content h3,
.about-intro-content h4 {
    color: var(--tpl-text);
    margin: 24px 0 12px;
    font-weight: 600;
}
.about-intro-content ul,
.about-intro-content ol {
    margin: 12px 0;
    padding-left: 24px;
}
.about-intro-content li {
    margin-bottom: 8px;
}
.about-intro-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 16px 0;
}
.about-city-notice {
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(37,99,235,0.06);
    border-left: 3px solid var(--tpl-primary);
    border-radius: 0 8px 8px 0;
    line-height: 1.8;
    color: var(--tpl-text-secondary);
}
.about-city-notice strong {
    color: var(--tpl-primary);
}

/* 关于我们 - 响应式 */
@media (max-width: 768px) {
    .about-intro {
        padding: 28px 20px;
        margin-bottom: 32px;
    }
    .about-intro-title {
        font-size: 22px;
        margin-bottom: 16px;
        padding-bottom: 8px;
    }
    .about-intro-content {
        font-size: 15px;
        line-height: 1.9;
    }
    .about-city-notice {
        padding: 14px 16px;
        font-size: 14px;
    }
}

/* Footer Logo 颜色修复（深色背景上使用浅色文字） */
.city-footer .city-logo-text { color: #fff; }
.city-footer .city-logo-text span { color: #60a5fa; }
.city-footer .city-logo-icon { background: rgba(255,255,255,0.15); color: #60a5fa; }


/* Footer Logo 颜色修复（深色背景上使用浅色文字） */
.tpl-footer .tpl-logo-text { color: #fff; }
.tpl-footer .tpl-logo-text span { color: #60a5fa; }
.tpl-footer .tpl-logo-icon { background: rgba(255,255,255,0.15); color: #60a5fa; }


/* Page Banner 文字颜色修复（确保文字和背景对比度） */
.page-banner h1 { color: #fff !important; }
.page-banner p { color: rgba(255,255,255,0.9) !important; }
.page-banner .breadcrumb { color: rgba(255,255,255,0.8) !important; }
.page-banner .breadcrumb a { color: #fff !important; }
