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
| /* pages/assessment/assessment.wxss */
| .banner-bg {
| position: fixed;
| width: 100%;
| height: 50vh;
| background: linear-gradient(to bottom, #57E4CB, #bbf3eb);
| }
|
| .page__hd .title {
| font-size: 16px;
| font-weight: 600;
| margin-top: 8px;
| }
|
| .page__hd .tag {
| font-size: 10px;
| color: #55A37D;
| margin-top: 8px;
| }
|
| .page__hd .btn {
| border-radius: 20px;
| line-height: 20px;
| background-color: #52be85;
| padding: 8px 4px;
| text-align: center;
| color: white;
| }
|
| .line-chart-card {
| position: relative;
| height: 30vh;
| padding: 0;
| }
|
| .h-cell {
| padding: 16px 10px;
| }
|
| .h-score {
| background-color: #F0AE4E;
| border-radius: 50%;
| padding: 8px;
| width: 20px;
| height: 20px;
| color: white;
| font-size: 12px;
| text-align: center;
| }
|
| .h-line_1 {
| display: flex;
| justify-content: flex-start;
| }
|
| .h-rank {
| font-size: 14px;
| margin-left: 4px;
| }
|
| .h-line_2 {
| display: flex;
| justify-content: space-between;
| font-size: 10px;
| color: var(--fyui-text-color_3);
| padding-left: 40px;
| padding-top: 4px;
| margin-top: 4px;
| border-top: 1px rgba(202, 202, 202, 0.295) solid;
| align-items: center;
| }
|
| .h-btn {
| border-radius: 4px;
| background: linear-gradient(to right, #6DF1A9, #62EBCF);
| padding: 4px 16px;
| color: white;
| font-size: 14px;
| }
|
|