login.scss
1.35 KB
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
.login_main {
height: 100vh;
width: 100%;
background-image: linear-gradient(180deg, rgba(7, 54, 207, .08), rgba(0, 90, 255, 0) 48%);
.login_content {
margin: 0 20rpx;
// height: 100%;
// width: 100%;
.login_log {
display: flex;
width: 100%;
justify-content: center;
align-items: center;
padding-top: 250rpx;
// background-image: linear-gradient(180deg, rgba(225, 233, 252, .05) 12%, #f8f8f9);
// background: red;
.welcome-logo {
width: 300rpx; // 100rpx
height: 100rpx;// 60rpx
}
.logo_text {
font-size: 40rpx;
margin-left: 10rpx;
height: 60rpx;
line-height: 60rpx;
}
}
.login_form {
margin-top: 100rpx;
padding: 0 50rpx;
position: relative;
.passwordMargin {
margin-top: 200rpx;
}
.code-img {
position: absolute;
bottom: 120rpx;
right: 50rpx;
width: 100rpx;
height: 80rpx;
// background: red;
}
.login_btn {
margin-top: 20rpx;
display: flex;
justify-content: center;
align-items: center;
border-radius:10rpx;
font-size: 40rpx;
color: #fff;
text-align: center;
line-height: 100rpx;
font-weight: 400;
background: rgba(23,100,255,.9);
// background-image: linear-gradient(90deg, rgba(23, 100, 255, .5), rgba(23, 100, 255, .5));
box-shadow: 0 0 1.06667vw 0 rgba(23, 100, 255, .5);
}
}
}
}