index.wxss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. }
  38. .commentPage .notes .audioCover {
  39. position: relative;
  40. width: 230rpx;
  41. height: 128rpx;
  42. display: flex;
  43. align-items: center;
  44. justify-content: center;
  45. border-radius: 8rpx;
  46. overflow: hidden;
  47. background-size: cover;
  48. background-position: center;
  49. }
  50. .commentPage .notes .audioCover .audioPlayBg {
  51. width: 100rpx;
  52. height: 100rpx;
  53. }
  54. .commentPage .notes .audioCover .audioPlayZhen {
  55. position: absolute;
  56. right: 52rpx;
  57. top: 20rpx;
  58. width: 24rpx;
  59. height: 30rpx;
  60. }
  61. .commentPage .notes .audioCover .cover {
  62. position: absolute;
  63. width: 84rpx;
  64. height: 84rpx;
  65. border-radius: 50%;
  66. }
  67. .commentPage .empty {
  68. margin-top: 200rpx;
  69. }