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
| /* pages/login/login.wxss */
|
|
|
| .login-container {
| display: flex;
| flex-direction: column;
| align-items: center;
| justify-content: flex-end;
| height: 80vh;
|
| }
|
|
| image {
| position: fixed;
| left: 0;
| bottom: 0;
| display: block;
| width: 100%;
| height: 100%;
| z-index: -999;
| }
|
| .input {
| flex: 1;
| height: 30rpx;
| padding: 10rpx;
| border: 1px solid #ccc;
| border-radius: 5px;
| background-color: #fff;
|
| }
|
| .input-wrapper {
| width: 70%;
| display: flex;
| /* 使用 Flex 布局使 text 和 input 在同一行 */
| align-items: center;
| justify-content: center;
| margin-bottom: 15px;
|
| }
|
| .input-label {
| flex: 1; /* 让值占据剩余空间 */
| align-items: left;
| width: 150px;
| margin-right: 10px;
| font-size: 16px;
| color: #fff;
| font-weight: bold;
| text-align: justify;
| text-align-last: justify;
| }
|
| .label-container {
| width: 140rpx;
| display: flex;
| align-items: center;
| }
| .login-button{
| margin-top: 50rpx;
| }
|
|