index.wxss 756 B

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