12345678910111213141516171819202122232425262728293031323334353637 |
- .commentPage .notes {
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- padding: 20rpx 40rpx 24rpx;
- border-bottom: 1px solid #D8D8D8;
- }
- .commentPage .notes .avatar {
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- }
- .commentPage .notes .body {
- flex: 1;
- margin-left: 24rpx;
- }
- .commentPage .notes .body .nickName {
- font-size: 30rpx;
- }
- .commentPage .notes .body .date {
- margin: 10rpx 0rpx;
- padding-right: 50rpx;
- font-size: 24rpx;
- }
- .commentPage .notes .body .reply {
- display: inline-block;
- padding: 4rpx 10rpx;
- border-radius: 10rpx;
- background-color: #e7e7e7;
- font-size: 22rpx;
- }
- .commentPage .notes .cover {
- width: 134rpx;
- height: 74rpx;
- border-radius: 10rpx;
- background-color: skyblue;
- }
|