/**归档页 样式**/

.ma-sectionname {
    display: inline-block;
}

.ma-sectioncount {
    font-size: 14px;
    color: #666;
}

.ma-post-content {
    display: flex;
    margin-top: 10px;
    align-items: flex-start;
}

.ma-postcontent-img {
    margin-right: 1em;
    max-width: 180px;
}

.ma-postcontent-img img {
    width: 180px;
    height: 100px;
    max-width: 180px;
    object-fit: cover;
    border-radius: 5px;
}

.ma-postcontent-excerpt {
    text-indent: 2em;
    max-height: 150px;
    max-height: fit-content;
    /* 设置为 fit-content，让其根据内容自动调整高度 */
    overflow: hidden;
    text-overflow: ellipsis;
    /*white-space: nowrap;*/
}