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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
| @charset "UTF-8";
| /* 页面左右间距 */
| /* 文字尺寸 */
| /*文字颜色*/
| /* 边框颜色 */
| /* 图片加载中颜色 */
| /* 行为相关颜色 */
| page {
| background: #fff;
| }
| .container {
| padding-top: 115px;
| position: relative;
| width: 100vw;
| height: 100vh;
| overflow: hidden;
| background: #fff;
| }
| .wrapper {
| position: relative;
| z-index: 90;
| background: #fff;
| padding-bottom: 40rpx;
| }
| .back-btn {
| position: absolute;
| left: 40rpx;
| z-index: 9999;
| padding-top: 25px;
| top: 40rpx;
| font-size: 40rpx;
| color: #303133;
| }
| .left-top-sign {
| font-size: 120rpx;
| color: #f8f8f8;
| position: relative;
| left: -16rpx;
| }
| .right-top-sign {
| position: absolute;
| top: 80rpx;
| right: -30rpx;
| z-index: 95;
| }
| .right-top-sign:before, .right-top-sign:after {
| display: block;
| content: "";
| width: 400rpx;
| height: 80rpx;
| background: #b4f3e2;
| }
| .right-top-sign:before {
| -webkit-transform: rotate(50deg);
| transform: rotate(50deg);
| border-radius: 0 50px 0 0;
| }
| .right-top-sign:after {
| position: absolute;
| right: -198rpx;
| top: 0;
| -webkit-transform: rotate(-50deg);
| transform: rotate(-50deg);
| border-radius: 50px 0 0 0;
| /* background: pink; */
| }
| .left-bottom-sign {
| position: absolute;
| left: -270rpx;
| bottom: -320rpx;
| border: 100rpx solid #d0d1fd;
| border-radius: 50%;
| padding: 180rpx;
| }
| .welcome {
| position: relative;
| left: 50rpx;
| top: -90rpx;
| font-size: 46rpx;
| color: #555;
| text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.3);
| }
| .input-content {
| padding: 0 60rpx;
| }
| .input-item {
| display: flex;
| flex-direction: column;
| align-items: flex-start;
| justify-content: center;
| padding: 0 0 0 30rpx;
| background: #f8f6fc;
| height: 140rpx;
| border-radius: 4px;
| margin-bottom: 50rpx;
| }
| .input-item:last-child {
| margin-bottom: 0;
| }
| .input-item .tit {
| height: 50rpx;
| line-height: 56rpx;
| font-size: 26rpx;
| color: #606266;
| }
| .input-item input {
| height: 60rpx;
| font-size: 30rpx;
| color: #303133;
| width: 100%;
| }
| .input-item .verify-code {
| flex-direction: row;
| display: flex;
| justify-content: end;
| flex-wrap: wrap;
| width: 100%;
| }
| .confirm-btn {
| width: 630rpx;
| height: 76rpx;
| line-height: 76rpx;
| border-radius: 50px;
| margin: 70rpx auto 0;
| background: #fa436a;
| color: #fff;
| font-size: 32rpx;
| }
| .confirm-btn:after {
| border-radius: 100px;
| }
| .forget-section {
| font-size: 26rpx;
| color: #4399fc;
| text-align: center;
| margin-top: 40rpx;
| }
| .register-section {
| position: absolute;
| left: 0;
| bottom: 50rpx;
| width: 100%;
| font-size: 26rpx;
| color: #606266;
| text-align: center;
| }
| .register-section text {
| color: #4399fc;
| margin-left: 10rpx;
| }
|
|