.approach-wrapper {
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
}

.approach-left {
  flex: 1;
  position: relative;
  z-index: 2;
}

.approach-wrapper .subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.approach-wrapper .label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF602C;
  display: inline-block;
}

.approach-wrapper .main-title {
  font-size: 60px;
  margin-top: 24px;
}

.approach-items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.approach-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  font-size: 24px;
}

.approach-item.active .item-label {
  background-size: 100% 100%;
}

.approach-item .item-plus line {
  stroke: #000;
}

.approach-item .item-label {
  background-image: linear-gradient(transparent calc(100% - 2px), currentColor 2px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.7s;
}

.approach-right {
  flex: 0 0 55%;
  position: relative;
  overflow: hidden;
  min-height: 580px;
}

.approach-right .img-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
}

.approach-right .img-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.approach-right .img-slide.active {
  opacity: 1;
}