bchao.wxss
1.8 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
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
/* pages/bchao/bchao.wxss */
.z_container{
background: #EFEFF4;
width: 100%;
height: 100vh;
display: flex;
display: -webkit-flex;
display: -webkit-box;
flex-flow: column;
-webkit-flex-flow: column;
-webkit-box-orient: vertical;
overflow-x: hidden;
}
.top_note{
width: 660rpx;
height: 100rpx;
margin: 65rpx auto 30rpx;
font-size: 30rpx;
color: #999;
}
.add_record{
width: 670rpx;
height: 94rpx;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
font-size: 34rpx;
color: #666666;
border: 1rpx dashed #999;
border-radius: 10rpx;
}
.record_lists{
margin: 90rpx 40rpx 0;
-webkit-box-flex: 1;
-webkit-flex: 1;
flex: 1;
overflow: auto;
}
.record_list{
background-color: #FFF;
border-radius: 10rpx;
padding: 0 15rpx;
margin-bottom: 40rpx;
}
.top_date{
height: 74rpx;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 30rpx;
color: #999;
border-bottom: 1px solid #D8D8D8;
}
.edit{
width: 84rpx;
height: 44rpx;
display: flex;
align-items: center;
justify-content: center;
color: #FFF;
background-color: #51DBA2;
border-radius: 100rpx;
}
.record_label{
height: 122rpx;
display: flex;
justify-content: space-between;
border-bottom: 1rpx solid #D8D8D8;
}
.lable_item{
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
flex: 1;
font-size: 34rpx;
color: #000;
flex-direction: column;
font-weight: 500;
}
.label_detail_value{
display: flex;
justify-content: space-between;
align-items: center;
height: 90rpx;
}
.detail_value{
display: flex;
justify-content: center;
align-items: center;
flex: 1;
font-size: 30rpx;
color: #666;
}
.nodata{
height: 580rpx;
display: flex;
align-items: center;
justify-content: center;
font-size: 34rpx;
color: #999;
}