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
| /* pages/zhghLogin/zhghLogin.wxss */
|
| .index-icon {
| width: 100%;
| height: 32vh;
| background-size: cover;
| }
|
| .login-item {
| display: flex;
| margin: 24rpx 42rpx;
| background-color: #fafafa;
| font-size: 28rpx;
| align-items: center;
| }
|
| .login-main {
| height: 100vh;
| background-color: #fff;
| }
|
| .login-img {
| width: 38rpx;
| height: 38rpx;
| }
|
| .login-item-input {
| margin-left: 12rpx;
| height: 98rpx;
| line-height: 98rpx;
| }
|
| .login-submit-btn {
| color: #fff !important;
| margin: 42rpx;
| font-size: 32rpx;
| border-radius: 8rpx;
| background: linear-gradient(135deg, rgba(61, 155, 241) 0%, rgba(23, 144, 255) 100%);
| }
|
|