/* 朋友圈页面样式 */

.circle-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    direction: rtl;
}

.circle-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.circle-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.circle-description {
    color: #666;
    font-size: 16px;
}

/* 动态列表 */
.moments-list {
    margin-top: 20px;
}

.moment-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

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

.moment-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.moment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 12px;
    object-fit: cover;
}

.moment-author {
    font-weight: 600;
    color: #333;
}

.moment-time {
    color: #999;
    font-size: 13px;
    margin-right: 15px;
}

.moment-type {
    display: inline-block;
    background: #e9f4ff;
    color: #007bff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin-left: 10px;
}

.moment-content {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .circle-content {
        padding: 20px 15px;
    }
    
    .circle-title {
        font-size: 24px;
    }
    
    .moment-header {
        flex-wrap: wrap;
    }
}