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
| /* pages/m_service/c_schedule/c_schedule.wxss */
| .schedule-card {
| position: relative;
| background: linear-gradient(0deg, #e9c07f, #F8BD6B, #FFAC38);
| /* background-color: aqua; */
| margin: 0 10px;
| padding: 8px;
| color: rgb(255, 255, 255);
| border-radius: 6px;
| }
|
| .schedule-card__2 {
| background: linear-gradient(0deg, #7bc8fc, #72c4fc, #64BEFB);
| }
|
| .schedule-card__3 {
| background: linear-gradient(0deg, #e97f7f, #f86b6b, #ff3838);
| }
|
| .schedule-tag {
| font-size: 14px;
| position: absolute;
| top: 0;
| right: 4px;
| color: rgba(255, 255, 255, 0.15);
| font-size: 30px;
| }
|
| .schedule-category {
| display: flex;
| align-items: center;
| font-size: 14px;
| }
|
| .schedule-category>text {
| margin-left: 4px;
| }
|
| .schedule-title {
| font-size: 20px;
| margin: 12px 0;
| white-space: nowrap;
| overflow: hidden;
| text-overflow: ellipsis;
| }
|
| .schedule-time {
| display: flex;
| justify-content: space-between;
| font-size: 14px;
| }
|
|