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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
| $blue_c: #4093ff;
|
| .login-container {
| position: relative;
| width: 100vw;
| height: 100vh;
| background: url("../../assets/images/login_bg.png") no-repeat;
| background-size: 100% 100%;
|
| .login_from_box {
| display: flex;
| position: absolute;
| left: 50%;
| top: 50%;
| transform: translateX(-50%) translateY(-50%);
| width: 848px;
| height: 490px;
| border-radius: 10px;
| overflow: hidden;
|
| .login_from_l {
| // width: 424px;
| flex: 0 0 424px;
| height: 100%;
| padding: 40px 20px;
| background-color: #f1f7ff;
|
| .img_box {
| width: 100%;
| height: 100%;
| background: url("../../assets/images/login_01.jpg") no-repeat;
| background-size: 100% 100%;
| }
| }
|
| .login_from_r {
| flex: 1;
| padding: 75px 50px 0;
| background-color: #fff;
| .row_title {
| display: flex;
| align-items: center;
| .logo {
| height: 28px;
| margin-right: 8px;
| }
| .title {
| font-size: 20px;
| font-family: AlibabaPuHuiTi-Medium,AlibabaPuHuiTi;
| font-weight: 600;
| color: #232426;
| line-height: 30px;
| letter-spacing: 1px;
| vertical-align: middle;
| }
|
| }
|
| .sub_title {
| margin-bottom: 14px;
| font-size: 14px;
| font-family: AlibabaPuHuiTi-Medium,AlibabaPuHuiTi;
| font-weight: 500;
| color: #aaa;
| line-height: 20px;
| }
|
| .iconfont {
| font-size: 18px;
| color: $blue_c;
| font-weight: bold;
|
| &.icon-mima {
| font-size: 16px;
| }
| }
|
|
| .form_other_box {
| display: flex;
| justify-content: space-between;
| align-items: center;
| padding-left: 10px;
| margin-bottom: 90px;
| }
|
| .policy_box {
| padding-top: 15px;
| padding-left: 10px;
| .policy_text {
| color: $blue_c;
| }
| }
|
| }
| }
| }
|
|