@import url(var.css);
.solution .solution_hot {
  padding: 120px 0;
}
.solution .solution_hot .title {
  padding-top: 16px;
}
.solution .solution_hot .subtitle {
  text-align: center;
  color: #898989;
  font-size: 18px;
}
.solution .solution_hot .hot_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.solution .solution_hot .hot_list .hot_item {
  margin-top: 40px;
  overflow: hidden;
}
.solution .solution_hot .hot_list .hot_item .item_img {
  width: 100%;
  height: 255px;
  object-fit: cover;
}
.solution .solution_hot .hot_list .hot_item .item_name {
  color: #261f1e;
  font-size: 22px;
}
.solution .solution_hot .hot_list .hot_item .item_des {
  color: #898989;
  font-size: 14px;
  margin-top: 12px;
  height: 66px;
  margin-bottom: 36px;
}
.solution .solution_hot_phone {
  display: none;
}
.solution .solution_all {
  padding: 120px 0;
  background-color: #f2f2f2;
}
.solution .solution_all .subtitle {
  color: #898989;
  font-size: 18px;
  text-align: center;
}
.solution .solution_all .all_detail .header {
  display: flex;
  gap: 40px;
}
.solution .solution_all .all_detail .header .header_icon {
  padding: 10px 12px;
  border: 1px solid #ccc;
  transition: var(--primary-transition);
}
.solution .solution_all .all_detail .header .header_icon path {
  fill: var(--primary-color);
}
.solution .solution_all .all_detail .header .header_icon:hover {
  background-color: var(--primary-color);
}
.solution .solution_all .all_detail .header .header_icon:hover path {
  fill: white;
}
.solution .solution_all .all_detail .header .cate {
  display: flex;
  gap: 100px;
  flex-wrap: nowrap;
  overflow-x: hidden;
  align-items: center;
}
.solution .solution_all .all_detail .header .cate span {
  text-wrap: nowrap;
  cursor: pointer;
  color: #261f1e;
  font-size: 18px;
  position: relative;
  transition: var(--primary-transition);
}
.solution .solution_all .all_detail .header .cate span:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -8px;
  background-color: var(--primary-color);
  transition: var(--primary-transition);
}
.solution .solution_all .all_detail .header .cate :hover {
  color: var(--primary-color);
}
.solution .solution_all .all_detail .header .cate :hover:after {
  width: 100%;
}
.solution .solution_all .all_detail .header .cate .active {
  color: var(--primary-color);
}
.solution .solution_all .all_detail .header .cate .active:after {
  width: 100%;
}
.solution .solution_all .all_detail .content {
  margin-top: 40px;
  display: flex;
  gap: 100px;
}
.solution .solution_all .all_detail .content .sidebar {
  display: flex;
  flex-direction: column;
  gap: 100px;
  color: #261f1e;
  font-size: 18px;
  border-left: 1px solid #ccc;
  padding-left: 30px;
  height: fit-content;
}
.solution .solution_all .all_detail .content .sidebar span {
  cursor: pointer;
}
.solution .solution_all .all_detail .content .sidebar .active {
  color: var(--primary-color);
  position: relative;
}
.solution .solution_all .all_detail .content .sidebar .active:after {
  left: -40px;
  top: 50%;
  position: absolute;
  transform: translate(50%, -50%);
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
}
.solution .solution_all .all_detail .content .content_list {
  flex: 1;
}
.solution .solution_all .all_detail .content .content_list .content_item {
  padding-bottom: 40px;
  display: flex;
}
.solution .solution_all .all_detail .content .content_list .content_item .item_img {
  width: 460px;
  height: 260px;
}
.solution .solution_all .all_detail .content .content_list .content_item .item_text {
  background-color: white;
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.solution .solution_all .all_detail .content .content_list .content_item .item_text .text_header .header_title {
  font-size: 22px;
  color: #261f1e;
}
.solution .solution_all .all_detail .content .content_list .content_item .item_text .text_header .header_subtitle {
  color: #898989;
  font-size: 14px;
}
.solution .solution_all_phone {
  display: none;
}
@media screen and (max-width: 680px) {
  .solution {
    width: 100%;
  }
  .solution .solution_hot {
    display: none;
  }
  .solution .solution_hot_phone {
    padding: 0 16px;
    padding-top: 40px;
    padding-bottom: 80px;
    display: block;
  }
  .solution .solution_hot_phone .title {
    margin: 0;
  }
  .solution .solution_hot_phone .subtitle {
    color: #898989;
    font-size: 14.5px;
    font-weight: 400;
  }
  .solution .solution_hot_phone .carousel {
    position: relative;
  }
  .solution .solution_hot_phone .carousel .carousel_list .carousel_item {
    box-shadow: 0 5px 5px 3px #ececec;
  }
  .solution .solution_hot_phone .carousel .carousel_list .carousel_item .item_img {
    height: 203px;
    width: 100%;
    object-fit: cover;
  }
  .solution .solution_hot_phone .carousel .carousel_list .carousel_item .item_text {
    padding: 20px;
  }
  .solution .solution_hot_phone .carousel .carousel_list .carousel_item .item_text .item_name {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .solution .solution_hot_phone .carousel .carousel_list .carousel_item .item_text .item_des {
    margin-top: 10px;
    color: #898989;
    font-size: 13px;
  }
  .solution .solution_hot_phone .carousel .swiper-pagination {
    bottom: -30px;
    text-align: center;
  }
  .solution .solution_hot_phone .carousel .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #1e5096;
  }
  .solution .solution_all {
    display: none;
  }
  .solution .solution_all_phone {
    background-color: #f2f2f2;
    padding: 40px 16px;
    display: block;
  }
  .solution .solution_all_phone .title {
    margin: 0;
  }
  .solution .solution_all_phone .subtitle {
    color: #898989;
    font-size: 14.5px;
    font-weight: normal;
  }
  .solution .solution_all_phone .solution_select {
    display: flex;
    background-color: white;
  }
  .solution .solution_all_phone .solution_select .select {
    flex: 50%;
    border: none;
    color: var(--primary-color);
    height: 60px;
    text-align: center;
    font-size: 16.6px;
  }
  .solution .solution_all_phone .solution_select .select:focus-visible {
    outline: none;
  }
  .solution .solution_all_phone .solution_industry .solution_title,
  .solution .solution_all_phone .solution_universal .solution_title {
    font-size: 16.6px;
    color: #261f1e;
    padding: 20px 0;
  }
  .solution .solution_all_phone .solution_industry .solution_list .solution_item,
  .solution .solution_all_phone .solution_universal .solution_list .solution_item {
    margin-bottom: 20px;
    background-color: white;
    padding: 10px;
    display: flex;
    box-shadow: 0 0 10px 2px #ccc;
    gap: 10px;
  }
  .solution .solution_all_phone .solution_industry .solution_list .solution_item .item_img,
  .solution .solution_all_phone .solution_universal .solution_list .solution_item .item_img {
    width: 104px;
    height: 68px;
  }
  .solution .solution_all_phone .solution_industry .solution_list .solution_item .item_text,
  .solution .solution_all_phone .solution_universal .solution_list .solution_item .item_text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    flex: 1;
    overflow: hidden;
  }
  .solution .solution_all_phone .solution_industry .solution_list .solution_item .item_text .item_name,
  .solution .solution_all_phone .solution_universal .solution_list .solution_item .item_text .item_name {
    font-size: 16.6px;
    color: #261f1e;
  }
  .solution .solution_all_phone .solution_industry .solution_list .solution_item .item_text .item_des,
  .solution .solution_all_phone .solution_universal .solution_list .solution_item .item_text .item_des {
    font-size: 13.5px;
    color: #898989;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
