audio.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. .modal {
  2. position: absolute;
  3. top: 0;
  4. right: 0;
  5. left: 0;
  6. bottom: 0;
  7. width: 100%;
  8. height: 100%;
  9. z-index: 999;
  10. /*display: flex;
  11. justify-content: center;
  12. align-items: center;*/
  13. }
  14. .modal-record .modal-body {
  15. width: 480rpx;
  16. height: 440rpx;
  17. background-color: #fff;
  18. display: flex;
  19. flex-direction: column;
  20. justify-content: center;
  21. align-items: center;
  22. border-radius: 3px;
  23. box-shadow: 0 0 32rpx rgba(0, 0, 0, 0.15);
  24. position: fixed;
  25. bottom: 480rpx;
  26. left: 50%;
  27. margin-left: -240rpx;
  28. }
  29. .modal-record .desc {
  30. color: rgb(112, 126, 137);
  31. font-size: 13px;
  32. margin-bottom: 40rpx;
  33. display: block;
  34. height: 30rpx;
  35. width: 100%;
  36. text-align: center;
  37. }
  38. .modal-record .dot {
  39. width: 128rpx;
  40. height: 128rpx;
  41. border-radius: 50%;
  42. background-color: #0873DE;
  43. display: flex;
  44. justify-content: center;
  45. align-items: center;
  46. }
  47. .dot image {
  48. width: 44rpx;
  49. height: 64rpx;
  50. }
  51. .sound-waves {
  52. width: 100%;
  53. box-sizing: border-box;
  54. padding-left:10%;
  55. margin-top: 80rpx;
  56. height: 80rpx;
  57. text-align: center;
  58. }
  59. .sound-waves view {
  60. transition: all 0.5s;
  61. width: 1%;
  62. margin-left: 1.5%;
  63. margin-right: 1.5%;
  64. height: 160rpx;
  65. background-color: #aaa;
  66. float: left;
  67. }