feiyu02
2022-08-11 a82b8c09ca795a4b6273b03a79ba488f6cce5eb0
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
/* component/progress/progress.wxss */
 
.progress_box {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
}
 
.progress_bg {
  position: absolute;
  width: 200px;
  height: 200px;
}
 
.progress_canvas {
  width: 200px;
  height: 200px;
}
 
.progress_text {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top right, #bbf3eb86, #62ead18c);
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
 
.progress_num {
  font-size: 30px;
  font-weight: 600;
  color: var(--fyui-text-color_2);
}
 
.progress_info {
  font-size: 10px;
  color: var(--fyui-text-color_2);
}