index.wxss 549 B

123456789101112131415161718192021222324252627282930
  1. .like .notes {
  2. display: flex;
  3. align-items: center;
  4. justify-content: space-between;
  5. padding: 20rpx 40rpx;
  6. border-bottom: 1px solid #D8D8D8;
  7. }
  8. .like .notes .avatar {
  9. width: 80rpx;
  10. height: 80rpx;
  11. border-radius: 50%;
  12. background-color: skyblue;
  13. }
  14. .like .notes .body {
  15. flex: 1;
  16. margin-left: 24rpx;
  17. }
  18. .like .notes .body .nickName {
  19. font-size: 30rpx;
  20. }
  21. .like .notes .body .date {
  22. margin-top: 6rpx;
  23. font-size: 24rpx;
  24. }
  25. .like .notes .cover {
  26. width: 134rpx;
  27. height: 74rpx;
  28. border-radius: 10rpx;
  29. background-color: skyblue;
  30. }