/* 原有样式保持不变 */
p.stock-info {
  display: none;
}
 
.product-card {
    border-radius: 12px;
    overflow: hidden;
}
 
.product-card-header {
    border-radius: 12px 12px 0 0;
}
 
.product-Parameters {
    border-radius: 0 0 12px 12px;
}
 
.tisuyun_bq {
    border-radius: 6px;
}
 
.buy-now-button {
    border-radius: 6px;
}
 
/* 交互效果 */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
 
.buy-now-button {
    transition: all 0.3s ease;
}
 
.buy-now-button:hover {
    opacity: 0.9;
}
 
.buy-now-button:active {
    transform: translateY(1px);
}
 
.price {
    transition: transform 0.3s ease;
}
 
.product-card:hover .price {
    transform: scale(1.1);
}
 
.header-title h5::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 8px;
    vertical-align: middle;
    background-image: url("/favicon.ico");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
 
/* 新增UI优化 */
.product-card {
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
 
.product-card:hover {
    border-color: #d0d0d0;
}
 
.amount {
    font-weight: 700;
}
 
.tisuyun_bq {
    transition: opacity 0.3s ease, transform 0.2s ease;
}
 
.tisuyun_bq:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}
 
.tisuyun_adv {
    transition: all 0.3s ease;
}
 
.tisuyun_adv:hover {
    background: #0008ff;
    color: #fff !important;
}
 
.header-title h5::before {
    transition: transform 0.3s ease;
}
 
.product-card:hover .header-title h5::before {
    transform: rotate(5deg);
}
 
.buy-now-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
 
/* 产品描述文字优化 */
.product-description {
    transition: color 0.3s ease;
}
 
.product-card:hover .product-description {
    color: #333;
}
 
/* 新增特别效果 - 低调精致 */
 
/* 卡片加载动画 */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 
.product-card {
    animation: cardFadeIn 0.6s ease-out;
}
 
/* 价格跳动效果 */
@keyframes priceGlow {
    0%, 100% {
        text-shadow: none;
    }
    50% {
        text-shadow: 0 0 8px rgba(231, 76, 60, 0.3);
    }
}
 
.product-card:hover .amount {
    animation: priceGlow 2s ease-in-out infinite;
}
 
/* 按钮微光扫过效果 */
.buy-now-button {
    position: relative;
    overflow: hidden;
}
 
.buy-now-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.8s ease;
}
 
.buy-now-button:hover::before {
    left: 100%;
}
 
/* 标签组微弹跳 */
.product-card:hover .tisuyun_bq:nth-child(1) {
    transition-delay: 0.1s;
}
 
.product-card:hover .tisuyun_bq:nth-child(2) {
    transition-delay: 0.2s;
}
 
.product-card:hover .tisuyun_bq:nth-child(3) {
    transition-delay: 0.3s;
}
 
/* 卡片内容轻微放大 */
.product-card:hover .product-card-body {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}
 
/* HR线条动画 */
hr {
    position: relative;
    overflow: hidden;
}
 
hr::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    transition: left 0.8s ease;
}
 
.product-card:hover hr::after {
    left: 100%;
}
 
/* 微妙的焦点指示器 */
.product-card:focus-within {
    outline: 2px solid rgba(102, 126, 234, 0.3);
    outline-offset: 2px;
}


.vz,
.product-features .moqi_bq, /* 精准定位product-features内的moqi_bq */
.moqi_bq {
    /* 背景与文字：同视觉程度的蓝色系 */
    background-color: rgba(235, 244, 255, 1) !important; /* 强制生效 */
    color: rgba(45, 108, 240, 1) !important; /* 强制生效 */
    
    /* 尺寸与间距 */
    margin: 0 2px 8px 0 !important;
    padding: 0 8px !important;
    height: 24px !important;
    min-width: max-content !important;
    /* 兼容低版本浏览器 */
    min-width: -webkit-max-content !important;
    min-width: -moz-max-content !important;
    
    /* 文字样式 */
    font-size: 12px !important;
    font-weight: bold !important;
    line-height: 24px !important;
    
    /* 边框与显示 */
    border-radius: 2px !important;
    display: inline-block !important;
    box-sizing: border-box !important; /* 防止padding撑大尺寸 */
}

/* 提示框专属样式 - 独立可复用 */
:root {
  /* 仅保留提示框所需的核心变量 */
  --primary-color: #2563eb;
  --primary-hover: #1d4ed8;
  --radius-lg: 12px;
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* 提示框外层间距优化 */
.bgw {
  margin-bottom: 1.5rem;
}

/* 提示框核心样式 */
.layui-elem-quote {
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: var(--shadow-md);
  padding: 1.25rem 1.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 提示框顶部渐变装饰条 */
.layui-elem-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
}

/* 蓝色主题提示框 */
.layui-elem-quote.blue-theme {
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.9) 0%, rgba(191, 219, 254, 0.8) 100%);
  color: #1e40af;
  border-color: rgba(59, 130, 246, 0.2);
}

/* 绿色主题提示框 */
.layui-elem-quote.green-theme {
  background: linear-gradient(135deg, rgba(209, 250, 229, 0.9) 0%, rgba(167, 243, 208, 0.8) 100%);
  color: #047857;
  border-color: rgba(16, 185, 129, 0.2);
}

/* 提示框内文本样式 */
.layui-elem-quote p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 500;
}

/* 提示框内链接样式 */
.layui-elem-quote a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.layui-elem-quote a:hover {
  border-bottom-color: var(--primary-color);
  color: var(--primary-hover);
}

/* 移动端适配 */
@media (max-width: 767px) {
  .layui-elem-quote {
    padding: 1rem 1.25rem;
  }
  
  .layui-elem-quote p {
    font-size: 0.8rem;
  }
}