list-audio.wxss 957 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* components/list-audio/list-audio.wxss */
  2. .list {
  3. position: relative;
  4. margin: 5% 0;
  5. }
  6. .list .title {
  7. font-size: 12px;
  8. font-family: Microsoft YaHei;
  9. font-weight: 400;
  10. line-height: 16px;
  11. color: #2F2414;
  12. padding-left: 5%;
  13. opacity: 1;
  14. }
  15. .audio {
  16. position: relative;
  17. margin: 2% 8%;
  18. }
  19. .audio .audio-img {
  20. width:9%;
  21. height:4vh;
  22. display:inline-block;
  23. }
  24. .audio .free-MusicProgress {
  25. position: absolute;
  26. width: 80%;
  27. height: 20%;
  28. top: 32%;
  29. opacity: 0.6;
  30. display: inline;
  31. margin: 0 2%;
  32. }
  33. .audio .free-MusicProgress .before-progress {
  34. width: 100%;
  35. height: 0.4vh;
  36. position: absolute;
  37. top: 50%;
  38. background: #2F2414;
  39. opacity: 0.5;
  40. }
  41. .audio .free-MusicProgress .progress {
  42. height: 100%;
  43. background: #38A2D7;
  44. }
  45. .list .durationTime {
  46. position: absolute;
  47. top: 20%;
  48. right: -4%;
  49. display: inline;
  50. font-size: 10px;
  51. font-family: Microsoft YaHei;
  52. font-weight: 400;
  53. color: #2F2414;
  54. opacity: 0.67;
  55. }