@tailwind base; @tailwind components; @tailwind utilities; :root { --background: #ffffff; --foreground: #171717; } @media (prefers-color-scheme: dark) { :root { --background: #0a0a0a; --foreground: #ededed; } } body { color: var(--foreground); background: var(--background); font-family: Arial, Helvetica, sans-serif; } @layer utilities { .text-balance { text-wrap: balance; } } /* Ant Design Modal 内容可复制 */ .ant-modal-body { user-select: text !important; -webkit-user-select: text !important; } .ant-modal-body * { user-select: text !important; -webkit-user-select: text !important; } /* Descriptions 所有内容可复制 - Ant Design v6 兼容 */ .ant-descriptions-item-content, .ant-descriptions-item-content *, .ant-descriptions td, .ant-descriptions td *, [class*="ant-descriptions"] td, [class*="ant-descriptions"] td * { user-select: text !important; -webkit-user-select: text !important; -moz-user-select: text !important; -ms-user-select: text !important; cursor: text; } /* 确保表格单元格内容可选 */ .ant-table-cell, .ant-table-cell * { user-select: text !important; -webkit-user-select: text !important; }