啊鑫
7 天以前 fca192d3c38c5dcfbb6ace8bc71d6078f6a079b2
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
@import '../style/var';
 
.van-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: @empty-padding;
 
  &__image {
    width: @empty-image-size;
    height: @empty-image-size;
 
    img {
      width: 100%;
      height: 100%;
    }
  }
 
  &__description {
    margin-top: @empty-description-margin-top;
    padding: @empty-description-padding;
    color: @empty-description-color;
    font-size: @empty-description-font-size;
    line-height: @empty-description-line-height;
  }
 
  &__bottom {
    margin-top: @empty-bottom-margin-top;
  }
}