74 lines
1.3 KiB
Plaintext
74 lines
1.3 KiB
Plaintext
/* packageI/newMedia/components/audioPlay/audioPlay.wxss */
|
|
.audio-player {
|
|
display: flex;
|
|
}
|
|
|
|
.audio-play_button {
|
|
flex-shrink: 0;
|
|
width: 1.44rem;
|
|
height: 1.44rem;
|
|
line-height: 1.44rem;
|
|
color: white;
|
|
text-align: center;
|
|
font-size: 0.6rem;
|
|
border-radius: 50%;
|
|
background-image: linear-gradient(145deg, #ff8a50 0%, #ff2826 85%);
|
|
}
|
|
|
|
.audio-play_button.gray {
|
|
background: #b7b7b7;
|
|
}
|
|
|
|
.audio-play_progress {
|
|
flex-grow: 1;
|
|
margin: 0.55rem 0.98rem 0;
|
|
}
|
|
|
|
.audio-play_progress-bar {
|
|
position: relative;
|
|
}
|
|
|
|
.audio-play_progress-total {
|
|
height: 0.38rem;
|
|
background-color: #f5f6f8;
|
|
border-radius: 0.2rem;
|
|
}
|
|
|
|
.audio-play_progress-slider {
|
|
position: absolute;
|
|
z-index: 2;
|
|
top: 0;
|
|
bottom: 0;
|
|
margin: auto 0;
|
|
width: 0.75rem;
|
|
height: 0.75rem;
|
|
background-color: #fff;
|
|
border-radius: 50%;
|
|
box-shadow: 0 0.06rem 0.19rem 0 rgba(198, 198, 198, 0.46);
|
|
}
|
|
|
|
.audio-play_progress-current {
|
|
position: absolute;
|
|
z-index: 1;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
margin: auto 0;
|
|
height: 0.38rem;
|
|
border-radius: 4rem;
|
|
background-image: linear-gradient(145deg, #ff8a50 0%, #ff2826 85%);
|
|
}
|
|
|
|
.audio-play_time {
|
|
display: flex;
|
|
align-content: center;
|
|
justify-content: space-between;
|
|
color: #bababa;
|
|
font-size: 0.63rem;
|
|
}
|
|
|
|
.audio-play_time-item {
|
|
padding-top: 0.75rem;
|
|
text-align: center;
|
|
}
|