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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
| .wux-cell {
| padding: 0;
| margin: 0;
| border-radius: 0;
| color: inherit !important;
| background: 0 0 !important;
| font-size: inherit;
| font-weight: 400;
| line-height: inherit;
| text-align: inherit;
| text-decoration: none;
| overflow: visible;
| min-height: 0 !important;
| width: auto !important;
| box-sizing: border-box;
| -webkit-tap-highlight-color: transparent;
| padding: 20rpx 30rpx;
| position: relative;
| display: -ms-flexbox;
| display: flex;
| -ms-flex-align: center;
| align-items: center;
| background: #fff;
| }
|
| .wux-cell:after {
| display: block;
| position: static;
| top: auto;
| left: auto;
| width: auto;
| height: auto;
| border: none;
| border-radius: 0;
| transform: none;
| transform-origin: 0 0;
| }
|
| .wux-cell:after {
| content: " ";
| position: absolute;
| left: 0;
| bottom: 0;
| right: 0;
| height: 2rpx;
| border-bottom: 2rpx solid #d9d9d9;
| color: #d9d9d9;
| transform-origin: 0 100%;
| transform: scaleY(0.5);
| left: 30rpx;
| }
|
| .wux-cell--last:after {
| display: none;
| }
|
| .wux-cell--hover {
| /* background-color: #ececec !important; */
| }
|
| .wux-cell--disabled {
| opacity: 0.3;
| }
|
| .wux-cell__thumb {
| display: block;
| width: 40rpx;
| height: 40rpx;
| margin-right: 10rpx;
| }
|
| .wux-cell__bd {
| -ms-flex: 1;
| flex: 1;
| }
|
| .wux-cell__text {
| text-align: left;
| }
|
| .wux-cell__desc {
| text-align: left;
| line-height: 1.2;
| font-size: 24rpx;
| color: grey;
| }
|
| .wux-cell__ft {
| text-align: right;
| color: grey;
| }
|
| .wux-cell--access .wux-cell__ft {
| padding-right: 26rpx;
| position: relative;
| }
|
| .wux-cell--access .wux-cell__ft:after {
| content: " ";
| display: inline-block;
| height: 12rpx;
| width: 12rpx;
| border-width: 4rpx 4rpx 0 0;
| border-color: #c8c8cd;
| border-style: solid;
| transform: matrix(0.71, 0.71, -.71, 0.71, 0, 0);
| position: relative;
| top: -4rpx;
| position: absolute;
| top: 50%;
| margin-top: -8rpx;
| right: 4rpx;
| }
|
|