智慧园区前端大屏
shuishen
2024-12-18 9a37c5e1b2190c3f6ec71483923922189091dd52
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
.flex {
    display: flex;
}
 
.flex-1 {
    flex: 1;
}
 
.flex-2 {
    flex: 2;
}
 
.flex-3 {
    flex: 3;
}
 
.flex-4 {
    flex: 4;
}
 
.flex-5 {
    flex: 5;
}
 
.flex-6 {
    flex: 6;
}
 
.flex-8 {
    flex: 8;
}
 
.a-i-c {
    align-items: center;
}
 
.flex_base {
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.j-c-s-a {
    justify-content: space-around;
}
 
.j-c-s-b {
    justify-content: space-between;
}
 
.j-c-c {
    justify-content: center;
}
 
.f-d-c {
    flex-direction: column;
}
 
.j-c-f-s {
    justify-content: flex-start;
}
 
.j-c-f-e {
    justify-content: flex-end;
}
 
.flex-wrap {
    flex-wrap: wrap;
}