reply.wxss 449 B

1234567891011121314151617181920212223242526272829
  1. .replyItem {
  2. width: 100%;
  3. height: 40rpx;
  4. display: flex;
  5. flex-direction: row;
  6. white-space: nowrap;
  7. }
  8. .replyItem .nametext {
  9. font-size: 18rpx;
  10. color: orange;
  11. line-height: 20rpx;
  12. display: flex;
  13. flex-direction: column;
  14. justify-content: center;
  15. }
  16. .replyItem .contenttext {
  17. margin-left: 10rpx;
  18. font-size: 18rpx;
  19. color: black;
  20. line-height: 20rpx;
  21. display: flex;
  22. flex-direction: column;
  23. justify-content: center;
  24. }