team.wxss 715 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* pages/user/team.wxss */
  2. .team_overview {
  3. background-color: #fff;
  4. height: 96rpx;
  5. line-height: 96rpx;
  6. padding: 0 60rpx 0 38rpx;
  7. }
  8. .team_count {
  9. color: #666;
  10. font-size: 32rpx;
  11. }
  12. .team_new {
  13. color: #FD0808;
  14. float: right;
  15. font-size: 28rpx;
  16. }
  17. .team_list {
  18. margin-top: 20rpx;
  19. }
  20. .team_item {
  21. align-items: center;
  22. background-color: #fff;
  23. border-bottom: 2rpx solid #fafafa;
  24. display: flex;
  25. height: 170rpx;
  26. padding: 0 45rpx 0 38rpx;
  27. }
  28. .team_avatar {
  29. border-radius: 50%;
  30. height: 110rpx;
  31. margin-right: 20rpx;
  32. width: 110rpx;
  33. }
  34. .team_nickname {
  35. color: #333;
  36. flex: 1;
  37. font-size: 32rpx;
  38. }
  39. .team_price {
  40. color: #FD0808;
  41. font-size: 48rpx;
  42. }
  43. .team_price-unit {
  44. font-size: 30rpx;
  45. }