login.wxss
1.6 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
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
/* pages/login/login.wxss */
page {
background: #010938;
}
.login_box {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
/* overflow-y: scroll; */
height: 100%;
width: 530rpx;
margin: 170rpx auto 0 auto;
color: #fff;
font-size: 28rpx;
}
.input_item {
padding: 16rpx 0;
border-bottom: 1rpx solid #fff;
margin: 0 0 26rpx 0;
}
.input_place {
color: #fff;
font-size: 28rpx;
}
.code {
display: flex;
justify-content: space-between;
align-items: center;
}
.code input {
width: 60%;
}
.code_txt {
display: flex;
align-items: center;
justify-content: center;
padding: 5rpx 10rpx 7rpx;
box-sizing: border-box;
width: 178rpx;
height: 44rpx;
border: 1rpx solid #fff;
border-radius: 10rpx;
}
.agree {
display: flex;
justify-content: center;
align-items: center;
}
.agree_txt {
color: #009fe8;
}
.agree .iconfont {
display: inline-block;
border: 1rpx solid rgba(255, 255, 255, 0.7);
color: rgba(255, 255, 255, 0.7);
margin: 0 13rpx 0 0;
font-size: 20rpx;
border-radius: 33%;
}
.goindex {
position: fixed;
padding: 27rpx 0;
bottom: 300rpx;
left: 50%;
transform: translateX(-50%);
width: 530rpx;
display: flex;
justify-items: center;
justify-content: center;
border-top: 1rpx solid #fff;
border-bottom: 1rpx solid #fff;
}
.goindex_txt {
padding: 4rpx 20rpx;
background: rgba(255, 255, 255, 0.7);
border-radius: 10rpx;
color: rgba(255, 255, 255, 0.7);
}
.goindex_txt::active {
opacity: 0.7;
}