#编辑面板, #子女面板, #快速面板, #查询面板, #功能面板, #悬浮信息面板 {
    position: fixed;
    display: none;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
#编辑面板, #子女面板, #快速面板, #查询面板 {
    flex-direction: column;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 88%;
    padding: 10px;
    gap: 5px;
    border-radius: 20px 20px 0 0;
    z-index: 500;
    overflow-y: scroll;
}
#悬浮信息面板 {
    width: 300px;
    overflow-y: scroll;
    z-index: 100;
    flex-direction: column;
    min-height: 50%;
    padding: 10px;
    gap: 5px;
    border-radius: 20px 20px 0 0;
}
#编辑面板 h3, #子女面板 h3, #快速面板 h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1c1c1e;
    margin-bottom: 6px;
}
.顶部按钮区 {
    position: fixed;
    top: 16px;
    right: 16px;
    display: flex;
    z-index: 100;
}
#功能按钮 {
    font-size: 40px;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
    user-select: none;
}
#功能面板 {
    right: 0;
    top: 0;
    width: auto;
    max-height: 80vh;
    padding: 10px;
    gap: 6px;
    border-radius: 16px;
    transform: translateY(10px);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 999;
    overflow-y: auto;
}
#功能面板.visible {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}
.分割线 {
    grid-column: 1 / -1;
    height: 1px;
    margin: 6px 0;
    background: #f1f5f9;
}
.excel-like-table {
    display: grid;
    grid-template-columns: auto 1fr;
    border: 1px solid #ccc;
    background: #fff;
    max-height: auto;
    overflow-y: auto;
}
.excel-cell-label {
    background: #f2f2f2;
    padding: 8px;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.excel-cell-input {
    padding: 4px;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
}
.excel-cell-input input,
.excel-cell-input select,
.excel-cell-input textarea {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 4px;
    font-size: 14px;
}
.excel-cell-input textarea {
    min-height: 60px;
    resize: vertical;
}
.加载提示框 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 16px 24px;
    font-size: 24px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    z-index: 1000;
}