index.less 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. .date {
  26. margin: 10rpx 0rpx;
  27. padding-right: 50rpx;
  28. font-size: 24rpx;
  29. }
  30. .reply {
  31. display: inline-block;
  32. padding: 4rpx 10rpx;
  33. border-radius: 10rpx;
  34. background-color: #e7e7e7;
  35. font-size: 22rpx;
  36. }
  37. }
  38. .cover {
  39. width: 134rpx;
  40. height: 74rpx;
  41. border-radius: 10rpx;
  42. background-color: skyblue;
  43. }
  44. .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. .audioPlayBg {
  56. width: 100rpx;
  57. height: 100rpx;
  58. }
  59. .audioPlayZhen {
  60. position: absolute;
  61. right: 52rpx;
  62. top: 20rpx;
  63. width: 24rpx;
  64. height: 30rpx;
  65. }
  66. .cover {
  67. position: absolute;
  68. width: 84rpx;
  69. height: 84rpx;
  70. border-radius: 50%;
  71. }
  72. }
  73. }
  74. .empty {
  75. margin-top: 200rpx;
  76. }
  77. }