appointmentRecord.wxss
1.1 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
/* pages/appointmentRecord/appointmentRecord.wxss */
/* 团购成交记录 */
page {
height: 100%;
}
.content_box {
height: 100%;
}
.no-data {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: #cccccc;
font-size: 30rpx;
margin: auto 0;
}
.title {
position: fixed;
top:0;
left:0;
z-index:10;
}
.list_tab {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1rpx solid rgba(0, 0, 0, 0.1);
padding: 30rpx 0;
box-sizing: border-box;
text-align: center;
}
.list_tab_item {
width: 50%;
font-size: 28rpx;
color: #464646;
position: relative;
}
.list_label {
width: 180rpx;
height: 22rpx;
position: absolute;
bottom: -28rpx;
left: 50%;
transform: translateX(-50%);
background: rgba(252, 91, 99, 1);
border-radius: 10rpx;
font-size: 18rpx;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
}
.list_content {
border: 0;
padding: 15rpx 0;
z-index:1;
margin-top: 100rpx;
}
.list_content .list_tab_item {
font-size: 24rpx;
color: #a3a3a3;
}