.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.news-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}
.news-breadcrumb-item {
    color: #303133;
    font-weight: 700;
    text-decoration: none;
}
.news-breadcrumb-separator {
    margin: 0 8px;
    color: #ccc;
}
.news-breadcrumb-active {
    color: #333;
    font-weight: 500;
}
.news-content {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #eee;
}
.news-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    /* border-bottom: 1px dashed #e0e0e0; */
    text-decoration: none;

}
.news-list-item:hover .news-list-item-title{
    color: #006d46;
}
.news-list-item:hover .news-date{
    color: #006d46;
}
.news-list-item:last-child {
    border-bottom: none;
}
.news-list-item-title {
    /* display: flex;
    align-items: center; */
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    padding-left: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    -webkit-line-clamp: 1;
    width: 100%;
    max-width: 75%;
    color: #2f2e2e;

}
.news-list-item-title::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #ff6600;
    margin-right: 10px;
}
.news-date {
    color: #2f2e2e;
    font-size: 18px;
}
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.news-pagination-info {
    margin-right: 20px;
    color: #666;
    font-size: 14px;
}
.news-pagination-select {
    margin-right: 20px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
}
.news-pagination-buttons {
    display: flex;
    align-items: center;
}
.news-pagination-button {
    display: flex;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 5px;
    border-radius: 4px;
    border: 1px solid #ddd;
    color: #666;
    text-decoration: none;
    cursor: pointer;
}
.news-pagination-button.active {
    background-color: #00a854;
    color: #fff;
    border-color: #00a854;
}
.news-pagination-button.ellipsis {
    border: none;
}

@media screen and (max-width: 768px) {
    .news-container{
        width: 95%;
        padding: 0;
        padding-top: 10px;
    }
    .news-content{
        padding: 0;
    }
    .news-list-item{
        padding: 5px 10px;
    }
    .news-list-item-title{
        width: 50%; 
        white-space: nowrap;      /* 禁止换行 */
        overflow: hidden;         /* 隐藏溢出内容 */
        text-overflow: ellipsis;  /* 显示省略号 */
        display: block;
        font-size: 16px;
        padding-left: 0;
    }
    .news-list-item-title::before{
        display: none;
    }
    .news-date{
        font-size: 14px;
    }
}

/* 补充新闻列表页面完整移动端适配 */
@media screen and (max-width: 768px) {
    /* 面包屑适配 */
    .news-breadcrumb {
        margin-bottom: 15px;
        font-size: 13px;
        padding: 0 10px;
    }
    .news-breadcrumb-separator {
        margin: 0 5px;
    }
    
    /* 分页区域适配 */
    .news-pagination {
        margin-top: 20px;
        padding: 0 10px;
    }
    .news-pagination-info {
        margin-right: 10px;
        font-size: 13px;
    }
    .news-pagination-select {
        margin-right: 10px;
        margin-bottom: 10px;
        padding: 4px;
        font-size: 13px;
    }
    .news-pagination-button {
        width: 28px;
        height: 28px;
        margin: 0 3px;
        font-size: 13px;
    }
    
    /* 修复标题宽度和换行问题 */
    .news-list-item-title {
        max-width: 70%;
        line-height: 24px;
    }
    
    /* 内容容器边距优化 */
    .news-content {
        border: none;
    }
}

@media screen and (max-width: 480px) {
    /* 小屏精细化适配 */
    .news-list-item {
        padding: 8px 5px;
    }
    .news-list-item-title {
        max-width: 65%;
        font-size: 15px;
    }
    .news-date {
        font-size: 13px;
    }
    
    .news-pagination-info,
    .news-pagination-select {
        margin-right: 0;
        width: 100%;
    }
    .news-pagination-buttons {
        width: 100%;
        justify-content: center;
    }
}