audio-template.wxss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. .audio-place-holder {
  2. width: 100%;
  3. height: 100%;
  4. }
  5. .audio-place-holder .TRTCCalling-call-audio-img0 {
  6. margin: 30vw 30vw;
  7. width: 40vw;
  8. height: 40vw;
  9. }
  10. .audio-place-holder .TRTCCalling-call-audio-img1 {
  11. display: inline-block;
  12. width: 40vw;
  13. height: 40vw;
  14. margin-left: 6.5vw;
  15. margin-top: 40vw;
  16. }
  17. .audio-place-holder .pusher-audio {
  18. width: 0;
  19. height: 0;
  20. }
  21. .audio-place-holder .player-audio{
  22. width: 0;
  23. height: 0;
  24. }
  25. .audio-place-holder .audio-volume {
  26. position: absolute;
  27. bottom: 20rpx;
  28. left: 20rpx;
  29. width: 36rpx;
  30. height: 36rpx;
  31. }
  32. .audio-place-holder .audio-active {
  33. position: absolute;
  34. left: 0;
  35. bottom: 0;
  36. width: 100%;
  37. height: 0;
  38. overflow: hidden;
  39. }
  40. .audio-place-holder .audio-active .image{
  41. position: absolute;
  42. bottom: 0;
  43. }
  44. .audio-place-holder .img-place-holder {
  45. position: absolute;
  46. width: 40vw;
  47. height: 40vw;
  48. }
  49. .audio-place-holder .handle-btns {
  50. position: absolute;
  51. z-index: 3;
  52. bottom: 3vh;
  53. width: 100vw;
  54. z-index: 3;
  55. display: flex;
  56. flex-direction: row;
  57. justify-content: space-around;
  58. }
  59. .audio-place-holder .btn-normal {
  60. width: 8vh;
  61. height: 8vh;
  62. box-sizing: border-box;
  63. display: flex;
  64. background: white;
  65. justify-content: center;
  66. align-items: center;
  67. border-radius: 50%;
  68. }
  69. .audio-place-holder .btn-image{
  70. width: 4vh;
  71. height: 4vh;
  72. }
  73. .audio-place-holder .btn-hangup {
  74. width: 8vh;
  75. height: 8vh;
  76. background: #f75c45;
  77. box-sizing: border-box;
  78. display: flex;
  79. justify-content: center;
  80. align-items: center;
  81. border-radius: 50%;
  82. }