/* ===== 基础变量与重置 ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: #eef1f6;
    color: #3d4f63;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.zf1095container {
    width: 92%;
    max-width: 1140px;
    margin: 0 auto;
}

/* ===== 导航栏 ===== */
.zf1095navbar {
    background: #fff;
    border-bottom: 1px solid #dde3ea;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 1px 6px rgba(46, 80, 144, 0.06);
}
.zf1095nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    gap: 1rem;
}
.zf1095site-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2e5090;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}
.zf1095nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.15rem 0;
}
.zf1095nav-links a {
    color: #4a5d73;
    text-decoration: none;
    font-size: 0.88rem;
    padding: 0.45rem 0.65rem;
    border-radius: 4px;
    white-space: nowrap;
}
.zf1095nav-links a:hover {
    color: #2e5090;
    background: #eef3fa;
}
.zf1095nav-links a.zf1095this,
.zf1095nav-links a.thisclass {
    color: #fff;
    background: #2e5090;
}
.zf1095nav-toggle {
    display: none;
    background: none;
    border: 1px solid #c5d0de;
    color: #2e5090;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    flex-shrink: 0;
}

/* ===== 首页 Hero ===== */
.zf1095banner {
    background: linear-gradient(135deg, #2e5090 0%, #1a3a6e 100%);
    padding: 3rem 0;
    overflow: hidden;
}
.zf1095hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
.zf1095hero-text h1 {
    font-size: 1.85rem;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.35;
    font-weight: 700;
}
.zf1095hero-text > p {
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
}
.zf1095hero-desc {
    color: rgba(255,255,255,0.78);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}
.zf1095hero-desc strong {
    color: #ffd080;
    font-weight: 600;
}
.zf1095hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.zf1095hero-tags span {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 0.78rem;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
}
.zf1095hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.zf1095banner-img {
    width: 100%;
    max-width: 380px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

/* ===== 主内容 ===== */
.zf1095main-content {
    position: relative;
    z-index: 1;
    padding: 1.5rem 0 2rem;
}
.zf1095background-decor {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 90% 5%, rgba(46,80,144,0.04) 0, transparent 50%),
        radial-gradient(ellipse at 5% 95%, rgba(230,126,34,0.04) 0, transparent 50%);
}

/* ===== 通用板块 ===== */
.zf1095section {
    background: #fff;
    border: 1px solid #dde3ea;
    border-radius: 10px;
    padding: 2rem 1.75rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.zf1095section-head {
    text-align: center;
    margin-bottom: 1.75rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.zf1095section-head h2,
.zf1095section > h2 {
    color: #2e5090;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.zf1095section-head p {
    color: #6b7d92;
    font-size: 0.9rem;
    line-height: 1.7;
}
.zf1095section-head strong {
    color: #2e5090;
}

/* ===== 服务网格 ===== */
.zf1095service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.zf1095service-card {
    border: 1px solid #e4eaf2;
    border-radius: 8px;
    padding: 1.25rem;
    background: #fafbfd;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.zf1095service-card:hover {
    border-color: #2e5090;
    box-shadow: 0 4px 16px rgba(46,80,144,0.1);
}
.zf1095service-icon {
    width: 36px;
    height: 36px;
    background: #2e5090;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.zf1095service-card h3 {
    color: #2e5090;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.zf1095service-card p {
    font-size: 0.85rem;
    color: #5a6d82;
    line-height: 1.65;
}
.zf1095service-card strong {
    color: #c06010;
}

/* ===== 数据统计条 ===== */
.zf1095stats-bar {
    background: #2e5090;
    padding: 1.75rem 0;
    margin-bottom: 1.5rem;
}
.zf1095stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}
.zf1095stat-item strong {
    display: block;
    color: #ffd080;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}
.zf1095stat-item span {
    color: rgba(255,255,255,0.82);
    font-size: 0.82rem;
}

/* ===== 知识板块 ===== */
.zf1095knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.zf1095knowledge-card {
    border-left: 3px solid #e67e22;
    padding: 1rem 1.25rem;
    background: #fafbfd;
    border-radius: 0 8px 8px 0;
    border-top: 1px solid #e4eaf2;
    border-right: 1px solid #e4eaf2;
    border-bottom: 1px solid #e4eaf2;
}
.zf1095knowledge-card h3 {
    color: #2e5090;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.zf1095knowledge-card p {
    font-size: 0.85rem;
    color: #5a6d82;
    line-height: 1.65;
}
.zf1095knowledge-card strong {
    color: #c06010;
}

/* ===== 优势 ===== */
.zf1095advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.zf1095advantage-box {
    text-align: center;
    padding: 1.25rem 0.75rem;
    border: 1px solid #e4eaf2;
    border-radius: 8px;
    background: #fafbfd;
}
.zf1095advantage-box h4 {
    color: #2e5090;
    font-size: 0.92rem;
    margin-bottom: 0.4rem;
}
.zf1095advantage-box p {
    font-size: 0.82rem;
    color: #6b7d92;
    line-height: 1.55;
}
.zf1095advantage-box strong {
    color: #c06010;
}

/* ===== 流程 ===== */
.zf1095flow-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}
.zf1095flow-steps li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.6rem;
    border: 1px solid #e4eaf2;
    border-radius: 8px;
    background: #fafbfd;
}
.zf1095step-num {
    width: 32px;
    height: 32px;
    background: #e67e22;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    flex-shrink: 0;
}
.zf1095step-body > strong {
    display: block;
    color: #2e5090;
    font-size: 0.88rem;
    margin-bottom: 0.3rem;
}
.zf1095step-body p {
    font-size: 0.78rem;
    color: #6b7d92;
    line-height: 1.55;
}
.zf1095step-body p strong {
    color: #c06010;
}

/* ===== 客户评价 ===== */
.zf1095testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.zf1095testimonial-card {
    border: 1px solid #e4eaf2;
    border-radius: 8px;
    padding: 1.25rem;
    background: #fafbfd;
    margin: 0;
}
.zf1095testimonial-card p {
    font-size: 0.88rem;
    color: #4a5d73;
    line-height: 1.65;
    margin-bottom: 0.75rem;
    font-style: normal;
}
.zf1095testimonial-card strong {
    color: #c06010;
}
.zf1095testimonial-card cite {
    font-size: 0.78rem;
    color: #8a9bb0;
    font-style: normal;
}

/* ===== FAQ ===== */
.zf1095faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.zf1095faq-item {
    border: 1px solid #e4eaf2;
    border-radius: 8px;
    padding: 1rem 1.15rem;
    background: #fafbfd;
}
.zf1095faq-item > strong {
    color: #2e5090;
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}
.zf1095faq-item p {
    font-size: 0.84rem;
    color: #5a6d82;
    line-height: 1.6;
}
.zf1095faq-item p strong {
    color: #c06010;
}

/* ===== 首页文章网格 ===== */
.zf1095article-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.zf1095article-card {
    border: 1px solid #e4eaf2;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s;
}
.zf1095article-card:hover {
    box-shadow: 0 4px 14px rgba(46,80,144,0.12);
}
.zf1095article-card-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #eef1f6;
}
.zf1095article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.zf1095article-card:hover .zf1095article-card-thumb img {
    transform: scale(1.04);
}
.zf1095article-card-body {
    padding: 0.65rem 0.7rem;
}
.zf1095article-card-body h3 {
    font-size: 0.82rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
    font-weight: 600;
}
.zf1095article-card-body h3 a {
    color: #3d4f63;
    text-decoration: none;
}
.zf1095article-card-body h3 a:hover {
    color: #2e5090;
}
.zf1095article-card-date {
    color: #8a9bb0;
    font-size: 0.72rem;
}

/* ===== 新闻列表 ===== */
.zf1095news-list {
    list-style: none;
}
.zf1095news-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #e4eaf2;
}
.zf1095news-list li:last-child {
    border-bottom: none;
}
.zf1095news-list time {
    flex-shrink: 0;
    color: #2e5090;
    font-size: 0.82rem;
    font-weight: 600;
    min-width: 88px;
}
.zf1095news-list span {
    font-size: 0.88rem;
    color: #4a5d73;
    line-height: 1.5;
}

/* ===== 关于我们 ===== */
.zf1095about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: stretch;
}
.zf1095about-text h2 {
    color: #2e5090;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.zf1095about-text p {
    font-size: 0.88rem;
    color: #5a6d82;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.zf1095about-text strong {
    color: #c06010;
}
.zf1095about-list {
    list-style: none;
    margin-top: 0.5rem;
}
.zf1095about-list li {
    font-size: 0.85rem;
    color: #4a5d73;
    padding: 0.35rem 0 0.35rem 1.2rem;
    position: relative;
}
.zf1095about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 6px;
    height: 6px;
    background: #e67e22;
    border-radius: 50%;
}
.zf1095about-panel {
    display: flex;
    align-items: center;
    justify-content: center;
}
.zf1095about-highlight {
    background: linear-gradient(135deg, #2e5090, #1a3a6e);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    width: 100%;
}
.zf1095about-highlight strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.zf1095about-highlight p {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
}

/* ===== 联系表单 ===== */
.zf1095contact-form {
    max-width: 640px;
    margin: 0 auto;
}
.zf1095form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.zf1095form-group {
    margin-bottom: 1rem;
}
.zf1095form-group label {
    display: block;
    margin-bottom: 0.35rem;
    color: #2e5090;
    font-size: 0.88rem;
    font-weight: 600;
}
.zf1095form-group input,
.zf1095form-group textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid #c5d0de;
    border-radius: 6px;
    background: #fafbfd;
    color: #3d4f63;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s;
}
.zf1095form-group input:focus,
.zf1095form-group textarea:focus {
    outline: none;
    border-color: #2e5090;
    background: #fff;
}
.zf1095contact-form button {
    width: 100%;
    background: #e67e22;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    padding: 0.8rem;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
}
.zf1095contact-form button:hover {
    background: #cf6d15;
}

/* ===== 页脚 ===== */
.zf1095footer {
    background: #1a3a6e;
    text-align: center;
    padding: 1.25rem 0;
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

/* ===== 列表页/内容页 横幅 ===== */
.zf1095page-banner {
    background: linear-gradient(135deg, #2e5090 0%, #1a3a6e 100%);
    padding: 2rem 0 1.5rem;
    text-align: center;
}
.zf1095page-banner h1 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
    word-break: break-word;
}
.zf1095breadcrumb {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}
.zf1095breadcrumb a {
    color: #ffd080;
    text-decoration: none;
}
.zf1095breadcrumb a:hover {
    text-decoration: underline;
}

/* ===== 侧栏布局 ===== */
.zf1095layout-with-sidebar {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.zf1095content-main {
    flex: 1;
    min-width: 0;
}
.zf1095content-main .zf1095section {
    margin-bottom: 0;
}
.zf1095sidebar {
    width: 280px;
    flex-shrink: 0;
}
.zf1095sidebar-block {
    background: #fff;
    border: 1px solid #dde3ea;
    border-radius: 10px;
    padding: 1.15rem;
    overflow: hidden;
}
.zf1095sidebar-title {
    color: #2e5090;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e67e22;
    font-weight: 700;
}
.zf1095sidebar-imglist {
    list-style: none;
}
.zf1095sidebar-imgitem {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    padding: 0.55rem 0;
    border-bottom: 1px solid #eef1f6;
}
.zf1095sidebar-imgitem:last-child {
    border-bottom: none;
}
.zf1095sidebar-imgthumb {
    flex-shrink: 0;
    width: 72px;
    height: 54px;
    border-radius: 4px;
    overflow: hidden;
    background: #eef1f6;
    display: block;
}
.zf1095sidebar-imgthumb img {
    width: 72px;
    height: 54px;
    object-fit: cover;
}
.zf1095sidebar-imgtitle {
    flex: 1;
    min-width: 0;
    color: #4a5d73;
    text-decoration: none;
    font-size: 0.82rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zf1095sidebar-imgtitle:hover {
    color: #2e5090;
}

/* ===== 列表页 ===== */
.zf1095list-section {
    padding: 1.5rem;
}
.zf1095article-list {
    list-style: none;
}
.zf1095article-list-item {
    display: flex;
    gap: 1.15rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid #e4eaf2;
    align-items: flex-start;
}
.zf1095article-list-item:last-child {
    border-bottom: none;
}
.zf1095article-thumb {
    width: 180px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #eef1f6;
    border: 1px solid #e4eaf2;
}
.zf1095article-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}
.zf1095article-info {
    flex: 1;
    min-width: 0;
}
.zf1095article-title {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
}
.zf1095article-title a {
    color: #2e5090;
    text-decoration: none;
}
.zf1095article-title a:hover {
    color: #e67e22;
}
.zf1095article-meta {
    color: #8a9bb0;
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.zf1095article-meta a {
    color: #2e5090;
    text-decoration: none;
}
.zf1095article-intro {
    color: #6b7d92;
    font-size: 0.86rem;
    line-height: 1.6;
}

/* ===== 分页 ===== */
.zf1095pagebar {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e4eaf2;
}
.zf1095pages .pagelist,
.zf1095pages ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.zf1095pages .pagelist li,
.zf1095pages ul li {
    list-style: none;
}
.zf1095pages .pagelist a,
.zf1095pages .pagelist span,
.zf1095pages ul a,
.zf1095pages ul span {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    background: #fafbfd;
    color: #4a5d73;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    border: 1px solid #c5d0de;
    line-height: 1.4;
}
.zf1095pages .pagelist a:hover,
.zf1095pages ul a:hover {
    background: #2e5090;
    color: #fff;
    border-color: #2e5090;
}
.zf1095pages .pagelist .thisclass,
.zf1095pages .pagelist .thisclass a,
.zf1095pages ul .thisclass,
.zf1095pages ul .thisclass a {
    background: #2e5090;
    color: #fff;
    border-color: #2e5090;
    font-weight: 600;
}

/* ===== 内容页 ===== */
.zf1095article-detail {
    padding: 1.5rem 1.75rem;
}
.zf1095article-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: #8a9bb0;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #e4eaf2;
}
.zf1095article-meta-bar a {
    color: #2e5090;
    text-decoration: none;
}
.zf1095article-litpic {
    margin-bottom: 1.25rem;
    text-align: center;
}
.zf1095article-litpic img {
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid #e4eaf2;
}
.zf1095article-body {
    color: #3d4f63;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    word-break: break-word;
    overflow-wrap: break-word;
}
.zf1095article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 0.5rem 0;
}
.zf1095article-body p {
    margin-bottom: 0.85rem;
}
.zf1095article-images {
    margin-bottom: 1.25rem;
}
.zf1095image-item {
    margin-bottom: 0.85rem;
    text-align: center;
}
.zf1095image-item img {
    max-width: 100%;
    border-radius: 6px;
    border: 1px solid #e4eaf2;
}
.zf1095image-item span {
    display: block;
    color: #8a9bb0;
    font-size: 0.85rem;
    margin-top: 0.35rem;
}
.zf1095diyfield {
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: #fafbfd;
    border: 1px solid #e4eaf2;
    border-radius: 6px;
    overflow: hidden;
    word-break: break-word;
}
.zf1095meta-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
    padding: 0.85rem 0;
    border-top: 1px solid #e4eaf2;
    border-bottom: 1px solid #e4eaf2;
}
.zf1095tagitem a {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    background: #eef3fa;
    color: #2e5090;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid #c5d0de;
}
.zf1095tagitem a:hover {
    background: #2e5090;
    color: #fff;
}
.zf1095article-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.25rem 0;
    padding: 0.85rem 0;
    border-top: 1px solid #e4eaf2;
}
.zf1095prenext {
    flex: 1;
    min-width: 0;
    font-size: 0.86rem;
    color: #6b7d92;
    word-break: break-word;
}
.zf1095prenext a {
    color: #2e5090;
    text-decoration: none;
}
.zf1095prenext a:hover {
    color: #e67e22;
}
.zf1095prenext-next {
    text-align: right;
}
.zf1095related h3 {
    color: #2e5090;
    font-size: 1.1rem;
    margin-bottom: 0.85rem;
    font-weight: 700;
}
.zf1095related-list {
    list-style: none;
}
.zf1095related-item {
    display: flex;
    gap: 0.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eef1f6;
    align-items: flex-start;
}
.zf1095related-item:last-child {
    border-bottom: none;
}
.zf1095related-thumb {
    flex-shrink: 0;
    width: 110px;
    border-radius: 6px;
    overflow: hidden;
    background: #eef1f6;
    border: 1px solid #e4eaf2;
    display: block;
}
.zf1095related-thumb img {
    width: 110px;
    height: 72px;
    object-fit: cover;
}
.zf1095related-info {
    flex: 1;
    min-width: 0;
}
.zf1095related-info > a {
    color: #2e5090;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}
.zf1095related-info > a:hover {
    color: #e67e22;
}
.zf1095related-list li p {
    color: #8a9bb0;
    font-size: 0.82rem;
    line-height: 1.5;
}
.clear {
    clear: both;
    width: 100%;
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
    .zf1095hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .zf1095hero-tags {
        justify-content: center;
    }
    .zf1095service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .zf1095knowledge-grid {
        grid-template-columns: 1fr;
    }
    .zf1095advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .zf1095flow-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    .zf1095testimonial-grid {
        grid-template-columns: 1fr;
    }
    .zf1095article-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .zf1095about-grid {
        grid-template-columns: 1fr;
    }
    .zf1095stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 900px) {
    .zf1095nav-toggle {
        display: block;
    }
    .zf1095nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        display: none;
        border-top: 1px solid #dde3ea;
        box-shadow: 0 6px 16px rgba(46,80,144,0.1);
        max-height: 70vh;
        overflow-y: auto;
    }
    .zf1095nav-links.open {
        display: flex;
    }
    .zf1095nav-links a {
        width: 100%;
        padding: 0.75rem 1.25rem;
        border-bottom: 1px solid #eef1f6;
        border-radius: 0;
        font-size: 0.9rem;
    }
    .zf1095nav-links a:last-child {
        border-bottom: none;
    }
    .zf1095nav-container {
        position: relative;
        flex-wrap: wrap;
    }
    .zf1095layout-with-sidebar {
        flex-direction: column;
    }
    .zf1095sidebar {
        width: 100%;
    }
    .zf1095faq-grid {
        grid-template-columns: 1fr;
    }
    .zf1095flow-steps {
        grid-template-columns: 1fr;
    }
    .zf1095article-list-item {
        flex-direction: column;
    }
    .zf1095article-thumb {
        width: 100%;
    }
    .zf1095article-nav {
        flex-direction: column;
    }
    .zf1095prenext-next {
        text-align: left;
    }
    .zf1095related-item {
        flex-direction: column;
    }
    .zf1095related-thumb,
    .zf1095related-thumb img {
        width: 100%;
        height: auto;
        max-height: 180px;
    }
}

@media (max-width: 600px) {
    .zf1095container {
        width: 94%;
    }
    .zf1095section {
        padding: 1.25rem 1rem;
    }
    .zf1095hero-text h1 {
        font-size: 1.35rem;
    }
    .zf1095section-head h2,
    .zf1095section > h2 {
        font-size: 1.25rem;
    }
    .zf1095service-grid {
        grid-template-columns: 1fr;
    }
    .zf1095advantage-grid {
        grid-template-columns: 1fr;
    }
    .zf1095stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .zf1095stat-item strong {
        font-size: 1.3rem;
    }
    .zf1095article-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }
    .zf1095form-row {
        grid-template-columns: 1fr;
    }
    .zf1095page-banner h1 {
        font-size: 1.25rem;
    }
    .zf1095article-detail {
        padding: 1rem;
    }
    .zf1095list-section {
        padding: 1rem;
    }
    .zf1095news-list li {
        flex-direction: column;
        gap: 0.3rem;
    }
    .zf1095news-list time {
        min-width: auto;
    }
    .zf1095pages .pagelist a,
    .zf1095pages .pagelist span,
    .zf1095pages ul a,
    .zf1095pages ul span {
        padding: 0.35rem 0.55rem;
        font-size: 0.78rem;
    }
}
