style(EventCard): 浏览量样式调整

- 眼睛图标放大至 20px
- 文字放大至 14px
- 颜色改为亮白色

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
zdl
2026-01-15 16:57:57 +08:00
parent ed9f7ddabe
commit d29eff6a55

View File

@@ -327,9 +327,9 @@ const HorizontalDynamicNewsEventCard = React.memo(({
onClick={(e) => e.stopPropagation()}
>
{/* 浏览量 */}
<HStack spacing={0.5} color="gray.400">
<Eye size={16} />
<Text fontSize="xs">{formatCompactNumber(event.view_count)}</Text>
<HStack spacing={0.5} color="white">
<Eye size={20} />
<Text fontSize="14px">{formatCompactNumber(event.view_count)}</Text>
</HStack>
{/* 收藏按钮 */}