index.wxss 918 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. }
  25. .editBox .editRow .right .avatar {
  26. width: 60rpx;
  27. height: 60rpx;
  28. border-radius: 50%;
  29. }
  30. .editBox .editRow .right .nickName {
  31. width: 400rpx;
  32. text-align: right;
  33. }
  34. .editBox .editRow .right .black {
  35. width: 16rpx;
  36. height: 30rpx;
  37. opacity: 0.8;
  38. margin-left: 24rpx;
  39. }
  40. .editBox .switchAccount {
  41. text-align: center;
  42. padding: 18rpx 40rpx;
  43. height: 50rpx;
  44. line-height: 50rpx;
  45. border-radius: 25rpx;
  46. margin-bottom: 12rpx;
  47. background-color: white;
  48. box-sizing: content-box;
  49. }