| 1234567891011121314151617181920212223242526272829 |
- .replyItem {
- width: 100%;
- height: 40rpx;
- display: flex;
- flex-direction: row;
- white-space: nowrap;
-
- }
- .replyItem .nametext {
- font-size: 18rpx;
- color: orange;
- line-height: 20rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .replyItem .contenttext {
- margin-left: 10rpx;
- font-size: 18rpx;
- color: black;
- line-height: 20rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
|