index.less 919 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .editBox {
  2. padding: 20rpx;
  3. .mt40 {
  4. margin-top: 40rpx;
  5. }
  6. .editRow {
  7. display: flex;
  8. align-items: center;
  9. justify-content: space-between;
  10. padding: 18rpx 40rpx;
  11. height: 50rpx;
  12. border-radius: 25rpx;
  13. margin-bottom: 12rpx;
  14. background-color: white;
  15. box-sizing: content-box;
  16. .name {
  17. font-size: 30rpx;
  18. }
  19. .right {
  20. display: flex;
  21. align-items: center;
  22. .avatar {
  23. width: 60rpx;
  24. height: 60rpx;
  25. border-radius: 50%;
  26. }
  27. .nickName {
  28. width: 400rpx;
  29. text-align: right;
  30. }
  31. .black {
  32. width: 16rpx;
  33. height: 30rpx;
  34. opacity: 0.8;
  35. margin-left: 24rpx;
  36. }
  37. }
  38. }
  39. }