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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
| /* pages/resourceDetails/myAudio/index.wxss */
| .nacigationBar {
| background-color: #fff;
| display: flex;
| align-items: center;
|
| }
|
| .navbar-title {
| white-space: nowrap;
| /* overflow: hidden; */
| text-overflow: ellipsis;
| color: #0F1214;
| font-size: 40rpx;
| font-weight: bold;
| margin-bottom: 5rpx;
| }
|
| .audioBox {
| width: 100%;
| height: 350rpx;
| }
|
| .imageFront {
| width: 300rpx;
| height: 300rpx;
| position: absolute;
| top: 150rpx;
| left: 250rpx;
| }
|
| .imageAfter {
| width: 100%;
| }
|
| .controlBox {
| width: 750rpx;
| height: 96rpx;
| background: #000000;
| border-radius: 0rpx 0rpx 0rpx 0rpx;
| opacity: 0.6;
| position: relative;
| }
|
| .controlBox image {
| width: 45rpx;
| height: 45rpx;
| margin: 20rpx 35rpx;
| }
|
| audio {
| position: relative;
| }
|
| .free-MusicProgress {
| position: absolute;
| width: 78%;
| left: 21.7%;
| bottom: 1px;
| background: #C3C3C3;
| }
|
| .free-MusicProgress>view {
| background: #48c23d;
| height: 5px;
| }
|
|