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