password.wxss 651 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* pages/user/password/password.wxss */
  2. page {
  3. background: #F8F8F8;
  4. padding: 24rpx;
  5. box-sizing: border-box;
  6. }
  7. .abelCell {
  8. padding: 24rpx 20rpx;
  9. background: #FFFFFF;
  10. border-radius: 8rpx;
  11. }
  12. .abelCellItem {
  13. position: relative;
  14. line-height: 80rpx;
  15. /* text-align: justify; */
  16. /* text-justify: distribute-all-line; */
  17. }
  18. .abelCellItem::after {
  19. content: "\e615";
  20. position: absolute;
  21. right: 0;
  22. color: #A2A2A2;
  23. }
  24. .submit {
  25. text-align: center;
  26. margin-top: 40rpx;
  27. }
  28. .submit button {
  29. width: 634rpx;
  30. height: 80rpx;
  31. background: #00BC8A;
  32. border-radius: 8rpx;
  33. font-weight: 500;
  34. font-size: 32rpx;
  35. color: #FFFFFF;
  36. }