/**
 * 微信小程序插件公共端样式
 */

/* 朋友圈文章类型样式 */
.moment-post {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.moment-post .moment-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.moment-post .moment-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.moment-post .moment-content {
    margin-bottom: 10px;
}

.moment-post .moment-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.moment-post .moment-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* 图库文章类型样式 */
.gallery-post {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.gallery-post .gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.gallery-post .gallery-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}