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
| .tabBtn {
| display: flex;
| margin-bottom: 12px;
|
| &-unit {
| display: inline-block;
| height: 32px;
| border-radius: 21px;
| color: #1D2129;
| padding: 3px 12px 4px 12px;
| cursor: pointer;
| background: #f2f3f5;
| line-height: 27px;
| margin-right: 5px;
| }
|
| &-unitActive {
| background: #f3f2f7;
| color: #1a6fb8;
| }
| }
|
| .reviewProgress {
| .reviewCircle {
| width: 14px;
| height: 14px;
| border: 2px solid #3491fa;
| border-radius: 50%;
| margin-top: 4px;
| }
|
| .reviewLine {
| height: calc(100% - 23px);
| width: 14px;
| display: flex;
| align-items: center;
| justify-content: center;
| position: relative;
| margin-top: 4px;
|
| &::before {
| content: '';
| height: 100%;
| width: 1px;
| background-color: #e5e6eb;
| position: absolute;
| left: 50%;
| transform: translateX(-50%);
| }
| }
|
| .deepTitle {
| font-size: 14px;
| font-family: PingFang SC, PingFang SC-400;
| font-weight: 400;
| text-align: LEFT;
| color: #1d2129;
| line-height: 22px;
| }
|
| .shallowTitle {
| font-size: 14px;
| font-family: PingFang SC, PingFang SC-400;
| font-weight: 400;
| text-align: LEFT;
| color: #86909c;
| line-height: 22px;
| }
| }
|
|