unknown
2022-03-16 5c4732c1d40ea63ed246be568c88d5fcf3b25f26
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
/* pages/home/home.wxss */
.page__hd {
  background: linear-gradient(to bottom right, #D9FDFB, white);
}
 
.top-card {
  border-radius: 4px;
  background: linear-gradient(to bottom right, #bbf3eb, #62EAD2);
  color: white;
  padding: 8px;
}
 
.top-card .top-card__time {
  text-align: end;
  font-size: 12px;
  color: #ffffffde;
}
 
.top-card .top-card__score {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  margin: 16px;
}
 
.top-card .top-card__items {
  display: flex;
  justify-content: space-around;
}
 
.top-card__items .top-card__item {
  text-align: center;
}
 
.top-card__items .top-card__item view {
  color: #ffffffde;
  font-size: 12px;
}
 
.top-card__items .top-card__item text {
  font-weight: 600;
}
 
.icon {
  width: 13px;
  height: 13px;
}
 
.title {
  padding: 8px;
}
 
.title::after {
  height: 1px;
  background-color: var(--fyui-text-color_2);
}
 
.notice {
  color: var(--fyui-text-color_2);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}