
.news-content {
    padding:  60px;
    background: #fff;
    max-width: 1440px;
    margin: 0 auto;
}

.news-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

}

.news-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.news-image {
    flex-shrink: 0;
    width: 225px;
    height:135px;
    border-radius: 6px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-text h3 {
    margin: 0 0 12px 0;
    font-size: 20px;
    line-height: 1.4;
    color: #333;
}

.news-text h3 a {
    color: inherit;
    transition: color 0.2s ease;
}

.news-text h3 a:hover {
    color: #0754D7;
}

.news-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* 分页样式 */


.possplit {
    background-image: url(../images/posSplit.png) !important; 
    width: 20px !important;

}

.wp_paging li a {

height: 34px !important;
line-height: 34px !important;
}
#wp_paging_w6 {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin: 30px 0;
    padding: 0;
    box-sizing: border-box;
}

.wp_paging {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    flex-wrap: wrap;
}

.wp_paging li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.pages_count {
    color: #666;
    font-size: 14px;
}

.pages_count em {
    color: #0754D7;
    font-style: normal;
    font-weight: 600;
}

.page_nav {
    display: flex;
    gap: 5px;
}

.page_nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 40px;
    height: 36px;
    box-sizing: border-box;
}

.page_nav a span {
    display: inline-block;
    line-height: 1;
}

.page_nav a:hover {
    border-color: #0754D7;
    color: #0754D7;
    background: #f0f5ff;
}

.page_nav a.first,
.page_nav a.last {
    min-width: 60px;
}

.page_jump {
   display: none !important;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.pages em {
    color: #0754D7;
    font-style: normal;
    font-weight: 600;
}

.pageNum {
    width: 50px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    padding: 0 8px;
}

.pageNum:focus {
    outline: none;
    border-color: #0754D7;
}

.pagingJump {
    padding: 6px 12px;
    background: #0754D7;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease;
}

.pagingJump:hover {
    background: #0540b0;
    color: #fff;
}

/* 响应式设计 */
@media (max-width: 768px) {
    #wp_paging_w6 {
        justify-content: center;
    }
    
    .wp_paging {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .page_nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .page_nav a {
        min-width: 36px;
        height: 32px;
        font-size: 12px;
        padding: 6px 8px;
    }
    
    .page_jump {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
} 


