table.scss
1.09 KB
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
.table {
display: flex;
flex-direction: column;
.table-head {
display: flex;
flex-direction: row;
height: 68rpx;
background-color: #F9F9FC;
&-item {
flex: 1;
display: flex;
justify-content: center;
&-text {
font-weight: bold;
font-size: 26rpx;
color: #1D2541;
line-height: 68rpx;
text-align: center;
}
}
.last-table {
min-width: 150rpx;
}
}
.table-body {
&-item {
display: flex;
flex-direction: row;
height: 68rpx;
border-bottom: 1px solid #F2F2F6;
align-items: center;
&-value {
flex: 1;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
&-text {
/* #ifndef APP-NVUE */
max-width: 170rpx;
/* #endif */
/* #ifdef APP */
lines:1;
/* #endif */
/* #ifdef H5 || MP-WEIXIN */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
/* #endif */
font-weight: 400;
font-size: 26rpx;
color: #202328;
text-align: center;
}
}
}
}
}