/* ===== 产品详情信息小部件 ===== */
.qing-pd-wrap {
    padding: 24px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

/* 标题 */
.qing-pd-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px;
    line-height: 1.3;
}

/* 简短描述 - 保留富文本内联样式 */
.qing-pd-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.qing-pd-desc p { margin: 0 0 3px; }
.qing-pd-desc div { margin: 0 0 2px; }
.qing-pd-desc strong, .qing-pd-desc b { display: block; }
.qing-pd-desc span { display: inline; }

/* OEM 区域 */
.qing-pd-oem-title {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
}
.qing-pd-oem-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}
.qing-pd-oem-list li {
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    border-left: 3px solid transparent;
}
.qing-pd-oem-list li:nth-child(odd) {
    background: #f5f5f5;
}
.qing-pd-oem-list li:nth-child(even) {
    background: #fff;
}

/* 库存 */
.qing-pd-inventory {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}
.qing-pd-inventory strong {
    color: #333;
}

/* 数量选择器 */
.qing-pd-qty {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 16px;
}
.qing-pd-qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    color: #1a56db;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: color .2s;
}
.qing-pd-qty-btn:hover {
    color: #0f3fa8;
}
.qing-pd-qty-input {
    width: 60px;
    height: 36px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    -moz-appearance: textfield;
}
.qing-pd-qty-input::-webkit-outer-spin-button,
.qing-pd-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* 按钮区 */
.qing-pd-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}
.qing-pd-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all .2s;
    border: none;
}
.qing-pd-btn-cart {
    background: #1a56db;
    color: #fff;
}
.qing-pd-btn-cart:hover {
    background: #0f3fa8;
    color: #fff;
}
.qing-pd-btn-inquiry {
    background: #fff;
    color: #1a56db;
    border: 2px solid #1a56db;
}
.qing-pd-btn-inquiry:hover {
    background: #1a56db;
    color: #fff;
    border-color: #1a56db;
}
.qing-pd-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* 社交图标 */
.qing-pd-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
}
.qing-pd-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1a56db;
    text-decoration: none;
    transition: color .2s ease;
}
.qing-pd-social a:hover {
    color: #e1241a;
}
.qing-pd-social svg {
    width: 20px;
    height: 20px;
}
