index.less 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. position: absolute;
  11. left: 24rpx;
  12. width: 12rpx;
  13. height: 12rpx;
  14. border-radius: 50%;
  15. background-color: red;
  16. }
  17. .avatar {
  18. width: 80rpx;
  19. height: 80rpx;
  20. border-radius: 50%;
  21. }
  22. .body {
  23. flex: 1;
  24. margin-left: 24rpx;
  25. .nickName {
  26. font-size: 30rpx;
  27. }
  28. .date {
  29. margin-top: 6rpx;
  30. font-size: 24rpx;
  31. }
  32. }
  33. .cover {
  34. width: 134rpx;
  35. height: 74rpx;
  36. border-radius: 10rpx;
  37. }
  38. .audioCover {
  39. position: relative;
  40. width: 134rpx;
  41. height: 74rpx;
  42. display: flex;
  43. align-items: center;
  44. justify-content: center;
  45. border-radius: 8rpx;
  46. overflow: hidden;
  47. background-size: cover;
  48. background-position: center;
  49. .audioPlayBg {
  50. width: 58rpx;
  51. height: 58rpx;
  52. }
  53. .audioPlayZhen {
  54. position: absolute;
  55. right: 30rpx;
  56. top: 11rpx;
  57. width: 14rpx;
  58. height: 17rpx;
  59. }
  60. .cover {
  61. position: absolute;
  62. width: 48rpx;
  63. height: 48rpx;
  64. border-radius: 50%;
  65. }
  66. }
  67. }
  68. .empty {
  69. margin-top: 200rpx;
  70. }
  71. }