123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- .like .notes {
- position: relative;
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- padding: 20rpx 40rpx;
- border-bottom: 1px solid #D8D8D8;
- }
- .like .notes .redDrop {
- position: absolute;
- left: 24rpx;
- width: 12rpx;
- height: 12rpx;
- border-radius: 50%;
- background-color: red;
- }
- .like .notes .avatar {
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- }
- .like .notes .body {
- flex: 1;
- margin-left: 24rpx;
- }
- .like .notes .body .nickName {
- font-size: 30rpx;
- }
- .like .notes .body .date {
- margin-top: 6rpx;
- font-size: 24rpx;
- }
- .like .notes .cover {
- width: 134rpx;
- height: 74rpx;
- border-radius: 10rpx;
- }
- .like .notes .audioCover {
- position: relative;
- width: 134rpx;
- height: 74rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 8rpx;
- overflow: hidden;
- background-size: cover;
- background-position: center;
- }
- .like .notes .audioCover .audioPlayBg {
- width: 58rpx;
- height: 58rpx;
- }
- .like .notes .audioCover .audioPlayZhen {
- position: absolute;
- right: 30rpx;
- top: 11rpx;
- width: 14rpx;
- height: 17rpx;
- }
- .like .notes .audioCover .cover {
- position: absolute;
- width: 48rpx;
- height: 48rpx;
- border-radius: 50%;
- }
- .like .empty {
- margin-top: 200rpx;
- }
|