/* 自定义微调,Tailwind 之外的细节 */
html, body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif; }

.fade-enter { animation: fade-in 0.18s ease-out; }
@keyframes fade-in { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.modal-bg { background: rgba(15, 23, 42, 0.45); }
.toast { animation: toast-in 0.2s ease-out; }
@keyframes toast-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* 表格行高紧凑一点,材料表经常很长 */
table.compact td, table.compact th { padding: 0.5rem 0.75rem; }
