123456789101112131415161718192021222324252627282930 |
- .like .notes {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 20rpx 40rpx;
- border-bottom: 1px solid #D8D8D8;
- }
- .like .notes .avatar {
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- background-color: skyblue;
- }
- .like .notes .body {
- flex: 1;
- margin-left: 24rpx;
- }
- .like .notes .body .nickName {
- font-size: 30rpx;
- }
- .like .notes .body .date {
- margin-top: 6rpx;
- font-size: 24rpx;
- }
- .like .notes .cover {
- width: 134rpx;
- height: 74rpx;
- border-radius: 10rpx;
- background-color: skyblue;
- }
|