.solutionsList .listBox {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
}
.solutionsList .listBox .item {
  width: calc((100% - 44px) / 2);
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .solutionsList .listBox .item {
    width: 100%;
  }
}
.solutionsList .listBox .item:hover .pic::before,
.solutionsList .listBox .item:hover .titleBox {
  background: #13315F;
}
.solutionsList .pic {
  margin: 0 20px 0 0;
  position: relative;
  isolation: isolate;
}
.solutionsList .pic::before {
  content: "";
  position: absolute;
  background: #0099FF;
  display: block;
  inset: 20px -20px 0 20px;
  z-index: -1;
  transition: all 0.3s ease;
}
.solutionsList .titleBox {
  background: #0099FF;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding: 20px;
  margin: 0 0 20px 20px;
  gap: 60px;
}
@media screen and (max-width: 1000px) {
  .solutionsList .titleBox {
    margin: 0 0 10px 20px;
    gap: 20px;
  }
}
.solutionsList .titleBox::after {
  content: "";
  -webkit-mask: url("../images/icon/icon_more.svg") center no-repeat;
          mask: url("../images/icon/icon_more.svg") center no-repeat;
  background: #fff;
  width: 24px;
  height: 9px;
  display: block;
  flex-shrink: 0;
  margin: 0 5px;
}
.solutionsList .titleBox .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.solutionsList .titleBox .icon::before {
  content: "";
  height: 28px;
  width: 1px;
  background: #E5E5E5;
  position: absolute;
  right: -30px;
  display: block;
}
@media screen and (max-width: 1000px) {
  .solutionsList .titleBox .icon::before {
    right: -5px;
  }
}
.solutionsList .titleBox .icon img {
  filter: brightness(500);
}
.solutionsList .titleBox .title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  flex-grow: 1;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .solutionsList .titleBox .title {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .solutionsList .titleBox .title {
    font-size: 1.25rem;
  }
}
.solutionsList .description {
  color: #666666;
  font-size: 1rem;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  margin: 0 0 0 20px;
  transition: all 0.3s ease;
}

.solutionsDetail .topBox {
  position: relative;
  display: flex;
  align-items: center;
  border: #E5E5E5 1px solid;
  background: #FFF;
  padding: 50px 50px 50px 0;
  margin: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  .solutionsDetail .topBox {
    padding: 0px;
    flex-direction: column;
    margin: 0;
  }
}
.solutionsDetail .topBox .pic {
  width: 50%;
  position: relative;
  margin: 0 0 0 -20px;
  box-shadow: 10px 10px 7px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .solutionsDetail .topBox .pic {
    width: 100%;
    margin: 0px;
  }
}
.solutionsDetail .info {
  width: 50%;
  max-width: 570px;
  position: relative;
  border-width: 1px 1px 1px 0;
  margin-left: 5%;
}
@media screen and (max-width: 1000px) {
  .solutionsDetail .info {
    max-width: none;
    border-width: 1px;
  }
}
@media screen and (max-width: 767px) {
  .solutionsDetail .info {
    width: 100%;
    padding: 20px;
    max-width: none;
    margin: 0;
  }
}
.solutionsDetail .changePage {
  border: #E5E5E5 1px solid;
  border-width: 0px 1px 1px;
  background: #FFF;
  display: flex;
  justify-content: flex-end;
  padding: 30px;
  gap: 60px;
  margin: 0 0 30px 20px;
}
@media screen and (max-width: 1000px) {
  .solutionsDetail .changePage {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .solutionsDetail .changePage {
    padding: 20px;
    margin: 0 0 30px 0px;
  }
}
.solutionsDetail .changePage .arrows {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  line-height: 0;
  font-weight: 500;
  color: #0099FF;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .solutionsDetail .changePage .arrows span {
    display: none;
  }
}
.solutionsDetail .changePage .arrows i {
  display: flex;
  align-items: center;
}
.solutionsDetail .changePage .arrows i::before {
  content: "";
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #F5F5F5;
  border-radius: 100%;
  display: block;
  order: 3;
}
@media screen and (max-width: 1000px) {
  .solutionsDetail .changePage .arrows i::before {
    width: 30px;
    height: 30px;
  }
}
.solutionsDetail .changePage .arrows i::after {
  content: "";
  -webkit-mask: url("../images/icon/icon_more.svg") center no-repeat;
          mask: url("../images/icon/icon_more.svg") center no-repeat;
  background: #0099FF;
  width: 24px;
  height: 9px;
  display: block;
  order: 2;
  transform: translateX(15px);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .solutionsDetail .changePage .arrows i::after {
    width: 20px;
    height: 9px;
  }
}
@media screen and (max-width: 1000px) {
  .solutionsDetail .changePage .arrows.prev::before {
    content: "PREV";
  }
}
.solutionsDetail .changePage .arrows.prev i {
  transform: scaleX(-1);
  order: -1;
}
@media screen and (max-width: 1000px) {
  .solutionsDetail .changePage .arrows.next::after {
    content: "NEXT";
    order: -1;
  }
}
.solutionsDetail .changePage .arrows.next::before {
  content: "";
  height: 28px;
  width: 1px;
  background: #E5E5E5;
  position: absolute;
  left: -30px;
  display: block;
}
@media screen and (max-width: 1000px) {
  .solutionsDetail .changePage .arrows.next::before {
    left: -15px;
  }
}
.solutionsDetail .changePage .arrows:hover {
  color: #004080;
}
.solutionsDetail .changePage .arrows:hover i::after {
  background: #004080;
}
.solutionsDetail .title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .solutionsDetail .title {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .solutionsDetail .title {
    font-size: 1.5rem;
  }
}
.solutionsDetail .description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.4;
}
.solutionsDetail .editor {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .solutionsDetail .editor {
    font-size: 1rem;
  }
}
.solutionsDetail .subTitle {
  margin-top: 10%;
  margin-bottom: 40px;
  font-size: 2.25rem;
  font-weight: 500;
  color: #06111F;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .solutionsDetail .subTitle {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .solutionsDetail .subTitle {
    font-size: 1.5rem;
  }
}
.solutionsDetail .listBox {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
}
.solutionsDetail .item {
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 1000px) {
  .solutionsDetail .item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .solutionsDetail .item {
    width: calc((100% - 20px) / 2);
  }
}
.solutionsDetail .item .pic {
  aspect-ratio: 1;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -5px 10px 0 rgba(0, 0, 0, 0.1);
}
.solutionsDetail .item .title {
  text-align: center;
  font-size: 1.3125rem;
  padding: 20px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .solutionsDetail .item .title {
    font-size: 1.125rem;
  }
}
.solutionsDetail .item:hover .title {
  background: #0099FF;
  color: #FFF;
}/*# sourceMappingURL=solutions.css.map */