index.less 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. .like {
  2. .notes {
  3. position: relative;
  4. display: flex;
  5. align-items: flex-start;
  6. justify-content: space-between;
  7. padding: 20rpx 40rpx;
  8. border-bottom: 1px solid #D8D8D8;
  9. .redDrop {
  10. width: 12rpx;
  11. height: 12rpx;
  12. border-radius: 50%;
  13. background-color: red;
  14. }
  15. .avatar {
  16. width: 80rpx;
  17. height: 80rpx;
  18. border-radius: 50%;
  19. }
  20. .body {
  21. flex: 1;
  22. margin-left: 24rpx;
  23. .nickName {
  24. font-size: 30rpx;
  25. }
  26. .date {
  27. margin-top: 6rpx;
  28. font-size: 24rpx;
  29. }
  30. }
  31. .cover {
  32. width: 230rpx;
  33. height: 128rpx;
  34. border-radius: 10rpx;
  35. }
  36. .audioCover {
  37. position: relative;
  38. width: 230rpx;
  39. height: 128rpx;
  40. display: flex;
  41. align-items: center;
  42. justify-content: center;
  43. border-radius: 8rpx;
  44. overflow: hidden;
  45. background-size: cover;
  46. background-position: center;
  47. .audioPlayBg {
  48. width: 100rpx;
  49. height: 100rpx;
  50. }
  51. .audioPlayZhen {
  52. position: absolute;
  53. right: 52rpx;
  54. top: 20rpx;
  55. width: 24rpx;
  56. height: 30rpx;
  57. }
  58. .cover {
  59. position: absolute;
  60. width: 84rpx;
  61. height: 84rpx;
  62. border-radius: 50%;
  63. }
  64. }
  65. }
  66. .empty {
  67. margin-top: 200rpx;
  68. }
  69. }