index.wxss 1.7 KB

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