index.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 .redDrop {
  9. width: 12rpx;
  10. height: 12rpx;
  11. border-radius: 50%;
  12. background-color: red;
  13. }
  14. .commentPage .notes .avatar {
  15. width: 80rpx;
  16. height: 80rpx;
  17. border-radius: 50%;
  18. }
  19. .commentPage .notes .body {
  20. flex: 1;
  21. margin-left: 24rpx;
  22. }
  23. .commentPage .notes .body .nickName {
  24. font-size: 30rpx;
  25. }
  26. .commentPage .notes .body .date {
  27. margin: 10rpx 0rpx;
  28. padding-right: 50rpx;
  29. font-size: 24rpx;
  30. }
  31. .commentPage .notes .body .reply {
  32. display: inline-block;
  33. padding: 4rpx 10rpx;
  34. border-radius: 10rpx;
  35. background-color: #e7e7e7;
  36. font-size: 22rpx;
  37. }
  38. .commentPage .notes .cover {
  39. width: 134rpx;
  40. height: 74rpx;
  41. border-radius: 10rpx;
  42. background-color: skyblue;
  43. }
  44. .commentPage .notes .audioCover {
  45. position: relative;
  46. width: 230rpx;
  47. height: 128rpx;
  48. display: flex;
  49. align-items: center;
  50. justify-content: center;
  51. border-radius: 8rpx;
  52. overflow: hidden;
  53. background-size: cover;
  54. background-position: center;
  55. }
  56. .commentPage .notes .audioCover .audioPlayBg {
  57. width: 100rpx;
  58. height: 100rpx;
  59. }
  60. .commentPage .notes .audioCover .audioPlayZhen {
  61. position: absolute;
  62. right: 52rpx;
  63. top: 20rpx;
  64. width: 24rpx;
  65. height: 30rpx;
  66. }
  67. .commentPage .notes .audioCover .cover {
  68. position: absolute;
  69. width: 84rpx;
  70. height: 84rpx;
  71. border-radius: 50%;
  72. }
  73. .commentPage .empty {
  74. margin-top: 200rpx;
  75. }