/* ===== 全局变量 · 靛蓝+珊瑚橙 企业官网风 ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #4338CA;
    --primary-dark: #3730A3;
    --primary-light: #EEF2FF;
    --accent: #EA580C;
    --accent-light: #FFF7ED;
    --text: #1F2937;
    --text-muted: #6B7280;
    --bg: #FFFFFF;
    --bg-alt: #F9FAFB;
    --bg-dark: #111827;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(67,56,202,.08);
    --shadow-lg: 0 8px 30px rgba(67,56,202,.12);
    --radius: 10px;
    --radius-lg: 14px;
    --nav-h: 68px;
    --max-w: 1140px;
    --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

.z79244container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== 导航 ===== */
.z79244navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.z79244nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.z79244nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}

.z79244nav-logo i { font-size: 1.3rem; color: var(--accent); }

.z79244nav-menu {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}

.z79244nav-link {
    display: block;
    padding: 8px 14px;
    color: var(--text);
    font-size: .9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all var(--transition);
}

.z79244nav-link:hover,
.z79244nav-item.z79244this .z79244nav-link {
    color: var(--primary);
    background: var(--primary-light);
}

.z79244hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.z79244bar {
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.z79244hamburger.active .z79244bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.z79244hamburger.active .z79244bar:nth-child(2) { opacity: 0; }
.z79244hamburger.active .z79244bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.z79244menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 998;
}

/* ===== 通用板块头 ===== */
.z79244section-header {
    text-align: center;
    margin-bottom: 48px;
}

.z79244section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 10px;
}

.z79244section-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.z79244section-description {
    font-size: .95rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== 按钮 ===== */
.z79244btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: .9rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.z79244btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.z79244btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.z79244btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--border);
}

.z79244btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}

/* ===== 首屏 ===== */
.z79244hero {
    padding: calc(var(--nav-h) + 50px) 0 70px;
    background: linear-gradient(160deg, var(--primary-light) 0%, var(--bg) 55%);
    border-bottom: 1px solid var(--border-light);
}

.z79244hero-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
}

.z79244hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: .8rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 18px;
    border: 1px solid #FED7AA;
}

.z79244hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 16px;
}

.z79244hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.75;
}

.z79244hero-sub {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.8;
}

.z79244hero-sub strong { color: var(--text); font-weight: 600; }

.z79244hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.z79244hero-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.z79244hero-stats .z79244stat-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.z79244hero-stats .z79244stat-item span {
    font-size: .8rem;
    color: var(--text-muted);
}

.z79244hero-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.z79244hero-card-head {
    padding: 18px 22px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.z79244hero-card-list {
    list-style: none;
    padding: 20px 22px;
}

.z79244hero-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    font-size: .88rem;
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
}

.z79244hero-card-list li:last-child { border-bottom: none; }
.z79244hero-card-list i { color: var(--accent); flex-shrink: 0; }

/* ===== 服务中心 ===== */
.z79244services {
    padding: 80px 0;
    background: var(--bg);
}

.z79244services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.z79244service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all var(--transition);
}

.z79244service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.z79244service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 10px;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.z79244service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.z79244service-card p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.z79244service-card p strong { color: var(--text); font-weight: 600; }

/* ===== 知识板块 ===== */
.z79244knowledge {
    padding: 80px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.z79244knowledge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.z79244knowledge-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
}

.z79244knowledge-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.z79244knowledge-card h3 i { color: var(--primary); }

.z79244knowledge-card p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.z79244knowledge-card p strong { color: var(--text); font-weight: 600; }

/* ===== 专业保障 ===== */
.z79244about {
    padding: 80px 0;
    background: var(--bg);
}

.z79244about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.z79244about-text .z79244section-tag { display: block; text-align: left; }
.z79244about-text .z79244section-title { text-align: left; }

.z79244about-description {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.8;
}

.z79244about-description strong { color: var(--text); font-weight: 600; }

.z79244stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.z79244stat-item {
    text-align: center;
    padding: 18px 12px;
    background: var(--primary-light);
    border-radius: var(--radius);
    border: 1px solid #C7D2FE;
}

.z79244stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.z79244stat-label {
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.z79244tech-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.z79244tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 22px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: all var(--transition);
}

.z79244tech-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.z79244tech-item i { font-size: 1.5rem; color: var(--accent); }
.z79244tech-item span { font-size: .85rem; font-weight: 600; color: var(--text); }

/* ===== 委托流程 ===== */
.z79244cases {
    padding: 80px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
}

.z79244process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.z79244process-step {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
}

.z79244process-num {
    width: 40px;
    height: 40px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: .85rem;
    border-radius: 50%;
}

.z79244process-step h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.z79244process-step p {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===== 联系咨询 ===== */
.z79244contact {
    padding: 80px 0;
    background: var(--bg);
}

.z79244contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: start;
}

.z79244contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.z79244contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.z79244contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 10px;
    font-size: 1.1rem;
}

.z79244contact-details h3 {
    font-size: .92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.z79244contact-details p {
    font-size: .82rem;
    color: var(--text-muted);
}

.z79244contact-form {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.z79244form-group { margin-bottom: 14px; }

.z79244form-group input,
.z79244form-group select,
.z79244form-group textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: .9rem;
    color: var(--text);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color var(--transition);
    font-family: inherit;
}

.z79244form-group input:focus,
.z79244form-group select:focus,
.z79244form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67,56,202,.1);
}

.z79244form-group textarea { resize: vertical; min-height: 90px; }

/* ===== 最新资讯 ===== */
.z79244articles {
    padding: 80px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
}

.z79244articles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.z79244article-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.z79244article-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.z79244article-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.z79244articles .z79244article-thumb {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: var(--border-light);
}

.z79244articles .z79244article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z79244article-info { padding: 12px 14px; }

.z79244articles .z79244article-title {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.45;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.z79244articles .z79244article-date {
    font-size: .72rem;
    color: var(--text-muted);
}

.z79244articles .z79244article-date i { color: var(--accent); margin-right: 3px; }

/* ===== 页脚 ===== */
.z79244footer {
    background: var(--bg-dark);
    color: #D1D5DB;
    padding: 50px 0 24px;
}

.z79244footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 32px;
}

.z79244footer-section h3,
.z79244footer-section h4 {
    color: #fff;
    font-size: .95rem;
    margin-bottom: 14px;
}

.z79244footer-section p,
.z79244footer-section li {
    font-size: .82rem;
    color: #9CA3AF;
    margin-bottom: 6px;
    line-height: 1.6;
}

.z79244footer-section ul { list-style: none; }
.z79244footer-section a { color: #9CA3AF; }
.z79244footer-section a:hover { color: #fff; }

.z79244footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #374151;
    font-size: .8rem;
    color: #6B7280;
}

.z79244footer-bottom a { color: #D1D5DB; }
.z79244footer-bottom a:hover { color: #fff; }

/* ===== 内页通用 ===== */
.z79244page-banner {
    padding: calc(var(--nav-h) + 32px) 0 28px;
    background: linear-gradient(160deg, var(--primary-light) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
}

.z79244breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.z79244breadcrumb a { color: var(--text-muted); }
.z79244breadcrumb a:hover { color: var(--primary); }
.z79244breadcrumb-sep { color: var(--border); }
.z79244breadcrumb-current { color: var(--primary); font-weight: 500; }

.z79244page-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
}

.z79244page-wrap {
    padding: 36px 0 70px;
    background: var(--bg-alt);
}

.z79244page-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
    align-items: start;
}

.z79244main-content { min-width: 0; }

/* ===== 侧栏 ===== */
.z79244sidebar { position: sticky; top: calc(var(--nav-h) + 16px); }

.z79244sidebar-block {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.z79244sidebar-title {
    padding: 14px 18px;
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
}

.z79244sidebar-list {
    list-style: none;
    max-height: 520px;
    overflow-y: auto;
}

.z79244sidebar-item { border-bottom: 1px solid var(--border-light); }
.z79244sidebar-item:last-child { border-bottom: none; }

.z79244sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: inherit;
    text-decoration: none;
    transition: background var(--transition);
}

.z79244sidebar-link:hover { background: var(--primary-light); }

.z79244sidebar-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--border-light);
}

.z79244sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z79244sidebar-info { flex: 1; min-width: 0; }

.z79244sidebar-item-title {
    font-size: .8rem;
    color: var(--text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== 列表页 ===== */
.z79244list-grid {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.z79244list-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.z79244list-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.z79244list-card {
    display: flex;
    gap: 18px;
    padding: 16px;
    color: inherit;
    text-decoration: none;
}

.z79244list-thumb {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--border-light);
}

.z79244list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z79244list-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.z79244list-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.z79244list-item:hover .z79244list-title { color: var(--primary); }

.z79244list-intro {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.z79244list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .78rem;
    color: var(--text-muted);
}

.z79244list-meta i { color: var(--accent); margin-right: 3px; }

/* ===== 分页 ===== */
.z79244pagebar {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.z79244pages .pagelist {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    list-style: none;
}

.z79244pages .pagelist li.pageinfo {
    width: 100%;
    text-align: center;
    margin-bottom: 6px;
    font-size: .82rem;
    color: var(--text-muted);
}

.z79244pages .pagelist a,
.z79244pages .pagelist span {
    display: inline-block;
    padding: 7px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-size: .85rem;
    text-decoration: none;
    transition: all var(--transition);
}

.z79244pages .pagelist a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.z79244pages .pagelist .thisclass span,
.z79244pages .pagelist .thisclass a {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ===== 内容页 ===== */
.z79244article {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.z79244article-header {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.z79244article-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 12px;
}

.z79244article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: .82rem;
    color: var(--text-muted);
}

.z79244article-meta a { color: var(--primary); }
.z79244article-meta i { color: var(--accent); margin-right: 4px; }

.z79244article-thumb {
    margin-bottom: 22px;
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
}

.z79244article-thumb img {
    max-width: 100%;
    border-radius: var(--radius);
}

.z79244article-body {
    font-size: .95rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 24px;
    word-break: break-word;
}

.z79244article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 12px 0;
}

.z79244article-body p { margin-bottom: .9em; }
.z79244article-body h2, .z79244article-body h3, .z79244article-body h4 {
    color: var(--text);
    margin: 1.2em 0 .6em;
    font-weight: 700;
}

.z79244diyfield {
    margin-bottom: 18px;
    padding: 14px;
    background: var(--primary-light);
    border-radius: 8px;
    border: 1px solid #C7D2FE;
    font-size: .88rem;
}

.z79244article-gallery { margin-bottom: 20px; }
.z79244article-gallery p { margin-bottom: 12px; }
.z79244article-gallery img { border-radius: 8px; max-width: 100%; }

.z79244meta-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.z79244tagitem a {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid #FED7AA;
    border-radius: 16px;
    font-size: .8rem;
    text-decoration: none;
}

.z79244tagitem a:hover { background: var(--accent); color: #fff; }

.z79244article-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.z79244article-nav-prev,
.z79244article-nav-next {
    flex: 1;
    max-width: 48%;
    font-size: .88rem;
    line-height: 1.5;
}

.z79244article-nav-next { text-align: right; }

.z79244article-nav-prev a,
.z79244article-nav-next a {
    color: var(--text);
    text-decoration: none;
}

.z79244article-nav-prev a:hover,
.z79244article-nav-next a:hover { color: var(--primary); }

.z79244related-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.z79244related-title i { color: var(--primary); margin-right: 6px; }

.z79244related-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z79244related-link {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: inherit;
    text-decoration: none;
    transition: all var(--transition);
}

.z79244related-link:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.z79244related-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 68px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--border-light);
}

.z79244related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z79244related-info h4 {
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.4;
}

.z79244related-info p {
    font-size: .78rem;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clear { clear: both; }

/* ===== 通知弹窗 ===== */
.z79244notification {
    position: fixed;
    top: calc(var(--nav-h) + 16px);
    right: 20px;
    z-index: 10000;
    padding: 14px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transform: translateX(120%);
    transition: transform .3s ease;
    max-width: 320px;
}

.z79244notification.show { transform: translateX(0); }
.z79244notification-success { background: var(--primary); color: #fff; }
.z79244notification-error { background: var(--accent); color: #fff; }

.z79244notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
}

/* ===== 滚动条 ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: #C7D2FE; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
    .z79244hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .z79244services-grid { grid-template-columns: repeat(2, 1fr); }
    .z79244process-grid { grid-template-columns: repeat(2, 1fr); }
    .z79244articles-grid { grid-template-columns: repeat(3, 1fr); }
    .z79244page-layout { grid-template-columns: 1fr; }
    .z79244sidebar { position: static; }
    .z79244footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .z79244hamburger { display: flex; }

    .z79244nav-menu {
        position: fixed;
        top: var(--nav-h);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-h));
        flex-direction: column;
        background: var(--bg);
        padding: 16px;
        gap: 4px;
        overflow-y: auto;
        transition: left .3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 999;
        align-items: stretch;
    }

    .z79244nav-menu.active { left: 0; }

    .z79244nav-menu .z79244nav-link {
        padding: 14px 16px;
        border-radius: 8px;
    }

    .z79244menu-overlay.active { display: block; }

    .z79244hero { padding-top: calc(var(--nav-h) + 30px); }
    .z79244hero-title { font-size: 1.65rem; }
    .z79244section-title { font-size: 1.45rem; }

    .z79244services-grid,
    .z79244knowledge-grid,
    .z79244about-content,
    .z79244contact-content {
        grid-template-columns: 1fr;
    }

    .z79244process-grid { grid-template-columns: 1fr; }
    .z79244articles-grid { grid-template-columns: repeat(2, 1fr); }
    .z79244stats { grid-template-columns: repeat(3, 1fr); }
    .z79244tech-stack { grid-template-columns: repeat(2, 1fr); }

    .z79244list-card { flex-direction: column; }
    .z79244list-thumb { width: 100%; height: 160px; }

    .z79244article { padding: 20px 16px; }
    .z79244article-title { font-size: 1.25rem; }

    .z79244article-nav { flex-direction: column; }
    .z79244article-nav-prev,
    .z79244article-nav-next { max-width: 100%; text-align: left; }

    .z79244related-link { flex-direction: column; }
    .z79244related-thumb { width: 100%; height: 140px; }

    .z79244footer-content { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .z79244container { padding: 0 14px; }
    .z79244hero-title { font-size: 1.4rem; }
    .z79244hero-stats { gap: 16px; }
    .z79244services-grid { grid-template-columns: 1fr; }
    .z79244articles-grid { grid-template-columns: 1fr; }
    .z79244stats { grid-template-columns: 1fr; }
    .z79244tech-stack { grid-template-columns: 1fr; }
    .z79244hero-buttons { flex-direction: column; }
    .z79244hero-buttons .z79244btn { width: 100%; justify-content: center; }
    .z79244contact-form { padding: 20px 16px; }
    .z79244list-thumb { height: 140px; }
    .z79244sidebar-thumb { width: 56px; height: 42px; }
}
