1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
| /* app.wxss 或单独页面的 .wxss 文件 */
| .container {
| display: flex;
| flex-direction: column;
| align-items: center;
| justify-content: center;
| height: 100vh;
| padding: 20px;
| }
|
| .btn {
| margin: 10px;
| padding: 10px 20px;
| background-color: #1cbbb4;
| color: white;
| border: none;
| border-radius: 5px;
| font-size: 16px;
| }
|
| audio {
| margin-top: 20px;
| width: 100%;
| }
|
| .recording-overlay {
| position: fixed;
| top: 0;
| left: 0;
| right: 0;
| bottom: 0;
| display: flex;
| justify-content: center;
| align-items: center;
| background-color: rgba(0, 0, 0, 0.7);
| z-index: 9999;
| }
|
|