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
| /**
| * 徐祥健<xuxj@hugeinfo.com.cn>
| * 2018年7月16日 19:56
| *
| */
|
|
| @import '../../conf/vars';
|
| .login-view {
| &-main {
| height: 25vh;
| display: flex;
| justify-content: center;
| align-items: center;
| }
| &-content {
| display: flex;
| justify-content: center;
| }
| &-body{
| height: 40vh;
| width: 384px;
| background-color: #fff;
| }
| &-text {
| margin-top: 20px;
| font-size: 23px;
| color: #fff;
| }
| &-wel {
| width: 150px;
| height: 50px;
| text-align: center;
| margin-left: 120px;
| padding-top: 20px;
| border-bottom: 3px solid #1790FF;
| font-size: 16px;
| font-weight: 600;
| }
| &-from {
| padding: 20px;
| margin-top: 30px;
| }
| &-btn {
| text-align: center;
| padding-top: 40px
| }
| }
|
|