.product-card button {
    position: relative;
    z-index: 10; /* 确保按钮在视觉层级上高于产品卡片 */
    cursor: pointer; /* 添加指针样式明确可点击 */
    padding: 8px 16px; /* 增加可点击区域 */
    display: inline-block;
    pointer-events: auto;
    user-select: none;
}

.product-card {
    position: relative;
    z-index: 1; /* 产品卡片z-index设为较低值 */
}

/* 增强按钮交互效果 */
.product-card button[data-url]:hover {
    opacity: 0.9;
}

.product-card button[data-url]:active {
    opacity: 0.8;
}