This commit is contained in:
make
2025-05-06 00:38:52 +08:00
parent a687e7ea93
commit 1c23e3dc7a
69 changed files with 2525 additions and 1694 deletions

View File

@@ -910,12 +910,55 @@ textarea.form-control{ height: auto;}
width: 100%;
}
.nav-item-a{
color: #ff9900
}
.desc span{
display: -webkit-box; /* 使用弹性盒子布局 */
-webkit-box-orient: vertical; /* 设置文本方向为垂直 */
-webkit-line-clamp: 2; /* 限制显示 3 行 */
overflow: hidden; /* 隐藏超出的内容 */
text-overflow: ellipsis; /* 超出部分显示省略号 */
line-height: 1.5; /* 行高,调整以控制行间距 */
max-height: calc(1.5em * 2); /* 最大高度 = 行高 × 行数 */
}
/** 播放器 start */
.video-play-page .stui-player__head {
display: none;
}
.video-play-page .dplayer-video-wrap {
max-height: 480px;
}
.video-play-page video {
max-height: 480px;
}
@media (max-width:767px) {
body.video-play-page {
padding-top: 0;
}
.video-play-page .stui-header__top {
display: none;
}
.video-play-page .stui-player__head {
display: block;
padding: 15px;
background-color: #333;
color: #fff;
}
.video-play-page .stui-player__head a {
color: #fff;
}
}
/** 播放器 end */