index.wxss 1.0 KB

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