.fazx-container {
    max-width: 1440px;
    margin: 60px auto 40px auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    padding: 40px 32px 32px 32px;
    height: 490px;
    box-sizing: border-box;
}
.fazx-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 36px;
    text-align: center;
    letter-spacing: 2px;
}
.fazx-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.fazx-item {
    border-left: 4px solid #007bff;
    background: #f4f8fd;
    padding: 18px 24px;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,123,255,0.04);
}
.fazx-item-title {
    font-size: 1.18rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 8px;
}
.fazx-item-desc {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
}

.news-title {
    display: flex;
    align-items: center;
    height: 100%;
}

.news-title a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 100%;
}

/* .news-title a:hover {
    color: #007bff;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 100%;
}
.news-title a:hover {
    color: #007bff;
} */
@media (max-width: 600px) {
    .zxzx-container {
        padding: 18px 6px;
    }
    .zxzx-title {
        font-size: 1.3rem;
    }
    .zxzx-item-title {
        font-size: 1rem;
    }
    .zxzx-item-desc {
        font-size: 0.95rem;
    }
}
.fazx-banner {
    position: relative;
    width: 100%;
    height: 470px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9eef6;
}
.fazx-banner-img {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    background: #e9eef6;
}
.fazx-banner-texts {
    position: absolute;
    top: 17.5%;
    left: 14%;
    width: 35.94%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 2;
}
.fazx-banner-title, .fazx-banner-subtitle {
    font-size:30px ;
    font-family: SourceHanSansSC-Light;
    font-weight: 500;
    color: #060606;
    text-align: left;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    line-height: 1.2;
    letter-spacing: 0;
    background: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}
.zxzx-banner-subtitle {
    margin-top: 28px;
    font-size: 20px;
    font-family: SourceHanSansSC-Normal;
    color: #060606;
    text-align: left;
    line-height: 1.2;
}
.fazx-banner-desc {
    margin-top: 28px;
    font-size: 20px;
    font-family: SourceHanSansSC-Normal;
    color: #060606;
    text-align: left;
    line-height: 1.2;
    max-width: 741px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-all;
}
@media (max-width: 700px) {
    .zxzx-banner {
        height: 220px;
    }
    .zxzx-banner-texts {
        top: 15%;
        left: 5%;
        width: 90%;
    }
    .zxzx-banner-title, .zxzx-banner-subtitle {
        font-size: 1.2rem;
    }
}
/* 新闻详情内容图片和段落样式 */
.article-content .article-text img,
.article-content .article-text .article-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}
.article-content .article-text p {
    margin: 0 0 1em 0;
}
/* 让内容区所有图片自适应宽高、默认居中 */
.article-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}
/* 如果图片在 <p style="text-align:center"> 里，改为 inline-block 让 text-align:center 生效 */
p[style*="text-align:center"] > .article-img {
    display: inline-block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    float: none;
}
/* 强制内容区图片以后台定义格式显示，无论有无 class */
.article-content .article-text img,
.article-img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
    height: auto !important;
    float: none !important;
}
p[style*="text-align:center"] > img,
p[style*="text-align:center"] > .article-img {
    display: inline-block !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    height: auto !important;
    float: none !important;
    text-align: center !important;
}
/* 内容区图片只限制最大宽度和自适应高度，其他样式交给内容本身 */
.article-content .article-text img,
.article-img {
    max-width: 100%;
    height: auto;
}
/* 让 TinyMCE 生成的 <figure class="image align-center"> 居中 */
figure.image.align-center,
figure.align-center {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
figure.image.align-center img,
figure.align-center img {
    display: inline-block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    float: none;
}
/* 强制让所有 .article-content .article-text 下的 figure.align-center 及其图片居中 */
.article-content,
.article-content .article-text {
    display: block !important;
}
.article-content .article-text figure.image.align-center,
.article-content .article-text figure.align-center {
    display: block !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    float: none !important;
}
.article-content .article-text figure.image.align-center img,
.article-content .article-text figure.align-center img {
    display: inline-block !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    height: auto !important;
    float: none !important;
    text-align: center !important;
}
/* 彻底覆盖浏览器默认的 figure 缩进和图片居中问题 */
figure,
figure.image.align-center,
figure.align-center {
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    text-align: center !important;
}
figure img,
figure.image.align-center img,
figure.align-center img {
    display: inline-block !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    height: auto !important;
    float: none !important;
}
/* 加深新闻item间隔线条颜色并加粗 */
/* 已删除新闻条目底部横线 */

/* 新闻列表整体宽度控制在1440px并居中 */
.zxzx-container, .news-container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    background: #f4f8fd !important;
}
/* 新闻容器包装器，确保左右边距均为240px */
.news-container-wrapper {
    max-width: 100%;
    margin-top: 150px;
    margin-left: 240px;
    margin-right:240px ;
    padding: 30px 20px;
    background: #f4f8fd !important;
}
/* 强制覆盖新闻主容器背景色为#f4f8fd */
.news-container {
    background: #f4f8fd !important;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 20px;
}
.news-date-ym {  color: #999; margin-left: 4px; line-height: 1; }

/* 新闻列表样式 */
.news-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 三列布局 */
    grid-auto-flow: column; /* 列优先排列 */
    grid-template-rows: repeat(auto-fill, minmax(55px, auto)); /* 自动创建行 */
    gap: 40px 116px;
    margin-top: 30px;
    padding: 80px 80px 80px 69px; /* 增加右边距到80px，使内容不紧贴边缘 */
    border-radius: 24px !important; /* 调整为更适中的圆角半径并确保优先级 */
    background: #ffffff !important; /* 确保白色背景优先级 */
}

/* 新闻条目样式 */
.news-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
       padding: 0 0 0 0;
    min-height: 55px;
    gap: 10px;
} /* 使用Grid布局实现对齐 */

.news-item:hover {
    background: #ffffff;
    border-radius: 8px;
    padding: 0 0 0 0;
}

.news-number {
    font-size: 20px;
    font-family: SourceHanSansSC-Normal, sans-serif;
    color: #999999;
    width: 50px;
    text-align: center;
    font-weight: normal;
    transform: translateY(-4px); /* 上移4像素实现对齐 */
    /* height: 55px; */
    /* line-height: 55px; */
} /* 简化序号样式 */

.news-content {
    max-width: 479px;
    text-align: left;
} /* 简化内容样式，依赖Grid实现对齐 */

/* 分页数字无边框无背景，当前页为蓝色字体 */
.pagination a, .pagination span {
    padding: 10px 15px;
    border: none;
    background: none;
    color: #666;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: none;
}
.pagination .current {
    color: #007bff;
    background: none;
    border: none;
    font-weight: bold;
}
