riku
2024-11-13 ab70c6eb4a181b282af0eb200275cd8a4d2ab172
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
/* pages/mService/cSchedule/cSchedule.wxss */
.schedule-card {
  position: relative;
  /* background: linear-gradient(0deg, #e9c07f, #F8BD6B, #FFAC38); */
  /* padding: 8px; */
  background-color: white;
  color: var(--fyui-text-color_1);
  border-radius: 6px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, .4);
}
 
.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.719);
  font-size: 30px;
}
 
.schedule-category {
  display: flex;
  background: linear-gradient(0deg, #ffffff, #E2EFFF, #c5dfff);
  align-items: center;
  font-size: 30rpx;
  padding: 8px;
  border-radius: 6px 6px 0 0;
}
 
.schedule-category>text {
  margin-left: 4px;
}
 
.schedule-title {
  padding: 8px;
  font-size: 36rpx;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  border-top: 1px solid rgba(151, 151, 151, 0.068);
}
 
.schedule-time {
  padding: 0 8px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 24rpx;
}
 
.schedule-time__day {
  font-size: 36rpx;
}
 
.schedule-time__right {
  color: #77b2fa;
}
 
.schedule-time__right-2 {
  color: orange;
}
 
.schedule-time__right-3 {
  color: red;
}