audio-play.wxss 903 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* components/audio-play.wxss */
  2. .audio {
  3. position: relative;
  4. width:45%;
  5. display:inline-block;
  6. margin:1%;
  7. }
  8. .audio .bg-img {
  9. width:100%;
  10. height:15vh;
  11. display:inline-block
  12. }
  13. .audio .icon-img {
  14. width:5vh;
  15. height:5vh;
  16. position:absolute;
  17. top:50%;
  18. left:50%;
  19. margin-left:-2.5vh;
  20. margin-top:-2.5vh;
  21. }
  22. .audio .free-MusicProgress {
  23. position: absolute;
  24. width: 100%;
  25. height: 20%;
  26. bottom: 6%;
  27. background: #000000;
  28. opacity: 0.6;
  29. }
  30. .audio .free-MusicProgress .before-progress {
  31. width:80%;
  32. height:2px;
  33. position: absolute;
  34. top: 50%;
  35. background: rgba(255,255,255,0.3);
  36. margin:0 10%;
  37. }
  38. .audio .free-MusicProgress .progress {
  39. height: 100%;
  40. background: #38A2D7;
  41. }
  42. .audio .free-MusicProgress .durationTime {
  43. position: absolute;
  44. top: 22%;
  45. right: 6%;
  46. font-size: 10px;
  47. font-family: Microsoft YaHei;
  48. font-weight: 400;
  49. color: #FFFFFF;
  50. opacity: 0.67;
  51. }