diff --git a/src/hooks/useHomeResponsive.ts b/src/hooks/useHomeResponsive.ts index 5a2f7f76..c803e7df 100644 --- a/src/hooks/useHomeResponsive.ts +++ b/src/hooks/useHomeResponsive.ts @@ -18,21 +18,21 @@ export const useHomeResponsive = (): ResponsiveConfig => { }); const headingSize = useBreakpointValue({ - base: 'xl', - md: '3xl', - lg: '4xl' + base: 'lg', + md: 'xl', + lg: '2xl' }); const headingLetterSpacing = useBreakpointValue({ - base: '-1px', - md: '-1.5px', - lg: '-2px' + base: '-0.5px', + md: '-1px', + lg: '-1.5px' }); const heroTextSize = useBreakpointValue({ - base: 'md', - md: 'lg', - lg: 'xl' + base: 'xs', + md: 'sm', + lg: 'md' }); const containerPx = useBreakpointValue({ diff --git a/src/views/Home/HomePage.tsx b/src/views/Home/HomePage.tsx index ef50e489..13695984 100644 --- a/src/views/Home/HomePage.tsx +++ b/src/views/Home/HomePage.tsx @@ -91,7 +91,7 @@ const HomePage: React.FC = () => { { /> {/* 核心功能面板 */} - - + + {/* 特色功能卡片 - 新闻中心 */} { {/* 其他功能卡片 */} {regularFeatures.map((feature) => ( diff --git a/src/views/Home/components/FeatureCard.tsx b/src/views/Home/components/FeatureCard.tsx index c026f734..838901ca 100644 --- a/src/views/Home/components/FeatureCard.tsx +++ b/src/views/Home/components/FeatureCard.tsx @@ -34,51 +34,51 @@ export const FeatureCard: React.FC = ({ backdropFilter="blur(10px)" border="1px solid" borderColor="whiteAlpha.200" - borderRadius={{ base: 'xl', md: '2xl' }} + borderRadius={{ base: 'lg', md: 'xl' }} transition="all 0.3s ease" _hover={{ bg: 'whiteAlpha.200', borderColor: `${feature.color}.400`, - transform: 'translateY(-4px)', - shadow: '2xl' + transform: 'translateY(-3px)', + shadow: 'xl' }} _active={{ bg: 'whiteAlpha.200', borderColor: `${feature.color}.400`, - transform: 'translateY(-2px)' + transform: 'translateY(-1px)' }} onClick={() => onClick(feature)} - minH={{ base: 'auto', md: '180px' }} + minH={{ base: 'auto', md: '120px' }} cursor="pointer" > - - + + - {feature.icon} + {feature.icon} {feature.badge} - - + + {feature.title} {feature.description} @@ -87,11 +87,11 @@ export const FeatureCard: React.FC = ({