riku
2025-04-27 f46786f11c5c08ead7501a82e5a71430ad69b782
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
111
112
113
114
115
116
117
118
119
120
121
122
123
/* pages/enterprise/assessment/history/index.wxss */
.page .page-header {
  background: linear-gradient(var(--td-primary-color-7), var(--td-primary-color-1));
  min-height: 380rpx;
}
 
.line-chart-card {
  background-color: var(--td-white-color-1);
  border-radius: var(--td-border-radius);
  position: relative;
  height: 400rpx;
}
 
.line-chart-card .line-chart-card__picker {
  display: flex;
  font-size: var(--td-font-size-base);
  color: var(--td-text-color-primary);
  padding: 2px 4px 2px 8px;
  justify-content: flex-end;
  align-items: center;
}
 
 
.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: #8DF1E0;
  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: 100px;
  border: 1px dashed #80EFDC;
}
 
.history_time{
  /* background-color: red; */
  margin-left: 10px;
  font-size: 14px;
  font-weight: 550;
}
 
.h-cell {
  padding: 20px 10px 10px 10px;
  background-color: var(--td-bg-color-block);
  border-radius: var(--td-border-radius);
}
 
.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: space-between;
  align-items: center;
}
 
.h-rank {
  font-size: 14px;
  margin-left: 4px;
}
 
.h-line_2 {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--td-text-color-secondary);
  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;
}
 
.h-tag{
  color: var(--td-text-color-secondary);
  font-size: 12px;
  text-align: end;
  bottom: 0;
  right: 8px;
}
 
.flex-h {
  display: flex;
}