moreReplyItem.wxss 1022 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. @import "/pages/stars/stars.wxss";
  2. .moreReplyItem-container {
  3. width: 100%;
  4. margin-bottom: 10rpx;
  5. border-bottom: 1rpx lightgray solid;
  6. }
  7. .moreReplyItem-container .person{
  8. margin-left: 5rpx;
  9. margin-right:5rpx;
  10. height: 100rpx;
  11. display: flex;
  12. flex-direction: row;
  13. white-space: nowrap;
  14. justify-content: flex-start;
  15. }
  16. .moreReplyItem-container .person .headIconBox {
  17. width: 100rpx;
  18. height: 100rpx;
  19. padding:5rpx;
  20. }
  21. .moreReplyItem-container .person .headIconBox image {
  22. width: 80rpx;
  23. height: 80rpx;
  24. border-radius: 50%;
  25. }
  26. .moreReplyItem-container .person .nickBox{
  27. height: 100rpx;
  28. display: flex;
  29. flex-direction: column;
  30. justify-content: center;
  31. }
  32. .moreReplyItem-container .person .nickBox text{
  33. color: black;
  34. font-size: 20rpx;
  35. }
  36. .moreReplyItem-container .content{
  37. margin-left: 10rpx;
  38. margin-right:10rpx;
  39. }
  40. .moreReplyItem-container .content .contentText{
  41. color: black;
  42. font-size: 20rpx;
  43. }
  44. .moreReplyItem-container .content .timeText{
  45. color: gray;
  46. font-size: 18rpx;
  47. }