findPassword.scss
695 Bytes
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
.find-password-page {
	min-height: 100vh;
	background-color: #fff;
}
.top {
	width: 750rpx;
	height: 100rpx;
	border: 0.1px solid #f7f9ff;
	justify-content: space-between;
	flex-direction: row;
	align-items: center;
	.item {
		width: 375rpx;
		height: 100rpx;
		border: 0.1px solid #f7f9ff;
		text-align: center;
		line-height: 90rpx;
	}
}
.login-body {
	margin-top: 40rpx;
	padding: 0 30rpx;
	.login-phone {
		.form-row {
			margin-top: 30rpx;
			.verify-code {
				font-family: PingFangSC-Regular, PingFang SC;
				font-weight: 400;
				font-size: 14px;
				color: #6299ff;
			}
		}
		.submit {
			margin-top: 60rpx;
			width: 100%;
			background: #377dff;
			border-radius: 48px;
		}
	}
}