timepicker.wxss
1017 字节
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
/* component/time-picker/index.wxss */
.time-title {
font-family: PingFangSC;
font-weight: 600;
color: rgba(50, 50, 50, 1);
font-size: 32rpx;
margin: 40rpx 20rpx 20rpx 20rpx;
}
.select-date {
max-height: 400rpx;
height: 672rpx;
}
.select-day {
float: left;
width: 300rpx;
height: 392rpx;
}
.day {
font-size: 30rpx;
height: 100rpx;
display: flex;
justify-content: center;
align-items: center;
background: rgba(239, 239, 239, 1);
}
.day.active {
background-color: #fff;
}
.select-time {
height: 100%;
margin-left: 330rpx;
background-color: #fff;
overflow-y: auto;
}
.select-time-item {
padding: 30rpx 36rpx;
width: 314rpx;
height: 42rpx;
border-radius: 18rpx;
border: 2px solid rgba(151, 151, 151, 1);
font-size: 30rpx;
margin-bottom: 30rpx;
}
.select-time-item.select {
color: #ff4a00;
}
/* .time {
line-height: 80rpx;
border-bottom: 2px solid #eee;
} */
i {
float: right;
font-size: 30rpx;
color: #ff4a00;
margin-top: 26rpx;
}