/* 简化的模态框修复方案 - 只为添加小说模态框 */

/* 只修复页面容器的transform问题，不影响模态框动画 */
body.modal-open #pageContent {
    transform: none !important;
}

/* 确保添加小说模态框正常显示 */
.modal {
    z-index: 1060;
}

.modal-backdrop {
    z-index: 1055;
}
