login.wxss
974 字节
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
/* pages/login/login.wxss */
.loginwrap{
position: absolute;
width:622rpx;
height:397rpx;
background:rgba(255,255,255,1);
opacity:1;
border-radius: 15rpx;
top:310rpx;
left:51rpx;
padding: 30rpx 60rpx;
box-sizing: border-box;
}
.loginname{
color:#06121E;
font-weight: bold;
font-size: 36rpx;
text-align: center
}
.logintext{
color:#8C9198;
font-size: 28rpx;
margin-top:74rpx;
}
.bottomtext{
display:flex;
align-items: center;
justify-content: space-between;
margin-top:42rpx;
}
.bottomtextleft{
width:214rpx;
height:80rpx;
background:rgba(238,238,238,1);
opacity:1;
border-radius:44rpx;
color:#8C9198;
font-size: 28rpx;
text-align: center;
line-height: 80rpx;
}
.bottomtextright{
width:214rpx;
height:80rpx;
background:linear-gradient(180deg,rgba(252,169,162,1) 0%,rgba(255,119,117,1) 100%);
opacity:1;
border-radius:44rpx;
color:#fff;
font-size: 28rpx;
text-align: center;
line-height: 80rpx;
}