/* 全局样式文件 */ | |
:root { | |
--primary-color: #667eea; | |
--primary-dark: #5a6fd8; | |
--secondary-color: #764ba2; | |
--success-color: #67c23a; | |
--warning-color: #e6a23c; | |
--danger-color: #f56c6c; | |
--info-color: #909399; | |
--text-primary: #303133; | |
--text-regular: #606266; | |
--text-secondary: #909399; | |
--text-placeholder: #c0c4cc; | |
--border-color: #dcdfe6; | |
--bg-color: #f5f7fa; | |
} | |
/* 滚动条美化 */ | |
::-webkit-scrollbar { | |
width: 6px; | |
height: 6px; | |
} | |
::-webkit-scrollbar-track { | |
background: #f1f1f1; | |
border-radius: 3px; | |
} | |
::-webkit-scrollbar-thumb { | |
background: #c1c1c1; | |
border-radius: 3px; | |
} | |
::-webkit-scrollbar-thumb:hover { | |
background: #a1a1a1; | |
} | |
/* 通用动画 */ | |
.fade-enter-active, | |
.fade-leave-active { | |
transition: opacity 0.3s ease; | |
} | |
.fade-enter-from, | |
.fade-leave-to { | |
opacity: 0; | |
} | |
/* 通用工具类 */ | |
.text-center { | |
text-align: center; | |
} | |
.flex-center { | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
} |