48 lines
893 B
Plaintext
48 lines
893 B
Plaintext
/* 企业视频*/
|
|
.enterprise_content {
|
|
font-size: 29rpx;
|
|
color: #333;
|
|
margin: 0 30rpx;
|
|
border-radius: 12rpx;
|
|
background-color: #fff;
|
|
box-shadow: 0 0 14rpx rgba(0, 0, 0, 0.3);
|
|
margin-top: 20rpx;
|
|
padding: 30rpx 20rpx 20rpx 20rpx;
|
|
|
|
}
|
|
|
|
.enterprise_content video {
|
|
width: 100%;
|
|
}
|
|
|
|
.enterprise_content .content {
|
|
position: relative;
|
|
text-overflow: -o-ellipsis-lastline;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 1;
|
|
line-clamp: 1;
|
|
-webkit-box-orient: vertical;
|
|
text-align: center;
|
|
}
|
|
|
|
/* 播放 */
|
|
.content .play {
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
width: 100%;
|
|
height: calc(100% - 10rpx);
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.content .play image {
|
|
width: 102rpx;
|
|
height: 102rpx;
|
|
} |