index.wxss
858 Bytes
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
.schedule-item {
margin: 0 30rpx 40rpx 30rpx;
width: 690rpx;
height: 208rpx;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 0 10px 0 #E0E0E0;
border-radius: 2px;
}
.schedule-info {
width: 70%;
height: 100%;
margin-left: 30rpx;
}
.schedule-time {
margin-top: 30rpx;
color: #e0e0e0;
font-size: 24rpx;
}
.schedule-name {
margin-top: 10rpx;
color: #4a4a4a;
font-size: 30rpx;
}
.schedule-location {
margin-top: 10rpx;
color: #e2e2e2;
font-size: 26rpx;
margin-bottom: 30rpx;
}
.schedule-item .schedule-apply {
background-color: #4a4a4a;
color: white;
font-size: 24rpx;
width: 120rpx;
height: 50rpx;
margin-right: 30rpx;
display: flex;
justify-content: center;
align-items: center;
border-radius: 6rpx;
}
.schedule-item .inactive {
background-color: #e0e0e0;
}