index.wxss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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 .bBox {
  27. display: flex;
  28. align-items: center;
  29. justify-content: space-between;
  30. padding-right: 50rpx;
  31. }
  32. .commentPage .notes .body .date {
  33. margin: 10rpx 0rpx;
  34. word-break: break-all;
  35. padding-right: 50rpx;
  36. font-size: 24rpx;
  37. }
  38. .commentPage .notes .body .reply {
  39. display: inline-block;
  40. padding: 4rpx 10rpx;
  41. border-radius: 10rpx;
  42. background-color: #e7e7e7;
  43. font-size: 22rpx;
  44. }
  45. .commentPage .notes .cover {
  46. width: 134rpx;
  47. height: 74rpx;
  48. border-radius: 10rpx;
  49. background-color: skyblue;
  50. }
  51. .commentPage .notes .audioCover {
  52. position: relative;
  53. width: 134rpx;
  54. height: 74rpx;
  55. display: flex;
  56. align-items: center;
  57. justify-content: center;
  58. border-radius: 8rpx;
  59. overflow: hidden;
  60. background-size: cover;
  61. background-position: center;
  62. }
  63. .commentPage .notes .audioCover .audioPlayBg {
  64. width: 58rpx;
  65. height: 58rpx;
  66. }
  67. .commentPage .notes .audioCover .audioPlayZhen {
  68. position: absolute;
  69. right: 30rpx;
  70. top: 11rpx;
  71. width: 14rpx;
  72. height: 17rpx;
  73. }
  74. .commentPage .notes .audioCover .cover {
  75. position: absolute;
  76. width: 48rpx;
  77. height: 48rpx;
  78. border-radius: 50%;
  79. }
  80. .commentPage .empty {
  81. margin-top: 200rpx;
  82. }