1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- .commentPage {
- .notes {
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- padding: 20rpx 40rpx 24rpx;
- border-bottom: 1px solid #D8D8D8;
- .redDrop {
- width: 12rpx;
- height: 12rpx;
- border-radius: 50%;
- background-color: red;
- }
- .avatar {
- width: 80rpx;
- height: 80rpx;
- background-color: #D8D8D8;
- border-radius: 50%;
- }
- .body {
- flex: 1;
- margin-left: 24rpx;
- .nickName {
- font-size: 30rpx;
- }
- .bBox {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding-right: 50rpx;
- }
- .date {
- margin: 10rpx 0rpx;
- word-break: break-all;
- padding-right: 50rpx;
- font-size: 24rpx;
- }
- .reply {
- display: inline-block;
- padding: 4rpx 10rpx;
- border-radius: 10rpx;
- background-color: #e7e7e7;
- font-size: 22rpx;
- }
- }
- .cover {
- width: 134rpx;
- height: 74rpx;
- border-radius: 10rpx;
- background-color: skyblue;
- }
- .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;
- .audioPlayBg {
- width: 58rpx;
- height: 58rpx;
- }
- .audioPlayZhen {
- position: absolute;
- right: 30rpx;
- top: 11rpx;
- width: 14rpx;
- height: 17rpx;
- }
- .cover {
- position: absolute;
- width: 48rpx;
- height: 48rpx;
- border-radius: 50%;
- }
- }
- }
- .empty {
- margin-top: 200rpx;
- }
- }
|