#字体面板 {
    flex-direction: column;
    width: 50%;
    padding: 10px;
    gap: 8px;
    border-radius: 20px;
    z-index: 600;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 80vh;
}
#字体面板 h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1c1c1e;
    margin-bottom: 6px;
}
.字体上传区 {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 12px;
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
}
.字体上传区 input[type="file"] {
    flex: 1;
    height: 40px;
}
.单选组容器 {
    display: inline-flex;
    align-items: center;
    background-color: #f1f3f5;
    border-radius: 8px;
    padding: 3px;
    gap: 4px;
    width: 100%;
    box-sizing: border-box;
}
.单选选项标签 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    border-radius: 6px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease-in-out;
    margin: 0 !important;
}
.单选选项标签 input[type="radio"] {
    display: none !important;
}
.单选选项标签:has(input[type="radio"]:checked) {
    background-color: #ffffff;
    color: #1890ff;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}
.单选选项标签.已禁用 {
    opacity: 0.5;
    cursor: not-allowed;
}