@import "tailwindcss"; /* 全局基础样式 */ * { box-sizing: border-box; } html { @apply font-sans antialiased; line-height: 1.5; } body { @apply m-0 p-0 bg-gray-50 text-gray-900 text-sm; } /* 滚动条样式 */ ::-webkit-scrollbar { @apply w-1.5 h-1.5; } ::-webkit-scrollbar-track { @apply bg-gray-100; } ::-webkit-scrollbar-thumb { @apply bg-gray-300 rounded; } ::-webkit-scrollbar-thumb:hover { @apply bg-gray-400; } /* 焦点样式 */ *:focus-visible { @apply outline-2 outline-blue-500 outline-offset-2; }