| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- @import "/pages/stars/stars.wxss";
- .moreReplyItem-container {
- width: 100%;
- margin-bottom: 10rpx;
- border-bottom: 1rpx lightgray solid;
- }
- .moreReplyItem-container .person{
- margin-left: 5rpx;
- margin-right:5rpx;
- height: 100rpx;
- display: flex;
- flex-direction: row;
- white-space: nowrap;
- justify-content: flex-start;
- }
- .moreReplyItem-container .person .headIconBox {
- width: 100rpx;
- height: 100rpx;
- padding:5rpx;
- }
- .moreReplyItem-container .person .headIconBox image {
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- }
- .moreReplyItem-container .person .nickBox{
- height: 100rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .moreReplyItem-container .person .nickBox text{
- color: black;
- font-size: 20rpx;
- }
- .moreReplyItem-container .content{
- margin-left: 10rpx;
- margin-right:10rpx;
- }
- .moreReplyItem-container .content .contentText{
- color: black;
- font-size: 20rpx;
- }
- .moreReplyItem-container .content .timeText{
- color: gray;
- font-size: 18rpx;
- }
|