index.less 599 B

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