yz
2021-01-30 5ce96dfbedb0ee6d0abd612ae489c020e8f6ec79
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
$bg:#2d3a4b;
$dark_gray:#aaa;
$light_gray:#eee;
 
 
.login-container {
  background: url(../../assets/background2.png) 50% no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  padding-top: 8%;
  #form-biao-dan{
    text-align: center;
  }
    .sub-title {
      font-size: 1.5rem;
      margin: .3rem 0 .7rem 1rem;
    }
    .desc {
      font-size: .96rem;
      line-height: 1.9rem;
    }
  }
  .login-form {
    width: 420px;
    height: 350px;
    padding: 36px;
    background: #fff;
    .form-input{
      border-radius: 20px;
      margin-top: 20px;
    }
    .code-input {
      margin-top: 20px;
      border-radius: 20px;
      width: 50%;
      display: inline-block;
      vertical-align: middle;
    }
    .code-image {
      margin-top: 20px;
      display: inline-block;
      vertical-align: top;
      cursor: pointer;
    }
    .login-type {
      text-align: right;
      display: inline-block;
      width: 100%;
    }
    .logo-wrapper {
      display: inline-block;
      margin: 10px 0;
      img {
        width: 1.9rem;
        display: inline-block;
        margin: .8rem .8rem -.8rem .8rem;
        cursor: pointer;
        &.radius {
          border-radius: 50%;
        }
      }
    }
    .submit-but{
      width:100%;
      margin-bottom:14px;
      background-color: rgba(163, 44, 48, 1);
      border-color: rgba(163, 44, 48, 1);
      border-radius: 20px;
      margin-top: 10%;
    }
  }
  .login-footer {
    position: fixed;
    bottom: 1rem;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 1rem;
    line-height: 1rem;
    height: 1rem;
    font-weight: 600;
    color: #fff;
  }
  .tips {
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
    span {
      &:first-of-type {
        margin-right: 16px;
      }
    }
  }
 
  .title-container {
    position: relative;
 
    .title {
      font-size: 20px;
      color: rgba(0,0,0,.85);
      margin: 0 auto 40px auto;
      text-align: center;
      font-weight: bold;
    }
 
    .set-language {
      color: #aaa;
      position: absolute;
      top: 3px;
      font-size: 18px;
      right: 0;
      cursor: pointer;
    }
  }
 
  .thirdparty-button {
    position: absolute;
    right: 0;
    bottom: 6px;
  }
 
  @media only screen and (max-width: 470px) {
    .thirdparty-button {
      display: none;
    }
  }
 
  @media screen and (max-width: 970px)
  {
    .login-form {
      left: 50%;
    }
    .login-info {
      display: none;
    }
  
}