继续更新

This commit is contained in:
2025-10-15 11:11:23 +08:00
parent 7786e5f507
commit c147502b4d
89 changed files with 8116 additions and 2505 deletions

View File

@@ -10,6 +10,20 @@ import api from '../utils/api';
const AiContainer = styled.div`
min-height: calc(100vh - 140px);
padding: 20px 0;
opacity: 0;
transform: translateY(20px);
animation: pageEnter 0.8s ease-out forwards;
@keyframes pageEnter {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
`;
const Container = styled.div`
@@ -25,7 +39,7 @@ const PageHeader = styled.div`
const PageTitle = styled.h1`
color: white;
font-size: 32px;
font-size: 44.8px;
font-weight: 700;
margin-bottom: 10px;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
@@ -35,7 +49,7 @@ const PageTitle = styled.h1`
}
@media (max-width: 768px) {
font-size: 24px;
font-size: 33.6px;
}
`;
@@ -437,7 +451,7 @@ const AiModelPage = () => {
每次使用AI功能将消耗<b>100萌芽币</b>使AI
</p>
<p style={{ lineHeight: '1.6', color: '#374151' }}>
您可以通过<b>每日签到</b>300使AI
您可以通过<b>每日签到</b>300
</p>
</div>
)}