#solution .swiper-container {
  height: 530px;
}

#solution .content-title {
  font-size: 37px;
  color: #000000;
  line-height: 44px;
  padding-top: 55px;
  margin-bottom: 37px;
}

#solution .swiper-container .swiper-slide {
  width: 100%;
  height: 100%;
}

#solution .swiper-slide .title {
  color: #1d2129;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

#solution .swiper-slide .content {
  color: #4e5969;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 20px;
}

#solution .swiper-slide .children {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 10px;
  color: rgb(29, 33, 41);
  font-size: 16px;
}

#solution .swiper-slide .children>div {
  line-height: 30px;

}

#solution .swiper-slide .children>div::before {
  content: "";
  display: inline-block;
  background-color: rgb(57, 199, 254);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 10px;
}

#solution .solution-desktop {
  width: 100%;
  height: 550px;
  margin-top: 50px;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 10px;
  flex-direction: row;
  box-shadow: rgba(18, 43, 67, 0.1) 0px 0px 10px;
  margin-bottom: 100px;
}

#solution .left {
  height: 100%;
  background-color: rgb(227, 242, 255);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-radius: 10px 0px 0px 10px;
}

#solution .left-item {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  width: 200px;
  gap: 10px;
}

#solution .left-item.active {
  background: linear-gradient(151deg, #198dfc 0%, #198dfc 50%, #4be9ff 100%);
  border-radius: 6px;
  cursor: pointer;
  gap: 10px;
}

#solution .left-item:hover {
  background-color: #e3f2ff;
  cursor: pointer;
}

#solution .left-item>div {
  color: #1d2129;
  font-size: 16px;
}

#solution .left-item:hover>div {
  color: #198dfc;
  font-size: 16px;
}

#solution .left-item.active>div {
  color: #fff;
  font-size: 16px;
}

#solution .right {
  position: relative;
  width: 100%;
  height: 100%;
}

#solution .right-bg {
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 116px 0 40px;
}

#solution .right-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(163deg, #f0f8ff 35%, rgba(240, 248, 255, .5) 100%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 116px 0 40px;
}

#solution .right-content>div:first-child {
  width: 100%;
}

#solution .btn-default {
  position: relative;
  height: 48px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#solution .btn-default::before {
  user-select: none;
  pointer-events: none;
  content: "";
  position: absolute;
  border-radius: 6px;
  padding: 1px;
  background: linear-gradient(151deg, #198dfc, #4be9ff);
  inset: 0;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

#solution .btn-default:hover .btn-text {
  cursor: pointer;
  border-radius: 6px;
  background-color: #198dfc29;
}

#solution .btn-text {
  width: 100%;
  height: 100%;
  line-height: 100%;
  text-align: center;
  font-size: 16px;
  color: #198dfc;
  padding: 14px 44px;
}

#solution .btn-overflow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border: 1px solid transparent;
  background-color: transparent;
  height: 48px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  #solution .swiper-container {
    margin-left: -20px;
    margin-right: -20px;
  }

  #solution .btn-default {
    min-width: 160px;
    margin-top: 20px;
  }

  #solution .swiper-slide .title {
    text-align: center;
  }

  #solution .btn {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 40px;
  }

  #solution .right-content {
    padding: 40px 20px;
  }

  #solution .right-bg {
    background-position: center;
  }

  #solution .swiper-slide .children4 {
    grid-template-columns: repeat(1, 1fr);
  }

  #solution .common-wrapper {
    padding: 0 20px;
  }

  #solution .content-title {
    display: flex;
    justify-content: center;
  }
  #solution .show-desktop {
    display: none;
  }

  #solution .show-mobile {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  #solution .swiper-slide .children {
    width: 50%;
  }

  #solution .swiper-slide .children4 {
    width: 85%;
  }

  #solution .solution-desktop {
    display: flex;
  }

  #solution .btn {
    margin-bottom: 80px;
  }

  #solution .right-bg {
    border-radius: 0 10px 10px 0;
  }

  #solution .common-wrapper {
    width: 1280px;
    margin: 0 auto;
  }
  #solution .show-desktop {
    display: block;
  }

  #solution .show-mobile {
    display: none;
  }
}