index.less 570 B

1234567891011121314151617181920212223242526272829303132333435
  1. .like {
  2. .notes {
  3. display: flex;
  4. align-items: flex-start;
  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. }
  13. .body {
  14. flex: 1;
  15. margin-left: 24rpx;
  16. .nickName {
  17. font-size: 30rpx;
  18. }
  19. .date {
  20. margin-top: 6rpx;
  21. font-size: 24rpx;
  22. }
  23. }
  24. .cover {
  25. width: 134rpx;
  26. height: 74rpx;
  27. border-radius: 10rpx;
  28. background-color: skyblue;
  29. }
  30. }
  31. }