style(Community): 移除实时要闻与Footer之间的黑色空白区域

- Community/index.js: 移除 minH="100vh",添加 flex="1" 填满父容器
- Community/index.js: 移除底部 padding (pb={{ base: 4, md: 8 }} → pb={0})
- DynamicNewsCard.js: 移除底部 margin (mb={4} → mb={0})

🤖 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 19:03:39 +08:00
parent 75fd9924bc
commit d4a129c121
2 changed files with 3 additions and 3 deletions

View File

@@ -668,7 +668,7 @@ const [currentMode, setCurrentMode] = useState('vertical');
{...rest} {...rest}
bg={cardBg} bg={cardBg}
borderColor={borderColor} borderColor={borderColor}
mb={4} mb={0}
position="relative" position="relative"
zIndex={1} zIndex={1}
animation="fadeInUp 0.8s ease-out 0.2s both" animation="fadeInUp 0.8s ease-out 0.2s both"

View File

@@ -149,9 +149,9 @@ const Community = () => {
}, [location.pathname, registerEventUpdateCallback]); // 依赖路由变化重新注册 }, [location.pathname, registerEventUpdateCallback]); // 依赖路由变化重新注册
return ( return (
<Box minH="100vh" bg={bgColor}> <Box bg={bgColor} flex="1">
{/* 主内容区域 - padding 由 MainLayout 统一设置 */} {/* 主内容区域 - padding 由 MainLayout 统一设置 */}
<Box ref={containerRef} pt={0} pb={{ base: 4, md: 8 }}> <Box ref={containerRef} pt={0} pb={0}>
{/* ⚡ 顶部说明面板(懒加载):产品介绍 + 沪深指数 + 热门概念词云 */} {/* ⚡ 顶部说明面板(懒加载):产品介绍 + 沪深指数 + 热门概念词云 */}
<Suspense fallback={ <Suspense fallback={
<Box mb={6} p={4} borderRadius="xl" bg="rgba(255,255,255,0.02)"> <Box mb={6} p={4} borderRadius="xl" bg="rgba(255,255,255,0.02)">