﻿/* =====产品列表页面样式 ===== */

/* 产品列表容器 */
.product-list-section {
  padding: 40px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
}

.product-list-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 页面标题 */
.product-list-header {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 40px;
}

.product-list-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-list-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  margin: 0;
}

/* =====左右布局容器 ===== */
.product-layout-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  position: relative;
}

/* =====左侧分类导航样式 ===== */
.product-sidebar {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.sidebar-header {
  padding: 25px 20px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

/* 分类导航 */
.category-nav {
  padding: 10px;
}

.category-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 15px 16px;
  border: none;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 5px;
  position: relative;

}

.category-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.category-item:hover {
  background: rgba(59, 130, 246, 0.05);
  transform: translateX(5px);
}

.category-item.active {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  font-weight: 600;
}

.category-item.active::before {
  transform: scaleY(1);
}

.category-name {
  flex: 1;
  text-align: left;
  font-size: 1rem;
  color: #1e293b;
  font-weight: 500;
}

.category-item:hover .category-name {
  color: #3b82f6;
}

.category-item.active .category-name {
  color: #3b82f6;
  font-weight: 600;
}

.category-count {
  font-size: 0.85rem;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
  min-width: 35px;
  text-align: center;

}

.category-item.active .category-count {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
}

/* =====右侧产品内容区 ===== */
.product-main-content {
  flex: 1;
  min-width: 0;
}


/* 产品卡片 */
.product-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(59, 130, 246, 0.2);
}


.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  z-index: 2;
  line-height: initial;
}

.product-badge.new {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.product-viewslikes{position: absolute;top: 15px; left: 10px;z-index: 8}

/* 产品内容 */
.product-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}



.product-source {
  font-size: 0.85rem;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 12px;
  border-radius: 15px;
  font-weight: 500;
}



/* =====分页样式 ===== */
.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pagination {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pagination-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
  background: #3b82f6;
  color: #ffffff;
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.pagination-btn.active {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-info {
  color: #64748b;
  font-size: 0.95rem;
}

/* =====响应式设计 ===== */

/* 平板设备 */
@media (max-width: 1024px) {
  .product-sidebar {
    width: 240px;
  }


}

/* 移动端 */
@media (max-width: 768px) {
  .product-list-section {
    padding: 20px 0 60px;
  }

  .product-list-container {
    padding: 0 10px;
  }

  .product-list-header {
    margin-bottom: 20px;
    padding-top: 20px;
  }

  .product-list-title {
    font-size: 1.8rem;
  }

  .product-list-subtitle {
    font-size: 0.95rem;
  }

  /* 移动端布局 - 保持左右结构 */
  .product-layout-wrapper {
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }

  /* 移动端左侧分类栏 */
  .product-sidebar {
    width: 100px;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
    height: 85vh;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  .sidebar-header {
    padding: 12px 8px;
    font-size: 0.9rem;
    text-align: center;
  }

  .category-nav {
    padding: 5px;
  }

  .category-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 5px;
    gap: 4px;
    margin-bottom: 5px;
  }

  .category-item::before {
    display: none;
  }

  .category-name {
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
    word-break: keep-all;
  }

  .category-count {
    font-size: 0.7em;
    margin-left: 0;
    position: absolute;
    top:-5px;
    right: -5px;
  }

  /* 右侧产品区域 */
  .product-main-content {
    flex: 1;
    min-width: 0;
  }


  .product-card {
    margin: 0;
    border-radius: 12px;
  }



  .product-price {
    font-size: 0.8rem;
  }

  .product-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
    top: 8px;
    right: 8px;
  }


  /* 分页 */
  .pagination-container {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }

  .pagination {
    justify-content: center;
    gap: 8px;
  }

  .pagination-btn {
    min-width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

/* 小屏手机 */
@media (max-width: 480px) {
  .product-list-container {
    padding: 0 8px;
  }

  .product-list-title {
    font-size: 1.5rem;
  }

  .product-list-subtitle {
    font-size: 0.85rem;
  }

  /* 左侧分类更窄 */


  .sidebar-header {
    padding: 10px 5px;
    font-size: 0.85rem;
  }

  .category-item {
    padding: 8px 4px;
  }

  .category-name {
    font-size: 0.9rem;
  }

  .category-count {
    font-size: 0.65rem;
    padding: 2px 5px;
    min-width: 22px;
  }

  /* 产品布局 */
  .product-layout-wrapper {
    gap: 8px;
  }



  .product-content {
    padding: 8px;
  }




  .product-badge {
    padding: 3px 7px;
    font-size: 0.6rem;
    top: 6px;
    right: 6px;
  }

  .pagination-btn {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    font-size: 0.8rem;
  }

}

/* =====动画效果 ===== */
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* 产品卡片加载动画 - 仅PC端 */
@media (min-width: 769px) {
  .product-card {
    animation: fadeInUp 0.5s ease;
  }

  .product-card:nth-child(1) { animation-delay: 0.05s; }
  .product-card:nth-child(2) { animation-delay: 0.1s; }
  .product-card:nth-child(3) { animation-delay: 0.15s; }
  .product-card:nth-child(4) { animation-delay: 0.2s; }
  .product-card:nth-child(5) { animation-delay: 0.25s; }
  .product-card:nth-child(6) { animation-delay: 0.3s; }
  .product-card:nth-child(7) { animation-delay: 0.35s; }
  .product-card:nth-child(8) { animation-delay: 0.4s; }
  .product-card:nth-child(9) { animation-delay: 0.45s; }
}

/* 滚动条样式优化 */
.product-sidebar::-webkit-scrollbar {
  width: 6px;
}

.product-sidebar::-webkit-scrollbar-track {
  background: #f1f5f9;
}

.product-sidebar::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 3px;
}

.product-sidebar::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}



 
/* =====产品列表无图片产品列表样式--开始 ===== */

.promotion-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

/* ===== 全新科技感卡片设计 ===== */
.promotion-service-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 28px; 
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

/* 科技感动态边框 */
.promotion-service-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(135deg, 
    #3b82f6 0%, 
    #8b5cf6 25%, 
    #10b981 50%, 
    #3b82f6 75%, 
    #8b5cf6 100%);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.2;
  animation: borderFlow 4s linear infinite;
  z-index: 0;
}

@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.promotion-service-card:hover::before {
  opacity: 1;
  animation-duration: 2s;
}

/* 全息光效背景 */
.promotion-service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 0;
  animation: hologramShift 8s ease-in-out infinite;
}

@keyframes hologramShift {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: translate(10px, 10px) rotate(5deg);
    opacity: 0.3;
  }
}

.promotion-service-card:hover::after {
  opacity: 0.5;
  animation-duration: 4s;
}

.promotion-service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 
    0 24px 80px rgba(59, 130, 246, 0.25),
    0 12px 40px rgba(139, 92, 246, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.promotion-card-header {
  position: relative;
  padding: 5px 18px;
  background: linear-gradient(135deg, 
    rgba(241, 245, 249, 0.8) 0%, 
    rgba(255, 255, 255, 0.9) 50%,
    rgba(248, 250, 252, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  z-index: 2;
}

 
@keyframes elegantGlow {
  0%, 100% {
    opacity: 0;
    transform: scale(0.8) translate(0, 0);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1) translate(5px, 5px);
  }
}
.promotion-service-card:hover .promotion-card-header {
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.08) 0%, 
    rgba(139, 92, 246, 0.06) 25%,
    rgba(16, 185, 129, 0.05) 50%,
    rgba(59, 130, 246, 0.08) 75%,
    rgba(139, 92, 246, 0.06) 100%); 
}
 
.promotion-service-card:hover .promotion-card-header::before {
  opacity: 0.8;
  animation-duration: 2s;
}

/* 精致网格背景 */
.promotion-card-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(59, 130, 246, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s ease;
}

.promotion-service-card:hover .promotion-card-header::after {
  opacity: 0.4;
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(59, 130, 246, 0.12) 1.5px, transparent 0);
}

@keyframes techGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}

 
 
 
 
/* 卡片内容 - 科技感设计 */
.promotion-card-content {
  padding: 20px 20px 0px 20px;
flex: 1;
display: flex;
flex-direction: column;
position: relative;
z-index: 2;
background: rgba(255, 255, 255, 0.5);
}

.promotion-card-title {
font-size: 1.3rem;
font-weight: 900;
margin: 0;
line-height: 1.2;
letter-spacing: -0.02em;
background: linear-gradient(135deg, 
  #1e293b 0%, 
  #3b82f6 30%, 
  #8b5cf6 60%, 
  #b910a3 100%);
background-size: 200% 200%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
flex: 1;
padding: 14px 0;
z-index: 3;
animation: titleGradient 5s ease infinite;
filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.2));
}

@keyframes titleGradient {
0%, 100% {
  background-position: 0% 50%;
}
50% {
  background-position: 100% 50%;
}
}

/* 移除全息光效，避免文字模糊 */

.promotion-service-card:hover .promotion-card-title {
background: linear-gradient(135deg, 
  #3b82f6 0%, 
  #8b5cf6 30%, 
  #10b981 60%, 
  #3b82f6 100%);
background-size: 200% 200%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation-duration: 2s;
}

.promotion-card-desc {
color: #475569;
line-height: 1.8;
font-size: 0.95rem; 
flex: 1;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
position: relative;
z-index: 2;
margin-bottom:20px;
}

.promotion-card-features {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 24px;
position: relative;
z-index: 2;
}


.promotion-card-price {

  padding:20px 0px ;
  display: flex
;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
  position: relative; ;
  flex-direction: row;
  align-content: center;

}



.promotion-card-price-left {
display: flex;
align-items: center; 
flex-wrap: nowrap;
position: relative;
z-index: 1;
}

.price-value {
font-size: 1.2rem;
font-weight: 900;
background: linear-gradient(135deg, 
  #3b82f6 0%, 
  #8b5cf6 50%, 
  #10b981 100%);
background-size: 200% 200%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: -0.02em;
line-height: 1.2;
animation: priceGradient 4s ease infinite;
filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

@keyframes priceGradient {
0%, 100% {
  background-position: 0% 50%;
}
50% {
  background-position: 100% 50%;
}
}

.price-label {
font-size: 0.85rem; 
font-weight: 500;
color: #64748b;
position: relative;
}

.price-unit {
font-size: 0.85rem; 
font-weight: 500;
color: #64748b;
position: relative;
}

.price-source-text {
font-size: 0.8rem; 
font-weight: 500;
color: #94a3b8;
position: relative;
padding-left: 12px;
}

.price-source-text::before {
content: '';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 1px;
height: 12px;
background: linear-gradient(180deg, 
  transparent 0%, 
  #cbd5e1 50%, 
  transparent 100%);
}

.promotion-card-actions {
display: flex;
gap: 12px;
padding: 0 20px 32px;
margin-top: auto;
position: relative;
z-index: 2;
}

  
.promotion-btn-primary {
  flex: 1; 
  background-size: 200% 200%;
  color: #3b82f6 ;
  padding: 10px 20px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 0px 2px rgba(59, 130, 246, 0.4);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden; 
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 80%; margin: auto;
  }
  

.promotion-service-card:hover .promotion-btn-primary{
transform: translateY(-4px);

background: linear-gradient(135deg, 
  #3b82f6 0%, 
  #8b5cf6 50%, 
  #10b981 100%);
background-size: 200% 200%;
box-shadow: 
0 0px 10px rgba(59, 130, 246, 0.5),
0 6px 14px rgba(139, 92, 246, 0.4),
0 0 6px rgba(16, 185, 129, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.3);
animation-duration: 1.5s;
color: #fff;
}

.promotion-btn-primary:active {
transform: translateY(-2px);
}

.promotion-btn-secondary {
  flex: 1; 
  color: #082747a1;
  border: 2px solid #c1d4f442;
  background-clip: padding-box;
  padding: 10px ;
  border-radius: 16px;
  text-decoration: none; 
  font-size: 14px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative; 
  text-transform: uppercase;
  letter-spacing: 0.5px; 
}

.promotion-btn-secondary::before {
content: '';
position: absolute;
inset: -2px;
border-radius: 16px;
padding: 2px;
background: linear-gradient(135deg, 
  #3b82f6 0%, 
  #8b5cf6 50%, 
  #10b981 100%);
background-size: 200% 200%;
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
opacity: 0;
transition: opacity 0.4s ease;
z-index: 0;
animation: borderFlow 3s linear infinite;
}
.promotion-service-card:hover .promotion-btn-secondary{ 
  background: linear-gradient(135deg, #1e293b 0%, #3b82f6 30%, #8b5cf6 60%, #b910a3 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }
.promotion-service-card:hover .promotion-btn-secondary::before {
opacity: 1;
animation-duration: 1.5s;
}

.promotion-btn-secondary::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 0;
height: 100%;
background: linear-gradient(135deg, 
  rgba(59, 130, 246, 0.1) 0%, 
  rgba(139, 92, 246, 0.1) 100%);
transition: width 0.4s ease;
z-index: 0;
} 
.promotion-btn-secondary:hover {
color: #3b82f6;
transform: translateY(-4px);
box-shadow: 
  0 8px 24px rgba(59, 130, 246, 0.2),
  0 0 20px rgba(139, 92, 246, 0.15),
  inset 0 1px 0 rgba(255, 255, 255, 1);
}

.promotion-btn-secondary:hover::after {
width: 100%;
}

.promotion-btn-secondary:active {
transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 1024px) {
.promotion-sidebar {
  width: 240px;
}

.promotion-service-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
}

@media (max-width: 768px) {
.promotion-content-section {
  padding: 40px 0 60px;
}

.promotion-nav-wrapper {
  flex-direction: column;
  gap: 15px;
}

/* 隐藏PC端导航 */
.promotion-sidebar {
  display: none;
}

.promotion-service-grid {
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}


.promotion-service-card:hover {
  transform: translateY(-4px);
}

.promotion-card-header {
  padding: 10px ;
  text-align: center;
}

.promotion-card-content{ padding: 10px;}
.promotion-card-title {
  font-size: 1.5rem;
  padding: 10px 0;
}

.promotion-card-title::before {
  left: -10px;
  height: 50%;
}

.promotion-card-desc {
  font-size:1rem;
  margin-bottom: 5px;
  line-height: 1.6;
}

.promotion-card-features {
  gap: 8px;
  margin-bottom: 15px;
}

.promotion-feature-tag {
  font-size: 0.75rem;
  padding: 5px 12px;
}

.promotion-feature-tag::before {
  display: none;
}

.promotion-card-price {
  margin-bottom: 0px;
  gap: 6px;
}

.price-value {
  font-size: 1.3rem;
}



.promotion-card-actions {
  padding: 0 20px 20px;
  gap: 10px;
}

.promotion-btn-primary,
.promotion-btn-secondary {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.promotion-btn-primary::before,
.promotion-btn-secondary::before {
  display: none;
}
} 

/* 移动端动画优化 */
@media (max-width: 768px) {
.promotion-service-card {
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.promotion-service-card:hover {
  transform: translateY(-4px);
}

.promotion-category-item:hover {
  transform: none;
}

/* 移动端禁用复杂动画 */

.promotion-btn-primary::before,
.promotion-btn-secondary::before {
  display: none;
}

.promotion-feature-tag::before {
  display: none;
}
}

