wujingjing
2024-08-06 0dc8bb825b1fb47e0f477a6e4dc93638b2dedf95
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
.fui-list__wrap {
  width: 100%;
}
 
.fui-list__title,
.fui-list__footer {
  line-height: 1;
  box-sizing: border-box;
  word-break: break-all;
}
 
.fui-list__container {
  position: relative;
  width: 100%;
}
 
.fui-list__border-top {
  position: absolute;
  top: 0;
  height: 1px;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  transform-origin: 0 0;
  z-index: 1;
}
 
.fui-list__border-bottom {
  position: absolute;
  bottom: 0;
  height: 1px;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  transform-origin: 0 100%;
  z-index: 1;
}
 
.fui-list__border-color {
  background-color: var(--fui-color-border, #EEEEEE) !important;
}