123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- .photo-wrap {
- position: relative;
- left: 0;
- top: 0;
- width: 100%;
- height: 194rpx;
- overflow: hidden;
- .photo {
- display: block;
- width: 100%;
- height: 100%;
- background: pink;
- }
- .play {
- position: absolute;
- left: 50%;
- top: 50%;
- z-index: 1;
- width: 54rpx;
- height: 54rpx;
- transform: translate(-50%, -50%);
- }
- .pv {
- position: absolute;
- left: 14rpx;
- top: 12rpx;
- z-index: 1;
- font-size: 24rpx;
- line-height: 34rpx;
- color: rgba(255, 255, 255, 1);
- }
- }
- .video-name {
- width: 100%;
- padding: 0 12rpx;
- margin-top: 12rpx;
- font-size: 24rpx;
- line-height: 34rpx;
- color: rgba(24, 26, 43, 1);
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .data-detail {
- display: flex;
- align-items: center;
- width: 100%;
- padding: 12rpx 18rpx 20rpx;
- margin-top: 12rpx;
- border-top: 2rpx solid rgba(245, 245, 245, 1);
- .box {
- display: flex;
- align-items: center;
- flex: 1;
- }
- .icon-praise,
- .icon-message,
- .icon-share {
- width: 28rpx;
- height: 28rpx;
- }
- .data {
- font-size: 24rpx;
- line-height: 28rpx;
- color: rgba(153, 153, 153, 1);
- }
- }
|