| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /* pages/user/password/password.wxss */
- page {
- background: #F8F8F8;
- padding: 24rpx;
- box-sizing: border-box;
- }
- .abelCell {
- padding: 24rpx 20rpx;
- background: #FFFFFF;
- border-radius: 8rpx;
- }
- .abelCellItem {
- position: relative;
- line-height: 80rpx;
- /* text-align: justify; */
- /* text-justify: distribute-all-line; */
- }
- .abelCellItem::after {
- content: "\e615";
- position: absolute;
- right: 0;
- color: #A2A2A2;
- }
- .submit {
- text-align: center;
- margin-top: 40rpx;
- }
- .submit button {
- width: 634rpx;
- height: 80rpx;
- background: #00BC8A;
- border-radius: 8rpx;
- font-weight: 500;
- font-size: 32rpx;
- color: #FFFFFF;
- }
|