index.less 1.4 KB

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