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
| .affix-box {
| height: 64px;
| background: #ffffff;
| display: flex;
| justify-content: space-between;
| align-items: center;
| padding: 20px;
|
| .affix-box-title {
| padding-left: 14px;
| font-weight: bold;
| color: #171c20;
| position: relative;
|
| &:after {
| content: "";
| position: absolute;
| left: 0;
| top: 50%;
| width: 3px;
| height: 14px;
| // background: #4265eb;
| border-radius: 1px;
| -webkit-transform: translateY(-50%);
| transform: translateY(-50%);
| }
| }
| }
| .show-pwd {
| cursor: pointer;
| }
|
|