/* 内页标题 */
.newsTrends_title_box {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 24px;
    color: #302e2e;
    line-height: 56px;
    font-style: normal;
    border-bottom: 1px solid #999999;
    /* padding-bottom: 20px; */
}





/* 内页内容 - 简化结构 */
.newContent {
    max-width: 1200px;
    margin: 0 auto 40px;
    background: #fff;
    padding: 20px;
}

/* 简介部分 */
.generalSituation_intro_title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 20px;
}

.generalSituation_intro_text {
    color: #444;
    line-height: 1.6;
}

.generalSituation_intro_text img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

/* 友情链接部分 */
.friendly_link {
    background-color: #f5f5f5;
    display: flex;
    padding: 15px;
    margin-top: 20px;
    align-items: center;
}

.friendly_link_title {
    font-weight: bold;
    margin-right: 20px;
    line-height: 1.2;
}

.link_select {
    display: flex;
    flex: 1;
    gap: 15px;
}

.select_item {
    flex: 1;
}

/* 新闻列表样式 */
.whgny_news_container {
    max-width: 1200px;
    margin: 20px auto 40px;
}

.whgny_news_list {
    display: flex;
    flex-direction: column;
}

.whgny_news_item {
    display: flex;
    /* padding: 25px 0; */
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s;
    margin-bottom: 25px;
    padding-bottom: 25px;
}

.whgny_news_item:hover {
    background-color: #f9f9f9;
}

.whgny_news_img {
    width: 300px;
    height: 170px;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

.whgny_news_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.whgny_news_img img:hover {
    transform: scale(1.05);
}

.whgny_news_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.whgny_news_title {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 22px;
    color: #2f2e2e;
    line-height: 35px;
    text-align: left;
    font-style: normal;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
}

.whgny_news_text {
    margin-top: 5px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #2f2e2e;
    line-height: 36px;
    text-align: justify;
    font-style: normal;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
}

.whgny_news_date {
    margin-top: 10px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #999;
    line-height: 25px;
    text-align: left;
    font-style: normal;
    padding: 0;
    margin: 0;

}

/* 分页样式 */
.pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.pagination-total {
    font-size: 14px;
    color: #666;
    margin-right: 15px;
}

.pagination-size-select {
    position: relative;
    margin-right: 20px;
}

.pagination-size-select select {
    appearance: none;
    background-color: #fff;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    padding: 0 30px 0 10px;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    color: #606266;
    cursor: pointer;
}

.pagination-size-select:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -2px;
    border: 5px solid transparent;
    border-top-color: #c0c4cc;
    pointer-events: none;
}

.pagination-nav {
    display: flex;
    align-items: center;
}

.pagination-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #dcdfe6;
    background-color: #fff;
    color: #606266;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    font-size: 14px;
}

.pagination-btn.prev,
.pagination-btn.next {
    font-size: 12px;
}

.pagination-btn.current {
    background-color: #b90513;
    color: #fff;
    border-color: #b90513;
}

.pagination-btn:hover:not(.current) {
    color: #b90513;
    border-color: #b90513;
}

.pagination-btn.disabled {
    cursor: not-allowed;
    color: #c0c4cc;
}

@media screen and (max-width:768px) {
    .newsTrends_title_box{
        width: 95%;
        margin: 0 auto;
    }
    .generalSituation_intro_text p{
        font-size: 16px;
    }
    .whgny_news_container{
        width: 95%;
        margin: 0 auto;
    }
    .whgny_news_item{
        flex-direction: column;
    }
    .whgny_news_img{
        width: 100%;
        height: auto;
        margin-right: 0;
    }
    .whgny_news_date{
        font-size: 16px;
    }
    .pagination-container{
        font-size: 16px;
    }
    .newContent{
        width: 95%;
        margin: 0 auto;
        padding: 0;
    }
}