update pay function

This commit is contained in:
2025-11-21 23:41:33 +08:00
parent 22bb57b52f
commit b5a0b7094a

View File

@@ -699,14 +699,21 @@ const AgentChatV4 = () => {
); );
return ( return (
<Flex <Box
position="fixed" position="absolute"
top="0" top="0"
left="0" left="0"
right="0" right="0"
bottom="0" bottom="0"
bg={darkBg} bg={darkBg}
overflow="hidden" overflow="hidden"
>
<Flex
w="100%"
h="100%"
overflow="hidden"
position="relative"
flexDirection="row"
> >
{/* 背景装饰 - 黄金光晕效果 */} {/* 背景装饰 - 黄金光晕效果 */}
<Box <Box
@@ -1306,6 +1313,7 @@ const AgentChatV4 = () => {
</Box> </Box>
</Collapse> </Collapse>
</Flex> </Flex>
</Box>
); );
}; };