riku
2022-08-08 0f51940bc899827f84019d2c0c165b23014d8eca
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
/* pages/module_consult/consulthome/consulthome.wxss */
.page__bd {
  padding: 10px;
}
 
.search-bar {
  min-width: 50vw;
  padding: 6px 8px;
  font-size: 12px;
  line-height: 24px;
  color: var(--fyui-text-color_2);
  text-align: left;
  background-color: white;
  border-radius: 10px;
}
 
.card {
  position: relative;
  /* background-color: cyan; */
  border-radius: 10px;
  padding: 6px;
  text-align: center;
  flex: 1;
}
 
.card:active {
  background-color: var(--fyui-BG-COLOR-ACTIVE);
}
 
.card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
 
.divider {
  width: 8px;
}
.card .card-title {
  font-size: 18px;
  font-weight: bold;
}
 
.card .card-abstract {
  font-size: 12px;
  color: var(--fyui-text-color_2);
}
 
.card .icon {
  height: 56px;
  width: 60px;
}
 
 
/* --fyui-box */
.fyui-box__tag {
  justify-content: space-evenly;
}