133 lines
2.2 KiB
Plaintext
133 lines
2.2 KiB
Plaintext
/* pages/password/password.wxss */
|
|
page {
|
|
background: #F3F5F7;
|
|
}
|
|
|
|
.number {
|
|
width: 91%;
|
|
height: 104rpx;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
border-radius: 16rpx;
|
|
background: #FFF;
|
|
box-shadow: 0 0 8rpx 0 #F3F5F7;
|
|
margin: 0 auto;
|
|
margin-top: 24rpx;
|
|
padding: 32rpx 20rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.pwd {
|
|
width: 91%;
|
|
margin: 0 auto;
|
|
/* height: 192rpx; */
|
|
box-shadow: 0 0 8rpx 0 #F3F5F7;
|
|
background: #FFF;
|
|
border-radius: 16rpx;
|
|
margin-top: 24rpx;
|
|
padding: 0rpx 20rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
.pwd-item {
|
|
height: 96rpx;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
border-bottom: 1rpx solid #F3F5F7;
|
|
}
|
|
|
|
.pwd-item:last-of-type{
|
|
border: none;
|
|
}
|
|
|
|
.title {
|
|
color: #363636;
|
|
font-family: "PingFang SC";
|
|
font-size: 28rpx;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
width: 144rpx;
|
|
}
|
|
|
|
.code {
|
|
color: #367df9;
|
|
width: 188rpx;
|
|
font-family: "PingFang SC";
|
|
font-size: 28rpx;
|
|
font-style: normal;
|
|
text-align: right;
|
|
}
|
|
|
|
.unit {
|
|
width: 40rpx;
|
|
top: 14rpx;
|
|
color: #191b27;
|
|
font-size: 26rpx;
|
|
font-weight: 400;
|
|
margin-left: 100rpx;
|
|
}
|
|
|
|
.unit-icon {
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
}
|
|
|
|
.number-text {
|
|
color: #808080;
|
|
font-family: "PingFang SC";
|
|
font-size: 28rpx;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: normal;
|
|
width: 55%;
|
|
}
|
|
|
|
.text {
|
|
color: #808080;
|
|
font-family: "PingFang SC";
|
|
font-size: 26rpx;
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
margin-left: 42rpx;
|
|
margin-top: 16rpx;
|
|
|
|
}
|
|
|
|
.text-btn {
|
|
color: #367df9;
|
|
font-family: "PingFang SC";
|
|
font-size: 28rpx;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
margin-left: 24rpx;
|
|
}
|
|
|
|
/* button {
|
|
color: #ffffff !important;
|
|
font-size: 32rpx;
|
|
padding: 0;
|
|
background-color: #fff !important;
|
|
border-radius: 0;
|
|
display: block !important;
|
|
} */
|
|
|
|
.confirm-btn {
|
|
color: #fff !important;
|
|
width: 574rpx;
|
|
height: 88rpx;
|
|
line-height: 88rpx;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: 32rpx;
|
|
border-radius: 16rpx;
|
|
letter-spacing: 1rpx;
|
|
background: linear-gradient(115deg, #62B2FF -1.34%, #3C80F6 100%);
|
|
margin-top: 184rpx;
|
|
|
|
}
|
|
|
|
.disable-btn {
|
|
background: linear-gradient(0deg, #ffffff80 0%, #ffffff80 100%), linear-gradient(115deg, #62B2FF -1.34%, #3C80F6 100%);
|
|
|
|
} |