index.wxss 779 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .commentPage .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. .commentPage .notes .avatar {
  9. width: 80rpx;
  10. height: 80rpx;
  11. border-radius: 50%;
  12. background-color: skyblue;
  13. }
  14. .commentPage .notes .body {
  15. flex: 1;
  16. margin-left: 24rpx;
  17. }
  18. .commentPage .notes .body .nickName {
  19. font-size: 30rpx;
  20. }
  21. .commentPage .notes .body .date {
  22. margin: 10rpx 0rpx;
  23. padding-right: 50rpx;
  24. font-size: 24rpx;
  25. }
  26. .commentPage .notes .body .reply {
  27. display: inline-block;
  28. padding: 4rpx 10rpx;
  29. border-radius: 10rpx;
  30. background-color: #e7e7e7;
  31. font-size: 22rpx;
  32. }
  33. .commentPage .notes .cover {
  34. width: 134rpx;
  35. height: 74rpx;
  36. border-radius: 10rpx;
  37. background-color: skyblue;
  38. }