49 lines
829 B
Plaintext
49 lines
829 B
Plaintext
.video_content {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.video_item {
|
|
margin-top: 2rpx;
|
|
margin-left: 0.25%;
|
|
width: 33%;
|
|
height: 280rpx;
|
|
position: relative;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: start;
|
|
align-items: flex-end;
|
|
box-sizing: border-box;
|
|
padding: 20rpx;
|
|
font-size: 26rpx;
|
|
color: #fff;
|
|
}
|
|
|
|
.video_item_bg {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: -1;
|
|
}
|
|
.video_item_eye{
|
|
width: 30rpx;
|
|
margin-right: 10rpx;
|
|
}
|
|
.video_item_zhiding{
|
|
position: absolute;
|
|
top: 12rpx;
|
|
left: 12rpx;
|
|
background-color:#ffcc00 ;
|
|
color:#4a1900 ;
|
|
padding: 4rpx 10rpx;
|
|
border-radius: 4rpx;
|
|
font-size: 24rpx;
|
|
} |