/* 动态模块样式 */

.moment-list {
	margin-bottom: 20px;
}

.moment-item {
	padding: 20px;
	margin-bottom: 15px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.moment-item-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.moment-item-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
}

.moment-item-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.moment-item-info {
	flex: 1;
}

.moment-item-author {
	font-weight: 600;
	color: #333;
}

.moment-item-time {
	color: #999;
	font-size: 12px;
}

.moment-item-content {
	line-height: 1.8;
	color: #666;
	margin-bottom: 15px;
}

.moment-item-images {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	gap: 10px;
	margin-bottom: 15px;
}

.moment-item-images img {
	width: 100%;
	height: 100px;
	object-fit: cover;
	border-radius: 4px;
}

.moment-item-actions {
	display: flex;
	gap: 20px;
	padding-top: 15px;
	border-top: 1px solid #f5f5f5;
}

.moment-item-action {
	color: #666;
	font-size: 14px;
	cursor: pointer;
	transition: color 0.3s;
}

.moment-item-action:hover {
	color: #1890ff;
}

/* 响应式 */
@media (max-width: 768px) {
	.moment-item-images {
		grid-template-columns: repeat(3, 1fr);
	}
}

