my.wxss 555 B

123456789101112131415161718192021222324252627282930313233343536
  1. page {
  2. background: #F3F5F9;
  3. }
  4. .user-info {
  5. width: 100%;
  6. height: 200rpx;
  7. background: white;
  8. position: relative;
  9. box-sizing: border-box;
  10. padding: 50rpx 0 50rpx 180rpx;
  11. margin-bottom: 40rpx;
  12. }
  13. .user-info-avatar {
  14. position: absolute;
  15. top: 50rpx;
  16. left: 30rpx;
  17. overflow: hidden;
  18. width: 110rpx;
  19. height: 110rpx;
  20. border-radius: 10rpx;
  21. }
  22. .user-info-nickname {
  23. height: 40rpx;
  24. font-size: 30rpx;
  25. }
  26. .menu-title {
  27. color: var(--darkGray);
  28. box-sizing: border-box;
  29. padding-left: 20rpx;
  30. line-height: 50rpx;
  31. font-size: 22rpx;
  32. }