index.less 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. .commentPage {
  2. .notes {
  3. display: flex;
  4. align-items: flex-start;
  5. justify-content: space-between;
  6. padding: 20rpx 40rpx 24rpx;
  7. border-bottom: 1px solid #D8D8D8;
  8. .redDrop {
  9. width: 12rpx;
  10. height: 12rpx;
  11. border-radius: 50%;
  12. background-color: red;
  13. }
  14. .avatar {
  15. width: 80rpx;
  16. height: 80rpx;
  17. background-color: #D8D8D8;
  18. border-radius: 50%;
  19. }
  20. .body {
  21. flex: 1;
  22. margin-left: 24rpx;
  23. .nickName {
  24. font-size: 30rpx;
  25. }
  26. .bBox {
  27. display: flex;
  28. align-items: center;
  29. justify-content: space-between;
  30. padding-right: 50rpx;
  31. }
  32. .date {
  33. margin: 10rpx 0rpx;
  34. word-break: break-all;
  35. padding-right: 50rpx;
  36. font-size: 24rpx;
  37. }
  38. .reply {
  39. display: inline-block;
  40. padding: 4rpx 10rpx;
  41. border-radius: 10rpx;
  42. background-color: #e7e7e7;
  43. font-size: 22rpx;
  44. }
  45. }
  46. .cover {
  47. width: 134rpx;
  48. height: 74rpx;
  49. border-radius: 10rpx;
  50. background-color: skyblue;
  51. }
  52. .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. .audioPlayBg {
  64. width: 58rpx;
  65. height: 58rpx;
  66. }
  67. .audioPlayZhen {
  68. position: absolute;
  69. right: 30rpx;
  70. top: 11rpx;
  71. width: 14rpx;
  72. height: 17rpx;
  73. }
  74. .cover {
  75. position: absolute;
  76. width: 48rpx;
  77. height: 48rpx;
  78. border-radius: 50%;
  79. }
  80. }
  81. }
  82. .empty {
  83. margin-top: 200rpx;
  84. }
  85. }