/* ========== 慕名融创财税官网 样式表 ========== */
/* 主色调：深蓝色系，专业财税风格 */

:root {
    --primary: #1E3A8A;
    --primary-dark: #172554;
    --primary-light: #3B82F6;
    --accent: #F97316;
    --accent-light: #FB923C;
    --success: #10B981;
    --text: #1F2937;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    --bg: #FFFFFF;
    --bg-gray: #F8FAFC;
    --bg-dark: #1E3A8A;
    --border: #E5E7EB;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 6px 24px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 15px;
}
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ========== 按钮 ========== */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #EA580C; color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.btn-secondary { background: var(--primary-light); color: #fff; }
.btn-secondary:hover { background: #2563EB; color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: #fff; color: var(--primary); }
.btn-large { padding: 14px 32px; font-size: 16px; }
.btn-small { padding: 6px 14px; font-size: 13px; }

/* ========== 顶部导航（固定不滚动） ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.logo { display: flex; align-items: center; }
.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}
.main-nav { display: flex; gap: 8px; }
.main-nav a {
    padding: 8px 14px;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); background: rgba(26,58,108,0.06); }
.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
}
.header-phone:hover { color: #fff; background: var(--primary-dark); }
.phone-icon { font-size: 16px; }
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s;
}
.header-placeholder { height: 70px; }

/* ========== Banner ========== */
.banner-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,169,97,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.banner-inner { position: relative; z-index: 1; text-align: center; }
.banner-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}
.banner-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.banner-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== 通用区块 ========== */
section { padding: 60px 0; }
.section-alt { background: var(--bg-gray); }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header-between { display: flex; justify-content: space-between; align-items: flex-end; text-align: left; }
.section-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}
.section-desc { color: var(--text-light); font-size: 16px; }
.section-title-center { text-align: center; font-size: 28px; color: var(--primary-dark); margin-bottom: 30px; }
.section-more { text-align: center; margin-top: 30px; }

/* ========== 核心资质区 ========== */
.qualification-section { background: var(--bg-gray); padding: 50px 0; }
.qualification-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.qual-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--text-light);
    transition: transform 0.2s, box-shadow 0.2s;
}
.qual-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.qual-icon { font-size: 40px; margin-bottom: 12px; }
.qual-card h3 { font-size: 20px; color: var(--primary-dark); margin-bottom: 10px; }
.qual-number { font-size: 16px; font-weight: 700; color: var(--accent); margin-bottom: 8px; }
.qual-desc { font-size: 14px; color: var(--text-light); }

/* ========== 数据展示 ========== */
.stats-section { padding: 50px 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-item { text-align: center; padding: 20px 10px; }
.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}
.stat-plus, .stat-percent { font-size: 20px; color: var(--accent); }
.stat-label { font-size: 14px; color: var(--text-light); margin-top: 6px; }

/* ========== 服务卡片 ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.2s;
    display: block;
    color: var(--text);
}
.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
    color: var(--text);
}
.service-icon { font-size: 32px; margin-bottom: 12px; }
.service-card h3 { font-size: 17px; color: var(--primary-dark); margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.service-more { font-size: 13px; color: var(--primary); font-weight: 500; }

/* ========== 成功案例 ========== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.case-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: all 0.2s;
}
.case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.case-tag {
    display: inline-block;
    background: rgba(26,58,108,0.1);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 12px;
}
.case-card h3 { font-size: 16px; color: var(--primary-dark); margin-bottom: 10px; line-height: 1.4; }
.case-desc { font-size: 13px; color: var(--text-light); margin-bottom: 14px; line-height: 1.6; }
.case-result {
    background: linear-gradient(135deg, var(--success), #059669);
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* ========== 核心优势 ========== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.advantage-item {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 16px;
}
.adv-icon { font-size: 36px; flex-shrink: 0; }
.advantage-item h3 { font-size: 18px; color: var(--primary-dark); margin-bottom: 8px; }
.advantage-item p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ========== P.A.S.S.模型 ========== */
.pass-intro {
    max-width: 900px;
    margin: 0 auto 36px;
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}
.pass-intro strong { color: var(--primary); }
.pass-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.pass-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border-bottom: 4px solid var(--primary);
    transition: all 0.2s;
}
.pass-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.pass-letter {
    width: 56px;
    height: 56px;
    line-height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 14px;
}
.pass-card h3 { font-size: 17px; color: var(--primary-dark); margin-bottom: 6px; }
.pass-subtitle { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.pass-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ========== 新闻 ========== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.news-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.2s;
    display: block;
    color: var(--text);
}
.news-card:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); color: var(--text); transform: translateY(-2px); }
.news-category {
    display: inline-block;
    background: rgba(249,115,22,0.12);
    color: #C2410C;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 12px;
}
.news-card h3 { font-size: 17px; color: var(--primary-dark); margin-bottom: 10px; line-height: 1.4; }
.news-summary { font-size: 14px; color: var(--text-light); margin-bottom: 14px; line-height: 1.6; }
.news-meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.news-date { color: var(--text-muted); }
.news-more { color: var(--primary); font-weight: 500; }

/* ========== 底部CTA ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.cta-inner h2 { font-size: 30px; margin-bottom: 12px; }
.cta-inner p { font-size: 16px; opacity: 0.9; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.cta-time { font-size: 14px; opacity: 0.8; }

/* ========== 页脚 ========== */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.8); padding: 50px 0 0; }
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 30px;
    padding-bottom: 40px;
}
.footer-col h3 { color: #fff; font-size: 20px; margin-bottom: 14px; }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 14px; }
.footer-col p { font-size: 14px; margin-bottom: 6px; line-height: 1.7; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-col ul li a:hover { color: var(--accent-light); }
.license { color: var(--accent-light); font-size: 13px; margin-top: 10px; }
.contact-list li { font-size: 14px; margin-bottom: 10px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.footer-bottom p { margin-bottom: 4px; }
.footer-bottom .icp-link {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}
.footer-bottom .icp-link:hover {
    color: rgba(255,255,255,0.8);
}
/* Canary Token（页面唯一校验码，用于测试AI搜索引擎收录，样式低调不显眼） */
.footer-canary {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    margin-top: 6px;
    letter-spacing: 0.5px;
}

/* ========== 内页Banner ========== */
.page-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.page-banner h1 { font-size: 32px; margin-bottom: 12px; }
.page-banner p { font-size: 16px; opacity: 0.9; max-width: 700px; margin: 0 auto; }

/* ========== 服务总览页 ========== */
.service-list { display: flex; flex-direction: column; gap: 16px; }
.service-list-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.2s;
}
.service-list-item:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.service-list-icon { font-size: 40px; flex-shrink: 0; }
.service-list-content { flex: 1; }
.service-list-content h2 { font-size: 20px; color: var(--primary-dark); margin-bottom: 6px; }
.service-list-content p { font-size: 14px; color: var(--text-light); }
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.guarantee-item {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow);
}
.guarantee-icon { font-size: 40px; margin-bottom: 12px; }
.guarantee-item h3 { font-size: 18px; color: var(--primary-dark); margin-bottom: 10px; }
.guarantee-item p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ========== 服务详情页 ========== */
.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    align-items: start;
}
.detail-block { margin-bottom: 36px; }
.detail-title {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 4px solid var(--primary);
}
.detail-tags { margin-top: 14px; }
.tag {
    display: inline-block;
    background: var(--bg-gray);
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
}
.content-item { margin-bottom: 20px; }
.content-item h3 { font-size: 17px; color: var(--primary); margin-bottom: 8px; }
.content-item p { font-size: 14px; color: var(--text-light); line-height: 1.8; }
.advantage-list, .suitable-list { list-style: none; }
.advantage-list li, .suitable-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px dashed var(--border);
}
.advantage-list li::before, .suitable-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}
.process-step {
    background: var(--bg-gray);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    position: relative;
}
.step-num {
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    margin: 0 auto 10px;
}
.step-text { font-size: 13px; color: var(--text); }
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
    background: var(--bg-gray);
    border-radius: var(--radius);
    padding: 18px 20px;
}
.faq-q { font-size: 15px; color: var(--primary-dark); margin-bottom: 8px; font-weight: 600; }
.faq-a { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* 侧边栏 */
.service-detail-sidebar { position: sticky; top: 90px; }
.sidebar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}
.sidebar-card h3 { font-size: 17px; color: var(--primary-dark); margin-bottom: 14px; }
.sidebar-card p { font-size: 14px; color: var(--text-light); margin-bottom: 10px; }
.sidebar-phone { display: block; width: 100%; margin-bottom: 10px; font-size: 15px; }
.sidebar-time { font-size: 12px; color: var(--text-muted); text-align: center; }
.other-services { list-style: none; }
.other-services li { padding: 8px 0; border-bottom: 1px dashed var(--border); }
.other-services li:last-child { border-bottom: none; }
.other-services li a { font-size: 14px; color: var(--text-light); }
.other-services li a:hover { color: var(--primary); }
.sidebar-guarantee ul { list-style: none; }
.sidebar-guarantee ul li { padding: 6px 0; font-size: 14px; color: var(--text-light); }

/* ========== 成功案例详情页 ========== */
.case-detail-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}
.case-detail-header { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.case-tag-large {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 12px;
}
.case-detail-header h2 { font-size: 24px; color: var(--primary-dark); line-height: 1.4; }
.case-block { margin-bottom: 24px; }
.case-block h3 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
.case-block p { font-size: 15px; color: var(--text-light); line-height: 1.8; }
.case-service-list { padding-left: 20px; }
.case-service-list li { margin-bottom: 10px; font-size: 14px; color: var(--text-light); line-height: 1.7; }
.case-result-block { background: var(--bg-gray); border-radius: var(--radius); padding: 20px; }
.case-highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 14px;
}
.case-compliance-block { background: rgba(201,169,97,0.08); border-left: 4px solid var(--accent); padding: 20px; border-radius: 0 var(--radius) var(--radius) 0; }
.cases-summary {
    background: var(--primary-dark);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: 30px;
}
.cases-summary h3 { font-size: 20px; margin-bottom: 14px; color: var(--accent-light); }
.cases-summary p { font-size: 15px; line-height: 1.8; opacity: 0.9; }

/* ========== 新闻列表页 ========== */
.news-category-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.cat-tab {
    padding: 8px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text);
    transition: all 0.2s;
}
.cat-tab:hover { border-color: var(--primary); color: var(--primary); }
.cat-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-list-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 20px;
    transition: all 0.2s;
}
.news-list-item:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.news-list-left { flex-shrink: 0; }
.news-category-tag {
    display: inline-block;
    background: rgba(249,115,22,0.12);
    color: #C2410C;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
}
.news-list-content { flex: 1; }
.news-list-content h2 { font-size: 19px; margin-bottom: 10px; line-height: 1.4; }
.news-list-content h2 a { color: var(--primary-dark); }
.news-list-content h2 a:hover { color: var(--primary); }
.news-list-summary { font-size: 14px; color: var(--text-light); margin-bottom: 12px; line-height: 1.7; }
.news-list-meta { display: flex; justify-content: space-between; align-items: center; }
.news-date { font-size: 13px; color: var(--text-muted); }
.news-read-more { font-size: 14px; color: var(--primary); font-weight: 500; }
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.page-link {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 14px;
    color: var(--text);
    background: #fff;
}
.page-link:hover { border-color: var(--primary); color: var(--primary); }
.page-link.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.empty-tip { text-align: center; padding: 60px 20px; color: var(--text-muted); }

/* ========== 新闻详情页 ========== */
.news-detail-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    align-items: start;
}
.breadcrumb {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-light); }
.news-detail-header { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.news-detail-header h1 { font-size: 28px; color: var(--primary-dark); margin: 12px 0; line-height: 1.4; }
.news-detail-meta { font-size: 14px; color: var(--text-muted); }
.news-detail-content {
    font-size: 16px;
    line-height: 2;
    color: var(--text);
    margin-bottom: 30px;
}
.news-detail-content p { margin-bottom: 16px; }
.news-detail-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 16px auto;
    border-radius: 6px;
}
.news-detail-content h1, .news-detail-content h2, .news-detail-content h3 {
    margin: 24px 0 12px;
    font-weight: 600;
    color: var(--primary-dark);
}
.news-detail-content ul, .news-detail-content ol {
    margin: 12px 0;
    padding-left: 24px;
}
.news-detail-content blockquote {
    border-left: 4px solid var(--primary-light);
    padding: 12px 16px;
    margin: 16px 0;
    color: var(--text-light);
    font-style: italic;
    background: var(--bg-gray);
    border-radius: 0 6px 6px 0;
}
.news-detail-content a {
    color: var(--primary-light);
    text-decoration: underline;
}

/* ========== 页面头部（通用） ========== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 60px 0 50px;
}
.page-hero .breadcrumb { margin-bottom: 16px; font-size: 14px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.9); }
.page-title { font-size: 36px; font-weight: 700; margin-bottom: 12px; }
.page-subtitle { font-size: 16px; opacity: 0.85; max-width: 700px; line-height: 1.7; }

/* ========== FAQ页面 ========== */
.faq-section { padding: 50px 0; background: var(--bg); }
.faq-category { margin-bottom: 40px; }
.faq-category-title {
    font-size: 22px; font-weight: 700; color: var(--primary-dark);
    margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--primary-light);
}
.faq-item {
    background: #fff; border-radius: var(--radius); padding: 24px 28px;
    margin-bottom: 16px; box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-light); transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-question { font-size: 17px; font-weight: 600; color: var(--primary-dark); margin-bottom: 12px; line-height: 1.6; }
.faq-answer p { font-size: 15px; line-height: 1.9; color: var(--text-light); margin: 0; }

/* ========== CTA区域（通用） ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff; padding: 50px 0; text-align: center;
}
.cta-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.cta-section p { font-size: 16px; opacity: 0.85; margin-bottom: 24px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.news-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.news-nav-item { font-size: 14px; }
.nav-label { display: block; color: var(--text-muted); margin-bottom: 4px; font-size: 12px; }
.nav-none { color: var(--text-muted); }
.back-to-list { margin-bottom: 30px; }
.related-news-list { list-style: none; }
.related-news-list li { padding: 10px 0; border-bottom: 1px dashed var(--border); }
.related-news-list li:last-child { border-bottom: none; }
.related-news-list li a { font-size: 14px; color: var(--text); display: block; margin-bottom: 4px; line-height: 1.5; }
.related-news-list li a:hover { color: var(--primary); }
.related-date { font-size: 12px; color: var(--text-muted); }
.sidebar-cat-list { list-style: none; }
.sidebar-cat-list li { padding: 8px 0; border-bottom: 1px dashed var(--border); }
.sidebar-cat-list li:last-child { border-bottom: none; }
.sidebar-cat-list li a { font-size: 14px; color: var(--text-light); }
.sidebar-cat-list li a:hover { color: var(--primary); }

/* ========== 关于我们页 ========== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    align-items: start;
}
.about-block { margin-bottom: 36px; }
.about-title {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 4px solid var(--primary);
}
.about-block p { font-size: 15px; color: var(--text-light); line-height: 1.9; margin-bottom: 12px; }
.about-block strong { color: var(--primary); }
.honor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.honor-card {
    background: var(--bg-gray);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    border-top: 3px solid var(--success);
}
.honor-icon { font-size: 36px; margin-bottom: 10px; }
.honor-card h3 { font-size: 16px; color: var(--primary-dark); margin-bottom: 8px; }
.honor-card p { font-size: 13px; color: var(--text-light); margin-bottom: 4px; }
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.about-stat {
    background: var(--bg-gray);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}
.about-stat strong {
    display: block;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 4px;
}
.about-stat span { font-size: 13px; color: var(--text-light); }
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
}
.coverage-item {
    background: var(--bg-gray);
    border-radius: var(--radius);
    padding: 18px;
}
.coverage-item h4 { font-size: 16px; color: var(--primary-dark); margin-bottom: 6px; }
.coverage-item p { font-size: 13px; color: var(--text-light); }
.about-address { font-size: 14px; color: var(--text); margin-bottom: 6px; }
.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.culture-item {
    background: var(--bg-gray);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}
.culture-item h4 { font-size: 18px; color: var(--primary); margin-bottom: 8px; }
.culture-item p { font-size: 13px; color: var(--text-light); }
.sidebar-quick-nav { list-style: none; }
.sidebar-quick-nav li { padding: 10px 0; border-bottom: 1px dashed var(--border); }
.sidebar-quick-nav li:last-child { border-bottom: none; }
.sidebar-quick-nav li a { font-size: 14px; color: var(--text-light); }
.sidebar-quick-nav li a:hover { color: var(--primary); }

/* ========== 联系我们页 ========== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}
.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.2s;
}
.contact-card:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.contact-icon { font-size: 44px; margin-bottom: 14px; }
.contact-card h3 { font-size: 20px; color: var(--primary-dark); margin-bottom: 10px; }
.contact-value { font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.contact-desc { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }
.wechat-placeholder {
    background: var(--bg-gray);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 30px 20px;
    margin-top: 14px;
}
.wechat-placeholder p { font-size: 13px; color: var(--text-muted); }
.wechat-consult-btn { text-align: center; margin-top: 16px; }
.wechat-consult-btn .btn { display: inline-block; }
.service-time-list { list-style: none; text-align: left; margin-top: 14px; }
.service-time-list li { padding: 6px 0; font-size: 14px; color: var(--text-light); }
.address-section { margin-bottom: 50px; }
.address-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.address-card {
    background: var(--bg-gray);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}
.address-tag {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 12px;
}
.address-card h3 { font-size: 19px; color: var(--primary-dark); margin-bottom: 8px; }
.address-card p { font-size: 14px; color: var(--text-light); }
.coverage-section { margin-bottom: 50px; }
.coverage-desc { text-align: center; font-size: 15px; color: var(--text-light); margin-bottom: 24px; }
.coverage-cities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.city-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}
.city-item h4 { font-size: 20px; color: var(--primary); margin-bottom: 8px; }
.city-item p { font-size: 13px; color: var(--text-light); }
.contact-bottom-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
}
.contact-bottom-cta h2 { font-size: 26px; margin-bottom: 10px; }
.contact-bottom-cta p { font-size: 16px; opacity: 0.9; margin-bottom: 24px; }

/* ========== 响应式适配 ========== */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .cases-grid { grid-template-columns: repeat(2, 1fr); }
    .pass-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: repeat(2, 1fr); }
    .service-detail-layout, .news-detail-layout, .about-layout { grid-template-columns: 1fr; }
    .service-detail-sidebar, .news-detail-sidebar, .about-sidebar { position: static; }
    .honor-grid, .about-stats-grid, .culture-grid, .coverage-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid, .coverage-cities { grid-template-columns: repeat(2, 1fr); }
    .guarantee-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        gap: 4px;
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 12px 16px; }
    .menu-toggle { display: flex; }
    .header-phone { display: none; }
    .banner-title { font-size: 28px; }
    .banner-subtitle { font-size: 15px; }
    .section-title { font-size: 24px; }
    .qualification-cards { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid, .cases-grid, .pass-grid, .news-grid { grid-template-columns: 1fr; }
    .advantages-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .page-banner h1 { font-size: 24px; }
    .service-list-item { flex-direction: column; text-align: center; }
    .news-list-item { flex-direction: column; }
    .news-nav { grid-template-columns: 1fr; }
    .honor-grid, .about-stats-grid, .culture-grid, .coverage-grid, .contact-grid, .coverage-cities, .address-grid { grid-template-columns: 1fr; }
    .case-detail-item { padding: 20px; }
    .case-detail-header h2 { font-size: 20px; }
    .contact-bottom-cta { padding: 32px 20px; }
    .contact-bottom-cta h2 { font-size: 20px; }
    .cta-inner h2 { font-size: 22px; }
    .section-header-between { flex-direction: column; align-items: flex-start; gap: 16px; }
}
