index.wxss 869 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* pages/main/component/Player/index.wxss */
  2. .player-container {
  3. width: calc(100vw - 32px - 16px);
  4. display: flex;
  5. flex-direction: row;
  6. padding-left: 16px;
  7. background: gainsboro;
  8. align-items: center;
  9. height:64px;
  10. background:rgba(249,249,251,1);
  11. border-radius:10px;
  12. position: relative;
  13. }
  14. .play-btn {
  15. width: 32px;
  16. height: 32px;
  17. background:linear-gradient(180deg,rgba(125,218,153,1) 0%,rgba(71,179,96,1) 100%);
  18. border-radius: 16px;
  19. display: inline-flex;
  20. align-items: center;
  21. justify-content: center;
  22. }
  23. progress {
  24. width: calc(100% - 16px - 32px - 32px - 80px);
  25. margin-left: 16px;
  26. margin-right: 16px;
  27. }
  28. .timer {
  29. color: #2C3A51;
  30. font-size: 14px;
  31. text-align: right;
  32. vertical-align: middle;
  33. padding-right: 10px;
  34. width: 80px;
  35. }
  36. .tips {
  37. color: #7A7C91;
  38. font-size: 10px;
  39. position: absolute;
  40. left: 65px;
  41. top: 40px;
  42. }