|
- /* 奇想宇宙 AIonline - PC 端全局样式 */
-
- /* @nuxt/ui v4 内置 TailwindCSS v4,需在入口显式导入 */
- @import "tailwindcss";
-
- /* 全局字体与基础样式 */
- body {
- font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
-
- /* 页面过渡动画 */
- .page-enter-active,
- .page-leave-active {
- transition: opacity 0.2s ease;
- }
- .page-enter-from,
- .page-leave-to {
- opacity: 0;
- }
-
- /* 滚动条美化 */
- ::-webkit-scrollbar {
- width: 6px;
- height: 6px;
- }
- ::-webkit-scrollbar-track {
- background: transparent;
- }
- ::-webkit-scrollbar-thumb {
- background: #cbd5e1;
- border-radius: 3px;
- }
- ::-webkit-scrollbar-thumb:hover {
- background: #94a3b8;
- }
|