/* 全局样式 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* 文章列表样式 */
.list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.list li {
    width: 48%;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.list li.fl {
    float: left;
}

.list li.fr {
    float: right;
}

/* 缩略图样式 */
.thumbnail {
    display: block;
    width: 100%;
    height: 200px; /* 统一图片高度 */
    overflow: hidden;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 让图片适当缩放充满固定空间 */
}

/* 文章标题样式 */
.article-title {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    text-decoration: none;
}

.article-title:hover {
    text-decoration: underline;
}

/* 文章信息样式 */
.article-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.article-info span {
    margin-right: 10px;
}

/* 文章简介样式 */
.brief {
    font-size: 14px;
    color: #999;
}

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

.page a {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #333;
}

.page a.active {
    background-color: #333;
    color: #fff;
}

.page a:hover {
    background-color: #f0f0f0;
} 