index.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /* pages/main/component/AudioPanel/index.wxss */
  2. .audio-container {
  3. width: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. margin-bottom: 134px;
  8. }
  9. .audio-container .second {
  10. font-size:48px;
  11. font-family:PingFangSC-Regular;
  12. font-weight:400;
  13. color:rgba(44,58,81,1);
  14. line-height:68px;
  15. }
  16. .audio-container .tips {
  17. font-size:14px;
  18. font-family:PingFangSC-Regular;
  19. font-weight:400;
  20. color:rgba(122,124,145,1);
  21. line-height:20px;
  22. }
  23. .audio-container .audio-bottom {
  24. width:100%;
  25. height:134px;
  26. background:rgba(249,249,251,1);
  27. position: fixed;
  28. bottom: 0;
  29. display: flex;
  30. align-items: center;
  31. justify-content: center;
  32. padding-bottom: 20px;
  33. z-index: 1000;
  34. }
  35. .audio-bottom .btn-container {
  36. padding: 10px;
  37. display: flex;
  38. align-items: center;
  39. justify-content: center;
  40. flex-direction: column;
  41. }
  42. .btn-container .btn {
  43. width:64px;
  44. height:64px;
  45. background:rgba(255,255,255,1);
  46. border-radius: 50%;
  47. border:2px solid #F98183;
  48. display: flex;
  49. align-items: center;
  50. justify-content: center;
  51. }
  52. .btn .record-normal {
  53. width:20px;
  54. height:20px;
  55. background:linear-gradient(180deg,rgba(249,129,131,1) 0%,rgba(241,74,76,1) 100%);
  56. border-radius:10px;
  57. }
  58. .btn .record-ing {
  59. width:20px;
  60. height:20px;
  61. background:linear-gradient(180deg,rgba(249,129,131,1) 0%,rgba(241,74,76,1) 100%);
  62. border-radius:4px;
  63. }
  64. .audio-bottom .actions-container {
  65. width: 100%;
  66. display: flex;
  67. flex-direction: row;
  68. align-items: center;
  69. justify-content: space-around;
  70. }
  71. .actions-container .upload-container {
  72. width:64px;
  73. height:64px;
  74. background:linear-gradient(180deg,rgba(125,218,153,1) 0%,rgba(71,179,96,1) 100%);
  75. border-radius:32px;
  76. display: flex;
  77. flex-direction: column;
  78. justify-content: center;
  79. align-items: center;
  80. }
  81. .btn-label {
  82. height:20px;
  83. font-size:14px;
  84. font-family:PingFangSC-Regular;
  85. font-weight:400;
  86. color:rgba(44,58,81,1);
  87. line-height:20px;
  88. margin-top: 10px;
  89. }
  90. .player-container {
  91. padding: 20px 16px;
  92. display: flex;
  93. flex-direction: column;
  94. align-items: center;
  95. justify-content: center;
  96. }
  97. .player-container Player {
  98. margin-bottom: 20px;
  99. }
  100. .upload-btn {
  101. width:90px;
  102. height:32px;
  103. background:rgba(255,255,255,1);
  104. border-radius:10px;
  105. border:1px solid rgba(80,182,104,0.85);
  106. font-size:14px;
  107. font-family:PingFangSC-Medium;
  108. font-weight:500;
  109. color:rgba(71,179,96,1);
  110. line-height:32px;
  111. text-align: center;
  112. }