啊鑫
2025-07-17 eaa506e57403d1b8502f16ca5dd6e82c347724d0
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
@import '../style/var';
 
.van-row {
  &::after {
    display: table;
    clear: both;
    content: '';
  }
 
  &--flex {
    display: flex;
    flex-wrap: wrap;
 
    &::after {
      display: none;
    }
  }
 
  &--justify-center {
    justify-content: center;
  }
 
  &--justify-end {
    justify-content: flex-end;
  }
 
  &--justify-space-between {
    justify-content: space-between;
  }
 
  &--justify-space-around {
    justify-content: space-around;
  }
 
  &--align-center {
    align-items: center;
  }
 
  &--align-bottom {
    align-items: flex-end;
  }
}