index.wxss 1.0 KB

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