index.wxss 637 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* 用户头部 */
  2. .user_header {
  3. width: 100%;
  4. padding: 0 16rpx;
  5. box-sizing: border-box;
  6. }
  7. .user_header_msg {
  8. display: flex;
  9. justify-content: space-between;
  10. width: 100%;
  11. height: 130rpx;
  12. padding: 0 24rpx;
  13. margin-bottom: 40rpx;
  14. box-sizing: border-box;
  15. }
  16. /* 头像 */
  17. .user_headPortrait {
  18. width: 130rpx;
  19. height: 100%;
  20. border-radius: 50%;
  21. margin-right: 30rpx;
  22. }
  23. .user_headPortrait>image {
  24. width: 100%;
  25. height: 100%;
  26. border-radius: 50%;
  27. box-shadow: 0px 0px 20rpx 0px rgba(0, 0, 0, 0.1);
  28. }
  29. /* 修改头像 */
  30. .changeImage {
  31. font-size: 32rpx;
  32. color: #333333;
  33. }