index.less 1.7 KB

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