12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .video .myvideo {
- width: 100%;
- height: 100%;
- }
- .video .title {
- padding: 0 20rpx;
- font-weight: 700;
- }
- .video .desc {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-weight: 500;
- color: #a8a7a7;
- }
- .video_two {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- }
- .video_two .myvideo {
- width: 100%;
- height: 100%;
- }
- .video_two .title {
- padding: 0 20rpx;
- font-weight: 700;
- }
- .video_two .desc {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-weight: 500;
- color: #a8a7a7;
- }
- .playImg {
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 94rpx;
- height: 94rpx;
- }
|