* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --indigo: #3b4a8a;
    --indigo-dark: #2b3768;
    --red: #d94f3d;
    --white: #f6f7fb;
    --text: #2c3350;
    --text-light: #6b7280;
    --font: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--text);
    background-color: var(--white);
    background-image:
        radial-gradient(circle, rgba(59,74,138,0.16) 2px, transparent 2.5px),
        radial-gradient(circle, rgba(217,79,61,0.12) 1.5px, transparent 2px);
    background-size: 56px 56px, 28px 28px;
    background-position: 0 0, 14px 14px;
    line-height: 1.7;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.panel-bg { background: rgba(246,247,251,0.65); }

.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(246,247,251,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(59,74,138,0.15); transition: all 0.4s; }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.logo { font-size: 24px; font-weight: 800; color: var(--indigo-dark); text-decoration: none; letter-spacing: 2px; display: flex; align-items: center; gap: 10px; }
.logo::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px rgba(217,79,61,0.15); }
.nav-menu { display: flex; list-style: none; gap: 30px; }
.nav-menu a { text-decoration: none; color: var(--text); font-size: 15px; font-weight: 500; position: relative; padding: 6px 0; transition: color 0.3s; }
.nav-menu a::before { content: '●'; font-size: 8px; margin-right: 6px; color: var(--red); opacity: 0; transform: translateY(4px); display: inline-block; transition: all 0.3s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--indigo); }
.nav-menu a:hover::before, .nav-menu a.active::before { opacity: 1; transform: translateY(0); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 26px; height: 3px; border-radius: 3px; background: var(--indigo); transition: 0.3s; }

.btn { display: inline-block; padding: 14px 34px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 15px; transition: 0.3s; cursor: pointer; border: none; }
.btn-primary { background: var(--indigo); color: #fff; }
.btn-primary:hover { background: var(--indigo-dark); transform: translateY(-3px); box-shadow: 0 10px 26px rgba(59,74,138,0.3); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(217,79,61,0.35); }
.btn-outline { background: transparent; color: var(--indigo); border: 2px solid var(--indigo); }
.btn-outline:hover { background: var(--indigo); color: #fff; }

.hero { min-height: 100vh; padding-top: 70px; display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 40px; position: relative; overflow: hidden; }
.hero-content { padding: 60px 0 60px 60px; }
.hero-tag { display: inline-flex; align-items: center; gap: 10px; background: rgba(217,79,61,0.1); color: var(--red); padding: 8px 20px; border-radius: 30px; font-size: 14px; font-weight: 600; margin-bottom: 24px; }
.hero-tag::before { content: '●'; font-size: 10px; }
.hero-content h1 { font-size: clamp(40px, 5vw, 62px); line-height: 1.15; color: var(--indigo-dark); margin-bottom: 20px; font-weight: 800; }
.hero-content p { font-size: 18px; color: var(--text-light); margin-bottom: 32px; max-width: 500px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 44px; }
.hero-stats div { position: relative; padding-left: 26px; font-size: 14px; color: var(--text-light); }
.hero-stats div::before { content: '●'; position: absolute; left: 0; top: 4px; color: var(--red); font-size: 14px; }
.hero-stats span { display: block; font-size: 30px; font-weight: 800; color: var(--indigo); }

.hero-ring { display: flex; align-items: center; justify-content: center; position: relative; padding: 40px; }
.ring { position: relative; width: 340px; height: 340px; border-radius: 50%; border: 2px dashed rgba(59,74,138,0.45); display: flex; align-items: center; justify-content: center; animation: spin 40s linear infinite; }
.ring::before { content: ''; position: absolute; width: 230px; height: 230px; border-radius: 50%; border: 1px solid rgba(59,74,138,0.3); }
.ring::after { content: ''; position: absolute; width: 130px; height: 130px; border-radius: 50%; border: 2px solid rgba(217,79,61,0.35); }
.ring-dot { position: absolute; width: 16px; height: 16px; border-radius: 50%; background: var(--red); top: 0; left: 50%; transform: translateX(-50%); box-shadow: 0 0 0 8px rgba(217,79,61,0.18); }
.ring-center { width: 70px; height: 70px; border-radius: 50%; background: var(--indigo); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-align: center; }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.hero-dots { position: absolute; font-size: 40px; color: var(--indigo); opacity: 0.15; line-height: 1; letter-spacing: 10px; }
.hero-dots.d1 { top: 12%; left: 4%; }
.hero-dots.d2 { bottom: 14%; right: 2%; color: var(--red); }

.section-header { padding: 60px 0 40px; text-align: center; }
.section-title { display: flex; align-items: center; justify-content: center; gap: 14px; font-size: clamp(30px, 3.5vw, 44px); color: var(--indigo-dark); font-weight: 800; }
.section-title .dot-seq { display: flex; gap: 6px; align-items: center; }
.section-title .dot-seq i { width: 10px; height: 10px; border-radius: 50%; background: var(--red); display: block; }
.section-title .dot-seq i:nth-child(2) { width: 6px; height: 6px; opacity: 0.6; }
.section-title .dot-seq i:nth-child(3) { width: 4px; height: 4px; opacity: 0.35; }
.section-sub { color: var(--text-light); font-size: 16px; margin-top: 12px; }

.method-strip { display: flex; justify-content: space-between; align-items: center; position: relative; padding-bottom: 60px; }
.method-strip::before { content: ''; position: absolute; top: 34px; left: 8%; right: 8%; border-top: 2px dotted rgba(59,74,138,0.4); }
.method-step { text-align: center; position: relative; z-index: 1; flex: 1; }
.method-node { width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 50%; background: var(--indigo); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; border: 8px solid var(--white); box-shadow: 0 0 0 1px rgba(59,74,138,0.4); }
.method-step:nth-child(even) .method-node { background: var(--red); box-shadow: 0 0 0 1px rgba(217,79,61,0.4); }
.method-step h3 { font-size: 17px; color: var(--indigo-dark); margin-bottom: 6px; }
.method-step p { font-size: 14px; color: var(--text-light); max-width: 170px; margin: 0 auto; }

.service-panel { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding-bottom: 60px; }
.service-round { text-align: center; padding: 36px 20px; border-radius: 50%; width: 220px; height: 220px; margin: 0 auto; background: rgba(255,255,255,0.7); border: 2px dashed rgba(59,74,138,0.35); display: flex; flex-direction: column; align-items: center; justify-content: center; transition: 0.4s; }
.service-round:hover { transform: scale(1.06); border-style: solid; border-color: var(--red); box-shadow: 0 16px 40px rgba(59,74,138,0.15); }
.service-round .s-icon { width: 54px; height: 54px; border-radius: 50%; background: var(--indigo); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
.service-round:nth-child(even) .s-icon { background: var(--red); }
.service-round h3 { font-size: 17px; color: var(--indigo-dark); margin-bottom: 6px; }
.service-round p { font-size: 13px; color: var(--text-light); }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-bottom: 60px; }
.work-item { text-align: center; }
.work-frame { width: 260px; height: 260px; margin: 0 auto 20px; border-radius: 50%; padding: 10px; border: 2px dashed rgba(59,74,138,0.4); transition: 0.4s; }
.work-frame img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }
.work-frame:hover { border-color: var(--red); transform: rotate(6deg) scale(1.03); }
.work-item h3 { font-size: 18px; color: var(--indigo-dark); margin-bottom: 4px; }
.work-item p { font-size: 14px; color: var(--text-light); }

.review-panel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; padding-bottom: 60px; }
.review-card { position: relative; background: rgba(255,255,255,0.85); border-radius: 20px; padding: 30px; box-shadow: 0 8px 26px rgba(59,74,138,0.08); transition: 0.4s; border: 1px solid rgba(59,74,138,0.1); }
.review-card::before { content: '●'; position: absolute; top: -12px; left: 30px; color: var(--red); font-size: 22px; }
.review-card:hover { transform: translateY(-6px); }
.stars { color: var(--red); font-size: 16px; letter-spacing: 3px; margin-bottom: 14px; }
.review-card p { color: var(--text); font-size: 15px; margin-bottom: 18px; }
.review-author strong { display: block; color: var(--indigo-dark); }
.review-author span { font-size: 13px; color: var(--text-light); }

.page-hero { min-height: 55vh; padding-top: 70px; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; }
.page-hero-inner { padding: 60px 0; }
.page-hero-inner h1 { font-size: clamp(34px, 4vw, 52px); color: var(--indigo-dark); margin-bottom: 12px; }
.page-hero-inner p { color: var(--text-light); font-size: 16px; }
.hero-ring-mini { width: 120px; height: 120px; border-radius: 50%; border: 2px dashed rgba(217,79,61,0.4); margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; animation: spin 30s linear infinite; position: relative; }
.hero-ring-mini::before { content: ''; width: 50px; height: 50px; border-radius: 50%; background: var(--indigo); }
.hero-ring-mini i { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--red); top: -6px; left: 50%; transform: translateX(-50%); }

.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 40px 0 60px; }
.about-img { position: relative; }
.about-img img { width: 100%; height: 420px; object-fit: cover; border-radius: 200px 200px 20px 20px; display: block; }
.about-img .dot-badge { position: absolute; right: -20px; bottom: 40px; width: 90px; height: 90px; border-radius: 50%; background: var(--red); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 12px; }
.about-img .dot-badge span { font-size: 26px; font-weight: 800; }
.about-text h2 { font-size: clamp(28px, 3vw, 40px); color: var(--indigo-dark); margin-bottom: 18px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; }
.dot-tag { display: inline-block; margin-bottom: 14px; color: var(--red); font-weight: 700; letter-spacing: 2px; }
.dot-tag::before { content: '●'; margin-right: 8px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; padding-bottom: 60px; }
.team-card { text-align: center; background: rgba(255,255,255,0.85); border-radius: 20px; padding: 30px 20px; box-shadow: 0 8px 26px rgba(59,74,138,0.08); }
.team-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 4px solid var(--white); box-shadow: 0 0 0 2px rgba(59,74,138,0.3); margin-bottom: 16px; }
.team-card h3 { font-size: 17px; color: var(--indigo-dark); }
.team-card span { font-size: 13px; color: var(--red); font-weight: 600; }

.timeline { position: relative; max-width: 800px; margin: 0 auto; padding: 20px 0 60px; }
.timeline::before { content: ''; position: absolute; left: 30px; top: 0; bottom: 0; border-left: 2px dotted rgba(59,74,138,0.4); }
.tl-item { position: relative; padding: 0 0 30px 90px; }
.tl-item::before { content: ''; position: absolute; left: 17px; top: 8px; width: 28px; height: 28px; border-radius: 50%; background: var(--white); border: 2px solid var(--red); }
.tl-item::after { content: ''; position: absolute; left: 26px; top: 17px; width: 10px; height: 10px; border-radius: 50%; background: var(--red); }
.tl-year { font-size: 14px; color: var(--red); font-weight: 700; }
.tl-item h3 { font-size: 18px; color: var(--indigo-dark); margin: 4px 0; }
.tl-item p { color: var(--text-light); font-size: 14px; }

.filter-bar { display: flex; justify-content: center; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn { padding: 10px 26px; border-radius: 30px; border: 2px solid rgba(59,74,138,0.25); background: transparent; color: var(--indigo-dark); font-size: 14px; cursor: pointer; font-weight: 600; transition: 0.3s; }
.filter-btn:hover, .filter-btn.active { background: var(--indigo); border-color: var(--indigo); color: #fff; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; padding-bottom: 60px; }
.news-card { background: rgba(255,255,255,0.85); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 26px rgba(59,74,138,0.08); transition: 0.4s; border: 1px solid rgba(59,74,138,0.1); }
.news-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(59,74,138,0.14); }
.news-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.news-body { padding: 22px; }
.news-date { font-size: 13px; color: var(--red); font-weight: 600; display: block; margin-bottom: 8px; }
.news-body h3 { font-size: 17px; color: var(--indigo-dark); margin-bottom: 8px; line-height: 1.5; }
.news-body p { font-size: 14px; color: var(--text-light); }
.news-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding-bottom: 60px; }
.news-feature { border-radius: 20px; overflow: hidden; background: rgba(255,255,255,0.85); box-shadow: 0 8px 26px rgba(59,74,138,0.08); }
.news-feature img { width: 100%; height: 320px; object-fit: cover; display: block; }
.news-feature .news-body { padding: 28px; }
.news-feature h3 { font-size: 22px; }
.news-side { display: flex; flex-direction: column; gap: 20px; }
.news-sm { display: flex; gap: 16px; background: rgba(255,255,255,0.85); border-radius: 14px; padding: 14px; box-shadow: 0 4px 14px rgba(59,74,138,0.06); }
.news-sm img { width: 110px; height: 82px; object-fit: cover; border-radius: 10px; }
.news-sm h4 { font-size: 14px; color: var(--indigo-dark); line-height: 1.5; margin-bottom: 4px; }
.news-sm span { font-size: 12px; color: var(--text-light); }

.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px 0 60px; }
.info-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.info-item { background: rgba(255,255,255,0.85); border-radius: 18px; padding: 26px; box-shadow: 0 8px 26px rgba(59,74,138,0.08); border: 1px solid rgba(59,74,138,0.1); text-align: center; }
.info-item .info-ic { width: 54px; height: 54px; margin: 0 auto 12px; border-radius: 50%; background: var(--indigo); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.info-item:nth-child(even) .info-ic { background: var(--red); }
.info-item h3 { font-size: 15px; color: var(--indigo-dark); margin-bottom: 6px; }
.info-item p { font-size: 14px; color: var(--text-light); }
.contact-form { background: rgba(255,255,255,0.9); border-radius: 20px; padding: 36px; box-shadow: 0 12px 34px rgba(59,74,138,0.1); border: 1px solid rgba(59,74,138,0.12); }
.contact-form h2 { font-size: 26px; color: var(--indigo-dark); margin-bottom: 6px; }
.contact-form > p { color: var(--text-light); margin-bottom: 22px; font-size: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; color: var(--indigo-dark); font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 13px 16px; border: 2px solid rgba(59,74,138,0.15); border-radius: 12px; font-size: 15px; background: var(--white); outline: none; font-family: inherit; transition: 0.3s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--indigo); box-shadow: 0 0 0 4px rgba(59,74,138,0.08); }
.form-group input.error, .form-group textarea.error { border-color: var(--red); }
.form-group textarea { min-height: 120px; resize: vertical; }

.footer { background: var(--indigo-dark); color: rgba(255,255,255,0.85); padding: 60px 0 0; position: relative; }
.footer::before { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 4px; background: radial-gradient(circle, var(--red) 3px, transparent 4px) repeat-x; background-size: 24px 4px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
.footer-brand h3 { font-size: 22px; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-brand h3::before { content: ''; width: 14px; height: 14px; border-radius: 50%; background: var(--red); }
.footer-brand p { font-size: 14px; line-height: 1.8; opacity: 0.75; }
.footer-links h4, .footer-contact h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer-links a { display: block; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; padding: 4px 0; transition: 0.3s; }
.footer-links a:hover { color: var(--red); padding-left: 6px; }
.footer-contact p { font-size: 14px; padding: 4px 0; opacity: 0.75; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 0; text-align: center; font-size: 13px; opacity: 0.6; }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-content { padding: 60px 24px; }
    .hero-content p { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-ring { order: -1; }
    .service-panel { grid-template-columns: 1fr 1fr; }
    .work-grid, .team-grid { grid-template-columns: 1fr 1fr; }
    .about-story { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr 1fr; }
    .news-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu { position: fixed; top: 70px; left: -100%; width: 78%; height: calc(100vh - 70px); background: var(--white); flex-direction: column; padding: 32px; gap: 18px; transition: 0.3s; box-shadow: 4px 0 24px rgba(0,0,0,0.08); z-index: 999; }
    .nav-menu.active { left: 0; }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
    .ring { width: 240px; height: 240px; }
    .service-panel { grid-template-columns: 1fr; }
    .work-grid, .team-grid, .review-panel, .news-grid { grid-template-columns: 1fr; }
    .contact-wrap { grid-template-columns: 1fr; }
    .info-list { grid-template-columns: 1fr; }
    .method-strip { flex-direction: column; gap: 30px; }
    .method-strip::before { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ================= CMS 适配 ================= */
.cms-section { padding: 60px 24px; }
.cms-detail { max-width: 900px; margin: 0 auto; }
.cms-detail > img { border-radius: 20px; margin: 0 auto 20px; max-width: 100%; display: block; }
.cms-detail h1 { font-size: 30px; margin: 18px 0; color: var(--indigo-dark); }
.cms-detail .lead { color: var(--text-light); margin-bottom: 20px; font-size: 17px; }
.cms-detail .news-date-label { display: inline-block; background: var(--indigo); color: #fff; font-size: 13px; font-weight: 700; padding: 5px 16px; border-radius: 30px; margin-bottom: 10px; }
.cms-content h2 { font-size: 24px; margin: 26px 0 12px; color: var(--indigo-dark); }
.cms-content h3 { font-size: 20px; margin: 22px 0 10px; color: var(--indigo-dark); }
.cms-content p, .cms-content ul, .cms-content li { color: var(--text); margin-bottom: 15px; line-height: 1.9; }
.cms-content ul { padding-left: 18px; list-style: disc; }
.cms-content img { border-radius: 16px; max-width: 100%; }
.cms-back { display: inline-block; color: var(--indigo); font-size: 15px; font-weight: 700; margin-bottom: 20px; text-decoration: none; }
.cms-back:hover { text-decoration: underline; }
.spec-list { list-style: none; padding: 0; margin: 0; }
.spec-list li { color: var(--text-light); padding: 10px 0; border-bottom: 2px dashed rgba(59,74,138,0.2); font-size: 15px; }
.spec-list li b { color: var(--indigo); }
.cms-pager { padding: 30px 0; text-align: center; }
.cms-pager .pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.cms-pager .page-link { padding: 10px 16px; border: 1px solid rgba(59,74,138,0.35); border-radius: 30px; background: #fff; color: var(--indigo); font-size: 14px; transition: 0.3s; display: inline-block; text-decoration: none; }
.cms-pager .page-link:hover { border-color: var(--indigo); color: var(--indigo); }
.cms-pager .page-item.active .page-link { background: var(--indigo); border-color: var(--indigo); color: #fff; }
.cms-pager .page-item.disabled .page-link { opacity: 0.5; pointer-events: none; }
.cms-pager .page-item.disabled .page-link, .cms-pager .page-item.active .page-link { cursor: default; }

/* 详情页 / 列表内链接去默认蓝下划线 */
.cms-content a, .cms-detail a { color: var(--indigo); }
.work-item a, .news-card a, .news-feature a, .news-sm a { color: inherit; text-decoration: none; }
.work-item h3 a, .news-card h3 a, .news-feature h3 a, .news-sm h4 a { color: var(--indigo-dark); text-decoration: none; }
.work-item h3 a:hover, .news-card h3 a:hover, .news-feature h3 a:hover, .news-sm h4 a:hover { color: var(--red); }

/* 淡入动画（源站 .reveal 并存） */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.7s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.no-js .reveal, .no-js .fade-in { opacity: 1; transform: none; }

/* 分类筛选（产品 / 服务页） */
.cat-tabs { display: flex; justify-content: center; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }
.cat-tab { padding: 10px 26px; border-radius: 30px; border: 2px solid rgba(59,74,138,0.25); background: transparent; color: var(--indigo-dark); font-size: 14px; cursor: pointer; font-weight: 600; transition: 0.3s; font-family: inherit; }
.cat-tab:hover, .cat-tab.active { background: var(--indigo); border-color: var(--indigo); color: #fff; }

/* 服务价格（产品 = 服务项目） */
.s-price { color: var(--red); font-weight: 700; font-size: 15px; margin-top: 6px; }

/* 面包屑 */
.crumbs { color: var(--text-light); font-size: 14px; margin-top: 14px; }
.crumbs a { color: var(--indigo); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* 表单成功 / 错误提示 */
.form-success { display: none; background: #e8f7ee; border: 1px solid #a5e0bd; color: #1e7a44; padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; font-size: 14px; }
.form-success.show { display: block; }
.form-alert-err { background: #fdecea; border: 1px solid #f3c6c0; color: #b23b35; padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; }
.form-alert-err li { color: #b23b35; }
.form-group label em { color: var(--red); font-style: normal; }
.form-group input.invalid, .form-group textarea.invalid, .form-group select.invalid { border-color: var(--red); }
.form-group .error-msg { color: var(--red); font-size: 13px; margin-top: 6px; display: none; }
.form-group.invalid .error-msg { display: block; }
.form-submit { width: 100%; color: #fff; }
.form-submit:hover { background: var(--indigo-dark); }

/* 首页预约表单卡片 */
.home-form-wrap { background: rgba(255,255,255,0.9); border-radius: 20px; padding: 36px; box-shadow: 0 12px 34px rgba(59,74,138,0.1); border: 1px solid rgba(59,74,138,0.12); max-width: 720px; margin: 0 auto; }
.home-form-wrap h2 { font-size: 26px; color: var(--indigo-dark); margin-bottom: 6px; }
.home-form-wrap > p { color: var(--text-light); margin-bottom: 22px; font-size: 14px; }
.home-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.home-form-grid .form-group.wide { grid-column: 1 / -1; }
@media (max-width: 768px) { .home-form-grid { grid-template-columns: 1fr; } }

/* 荣誉资质 */
.honor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; padding-bottom: 60px; }
.honor-card { background: rgba(255,255,255,0.85); border-radius: 20px; padding: 24px; box-shadow: 0 8px 26px rgba(59,74,138,0.08); border: 1px solid rgba(59,74,138,0.1); transition: 0.4s; text-align: center; }
.honor-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(59,74,138,0.14); }
.honor-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 14px; margin-bottom: 16px; display: block; }
.honor-card .h-date { display: inline-block; background: rgba(217,79,61,0.1); color: var(--red); font-size: 13px; font-weight: 700; padding: 3px 14px; border-radius: 30px; margin-bottom: 8px; }
.honor-card h3 { font-size: 16px; color: var(--indigo-dark); margin-bottom: 6px; }
.honor-card p { font-size: 13px; color: var(--text-light); }
@media (max-width: 1024px) { .honor-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .honor-grid { grid-template-columns: 1fr; } }

/* 团队占位头像 */
.team-card-img-ph { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 16px; background: var(--indigo); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 40px; font-weight: 800; }

/* 统计数字标签（区别于大号数字 span） */
.hero-stats .hero-stat-label { display: block; font-size: 14px; font-weight: 400; color: var(--text-light); }

/* 服务圆环 / 价值原点 卡片链接去默认蓝下划线 */
.service-round h3 a { color: var(--indigo-dark); text-decoration: none; }
.service-round h3 a:hover { color: var(--red); }

/* ===== CMS global link-color reset (fixes default blue/underline) ===== */
a:has(h1), a:has(h2), a:has(h3), a:has(h4), a:has(img),
a.logo, a.logo *, .logo, .logo *,
a.news-thumb, a.news-thumb *, a.prod-thumb, a.prod-thumb *,
a.img-wrap, a.img-wrap *, a.thumb, a.thumb *, a.cover, a.cover *,
a[style*='background-image'], a[style*='background'],
a.card, a.card *, a.work-card, a.work-card *, a.product-card, a.product-card *,
a.news-card, a.news-card *, a.news-item, a.news-item *, a.case-card, a.case-card *,
a.service-card, a.service-card *, a.svc-card, a.svc-card *, a.item-card, a.item-card * {
  color: inherit !important;
  text-decoration: none !important;
}
a:has(h1):hover, a:has(h2):hover, a:has(h3):hover, a:has(h4):hover,
a.logo:hover, .logo:hover, a.card:hover, a.card *:hover,
a.news-thumb:hover, a.prod-thumb:hover, a.work-card:hover, a.product-card:hover,
a.news-card:hover, a.news-item:hover, a.case-card:hover, a.service-card:hover { color: inherit !important; }
a.prod-img-link, a.prod-img-link *,
a.img-link, a.img-link *, a.thumb-link, a.thumb-link *,
a.cover-link, a.cover-link *, a.media-link, a.media-link *,
a[class*='-thumb'], a[class*='-img'], a[class*='-cover'],
a[class*='thumb-'], a[class*='img-'],
a.img-side, a.img-side *, a.pic, a.pic *, a.pic-link, a.pic-link * {
  color: inherit !important;
  text-decoration: none !important;
}
/* ===== CMS heading-link reset (anchor inside heading) ===== */
h1 a, h2 a, h3 a, h4 a, h5 a {
  color: inherit !important;
  text-decoration: none !important;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover { color: inherit !important; }
