12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /* components/list-audio/list-audio.wxss */
- .list {
- position: relative;
- margin-bottom: 32rpx;
- }
- .list .title {
- font-size: 24rpx;
- }
- .audio {
- position: relative;
- margin: 18rpx 0 10rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .audio .audio-img {
- width:40rpx;
- height:40rpx;
- }
- .audio .free-MusicProgress {
- width:62%;
- height:8rpx;
- background: rgba(112, 112, 112, 0.5);
- border-radius: 6rpx;
- margin-right: 16rpx;
- position: relative;
- overflow: hidden;
- }
- .audio .free-MusicProgress .progress {
- height: 100%;
- background: #38A2D7;
- }
- .list .durationTime {
- font-size: 20rpx;
- color: #2F2414;
- }
|