riku
2024-11-13 48145f787eda81815f653ad21161a60e89b6a303
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
.schedule-top {
  background: linear-gradient(0deg, #ffffff, #E2EFFF, #c5dfff);
  /* margin: 0 10px; */
  padding: 8px;
  font-size: 30rpx;
  color: var(--fyui-text-color_1);
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
}
 
.schedule-top__finished {
  /* background: linear-gradient(0deg, #158a0b, #3a9c26, #6ead5b); */
}
 
.schedule-top-main {
  display: flex;
  align-items: center;
}
 
.schedule-top-main>text {
  margin-left: 8rpx;
}
 
.schedule-top-extend {
  display: flex;
  font-size: 24rpx;
  align-items: center;
  color: var(--fyui-text-color_2);
}
 
.schedule-wrap {
  position: relative;
  min-height: 100rpx;
  margin-bottom: 16rpx;
}
 
.schedule-card {
  position: absolute;
  /* width: max-content; */
  /* background: linear-gradient(0deg, #ffffff, #E2EFFF, #c5dfff); */
  background-color: white;
  /* margin: 0 10px; */
  /* margin-top: 4px; */
  padding: 8px;
  color: var(--fyui-text-color_1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  left: 0;
  right: 0;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, .4);
}
 
.schedule-card__expand {
  z-index: 0 !important;
}
 
.schedule-card__finished {
  /* background: linear-gradient(0deg, #6ead5b, #3a9c26, #158a0b); */
}
 
.schedule-card__item-0 {
  border-radius: 0 0 6px 6px !important;
}
 
.schedule-category {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: rgb(255, 255, 255);
}
 
.schedule-category>view>text {
  margin-right: 4px;
}
 
.schedule-title {
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  padding: 0 4px;
}
 
.t-class-button {
  --td-button-small-font-size: 36rpx;
  /* --td-button-small-height: 50px; */
}
 
.schedule-btn {
  background-color: white;
  text-align: center;
  color: #e08402;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 8px;
}
 
.schedule-btn__finished {
  color: #158a0b;
}
 
.schedule-btn:active {
  background: rgb(224, 224, 224);
}