新增编码器选择

This commit is contained in:
CN-JS-HuiBai
2026-04-02 17:40:06 +08:00
parent 47de5ac65b
commit eb6068cbb8
4 changed files with 55 additions and 7 deletions

View File

@@ -401,6 +401,27 @@ header p {
font-weight: 600;
}
.play-btn {
margin-top: 1rem;
padding: 0.85rem 1.25rem;
border: none;
border-radius: 999px;
background: var(--accent);
color: #fff;
font-weight: 700;
cursor: pointer;
transition: transform 0.2s ease, background 0.2s ease;
}
.play-btn:hover {
background: var(--accent-hover);
transform: translateY(-1px);
}
.play-btn.hidden {
display: none !important;
}
.hidden {
display: none !important;
}