audio.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /* 顶层容器 */
  2. ._contain {
  3. position: relative;
  4. display: inline-flex;
  5. width: 290px;
  6. background-color: #fcfcfc;
  7. border: 1px solid #e0e0e0;
  8. border-radius: 2px;
  9. }
  10. /* 播放、暂停按钮 */
  11. ._button {
  12. display: flex;
  13. align-items: center;
  14. justify-content: center;
  15. width: 20px;
  16. height: 20px;
  17. overflow: hidden;
  18. background-color: rgb(0, 0, 0, 0.2);
  19. border: 1px solid white;
  20. border-radius: 50%;
  21. opacity: 0.9;
  22. }
  23. ._play {
  24. margin-left: 2px;
  25. border-top: 4px solid transparent;
  26. border-bottom: 4px solid transparent;
  27. border-left: 8px solid white;
  28. }
  29. ._pause {
  30. width: 8px;
  31. height: 8px;
  32. background-color: white;
  33. }
  34. /* 海报 */
  35. ._poster {
  36. display: flex;
  37. align-items: center;
  38. justify-content: center;
  39. width: 70px;
  40. height: 70px;
  41. background-color: #e6e6e6;
  42. background-size: contain;
  43. }
  44. /* 标题栏 */
  45. ._title {
  46. flex: 1;
  47. margin: 4px 0 0 14px;
  48. text-align: left;
  49. }
  50. ._author {
  51. width: 45px;
  52. font-size: 12px;
  53. color: #888;
  54. }
  55. ._name {
  56. width: 140px;
  57. font-size: 15px;
  58. line-height: 39px;
  59. }
  60. ._author,
  61. ._name {
  62. overflow: hidden;
  63. text-overflow: ellipsis;
  64. white-space: nowrap;
  65. }
  66. /* 进度条 */
  67. ._slider {
  68. position: absolute;
  69. right: 16px;
  70. bottom: 8px;
  71. width: 140px;
  72. margin: 0;
  73. }
  74. /* 播放时间 */
  75. ._time {
  76. margin: 7px 14px 0 0;
  77. font-size: 12px;
  78. color: #888;
  79. }
  80. /* 响应式布局,大屏幕用更大的尺寸 */
  81. @media (min-width: 400px) {
  82. ._contain {
  83. width: 380px;
  84. }
  85. ._button {
  86. width: 26px;
  87. height: 26px;
  88. }
  89. ._poster {
  90. width: 90px;
  91. height: 90px;
  92. }
  93. ._author {
  94. width: 60px;
  95. font-size: 15px;
  96. }
  97. ._name {
  98. width: 180px;
  99. font-size: 19px;
  100. line-height: 55px;
  101. }
  102. ._slider {
  103. right: 20px;
  104. bottom: 10px;
  105. width: 180px;
  106. }
  107. ._time {
  108. font-size: 15px;
  109. }
  110. }