index.less 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. .switchAccount {
  40. text-align: center;
  41. padding: 18rpx 40rpx;
  42. height: 50rpx;
  43. line-height: 50rpx;
  44. border-radius: 25rpx;
  45. margin-bottom: 12rpx;
  46. background-color: white;
  47. box-sizing: content-box;
  48. }
  49. }