index.wxss 1.2 KB

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