.xhwj-title {
    color: #004993;
    border-bottom: 1px solid #ddd;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    font-size: 16px;
}

.xhwj-title a {
    color: #004993;
    text-decoration: none;
    /* 去掉下划线，可选 */
}

.xhwj-page {
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
}

/* 标题图片区域 */
.banner-container {
    height: 250px;
    overflow: hidden;
}

.banner-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 行业党建分栏样式 - 新增全屏边框 */
.section-header {
    position: relative;
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
}

.section-title-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 60px;
    box-sizing: border-box;
}

.block-service2 {
    font-weight: 500;
    color: #004993;
    background-color: #F0F5FF;
    width: 180px;
    height: 60px;
    font-size: 18px;
    position: absolute;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #ddd;
    /* 标题左侧边框 */
    border-right: 1px solid #ddd;
    /* 标题右侧边框 */
}

/* 内容列表 */
.content-container {
    max-width: 1200px;
    margin: 0 auto 40px;
}

.article-list {
    margin: 0;
    padding-top: 20px;
    list-style: none;
}

.article-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #ccc;
    transition: all 0.3s ease;
}

.article-item:hover {
    background-color: #f9f9f9;
}

.article-title {
    position: relative;
    padding-left: 20px;
    flex: 1;
}

.article-title a {
    font-size: 18px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.article-title a:hover {
    color: #004993;
}

.article-title a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #004993;
    border-radius: 50%;
}

.article-date {
    font-size: 16px;
    color: #999;
    text-align: right;
    min-width: 120px;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.article-item:hover .article-date {
    color: #004993;
}

/* 分页样式 */
.pagination-container {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    text-align: center;
}

.pagination {
    display: inline-flex;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-item {
    display: inline-block;
}

.page-link {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.page-link:hover {
    background-color: #3b8acf;
    color: white;
    border-color: #3b8acf;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .section-title-container {
        height: auto;
        padding: 15px 20px;
        border-left: none;
        border-right: none;
    }

    .block-service2 {
        position: relative;
        left: auto;
        width: 100%;
        padding: 15px 20px;
        height: auto;
        margin-bottom: 15px;
        border-left: none;
        border-right: none;
    }

    .article-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-date {
        text-align: left;
        margin-left: 20px;
        margin-top: 10px;
    }

    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }

    .article-title a {
        font-size: 16px;
    }
}