   /* 全页面模态框样式 (与就诊人管理风格统一) */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 10000;
            font-family: "Microsoft YaHei", sans-serif;}
        .modal-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 460px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            animation: fadeIn 0.2s ease;}
        @keyframes fadeIn {
            from { opacity: 0; transform: translate(-50%, -48%);}
            to { opacity: 1; transform: translate(-50%, -50%);}
        }
        .modal-header {
            padding: 16px 20px;
            border-bottom: 1px solid #e9ecef;
            background: #f8f9fa;
            position: relative;}
        .modal-header h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 500;
            color: #2c3e50;}
        .modal-close {
            position: absolute;
            right: 18px;
            top: 14px;
            font-size: 24px;
            line-height: 1;
            color: #909090;
            cursor: pointer;
            transition: color 0.2s;}
        .modal-close:hover {
            color: #1890FF;}
        .modal-body {
            padding: 20px;
            max-height: 400px;
            overflow-y: auto;}
        .patient-item {
            padding: 12px 16px;
            border-bottom: 1px solid #e9ecef;
            cursor: pointer;
            transition: background 0.2s;
            border-radius: 4px;
            margin-bottom: 2px;}
        .patient-item:hover {
            background-color: #ecf5fe;}
        .patient-name {
            font-weight: 500;
            color: #2c3e50;
            font-size: 16px;}
        .patient-desc {
            font-size: 13px;
            color: #6c757d;
            margin-top: 4px;}
        .modal-btn {
            padding: 8px 22px;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: background 0.2s, opacity 0.2s;}
        .modal-btn-default {
            background: #fff;
            border: 1px solid #dcdfe6;
            color: #606266;
            margin-right: 12px;}
        .modal-btn-default:hover {
            background: #f5f7fa;
            border-color: #c0c4cc;}
        .modal-btn-primary {
            background: #1890FF;
            color: #fff;
            border: 1px solid #1890FF;}
        .modal-btn-primary:hover {
            background: #0d7ae0;
            border-color: #0d7ae0;}
        .text-center { text-align: center;}
        .text-muted { color: #6c757d;}
        .mt-3 { margin-top: 1rem;}
        .loading {
            padding: 30px;
            text-align: center;
            color: #6c757d;}
