.section1 .cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section1 .cards .card {
  padding: 30px 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  transition: all 0.3s ease;
  background: #f4f4f4;
}
.section1 .cards .card .left-part {
  position: relative;
}
.section1 .cards .card .left-part img {
  transition: all 0.3s ease;
}
.section1 .cards .card .left-part img.normal {
  opacity: 1;
}
.section1 .cards .card .left-part img.active {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.section1 .cards .card:hover {
  background: linear-gradient(156deg, #e7c215 0%, #cb8e09 100%);
}
.section1 .cards .card:hover img.normal {
  opacity: 0;
}
.section1 .cards .card:hover img.active {
  opacity: 1;
}
.section1 .cards .card:hover .right-part {
  color: #fff;
}
.section1 .cards .card:hover .right-part .title {
  color: #fff;
}
.section1 .cards .card .right-part {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: Alibaba-PuHuiTi;
  font-size: 14px;
  color: #666666;
  transition: all 0.3s ease;
}
.section1 .cards .card .right-part .title {
  font-size: 20px;
  line-height: 36px;
  color: #222222;
  font-weight: bold;
  transition: all 0.3s ease;
}
.section1 .left-column {
  width: 100%%;
  margin-right: auto;
}
.section1 .right-column {
  width: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.section1 .right-column img {
  border-radius: 0px 8px 8px 0px;
  width: 100%;
 
  position: absolute;
  object-fit: cover;
  object-position: right;
  overflow: hidden;
}
.section2 .left-part {
  background: linear-gradient(180deg, #fafafa 0%, #f4f4f4 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.section2 .right-part {
  top: 0;
  right: 0;
  width: 70%;
  margin-left: auto;
}
.section2 .right-part img {
  height: 31.25rem;
}
@media screen and (max-width: 768px) {
  .section1 .cards {
    flex-direction: column;
    gap: 16px;
  }
  .section1 .cards .card {
    padding: 20px 24px;
    gap: 16px;
  }
  .section1 .cards .card .left-part img {
    width: 100%;
    height: auto;
  }
  .section1 .cards .card .right-part {
    font-size: 12px;
  }
  .section1 .cards .card .right-part .title {
    font-size: 16px;
  }
  .section1 .left-column {
    width: 100%;
    margin-right: 0;
  }
  .section1 .left-column .content {
    margin-right: 0;
  }
  .section1 .right-column {
    position: relative;
    width: 100%;
    height: auto;
  }
  .section2 .bottom-parts {
    flex-direction: column;
  }
  .section2 .left-part {
    width: 100%;
    height: auto;
    padding: 2rem 1.5rem;
    position: relative;
  }
  .section2 .right-part {
    width: 100%;
    margin-left: 0;
    position: relative;
  }
  .section2 .right-part img {
    height: auto;
  }
}
