Xing Jinwen | ff16b1e | 2025-06-05 00:29:26 +0800 | [diff] [blame^] | 1 | /* 全局样式文件 */
|
| 2 | :root {
|
| 3 | --primary-color: #667eea;
|
| 4 | --primary-dark: #5a6fd8;
|
| 5 | --secondary-color: #764ba2;
|
| 6 | --success-color: #67c23a;
|
| 7 | --warning-color: #e6a23c;
|
| 8 | --danger-color: #f56c6c;
|
| 9 | --info-color: #909399;
|
| 10 |
|
| 11 | --text-primary: #303133;
|
| 12 | --text-regular: #606266;
|
| 13 | --text-secondary: #909399;
|
| 14 | --text-placeholder: #c0c4cc;
|
| 15 |
|
| 16 | --border-color: #dcdfe6;
|
| 17 | --bg-color: #f5f7fa;
|
| 18 | }
|
| 19 |
|
| 20 | /* 滚动条美化 */
|
| 21 | ::-webkit-scrollbar {
|
| 22 | width: 6px;
|
| 23 | height: 6px;
|
| 24 | }
|
| 25 |
|
| 26 | ::-webkit-scrollbar-track {
|
| 27 | background: #f1f1f1;
|
| 28 | border-radius: 3px;
|
| 29 | }
|
| 30 |
|
| 31 | ::-webkit-scrollbar-thumb {
|
| 32 | background: #c1c1c1;
|
| 33 | border-radius: 3px;
|
| 34 | }
|
| 35 |
|
| 36 | ::-webkit-scrollbar-thumb:hover {
|
| 37 | background: #a1a1a1;
|
| 38 | }
|
| 39 |
|
| 40 | /* 通用动画 */
|
| 41 | .fade-enter-active,
|
| 42 | .fade-leave-active {
|
| 43 | transition: opacity 0.3s ease;
|
| 44 | }
|
| 45 |
|
| 46 | .fade-enter-from,
|
| 47 | .fade-leave-to {
|
| 48 | opacity: 0;
|
| 49 | }
|
| 50 |
|
| 51 | /* 通用工具类 */
|
| 52 | .text-center {
|
| 53 | text-align: center;
|
| 54 | }
|
| 55 |
|
| 56 | .flex-center {
|
| 57 | display: flex;
|
| 58 | align-items: center;
|
| 59 | justify-content: center;
|
| 60 | }
|