解决视频生成带字幕问题

This commit is contained in:
Azmat@qq.com
2026-09-02 09:42:46 +08:00
parent 5e02c1081a
commit 2c5e4580a4
3 changed files with 15 additions and 10 deletions
+6 -4
View File
@@ -393,11 +393,13 @@
.vr-page .remix-prompt-panel .analysis-prompt {
width: 100%;
height: 162px;
min-height: 162px;
max-height: 162px;
/* 分镜稿动辄十几行,162px 只能看到两三镜,滚动条里翻稿太难受 —— 按视口给高度,
矮屏保底 300px,高屏最多 520px,再长才交给内部滚动。 */
height: clamp(300px, 46vh, 520px);
min-height: 300px;
max-height: 520px;
overflow-y: auto;
resize: none;
resize: vertical;
padding: 15px;
border: 1px solid rgba(0, 47, 167, 0.14);
border-radius: 11px;