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
| .bg-false {
| background-color: #FFFFFF;
| }
| .bg-true {
| background-color: #ebebeb;
| }
| .data-list {
| height: 200rpx;
| margin: 15rpx;
| border-bottom: 1px solid #d8d8d8;
| border-radius: 20rpx;
| }
| .list-left {
| display: inline-block;
| float: left;
| width: 80%;
| height: 100%;
| /* background-color: coral; */
|
| }
| .lists-item {
| text-indent: 1em;
| height: 25%;
| line-height: 50rpx;
| }
| .list-right {
| display: inline-block;
| float: left;
| width: 20%;
| height: 100%;
| /* background-color: cadetblue; */
| line-height: 200rpx;
| text-align: center;
| }
|
|