king
2021-03-23 a8e94242166881639cecf3809e45ca527233ebd7
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
.normal-form-titles {
  display: flex;
  line-height: 30px;
  min-height: 50px;
  .page-card {
    position: relative;
    flex: 1;
    text-align: center;
    cursor: move;
    .form-sort {
      background: #d8d8d8;
      display: block;
      width: 20px;
      height: 20px;
      line-height: 20px;
      border-radius: 20px;
      text-align: center;
      color: #ffffff;
      margin: 10px auto 0px;
      position: relative;
      z-index: 1;
    }
  }
  .page-card:not(:first-child)::before {
    position: absolute;
    content: ' ';
    display: inline-block;
    width: 100%;
    height: 2px;
    background: #d8d8d8;
    left: -50%;
    top: 18px;
  }
  .page-card.active {
    color: #1890ff;
    .form-sort {
      background: #1890ff;
    }
  }
}