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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
| /* 顶层容器 */
| ._contain {
| position: relative;
| display: inline-flex;
| width: 290px;
| background-color: #fcfcfc;
| border: 1px solid #e0e0e0;
| border-radius: 2px;
| }
|
| /* 播放、暂停按钮 */
| ._button {
| display: flex;
| align-items: center;
| justify-content: center;
| width: 20px;
| height: 20px;
| overflow: hidden;
| background-color: rgb(0, 0, 0, 0.2);
| border: 1px solid white;
| border-radius: 50%;
| opacity: 0.9;
| }
|
| ._play {
| margin-left: 2px;
| border-top: 4px solid transparent;
| border-bottom: 4px solid transparent;
| border-left: 8px solid white;
| }
|
| ._pause {
| width: 8px;
| height: 8px;
| background-color: white;
| }
|
| /* 海报 */
| ._poster {
| display: flex;
| align-items: center;
| justify-content: center;
| width: 70px;
| height: 70px;
| background-color: #e6e6e6;
| background-size: contain;
| }
|
| /* 标题栏 */
| ._title {
| flex: 1;
| margin: 4px 0 0 14px;
| text-align: left;
| }
|
| ._author {
| width: 45px;
| font-size: 12px;
| color: #888;
| }
|
| ._name {
| width: 140px;
| font-size: 15px;
| line-height: 39px;
| }
|
| ._author,
| ._name {
| overflow: hidden;
| text-overflow: ellipsis;
| white-space: nowrap;
| }
|
| /* 进度条 */
| ._slider {
| position: absolute;
| right: 16px;
| bottom: 8px;
| width: 140px;
| margin: 0;
| }
|
| /* 播放时间 */
| ._time {
| margin: 7px 14px 0 0;
| font-size: 12px;
| color: #888;
| }
|
| /* 响应式布局,大屏幕用更大的尺寸 */
| @media (min-width: 400px) {
| ._contain {
| width: 380px;
| }
|
| ._button {
| width: 26px;
| height: 26px;
| }
|
| ._poster {
| width: 90px;
| height: 90px;
| }
|
| ._author {
| width: 60px;
| font-size: 15px;
| }
|
| ._name {
| width: 180px;
| font-size: 19px;
| line-height: 55px;
| }
|
| ._slider {
| right: 20px;
| bottom: 10px;
| width: 180px;
| }
|
| ._time {
| font-size: 15px;
| }
| }
|
|