.article-list {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.article-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-image {
    width: 373px;
    height: 250px;
    object-fit: cover;
}

.article-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 50.4px; /* 固定两行高度：18px * 1.4 * 2 = 50.4px */
}

.article-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 13px;
    margin-bottom: 15px;
}

.article-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.article-stats span {
    display: inline-block;
    white-space: nowrap;
    vertical-align: middle;
    line-height: 1.5;
    height: 1.5em;
    box-sizing: border-box;
}

.article-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: auto;
}

.read-more-wrapper {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.read-more {
    display: inline-block;
    padding: 8px 20px;
    background: #1E9FFF;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.read-more:hover {
    background: #1890ff;
    color: #fff;
}

/* 分页样式 */
.pagination {
    text-align: center;
    margin: 30px 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination li {
    display: inline-block;
    margin: 0 5px;
}

.pagination li a,
.pagination li span {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    color: #666;
    border-radius: 4px;
    min-width: 16px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 14px;
}

.pagination li.active span {
    background: #1E9FFF;
    color: #fff;
    border-color: #1E9FFF;
}

.pagination li a:hover {
    border-color: #1E9FFF;
    color: #1E9FFF;
}

/* 上一页下一页箭头样式 */
.pagination li:first-child a,
.pagination li:last-child a {
    font-family: "宋体";  /* 使用宋体显示箭头 */
    font-weight: bold;
}

.pagination li:first-child {
    margin-right: 5px;  /* 增加与数字的间距 */
}

.pagination li:last-child {
    margin-left: 5px;  /* 增加与数字的间距 */
}

/* IE8 兼容性处理 */
@media \0screen {
    .pagination li a,
    .pagination li span {
        *display: inline;
        *zoom: 1;
    }
}