/* 新闻列表页的专属样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 20px;
}
/* .news-list {
    flex: 3;
    margin-right: 20px;
} */

.news-list h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #222;
    padding-bottom: 10px;
}

.article {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.article img {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin-right: 20px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article img:hover {
    transform: scale(1.05);
}

.article-content {
    flex: 1;
}

.article h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.article h3 a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.article h3 a:hover {
    color: #007BFF;
}

.article p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.article .date {
    font-size: 14px;
    color: #999;
}

/* 分页样式 */
.pagination {
    text-align: center;
    margin-top: 30px;
}

.pagination a {
    margin: 0 5px;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination a:hover {
    background-color: #007BFF;
    color: #fff;
}

/* 侧边栏样式 */
.sidebar {
    /* background-color: #fff; */
    padding: 20px;
    border-radius: 8px;
}

.sidebar h3 {
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #222;
    padding-bottom: 10px;
}

.sidebar .article {
    margin-bottom: 20px;
}

.sidebar .article h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.sidebar .article h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar .article h3 a:hover {
    color: #007BFF;
}

.sidebar .article .date {
    font-size: 14px;
    color: #999;
}

/* 侧边栏图片 */
.sidebar-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

/* 自适应样式 */
@media screen and (max-width: 768px) {
    .article {
        flex-direction: column;
        align-items: center;
    }

    .article img {
        margin-bottom: 15px;
        width: 100%;
        max-width: 100%;
        /* 居中 */
        margin-left: auto;
        margin-right: auto;
    }

    .article-content {
        text-align: center;
    }
}
