/* ===== 全局重置 & 基础 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
    background: #f5f7fc;
    color: #1e2a3a;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
}

/* ===== 头部导航 ===== */
.header {
    background: #0d1b2a;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #d4a84b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    font-size: 28px;
}

.nav-list {
    display: flex;
    gap: 36px;
    font-size: 15px;
    font-weight: 500;
}

.nav-list li a {
    color: #e8edf5;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s, color 0.3s;
}

.nav-list li a:hover {
    color: #d4a84b;
    border-bottom-color: #d4a84b;
}

.nav-list li a.active {
    color: #d4a84b;
    border-bottom-color: #d4a84b;
}

.menu-btn {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.3s;
    user-select: none;
}

.menu-btn:hover {
    color: #d4a84b;
}

/* ===== 面包屑 ===== */
.breadcrumb {
    background: #f0f2f6;
    padding: 14px 0;
    border-bottom: 1px solid #e4e8ee;
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7a8a;
    flex-wrap: wrap;
}

.breadcrumb-inner a {
    color: #0d1b2a;
    transition: color 0.3s;
}

.breadcrumb-inner a:hover {
    color: #d4a84b;
}

.breadcrumb-inner .separator {
    color: #b8c4d0;
}

.breadcrumb-inner .current {
    color: #d4a84b;
    font-weight: 600;
}

/* ===== Banner 轮播 (首页) ===== */
/* ===== Banner 轮播 (首页) ===== */
.banner-swiper {
    width: 100%;
    height: 520px;
    position: relative;
}

.banner-swiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* 图片填充整个幻灯片 */
.banner-swiper .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 遮罩层：在图片上层，文字下层 */
.banner-swiper .swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.55);
    z-index: 1;
}

/* 文字内容在遮罩层之上 */
.banner-text {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 24px;
}

.banner-text .badge {
    display: inline-block;
    background: rgba(212, 168, 75, 0.2);
    border: 1px solid rgba(212, 168, 75, 0.4);
    color: #d4a84b;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 20px;
    border-radius: 30px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.banner-text h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.banner-text p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 28px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #fff;
}

.banner-btn {
    display: inline-block;
    background: #d4a84b;
    color: #0d1b2a;
    padding: 14px 44px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(212, 168, 75, 0.35);
}

.banner-btn:hover {
    background: #e8c35a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 75, 0.45);
}

.banner-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.banner-swiper .swiper-pagination-bullet-active {
    background: #d4a84b;
    opacity: 1;
}

.banner-swiper .swiper-button-prev,
.banner-swiper .swiper-button-next {
    color: #fff;
    opacity: 0.6;
    transition: opacity 0.3s;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

.banner-swiper .swiper-button-prev:hover,
.banner-swiper .swiper-button-next:hover {
    opacity: 1;
    background: rgba(212, 168, 75, 0.3);
}

.banner-swiper .swiper-button-prev::after,
.banner-swiper .swiper-button-next::after {
    font-size: 18px;
}

/* ===== 通用区块 ===== */
.section {
    padding: 72px 0 64px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .sub {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #d4a84b;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.section-header h3 {
    font-size: 34px;
    font-weight: 700;
    color: #0d1b2a;
    position: relative;
    display: inline-block;
}

.section-header h3::after {
    content: '';
    width: 56px;
    height: 3px;
    background: #d4a84b;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 4px;
}

.section-header p {
    margin-top: 18px;
    color: #6b7a8a;
    font-size: 16px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== 服务项目 (缩略图版) ===== */
.service-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f2f6;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(13, 27, 42, 0.08);
}

.service-img {
    height: 170px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background: #e8edf5;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-item:hover .service-img img {
    transform: scale(1.04);
}

.service-content {
    padding: 22px 22px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 8px;
}

.service-content p {
    font-size: 14px;
    color: #6b7a8a;
    margin: 0;
    line-height: 1.6;
}

/* ===== 服务优势 ===== */
.advantage-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.advantage-item {
    background: #fff;
    padding: 34px 20px 30px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f2f6;
    transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(13, 27, 42, 0.07);
}

.advantage-item i {
    font-size: 38px;
    color: #d4a84b;
    margin-bottom: 14px;
    display: inline-block;
}

.advantage-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 6px;
}

.advantage-item p {
    font-size: 14px;
    color: #6b7a8a;
    margin: 0;
}

/* ===== 横向滚动通用 (新闻 & FAQ) ===== */
.scroll-section {
    background: #f5f7fc;
}
.scroll-section .section-header {
    margin-bottom: 36px;
}
.scroll-wrapper {
    position: relative;
    overflow: hidden;
    padding: 8px 0 16px;
}
.scroll-wrapper .swiper-slide {
    height: auto;
}

/* ---- 新闻卡片 ---- */
.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f2f6;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(13, 27, 42, 0.08);
}

.news-cover {
    height: 190px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background: #e8edf5;
}

.news-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-cover .tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: #d4a84b;
    color: #0d1b2a;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.news-body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-body .title {
    font-size: 17px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-body .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    font-size: 13px;
    color: #8a9aa8;
    margin: 8px 0 10px;
    border-bottom: 1px solid #f0f2f6;
    padding-bottom: 12px;
}

.news-body .meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-body .meta i {
    font-size: 13px;
    color: #b8c4d0;
}

.news-body .desc {
    font-size: 14px;
    color: #5a6a7a;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* ---- FAQ 卡片 ---- */
.faq-card {
    background: #fff;
    border-radius: 16px;
    padding: 26px 24px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f2f6;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(13, 27, 42, 0.08);
}

.faq-card .q-icon {
    color: #d4a84b;
    font-size: 20px;
    margin-bottom: 8px;
}

.faq-card .title {
    font-size: 17px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.faq-card .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    font-size: 13px;
    color: #8a9aa8;
    margin: 6px 0 10px;
    border-bottom: 1px solid #f0f2f6;
    padding-bottom: 12px;
}

.faq-card .meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.faq-card .meta i {
    font-size: 13px;
    color: #b8c4d0;
}

.faq-card .desc {
    font-size: 14px;
    color: #5a6a7a;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Swiper 导航按钮 (滚动区域) */
.scroll-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.scroll-nav .swiper-button-prev-custom,
.scroll-nav .swiper-button-next-custom {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e4ec;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
    font-size: 18px;
    color: #3d4a5c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.scroll-nav .swiper-button-prev-custom:hover,
.scroll-nav .swiper-button-next-custom:hover {
    background: #d4a84b;
    border-color: #d4a84b;
    color: #fff;
    transform: scale(1.05);
}

.scroll-nav .swiper-button-prev-custom:active,
.scroll-nav .swiper-button-next-custom:active {
    transform: scale(0.94);
}

/* ============================================================
   ★★★ 新增：左右分栏布局 (新闻列表/新闻内容/关于我们/联系我们) ★★★
   ============================================================ */
.service-detail-section,.news-detail-section,.contact-section,.about-section,.news-list-section {
    padding: 40px 0 60px;
}

.news-list-layout,
.news-detail-layout,
.about-layout,
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

/* ===== 服务栏目导航 (服务详情) ===== */
.service-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.service-tab {
    background: #fff;
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    cursor: pointer;
}

.service-tab:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.service-tab:hover,.service-tab.active {
    border-color: #d4a84b;
    background: #fdf9f0;
    box-shadow: 0 4px 20px rgba(212, 168, 75, 0.12);
}

.service-tab .tab-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f5efe4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: background 0.3s;
}

.service-tab.active .tab-icon {
    background: #d4a84b;
}

.service-tab .tab-icon i {
    font-size: 22px;
    color: #0d1b2a;
    transition: color 0.3s;
}

.service-tab.active .tab-icon i {
    color: #fff;
}

.service-tab .tab-title {
    font-size: 15px;
    font-weight: 600;
    color: #0d1b2a;
}

.service-tab .tab-sub {
    font-size: 12px;
    color: #8a9aa8;
    margin-top: 2px;
}

.service-tab.active .tab-title {
    color: #d4a84b;
}

/* ---- 详情正文 (服务详情 & 新闻内容) ---- */
.detail-content,
.detail-article {
    background: #fff;
    border-radius: 20px;
    padding: 44px 48px 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f2f6;
    margin-bottom: 48px;
}

.detail-content .main-title,
.detail-article .article-title {
    font-size: 32px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.detail-content .meta-info,
.detail-article .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    font-size: 14px;
    color: #8a9aa8;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f2f6;
    margin-bottom: 24px;
}

.detail-content .meta-info span,
.detail-article .article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-content .meta-info i,
.detail-article .article-meta i {
    color: #b8c4d0;
}

.detail-content .meta-info .category-tag,
.detail-article .article-meta .category-tag {
    background: #fdf9f0;
    color: #d4a84b;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.detail-content .body-text,
.detail-article .article-body {
    font-size: 16px;
    color: #3d4a5c;
    line-height: 1.9;
}

.detail-content .body-text p,
.detail-article .article-body p {
    margin-bottom: 18px;
}
.detail-article .article-body p img{    display: block;
    max-width: 70% !important;
    height: auto;
    margin: 1.8rem auto;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 20, 40, 0.08);
    background: #f0f4f8;}
.detail-content .body-text h4,
.detail-article .article-body h4 {
    font-size: 19px;
    font-weight: 700;
    color: #0d1b2a;
    margin: 28px 0 12px;
}

.detail-content .body-text ul,
.detail-article .article-body ul {
    padding-left: 20px;
    margin-bottom: 18px;
}

.detail-content .body-text ul li,
.detail-article .article-body ul li {
    list-style: disc;
    margin-bottom: 6px;
    color: #3d4a5c;
}

.detail-content .highlight-box,
.detail-article .article-body .highlight-box {
    background: #fdf9f0;
    border-left: 4px solid #d4a84b;
    padding: 18px 24px;
    border-radius: 8px;
    margin: 24px 0 18px;
}

.detail-content .highlight-box p,
.detail-article .article-body .highlight-box p {
    margin-bottom: 0;
    color: #0d1b2a;
    font-weight: 500;
}

/* ---- 文章配图 (新闻内容) ---- */
.detail-article .article-body .article-img {
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
}

.detail-article .article-body .article-img img {
    width: 100%;
    height: auto;
    display: block;
}

.detail-article .article-body .img-caption {
    text-align: center;
    font-size: 13px;
    color: #8a9aa8;
    margin-top: 6px;
}

/* ---- 文章底部 (新闻内容) ---- */
.article-footer {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #f0f2f6;
}

.article-footer .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 20px;
}

.article-footer .tags span {
    font-size: 13px;
    color: #6b7a8a;
}

.article-footer .tags a {
    display: inline-block;
    background: #f5f7fc;
    padding: 2px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #4a5a6a;
    transition: background 0.3s, color 0.3s;
}

.article-footer .tags a:hover {
    background: #d4a84b;
    color: #fff;
}

.article-footer .share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.article-footer .share span {
    font-size: 14px;
    color: #6b7a8a;
}

.article-footer .share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f7fc;
    color: #4a5a6a;
    transition: background 0.3s, color 0.3s;
    font-size: 16px;
}

.article-footer .share a:hover {
    background: #d4a84b;
    color: #fff;
}

/* ---- 相关推荐 (新闻内容) ---- */
.related-news {
    margin-top: 28px;
}

.related-news .rel-title {
    font-size: 17px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.related-news .rel-title i {
    color: #d4a84b;
}

.related-news .rel-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.related-news .rel-item {
    display: flex;
    gap: 16px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 12px;
    transition: background 0.3s;
    align-items: center;
}

.related-news .rel-item:hover {
    background: #f0f2f6;
}

.related-news .rel-item .rel-thumb {
    width: 80px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e8edf5;
}

.related-news .rel-item .rel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-news .rel-item .rel-info {
    flex: 1;
    min-width: 0;
}

.related-news .rel-item .rel-info .rel-title-text {
    font-size: 14px;
    font-weight: 600;
    color: #0d1b2a;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.related-news .rel-item .rel-info .rel-title-text:hover {
    color: #d4a84b;
}

.related-news .rel-item .rel-info .rel-meta {
    font-size: 12px;
    color: #8a9aa8;
    display: flex;
    gap: 12px;
    margin-top: 2px;
}

.related-news .rel-item .rel-info .rel-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.related-news .rel-item .rel-arrow {
    color: #b8c4d0;
    font-size: 14px;
    flex-shrink: 0;
    transition: color 0.3s, transform 0.3s;
}

.related-news .rel-item:hover .rel-arrow {
    color: #d4a84b;
    transform: translateX(2px);
}
/* ===== 上一篇 / 下一篇 导航 ===== */
.article-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0f2f6;
}

.article-pagination .prev-article,
.article-pagination .next-article {
    font-size: 14px;
    color: #4a5a6a;
    max-width: 48%;
    transition: color 0.3s;
}

.article-pagination .prev-article a,
.article-pagination .next-article a {
    color: #0d1b2a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.article-pagination .prev-article a:hover,
.article-pagination .next-article a:hover {
    color: #d4a84b;
}

.article-pagination .prev-article a::before {
    content: "‹ ";
    font-size: 18px;
    font-weight: 700;
}

.article-pagination .next-article a::after {
    content: " ›";
    font-size: 18px;
    font-weight: 700;
}

/* 如果希望隐藏“上一篇/下一篇”文字，只显示箭头+标题，可自行调整 */
.article-pagination .prev-article a:before,
.article-pagination .next-article a:after {
    color: #d4a84b;
}

/* 当只有一篇时，隐藏空链接 */
.article-pagination .prev-article:empty,
.article-pagination .next-article:empty {
    display: none;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .article-pagination {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .article-pagination .prev-article,
    .article-pagination .next-article {
        max-width: 100%;
        text-align: left;
    }
    .article-pagination .next-article {
        text-align: left;
    }
}
/* ---- 最新资讯 (服务详情) ---- */
.latest-news-section {
    margin-top: 8px;
}

.latest-news-section .section-header {
    text-align: left;
    margin-bottom: 28px;
}

.latest-news-section .section-header .sub {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4a84b;
    font-weight: 600;
    display: inline-block;
    background: #fdf9f0;
    padding: 2px 14px;
    border-radius: 40px;
    margin-bottom: 6px;
}

.latest-news-section .section-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0d1b2a;
    display: inline-block;
    position: relative;
}

.latest-news-section .section-header h3::after {
    content: '';
    width: 44px;
    height: 3px;
    background: #d4a84b;
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 4px;
}

.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 22px 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f2f6;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(13, 27, 42, 0.08);
}

.info-card .info-tag {
    display: inline-block;
    background: #d4a84b;
    color: #0d1b2a;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    align-self: flex-start;
    margin-bottom: 10px;
}

.info-card .title {
    font-size: 16px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.info-card .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    font-size: 13px;
    color: #8a9aa8;
    margin: 4px 0 10px;
    border-bottom: 1px solid #f0f2f6;
    padding-bottom: 10px;
}

.info-card .meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.info-card .meta i {
    font-size: 13px;
    color: #b8c4d0;
}

.info-card .desc {
    font-size: 14px;
    color: #5a6a7a;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.info-pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.info-pagination {
    display: flex;
    gap: 10px;
    align-items: center;
}

.info-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d5dd;
    opacity: 1;
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
    border: none;
    outline: none;
    padding: 0;
}

.info-pagination .swiper-pagination-bullet:hover {
    background: #b8c4d0;
}

.info-pagination .swiper-pagination-bullet-active {
    background: #d4a84b;
    transform: scale(1.25);
    box-shadow: 0 2px 8px rgba(212, 168, 75, 0.35);
}

/* ===== 子栏目导航 (服务详情/新闻列表/新闻内容/关于我们/联系我们) ===== */
.sub-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    border-bottom: 2px solid #e8ecf2;
    padding-bottom: 16px;
    margin-bottom: 28px;
}

.sub-nav a {
    font-size: 15px;
    font-weight: 500;
    color: #6b7a8a;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s;
}

.sub-nav a:hover {
    color: #0d1b2a;
}

.sub-nav a.active {
    color: #d4a84b;
    border-bottom-color: #d4a84b;
}

.sub-nav a .count {
    font-size: 12px;
    color: #b8c4d0;
    margin-left: 4px;
}

/* ===== 新闻列表 (新闻列表) ===== */
.news-item {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 18px 20px 18px 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f2f6;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(13, 27, 42, 0.07);
}

.news-item .thumb {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: #e8edf5;
    position: relative;
}

.news-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-item .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.news-item .info .title {
    font-size: 17px;
    font-weight: 700;
    color: #0d1b2a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
}

.news-item .info .title a:hover {
    color: #d4a84b;
}

.news-item .info .desc {
    font-size: 14px;
    color: #5a6a7a;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    margin-bottom: 8px;
}

.news-item .info .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    font-size: 13px;
    color: #8a9aa8;
    margin-top: auto;
}

.news-item .info .meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-item .info .meta i {
    font-size: 13px;
    color: #b8c4d0;
}

.news-item .info .meta .category {
    background: #fdf9f0;
    color: #d4a84b;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.news-list-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ---- 分页 ---- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #4a5a6a;
    background: #fff;
    border: 1px solid #e4e8ee;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.pagination a:hover {
    background: #f5f7fc;
    border-color: #d0d5dd;
}

.pagination a.active {
    background: #d4a84b;
    color: #fff;
    border-color: #d4a84b;
}

.pagination a.prev-next {
    color: #6b7a8a;
}

.pagination a.prev-next:hover {
    background: #f5f7fc;
}

/* ===== 侧边栏 (新闻列表/新闻内容/关于我们/联系我们) ===== */
.news-sidebar,
.about-sidebar,
.contact-sidebar {
    position: sticky;
    top: 92px;
}

.sidebar-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 22px 26px;
    border: 1px solid #f0f2f6;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.sidebar-card .card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0d1b2a;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f2f6;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card .card-title i {
    color: #d4a84b;
}

.sidebar-service-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f7fc;
    transition: transform 0.2s;
}

.sidebar-service-item:last-child {
    border-bottom: none;
}

.sidebar-service-item:hover {
    transform: translateX(4px);
}

.sidebar-service-item .s-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f5efe4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}
.sidebar-service-item .s-icon img{    width: 44px;
    height: 44px;
    border-radius: 50%;}
.sidebar-service-item:hover .s-icon {
    background: #d4a84b;
}

.sidebar-service-item .s-icon i {
    font-size: 18px;
    color: #0d1b2a;
    transition: color 0.3s;
}

.sidebar-service-item:hover .s-icon i {
    color: #fff;
}

.sidebar-service-item .s-info {
    flex: 1;
    min-width: 0;
}

.sidebar-service-item .s-info .s-title {
    font-size: 15px;
    font-weight: 600;
    color: #0d1b2a;
}

.sidebar-service-item .s-info .s-desc {
    font-size: 13px;
    color: #8a9aa8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-service-item .s-arrow {
    color: #b8c4d0;
    font-size: 14px;
    transition: color 0.3s, transform 0.3s;
}

.sidebar-service-item:hover .s-arrow {
    color: #d4a84b;
    transform: translateX(2px);
}

.sidebar-card .consult-btn {
    display: block;
    background: #d4a84b;
    color: #0d1b2a;
    padding: 10px 0;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: background 0.3s;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #f0f2f6;
}

.sidebar-card .consult-btn:hover {
    background: #e8c35a;
}

/* ===== 关于我们 (关于我们) ===== */
.about-content {
    background: #fff;
    border-radius: 16px;
    padding: 40px 44px 44px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f2f6;
}

.about-content .page-title {
    font-size: 30px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 8px;
}

.about-content .page-sub {
    font-size: 16px;
    color: #6b7a8a;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f2f6;
}

.about-content .body-text {
    font-size: 16px;
    color: #3d4a5c;
    line-height: 1.9;
}

.about-content .body-text p {
    margin-bottom: 16px;
}

.about-content .body-text h4 {
    font-size: 19px;
    font-weight: 700;
    color: #0d1b2a;
    margin: 28px 0 12px;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin: 20px 0 24px;
}

.mv-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 22px 18px;
    text-align: center;
    border: 1px solid #f0f2f6;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mv-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.mv-item .mv-icon {
    font-size: 32px;
    color: #d4a84b;
    margin-bottom: 10px;
}

.mv-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 4px;
}

.mv-item p {
    font-size: 14px;
    color: #6b7a8a;
    margin: 0;
}

.timeline {
    margin: 20px 0 24px;
    padding-left: 20px;
    border-left: 3px solid #d4a84b;
}

.timeline-item {
    padding: 8px 0 8px 20px;
    position: relative;
    border-bottom: 1px solid #f5f7fc;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -23px;
    top: 14px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d4a84b;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #d4a84b;
}

.timeline-item .tl-year {
    font-weight: 700;
    color: #d4a84b;
    font-size: 15px;
}

.timeline-item .tl-text {
    font-size: 14px;
    color: #3d4a5c;
}

.honor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0 8px;
}

.honor-tags span {
    background: #fdf9f0;
    color: #0d1b2a;
    padding: 4px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #f0e2c8;
}

/* ===== 联系我们 (联系我们) ===== */
.contact-content {
    background: #fff;
    border-radius: 16px;
    padding: 40px 44px 44px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f2f6;
}

.contact-content .page-title {
    font-size: 30px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 8px;
}

.contact-content .page-sub {
    font-size: 16px;
    color: #6b7a8a;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f2f6;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-info-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px 20px 22px;
    border: 1px solid #f0f2f6;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.contact-info-item .ci-icon {
    font-size: 28px;
    color: #d4a84b;
    margin-bottom: 8px;
}

.contact-info-item h5 {
    font-size: 15px;
    font-weight: 600;
    color: #0d1b2a;
    margin-bottom: 2px;
}

.contact-info-item p {
    font-size: 14px;
    color: #3d4a5c;
    margin: 0;
}

.contact-info-item .ci-desc {
    font-size: 13px;
    color: #8a9aa8;
}

.map-placeholder {
    background: #e8edf5;
    border-radius: 12px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7a8a;
    font-size: 14px;
    border: 1px solid #e4e8ee;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.map-placeholder i {
    font-size: 40px;
    color: #b8c4d0;
    margin-right: 12px;
}

.contact-form-title {
    font-size: 18px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form-title i {
    color: #d4a84b;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
}

.contact-form .full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    font-size: 14px;
    font-weight: 500;
    color: #0d1b2a;
    display: block;
    margin-bottom: 4px;
}

.contact-form label .required {
    color: #d42a2e;
    margin-left: 2px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e4e8ee;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fafbfc;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d4a84b;
    box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.12);
    background: #fff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .submit-btn {
    grid-column: 1 / -1;
    background: #d4a84b;
    color: #0d1b2a;
    padding: 12px 0;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
    max-width: 200px;
    justify-self: center;
}

.contact-form .submit-btn:hover {
    background: #e8c35a;
    transform: translateY(-2px);
}

.contact-form .submit-btn:active {
    transform: scale(0.97);
}

.contact-form .form-tip {
    grid-column: 1 / -1;
    font-size: 13px;
    color: #8a9aa8;
    text-align: center;
}

/* ===== 页脚 ===== */
.footer {
    background: #0d1b2a;
    color: #bcc8d6;
    padding: 52px 0 28px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr;
    gap: 40px;
}

.footer h4 {
    color: #d4a84b;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer p {
    font-size: 14px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer p i {
    width: 18px;
    color: #d4a84b;
    font-size: 15px;
}

.footer a {
    color: #bcc8d6;
    transition: color 0.3s;
}

.footer a:hover {
    color: #d4a84b;
}

.footer .footer-copyright {
    text-align: center;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #1e2e46;
    font-size: 13px;
    color: #6b7f94;
}

/* ===== 悬浮侧边栏 (PC) ===== */
.float-sidebar {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-item {
    width: 50px;
    height: 50px;
    background: #0d1b2a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border: none;
}

.float-item:hover {
    background: #d4a84b;
    color: #0d1b2a;
    transform: scale(1.08);
}

.float-item[data-phone] {
    position: relative;
}

.float-item[data-phone]::after {
    content: attr(data-phone);
    position: absolute;
    right: 58px;
    top: 50%;
    transform: translateY(-50%);
    background: #0d1b2a;
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.float-item[data-phone]:hover::after {
    opacity: 1;
}

/* ===== 移动端底部悬浮 ===== */
.mobile-float-bar {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #0d1b2a;
    z-index: 99;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-float-inner {
    display: flex;
    justify-content: space-around;
}

.mobile-float-inner a {
    flex: 1;
    text-align: center;
    color: #bcc8d6;
    padding: 10px 0 8px;
    font-size: 12px;
    transition: color 0.3s;
    border-right: 1px solid #1e2e46;
}

.mobile-float-inner a:last-child {
    border-right: none;
}

.mobile-float-inner a i {
    font-size: 22px;
    display: block;
    margin-bottom: 2px;
}

.mobile-float-inner a:hover,
.mobile-float-inner a:active {
    color: #d4a84b;
}

/* ===== 微信弹窗 ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px 28px 28px;
    max-width: 360px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 24px;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
    background: none;
    border: none;
}

.modal-close:hover {
    color: #333;
}

.modal-box .qr-title {
    font-size: 20px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 6px;
}

.modal-box .qr-sub {
    font-size: 14px;
    color: #6b7a8a;
    margin-bottom: 16px;
}

.modal-box .qr-code {
    width: 180px;
    height: 180px;
    margin: 0 auto 16px;
    background: #f0f2f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-box .qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-box .wechat-id {
    font-size: 16px;
    font-weight: 600;
    color: #0d1b2a;
    background: #f5f7fc;
    padding: 8px 12px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.modal-box .add-btn {
    display: inline-block;
    background: #07c160;
    color: #fff;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(7, 193, 96, 0.35);
}

.modal-box .add-btn:hover {
    background: #06ad56;
    transform: translateY(-2px);
}

.modal-box .add-btn:active {
    transform: scale(0.96);
}

.modal-box .tip {
    margin-top: 14px;
    font-size: 12px;
    color: #8a9aa8;
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
    .service-wrap,
    .advantage-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .banner-swiper {
        height: 400px;
    }
    .banner-text h2 {
        font-size: 36px;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    .service-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
    .detail-content,
    .detail-article {
        padding: 32px 28px 36px;
    }
    /* 左右分栏响应式 - 缩小右侧宽度 */
    .news-list-layout,
    .news-detail-layout,
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr 280px;
        gap: 32px;
    }
    .about-content,
    .contact-content {
        padding: 32px 28px 36px;
    }
    .mv-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #0d1b2a;
        flex-direction: column;
        padding: 18px 6%;
        gap: 0;
        display: none;
        border-top: 1px solid #1e2e46;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    }
    .nav-list.show {
        display: flex;
    }
    .nav-list li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #1e2e46;
        font-size: 15px;
    }
    .nav-list li:last-child a {
        border-bottom: none;
    }
    .menu-btn {
        display: block;
    }
    .float-sidebar {
        display: none;
    }
    .mobile-float-bar {
        display: block;
    }
    .service-wrap,
    .advantage-wrap {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .service-img {
        height: 150px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .section {
        padding: 48px 0 40px;
    }
    .banner-swiper {
        height: 340px;
    }
    .banner-text h2 {
        font-size: 28px;
    }
    .banner-text p {
        font-size: 15px;
    }
    .banner-btn {
        padding: 12px 32px;
        font-size: 14px;
    }
    .section-header h3 {
        font-size: 26px;
    }
    .news-cover {
        height: 160px;
    }
    .scroll-nav {
        margin-top: 20px;
    }
    .float-item[data-phone]::after {
        right: auto;
        left: 58px;
        top: 50%;
        transform: translateY(-50%);
    }
    .service-tabs {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .service-tab {
        padding: 16px 12px;
    }
    .service-tab .tab-icon {
        width: 44px;
        height: 44px;
    }
    .service-tab .tab-icon i {
        font-size: 18px;
    }
    .service-tab .tab-title {
        font-size: 13px;
    }
    .service-tab .tab-sub {
        font-size: 11px;
    }
    .detail-content,
    .detail-article {
        padding: 24px 18px 28px;
    }
    .detail-content .main-title,
    .detail-article .article-title {
        font-size: 24px;
    }
    .detail-content .meta-info,
    .detail-article .article-meta {
        gap: 12px 20px;
        font-size: 13px;
    }
    .detail-content .body-text,
    .detail-article .article-body {
        font-size: 15px;
    }
    .detail-content .body-text h4,
    .detail-article .article-body h4 {
        font-size: 17px;
    }
    .latest-news-section .section-header h3 {
        font-size: 22px;
    }
    .breadcrumb-inner {
        font-size: 13px;
    }
    .info-pagination-wrap {
        margin-top: 22px;
    }

    /* 左右分栏 - 移动端改为单列 */
    .news-list-layout,
    .news-detail-layout,
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .news-sidebar,
    .about-sidebar,
    .contact-sidebar {
        position: static;
    }
    .news-item {
        flex-direction: column;
        padding: 16px;
    }
    .news-item .thumb {
        width: 100%;
        height: 160px;
    }
    .news-item .info .title {
        font-size: 16px;
    }
    .sub-nav {
        gap: 8px 14px;
    }
    .sub-nav a {
        font-size: 14px;
    }
    .about-content,
    .contact-content {
        padding: 24px 18px 28px;
    }
    .about-content .page-title,
    .contact-content .page-title {
        font-size: 24px;
    }
    .about-content .body-text {
        font-size: 15px;
    }
    .about-content .body-text h4 {
        font-size: 17px;
    }
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .contact-form {
        grid-template-columns: 1fr;
    }
    .contact-form .full-width {
        grid-column: 1;
    }
    .contact-form .submit-btn {
        max-width: 100%;
    }
    .map-placeholder {
        height: 160px;
    }
    .related-news .rel-item .rel-thumb {
        width: 60px;
        height: 44px;
    }
    .article-footer .share a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .banner-swiper {
        height: 280px;
    }
    .banner-text h2 {
        font-size: 22px;
    }
    .banner-text p {
        font-size: 13px;
    }
    .banner-text .badge {
        font-size: 11px;
        padding: 2px 14px;
    }
    .banner-btn {
        padding: 10px 26px;
        font-size: 13px;
    }
    .section-header h3 {
        font-size: 22px;
    }
    .service-img {
        height: 130px;
    }
    .service-content {
        padding: 18px 16px 20px;
    }
    .advantage-item {
        padding: 24px 16px;
    }
    .news-body {
        padding: 16px 18px 18px;
    }
    .faq-card {
        padding: 20px 18px 18px;
    }
    .modal-box {
        padding: 24px 20px 20px;
    }
    .modal-box .qr-code {
        width: 150px;
        height: 150px;
    }
    .service-tabs {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .service-tab {
        padding: 12px 8px;
    }
    .service-tab .tab-icon {
        width: 38px;
        height: 38px;
    }
    .service-tab .tab-icon i {
        font-size: 16px;
    }
    .service-tab .tab-title {
        font-size: 12px;
    }
    .service-tab .tab-sub {
        font-size: 10px;
    }
    .detail-content,
    .detail-article {
        padding: 18px 14px 22px;
    }
    .detail-content .main-title,
    .detail-article .article-title {
        font-size: 20px;
    }
    .detail-content .meta-info,
    .detail-article .article-meta {
        gap: 8px 14px;
        font-size: 12px;
    }
    .detail-content .body-text,
    .detail-article .article-body {
        font-size: 14px;
    }
    .detail-content .body-text h4,
    .detail-article .article-body h4 {
        font-size: 17px;
    }
    .detail-content .highlight-box,
    .detail-article .highlight-box {
        padding: 14px 16px;
    }
    .latest-news-section .section-header h3 {
        font-size: 19px;
    }
    .info-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    .news-item .thumb {
        height: 130px;
    }
    .news-item .info .title {
        font-size: 15px;
    }
    .news-item .info .desc {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    .news-item .info .meta {
        font-size: 12px;
        gap: 8px 14px;
    }
    .sub-nav a {
        font-size: 13px;
    }
    .sidebar-card {
        padding: 18px 16px 20px;
    }
    .pagination a {
        min-width: 34px;
        height: 34px;
        font-size: 13px;
        padding: 0 10px;
    }
    .about-content,
    .contact-content {
        padding: 18px 14px 22px;
    }
    .about-content .page-title,
    .contact-content .page-title {
        font-size: 20px;
    }
    .about-content .body-text {
        font-size: 14px;
    }
    .about-content .body-text h4 {
        font-size: 16px;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .map-placeholder {
        height: 140px;
        font-size: 13px;
    }
    .map-placeholder i {
        font-size: 30px;
    }
    .contact-form input,
    .contact-form textarea {
        font-size: 13px;
        padding: 8px 12px;
    }
    .contact-form .submit-btn {
        font-size: 15px;
        padding: 11px 0;
    }
    .timeline {
        padding-left: 14px;
    }
    .timeline-item {
        padding-left: 14px;
    }
    .timeline-item::before {
        left: -17px;
        width: 8px;
        height: 8px;
    }
    .related-news .rel-item {
        padding: 10px 12px;
        gap: 12px;
    }
    .related-news .rel-item .rel-thumb {
        width: 50px;
        height: 38px;
    }
    .related-news .rel-item .rel-info .rel-title-text {
        font-size: 13px;
    }
    .related-news .rel-item .rel-info .rel-meta {
        font-size: 11px;
        gap: 8px;
    }
}

.service-area-section {
    padding: 60px 0 50px;
    background: #f8fafc;
}
.service-area-section .section-header {
    margin-bottom: 32px;
}
.service-area-section .section-header p {
    max-width: 720px;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 6px;
}
.area-group {
    background: #fff;
    border-radius: 12px;
    padding: 16px 14px 18px;
    border: 1px solid #f0f2f6;
    transition: transform 0.3s, box-shadow 0.3s;
}
.area-group:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(13, 27, 42, 0.06);
}
.area-group .group-title {
    font-size: 14px;
    font-weight: 700;
    color: #d4a84b;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 2px solid #f5efe4;
    display: flex;
    align-items: center;
    gap: 6px;
}
.area-group .group-title i {
    font-size: 14px;
}
.area-group .town-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
}
.area-group .town-tags span {
    font-size: 13px;
    color: #3d4a5c;
    padding: 2px 0;
    transition: color 0.3s;
}
.area-group .town-tags span:hover {
    color: #d4a84b;
}
.area-group .town-tags .sep {
    color: #d0d5dd;
    font-size: 12px;
}

/* Banner 微调：突出镇区覆盖 */
.banner-text .banner-sub {
    font-size: 16px;
    color: #e2e8f0;
    margin-top: -6px;
    margin-bottom: 22px;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.9;
}
.banner-text .banner-sub strong {
    color: #d4a84b;
    font-weight: 600;
}

/* ===== 响应式：服务覆盖区域 ===== */
@media (max-width: 1024px) {
    .area-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}
@media (max-width: 768px) {
    .area-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .area-group {
        padding: 14px 12px 16px;
    }
    .area-group .town-tags span {
        font-size: 12px;
    }
    .service-area-section {
        padding: 40px 0 32px;
    }
    .banner-text .banner-sub {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .area-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .area-group {
        padding: 12px 10px 14px;
    }
    .area-group .group-title {
        font-size: 12px;
    }
    .area-group .town-tags span {
        font-size: 11px;
    }
}