/* ============================================================
 * 产品框（边框栏）小部件
 * ============================================================ */
.qing-pbox {
    border: 1px solid #e5e7eb;
    border-top: 2px solid #2563eb;
    border-radius: 2px;
    background: #fff;
    padding: 0;
}

/* 标题栏 */
.qing-pbox-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}
.qing-pbox-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
    line-height: 1.2;
}
.qing-pbox-more {
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
}
.qing-pbox-more:hover { text-decoration: underline; }

/* 产品网格：带分隔线的栅格（参考图样式） */
.qing-pbox-grid {
    gap: 0;
    border-top: 1px solid #e5e7eb;
}
.qing-pbox-grid .qing-pg-card {
    border: none;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0;
    box-shadow: none;
    padding: 20px;
}
.qing-pbox-grid .qing-pg-card:hover {
    box-shadow: none;
    transform: none;
    z-index: 1;
}
.qing-pbox-hover .qing-pbox-grid .qing-pg-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* 手机端一排 2 个 */
@media (max-width: 767px) {
    .qing-pbox-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .qing-pbox-grid .qing-pg-card { padding: 12px; }
    .qing-pbox-title { font-size: 17px; }
}

/* 隐藏产品价格 */
.qing-pg-price { display: none !important; }

/* 可定制内容 / 应用场景（左对齐简单行） */
.qing-pg-moq,
.qing-pg-feat {
    text-align: left;
    color: #555;
    font-size: 13px;
    line-height: 1.5;
}
.qing-pg-feat span {
    color: #103A8E;
    font-weight: 700;
}
.qing-pg-moq span {
    color: #103A8E;
    font-weight: 700;
}
