/* 中誉热门产品组件样式 */
.zhongyu-hot-goods {
    padding: 140px 0;
    background: #f8f8f8;
  }
  
  @media (min-width: 1800px) {
    .zhongyu-hot-goods .container {
      max-width: 1600px;
    }
  }
  
  .zhongyu-hot-goods-content {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  /* 左侧内容区域 */
  .zhongyu-hot-goods-left {
    /* flex: 1; */
    width: calc(25% - 15px);
    height: 100%;
    background: #fff;
    aspect-ratio: 384/599;
  }
  
  .zhongyu-hot-goods-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: center;
  }

  
  .zhongyu-hot-goods-title {
    font-family: var(--title-font-family, 'Montserrat', sans-serif);
    font-size: var(--zhongyu-title, 36px);
    font-weight: 700;
    line-height: 1.17;
    color: var(--color-primary);
    margin: 0;
    padding: 0 34px;
  }
  
  .zhongyu-hot-goods-description {
    font-family: var(--font-family, 'Montserrat', sans-serif);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.29;
    color: #595757;
    margin: 0;
    padding: 0 34px;
  }
  
  .zhongyu-hot-goods-buttons {
    position: relative;
    width: 100%;
    padding: 0 34px;
  }
  
  .zhongyu-hot-goods-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 8px; */
    width: 100%;
    padding: 16px 0;
    font-family: var(--font-family, 'Montserrat', sans-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.22;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #0C3054;
    border-bottom: 1px solid #023163;
  }
  
    .zhongyu-hot-goods-button:hover{
      color:#fff;
    }
  .zhongyu-hot-goods-buttons:hover{
    background:#0C3054;
  }
 .zhongyu-hot-goods-buttons{
   transition:all 0.3s ease;
 }
  
  .zhongyu-hot-goods-button-text {
    white-space: nowrap;
  }
  
  .zhongyu-hot-goods-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
  }
  
  /* 右侧产品展示区域 */
  .zhongyu-hot-goods-right {
    flex: 1;
  }
  
  .zhongyu-hot-goods-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .zhongyu-hot-goods-product {
    position: relative;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 384/599;
  }
  
  
  .zhongyu-hot-goods-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    position: relative;
    width: 100%;
  }
  
  .zhongyu-hot-goods-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .zhongyu-hot-goods-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
  }
  
  .zhongyu-hot-goods-product:hover .zhongyu-hot-goods-product-image img {
    transform: scale(1.05);
  }
  
  .zhongyu-hot-goods-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%); */
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  

  
  .zhongyu-hot-goods-product-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 30px;
    padding: 30px;
  }
  
  .zhongyu-hot-goods-product-title {
    font-family: var(--title-font-family, 'Montserrat', sans-serif);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.22;
    color: #fff;
    margin: 0 0 10px 0;
  }
  
  .zhongyu-hot-goods-product-desc {
    font-family: var(--font-family, 'Montserrat', sans-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.22;
    color: #fff;
    margin: 0 0 60px 0;
  }
  
  .zhongyu-hot-goods-product-arrow {
    position: absolute;
    bottom: 0;
    left: 30px;
    width: 30px;
    height: 30px;
    color: #fff;
    transition: all 0.3s ease;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
  /* ========================================
     响应式设计 - 桌面优先断点系统
     
     断点说明（从大到小依次覆盖）：
     - 默认: ≥1200px (桌面大屏)
     - lg: <1200px   (桌面小屏)
     - md: <992px    (平板)
     - sm: <768px    (手机横屏)
     - xs: <576px    (手机竖屏)
     ======================================== */
  
  /* Large (lg) - <1200px */
  @media screen and (max-width: 1400px) {
    .zhongyu-hot-goods-product-title {
      font-size: 20px;
    }
  }
  @media (max-width: 1199.98px) {
    .zhongyu-hot-goods-left{
      width:100%;
      aspect-ratio:unset;
      padding: 20px 0;
    }
      .zhongyu-hot-goods-buttons{
        /* width:400px;
        display:inline-flex; */
      }
    .zhongyu-hot-goods {
      padding: 100px 0;
    }
    
    .zhongyu-hot-goods-content {
      gap: 20px;
      flex-wrap: wrap;
    }
    
    
    .zhongyu-hot-goods-description {
      font-size: 14px;
    }
    
    .zhongyu-hot-goods-product {
    }
    
    .zhongyu-hot-goods-product-content {
      padding: 25px;
    }
    
    .zhongyu-hot-goods-product-title {
      font-size: 20px;
    }
    
    .zhongyu-hot-goods-product-desc {
      font-size: 14px;
      margin-bottom: 40px;
    }
  }
  
  /* Medium (md) - <992px */
  @media (max-width: 991.98px) {
    .zhongyu-hot-goods {
      padding: 80px 0;
    }
    .zhongyu-hot-goods-right{
      width:100%;
    }
    
    .zhongyu-hot-goods-content {
      flex-direction: column;
      text-align: center;
    }
    
    .zhongyu-hot-goods-left {
      max-width: 100%;
    }
    
    .zhongyu-hot-goods-products {
      /* grid-template-columns: repeat(2, 1fr); */
      gap: 20px;
    }
    
    
    .zhongyu-hot-goods-product {
    }
  }
  
  /* Small (sm) - <768px */
  @media (max-width: 767.98px) {
    .zhongyu-hot-goods {
      padding: 60px 0;
    }
    
    .zhongyu-hot-goods-content {
    }
    
    .zhongyu-hot-goods-products {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    
    .zhongyu-hot-goods-description {
      font-size: 15px;
    }
    
    .zhongyu-hot-goods-button {
      padding: 10px 0;
      font-size: 14px;
    }
    
    .zhongyu-hot-goods-product {
    }
    
    .zhongyu-hot-goods-product-content {
      padding: 20px;
    }
    
    .zhongyu-hot-goods-product-title {
      font-size: 18px;
    }
    
    .zhongyu-hot-goods-product-desc {
      font-size: 14px;
      margin-bottom: 60px;
    }
  }
  
  /* Extra Small (xs) - <576px */
  @media (max-width: 575.98px) {
    .zhongyu-hot-goods {
      padding: 40px 0;
    }
    
    .zhongyu-hot-goods-content {
      gap: 30px;
    }
    
    
    .zhongyu-hot-goods-description {
      font-size: 14px;
    }
    
    .zhongyu-hot-goods-button {
      padding: 8px 0;
      font-size: 13px;
    }
    
    .zhongyu-hot-goods-product {
    }
    
    .zhongyu-hot-goods-product-content {
    }
    
    .zhongyu-hot-goods-product-title {
      font-size: 16px;
    }
    
    .zhongyu-hot-goods-product-desc {
      font-size: 13px;
      margin-bottom: 25px;
    }
  }
  
  /* 确保组件样式隔离 */
  .zhongyu-hot-goods *,
  .zhongyu-hot-goods *::before,
  .zhongyu-hot-goods *::after {
    box-sizing: border-box;
  }
  
  /* 动画效果 */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .zhongyu-hot-goods {
    animation: fadeInUp 0.6s ease-out;
}
