index.wxss 983 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* 头部用户样式 */
  2. .user_box {
  3. display: flex;
  4. align-items: center;
  5. height: 240rpx;
  6. width: 100vw;
  7. background-color: #ffffff;
  8. border-bottom: 1rpx solid #E4E4E4;
  9. margin-bottom: 40rpx;
  10. }
  11. .user_box>view {
  12. height: 160rpx;
  13. }
  14. /* 用户-头像 */
  15. .user_img {
  16. width: 160rpx;
  17. height: 100%;
  18. background-color: aqua;
  19. border-radius: 50%;
  20. overflow: hidden;
  21. margin-left: 40rpx;
  22. }
  23. /* 用户-文字 */
  24. .user_text {
  25. position: relative;
  26. flex: 1;
  27. display: flex;
  28. flex-direction: column;
  29. justify-content: center;
  30. height: 100%;
  31. margin-left: 25rpx;
  32. margin-top: 5rpx;
  33. }
  34. .user_text>view {
  35. line-height: 60rpx;
  36. }
  37. .user_name {
  38. font-size: 34rpx;
  39. }
  40. .user_name>text {
  41. font-size: 26rpx;
  42. }
  43. .user_number {
  44. font-size: 34rpx;
  45. }
  46. /* 右侧图标 */
  47. .user_text .user_icon {
  48. position: absolute;
  49. font-size: 45rpx;
  50. color: #D6D6D6;
  51. top: 50%;
  52. right: 30rpx;
  53. transform: translate(0,-50%);
  54. }