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
98
99
100
101
102
103
104
105
| .login-edit-box {
| display: inline-block;
| position: relative;
| box-sizing: border-box;
| background: #ffffff;
| background-position: center center;
| background-repeat: no-repeat;
| background-size: cover;
| min-height: 100px;
|
| .card-control {
| position: absolute;
| top: 0px;
| left: 0px;
| .anticon-tool {
| right: auto;
| left: 1px;
| padding: 1px;
| }
| }
| .anticon-tool {
| position: absolute;
| z-index: 2;
| font-size: 16px;
| right: 1px;
| top: 1px;
| cursor: pointer;
| padding: 5px;
| background: rgba(255, 255, 255, 0.55);
| }
| .login-edit-form {
| border-radius: inherit;
| .ant-form-item {
| font-size: 16px;
| margin: 0 15px 15px;
| .ant-input {
| height: 35px;
| background: transparent;
| }
| }
| button:not(.vercode) {
| width: 100%;
| height: 40px;
| line-height: 1;
| font-size: 18px;
| margin-bottom: 25px;
| }
| .ant-form-item:last-child {
| margin-bottom: 0;
| }
| }
| .login-way-wrap {
| height: 50px;
| line-height: 50px;
| margin-bottom: 10px;
| display: flex;
| border-radius: inherit;
| .login-way {
| flex: 1;
| width: 50%;
| font-size: 17px;
| text-align: center;
| white-space: nowrap;
| text-overflow: ellipsis;
| overflow: hidden;
| padding: 0 16px;
| transition: all 0.3s;
| border: 1px solid transparent;
| border-top: 0!important;
| }
| .login-way.active, .login-way:hover {
| color: #1890ff;
| }
| .login-way:not(.active) {
| cursor: pointer;
| background: #fafafa;
| border: 1px solid #e8e8e8;
| }
| .login-way:first-child {
| border-left: 0;
| border-top-left-radius: inherit;
| }
| .login-way:last-child {
| border-right: 0;
| border-top-right-radius: inherit;
| }
| }
| .login-way-wrap.simple {
| .login-way {
| font-size: 18px;
| text-align: left;
| padding: 0 15px;
| line-height: 60px;
| }
| }
| }
| .login-edit-box::after {
| display: block;
| content: ' ';
| clear: both;
| }
| .login-edit-box:hover {
| z-index: 1;
| box-shadow: 0px 0px 4px #1890ff;
| }
|
|