/* ==========================================================================
   VIP 产品/样品详情样式（productDetail.css）
   适用于：ProductDetails.html（供货信息详情）、sampledetails.html（样品详情）
   结构：左 9 列详情主区 + 右 3 列（联系方式 / 合作留言）
   ========================================================================== */

/* ==================== 详情容器 ==================== */
.productDetail_content {
    background-color: var(--vip-bg);
    width: 100%;
    padding: 24px 0;
}

.content_offset {
    margin: 0 auto;
    width: 100%;
    max-width: var(--vip-container);
    padding: 0 20px;
}

.content_link {
    line-height: 60px;
    font-size: 14px;
}

.span_link {
    color: var(--vip-secondary);
}

/* ==================== 信息卡片 ==================== */
.info_block {
    width: 100%;
    height: auto;
    background-color: #fff;
    box-shadow: var(--vip-shadow-sm);
    overflow: hidden;
}

.info_base_block {
    padding: 24px;
}

/* ---- 产品标题（详情页：左对齐，覆盖 index.css 的居中标题样式） ---- */
.product_title {
    font-size: 20px;
    font-weight: 600;
    color: var(--vip-text);
    line-height: 1.4;
    text-align: left;
    margin-bottom: 0;
    padding-bottom: 0;
    position: static;
}

/* 移除 index.css 中 .product_title 的居中下划线装饰 */
.product_title::after {
    content: none;
}

/* ---- 产品基本信息块 ---- */
.product_info_block {
    margin: 20px 0;
    padding: 20px;
    background-color: var(--vip-bg);
    border-radius: var(--vip-radius);
    border-left: 3px solid var(--vip-primary);
}

.product_base {
    line-height: 32px;
    font-size: 14px;
    color: var(--vip-text-secondary);
}

/* ==================== 产品简介 ==================== */
.product_introduce {
    margin: 20px 0;
    background-color: #fff;
    width: 100%;
    box-shadow: var(--vip-shadow-sm);
    overflow: hidden;
}

.product_introduce_title {
    font-size: 16px;
    border-bottom: 1px solid var(--vip-border-light);
    font-weight: 600;
    padding: 16px 24px;
    color: var(--vip-text);
    position: relative;
    padding-left: 32px;
}

.product_introduce_title::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: var(--vip-primary);
    border-radius: 2px;
}

.product_introduce_content {
    font-size: 14px;
    line-height: 26px;
    padding: 20px 28px;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: var(--vip-text-secondary);
}

/* ==================== 联系方式卡片 ==================== */
.product_contact_block {
    background-color: #fff;
    font-size: 14px;
    box-shadow: var(--vip-shadow-sm);
    overflow: hidden;
}

.contact_title {
    font-size: 16px;
    font-weight: 600;
    padding: 16px 20px;
    border-bottom: 1px solid var(--vip-border-light);
    color: var(--vip-text);
    position: relative;
    padding-left: 28px;
}

.contact_title::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: var(--vip-primary);
    border-radius: 2px;
}

.contact_all {
    padding: 16px 0;
}

.contact_list {
    padding: 6px 20px;
    word-wrap: break-word;
    color: var(--vip-text-secondary);
    line-height: 1.6;
}

/* ==================== 响应式（≤800px） ==================== */
@media (max-width: 800px) {
    .content_offset {
        margin: 0 10px;
        padding: 0 0;
        width: auto;
    }
}

@media (max-width: 960px) {
    .content_offset {
        margin: 0 5%;
    }
}
