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
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
/* pages/mService/pSchedule/pSchedule.wxss */
.page__bd {
  padding: 10px;
  background-color: white;
}
 
.sm-title {
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 8px;
}
 
.sm-card {
  display: flex;
  border-radius: 6px;
  margin-bottom: 8px;
}
 
.sm-time {
  font-size: 12px;
}
 
.history_icon {
  width: 10vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
 
.history_icon .history_icon_1 {
  width: 22px;
  height: 22px;
  background-color: #cce9f8;
  border-radius: 50%;
  opacity: 0.2;
  display: flex;
  justify-content: center;
  align-items: center;
}
 
.history_icon .history_icon_1>view {
  width: 11px;
  height: 11px;
  background: #1addbd;
  border-radius: 50%;
  z-index: 10;
}
 
.history_icon .history_icon_2 {
  width: 0px;
  height: 100%;
  /* padding: 10px 0px; */
  border: 1px dashed #EBF8FF;
  color: transparent;
}
 
.sm-content {
  background-color: #EBF8FF;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
  width: 50%;
  flex: 1;
  font-size: 14px;
}
 
.sm-content__left{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 50%;
}
 
.sm-content__right {
  background-color: #64BEFB;
  padding: 10px 16px;
  color: white;
  white-space: nowrap;
  width: 30%;
  text-align: center;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
 
.sm-content__right>text {
  font-size: 20px;
}
 
.sm-content__past {
  background: #F5F5F5;
  color: #ADADAD;
}
 
.sm-content__past .sm-content__left {
}
 
.sm-content__past .sm-content__right {
  background-color: #E4E4E4;
  color: #ADADAD;
}