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
| .register {
| flex: 1;
| position: relative;
| padding: 12px 24px 16px;
| background-color: #ffffff;
| margin: @pageMargin;
| border-radius: @border-radius-base;
| display: flex;
| flex-direction: column;
|
| &-form {
| flex: 1;
| }
|
| &-label {
| width: 85px;
| text-align: left;
| }
|
| &-subtitle {
| margin: -4px 0 12px;
| color: @text-color-secondary;
| }
|
| // 常规登记也有用到的样式
| &-over {
| position: relative;
| background-color: #ffffff;
| top: 0;
| left: 0;
| right: 0;
| height: 100%;
| z-index: 99;
|
| margin: @pageMargin;
|
| &-icon {
| color: @success-color;
| font-size: 80px;
| margin-bottom: 20px;
| }
|
| &-subtitle {
| margin: 12px 0 20px;
| color: @text-color-secondary;
| }
|
| &-success {
| padding-top: 24px;
| text-align: center;
| background-color: #f9fafc;
| padding-bottom: 1px;
| }
| }
|
| &-submit {
| margin-top: 24px;
| }
| }
|
|