/* 物流优选配置页面样式 - lpc前缀 */

/* 页面容器 */
.lpc-page {
    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;
    overflow: hidden;
}

/* 固定区域：头部 + 操作卡片 */
.lpc-page-header,
.lpc-action-cards {
    flex-shrink: 0;
}

/* 可滚动内容区域 */
.lpc-scrollable-content {
    flex: 1;
    overflow-y: auto;
    margin-top: 32px;
    padding-right: 4px;
}

/* 自定义滚动条样式 */
.lpc-scrollable-content::-webkit-scrollbar {
    width: 6px;
}

.lpc-scrollable-content::-webkit-scrollbar-track {
    background: #f2f3f5;
    border-radius: 3px;
}

.lpc-scrollable-content::-webkit-scrollbar-thumb {
    background: #c9cdd4;
    border-radius: 3px;
    transition: background 0.2s ease;
}

.lpc-scrollable-content::-webkit-scrollbar-thumb:hover {
    background: #86909c;
}

/* Firefox 滚动条样式 */
.lpc-scrollable-content {
    scrollbar-width: thin;
    scrollbar-color: #c9cdd4 #f2f3f5;
}

/* 页面头部 */
.lpc-page-header {
    margin-bottom: 24px;
}

.lpc-page-title {
    font-size: 20px;
    font-weight: 600;
    color: #1d2129;
    margin: 0 0 8px 0;
}

.lpc-page-desc {
    font-size: 13px;
    color: #86909c;
    margin: 0;
}

/* 操作卡片区域 - 平均布局 */
.lpc-action-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.lpc-action-card {
    background: #ffffff;
    border: 1px solid #e5e6eb;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lpc-action-card:hover {
    border-color: #0052d9;
    box-shadow: 0 4px 12px rgba(0, 82, 217, 0.1);
}

.lpc-action-card.active {
    border-color: #0052d9;
    background: #f5f7ff;
}

.lpc-action-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lpc-action-icon svg {
    width: 24px;
    height: 24px;
}

/* 仓库策略 - 蓝色 */
.lpc-action-card:nth-child(1) .lpc-action-icon {
    background: #e6f4ff;
}
.lpc-action-card:nth-child(1) .lpc-action-icon svg {
    color: #0052d9;
}

/* 货主策略 - 绿色 */
.lpc-action-card:nth-child(2) .lpc-action-icon {
    background: #e6fff5;
}
.lpc-action-card:nth-child(2) .lpc-action-icon svg {
    color: #00b578;
}

/* 计泡系数 - 橙色 */
.lpc-action-card:nth-child(3) .lpc-action-icon {
    background: #fff7e6;
}
.lpc-action-card:nth-child(3) .lpc-action-icon svg {
    color: #ff7d00;
}

/* 变动提醒 - 紫色 */
.lpc-action-card:nth-child(4) .lpc-action-icon {
    background: #f0f5ff;
}
.lpc-action-card:nth-child(4) .lpc-action-icon svg {
    color: #7b61ff;
}

/* 规则设置 - 青色 */
.lpc-action-card:nth-child(5) .lpc-action-icon {
    background: #e6fffb;
}
.lpc-action-card:nth-child(5) .lpc-action-icon svg {
    color: #08979c;
}

.lpc-action-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.lpc-action-title {
    font-size: 14px;
    font-weight: 600;
    color: #1d2129;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lpc-action-desc {
    font-size: 12px;
    color: #86909c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 分类区域 */
.lpc-category-section {
    margin-bottom: 32px;
}

.lpc-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e6eb;
}

.lpc-category-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lpc-category-icon svg {
    width: 20px;
    height: 20px;
}

/* 快递公司 - 蓝色 */
.lpc-icon-express {
    background: #e6f4ff;
}
.lpc-icon-express svg {
    color: #0052d9;
}

/* 物流公司 - 橙色 */
.lpc-icon-logistics {
    background: #fff7e6;
}
.lpc-icon-logistics svg {
    color: #ff7d00;
}

/* 同城配送 - 绿色 */
.lpc-icon-samecity {
    background: #e6fff5;
}
.lpc-icon-samecity svg {
    color: #00b578;
}

.lpc-category-title {
    font-size: 16px;
    font-weight: 600;
    color: #1d2129;
    margin: 0;
}

.lpc-category-count {
    font-size: 12px;
    color: #86909c;
    background: #f2f3f5;
    padding: 2px 8px;
    border-radius: 10px;
}

/* 公司卡片网格 */
.lpc-company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* 公司卡片 - 玻璃拟态设计 */
.lpc-company-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
    user-select: none;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.lpc-company-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-color: rgba(0, 82, 217, 0.2);
    box-shadow:
        0 8px 40px rgba(0, 82, 217, 0.12),
        0 4px 20px rgba(0, 82, 217, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

.lpc-company-card:active {
    cursor: grabbing;
}

.lpc-company-card.dragging {
    opacity: 0.7;
    border: 2px dashed #0052d9;
    background: #f5f7ff;
    box-shadow: 0 12px 32px rgba(0, 82, 217, 0.2);
    transform: rotate(2deg) scale(1.02);
}

.lpc-company-card.drag-over {
    border: 2px dashed #0052d9;
    background: #f5f7ff;
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 82, 217, 0.15);
}

/* 卡片头部 */
.lpc-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.lpc-card-main {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    min-width: 0;
}


/* 公司图标 - 玻璃拟态 */
.lpc-company-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lpc-company-card:hover .lpc-company-logo {
    transform: scale(1.1) rotate(-3deg);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.06);
}

.lpc-company-logo svg {
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

/* 快递公司图标 - 蓝色玻璃 */
.lpc-logo-express {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 82, 217, 0.25) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
}
.lpc-logo-express svg {
    color: #0052d9;
}

/* 物流公司图标 - 橙色玻璃 */
.lpc-logo-logistics {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.15) 0%, rgba(255, 125, 0, 0.25) 100%);
    border: 1px solid rgba(255, 149, 0, 0.2);
}
.lpc-logo-logistics svg {
    color: #ff7d00;
}

/* 同城配送图标 - 绿色玻璃 */
.lpc-logo-samecity {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15) 0%, rgba(0, 181, 120, 0.25) 100%);
    border: 1px solid rgba(0, 200, 83, 0.2);
}
.lpc-logo-samecity svg {
    color: #00b578;
}

/* 公司信息 */
.lpc-company-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
    flex: 1;
}

.lpc-company-name {
    font-size: 14px;
    font-weight: 600;
    color: #1d2129;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

/* 公司名称行 - 包含徽章 */
.lpc-company-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

/* 状态徽章 */
.lpc-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.lpc-status-badge svg {
    width: 10px;
    height: 10px;
}

/* 已启用徽章 - 绿色 */
.lpc-status-enabled {
    color: #00b578;
    background: linear-gradient(135deg, #e6fff5 0%, #f0fff9 100%);
    border: 1px solid rgba(0, 181, 120, 0.2);
}

/* 已停用徽章 - 灰色 */
.lpc-status-disabled {
    color: #86909c;
    background: linear-gradient(135deg, #f7f8fa 0%, #f2f3f5 100%);
    border: 1px solid rgba(134, 144, 156, 0.2);
}

/* 待生效徽章 - 橙色 */
.lpc-status-pending {
    color: #ff7d00;
    background: linear-gradient(135deg, #fff7e6 0%, #fff9f0 100%);
    border: 1px solid rgba(255, 125, 0, 0.2);
}

/* 禁用卡片的徽章 */
.lpc-card-disabled .lpc-status-badge {
    opacity: 0.7;
}

/* 状态行 - 横向排列 */
.lpc-company-status-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

/* 状态标签通用样式 */
.lpc-status-tag {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
    white-space: nowrap;
}

/* 计费方式标签 - 默认（已配置） */
.lpc-status-billing {
    color: #0066ff;
    background: linear-gradient(135deg, rgba(230, 244, 255, 0.8) 0%, rgba(240, 247, 255, 0.9) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

/* 计费方式标签 - 未配置 */
.lpc-status-billing[data-billing="未配置"] {
    color: #86909c;
    background: linear-gradient(135deg, rgba(247, 248, 250, 0.8) 0%, rgba(242, 243, 245, 0.9) 100%);
    border: 1px solid rgba(134, 144, 156, 0.2);
}

/* 禁用状态的卡片 - 玻璃拟态 */
.lpc-company-card.lpc-card-disabled {
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.7) 0%, rgba(242, 243, 245, 0.6) 100%);
    border-color: rgba(229, 230, 235, 0.4);
    opacity: 0.85;
    cursor: default;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.lpc-company-card.lpc-card-disabled:hover {
    transform: translateY(-1px);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.04),
        0 2px 8px rgba(0, 0, 0, 0.02);
    border-color: rgba(217, 217, 217, 0.5);
}

.lpc-company-card.lpc-card-disabled .lpc-company-logo {
    opacity: 0.5;
    filter: grayscale(0.3);
}

.lpc-company-card.lpc-card-disabled .lpc-company-name {
    color: #a1a7b3;
}

.lpc-company-card.lpc-card-disabled .lpc-status-tag {
    opacity: 0.6;
}

/* 卡片统计区域 - 玻璃拟态 */
.lpc-card-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
    margin: 4px 0;
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.8) 0%, rgba(238, 241, 245, 0.6) 100%);
    border-radius: 8px;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.lpc-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex: 1;
    padding: 0 10px;
}

.lpc-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #1d2129;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.lpc-stat-label {
    font-size: 10px;
    color: #86909c;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.lpc-stat-divider {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, transparent, #e5e6eb 30%, #e5e6eb 70%, transparent);
}

/* 禁用卡片的统计区域 */
.lpc-company-card.lpc-card-disabled .lpc-card-stats {
    background: linear-gradient(135deg, #f5f6f7 0%, #eef0f2 100%);
}

.lpc-company-card.lpc-card-disabled .lpc-stat-value {
    color: #a1a7b3;
}

/* 卡片操作区 */
.lpc-card-actions {
    display: flex;
    gap: 10px;
}

.lpc-config-btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
}

.lpc-config-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    pointer-events: none;
}

.lpc-config-btn:active {
    transform: scale(0.96);
}

/* 运费模板按钮 - 蓝色玻璃 */
.lpc-btn-freight {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.9) 0%, rgba(0, 82, 217, 0.95) 100%);
    box-shadow:
        0 2px 8px rgba(0, 82, 217, 0.25),
        0 4px 12px rgba(0, 82, 217, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.lpc-btn-freight:hover {
    background: linear-gradient(135deg, rgba(0, 82, 217, 0.95) 0%, rgba(0, 71, 181, 1) 100%);
    box-shadow:
        0 4px 12px rgba(0, 82, 217, 0.35),
        0 8px 20px rgba(0, 82, 217, 0.25);
    transform: translateY(-2px);
}

.lpc-btn-freight:disabled {
    color: #c9cdd4;
    background: rgba(242, 243, 245, 0.8);
    box-shadow: none;
    border-color: rgba(229, 230, 235, 0.5);
    cursor: not-allowed;
    transform: none;
}

/* 计泡配置按钮 - 青色玻璃 */
.lpc-btn-bubble {
    color: #08979c;
    background: linear-gradient(135deg, rgba(230, 255, 251, 0.8) 0%, rgba(212, 245, 240, 0.9) 100%);
    border: 1px solid rgba(8, 151, 156, 0.25);
    box-shadow:
        0 2px 8px rgba(8, 151, 156, 0.1),
        0 1px 2px rgba(8, 151, 156, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.lpc-btn-bubble:hover {
    background: linear-gradient(135deg, rgba(212, 245, 240, 0.9) 0%, rgba(200, 247, 240, 1) 100%);
    border-color: rgba(8, 151, 156, 0.35);
    box-shadow:
        0 4px 12px rgba(8, 151, 156, 0.15),
        0 2px 4px rgba(8, 151, 156, 0.1);
    transform: translateY(-2px);
}

.lpc-btn-bubble:disabled {
    color: #c9cdd4;
    background: rgba(242, 243, 245, 0.8);
    border-color: rgba(229, 230, 235, 0.5);
    cursor: not-allowed;
    transform: none;
}

/* 分割线 */
.lpc-divider {
    height: 1px;
    background: #e5e6eb;
    margin: 24px 0;
}

/* 空状态提示 */
.lpc-empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    background: #fafbfc;
    border-radius: 8px;
    border: 1px dashed #d9d9d9;
}

.lpc-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.lpc-empty-text {
    font-size: 14px;
    color: #86909c;
    text-align: center;
    line-height: 1.6;
}


/* 通用弹窗样式 - lpc前缀 */
.lpc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lpc-modal-container {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    animation: lpc-modal-slide-in 0.2s ease;
}

@keyframes lpc-modal-slide-in {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.lpc-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e6eb;
    flex-shrink: 0;
}

.lpc-modal-title {
    font-size: 16px;
    font-weight: 600;
    color: #1d2129;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lpc-modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #86909c;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lpc-modal-close:hover {
    background: #f2f3f5;
    color: #1d2129;
}

.lpc-modal-close svg {
    width: 18px;
    height: 18px;
}

.lpc-modal-header-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lpc-modal-company-name {
    font-size: 13px;
    color: #86909c;
    font-weight: 400;
    line-height: 1.4;
}

.lpc-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.lpc-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid #e5e6eb;
    flex-shrink: 0;
}

.lpc-btn {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #d9d9d9;
    background: #ffffff;
    color: #4e5969;
}

.lpc-btn:hover {
    color: #0052d9;
    border-color: #0052d9;
}

.lpc-btn-default {
    color: #4e5969;
    background: #ffffff;
    border-color: #e5e6eb;
}

.lpc-btn-default:hover {
    color: #0052d9;
    border-color: #0052d9;
}

.lpc-btn-primary {
    color: #ffffff;
    background: #0052d9;
    border-color: #0052d9;
}

.lpc-btn-primary:hover {
    color: #ffffff;
    background: #0043b5;
    border-color: #0043b5;
}

.lpc-btn-primary:disabled {
    background: #b8dcff;
    border-color: #b8dcff;
    cursor: not-allowed;
}


/* 表单样式 */
.lpc-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lpc-form-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lpc-form-label {
    font-size: 13px;
    color: #4e5969;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.lpc-required {
    color: #f56c6c;
}

/* 表单分组样式 */
.lpc-form-section {
    border: 1px solid #e5e6eb;
    border-radius: 6px;
    padding: 16px;
    background: #fafbfc;
    margin-top: 8px;
    margin-bottom: 24px;
}

.lpc-form-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #1d2129;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e6eb;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lpc-form-section .lpc-form-item {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lpc-form-section .lpc-form-item:last-child {
    margin-bottom: 0;
}

/* 计费方式选择弹窗样式 */
.lpc-billing-select-modal {
    width: 480px;
}

.lpc-billing-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lpc-billing-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid #e5e6eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #ffffff;
}

.lpc-billing-option:hover {
    border-color: #0052d9;
    background: #f5f7ff;
}

.lpc-billing-option.selected {
    border-color: #0052d9;
    background: #f5f7ff;
}

.lpc-billing-option-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e6f4ff;
    flex-shrink: 0;
}

.lpc-billing-option-icon svg {
    width: 24px;
    height: 24px;
    color: #0052d9;
}

.lpc-billing-option[data-method="tiered"] .lpc-billing-option-icon {
    background: #fff7e6;
}

.lpc-billing-option[data-method="tiered"] .lpc-billing-option-icon svg {
    color: #ff7d00;
}

.lpc-billing-option-content {
    flex: 1;
    min-width: 0;
}

.lpc-billing-option-title {
    font-size: 14px;
    font-weight: 600;
    color: #1d2129;
    margin-bottom: 4px;
}

.lpc-billing-option-desc {
    font-size: 12px;
    color: #86909c;
}

.lpc-billing-option-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #c9cdd4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.lpc-billing-option-check svg {
    width: 12px;
    height: 12px;
    color: #ffffff;
    opacity: 0;
}

.lpc-billing-option.selected .lpc-billing-option-check {
    background: #0052d9;
    border-color: #0052d9;
}

.lpc-billing-option.selected .lpc-billing-option-check svg {
    opacity: 1;
}

/* 弹窗标题副标题样式 */
.lpc-modal-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lpc-modal-subtitle {
    font-size: 13px;
    color: #86909c;
    font-weight: normal;
}

/* 全屏弹窗样式 */
.lpc-fullscreen-modal {
    padding: 0;
    align-items: flex-start;
}

.lpc-fullscreen-modal .lpc-modal-container {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

/* 蓝色标题工具栏 */
.lpc-modal-header-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 24px;
    background: linear-gradient(135deg, #0052d9 0%, #1677ff 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 82, 217, 0.3);
}

.lpc-header-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.lpc-header-title-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
}

.lpc-header-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.lpc-header-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}



.lpc-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
}

.lpc-header-right .lpc-header-billing {
    margin-right: 8px;
}

.lpc-header-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lpc-header-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.lpc-header-btn svg {
    width: 16px;
    height: 16px;
}

.lpc-header-btn.hidden {
    display: none;
}

.lpc-header-btn-primary {
    background: #ffffff;
    color: #0052d9;
    border-color: #ffffff;
    font-weight: 600;
}

.lpc-header-btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lpc-header-btn-primary:disabled {
    background: rgba(255, 255, 255, 0.5);
    color: rgba(0, 82, 217, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    box-shadow: none;
}

.lpc-header-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 8px;
}

.lpc-header-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 8px;
}

.lpc-header-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lpc-header-close svg {
    width: 20px;
    height: 20px;
}

.lpc-toolbar-divider {
    width: 1px;
    height: 24px;
    background: #e5e6eb;
    margin: 0 8px;
}


/* 内容区域 - 紧凑商务风 */
.lpc-modal-content-area {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: #f7f8fa;
    position: relative;
    display: flex;
    flex-direction: column;
}

.lpc-modal-content-area > * {
    flex-shrink: 0;
}

.lpc-modal-content-area .lpc-matrix-table-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lpc-modal-content-area .lpc-matrix-table-scroll {
    flex: 1;
    max-height: none;
}

/* 上传区域 - 紧凑 */
.lpc-upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 48px 32px;
    border: 1px dashed #d9d9d9;
    border-radius: 6px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lpc-upload-area:hover,
.lpc-upload-area.dragover {
    border-color: #0052d9;
    background: #f0f5ff;
}

.lpc-upload-icon {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: #f0f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.lpc-upload-icon svg {
    width: 24px;
    height: 24px;
    color: #0052d9;
}

.lpc-upload-text {
    text-align: center;
    margin-bottom: 16px;
}

.lpc-upload-main {
    font-size: 14px;
    font-weight: 500;
    color: #1d2129;
    margin-bottom: 4px;
}

.lpc-upload-sub {
    font-size: 13px;
    color: #86909c;
    margin-bottom: 4px;
}

.lpc-upload-link {
    color: #0052d9;
    cursor: pointer;
    font-weight: 500;
}

.lpc-upload-hint {
    font-size: 12px;
    color: #c9cdd4;
    margin-top: 8px;
}

.lpc-file-input {
    display: none;
}

/* 数据表格 - 紧凑商务 */
.lpc-data-table-wrapper {
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e5e6eb;
    overflow: hidden;
}

.lpc-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.lpc-data-table th,
.lpc-data-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.lpc-data-table th {
    background: #fafafa;
    font-weight: 600;
    color: #595959;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.lpc-data-table td {
    color: #262626;
}

.lpc-data-table tr:hover {
    background: #f5f5f5;
}

.lpc-data-table tr:last-child td {
    border-bottom: none;
}

.lpc-table-btn {
    padding: 4px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.15s ease;
}

.lpc-table-btn:hover {
    background: #f0f0f0;
}

.lpc-table-btn svg {
    width: 16px;
    height: 16px;
    color: #8c8c8c;
}

.lpc-btn-delete:hover svg {
    color: #f5222d;
}

/* 矩阵表格 - 地区×重量 */
.lpc-matrix-table-wrapper {
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e5e6eb;
    overflow: visible;
}

.lpc-matrix-table-scroll {
    overflow: auto;
    max-width: 100%;
    max-height: calc(100vh - 130px);
}

.lpc-matrix-table {
    border-collapse: collapse;
    font-size: 12px;
    min-width: 100%;
}

.lpc-matrix-table th,
.lpc-matrix-table td {
    padding: 8px 12px;
    text-align: center;
    border: 1px solid #f0f0f0;
    white-space: nowrap;
}

.lpc-matrix-table th {
    background: #fafafa;
    font-weight: 600;
    color: #595959;
    position: sticky;
    top: 0;
    z-index: 2;
}

/* 表头第一列（省份列）需要更高的z-index */
.lpc-matrix-table thead th:first-child {
    z-index: 3;
}

.lpc-matrix-table td {
    color: #262626;
    cursor: text;
}

.lpc-matrix-table td:hover {
    background: #e6f4ff;
}

.lpc-matrix-table td:focus {
    outline: 2px solid #0052d9;
    outline-offset: -2px;
    background: #f0f5ff;
}

.lpc-province-header {
    min-width: 120px;
    text-align: center !important;
    background: #f5f5f5 !important;
    position: sticky;
    left: 0;
    z-index: 2;
}

.lpc-province-cell {
    min-width: 120px;
    text-align: left;
    font-weight: 500;
    background: #fafafa;
    position: sticky;
    left: 0;
    z-index: 1;
}

.lpc-matrix-table tr:hover .lpc-province-cell {
    background: #f0f0f0;
}

/* 首重+续重表格样式 */
.lpc-firstweight-table .lpc-province-header,
.lpc-firstweight-table .lpc-province-cell {
    min-width: 150px;
    width: 150px;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lpc-firstweight-table th,
.lpc-firstweight-table td {
    padding: 8px 6px;
}

/* 响应式适配 */
@media (max-width: 1200px) {
    .lpc-action-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .lpc-action-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .lpc-action-cards {
        grid-template-columns: 1fr;
    }
    
    .lpc-company-grid {
        grid-template-columns: 1fr;
    }
}

/* Toast 提示 */
.lpc-toast {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    pointer-events: none;
}

.lpc-toast-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.lpc-toast-hide {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
}

.lpc-toast-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lpc-toast-icon svg {
    width: 100%;
    height: 100%;
}

.lpc-toast-success {
    background: #f6ffed;
    border: 1px solid #b7eb8f;
    color: #52c41a;
}

.lpc-toast-warning {
    background: #fffbe6;
    border: 1px solid #ffe58f;
    color: #faad14;
}

.lpc-toast-error {
    background: #fff2f0;
    border: 1px solid #ffccc7;
    color: #ff4d4f;
}

.lpc-toast-info {
    background: #e6f7ff;
    border: 1px solid #91d5ff;
    color: #1890ff;
}

/* 自定义确认弹窗 */
.lpc-confirm-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: 10001; /* 必须高于 wlc-modal-overlay (10000) */
    opacity: 0;
    transition: opacity 0.2s ease;
}

.lpc-confirm-overlay.show {
    opacity: 1;
}

.lpc-confirm-modal {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 420px;
    max-width: 90vw;
    transform: scale(0.95);
    transition: transform 0.2s ease;
}

.lpc-confirm-overlay.show .lpc-confirm-modal {
    transform: scale(1);
}

.lpc-confirm-content {
    padding: 24px 24px 16px;
}

.lpc-confirm-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.lpc-confirm-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fffbe6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lpc-confirm-icon svg {
    width: 22px;
    height: 22px;
    color: #faad14;
}

.lpc-confirm-title {
    font-size: 16px;
    font-weight: 600;
    color: #1d2129;
    margin: 0;
}

.lpc-confirm-message {
    font-size: 14px;
    color: #4e5969;
    line-height: 1.6;
    margin: 0;
}

.lpc-confirm-footer {
    padding: 12px 24px 24px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.lpc-confirm-btn {
    padding: 9px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    min-width: 80px;
    text-align: center;
}

.lpc-confirm-btn-secondary {
    background: #ffffff;
    color: #4e5969;
    border: 1px solid #d9d9d9;
}

.lpc-confirm-btn-secondary:hover {
    background: #f5f5f5;
    border-color: #bfbfbf;
    color: #262626;
}

.lpc-confirm-btn-primary {
    background: #0052d9;
    color: #ffffff;
    border: 1px solid #0052d9;
}

.lpc-confirm-btn-primary:hover {
    background: #0046bb;
    border-color: #0046bb;
}

/* 提示输入框 */
.lpc-prompt-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 12px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease;
}

.lpc-prompt-input:focus {
    border-color: #0052d9;
}

/* 表格行列操作按钮样式 */
.lpc-header-cell-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.lpc-header-text {
    flex: 1;
}

/* 计泡配置相关样式 */
.lpc-bubble-modal {
    width: 520px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.lpc-bubble-modal .lpc-modal-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #e5e8eb;
    flex-shrink: 0;
}

.lpc-bubble-modal .lpc-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #1d2129;
    margin: 0;
    line-height: 1.4;
}

.lpc-bubble-modal .lpc-modal-company-name {
    font-size: 13px;
    color: #86909c;
    font-weight: 400;
    line-height: 1.4;
}

.lpc-bubble-modal .lpc-modal-body {
    padding: 20px 24px;
    overflow-y: auto;
    flex: 1;
}

/* 默认计泡系数区域 - 简洁横向布局 */
.lpc-bubble-default-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #f5f7fa;
    border: 1px solid #e5e8eb;
    border-radius: 8px;
    margin-bottom: 20px;
}

.lpc-bubble-default-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lpc-bubble-label-text {
    font-size: 14px;
    font-weight: 500;
    color: #1d2129;
}

.lpc-bubble-label-hint {
    font-size: 12px;
    color: #86909c;
}

.lpc-bubble-default-value {
    font-size: 20px;
    font-weight: 600;
    color: #0052d9;
    padding: 6px 16px;
    background: #ffffff;
    border: 1px solid #b8dcff;
    border-radius: 6px;
}

.lpc-bubble-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #1d2129;
}

.lpc-bubble-card-desc {
    font-size: 12px;
    color: #86909c;
}

.lpc-bubble-regions-card {
    background: #ffffff;
    border: 1px solid #e5e8eb;
    border-radius: 12px;
    overflow: hidden;
}

.lpc-bubble-regions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #fafbfc;
    border-bottom: 1px solid #e5e8eb;
}

.lpc-regions-title-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lpc-bubble-regions-card {
    background: #ffffff;
    border: 1px solid #e5e8eb;
    border-radius: 8px;
    overflow: hidden;
}

.lpc-bubble-regions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #fafbfc;
    border-bottom: 1px solid #e5e8eb;
}

.lpc-regions-title-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lpc-bubble-region-list {
    height: 380px;
    min-height: 380px;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.lpc-bubble-region-list .lpc-empty-state {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
}

.lpc-bubble-region-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lpc-bubble-region-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e5e8eb;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.lpc-bubble-region-item:hover {
    border-color: #b8dcff;
    background: #f8fbff;
}

.lpc-bubble-region-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lpc-bubble-region-name {
    font-size: 14px;
    font-weight: 500;
    color: #1d2129;
}

.lpc-bubble-region-coefficient {
    font-size: 12px;
    color: #86909c;
}

.lpc-delete-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 4px;
    background: transparent;
    color: #c9cdd4;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lpc-delete-btn:hover {
    background: #fff2f0;
    color: #ff4d4f;
}

.lpc-delete-btn svg {
    width: 16px;
    height: 16px;
}

.lpc-add-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #0052d9;
    background: #ffffff;
    border: 1px solid #0052d9;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lpc-add-btn:hover {
    background: #0052d9;
    color: #ffffff;
}

.lpc-add-btn svg {
    width: 14px;
    height: 14px;
}

/* ==================== 仓库策略配置样式 (lpc前缀) ==================== */

/* 仓库策略配置 - 三栏布局容器 */
.lpc-strategy-modal-container {
    background: #ffffff;
    border-radius: 8px;
    width: 100%;
    max-width: 1400px;
    height: 700px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    animation: lpc-strategy-modal-slide-in 0.3s ease;
}

@keyframes lpc-strategy-modal-slide-in {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 模态框头部 */
.lpc-strategy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e6eb;
    flex-shrink: 0;
}

.lpc-strategy-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #1d2129;
}

.lpc-strategy-title svg {
    width: 22px;
    height: 22px;
    color: #0052d9;
}

.lpc-strategy-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #86909c;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lpc-strategy-close:hover {
    background: #f2f3f5;
    color: #1d2129;
}

.lpc-strategy-close svg {
    width: 18px;
    height: 18px;
}



/* ==================== 货主策略配置样式 ==================== */

/* 货主策略弹窗 - 固定高度 */
.lpc-shipper-modal-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lpc-shipper-modal-container {
    width: 1200px;
    max-width: 95vw;
    height: 640px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.lpc-shipper-modal-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: calc(640px - 60px);
    box-sizing: border-box;
}

/* 工具栏 */
.lpc-shipper-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-shrink: 0;
    gap: 16px;
}

/* 搜索框 */
.lpc-shipper-search {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 320px;
}

.lpc-search-icon {
    position: absolute;
    left: 12px;
    width: 16px;
    height: 16px;
    color: #86909c;
    pointer-events: none;
}

.lpc-shipper-search-input {
    width: 100%;
    height: 36px;
    padding: 0 36px 0 36px;
    font-size: 13px;
    color: #1d2129;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.lpc-shipper-search-input:hover {
    border-color: #0052d9;
}

.lpc-shipper-search-input:focus {
    outline: none;
    border-color: #0052d9;
    box-shadow: 0 0 0 2px rgba(0, 82, 217, 0.1);
}

.lpc-shipper-search-input::placeholder {
    color: #c9cdd4;
}

.lpc-shipper-search-clear {
    position: absolute;
    right: 8px;
    width: 20px;
    height: 20px;
    padding: 0;
    display: none;
    align-items: center;
    justify-content: center;
    color: #86909c;
    background: #f2f3f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lpc-shipper-search-clear svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.lpc-shipper-search-clear:hover {
    color: #4e5969;
    background: #e5e6eb;
}

.lpc-shipper-add-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    background: #0052d9;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lpc-shipper-add-btn:hover {
    background: #0043b5;
}

.lpc-shipper-add-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* 表格区域 - 固定高度 */
.lpc-shipper-table-wrapper {
    height: 420px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #e5e6eb;
    border-radius: 6px;
    background: #ffffff;
    flex-shrink: 0;
}

.lpc-shipper-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    table-layout: fixed;
}

.lpc-shipper-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

.lpc-shipper-table th {
    padding: 12px 16px;
    font-weight: 600;
    color: #1d2129;
    background: #f7f8fa;
    border-bottom: 1px solid #e5e6eb;
    text-align: left;
    white-space: nowrap;
}

.lpc-shipper-table td {
    padding: 12px 16px;
    color: #4e5969;
    border-bottom: 1px solid #f2f3f5;
    white-space: nowrap;
}

.lpc-shipper-table tbody tr:hover {
    background: #f7f8fa;
}

.lpc-shipper-table tbody tr:last-child td {
    border-bottom: none;
}

/* ==================== 货主策略配置表格列宽 ==================== */
.lpc-shipper-col-index {
    width: 10%;
    text-align: center;
}

.lpc-shipper-table th.lpc-shipper-col-index,
.lpc-shipper-table td.lpc-shipper-col-index {
    text-align: center;
    vertical-align: middle;
}

.lpc-shipper-col-name {
    width: 30%;
}

.lpc-shipper-col-status {
    width: 10%;
    text-align: center;
}

.lpc-shipper-table th.lpc-shipper-col-status,
.lpc-shipper-table td.lpc-shipper-col-status {
    text-align: center;
    vertical-align: middle;
}

.lpc-shipper-col-creator {
    width: 15%;
    text-align: center;
}

.lpc-shipper-table th.lpc-shipper-col-creator,
.lpc-shipper-table td.lpc-shipper-col-creator {
    text-align: center;
    vertical-align: middle;
}

.lpc-shipper-col-time {
    width: 20%;
    text-align: center;
}

.lpc-shipper-table th.lpc-shipper-col-time,
.lpc-shipper-table td.lpc-shipper-col-time {
    text-align: center;
    vertical-align: middle;
}

.lpc-shipper-col-action {
    width: 15%;
    text-align: center;
}

.lpc-shipper-table th.lpc-shipper-col-action,
.lpc-shipper-table td.lpc-shipper-col-action {
    text-align: center;
    vertical-align: middle;
}

/* ==================== 仓库策略配置表格列宽 ==================== */
.lpc-warehouse-col-drag {
    width: 5%;
    text-align: center;
    cursor: move;
}

.lpc-warehouse-table th.lpc-warehouse-col-drag,
.lpc-warehouse-table td.lpc-warehouse-col-drag {
    text-align: center;
    vertical-align: middle;
}

.lpc-warehouse-col-priority {
    width: 8%;
    text-align: center;
    font-weight: 600;
    color: #0052d9;
}

.lpc-warehouse-table th.lpc-warehouse-col-priority,
.lpc-warehouse-table td.lpc-warehouse-col-priority {
    text-align: center;
    vertical-align: middle;
}

.lpc-warehouse-col-name {
    width: 30%;
}

.lpc-warehouse-col-status {
    width: 10%;
    text-align: center;
}

.lpc-warehouse-table th.lpc-warehouse-col-status,
.lpc-warehouse-table td.lpc-warehouse-col-status {
    text-align: center;
    vertical-align: middle;
}

.lpc-warehouse-col-creator {
    width: 12%;
    text-align: center;
}

.lpc-warehouse-table th.lpc-warehouse-col-creator,
.lpc-warehouse-table td.lpc-warehouse-col-creator {
    text-align: center;
    vertical-align: middle;
}

.lpc-warehouse-col-time {
    width: 15%;
    text-align: center;
}

.lpc-warehouse-table th.lpc-warehouse-col-time,
.lpc-warehouse-table td.lpc-warehouse-col-time {
    text-align: center;
    vertical-align: middle;
}

.lpc-warehouse-col-action {
    width: 20%;
    text-align: center;
}

.lpc-warehouse-table th.lpc-warehouse-col-action,
.lpc-warehouse-table td.lpc-warehouse-col-action {
    text-align: center;
    vertical-align: middle;
}

/* ==================== 临时运费调价表格列宽 ==================== */
.lpc-temporary-freight-table {
    table-layout: fixed;
}

.lpc-freight-col-index {
    width: 6%;
    text-align: center;
}

.lpc-temporary-freight-table th.lpc-freight-col-index,
.lpc-temporary-freight-table td.lpc-freight-col-index {
    text-align: center;
    vertical-align: middle;
}

.lpc-freight-col-company {
    width: 15%;
    text-align: left;
}

.lpc-freight-col-method {
    width: 10%;
    text-align: center;
}

.lpc-temporary-freight-table th.lpc-freight-col-method,
.lpc-temporary-freight-table td.lpc-freight-col-method {
    text-align: center;
    vertical-align: middle;
}

.lpc-freight-col-start {
    width: 14%;
    text-align: center;
}

.lpc-temporary-freight-table th.lpc-freight-col-start,
.lpc-temporary-freight-table td.lpc-freight-col-start {
    text-align: center;
    vertical-align: middle;
}

.lpc-freight-col-end {
    width: 14%;
    text-align: center;
}

.lpc-temporary-freight-table th.lpc-freight-col-end,
.lpc-temporary-freight-table td.lpc-freight-col-end {
    text-align: center;
    vertical-align: middle;
}

.lpc-freight-col-status {
    width: 10%;
    text-align: center;
}

.lpc-temporary-freight-table th.lpc-freight-col-status,
.lpc-temporary-freight-table td.lpc-freight-col-status {
    text-align: center;
    vertical-align: middle;
}

.lpc-freight-col-creator {
    width: 12%;
    text-align: center;
}

.lpc-temporary-freight-table th.lpc-freight-col-creator,
.lpc-temporary-freight-table td.lpc-freight-col-creator {
    text-align: center;
    vertical-align: middle;
}

.lpc-freight-col-time {
    width: 14%;
    text-align: center;
}

.lpc-temporary-freight-table th.lpc-freight-col-time,
.lpc-temporary-freight-table td.lpc-freight-col-time {
    text-align: center;
    vertical-align: middle;
}

.lpc-freight-col-action {
    width: 15%;
    text-align: center;
}

.lpc-temporary-freight-table th.lpc-freight-col-action,
.lpc-temporary-freight-table td.lpc-freight-col-action {
    text-align: center;
    vertical-align: middle;
}

/* 仓库策略配置 - 策略规则列（货主策略中的仓库列） */
.lpc-warehouse-col-rule {
    width: 25%;
    text-align: left;
}

.lpc-warehouse-name-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lpc-warehouse-name-text {
    font-weight: 500;
    color: #1d2129;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.lpc-warehouse-desc-text {
    font-size: 12px;
    color: #86909c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}


/* 可拖拽行 */
.lpc-warehouse-draggable-row {
    cursor: grab;
    transition: background-color 0.2s ease;
}

.lpc-warehouse-draggable-row:active {
    cursor: grabbing;
}

/* 正在拖拽的行 */
.lpc-warehouse-draggable-row.lpc-dragging {
    opacity: 0.5;
    background: #f2f3f5;
}

/* 拖拽悬停目标行 */
.lpc-warehouse-draggable-row.lpc-drag-over {
    background: #e8f4ff;
    border-top: 2px solid #0052d9;
}

/* 状态标签 */
.lpc-shipper-status {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 500;
}

.lpc-status-enabled {
    color: #00b578;
    background: #e6fff5;
}

.lpc-status-disabled {
    color: #86909c;
    background: #f2f3f5;
}

.lpc-status-pending {
    color: #ff7d00;
    background: #fff7e6;
}

/* 操作按钮 */
.lpc-shipper-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.lpc-shipper-action-btn {
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    background: transparent;
}

.lpc-shipper-toggle-btn {
    color: #0052d9;
    border-color: #0052d9;
}

.lpc-shipper-toggle-btn:hover {
    color: #ffffff;
    background: #0052d9;
}

.lpc-shipper-edit-btn {
    color: #00b578;
    border-color: #00b578;
}

.lpc-shipper-edit-btn:hover {
    color: #ffffff;
    background: #00b578;
}

.lpc-shipper-delete-btn {
    color: #f53f3f;
    border-color: #f53f3f;
}

.lpc-shipper-delete-btn:hover {
    color: #ffffff;
    background: #f53f3f;
}

/* 空状态 - 在表格区域内垂直居中 */
.lpc-shipper-empty {
    text-align: center;
    height: 370px;
    vertical-align: middle;
}

.lpc-shipper-empty-text {
    color: #86909c;
    font-size: 14px;
}

/* 分页 */
.lpc-shipper-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid #e5e6eb;
    flex-shrink: 0;
    height: 40px;
}

.lpc-pagination-info {
    font-size: 13px;
    color: #86909c;
}

.lpc-pagination-btns {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lpc-page-btn {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    font-size: 13px;
    color: #4e5969;
    background: #ffffff;
    border: 1px solid #e5e6eb;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lpc-page-btn:hover:not(:disabled) {
    color: #0052d9;
}

/* ==================== 新增临时运费调价弹窗样式 ==================== */

/* 弹窗容器 */
.lpc-add-freight-modal {
    width: 720px;
    max-width: 90vw;
    height: auto;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.lpc-add-freight-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

/* 表单区域样式 */
.lpc-add-freight-body .lpc-form-section {
    margin-bottom: 20px;
}

.lpc-add-freight-body .lpc-form-section:last-child {
    margin-bottom: 0;
}

/* 上传区域约束 */
.lpc-add-freight-body .lpc-upload-area {
    padding: 32px 24px;
}

.lpc-add-freight-body .lpc-upload-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.lpc-add-freight-body .lpc-upload-icon svg {
    width: 24px;
    height: 24px;
}

/* 只读表单字段样式 */
.lpc-form-readonly {
    padding: 8px 12px;
    background: #f7f8fa;
    border: 1px solid #e5e6eb;
    border-radius: 6px;
    min-height: 36px;
    display: flex;
    align-items: center;
}

.lpc-form-readonly.has-value {
    background: #e6f4ff;
    border-color: #0052d9;
}

.lpc-readonly-placeholder {
    color: #86909c;
    font-size: 13px;
}

.lpc-readonly-value {
    color: #0052d9;
    font-size: 13px;
    font-weight: 500;
}

/* 禁用上传区域样式 */
.lpc-upload-area.lpc-upload-area-disabled {
    background: #f7f8fa;
    border-color: #e5e6eb;
    cursor: not-allowed;
    opacity: 0.7;
}

.lpc-upload-area.lpc-upload-area-disabled .lpc-upload-icon {
    background: #f2f3f5;
}

.lpc-upload-area.lpc-upload-area-disabled .lpc-upload-icon svg {
    color: #c9cdd4;
}

.lpc-upload-area.lpc-upload-area-disabled .lpc-upload-main {
    color: #86909c;
}

/* 模板信息卡片样式 */
.lpc-template-info-card {
    margin-top: 16px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e5e6eb;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lpc-template-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.lpc-template-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #e6f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lpc-template-info-icon svg {
    width: 20px;
    height: 20px;
    color: #0052d9;
}

.lpc-template-info-details {
    flex: 1;
    min-width: 0;
}

.lpc-template-info-name {
    font-size: 14px;
    font-weight: 600;
    color: #1d2129;
    margin-bottom: 4px;
    word-break: break-all;
}

.lpc-template-info-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #86909c;
    flex-wrap: wrap;
}

.lpc-template-info-divider {
    color: #c9cdd4;
}

.lpc-template-info-status {
    color: #00b578;
    font-weight: 500;
}

.lpc-template-info-billing {
    color: #0052d9;
    font-weight: 500;
    background: #e6f4ff;
    padding: 2px 8px;
    border-radius: 4px;
}

.lpc-template-info-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

/* 小按钮样式 */
.lpc-btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.lpc-btn-sm svg {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 4px;
}

/* 表单分区 - 最后一个元素无下边距 */
.lpc-form-section:last-child {
    margin-bottom: 0;
}

/* 表单行 */
.lpc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 16px;
}

.lpc-form-row:last-child {
    margin-bottom: 0;
}

/* 表单项 */
.lpc-form-item {
    display: flex;
    flex-direction: column;
}

.lpc-form-item-required .lpc-form-label::after {
    content: ' *';
    color: #f53f3f;
}

/* 上传区域 - 扩展样式 */
.lpc-upload-link {
    color: #0052d9;
    cursor: pointer;
    text-decoration: none;
}

.lpc-upload-link:hover {
    text-decoration: underline;
}

/* 模板信息 */
.lpc-upload-template-info {
    margin: 16px 0;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 4px;
    border-left: 3px solid #0052d9;
}

.lpc-template-type {
    font-size: 14px;
    font-weight: 600;
    color: #1d2129;
    margin-bottom: 4px;
}

.lpc-template-desc {
    font-size: 12px;
    color: #86909c;
}

/* 上传成功状态 */
.lpc-uploaded-state {
    border: 1px solid #e5e6eb;
    border-radius: 8px;
    padding: 24px;
    background: #fafbfc;
}

.lpc-uploaded-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.lpc-uploaded-icon {
    width: 48px;
    height: 48px;
    background: #e6fff5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00b578;
    flex-shrink: 0;
}

.lpc-uploaded-icon svg {
    width: 24px;
    height: 24px;
}

.lpc-uploaded-info {
    flex: 1;
}

.lpc-uploaded-title {
    font-size: 16px;
    font-weight: 600;
    color: #1d2129;
    margin-bottom: 4px;
}

.lpc-uploaded-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #86909c;
}

.lpc-uploaded-filename {
    color: #4e5969;
}

.lpc-uploaded-count {
    color: #0052d9;
    font-weight: 500;
}

.lpc-uploaded-method {
    color: #00b578;
    font-weight: 500;
    background: #e6fff5;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.lpc-uploaded-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.lpc-uploaded-actions .lpc-btn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lpc-uploaded-actions .lpc-btn svg {
    width: 16px;
    height: 16px;
}

/* 次要按钮 */
.lpc-btn-secondary {
    background: #ffffff;
    border: 1px solid #e5e6eb;
    color: #4e5969;
}

.lpc-btn-secondary:hover:not(:disabled) {
    background: #f2f3f5;
    border-color: #c9cdd4;
}

.lpc-btn-secondary svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
}

/* 弹窗标题图标 */
.lpc-modal-title svg {
    width: 20px;
    height: 20px;
    color: #0052d9;
}

.lpc-page-btn:disabled {
    color: #c9cdd4;
    cursor: not-allowed;
}

.lpc-page-active {
    color: #ffffff;
    background: #0052d9;
    border-color: #0052d9;
}

.lpc-page-active:hover {
    color: #ffffff;
    background: #0043b5;
    border-color: #0043b5;
}

.lpc-page-prev,
.lpc-page-next {
    padding: 0 12px;
}

/* ==================== 新增仓库策略弹窗 ==================== */

/* 弹窗容器 */
.lpc-add-strategy-modal {
    width: 720px;
    max-width: 90vw;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: visible;
}

/* 弹窗头部 */
.lpc-add-strategy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e6eb;
}

.lpc-add-strategy-title {
    font-size: 16px;
    font-weight: 600;
    color: #1d2129;
    margin: 0;
}

.lpc-add-strategy-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #86909c;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.lpc-add-strategy-close:hover {
    background: #f2f3f5;
    color: #4e5969;
}

.lpc-add-strategy-close svg {
    width: 20px;
    height: 20px;
}

/* 弹窗主体 */
.lpc-add-strategy-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* 宽版弹窗主体 - 允许溢出以显示下拉菜单 */
.lpc-add-strategy-modal-wide .lpc-add-strategy-body {
    overflow: visible;
}

/* 分区样式 */
.lpc-strategy-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f2f3f5;
}

.lpc-strategy-section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.lpc-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #1d2129;
    margin-bottom: 16px;
}

.lpc-section-subtitle {
    font-size: 12px;
    font-weight: normal;
    color: #86909c;
    margin-left: 8px;
}

/* 表单元素 */
.lpc-form-item {
    margin-bottom: 16px;
}

.lpc-required {
    color: #f53f3f;
    margin-left: 2px;
}

.lpc-form-input {
    width: 100%;
    height: 36px;
    padding: 0 12px;
    font-size: 13px;
    color: #1d2129;
    border: 1px solid #e5e6eb;
    border-radius: 4px;
    background: #ffffff;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.lpc-form-input:hover {
    border-color: #0052d9;
}

.lpc-form-input:focus {
    outline: none;
    border-color: #0052d9;
    box-shadow: 0 0 0 2px rgba(0, 82, 217, 0.1);
}

.lpc-form-select {
    height: 36px;
    padding: 0 28px 0 12px;
    font-size: 13px;
    color: #1d2129;
    border: 1px solid #e5e6eb;
    border-radius: 4px;
    background: #ffffff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234e5969'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    transition: all 0.2s ease;
}

.lpc-form-select:hover:not(:disabled) {
    border-color: #0052d9;
}

.lpc-form-select:focus {
    outline: none;
    border-color: #0052d9;
}

.lpc-form-select:disabled {
    background-color: #f7f8fa;
    color: #c9cdd4;
    cursor: not-allowed;
}

/* ==================== TDesign 风格日期时间选择器 ==================== */

/* TDesign DatePicker 主容器 */
.lpc-tdesign-date-picker {
    position: relative;
    width: 100%;
    display: inline-block;
    vertical-align: middle;
}

/* TDesign Input 容器 */
.lpc-tdesign-input {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 32px;
    font-size: 14px;
    line-height: 1.5;
    color: #1d2129;
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 3px;
    padding: 0 8px;
    box-sizing: border-box;
    transition: all 0.2s cubic-bezier(0.38, 0, 0.24, 1);
    cursor: pointer;
}

/* 悬停状态 */
.lpc-tdesign-input:hover {
    border-color: #0052d9;
}

/* 聚焦状态 */
.lpc-tdesign-input:focus-within {
    border-color: #0052d9;
    box-shadow: 0 0 0 2px rgba(0, 82, 217, 0.1);
}

/* 前缀图标容器 */
.lpc-tdesign-input__prefix {
    display: flex;
    align-items: center;
    margin-right: 4px;
    color: #86909c;
}

/* 后缀图标容器 */
.lpc-tdesign-input__suffix {
    display: flex;
    align-items: center;
    margin-left: 4px;
    color: #86909c;
}

/* TDesign 图标 */
.lpc-tdesign-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.lpc-tdesign-icon--chevron {
    transition: transform 0.2s cubic-bezier(0.38, 0, 0.24, 1);
}

.lpc-tdesign-input:hover .lpc-tdesign-icon--chevron {
    transform: rotate(180deg);
}

/* 输入框内部 */
.lpc-tdesign-input__inner {
    flex: 1;
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #1d2129;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* 占位符样式 */
.lpc-tdesign-input__inner::placeholder {
    color: #c9cdd4;
}

/* 禁用状态 */
.lpc-tdesign-input.disabled,
.lpc-tdesign-input__inner:disabled {
    background-color: #f5f5f5;
    color: #c9cdd4;
    cursor: not-allowed;
}

/* 隐藏原生日历图标，但保留点击功能 */
.lpc-tdesign-input__inner[type="datetime-local"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Firefox 样式 */
.lpc-tdesign-input__inner[type="datetime-local"]::-moz-calendar-picker-indicator {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* 条件配置区域 */
.lpc-conditions-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.lpc-condition-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f7f8fa;
    border-radius: 6px;
    border: 1px solid #e5e6eb;
}

/* 固定条件行（发货方式） */
.lpc-condition-row-fixed {
    background: #e8f4ff;
    border-color: #0052d9;
}

.lpc-condition-row-fixed .lpc-condition-index {
    background: #0052d9;
}

.lpc-condition-row-fixed .lpc-field-select:disabled {
    background: #f0f7ff;
    color: #0052d9;
    font-weight: 500;
    opacity: 1;
    cursor: not-allowed;
}

.lpc-condition-index {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0052d9;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50%;
    flex-shrink: 0;
}

.lpc-condition-fields {
    flex: 1;
    display: flex;
    gap: 12px;
    align-items: center;
}

.lpc-field-select {
    width: 140px;
    flex-shrink: 0;
}

/* 下拉框禁用选项样式 */
.lpc-field-select option:disabled {
    color: #c9cdd4;
    background: #f7f8fa;
}

.lpc-condition-operator {
    font-size: 13px;
    color: #4e5969;
    font-weight: 500;
    padding: 0 4px;
    flex-shrink: 0;
}

.lpc-value-container {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.lpc-value-placeholder {
    color: #86909c;
    font-size: 13px;
}

.lpc-condition-connector {
    text-align: center;
    font-size: 12px;
    color: #86909c;
    font-weight: 600;
    padding: 4px 0;
}

.lpc-condition-delete {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: #86909c;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.lpc-condition-delete:hover {
    background: #ffece8;
    color: #f53f3f;
}

.lpc-condition-delete svg {
    width: 16px;
    height: 16px;
}

/* 添加条件按钮 */
.lpc-add-condition-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    font-size: 13px;
    color: #0052d9;
    background: #ffffff;
    border: 1px dashed #0052d9;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lpc-add-condition-btn:hover {
    background: #e8f4ff;
}

.lpc-add-condition-btn svg {
    width: 16px;
    height: 16px;
}

/* 省市选择器 */
.lpc-province-city-select {
    display: flex;
    gap: 8px;
}

.lpc-province-select,
.lpc-city-select {
    flex: 1;
}

/* 多选样式 - Tags Input 风格 */
.lpc-multi-select {
    position: relative;
    width: 100%;
}

.lpc-multi-select-input {
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 36px;
    padding: 4px 28px 4px 8px;
    background: #ffffff;
    border: 1px solid #e5e6eb;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    flex-wrap: nowrap;
}

.lpc-multi-select-input:hover {
    border-color: #0052d9;
}

.lpc-multi-select-input:focus-within {
    border-color: #0052d9;
    box-shadow: 0 0 0 2px rgba(0, 82, 217, 0.1);
}

.lpc-multi-select-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    flex: 1;
    padding-right: 4px;
    min-width: 0;
}

.lpc-multi-select-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: #e8f4ff;
    border: 1px solid #0052d9;
    border-radius: 4px;
    font-size: 12px;
    color: #0052d9;
    white-space: nowrap;
    height: 24px;
}

.lpc-multi-select-tag-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.lpc-multi-select-tag-remove:hover {
    background: rgba(0, 82, 217, 0.1);
}

.lpc-multi-select-search {
    width: 40px;
    height: 24px;
    border: none;
    background: transparent;
    font-size: 13px;
    color: #1d2129;
    cursor: pointer;
    outline: none;
    flex-shrink: 0;
}

.lpc-multi-select-search[readonly] {
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.lpc-multi-select-search::placeholder {
    color: #86909c;
}

.lpc-multi-select-arrow {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #86909c;
    transition: transform 0.2s ease;
    pointer-events: none;
}

.lpc-multi-select-arrow.open {
    transform: translateY(-50%) rotate(180deg);
}

.lpc-multi-select-arrow svg {
    width: 20px;
    height: 20px;
}

.lpc-multi-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: #ffffff;
    border: 1px solid #e5e6eb;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.lpc-multi-select-dropdown.show {
    display: block;
}

.lpc-multi-select-options {
    padding: 4px 0;
}

.lpc-multi-select-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-size: 13px;
    color: #4e5969;
}

.lpc-multi-select-option:hover {
    background: #f2f3f5;
}

.lpc-multi-select-option input[type="checkbox"] {
    cursor: pointer;
    width: 14px;
    height: 14px;
    accent-color: #0052d9;
}

/* 旧多选样式（保留兼容） */
.lpc-multi-checkbox {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: #f7f8fa;
    border-radius: 4px;
    font-size: 12px;
    color: #4e5969;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lpc-multi-checkbox:hover {
    background: #e8f4ff;
}

.lpc-multi-checkbox input[type="checkbox"] {
    cursor: pointer;
}

/* 物流分组容器 */
.lpc-logistics-grouped {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lpc-logistics-group {
    background: #f7f8fa;
    border-radius: 6px;
    padding: 12px;
}

.lpc-logistics-group-title {
    font-size: 13px;
    font-weight: 600;
    color: #1d2129;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e6eb;
}

/* 物流选择网格 */
.lpc-logistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.lpc-logistics-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f7f8fa;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lpc-logistics-checkbox:hover {
    background: #e8f4ff;
}

.lpc-logistics-checkbox input[type="checkbox"] {
    cursor: pointer;
}

.lpc-logistics-checkbox.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #e5e6eb;
}

.lpc-logistics-checkbox.disabled input[type="checkbox"] {
    cursor: not-allowed;
}

.lpc-logistics-group.disabled {
    opacity: 0.7;
    background: #e5e6eb;
}

.lpc-logistics-disabled-hint {
    font-size: 12px;
    color: #86909c;
    font-weight: normal;
    margin-left: 8px;
}

.lpc-checkbox-text {
    font-size: 13px;
    color: #4e5969;
}

/* 规则预览 */
.lpc-preview-section {
    background: #f7f8fa;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 0 !important;
    padding-bottom: 16px !important;
    border-bottom: none !important;
}

.lpc-rule-preview {
    font-size: 13px;
    line-height: 1.6;
    color: #4e5969;
    word-break: break-all;
    overflow-wrap: break-word;
}

.lpc-preview-placeholder {
    color: #86909c;
    font-style: italic;
}

.lpc-preview-text {
    color: #1d2129;
    display: block;
}

/* 弹窗底部 */
.lpc-add-strategy-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid #e5e6eb;
    background: #fafbfc;
}

/* 值选择器 */
.lpc-value-select {
    width: 100%;
}

/* 宽版弹窗 - 左右布局 */
.lpc-add-strategy-modal-wide {
    width: 1200px;
    max-width: 95vw;
}

/* 左右两列布局 */
.lpc-add-strategy-body-two-column {
    display: flex;
    gap: 24px;
    padding: 20px;
    overflow: visible;
}

.lpc-strategy-left-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: visible;
}

.lpc-strategy-right-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: visible;
}

.lpc-strategy-left-column .lpc-strategy-section,
.lpc-strategy-right-column .lpc-strategy-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.lpc-strategy-left-column .lpc-strategy-section:last-child,
.lpc-strategy-right-column .lpc-strategy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* 策略描述文本域 */
.lpc-form-textarea {
    width: 100%;
    min-height: 80px;
    padding: 10px 12px;
    font-size: 13px;
    color: #1d2129;
    border: 1px solid #e5e6eb;
    border-radius: 4px;
    background: #ffffff;
    box-sizing: border-box;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
    transition: all 0.2s ease;
}

.lpc-form-textarea:hover {
    border-color: #0052d9;
}

.lpc-form-textarea:focus {
    outline: none;
    border-color: #0052d9;
    box-shadow: 0 0 0 2px rgba(0, 82, 217, 0.1);
}

.lpc-form-textarea::placeholder {
    color: #86909c;
}

/* 响应式：小屏幕下恢复单列布局 */
@media (max-width: 900px) {
    .lpc-add-strategy-body-two-column {
        flex-direction: column;
    }
    
    .lpc-add-strategy-modal-wide {
        width: 720px;
    }
}

/* ==================== 物流运费计算弹窗样式 ==================== */

/* 遮罩层 */
.lpc-freight-calculate-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* 容器 */
.lpc-freight-calculate-container {
    width: 100%;
    max-width: 1100px;
    height: 90vh;
    max-height: 800px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* 头部 */
.lpc-freight-calculate-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #e5e6eb;
    background: #ffffff;
}

.lpc-freight-calculate-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #1d2129;
}

.lpc-freight-calculate-title svg {
    width: 22px;
    height: 22px;
    color: #0052d9;
}

.lpc-freight-calculate-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lpc-freight-calculate-close:hover {
    background: #f2f3f5;
}

.lpc-freight-calculate-close svg {
    width: 20px;
    height: 20px;
    color: #86909c;
}

/* 主内容区域 - 左右布局 */
.lpc-freight-calculate-content {
    flex: 1;
    display: flex;
    overflow: hidden;
}

/* 面板基础样式 */
.lpc-freight-calculate-panel {
    display: flex;
    flex-direction: column;
    position: relative; /* 为底部固定按钮提供定位上下文 */
}

/* 左侧参数面板 */
.lpc-freight-calculate-params {
    width: 360px;
    min-width: 360px;
    height: 100%;
    border-right: 1px solid #e5e6eb;
    background: #f7f8fa;
    display: flex;
    flex-direction: column;
}

/* 右侧结果面板 */
.lpc-freight-calculate-result {
    flex: 1;
    background: #ffffff;
}

/* 面板头部 */
.lpc-freight-calculate-panel-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e5e6eb;
}

.lpc-freight-calculate-panel-header h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1d2129;
}

/* 面板内容 */
.lpc-freight-calculate-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    /* 滚动条在按钮区域截止，按钮使用 sticky 定位 */
}

/* 表单样式 */
.lpc-freight-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lpc-freight-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lpc-freight-form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #4e5969;
}

.lpc-freight-input,
.lpc-freight-select {
    height: 36px;
    padding: 0 12px;
    border: 1px solid #dcdfe6;
    border-radius: 6px;
    font-size: 13px;
    color: #1d2129;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lpc-freight-input:hover,
.lpc-freight-select:hover {
    border-color: #c0c4cc;
}

.lpc-freight-input:focus,
.lpc-freight-select:focus {
    outline: none;
    border-color: #0052d9;
}

.lpc-freight-input::placeholder {
    color: #a8abb2;
}

.lpc-freight-select:disabled {
    background: #f5f7fa;
    color: #a8abb2;
    cursor: not-allowed;
}

/* 货主名称选择框样式 */
.lpc-freight-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.lpc-freight-select-wrapper .lpc-freight-input {
    width: 100%;
    padding-right: 32px;
}

.lpc-freight-dropdown-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #86909c;
    pointer-events: none;
}

/* 多选货品显示区域样式 */
.lpc-freight-multi-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.lpc-freight-multi-display {
    width: 100%;
    min-height: 32px;
    padding: 4px 32px 4px 12px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.lpc-freight-multi-display:hover {
    border-color: #0052d9;
}

.lpc-freight-multi-placeholder {
    color: #a8abb2;
    font-size: 13px;
}

.lpc-freight-multi-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: #e8f4ff;
    border: 1px solid #0052d9;
    border-radius: 4px;
    color: #0052d9;
    font-size: 12px;
    white-space: nowrap;
}

.lpc-freight-multi-input-wrapper .lpc-freight-dropdown-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #86909c;
    pointer-events: none;
}

/* 重量提示 */
.lpc-freight-weight-hint {
    font-size: 12px;
    color: #0052d9;
    margin-top: 4px;
}

/* 多选下拉 */
.lpc-freight-multi-select {
    position: relative;
}

.lpc-freight-multi-trigger {
    height: 36px;
    padding: 0 12px;
    border: 1px solid #dcdfe6;
    border-radius: 6px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lpc-freight-multi-trigger:hover {
    border-color: #c0c4cc;
}

.lpc-freight-multi-placeholder {
    font-size: 13px;
    color: #a8abb2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.lpc-freight-multi-placeholder.has-value {
    color: #1d2129;
}

.lpc-freight-multi-trigger svg {
    width: 16px;
    height: 16px;
    color: #909399;
    flex-shrink: 0;
    margin-left: 8px;
}

.lpc-freight-multi-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: #ffffff;
    border: 1px solid #e5e6eb;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.lpc-freight-multi-dropdown.show {
    display: block;
}

.lpc-freight-multi-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.lpc-freight-multi-option:hover {
    background: #f5f7ff;
}

.lpc-freight-multi-option input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
}

.lpc-freight-multi-option span {
    font-size: 13px;
    color: #1d2129;
}

/* 操作按钮 */
.lpc-freight-actions {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    background: #ffffff;
    border-top: 1px solid #e5e6eb;
    flex-shrink: 0;
}

.lpc-freight-btn {
    flex: 1;
    height: 36px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.lpc-freight-btn-primary {
    background: #0052d9;
    color: #ffffff;
}

.lpc-freight-btn-primary:hover {
    background: #0043b5;
}

.lpc-freight-btn-secondary {
    background: #f2f3f5;
    color: #4e5969;
    border: 1px solid #dcdfe6;
}

.lpc-freight-btn-secondary:hover {
    background: #e5e6eb;
}

/* 结果区域 - 空状态 */
.lpc-freight-result-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #86909c;
}

.lpc-freight-result-empty svg {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    color: #c9cdd4;
}

.lpc-freight-result-empty p {
    margin: 0;
    font-size: 14px;
}

/* 最优方案 */
.lpc-freight-result-best {
    background: linear-gradient(135deg, #fff8f0 0%, #fff0e0 100%);
    border: 1px solid #ffd4a3;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.lpc-freight-result-best-header {
    margin-bottom: 12px;
}

.lpc-freight-result-best-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #d46b08;
}

.lpc-freight-result-best-content {
    text-align: center;
}

.lpc-freight-result-company {
    font-size: 20px;
    font-weight: 600;
    color: #1d2129;
    margin-bottom: 8px;
}

.lpc-freight-result-price {
    font-size: 32px;
    font-weight: 700;
    color: #d46b08;
    margin-bottom: 12px;
}

.lpc-freight-result-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    color: #4e5969;
}

.lpc-freight-result-info span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 其他方案 */
.lpc-freight-result-others {
    margin-bottom: 20px;
}

.lpc-freight-result-others-title {
    font-size: 13px;
    font-weight: 600;
    color: #1d2129;
    margin-bottom: 12px;
    padding-left: 4px;
}

.lpc-freight-result-others-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lpc-freight-result-other-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f7f8fa;
    border-radius: 8px;
    border: 1px solid #e5e6eb;
}

.lpc-freight-result-other-name {
    font-size: 14px;
    font-weight: 500;
    color: #1d2129;
    flex: 1;
}

.lpc-freight-result-other-price {
    font-size: 16px;
    font-weight: 600;
    color: #0052d9;
    margin-right: 16px;
}

.lpc-freight-result-other-method {
    font-size: 12px;
    color: #86909c;
    background: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
}

/* 计算说明 */
.lpc-freight-result-note {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #e5e6eb;
}

.lpc-freight-result-note-title {
    font-size: 13px;
    font-weight: 600;
    color: #1d2129;
    margin-bottom: 8px;
}

.lpc-freight-result-note-content {
    font-size: 12px;
    color: #86909c;
    line-height: 1.8;
}

.lpc-freight-result-note-content p {
    margin: 0;
}

/* ==================== 平台优先物流配置弹窗样式 ==================== */

.lpc-platform-priority-modal .lpc-modal-container {
    display: flex;
    flex-direction: column;
}

.lpc-platform-priority-desc {
    font-size: 13px;
    color: #86909c;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: #f2f3f5;
    border-radius: 6px;
    border-left: 3px solid #0052d9;
}

.lpc-platform-priority-table-wrapper {
    overflow-y: auto;
    max-height: 55vh;
    border: 1px solid #e5e6eb;
    border-radius: 8px;
}

.lpc-platform-priority-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.lpc-platform-priority-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #f7f8fa;
}

.lpc-platform-priority-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    color: #1d2129;
    border-bottom: 1px solid #e5e6eb;
    background: #f7f8fa;
}

.lpc-platform-priority-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f2f3f5;
    vertical-align: middle;
}

.lpc-platform-priority-table tbody tr:hover {
    background: #f7f8fa;
}

.lpc-platform-priority-table tbody tr:last-child td {
    border-bottom: none;
}

.lpc-platform-name {
    font-weight: 500;
    color: #1d2129;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lpc-platform-icon {
    font-size: 16px;
}

.lpc-priority-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    font-size: 13px;
    color: #1d2129;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 32px;
}

.lpc-priority-select:hover {
    border-color: #0052d9;
}

.lpc-priority-select:focus {
    outline: none;
    border-color: #0052d9;
    box-shadow: 0 0 0 3px rgba(0, 82, 217, 0.1);
}

.lpc-priority-select option {
    padding: 8px;
}

.lpc-clear-row-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #86909c;
}

.lpc-clear-row-btn:hover {
    background: #fff2f0;
    color: #f5222d;
}

.lpc-clear-row-btn svg {
    width: 18px;
    height: 18px;
}

/* 弹窗底部按钮 */
.lpc-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid #e5e6eb;
    background: #ffffff;
}

.lpc-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    outline: none;
}

.lpc-btn-default {
    background: #f2f3f5;
    color: #4e5969;
    border: 1px solid #e5e6eb;
}

.lpc-btn-default:hover {
    background: #e5e6eb;
    color: #1d2129;
}

.lpc-btn-primary {
    background: #0052d9;
    color: #ffffff;
}

.lpc-btn-primary:hover {
    background: #003bb3;
    box-shadow: 0 4px 12px rgba(0, 82, 217, 0.3);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .lpc-platform-priority-modal .lpc-modal-container {
        width: 95% !important;
        margin: 20px;
    }

    .lpc-platform-priority-table th,
    .lpc-platform-priority-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
}



















