king
2019-12-11 a426c23b9bc90df787bc4d66718872f7c95c255a
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
.login-container {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  .logo {
    height: 100px;
    padding-top: 30px;
    border-bottom: 2px solid #06b4f7;
    img {
      max-height: 100%;
    }
  }
  .login-middle {
    height: calc(100vh - 194px);
    min-height: 420px;
    background-size: cover;
    background-position: center center;
    border-bottom: 2px solid #06b4f7;
 
    .login-form {
      float: right;
      margin-top: 5%;
      margin-right: 20%;
      padding: 1.6vw;
      background: #ffffff;
      width: 22vw;
      min-width: 300px;
      border-radius: 5px;
 
      h4 {
        font-size: 20px;
        font-weight: bold;
        color: #0A95CB;
        margin-bottom: 3vh;
      }
      .ant-form-item {
        font-size: 16px;
        margin-bottom: 3vh;
      }
      .btn-login {
        margin-bottom: 3vh;
      }
      .minline {
        display: inline-block;
        margin-bottom: 3vh;
        margin-top: -10px;
      }
      .minline.right {
        float: right;
        width: 100px;
        .ant-select-selection {
          border: 0;
          box-shadow: none;
          .ant-select-selection-selected-value {
            float: right;
            margin-right: 10px;
          }
        }
      }
      button {
        width: 100%;
        height: calc(2vw + 10px);
        min-height: 30px;
        line-height: 1;
      }
      .ant-dropdown-link {
        float: right;
        cursor: pointer;
        line-height: 20px;
        margin-top: 10px;
        .anticon.anticon-down {
          font-size: 16px;
        }
      }
      .ant-input-affix-wrapper {
        font-size: 16px;
      }
      .ant-input {
        font-size: 16px;
        height: calc(2vw + 5px);
        min-height: 30px;
      }
      .ant-form label {
        font-size: 16px;
      }
      .ant-btn {
        font-size: 18px;
      }
      .anticon-eye {
        color: #1890ff;
      }
    }
  }
  .login-bottom {
    text-align: center;
    color: #ffffff;
    padding-top: 20px;
    p span.split {
      margin-right: 15px;
    }
    a {
      display: inline-block;
      margin-bottom: 5px;
      color: #ffffff;
    }
  }
  .ant-btn-primary[disabled] {
    color: #fff;
    background-color: #40a9ff;
    border-color: #40a9ff;
  }
}
.ant-message {
  top: 50px;
  z-index: 1080;
}
@media screen and (max-width: 500px) {
  .login-container {
    .login-middle {
      .login-form {
        float: unset;
        margin: 0 auto;
        margin-top: 5%;
      }
    }
  }
}