/* 中誉解决方案组件样式 */
.zhongyu-solution {
  padding: 140px 0;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1800px) {
  .zhongyu-solution .container {
    max-width: 1600px;
  }
}

/* 标题区域 */
.zhongyu-solution-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.zhongyu-solution-title {
  font-family: var(--title-font-family, 'Roboto', sans-serif);
  font-size: var(--zhongyu-title, 36px);
  font-weight: 700;
  line-height: 1.17;
  color: var(--color-primary);
  margin: 0 0 10px 0;
}

.zhongyu-solution-subtitle {
  font-family: var(--font-family, 'Roboto', sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.17;
  color: var(--color-primary);
  margin: 0;
}

/* 解决方案展示区域 */
.zhongyu-solution-content {
  display: flex;
  gap: 0;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* 左侧图片区域 */
.zhongyu-solution-image {
  flex: 1;
  position: relative;
  aspect-ratio: 938/527;
  overflow: hidden;
  border-radius: 0;
  min-width: 0;
}

.zhongyu-solution-image-swiper {
  width: 100%;
  height: 100%;
}

.zhongyu-solution-image .swiper-slide {
  width: 100%;
  height: 100%;
}

.zhongyu-solution-image .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* 右侧内容区域 */
.zhongyu-solution-info {
  flex: 1;
  background: #EBEBEB;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 462px;
  min-width: 0;
}

.zhongyu-solution-details {
  flex: 1;
  position: relative;
  padding: 0 240px 0 110px;
  overflow: hidden;
}

.zhongyu-solution-content-swiper {
  width: 100%;
  height: 100%;
}

.zhongyu-solution-content-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.zhongyu-solution-detail {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.zhongyu-solution-case-title {
  font-family: var(--font-family, 'Roboto', sans-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.17;
  color: var(--color-primary);
  margin: 0 0 28px 0;
  max-width: 623px;
}

.zhongyu-solution-description {
  display: flex;  
  align-items: flex-start;
  gap: 12px;
}

.zhongyu-solution-description svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.zhongyu-solution-desc-content {
  flex: 1;
  font-family: var(--font-family, 'Roboto', sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 2.19;
  display: flex;
  flex-direction: column;
  color: #595757;
}
.zhongyu-solution-desc-content  .desc-item{
  
}
.zhongyu-solution-desc-content p {
  margin: 0;
}

/* 轮播控制器 */
.zhongyu-solution-controls {
  position: absolute;
  display: flex;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  border-radius: 4px;
  width: 80px;
}

.zhongyu-solution-prev,
.zhongyu-solution-next {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  color: #fff;
  margin: 0 !important;
  position: relative !important;
}

.zhongyu-solution-prev:after,
.zhongyu-solution-next:after {
  display: none !important;
}



.zhongyu-solution-prev svg,
.zhongyu-solution-next svg {
  width: 24px;
  height: 24px;
}

.zhongyu-solution-pagination {
  display: flex;
  align-items: center;
  font-family: var(--font-family, 'Roboto', sans-serif);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.17;
  color: #FFFFFF;
  padding: 9px 10px;
  border-radius: 0;
}

.zhongyu-solution-current,
.zhongyu-solution-total {
  color: #FFFFFF;
}

.zhongyu-solution-divider {
  color: #FFFFFF;
  margin: 0 2px;
}

/* ========================================
   响应式设计 - 桌面优先断点系统
   
   断点说明（从大到小依次覆盖）：
   - 默认: ≥1200px (桌面大屏)
   - lg: <1200px   (桌面小屏)
   - md: <992px    (平板)
   - sm: <768px    (手机横屏)
   - xs: <576px    (手机竖屏)
   ======================================== */

/* Large (lg) - <1200px */
@media (max-width: 1400px) {
  .zhongyu-solution-controls{
    right: 50px;
  }
  .zhongyu-solution-details{
    padding-right: 220px;
    padding-left: 50px;
  }
  .zhongyu-solution-case-title{
    font-size: 20px;
  }
}
@media (max-width: 1199.98px) {
  .zhongyu-solution {
    padding: 100px 0;
  }

  .zhongyu-solution-header {
    margin-bottom: 50px;
  }


  .zhongyu-solution-details {
    padding-right: 180px;
    padding-left: 20px;
  }

  .zhongyu-solution-detail {
    top: 50px;
    left: 30px;
    right: 30px;
    bottom: 30px;
  }

  .zhongyu-solution-case-title {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .zhongyu-solution-desc-content {
    font-size: 15px;
    line-height: 2.0;
  }

  .zhongyu-solution-controls {
    padding: 0 30px;
  }
}

/* Medium (md) - <992px */
@media (max-width: 991.98px) {
  .zhongyu-solution {
    padding: 80px 0;
  }

  .zhongyu-solution-header {
    margin-bottom: 40px;
  }

  .zhongyu-solution-content {
    flex-direction: column;
    gap: 0;
  }

  .zhongyu-solution-image {
    aspect-ratio: 16/10;
  }

  .zhongyu-solution-info {
    min-height: auto;
  }

  .zhongyu-solution-details {
    padding: 40px 25px 50px;
  }

  .zhongyu-solution-detail {
    top: 40px;
    left: 25px;
    right: 25px;
    bottom: 25px;
  }

  .zhongyu-solution-case-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .zhongyu-solution-desc-content {
    font-size: 14px;
    line-height: 1.8;
  }

  .zhongyu-solution-controls {
    padding: 15px 25px;
    justify-content: center;
    bottom: 10px;
    top: auto;
    padding: 0;
    left: 50%;
    transform: translateX(-50%) translateY(0);
  }

  .zhongyu-solution-prev,
  .zhongyu-solution-next {
    width: 36px;
    height: 36px;
  }

  .zhongyu-solution-prev svg,
  .zhongyu-solution-next svg {
    width: 20px;
    height: 20px;
  }
}

/* Small (sm) - <768px */
@media (max-width: 767.98px) {
  .zhongyu-solution {
    padding: 60px 0;
  }

  .zhongyu-solution-header {
    margin-bottom: 30px;
  }


  .zhongyu-solution-image {
    aspect-ratio: 16/9;
  }

  .zhongyu-solution-details {
    /* padding: 30px 20px 20px; */
  }

  .zhongyu-solution-detail {
    top: 30px;
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .zhongyu-solution-case-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .zhongyu-solution-description {
    gap: 8px;
  }

  .zhongyu-solution-description svg {
    width: 14px;
    height: 14px;
  }

  .zhongyu-solution-desc-content {
    font-size: 13px;
    line-height: 1.7;
  }

  .zhongyu-solution-controls {
    /* padding: 12px 20px; */
    /* gap: 15px; */
  }

  .zhongyu-solution-prev,
  .zhongyu-solution-next {
    width: 32px;
    height: 32px;
  }

  .zhongyu-solution-prev svg,
  .zhongyu-solution-next svg {
    width: 18px;
    height: 18px;
  }

  .zhongyu-solution-pagination {
    font-size: 11px;
    padding: 6px 10px;
  }
}

/* Extra Small (xs) - <576px */
@media (max-width: 575.98px) {
  .zhongyu-solution {
    padding: 40px 0;
  }

  .zhongyu-solution-header {
    margin-bottom: 25px;
  }



  .zhongyu-solution-subtitle {
    font-size: 14px;
  }

  .zhongyu-solution-details {
    /* padding: 25px 15px 15px; */
  }

  .zhongyu-solution-detail {
    top: 25px;
    left: 15px;
    right: 15px;
    bottom: 15px;
  }

  .zhongyu-solution-case-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .zhongyu-solution-desc-content {
    font-size: 12px;
    line-height: 1.6;
  }

  .zhongyu-solution-controls {
    /* padding: 10px 15px; */
    /* gap: 12px; */
  }

  .zhongyu-solution-prev,
  .zhongyu-solution-next {
    width: 28px;
    height: 28px;
  }

  .zhongyu-solution-prev svg,
  .zhongyu-solution-next svg {
    width: 16px;
    height: 16px;
  }

  .zhongyu-solution-pagination {
    font-size: 10px;
    padding: 5px 8px;
  }
}

/* 确保组件样式隔离 */
.zhongyu-solution *,
.zhongyu-solution *::before,
.zhongyu-solution *::after {
  box-sizing: border-box;
}

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

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

/* 轮播过渡动画 */
.zhongyu-solution-slide,
.zhongyu-solution-detail {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

