/* 异常发货单页面样式 - 复制自出库单策略页面并添加abnormal-operation前缀 */
.abnormal-operation-card {
	height: calc(100vh - 120px);
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	padding: 24px;
}

/* 搜索区域样式 */
.abnormal-operation-search-form {
	background: #ffffff;
	border: 1px solid #e5e6eb;
	border-radius: 6px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* 组合搜索框样式 */
.abnormal-operation-search-field .abnormal-operation-search-combined {
	display: flex;
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid #e5e6eb;
	width: 100%;
	min-width: 200px;
}

.abnormal-operation-search-field .abnormal-operation-search-type {
	width: 100px;
	height: 36px;
	border: none;
	border-right: 1px solid #e5e6eb;
	border-radius: 0;
	padding: 0 12px;
	cursor: pointer;
	margin: 0;
	background-color: #ffffff;
}

.abnormal-operation-search-field .abnormal-operation-search-value {
	flex: 1;
	border: none;
	border-radius: 0;
	height: 36px;
	background: #ffffff;
	padding: 0 12px;
	margin: 0;
}

.abnormal-operation-search-field .abnormal-operation-search-type:focus,
.abnormal-operation-search-field .abnormal-operation-search-value:focus {
	outline: none;
	border-color: #0052d9;
	box-shadow: 0 0 0 2px rgba(0, 82, 217, 0.1);
}

.abnormal-operation-search-row {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
}

.abnormal-operation-search-field {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
}

.abnormal-operation-search-label {
	font-size: 13px;
	font-weight: 500;
	color: #1d2129;
	min-width: 80px;
}

.abnormal-operation-search-input {
	width: 100%;
	height: 36px;
	padding: 0 12px;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	font-size: 13px;
	outline: none;
	vertical-align: middle;
	box-sizing: border-box;
}

.abnormal-operation-search-select {
	width: 100%;
	height: 36px;
	padding: 0 12px;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	font-size: 13px;
	outline: none;
	vertical-align: middle;
	box-sizing: border-box;
}

/* 多选下拉框样式 */
.abnormal-operation-search-select[multiple] {
	height: auto;
	min-height: 36px;
	max-height: 120px;
	overflow-y: auto;
	padding: 4px;
}

.abnormal-operation-search-select[multiple] option {
	padding: 6px 8px;
	border-radius: 2px;
	margin: 2px 0;
	cursor: pointer;
}

.abnormal-operation-search-select[multiple] option:checked {
	background: linear-gradient(#1890ff, #1890ff);
	color: #fff;
	font-weight: 500;
}

.abnormal-operation-search-select[multiple] option:hover {
	background-color: #f0f5ff;
}

/* 自定义多选下拉框 */
.abnormal-operation-multi-select {
	position: relative;
	width: 100%;
}

/* 订单操作工具栏 - 覆盖式设计 */
.abnormal-operation-overlay-toolbar {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 56px;
	background: linear-gradient(135deg, #0052d9 0%, #3f87ff 100%);
	border-radius: 8px 8px 0 0;
	box-shadow: 0 2px 8px rgba(0, 82, 217, 0.2);
	z-index: 100;
	transform: translateY(-100%);
	opacity: 0;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		opacity 0.3s ease-in-out,
		box-shadow 0.3s ease;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	flex-direction: row;
}

/* 确保工具栏显示时正确显示 */
.abnormal-operation-overlay-toolbar.abnormal-operation-toolbar-show {
	transform: translateY(0);
	opacity: 1;
	box-shadow: 0 4px 12px rgba(0, 82, 217, 0.3);
}

/* 工具栏隐藏时的动画 */
.abnormal-operation-overlay-toolbar.abnormal-operation-hiding {
	transform: translateY(-20px);
	opacity: 0;
	box-shadow: 0 1px 4px rgba(0, 82, 217, 0.1);
}

/* 初始状态下工具栏完全隐藏 */
.abnormal-operation-overlay-toolbar:not(.abnormal-operation-toolbar-show):not(.abnormal-operation-hiding) {
	opacity: 0;
	pointer-events: none;
	transform: translateY(-100%);
}

.abnormal-operation-overlay-toolbar.abnormal-operation-toolbar-show {
	transform: translateY(0);
}

.abnormal-operation-header {
	position: relative;
	transition: all 0.3s ease;
	overflow: visible;
}

/* 工具栏相关样式 - 添加前缀 */
.abnormal-operation-toolbar-info {
	display: flex;
	align-items: center;
	gap: 16px;
}

.abnormal-operation-toolbar-counter {
	color: white;
	font-size: 15px;
	font-weight: 500;
	display: flex;
	align-items: center;
}

.abnormal-operation-toolbar-counter span {
	font-weight: 700;
	font-size: 18px;
	margin-left: 4px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 2px 8px;
	margin-left: 8px;
}

.abnormal-operation-toolbar-close-btn {
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	padding: 6px;
	border-radius: 4px;
	transition: background-color 0.2s;
	opacity: 0.8;
	display: flex;
	align-items: center;
	justify-content: center;
}

.abnormal-operation-toolbar-close-btn:hover {
	background-color: rgba(255, 255, 255, 0.2);
	opacity: 1;
}

.abnormal-operation-toolbar-close-btn svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.abnormal-operation-toolbar-actions {
	display: flex;
	align-items: center;
	gap: 6px;
}

.abnormal-operation-toolbar-action-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	border: none;
	background-color: rgba(255, 255, 255, 0.15);
	color: white;
	outline: none;
	white-space: nowrap;
}

.abnormal-operation-toolbar-action-btn:hover {
	background-color: rgba(255, 255, 255, 0.25);
	transform: translateY(-1px);
}

.abnormal-operation-toolbar-action-btn.abnormal-operation-primary {
	background-color: rgba(255, 255, 255, 0.9);
	color: #0052d9;
}

.abnormal-operation-toolbar-action-btn.abnormal-operation-primary:hover {
	background-color: white;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.abnormal-operation-toolbar-btn-icon {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.abnormal-operation-toolbar-divider {
	width: 1px;
	height: 20px;
	background-color: rgba(255, 255, 255, 0.3);
	margin: 0 4px;
}

/* 多选下拉框样式 - 添加前缀 */
.abnormal-operation-multi-select-display {
	min-height: 36px;
	padding: 4px 32px 4px 12px;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	background-color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	transition: border-color 0.3s;
	box-sizing: border-box;
}

.abnormal-operation-multi-select-display:hover {
	border-color: #c9cdd4;
}

.abnormal-operation-multi-select-placeholder {
	color: #86909c;
	font-size: 13px;
	user-select: none;
}

.abnormal-operation-multi-select-arrow {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	color: #86909c;
	pointer-events: none;
}

.abnormal-operation-multi-select-tag {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 2px 8px;
	background-color: #e8f4ff;
	color: #1890ff;
	border-radius: 2px;
	font-size: 12px;
	line-height: 20px;
}

.abnormal-operation-tag-close {
	cursor: pointer;
	font-size: 14px;
	font-weight: bold;
	color: #1890ff;
	opacity: 0.7;
	transition: opacity 0.2s;
}

.abnormal-operation-tag-close:hover {
	opacity: 1;
}

.abnormal-operation-multi-select-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin-top: 4px;
	background-color: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	max-height: 240px;
	overflow-y: auto;
	z-index: 1000;
}

.abnormal-operation-multi-select-option {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	cursor: pointer;
	transition: background-color 0.2s;
	user-select: none;
}

.abnormal-operation-multi-select-option:hover {
	background-color: #f5f7fa;
}

.abnormal-operation-multi-select-option input[type="checkbox"] {
	cursor: pointer;
	margin: 0;
}

.abnormal-operation-multi-select-option span {
	font-size: 13px;
	color: #1d2129;
}

.abnormal-operation-search-input[type="date"] {
	padding: 0 8px;
	min-width: 120px;
}

.abnormal-operation-search-input:focus,
.abnormal-operation-search-select:focus {
	outline: none;
	border-color: #0052d9;
	box-shadow: 0 0 0 2px rgba(0, 82, 217, 0.1);
}

.abnormal-operation-search-input:hover,
.abnormal-operation-search-select:hover {
	border-color: #c9cdd4;
}

/* 列表区域样式 */
.abnormal-operation-list {
	height: calc(100vh - 300px);
	display: flex;
	flex-direction: column;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
}

.abnormal-operation-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	background: #f8f9fa;
	border-bottom: 1px solid #e5e7eb;
}

.abnormal-operation-title {
	font-size: 16px;
	font-weight: 500;
	color: #303133;
}

.abnormal-operation-actions {
	display: flex;
	gap: 12px;
	align-items: center;
}

.abnormal-operation-btn {
	padding: 6px 16px;
	border-radius: 4px;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.2s;
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background-color: #f5f5f5;
	color: #4e5969;
	border: 1px solid #d9d9d9;
}

.abnormal-operation-icon {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.abnormal-operation-btn:hover {
	background-color: #e6e6e6;
}

/* 表格样式 */
.abnormal-operation-table-container {
	flex: 1;
	overflow-y: auto;
	overflow-x: auto;
	min-height: 0;
}

.abnormal-operation-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: auto;
	min-width: 1900px;
}





.abnormal-operation-table th,
.abnormal-operation-table td {
	padding: 12px 16px;
	border-bottom: 1px solid #ebeef5;
	text-align: left;
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.abnormal-operation-table th {
	background-color: #f5f7fa;
	font-weight: 500;
	color: #303133;
	position: sticky;
	top: 0;
	z-index: 1;
	border-bottom: 1px solid #ebeef5;
}

.abnormal-operation-table tbody tr {
	cursor: pointer;
}

.abnormal-operation-table tbody tr:hover {
	background-color: #f5f7fa;
}

/* 选择框列样式 */
.abnormal-operation-table th:nth-child(1),
.abnormal-operation-table td:nth-child(1) {
	width: 40px;
	text-align: center;
}

/* 展开按钮列样式 */
.abnormal-operation-table th:nth-child(2),
.abnormal-operation-table td:nth-child(2) {
	width: 40px;
	text-align: center;
}

/* 操作单号、业务单号列宽度 */
.abnormal-operation-table th:nth-child(3),
.abnormal-operation-table td:nth-child(3),
.abnormal-operation-table th:nth-child(4),
.abnormal-operation-table td:nth-child(4) {
	min-width: 120px;
	max-width: 200px;
}

/* 货主名称、店铺名称、平台名称列宽度 */
.abnormal-operation-table th:nth-child(5),
.abnormal-operation-table td:nth-child(5),
.abnormal-operation-table th:nth-child(6),
.abnormal-operation-table td:nth-child(6),
.abnormal-operation-table th:nth-child(7),
.abnormal-operation-table td:nth-child(7) {
	min-width: 150px;
	max-width: 200px;
}

/* 拆分单数、拣货方式、发货方式、物流名称、物流单号、优先级、异常类型居中对齐 */
.abnormal-operation-table th:nth-child(8),
.abnormal-operation-table td:nth-child(8),
.abnormal-operation-table th:nth-child(9),
.abnormal-operation-table td:nth-child(9),
.abnormal-operation-table th:nth-child(10),
.abnormal-operation-table td:nth-child(10),
.abnormal-operation-table th:nth-child(11),
.abnormal-operation-table td:nth-child(11),
.abnormal-operation-table th:nth-child(12),
.abnormal-operation-table td:nth-child(12),
.abnormal-operation-table th:nth-child(13),
.abnormal-operation-table td:nth-child(13),
.abnormal-operation-table th:nth-child(14),
.abnormal-operation-table td:nth-child(14) {
	text-align: center;
	max-width: 150px;
}

/* 异常原因列左对齐 */
.abnormal-operation-table th:nth-child(15),
.abnormal-operation-table td:nth-child(15) {
	text-align: left;
	max-width: 350px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* 展开/折叠功能样式 - 参考库存查询页面 */
.abnormal-operation-expand-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	border-radius: 4px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.abnormal-operation-expand-btn:hover:not(.abnormal-operation-disabled) {
	background-color: #f0f0f0;
}

.abnormal-operation-disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.abnormal-operation-expand-btn.abnormal-operation-expanded {
	background-color: #e6f7ff;
}

.abnormal-operation-expand-btn svg {
	width: 16px;
	height: 16px;
	fill: #666;
	transition: transform 0.3s ease;
}

.abnormal-operation-expand-btn:hover svg {
	fill: #1890ff;
}

.abnormal-operation-expand-btn.abnormal-operation-expanded svg {
	fill: #1890ff;
	transform: rotate(90deg);
}

/* 主行样式 */
.abnormal-operation-table .abnormal-operation-main-row {
	cursor: pointer;
}

/* 展开行样式 */
.abnormal-operation-table .abnormal-operation-detail-row {
	background-color: #fafafa;
	border-left: 3px solid #1890ff;
	display: table-row;
}

.abnormal-operation-table .abnormal-operation-detail-row.abnormal-operation-expanding {
	animation: abnormalOperationExpandAnimation 0.3s ease-out forwards;
	overflow: hidden;
	max-height: 500px;
	display: table-row !important;
}

.abnormal-operation-table .abnormal-operation-detail-row.abnormal-operation-collapsing {
	animation: abnormalOperationCollapseAnimation 0.3s ease-out forwards;
	overflow: hidden;
	max-height: 500px;
}

@keyframes abnormalOperationExpandAnimation {
	0% {
		opacity: 0;
		max-height: 0;
		transform: translateY(-10px);
	}

	100% {
		opacity: 1;
		max-height: 500px;
		transform: translateY(0);
	}
}

@keyframes abnormalOperationCollapseAnimation {
	0% {
		opacity: 1;
		max-height: 500px;
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		max-height: 0;
		transform: translateY(-10px);
	}
}

.abnormal-operation-table .abnormal-operation-detail-cell {
	padding: 0;
	vertical-align: top;
}

.abnormal-operation-goods-container {
	padding: 16px;
	background: white;
	margin: 8px;
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.abnormal-operation-goods-header {
	font-size: 14px;
	font-weight: 500;
	color: #1d2129;
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid #e5e6eb;
}

.abnormal-operation-goods-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
	table-layout: auto;
}

.abnormal-operation-goods-table th {
	background-color: #f0f2f5;
	color: #1d2129;
	font-weight: 500;
	text-align: left;
	padding: 8px 12px;
	border-bottom: 1px solid #e5e6eb;
	white-space: nowrap;
}

/* 出库数量和指定批次居中 */
.abnormal-operation-goods-table th:nth-child(3),
.abnormal-operation-goods-table td:nth-child(3),
.abnormal-operation-goods-table th:nth-child(4),
.abnormal-operation-goods-table td:nth-child(4) {
	text-align: center;
}

/* 货品体积和货品重量居中 */
.abnormal-operation-goods-table th:nth-child(8),
.abnormal-operation-goods-table td:nth-child(8),
.abnormal-operation-goods-table th:nth-child(9),
.abnormal-operation-goods-table td:nth-child(9) {
	text-align: center;
}

/* 货品名称左对齐 */
.abnormal-operation-goods-table th:nth-child(2),
.abnormal-operation-goods-table td:nth-child(2) {
	text-align: left;
}

.abnormal-operation-goods-table td {
	color: #4d5156;
	padding: 8px 12px;
	border-bottom: 1px solid #f0f0f0;
	white-space: nowrap;
}

.abnormal-operation-goods-table tbody tr:hover {
	background-color: #f5f5f5;
}

/* 状态标签样式 - 已删除，不再需要 */

/* 优先级标签样式 */
.abnormal-operation-priority-tag {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 2px;
	font-size: 12px;
	font-weight: 500;
}

.abnormal-operation-priority-high {
	background-color: #fef0f0;
	color: #f56c6c;
	border: 1px solid #fde2e2;
}

.abnormal-operation-priority-medium {
	background-color: #fdf6ec;
	color: #e6a23c;
	border: 1px solid #f5dab1;
}

.abnormal-operation-priority-low {
	background-color: #ecf5ff;
	color: #409eff;
	border: 1px solid #d9ecff;
}

/* 分页样式 */
.abnormal-operation-pagination {
	padding: 16px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f8f9fa;
	border-top: 1px solid #e5e7eb;
}

.abnormal-operation-pagination-info {
	font-size: 14px;
	color: #4b5563;
}

.abnormal-operation-pagination-controls {
	display: flex;
	gap: 8px;
}

.abnormal-operation-pagination-btn {
	padding: 6px 12px;
	border: 1px solid #d1d5db;
	border-radius: 4px;
	background: white;
	color: #374151;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.abnormal-operation-pagination-btn:hover:not(:disabled) {
	background: #f3f4f6;
	border-color: #9ca3af;
}

.abnormal-operation-pagination-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.abnormal-operation-page-size {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: #4b5563;
}

.abnormal-operation-page-size-select {
	padding: 4px 8px;
	border: 1px solid #d1d5db;
	border-radius: 4px;
	background: white;
	font-size: 13px;
}

/* 无数据提示样式 */
.abnormal-operation-no-data {
	text-align: center;
	color: #86909c;
	padding: 20px;
}

/* 响应式调整 */
@media (max-width: 768px) {
	.abnormal-operation-card {
		padding: 16px;
	}

	.abnormal-operation-table {
		font-size: 12px;
	}

	.abnormal-operation-table th,
	.abnormal-operation-table td {
		padding: 8px;
	}
}

/* 修改物流弹窗样式 */
.abnormal-operation-logistics-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.abnormal-operation-logistics-modal {
	background-color: white;
	border-radius: 8px;
	width: 600px;
	max-width: 90%;
	max-height: 80vh;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.abnormal-operation-logistics-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid #e5e6eb;
}

.abnormal-operation-logistics-modal-title {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #1d2129;
}

.abnormal-operation-logistics-modal-close-btn {
	background: none;
	border: none;
	font-size: 24px;
	color: #86909c;
	cursor: pointer;
	padding: 0;
	width: 24px;
	height: 24px;
	line-height: 1;
}

.abnormal-operation-logistics-modal-close-btn:hover {
	color: #1d2129;
}

.abnormal-operation-logistics-modal-body {
	padding: 20px;
	max-height: 400px;
	overflow-y: auto;
}

.abnormal-operation-logistics-message {
	margin: 0 0 12px 0;
	font-size: 14px;
	color: #1d2129;
}

.abnormal-operation-logistics-order-list {
	border: 1px solid #e5e6eb;
	border-radius: 4px;
	overflow: hidden;
	max-height: 150px;
	overflow-y: auto;
	margin-bottom: 16px;
}

.abnormal-operation-logistics-order-item {
	display: flex;
	align-items: center;
	padding: 10px 12px;
	border-bottom: 1px solid #e5e6eb;
	font-size: 13px;
}

.abnormal-operation-logistics-order-item:last-child {
	border-bottom: none;
}

.abnormal-operation-logistics-order-index {
	width: 28px;
	height: 28px;
	background-color: #f2f3f5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: #4e5969;
	margin-right: 10px;
	flex-shrink: 0;
}

.abnormal-operation-logistics-order-number {
	flex: 1;
	color: #1d2129;
	font-weight: 500;
}

.abnormal-operation-logistics-order-info {
	color: #86909c;
	font-size: 12px;
}

.abnormal-operation-logistics-form {
	border-top: 1px solid #e5e6eb;
	padding-top: 16px;
}

.abnormal-operation-logistics-form-row {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}

.abnormal-operation-logistics-form-row:last-child {
	margin-bottom: 0;
}

.abnormal-operation-logistics-form-label {
	width: 120px;
	font-size: 14px;
	color: #1d2129;
	flex-shrink: 0;
}

.abnormal-operation-logistics-required {
	color: #f53f3f;
	margin-right: 4px;
}

.abnormal-operation-logistics-form-select {
	flex: 1;
	height: 36px;
	padding: 0 12px;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	font-size: 13px;
	outline: none;
	box-sizing: border-box;
}

.abnormal-operation-logistics-form-select:focus {
	border-color: #0052d9;
	box-shadow: 0 0 0 2px rgba(0, 82, 217, 0.1);
}

.abnormal-operation-logistics-modal-footer {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	padding: 16px 20px;
	border-top: 1px solid #e5e6eb;
}

.abnormal-operation-logistics-modal-btn {
	padding: 6px 16px;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
	border: 1px solid #d9d9d9;
	background-color: white;
	color: #4e5969;
	transition: all 0.2s;
}

.abnormal-operation-logistics-modal-btn:hover {
	border-color: #4096ff;
	color: #4096ff;
}

.abnormal-operation-logistics-modal-confirm-btn {
	background-color: #165dff;
	border-color: #165dff;
	color: white;
}

.abnormal-operation-logistics-modal-confirm-btn:hover {
	background-color: #0e42d2;
	border-color: #0e42d2;
	color: white;
}

/* 虚拟发货弹窗样式 */
.abnormal-operation-virtual-delivery-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.abnormal-operation-virtual-delivery-modal {
	background-color: white;
	border-radius: 8px;
	width: 600px;
	max-width: 90%;
	max-height: 80vh;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.abnormal-operation-virtual-delivery-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid #e5e6eb;
}

.abnormal-operation-virtual-delivery-modal-title {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #1d2129;
}

.abnormal-operation-virtual-delivery-modal-close-btn {
	background: none;
	border: none;
	font-size: 24px;
	color: #86909c;
	cursor: pointer;
	padding: 0;
	width: 24px;
	height: 24px;
	line-height: 1;
}

.abnormal-operation-virtual-delivery-modal-close-btn:hover {
	color: #1d2129;
}

.abnormal-operation-virtual-delivery-modal-body {
	padding: 20px;
	overflow-y: auto;
}

.abnormal-operation-virtual-delivery-order-info {
	background-color: #f7f8fa;
	border: 1px solid #e5e6eb;
	border-radius: 4px;
	padding: 16px;
	margin-bottom: 20px;
}

.abnormal-operation-virtual-delivery-order-item {
	display: flex;
	margin-bottom: 8px;
	font-size: 14px;
}

.abnormal-operation-virtual-delivery-order-item:last-child {
	margin-bottom: 0;
}

.abnormal-operation-virtual-delivery-order-label {
	color: #86909c;
	min-width: 80px;
	flex-shrink: 0;
}

.abnormal-operation-virtual-delivery-order-value {
	color: #1d2129;
	font-weight: 500;
}

.abnormal-operation-virtual-delivery-form {
	border-top: 1px solid #e5e6eb;
	padding-top: 16px;
}

.abnormal-operation-virtual-delivery-form-row {
	display: flex;
	align-items: flex-start;
	margin-bottom: 16px;
}

.abnormal-operation-virtual-delivery-form-row:last-child {
	margin-bottom: 0;
}

.abnormal-operation-virtual-delivery-form-label {
	width: 100px;
	font-size: 14px;
	color: #1d2129;
	flex-shrink: 0;
	padding-top: 8px;
}

.abnormal-operation-virtual-delivery-required {
	color: #f53f3f;
	margin-right: 4px;
}

.abnormal-operation-virtual-delivery-form-input-wrapper {
	flex: 1;
	display: flex;
	gap: 8px;
}

.abnormal-operation-virtual-delivery-form-input {
	flex: 1;
	height: 36px;
	padding: 0 12px;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	font-size: 13px;
	outline: none;
	box-sizing: border-box;
}

.abnormal-operation-virtual-delivery-form-input:focus {
	border-color: #0052d9;
	box-shadow: 0 0 0 2px rgba(0, 82, 217, 0.1);
}

.abnormal-operation-virtual-delivery-detect-btn {
	height: 36px;
	padding: 0 16px;
	border-radius: 4px;
	font-size: 13px;
	cursor: pointer;
	border: 1px solid #0052d9;
	background-color: #0052d9;
	color: white;
	transition: all 0.2s;
	white-space: nowrap;
}

.abnormal-operation-virtual-delivery-detect-btn:hover {
	background-color: #003cab;
	border-color: #003cab;
}

.abnormal-operation-virtual-delivery-form-select {
	flex: 1;
	height: 36px;
	padding: 0 12px;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	font-size: 13px;
	outline: none;
	box-sizing: border-box;
}

.abnormal-operation-virtual-delivery-form-select:focus {
	border-color: #0052d9;
	box-shadow: 0 0 0 2px rgba(0, 82, 217, 0.1);
}

.abnormal-operation-virtual-delivery-form-textarea {
	flex: 1;
	padding: 8px 12px;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	font-size: 13px;
	outline: none;
	box-sizing: border-box;
	resize: vertical;
	font-family: inherit;
	min-height: 80px;
}

.abnormal-operation-virtual-delivery-form-textarea:focus {
	border-color: #0052d9;
	box-shadow: 0 0 0 2px rgba(0, 82, 217, 0.1);
}

.abnormal-operation-virtual-delivery-checkbox-label {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	user-select: none;
	font-size: 14px;
	color: #1d2129;
}

.abnormal-operation-virtual-delivery-checkbox {
	width: 16px;
	height: 16px;
	cursor: pointer;
	margin: 0;
	accent-color: #0052d9;
}

.abnormal-operation-virtual-delivery-checkbox:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.abnormal-operation-virtual-delivery-form-input:disabled,
.abnormal-operation-virtual-delivery-form-select:disabled {
	background-color: #f5f5f5;
	border-color: #e5e6eb;
	color: #c9cdd6;
	cursor: not-allowed;
}

.abnormal-operation-virtual-delivery-modal-footer {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	padding: 16px 20px;
	border-top: 1px solid #e5e6eb;
}

.abnormal-operation-virtual-delivery-modal-btn {
	padding: 6px 16px;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
	border: 1px solid #d9d9d9;
	background-color: white;
	color: #4e5969;
	transition: all 0.2s;
}

.abnormal-operation-virtual-delivery-modal-btn:hover {
	border-color: #4096ff;
	color: #4096ff;
}

.abnormal-operation-virtual-delivery-modal-confirm-btn {
	background-color: #165dff;
	border-color: #165dff;
	color: white;
}

.abnormal-operation-virtual-delivery-modal-confirm-btn:hover {
	background-color: #0e42d2;
	border-color: #0e42d2;
	color: white;
}

.abnormal-operation-virtual-delivery-checkbox-label {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	user-select: none;
	font-size: 14px;
	color: #1d2129;
}

.abnormal-operation-virtual-delivery-checkbox {
	width: 16px;
	height: 16px;
	cursor: pointer;
	margin: 0;
	accent-color: #0052d9;
}

.abnormal-operation-virtual-delivery-checkbox:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.abnormal-operation-virtual-delivery-form-input:disabled,
.abnormal-operation-virtual-delivery-form-select:disabled {
	background-color: #f5f5f5;
	border-color: #e5e6eb;
	color: #c9cdd6;
	cursor: not-allowed;
}

/* 成功提示弹窗样式 */
.abnormal-operation-success-toast-overlay {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 10001;
	pointer-events: none;
	opacity: 0;
	transform: translateX(400px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.abnormal-operation-success-toast-overlay.abnormal-operation-success-toast-show {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.abnormal-operation-success-toast-overlay.abnormal-operation-success-toast-hide {
	opacity: 0;
	transform: translateX(400px);
}

.abnormal-operation-success-toast {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: white;
	border-radius: 8px;
	padding: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	min-width: 360px;
	max-width: 480px;
	position: relative;
	cursor: pointer;
}

.abnormal-operation-success-toast-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	background: #52c41a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.abnormal-operation-success-toast-icon svg {
	width: 24px;
	height: 24px;
}

.abnormal-operation-success-toast-content {
	flex: 1;
}

.abnormal-operation-success-toast-title {
	margin: 0 0 12px 0;
	font-size: 16px;
	font-weight: 600;
	color: #1d2129;
}

.abnormal-operation-success-toast-items {
	background: #f7f8fa;
	border-radius: 6px;
	padding: 12px;
}

.abnormal-operation-success-toast-item {
	display: flex;
	margin-bottom: 8px;
	font-size: 13px;
	align-items: baseline;
}

.abnormal-operation-success-toast-item:last-child {
	margin-bottom: 0;
}

.abnormal-operation-success-toast-label {
	color: #86909c;
	min-width: 70px;
	flex-shrink: 0;
}

.abnormal-operation-success-toast-value {
	color: #1d2129;
	font-weight: 500;
	word-break: break-all;
}

.abnormal-operation-success-toast-item-highlight {
	background: #fff7e6;
	padding: 4px 8px;
	border-radius: 4px;
	margin-bottom: 8px;
}

.abnormal-operation-success-toast-item-highlight:last-child {
	margin-bottom: 0;
}

.abnormal-operation-success-toast-item-highlight .abnormal-operation-success-toast-label {
	color: #ff7d00;
	font-weight: 500;
}

.abnormal-operation-success-toast-item-highlight .abnormal-operation-success-toast-value {
	color: #d46b08;
	font-weight: 600;
}

.abnormal-operation-success-toast-close-btn {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 24px;
	height: 24px;
	background: transparent;
	border: none;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #86909c;
	cursor: pointer;
	transition: all 0.2s;
}

.abnormal-operation-success-toast-close-btn:hover {
	background: #f2f3f5;
	color: #1d2129;
}

/* ==================== 虚拟发货记录弹窗样式 ==================== */
.abnormal-operation-virtual-delivery-records-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.abnormal-operation-virtual-delivery-records-overlay.abnormal-operation-virtual-delivery-records-show {
	opacity: 1;
	transform: scale(1);
}

.abnormal-operation-virtual-delivery-records-overlay.abnormal-operation-virtual-delivery-records-hide {
	opacity: 0;
	transform: scale(0.9);
}

.abnormal-operation-virtual-delivery-records-modal {
	width: 90%;
	max-width: 1400px;
	max-height: 90vh;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.abnormal-operation-virtual-delivery-records-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid #e5e6eb;
	background: #fff;
}

.abnormal-operation-virtual-delivery-records-title {
	font-size: 18px;
	font-weight: 600;
	color: #1d2129;
	margin: 0;
}

.abnormal-operation-virtual-delivery-records-close {
	width: 32px;
	height: 32px;
	background: transparent;
	border: none;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #86909c;
	cursor: pointer;
	transition: all 0.2s;
}

.abnormal-operation-virtual-delivery-records-close:hover {
	background: #f2f3f5;
	color: #1d2129;
}

.abnormal-operation-virtual-delivery-records-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

/* 搜索区域 */
.abnormal-operation-virtual-delivery-records-search {
	padding: 20px 24px;
	border-bottom: 1px solid #e5e6eb;
	background: #f7f8fa;
}

.abnormal-operation-virtual-delivery-records-search-field {
	width: 100%;
	max-width: 500px;
}

.abnormal-operation-virtual-delivery-records-search-input {
	width: 100%;
	height: 32px;
	padding: 6px 12px;
	border: 1px solid #e5e6eb;
	border-radius: 4px;
	font-size: 14px;
	color: #1d2129;
	transition: all 0.2s;
	outline: none;
}

.abnormal-operation-virtual-delivery-records-search-input:focus {
	border-color: #165dff;
	box-shadow: 0 0 0 2px rgba(22, 93, 255, 0.1);
}

.abnormal-operation-virtual-delivery-records-search-input::placeholder {
	color: #c9cdd4;
}


/* 表格 */
.abnormal-operation-virtual-delivery-records-table-wrapper {
	flex: 1;
	min-height: 400px;
	max-height: 500px;
	overflow: hidden;
	padding: 0 24px 24px;
}

.abnormal-operation-virtual-delivery-records-table-container {
	height: 100%;
	overflow: auto;
}

.abnormal-operation-virtual-delivery-records-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
}

.abnormal-operation-virtual-delivery-records-table thead {
	position: sticky;
	top: 0;
	background: #f7f8fa;
	z-index: 10;
}

.abnormal-operation-virtual-delivery-records-table th {
	height: 48px;
	padding: 12px;
	text-align: left;
	font-size: 14px;
	font-weight: 600;
	color: #1d2129;
	border-bottom: 1px solid #e5e6eb;
	white-space: nowrap;
	position: relative;
}

.abnormal-operation-virtual-delivery-records-table th::after {
	content: '';
	position: absolute;
	right: 0;
	top: 8px;
	bottom: 8px;
	width: 1px;
	background: #e5e6eb;
}

.abnormal-operation-virtual-delivery-records-table th:last-child::after {
	display: none;
}

.abnormal-operation-virtual-delivery-records-table td {
	padding: 12px;
	font-size: 14px;
	color: #4e5969;
	border-bottom: 1px solid #e5e6eb;
}

.abnormal-operation-virtual-delivery-records-table tbody tr:hover {
	background: #f2f3f5;
}

.abnormal-operation-virtual-delivery-records-table tbody tr:last-child td {
	border-bottom: none;
}

/* 分页 */
.abnormal-operation-virtual-delivery-records-pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	border-top: 1px solid #e5e6eb;
	background: #fff;
}

.abnormal-operation-virtual-delivery-records-pagination-info {
	font-size: 14px;
	color: #4e5969;
}

.abnormal-operation-virtual-delivery-records-pagination-info span {
	color: #1d2129;
	font-weight: 600;
}

.abnormal-operation-virtual-delivery-records-pagination-controls {
	display: flex;
	align-items: center;
	gap: 8px;
}

.abnormal-operation-virtual-delivery-records-pagination-btn {
	height: 32px;
	padding: 6px 16px;
	border: 1px solid #e5e6eb;
	background: #fff;
	border-radius: 4px;
	font-size: 14px;
	color: #4e5969;
	cursor: pointer;
	transition: all 0.2s;
}

.abnormal-operation-virtual-delivery-records-pagination-btn:hover:not(:disabled) {
	background: #f2f3f5;
	color: #1d2129;
	border-color: #c9cdd4;
}

.abnormal-operation-virtual-delivery-records-pagination-btn:disabled {
	background: #f7f8fa;
	color: #c9cdd4;
	cursor: not-allowed;
}


.abnormal-operation-success-toast-close-btn svg {
	width: 16px;
	height: 16px;
}