.wenzhang {
    display: flex;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* 
    文章列表头图（.image / .image img）已移除，打造纯文字展示效果。
    目的：去掉文章列表前的缩略图。
    逻辑：.content 通过 flex: 1 自动占满整行宽度，无需额外宽度调整。
    列表项之间通过 border-bottom 分隔线保持视觉层次。
*/

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content .biaoti {
    font-size: 1.1em;
    font-weight: bold;
}

.content p {
    font-size: 1em;
    margin-bottom: 10px;
}

.meta-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 2px;
}

.pagination {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.numbers {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.page-number {
    min-width: 30px;
    height: 30px;
    margin: 0 5px;
    padding: 5px;
    border: none;
    color: #333;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.page-number.active {
    background-color: #007bff;
    color: #fff;
}

.container a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #4d7fd0;
    font-size: 1.1em;
    text-decoration: underline;
}

/* ===== 平板端适配 ===== */
/* 
    目的：响应式布局适配。
    逻辑：文章列表头图已移除，清理 .image / .image img 断点样式。
*/
@media (max-width: 768px) {
    .content .biaoti {
        font-size: 1em;
    }
}

/* ===== 手机端适配 ===== */
/* 
    目的：响应式布局适配。
    逻辑：文章列表头图已移除，清理 .image / .image img 断点样式。
    .wenzhang 不再需要 flex-direction: column（之前配合图片使用）。
*/
@media (max-width: 480px) {
    .meta-info {
        flex-direction: column;
        gap: 5px;
    }

    .pagination {
        font-size: 0.9em;
    }

    .page-number {
        min-width: 28px;
        height: 28px;
        margin: 0 3px;
        padding: 3px;
    }
}
