/* 人员检索弹窗样式 */
	.person-modal-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background: rgba(0, 0, 0, 0.5);
		z-index: 2000;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 !important;
		padding: 0 !important;
	}
	html, body {
		margin: 0 !important;
		padding: 0 !important;
	}
	.person-modal-container {
		background: #fff;
		border-radius: 12px;
		width: 900px;
		max-width: 98vw;
		max-height: 98vh;
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
		display: flex;
		flex-direction: column;
		overflow: hidden;
	}

	.person-modal-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 24px 32px 12px 32px;
		border-bottom: 1px solid #f0f0f0;
	}

	.person-modal-title {
		font-size: 20px;
		font-weight: 600;
		color: #222;
	}

	.person-modal-close {
		background: none;
		border: none;
		font-size: 28px;
		color: #888;
		cursor: pointer;
		border-radius: 4px;
		width: 36px;
		height: 36px;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: background 0.2s;
	}

	.person-modal-close:hover {
		background: #f5f5f5;
	}

	.person-modal-content {
		display: flex;
		flex-direction: row;
		gap: 0;
		min-height: 400px;
		max-height: 60vh;
		overflow: visible;
		align-items: flex-start;
		background-color: #fafbfc;
	}

	.person-modal-left {
		width: 60%;
		display: flex;
		flex-direction: column;
		padding: 24px 12px 24px 24px;
	}

	.person-search-input {
		width: 100%;
		padding: 8px 12px;
		border: 1px solid #e0e0e0;
		border-radius: 6px;
		font-size: 15px;
		background: #fff;
	}

	.person-results-area {
		flex: 1;
		border: 1px solid #f0f0f0;
		overflow-y: auto;
		padding: 0 0 0 0;
		display: flex;
		align-items: stretch;
		justify-content: stretch;
		background-color: #fff;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
		border-radius: 6px;
		margin-top: 15px;
	}

	.person-results-card {
		background: #fff;
		border-radius: 12px;
		width: 100%;
		min-height: 320px;
		max-height: 450px;
		display: flex;
		flex-direction: column;
		flex: 1;
	}

	.person-results-list {
		background: #fff;
		border-radius: 8px;
		padding: 8px 0;
		min-height: 320px;
		flex: 1;
	}

	.person-result-item {
		display: flex;
		align-items: center;
		padding: 8px 12px;
		border-radius: 6px;
		margin-bottom: 2px;
		transition: background 0.2s;
		cursor: pointer;
	}

	.person-result-item:hover {
		background: #f0f6ff;
	}

	.person-result-checkbox {
		margin-right: 8px;
		accent-color: #222;
		width: 16px;
		height: 16px;
	}

	.person-result-text {
		font-size: 15px;
		color: #222;
		line-height: 22px;
	}

	.person-modal-right {
		width: 40%;
		padding: 24px 24px 0 12px;
		display: flex;
		flex-direction: column;
		align-self: stretch;
	}

	.person-selected-container {
		background: #fff;
		border-radius: 8px;
		padding: 16px 6px 6px 16px;
		border: 1px solid #f0f0f0;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	}

	.person-selected-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		font-size: 16px;
		font-weight: 500;
		margin-bottom: 10px;
		margin-right: 10px;
	}

	.person-selected-count {
		background: #222;
		color: #fff;
		border-radius: 50%;
		width: 24px;
		height: 24px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 14px;
		font-weight: 600;
	}

	.person-selected-list {
		flex: 1;
		overflow: auto;
		max-height: 380px;
		min-height: 250px;
		background: #fff;
	}

	.person-selected-list::-webkit-scrollbar {
		width: 6px;
		background: transparent;
	}
	.person-selected-list::-webkit-scrollbar-thumb {
		background: #e0e0e0;
		border-radius: 4px;
	}
	.person-selected-list::-webkit-scrollbar-thumb:hover {
		background: #cccccc;
	}

	.person-selected-card {
		background: #f7f9fa;
		border: 1px solid #e0e4e9;
		border-radius: 8px;
		padding: 5px 16px;
		margin-bottom: 10px;
		margin-right: 10px;
		display: flex;
		flex-direction: column;
		font-size: 15px;
		color: #222;
		position: relative;
	}

	.person-selected-card .remove-tag {
		position: absolute;
		right: 8px;
		background: none;
		border: none;
		color: #888;
		font-size: 18px;
		cursor: pointer;
		border-radius: 50%;
		width: 22px;
		height: 22px;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: background 0.2s;
	}

	.person-selected-card .remove-tag:hover {
		background: #eee;
		color: #222;
	}

	.placeholder-text {
		color: #aaa;
		text-align: center;
		margin-top: 40px;
	}

	.person-modal-footer {
		display: flex;
		flex-direction: row;
		gap: 16px;
		padding-top: 15px;
		background: #fff;
	}

	.person-modal-footer .btn {
		flex: 1;
	}

	.btn {
		padding: 10px 28px;
		border: none;
		border-radius: 6px;
		font-size: 16px;
		font-weight: 500;
		cursor: pointer;
		transition: background 0.2s;
	}

	.btn-primary {
		background: #222;
		color: #fff;
	}

	.btn-primary:hover {
		background: #444;
	}

	.btn-secondary {
		background: #f5f5f5;
		color: #222;
		border: 1px solid #e0e0e0;
	}

	.btn-secondary:hover {
		background: #e0e0e0;
	}

	.person-results-area::-webkit-scrollbar {
		width: 6px;
		background: transparent;
	}
	.person-results-area::-webkit-scrollbar-thumb {
		background: #e0e0e0;
		border-radius: 4px;
	}
	.person-results-area::-webkit-scrollbar-thumb:hover {
		background: #cccccc;
	}

	.loading {
		text-align: center;
		color: #666;
		padding: 30px;
		font-size: 15px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}

	.loading::after {
		content: "";
		display: block;
		width: 30px;
		height: 30px;
		margin-top: 15px;
		border: 3px solid #222;
		border-radius: 50%;
		border-top-color: transparent;
		animation: spin 1s linear infinite;
	}

	@keyframes spin {
		to {
			transform: rotate(360deg);
		}
	}
