| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- @tailwind base;
- @tailwind components;
- @tailwind utilities;
- /* Ant Design 主题定制 */
- :root {
- --ant-primary-color: #1e3a5f;
- --ant-primary-color-hover: #2a4a6f;
- --ant-primary-color-active: #15304f;
- }
- .ant-btn-primary {
- background-color: #1e3a5f;
- }
- .ant-btn-primary:hover {
- background-color: #2a4a6f;
- }
- .ant-btn-primary:active {
- background-color: #15304f;
- }
- /* 统计卡片装饰效果 */
- .stat-card {
- position: relative;
- overflow: hidden;
- }
- .stat-card::before {
- content: '';
- position: absolute;
- top: 0;
- right: 0;
- width: 100px;
- height: 100px;
- background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
- transform: translate(30%, -30%);
- pointer-events: none;
- }
|