添加seedance2.5

This commit is contained in:
Azmat@qq.com
2026-08-28 16:03:23 +08:00
parent c0a0b9603b
commit a618f02315
16 changed files with 416 additions and 80 deletions
+13
View File
@@ -717,7 +717,20 @@
border-radius: 12px;
box-shadow: 0 12px 30px rgba(20, 27, 38, 0.12);
padding: 6px;
/* 时长档随模型走(Seedance 2.5 有 430 共 27 项),菜单会顶穿视口。
封顶后内部滚动;上限跟着视口收,矮屏也不会被切掉。 */
max-height: min(320px, calc(100vh - 160px));
overflow-y: auto;
overscroll-behavior: contain;
}
/* 细滚动条:菜单本来就窄,系统默认那条会压掉一截可读宽度 */
.fc-page .fc-dd-menu::-webkit-scrollbar { width: 6px; }
.fc-page .fc-dd-menu::-webkit-scrollbar-thumb {
border-radius: 999px;
background: rgba(34, 42, 54, 0.18);
}
.fc-page .fc-dd-menu::-webkit-scrollbar-track { background: transparent; }
.fc-page .fc-dd-item {
display: flex;
flex-direction: column;