60 lines
864 B
Plaintext
60 lines
864 B
Plaintext
/* components/recentlyPlayed/index.wxss */
|
|
@import "../../static/iconfont.wxss";
|
|
|
|
.recently {
|
|
position: fixed;
|
|
transition: left 0.4s ease-out;
|
|
width: 690rpx;
|
|
bottom: 30rpx;
|
|
height: 120rpx;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.recently-bg {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.main {
|
|
position: absolute;
|
|
top: 0;
|
|
padding: 0 30rpx 0 0;
|
|
width: calc(100% - 60rpx);
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
z-index: 999999;
|
|
color: #fff;
|
|
}
|
|
|
|
.info-bg {
|
|
width: 72rpx;
|
|
height: 96rpx;
|
|
border-radius: 8rpx;
|
|
}
|
|
|
|
.info {
|
|
padding-left: 30rpx;
|
|
padding-right: 30rpx;
|
|
flex: 1;
|
|
}
|
|
|
|
.info-title {
|
|
width: 380rpx;
|
|
font-size: 32rpx;
|
|
}
|
|
|
|
.info-subtitle {
|
|
width: 380rpx;
|
|
padding-top: 6rpx;
|
|
font-size: 24rpx;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.text-ellipsis {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|