index.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. width: 12rpx;
  11. height: 12rpx;
  12. border-radius: 50%;
  13. background-color: red;
  14. }
  15. .like .notes .avatar {
  16. width: 80rpx;
  17. height: 80rpx;
  18. border-radius: 50%;
  19. }
  20. .like .notes .body {
  21. flex: 1;
  22. margin-left: 24rpx;
  23. }
  24. .like .notes .body .nickName {
  25. font-size: 30rpx;
  26. }
  27. .like .notes .body .date {
  28. margin-top: 6rpx;
  29. font-size: 24rpx;
  30. }
  31. .like .notes .cover {
  32. width: 230rpx;
  33. height: 128rpx;
  34. border-radius: 10rpx;
  35. }
  36. .like .notes .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. }
  48. .like .notes .audioCover .audioPlayBg {
  49. width: 100rpx;
  50. height: 100rpx;
  51. }
  52. .like .notes .audioCover .audioPlayZhen {
  53. position: absolute;
  54. right: 52rpx;
  55. top: 20rpx;
  56. width: 24rpx;
  57. height: 30rpx;
  58. }
  59. .like .notes .audioCover .cover {
  60. position: absolute;
  61. width: 84rpx;
  62. height: 84rpx;
  63. border-radius: 50%;
  64. }
  65. .like .empty {
  66. margin-top: 200rpx;
  67. }