Blame view

antis-ncc-admin/src/views/login/index.scss 3.07 KB
4aba9b59   wwk   1
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
  .login-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url('../../assets/images/login_bg.png') center no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  
    .login-version {
      position: fixed;
      right: 0px;
      top: 0px;
      width: 94px;
      height: 94px;
      background: url('../../assets/images/login_version.png') no-repeat center;
      background-size: 100%;
  
      .login-version-text {
        width: 94px;
        height: 94px;
        line-height: 52px;
        text-align: center;
        color: #fff;
        font-size: 14px;
        transform: rotate(45deg);
      }
    }
  
    .login-content {
      width: 1200px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }
  
    .login-form {
      width: 500px;
      height: 530px;
      padding: 50px 50px 0;
      border-radius: 6px;
      background-color: #fff;
  
      .login-logo {
        width: 100%;
        height: auto;
        margin-bottom: 90px;
      }
  
      .login-tab {
        height: 44px;
        margin-bottom: 30px;
        position: relative;
  
        &::after {
          position: absolute;
          left: 0;
          width: 50%;
          height: 2px;
          content: '';
          display: block;
          bottom: 0;
          background-color: #1890ff;
          z-index: 100;
          transition: .5s;
        }
  
        &.active1 {
          &::after {
            left: 0;
          }
        }
  
        &.active2 {
          &::after {
            left: 50%;
          }
        }
  
  
        .item {
          position: relative;
          width: 50%;
          font-size: 20px;
          line-height: 44px;
          color: #666;
          display: inline-block;
          height: 44px;
          text-align: center;
  
          &.active {
            color: #1890ff;
          }
        }
      }
  
      .rule-tip {
        color: #a0acb7;
        font-size: 12px;
        line-height: 12px;
        text-align: left;
  
        >>>.el-form-item__content {
          line-height: 12px;
        }
      }
  
      .el-form {
        input:-webkit-autofill {
          box-shadow: 0 0 0px 1000px #fff inset !important;
          -webkit-text-fill-color: #606266 !important;
        }
  
        input::-webkit-input-placeholder {
          color: #a0acb7;
        }
  
        .login-btn {
          width: 100%;
          font-size: 16px;
          margin-bottom: 20px;
          margin-top: 40px;
        }
  
        .foot {
          width: 100%;
          display: flex;
          justify-content: space-between;
          font-size: 12px;
          color: #188ae2;
  
          .register,
          .forget {
            cursor: pointer;
          }
        }
      }
  
      .login-form-QRCode {
        width: 100%;
        text-align: center;
  
        .qrcode-img {
          position: relative;
          margin-bottom: 18px;
          width: 220px;
          height: 220px;
        }
  
        .qrcode-tip {
          color: #334d65;
          line-height: 22px;
          font-size: 16px;
          text-align: center;
        }
      }
    }
  
    .login-foot {
      position: absolute;
      width: 1060px;
      color: #999;
      font-size: 12px;
      position: fixed;
      bottom: 20px;
      left: 31%;
      text-align: left;
      margin-left: 110px;
    }
  }