.news {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 100px;
}

.news .row {
    width: 100%;
    background-color: #f0f0f0;
}
.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
}

.breadcrumb-item {
    color: #606266;
    text-decoration: none;
}

.breadcrumb-item a {
    color: #606266;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #409eff;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #c0c4cc;
}

.breadcrumb-item:last-child {
    color: #303133;
}

.titles {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.titles h1 {
    display: flex;
    align-items: flex-end;
    width: 100%;
    font-size: 30px;
    font-weight: 600;
    padding: 20px 0;
    border-bottom: 2px solid #409eff;
}
.titles h1 p {
    color: #555;
    font-size: 14px;
    margin-left: 10px;
    font-weight: 500;
    color: #555555;
}
.news .row .bread {
    width: 80%;
    height: 50px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.news .box {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 新闻列表容器 */
.news-list {
    width: 100%;
    min-height: 300px;
    box-sizing: border-box;
}

/* 新闻条目 */
.news-item {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed #949494;
}

.news-item:hover {
    background-color: #f1f1f1;
    cursor: pointer;
    color: #409eff;
    transition-duration: 500ms;
}

.news-item:not(:hover) {
    transition-duration: 500ms;
}

.news-item .news-title {
    font-size: 16px;
    width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
}

.news-item .news-date {
    font-size: 14px;
    color: #666;
}

/* 分页样式 */
.pagination {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pagination-btn {
    padding: 5px 10px;
    border: 1px solid #ddd;
    background-color: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.pagination-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination-btn.active {
    background-color: #409eff;
    color: white;
    border-color: #409eff;
}

.pagination-ellipsis {
    padding: 0 5px;
}
@media only screen and (max-width: 576px) {
    .news {
        margin-top: 60px;
    }
    .news .row .bread {
        width: 90%;
    }
    .titles {
        width: 90%;
    }
    .titles h1 {
        font-size: 25px;
    }
    .news .box {
        width: 90%;
    }
    .news-item .news-title {
        width: 75%;
    }
}
