/* 强制修改卡片外边框圆角（核心） */
.product-card {
  border-radius: 12px !important; /* 数值可改：8px=小圆角，20px=大圆角，0=直角 */
  border: 3px solid #ebebeb !important; /* 保留原边框样式，仅改圆角 */
  overflow: hidden !important; /* 防止内部内容溢出圆角，必加！ */
}

/* 同步修改卡片头部圆角（和外边框呼应，视觉更统一） */
.product-card-header {
  border-radius: 12px 12px 0 0 !important; /* 顶部两个角和外边框一致，底部直角 */
}

/* 可选：同步修改按钮圆角，风格统一 */
.buy-now-button {
  border-radius: 8px !important; /* 按钮圆角略小于卡片，更协调 */
}


/* 新增Logo样式（绝对定位在左上角）有报错 */
//.product-card::before {
//  content: "";
//  position: absolute;
//  top: 10px; /* 距离顶部10px */
 // left: 10px; /* 距离左侧10px */
 // width: 50px; /* Logo宽度 */
 // height: 50px; /* Logo高度 */
 // background: url("https://www.rongyunidc.cn/img/gouwuche/logo.png") no-repeat center;
 // background-size: 100% 100%; /* 适配尺寸 */
 // z-index: 10; /* 确保Logo在最上层 */
  /* 可选：加个半透明背景，防止Logo和内容重叠看不清 */
  // background-color: rgba(255,255,255,0.8);
//  border-radius: 4px;
// //}

/* 给卡片内容加左内边距，避免被Logo遮挡 */
// .product-card-header {
 // padding-left: 70px !important; /* 大于Logo宽度+间距 */
//}