42 lines
627 B
Plaintext
42 lines
627 B
Plaintext
/* pages/vedio/detail.wxss */
|
|
.videoWrap{
|
|
position: relative;
|
|
}
|
|
.videoBottom{
|
|
position: absolute;
|
|
width: 100%;
|
|
left: 0;
|
|
bottom: 42rpx;
|
|
}
|
|
.videoContent{
|
|
padding: 30rpx;
|
|
color: #fff;
|
|
}
|
|
.title{
|
|
font-size: 28rpx;
|
|
}
|
|
.intro{
|
|
padding-top: 8rpx;
|
|
font-size: 30rpx;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
.backImg{
|
|
position: fixed;
|
|
left: 15px;
|
|
top: 130rpx;
|
|
width: 45rpx;
|
|
height: 45rpx;
|
|
opacity: 0.6;
|
|
}
|
|
.playImg{
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%,-50%);
|
|
width: 110rpx;
|
|
height: 110rpx;
|
|
opacity: 0.4;
|
|
} |