index.wxss 524 B

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