@import "tailwindcss"; @plugin "@tailwindcss/typography"; /* 全局滚动条 */ ::-webkit-scrollbar { width: 6px; height: 6px; } ::-webkit-scrollbar-track { background: transparent; } ::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; } /* 模板执行进度条动画 */ @keyframes indeterminate-progress { 0% { transform: translateX(-150%); } 100% { transform: translateX(300%); } }