/* CSS 层顺序声明：必须先于所有 JS 注入的样式表加载。
   生产构建中样式全部由 JS chunk 动态注入，若 element-plus 的 @layer el
   先于主样式包的层声明被创建，el 层会排到 base(tailwind preflight) 之后，
   导致按钮等组件被 preflight 重置为无样式。此文件在 index.html 中以
   <link> 静态引入，保证最先建立层顺序。顺序与 theme.css 保持一致。 */
@layer theme, base, ant, antd, el, td, components, utilities;
