1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
| //自动移滚动条样式
| ::-webkit-scrollbar {
| width: 1px;
| height: 5px;
| }
| ::-webkit-scrollbar-thumb {
| border-radius: 1em;
| background-color: rgba(50, 50, 50, 0.3);
| }
| ::-webkit-scrollbar-track {
| border-radius: 1em;
| background-color: rgba(50, 50, 50, 0.1);
| }
|
| .flex {
| display: flex !important;
| }
| .flex-j-c {
| justify-content: center;
| }
| .flex-a-c {
| align-items: center;
| }
|
| .width_1200 {
| width: 1200px;
| }
| .width_800 {
| width: 800px;
| }
| .width_400 {
| width: 400px;
| }
| .width_300 {
| width: 300px;
| }
| .width_200 {
| width: 200px;
| }
| .width_100 {
| width: 100px;
| }
|
| .fz_12 {
| font-size: 12px;
| }
| .fz_14 {
| font-size: 14px;
| }
| .fz_16 {
| font-size: 16px;
| }
| .fz_18 {
| font-size: 18px;
| }
| .fw_bold {
| font-weight: bold;
| }
|
| .mb_20 {
| margin-bottom: 20px;
| }
| .mt_20 {
| margin-top: 20px;
| }
| .ml_20 {
| margin-left: 20px;
| }
| .mr_20 {
| margin-right: 20px;
| }
|
| .mb_10 {
| margin-bottom: 10px;
| }
| .mt_10 {
| margin-top: 10px;
| }
| .ml_10 {
| margin-left: 10px;
| }
| .mr_10 {
| margin-right: 10px;
| }
|
| .pb_20 {
| padding-bottom: 20px;
| }
| .pt_20 {
| padding-top: 20px;
| }
| .pl_20 {
| padding-left: 20px;
| }
| .pr_20 {
| padding-right: 20px;
| }
|
| .pb_10 {
| padding-bottom: 10px;
| }
| .pt_10 {
| padding-top: 10px;
| }
| .pl_10 {
| padding-left: 10px;
| }
| .pr_10 {
| padding-right: 10px;
| }
|
| ul,
| li {
| list-style: none;
| }
|
| .ellipsis {
| overflow: hidden;
| text-overflow: ellipsis;
| white-space: nowrap;
| }
| .hover-pointer {
| cursor: pointer;
| }
|
| // 主题颜色
|
| $success_color: #68cabe;
| $warning_color: #fa6419;
| $error_color: #ff3c2a;
| $theme_color: #F31947;
| .theme_color {
| color: $theme_color !important;
| }
| $bg_color: #f1f6fa;
|
|