
.article-list {
    max-width: 1180px;
    margin: 0 auto;
}

.article-item {
    display: flex;
    gap: 24px;
    /* border-bottom: 1px solid #eee; */
    box-shadow: 0px 2px 10px rgba(168, 171, 178, 0.3),
    /* 下方阴影 */
    0px -2px 10px rgba(168, 171, 178, 0.3);
    /* 上方阴影 */
    margin: 30px 0;
}

    .article-item:last-child {
        border-bottom: none;
    }

.article-thumb {
    width: 24%;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
    background: #f6f6f6;
}

    .article-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.article-info {
    padding: 25px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-title {
    width: 90%;
    font-size: 18px;
    color: #222;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 12px;
    letter-spacing: 0.1rem;
}

.article-desc {
    width: 65%;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 控制显示2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #888;
}

.meta-author {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .meta-author img {
        width: 22px;
        height: 22px;
        border-radius: 50%;
    }


/* 分页容器 */
.pagination {
    /* display: flex;	 */
    align-items: center;
    gap: 12px;
    /* 按钮之间间距 */
    text-align: center;
    margin: 50px 0;
}

/* 通用分页按钮样式 */
.pagination-btn {
    min-width: 15px;
    padding: 1px 20px;
    border: 2px solid #d0d0d0;
    border-radius: 8px;
    /* 圆角 */
    background: #fff;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

    /* 激活当前页样式 */
    .pagination-btn.active {
        background-color: #00a650;
        /* 匹配图中绿色 */
        border-color: #00a650;
        color: #ffffff;
    }

    /* hover 交互 */
    .pagination-btn:hover:not(.active) {
        border-color: #888888;
        background-color: #f8f8f8;
    }
