/* 朋友圈动态 - 黑白配色 */
.moment-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-bottom: 1px solid #F2F2F2;
}

.moment-item:last-child {
    border-bottom: none;
}

.moment-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
}

.moment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.moment-body {
    flex: 1;
    min-width: 0;
}

.moment-author {
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 4px;
    /*font-size: 14px;*/
}

.moment-text {
    line-height: 1.6;
    color: #1A1A1A;
    word-break: break-word;
    white-space: pre-wrap;
    margin-bottom: 8px;
    /*font-size: 14px;*/
}

/* 图片网格 */
.moment-images {
    display: grid;
    gap: 4px;
    margin-bottom: 8px;
    max-width: 320px;
}

.moment-images.imgs-1 {
    grid-template-columns: 1fr;
    max-width: 220px;
}

.moment-images.imgs-2,
.moment-images.imgs-4 {
    grid-template-columns: repeat(2, 1fr);
}

.moment-images.imgs-3,
.moment-images.imgs-5,
.moment-images.imgs-6,
.moment-images.imgs-7,
.moment-images.imgs-8,
.moment-images.imgs-9 {
    grid-template-columns: repeat(3, 1fr);
}

.moment-image {
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    background: #F5F5F5;
}

.moment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.moment-images.imgs-1 .moment-image {
    aspect-ratio: 4/3;
}

/* 底部信息区域 */
.moment-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

/* 时间 */
.moment-time {
    font-size: 12px;
    color: #B8B8B8;
}

/* 阅读全文链接 */
.moment-readmore {
    font-size: 12px;
    color: #8A8A8A;
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.moment-readmore:hover {
    color: #1A1A1A;
}

/* 添加一个小圆点分隔符 */
.moment-readmore::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background-color: #D8D8D8;
    border-radius: 50%;
}

/* 空状态 */
.no-moments {
    text-align: center;
    padding: 60px 0;
    color: #B8B8B8;
    font-size: 14px;
}

/* 响应式 */
@media (max-width: 768px) {
    .moment-item {
        gap: 10px;
    }

    .moment-avatar {
        width: 36px;
        height: 36px;
    }

    .moment-images {
        max-width: 260px;
    }
    
    .moment-footer {
        gap: 8px;
    }
}