/* ============================================
   ZB产品价格表 - 精修版样式（优化版）
   左侧35%图片，右侧65%表格
   ============================================ */

/* 主容器 */
.zb-ppt-layout-container {
    margin: 30px 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 左右布局包装器 - 进一步减小间距 */
.zb-ppt-layout-wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 15px !important; /* 进一步减小间距 */
    min-height: 0;
    width: 100%;
}

/* 左侧图片区域（35%） - 添加圆角 */
.zb-ppt-left-image {
    flex: 0 0 35%;
    max-width: 35%;
    min-width: 0;
    padding: 0 !important; /* 移除内边距 */
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4ff 100%);
    border-radius: 12px; /* 外容器圆角 */
    overflow: hidden;
    border: 1px solid #e1f0ff;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.08);
    width: 100% !important;
    height: auto !important;
}

/* 图片容器 - 完全充满 + 圆角 */
.zb-ppt-image-container {
    position: relative;
    width: 100% !important;
    height: 100% !important;
    min-height: 300px; /* 最小高度 */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: white;
    border-radius: 12px; /* 添加圆角 */
    box-shadow: inset 0 0 0 1px rgba(52, 152, 219, 0.1); /* 内边框 */
}

/* 图片本身也保持圆角 */
.zb-ppt-main-image {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 10px; /* 图片圆角稍小 */
}

.zb-ppt-image-container:hover .zb-ppt-main-image {
    transform: scale(1.02);
}

/* 移除商品展示遮罩层相关样式 */
.zb-ppt-image-overlay,
.zb-ppt-image-badge {
    display: none !important;
}

/* 图片占位符 - 充满左侧 + 圆角 */
.zb-ppt-image-placeholder {
    width: 100% !important;
    height: 100% !important;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f5fbff 0%, #e3f2ff 100%);
    border: 2px dashed #b8d8ff;
    border-radius: 12px; /* 占位符圆角 */
    padding: 30px;
    text-align: center;
}

.zb-ppt-placeholder-icon {
    margin-bottom: 15px;
    opacity: 0.7;
}

.zb-ppt-image-placeholder h3 {
    color: #3498db;
    margin: 10px 0 5px;
    font-size: 18px;
}

.zb-ppt-image-placeholder p {
    color: #7f8c8d;
    margin: 5px 0;
    font-size: 14px;
}

.zb-ppt-placeholder-hint {
    margin-top: 10px !important;
    color: #95a5a6 !important;
    font-style: italic;
}

/* ============================================
   图片说明区域 - 修改为显示标题和货号
   ============================================ */

.zb-ppt-image-caption {
    padding: 15px 20px !important; /* 增加内边距 */
    text-align: center;
    color: #2c3e50;
    font-size: 15px; /* 增大字体大小 */
    font-weight: 500;
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2ff 100%);
    border-top: 1px dashed #b8d8ff;
    width: 100%;
    border-radius: 0 0 12px 12px; /* 底部圆角 */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* 增加间距 */
    box-shadow: inset 0 1px 3px rgba(52, 152, 219, 0.05);
}

/* 标题样式 */
.zb-ppt-caption-title {
    font-size: 18px !important; /* 增大字体 */
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 货号样式 */
.zb-ppt-caption-code {
    font-size: 15px !important; /* 增大字体 */
    font-weight: 600;
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
    padding: 8px 18px !important; /* 增加内边距 */
    border-radius: 20px;
    border: 1px solid rgba(52, 152, 219, 0.2);
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.15);
}

.zb-ppt-caption-code:hover {
    background: rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.25);
}

/* 右侧表格区域（65%） */
.zb-ppt-right-table {
    flex: 0 0 65%;
    max-width: 65%;
    min-width: 0;
    padding: 0 !important; /* 移除内边距 */
    display: flex;
    flex-direction: column;
}

/* ============================================
   表格标题区域 - 使用我的样式
   ============================================ */

.zb-ppt-table-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 20px 25px !important;
    color: white;
    border-bottom: 3px solid #1c6ea4;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
}

.zb-ppt-table-title {
    margin: 0 !important;
    font-size: 22px !important;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    line-height: 1.4;
}

/* 表格标题区域的货号样式 */
.zb-ppt-product-code {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    padding: 6px 15px !important;
    border-radius: 20px;
    font-size: 14px !important;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
    -webkit-text-fill-color: white !important;
}

.zb-ppt-product-code:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* ============================================
   表格样式 - 使用我的原始设计
   ============================================ */

.zb-ppt-table-container {
    padding: 0;
    overflow-x: auto;
    flex-grow: 1;
    background: white;
    border-radius: 0 0 12px 12px;
    border: 1px solid #e1f2fd;
    border-top: none;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.1);
}

.zb-ppt-price-table {
    width: 100% !important;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 800px;
    table-layout: auto;
}

/* 表格头部 */
.zb-ppt-price-table thead {
    background: linear-gradient(to right, #f8fbff, #e8f4ff);
}

.zb-ppt-price-table th {
    padding: 18px 15px;
    text-align: center;
    font-weight: 700;
    color: #2c3e50;
    font-size: 15px;
    border-bottom: 2px solid #d6e9ff;
    white-space: nowrap;
}

.zb-ppt-price-table th:first-child {
    border-top-left-radius: 8px;
}

.zb-ppt-price-table th:last-child {
    border-top-right-radius: 8px;
}

/* 表格行样式 */
.zb-ppt-price-table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f7ff;
}

.zb-ppt-row-even {
    background-color: white;
}

.zb-ppt-row-odd {
    background-color: #fafdff;
}

.zb-ppt-price-table tbody tr:hover {
    background-color: #f0f9ff !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.1);
}

/* 表格单元格 */
.zb-ppt-price-table td {
    padding: 16px 12px;
    text-align: center;
    vertical-align: middle !important;
    color: #34495e;
    font-size: 14px;
    border-right: 1px solid #f0f7ff;
}

.zb-ppt-price-table td:last-child {
    border-right: none;
}

/* 版本标签 */
.zb-ppt-version-badge {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex !important; /* 改为inline-flex确保与实拍按钮对齐 */
    align-items: center !important;
    justify-content: center !important;
    min-width: 80px;
    box-shadow: 0 3px 8px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
    height: 36px !important; /* 固定高度 */
    line-height: 1 !important; /* 重置行高 */
}

.zb-ppt-version-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* 尺码标签 */
.zb-ppt-size-label {
    background: #e8f4ff;
    color: #2980b9;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid #c5e1ff;
    transition: all 0.3s ease;
    display: inline-flex !important; /* 改为inline-flex确保与实拍按钮对齐 */
    align-items: center !important;
    justify-content: center !important;
    height: 36px !important; /* 固定高度 */
    line-height: 1 !important; /* 重置行高 */
}

.zb-ppt-size-label:hover {
    background: #d6e9ff;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(41, 128, 185, 0.2);
}

/* 价格单元格 */
.zb-ppt-price {
    font-weight: 700;
}

.zb-ppt-price-value {
    color: #e74c3c;
    font-size: 16px;
    font-weight: 800;
}

.zb-ppt-currency {
    color: #7f8c8d;
    font-size: 12px;
    margin-left: 2px;
}

.zb-ppt-price-empty {
    color: #bdc3c7;
    font-style: italic;
}

/* 价格列特殊颜色 */
.zb-ppt-price.pickup .zb-ppt-price-value { color: #e74c3c; }
.zb-ppt-price.retail .zb-ppt-price-value { color: #9b59b6; } /* 零售价使用紫色 */
.zb-ppt-price.partner .zb-ppt-price-value { color: #3498db; }
.zb-ppt-price.core .zb-ppt-price-value { color: #f39c12; }
.zb-ppt-price.vip .zb-ppt-price-value { color: #1abc9c; }

/* ============================================
   实拍按钮样式 - 与版本按钮相似
   ============================================ */

.zb-ppt-realshot-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #f39c12, #e67e22) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    text-align: center !important;
    vertical-align: middle !important;
    height: 36px !important; /* 固定高度，与版本和尺码标签一致 */
    box-shadow: 0 3px 8px rgba(243, 156, 18, 0.3) !important;
    min-width: 70px !important;
    line-height: 1 !important; /* 重置行高 */
}

.zb-ppt-realshot-btn:hover {
    background: linear-gradient(135deg, #e67e22, #d35400) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4) !important;
    color: white !important;
    text-decoration: none !important;
}

.zb-ppt-realshot-btn:active {
    transform: translateY(0) !important;
}

/* 备注单元格 */
.zb-ppt-notes-text {
    background: #fff8e1;
    color: #f39c12;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    display: inline-block;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: 1px solid #ffecb3;
    cursor: help;
}

.zb-ppt-notes-empty {
    color: #bdc3c7;
    font-style: italic;
}

/* ============================================
   表格页脚
   ============================================ */

.zb-ppt-table-footer {
    background: linear-gradient(to right, #f8fbff, #e8f4ff);
    padding: 15px 25px;
    border-top: 1px solid #d6e9ff;
    border-radius: 0 0 12px 12px;
}

.zb-ppt-footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #7f8c8d;
}

.zb-ppt-total-count {
    background: rgba(52, 152, 219, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
    color: #3498db;
    font-weight: 600;
}

.zb-ppt-update-time {
    background: rgba(46, 204, 113, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
    color: #27ae60;
    font-weight: 600;
}

/* ============================================
   响应式设计 - 调整手机端列宽，确保版本和尺码列与自取列同宽
   ============================================ */

/* 手机设备（小于768px） */
@media screen and (max-width: 768px) {
    .zb-ppt-layout-container {
        margin: 20px 0;
    }
    
    .zb-ppt-left-image {
        border-radius: 10px;
    }
    
    .zb-ppt-image-container {
        min-height: 220px;
        border-radius: 10px;
    }
    
    .zb-ppt-image-placeholder {
        min-height: 220px;
        padding: 25px;
        border-radius: 10px;
    }
    
    /* 图片说明响应式 */
    .zb-ppt-image-caption {
        padding: 16px 20px !important;
        gap: 10px;
    }
    
    .zb-ppt-caption-title {
        font-size: 19px !important;
        margin-bottom: 6px;
        line-height: 1.4;
    }
    
    .zb-ppt-caption-code {
        font-size: 16px !important;
        padding: 10px 20px !important;
        border-radius: 25px;
    }
    
    /* 占位符文字 */
    .zb-ppt-image-placeholder h3 {
        font-size: 19px;
    }
    
    .zb-ppt-image-placeholder p {
        font-size: 15px;
    }
    
    .zb-ppt-right-table {
        border-radius: 10px;
    }
    
    .zb-ppt-table-header {
        padding: 18px 22px !important;
    }
    
    .zb-ppt-table-title {
        font-size: 20px !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .zb-ppt-product-code {
        font-size: 14px !important;
        padding: 6px 14px !important;
    }
    
    /* ============================================
       手机端表格优化 - 调整列宽，版本和尺码列与自取列同宽
       ============================================ */
    
    /* 调整表格单元格间距 */
    .zb-ppt-price-table th,
    .zb-ppt-price-table td {
        padding: 12px 5px !important;
        font-size: 12px;
    }
    
    /* 重新设计列宽分配 - 版本、尺码、自取、零售四列宽度相同 */
    .zb-ppt-price-table th:nth-child(1),
    .zb-ppt-price-table td:nth-child(1) { 
        width: 13% !important; /* 版本列 - 与自取列同宽 */
    }
    .zb-ppt-price-table th:nth-child(2),
    .zb-ppt-price-table td:nth-child(2) { 
        width: 13% !important; /* 尺码列 - 与自取列同宽 */
    }
    .zb-ppt-price-table th:nth-child(3),
    .zb-ppt-price-table td:nth-child(3) { 
        width: 13% !important; /* 自取价 - 基准宽度 */
    }
    .zb-ppt-price-table th:nth-child(4),
    .zb-ppt-price-table td:nth-child(4) { 
        width: 13% !important; /* 零售价 - 与自取列同宽 */
    }
    .zb-ppt-price-table th:nth-child(5),
    .zb-ppt-price-table td:nth-child(5) { 
        width: 12% !important; /* 合伙价 */
    }
    .zb-ppt-price-table th:nth-child(6),
    .zb-ppt-price-table td:nth-child(6) { 
        width: 12% !important; /* 核心价 */
    }
    .zb-ppt-price-table th:nth-child(7),
    .zb-ppt-price-table td:nth-child(7) { 
        width: 12% !important; /* VIP价 */
    }
    .zb-ppt-price-table th:nth-child(8),
    .zb-ppt-price-table td:nth-child(8) { 
        width: 12% !important; /* 备注列 */
    }
    
    /* 设置表格最小宽度，确保前4列完全显示 */
    .zb-ppt-price-table {
        min-width: 560px !important;
    }
    
    /* 前4列总宽度：13% × 4 = 52% */
    /* 在375px屏幕上：560px的52% ≈ 291px，确保前4列完全显示 */
    
    /* 尺码标签调整 */
    .zb-ppt-size-label {
        padding: 5px 8px !important;
        font-size: 11px !important;
        white-space: nowrap !important;
        min-width: 50px !important;
        height: 28px !important;
    }
    
    /* 版本标签调整 */
    .zb-ppt-version-badge {
        padding: 5px 8px !important;
        font-size: 11px !important;
        min-width: 55px !important;
        white-space: nowrap !important;
        height: 28px !important;
    }
    
    /* 实拍按钮调整 */
    .zb-ppt-realshot-btn {
        padding: 5px 8px !important;
        font-size: 11px !important;
        height: 28px !important;
        border-radius: 16px !important;
        min-width: 45px !important;
    }
    
    /* 备注标签调整 */
    .zb-ppt-notes-text {
        font-size: 11px !important;
        padding: 4px 6px !important;
        max-width: 90px !important;
        white-space: nowrap !important;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* 价格单元格调整 */
    .zb-ppt-price-value {
        font-size: 13px !important;
    }
    
    .zb-ppt-currency {
        font-size: 10px !important;
    }
    
    .zb-ppt-footer-info {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* 小手机设备（小于576px） */
@media screen and (max-width: 576px) {
    .zb-ppt-image-container {
        min-height: 200px;
        border-radius: 8px;
    }
    
    .zb-ppt-image-placeholder {
        min-height: 200px;
        padding: 20px;
        border-radius: 8px;
    }
    
    /* 图片说明响应式 */
    .zb-ppt-image-caption {
        padding: 14px 16px !important;
        gap: 8px;
    }
    
    .zb-ppt-caption-title {
        font-size: 18px !important;
        line-height: 1.3;
    }
    
    .zb-ppt-caption-code {
        font-size: 15px !important;
        padding: 9px 18px !important;
        border-radius: 22px;
    }
    
    /* 占位符文字 */
    .zb-ppt-image-placeholder h3 {
        font-size: 18px;
    }
    
    .zb-ppt-image-placeholder p {
        font-size: 14px;
    }
    
    .zb-ppt-table-header {
        padding: 16px 18px !important;
    }
    
    .zb-ppt-table-title {
        font-size: 18px !important;
    }
    
    .zb-ppt-product-code {
        font-size: 13px !important;
        padding: 5px 10px !important;
    }
    
    /* ============================================
       小手机端表格优化 - 保持四列同宽
       ============================================ */
    
    /* 调整表格最小宽度 */
    .zb-ppt-price-table {
        min-width: 520px !important;
    }
    
    /* 调整单元格内边距 */
    .zb-ppt-price-table th,
    .zb-ppt-price-table td {
        padding: 10px 4px !important;
        font-size: 11px;
    }
    
    /* 调整列宽 - 版本、尺码、自取、零售四列保持同宽 */
    .zb-ppt-price-table th:nth-child(1),
    .zb-ppt-price-table td:nth-child(1) { 
        width: 12.5% !important; /* 版本列 - 与自取列同宽 */
    }
    .zb-ppt-price-table th:nth-child(2),
    .zb-ppt-price-table td:nth-child(2) { 
        width: 12.5% !important; /* 尺码列 - 与自取列同宽 */
        min-width: 45px !important;
    }
    .zb-ppt-price-table th:nth-child(3),
    .zb-ppt-price-table td:nth-child(3) { 
        width: 12.5% !important; /* 自取价 - 基准宽度 */
    }
    .zb-ppt-price-table th:nth-child(4),
    .zb-ppt-price-table td:nth-child(4) { 
        width: 12.5% !important; /* 零售价 - 与自取列同宽 */
    }
    .zb-ppt-price-table th:nth-child(5),
    .zb-ppt-price-table td:nth-child(5) { 
        width: 12.5% !important; /* 合伙价 */
    }
    .zb-ppt-price-table th:nth-child(6),
    .zb-ppt-price-table td:nth-child(6) { 
        width: 12.5% !important; /* 核心价 */
    }
    .zb-ppt-price-table th:nth-child(7),
    .zb-ppt-price-table td:nth-child(7) { 
        width: 12.5% !important; /* VIP价 */
    }
    .zb-ppt-price-table th:nth-child(8),
    .zb-ppt-price-table td:nth-child(8) { 
        width: 12.5% !important; /* 备注列 */
    }
    
    /* 前4列总宽度：12.5% × 4 = 50% */
    /* 在520px表格上：50% ≈ 260px，在375px屏幕上可以显示前4列 */
    
    /* 尺码标签调整 */
    .zb-ppt-size-label {
        padding: 4px 6px !important;
        font-size: 10px !important;
        min-width: 42px !important;
        height: 26px !important;
    }
    
    /* 版本标签调整 */
    .zb-ppt-version-badge {
        padding: 4px 6px !important;
        font-size: 10px !important;
        min-width: 48px !important;
        height: 26px !important;
    }
    
    /* 实拍按钮调整 */
    .zb-ppt-realshot-btn {
        padding: 4px 6px !important;
        font-size: 10px !important;
        height: 26px !important;
        min-width: 40px !important;
    }
    
    /* 价格单元格调整 */
    .zb-ppt-price-value {
        font-size: 12px !important;
    }
    
    .zb-ppt-currency {
        font-size: 9px !important;
    }
    
    /* 备注标签调整 */
    .zb-ppt-notes-text {
        font-size: 10px !important;
        padding: 3px 5px !important;
        max-width: 80px !important;
    }
}

/* 超小手机设备（小于400px） */
@media screen and (max-width: 400px) {
    /* 图片说明响应式 */
    .zb-ppt-image-caption {
        padding: 12px 14px !important;
    }
    
    .zb-ppt-caption-title {
        font-size: 17px !important;
        line-height: 1.2;
    }
    
    .zb-ppt-caption-code {
        font-size: 14px !important;
        padding: 8px 16px !important;
        border-radius: 20px;
    }
    
    .zb-ppt-table-header {
        padding: 14px 16px !important;
    }
    
    .zb-ppt-table-title {
        font-size: 17px !important;
    }
    
    .zb-ppt-product-code {
        font-size: 12px !important;
        padding: 4px 8px !important;
    }
    
    /* ============================================
       超小手机端表格优化 - 保持四列同宽
       ============================================ */
    
    /* 进一步减小表格最小宽度 */
    .zb-ppt-price-table {
        min-width: 500px !important;
    }
    
    /* 调整单元格内边距 */
    .zb-ppt-price-table th,
    .zb-ppt-price-table td {
        padding: 8px 3px !important;
        font-size: 10px;
    }
    
    /* 调整列宽分配 - 前4列保持相同宽度 */
    .zb-ppt-price-table th:nth-child(1),
    .zb-ppt-price-table td:nth-child(1) { 
        width: 12% !important; /* 版本列 - 与自取列同宽 */
    }
    .zb-ppt-price-table th:nth-child(2),
    .zb-ppt-price-table td:nth-child(2) { 
        width: 12% !important; /* 尺码列 - 与自取列同宽 */
        min-width: 40px !important;
    }
    .zb-ppt-price-table th:nth-child(3),
    .zb-ppt-price-table td:nth-child(3) { 
        width: 12% !important; /* 自取价 - 基准宽度 */
    }
    .zb-ppt-price-table th:nth-child(4),
    .zb-ppt-price-table td:nth-child(4) { 
        width: 12% !important; /* 零售价 - 与自取列同宽 */
    }
    .zb-ppt-price-table th:nth-child(5),
    .zb-ppt-price-table td:nth-child(5) { 
        width: 13% !important; /* 合伙价 */
    }
    .zb-ppt-price-table th:nth-child(6),
    .zb-ppt-price-table td:nth-child(6) { 
        width: 13% !important; /* 核心价 */
    }
    .zb-ppt-price-table th:nth-child(7),
    .zb-ppt-price-table td:nth-child(7) { 
        width: 13% !important; /* VIP价 */
    }
    .zb-ppt-price-table th:nth-child(8),
    .zb-ppt-price-table td:nth-child(8) { 
        width: 13% !important; /* 备注列 */
    }
    
    /* 前4列总宽度：12% × 4 = 48% */
    /* 在500px表格上：48% ≈ 240px，在375px屏幕上可以显示前4列 */
    
    /* 尺码标签进一步紧凑 */
    .zb-ppt-size-label {
        padding: 3px 5px !important;
        font-size: 9px !important;
        min-width: 38px !important;
        height: 24px !important;
    }
    
    /* 版本标签进一步紧凑 */
    .zb-ppt-version-badge {
        padding: 3px 5px !important;
        font-size: 9px !important;
        min-width: 42px !important;
        height: 24px !important;
    }
    
    /* 价格单元格调整 */
    .zb-ppt-price-value {
        font-size: 11px !important;
    }
    
    .zb-ppt-currency {
        font-size: 8px !important;
    }
    
    /* 实拍按钮调整 */
    .zb-ppt-realshot-btn {
        font-size: 9px !important;
        padding: 3px 5px !important;
        height: 24px !important;
        min-width: 38px !important;
    }
    
    /* 备注标签调整 */
    .zb-ppt-notes-text {
        font-size: 9px !important;
        padding: 2px 4px !important;
        max-width: 70px !important;
    }
}

/* ============================================
   修复价格单元格对齐问题
   ============================================ */

/* 价格单元格特殊处理 */
td.zb-ppt-price {
    vertical-align: middle !important;
    text-align: center !important;
}

/* 价格内容统一对齐 */
.zb-ppt-price > span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    height: 36px !important;       /* 统一高度 */
    gap: 2px !important;
}

/* 价格数字 */
.zb-ppt-price-value {
    vertical-align: middle !important;
    font-size: 16px !important;
}

/* 货币单位 */
.zb-ppt-currency {
    vertical-align: middle !important;
    font-size: 12px !important;
}

/* 空值 */
.zb-ppt-price-empty {
    vertical-align: middle !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 36px !important;
}

/* 备注 */
.zb-ppt-notes-text,
.zb-ppt-notes-empty {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    height: 36px !important;
    max-width: 150px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}