.services_main {
  padding: 168px 0 66px;
}
.services_main .head {
  width: 32.7869%;
}
.services_main .head p {
  margin-top: 35px;
}
.services_main .list {
  margin-top: max(-236px, -12.291667vw);
}
.services_main .list ul {
  display: grid;
  gap: min(130px, 6.77084vw) 0;
  grid-template-columns: 1fr 20.819673% 1fr 20.819673% 1fr 20.819673% 1fr;
}
.services_main .list ul .item a {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 6px;
  background-color: #ffffff;
  transition: all 0.3s;
  box-shadow: 0 10px 10px rgba(157, 157, 157, 0.2);
}
.services_main .list ul .item a:hover {
  background-color: var(--theme_color);
  box-shadow: 0 10px 10px rgba(17, 149, 96, 0.2);
}
.services_main .list ul .item a:hover img {
  transform: scale(1.03);
}
.services_main .list ul .item a:hover .info h3 {
  color: #fff;
}
.services_main .list ul .item .img {
  overflow: hidden;
  padding-bottom: 66.92914%;
  position: relative;
}
.services_main .list ul .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
  transition: all 0.5s;
  position: absolute;
  left: 0;
  top: 0;
}
.services_main .list ul .item .info {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  padding: 18px;
}
.services_main .list ul .item .info h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  transition: all 0.3s;
}
.services_main .list ul .gap {
  pointer-events: none;
}
.services_main .list ul .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.services_main .list ul .arrow::after {
  content: '';
  display: block;
}
.services_main .list ul .arrow:nth-child(14n + 3)::after,
.services_main .list ul .arrow:nth-child(14n + 5)::after,
.services_main .list ul .arrow:nth-child(14n + 10)::after,
.services_main .list ul .arrow:nth-child(14n + 12)::after {
  width: 38.6%;
  height: 14px;
  background: url(../img/arrow-long.svg) no-repeat center / contain;
}
.services_main .list ul .arrow:nth-child(14n + 3)::after,
.services_main .list ul .arrow:nth-child(14n + 5)::after {
  transform: rotate(180deg);
}
.services_main .list ul .arrow:nth-child(14n + 7),
.services_main .list ul .arrow:nth-child(14n + 8) {
  position: relative;
}
.services_main .list ul .arrow:nth-child(14n + 7)::after,
.services_main .list ul .arrow:nth-child(14n + 8)::after {
  width: 70.1755%;
  height: 159.375%;
  background: url(../img/arrow-long2.svg) no-repeat center / contain;
  position: absolute;
  right: 0;
  top: 50%;
}
.services_main .list ul .arrow:nth-child(14n + 8)::after {
  left: 0;
  right: unset;
  background-image: url(../img/arrow-long3.svg);
}
.service_main {
  padding: 136px 0 184px;
}
.service_main .sidebar {
  width: 230px;
  position: sticky;
  top: 120px;
}
.service_main .sidebar ul {
  counter-reset: nav;
}
.service_main .sidebar ul li {
  counter-increment: nav;
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
}
.service_main .sidebar ul li::before {
  content: '0' counter(nav);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--title_color);
  transition: all 0.3s;
  position: absolute;
  left: 9px;
  top: 9px;
  z-index: 2;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  pointer-events: none;
}
.service_main .sidebar ul li::after {
  content: '';
  display: block;
  width: 1px;
  height: calc(100% + 28px);
  position: absolute;
  left: 25px;
  top: 9px;
  z-index: -1;
  pointer-events: none;
  border-left: 1px dashed rgba(36, 36, 36, 0.15);
}
.service_main .sidebar ul li a {
  position: relative;
  display: grid;
  align-items: center;
  gap: 10px;
  grid-template-columns: auto 1fr;
  color: #757575;
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  transition: all 0.3s;
  height: 50px;
}
.service_main .sidebar ul li a::before {
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 0;
  background-color: rgba(17, 156, 96, 0.13);
  align-self: start;
}
.service_main .sidebar ul li a::after {
  content: '';
  display: block;
  position: absolute;
  left: 24px;
  bottom: calc(100% - 41px);
  width: 3px;
  height: 78px;
  background-color: var(--theme_color);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  border-radius: 100px;
}
.service_main .sidebar ul li:first-child a::after {
  display: none;
}
.service_main .sidebar ul li:last-child::after {
  display: none;
}
.service_main .sidebar ul li.active::before,
.service_main .sidebar ul li:hover::before {
  background-color: var(--theme_color);
}
.service_main .sidebar ul li.active a,
.service_main .sidebar ul li:hover a {
  color: var(--theme_color);
}
.service_main .sidebar ul li.active a::before,
.service_main .sidebar ul li:hover a::before {
  opacity: 1;
}
.service_main .sidebar ul li.active a {
  font-weight: 600;
}
.service_main .sidebar ul li.active a::after {
  opacity: 1;
}
.service_main .detail {
  flex: 1;
  max-width: 968px;
  color: #3d3d3d;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 300;
  overflow: hidden;
}
.service_main .detail .content {
  padding: 0;
}
.service_main .detail .content > *:first-child {
  margin-top: 0;
}
.service_main .detail .content > *:last-child {
  margin-bottom: 0;
}
.service_main .detail .content > p {
  margin: 24px 0;
}
.service_main .detail .content > img {
  margin: 40px 0;
}
.service_main .detail .content > h2 {
  margin: 68px 0 34px;
}
.service_main .detail h2 {
  font-size: 3rem;
  line-height: 62px;
  font-weight: 700;
  color: var(--title_color);
}
.service_main .detail img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}
.service_main .detail .wp-block-columns {
  display: flex;
  gap: 1rem;
  align-items: center !important;
}
.service_main .detail .wp-block-columns .wp-block-column {
  flex: 1;
}
.service_main .detail .wp-block-columns .wp-block-column a {
  margin: 24px 0;
}
.service_main .detail a:not(.email, .download) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  cursor: pointer;
  vertical-align: top;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border-radius: 4px;
  background-color: var(--title_color);
  transition: all 0.3s;
  line-height: 2;
  padding: 10px 31px;
}
.service_main .detail a:not(.email, .download)::after {
  content: '';
  display: block;
  width: 14px;
  height: 12px;
  background: url(../img/arrow-line-r-w.svg) no-repeat center / contain;
  transition: all 0.3s;
}
.service_main .detail a:not(.email, .download):hover {
  background-color: var(--theme_color);
}
.service_main .detail a:not(.email, .download):hover::after {
  transform: translateX(5px);
}
.service_main .process {
  margin: 52px 0;
}
.service_main .process h2 {
  margin-bottom: 10px;
}
.service_main .process .service_process_swiper {
  margin-top: 50px;
  overflow: hidden;
}
.service_main .process .service_process_swiper .swiper-slide {
  text-align: center;
  position: relative;
  z-index: 2;
}
.service_main .process .service_process_swiper .swiper-slide::before {
  content: '';
  display: block;
  width: calc(100% + 30px);
  height: 1px;
  border-top: 2px dashed rgba(36, 36, 36, 0.15);
  position: absolute;
  z-index: -2;
  left: 50%;
  top: 158px;
}
.service_main .process .service_process_swiper .swiper-slide::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background-color: var(--theme_color);
  transition: all 2.5s linear;
  position: absolute;
  left: 50%;
  top: 158px;
  z-index: -1;
}
.service_main .process .service_process_swiper .swiper-slide:last-child::before,
.service_main .process .service_process_swiper .swiper-slide:last-child::after {
  display: none;
}
.service_main .process .service_process_swiper .swiper-slide.active::after {
  width: calc(100% + 30px);
}
.service_main .process .service_process_swiper .swiper-slide.active .icon::after {
  filter: none;
}
.service_main .process .service_process_swiper .swiper-slide.active .order {
  background-color: var(--theme_color);
}
.service_main .process .service_process_swiper .swiper-slide.active .order::after {
  transform: translate(-50%, -50%);
}
.service_main .process .service_process_swiper .swiper-slide.active h3 {
  color: #242424;
}
.service_main .process .service_process_swiper .swiper-slide.clear_transition::after {
  transition: none;
}
.service_main .process .service_process_swiper .icon {
  width: 108px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 10px rgba(157, 157, 157, 0.2);
}
.service_main .process .service_process_swiper .icon::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  background: var(--icon) no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(0);
}
.service_main .process .service_process_swiper .order {
  margin: 2rem auto 0;
  display: inline-block;
  vertical-align: top;
  line-height: 36px;
  text-align: center;
  border-radius: 100px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  background-color: var(--title_color);
  transition: all 0.3s;
  padding: 0 5px;
  min-width: 36px;
  position: relative;
}
.service_main .process .service_process_swiper .order::after {
  content: '';
  display: block;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-radius: 100px;
  background-color: rgba(17, 156, 96, 0.21);
  transition: all 0.3s;
  position: absolute;
  z-index: -2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.5);
}
.service_main .process .service_process_swiper h3 {
  margin-top: 30px;
  color: #606060;
  font-size: 19px;
  line-height: 30px;
  font-weight: 700;
  transition: all 0.3s;
}
.service_main .process .service_process_swiper p {
  margin-top: 10px;
  color: #4c4c4c;
  font-size: 1rem;
  line-height: 28px;
  font-weight: 300;
}
.service_main .why {
  padding: 52px 0;
}
.service_main .why h2 {
  margin-bottom: 6px;
}
.service_main .why .service_why_swiper {
  overflow: hidden;
  margin: 42px -10px 0;
  width: calc(100% + 20px);
  padding: 10px;
}
.service_main .why .service_why_swiper .swiper-slide {
  max-width: 305px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(192, 192, 192, 0.35);
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 68px 2.623% 76px;
}
.service_main .why .service_why_swiper .swiper-slide::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url(../img/about-why-bg.jpg) no-repeat center / cover;
  transition: all 0.3s;
  opacity: 0;
}
.service_main .why .service_why_swiper .swiper-slide::after {
  content: '';
  display: block;
  width: 14px;
  height: 10px;
  background: url(../img/arrow-line-r.svg) no-repeat center / contain;
  position: absolute;
  left: 50%;
  bottom: 75px;
  transform: translateX(-50%);
  transition: all 0.3s;
}
.service_main .why .service_why_swiper .swiper-slide .title {
  position: relative;
  transition: all 0.3s;
  transform: translateY(28px);
}
.service_main .why .service_why_swiper .swiper-slide .title .icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  transition: all 0.3s;
  background-color: var(--theme_color);
  margin: 0 auto;
}
.service_main .why .service_why_swiper .swiper-slide .title .icon i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}
.service_main .why .service_why_swiper .swiper-slide .title h3 {
  color: #232323;
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
  transition: all 0.3s;
  margin-top: 26px;
}
.service_main .why .service_why_swiper .swiper-slide p {
  color: #fff;
  font-size: 18px;
  font-weight: 200;
  line-height: 26px;
  transition: all 0.4s;
  opacity: 0;
  transform: translateY(28px);
  margin-top: 5px;
}
.service_main .why .service_why_swiper .swiper-slide.active::before {
  opacity: 1;
}
.service_main .why .service_why_swiper .swiper-slide.active::after {
  opacity: 0;
  transform: translate(-50%, -2rem);
}
.service_main .why .service_why_swiper .swiper-slide.active .title {
  transform: translate(0);
}
.service_main .why .service_why_swiper .swiper-slide.active .title .icon {
  background-color: #fff;
}
.service_main .why .service_why_swiper .swiper-slide.active .title .icon i {
  filter: none;
}
.service_main .why .service_why_swiper .swiper-slide.active .title h3 {
  color: #fff;
  transform: translateY(-5px);
}
.service_main .why .service_why_swiper .swiper-slide.active p {
  opacity: 0.8;
  transform: translate(0);
}
.service_main .services {
  padding: 52px 0 90px;
}
.service_main .services .main {
  margin-top: 28px;
}
.service_main .services .intro {
  flex: 1;
  max-width: 474px;
  position: relative;
  z-index: 2;
}
.service_main .services .intro::before {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background-color: #dddddd;
  position: absolute;
  z-index: -1;
  left: 1px;
  top: 0;
}
.service_main .services .intro .item {
  padding-left: 28px;
  position: relative;
  transition: all 0.3s;
}
.service_main .services .intro .item::before {
  content: '';
  display: block;
  width: 3px;
  height: 100%;
  background-color: var(--theme_color);
  border-radius: 100px;
  transition: all 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.service_main .services .intro .item .title {
  transition: all 0.3s;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 0;
}
.service_main .services .intro .item .desc {
  display: none;
  color: #595959;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
  padding-top: 8px;
}
.service_main .services .intro .item:first-child .desc {
  display: block;
}
.service_main .services .intro .item.active {
  margin-bottom: 12px;
}
.service_main .services .intro .item.active:last-child {
  margin-bottom: 0;
}
.service_main .services .intro .item.active::before {
  opacity: 1;
}
.service_main .services .intro .item.active .title {
  opacity: 1;
  font-size: 28px;
  font-weight: 600;
}
.service_main .services .imgs {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  width: 45.7645%;
}
.service_main .services .imgs .syeditorlist {
  padding-bottom: 91.87359%;
}
.service_main .services .imgs .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.service_main .services .imgs .img.active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}
.service_main .services .imgs .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
  transition: all 0.5s;
}
.service_main .services .imgs .img img:hover {
  transform: scale(1.03);
}
.service_main .report {
  padding: 90px 0 42px;
}
.service_main .report .main {
  margin-top: 24px;
}
.service_main .report .intro {
  flex: 1;
  max-width: 420px;
  padding-top: 4.54546%;
}
.service_main .report .intro p {
  margin-top: 28px;
}
.service_main .report .intro ul {
  padding-top: 4px;
}
.service_main .report .intro ul li {
  margin-top: 20px;
  color: var(--title_color);
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  padding-left: 2rem;
  position: relative;
}
.service_main .report .intro ul li a {
  color: var(--title_color);
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  transition: all 0.3s;
}
.service_main .report .intro ul li a:hover {
  color: var(--theme_color);
}
.service_main .report .intro ul .pos::before {
  content: '';
  display: block;
  width: 18px;
  height: 22px;
  background: url(../img/pos.svg) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 2px;
}
.service_main .report .intro ul .email::before {
  content: '';
  display: block;
  width: 20px;
  height: 1rem;
  background: url(../img/email.svg) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 6px;
}
.service_main .report .intro .download {
  margin-top: 36px;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  border-radius: 4px;
  transition: all 0.3s;
  border: 1px solid rgba(186, 186, 186, 0.53);
  font-size: 18px;
  font-weight: 500;
  gap: 14px;
  max-width: max-content;
  padding: 9px 26px 9px 2rem;
  line-height: 2;
}
.service_main .report .intro .download::before {
  content: '';
  display: block;
  width: 1rem;
  height: 22px;
  background: url(../img/file.svg) no-repeat center / contain;
  transition: all 0.3s;
}
.service_main .report .intro .download::after {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../img/download.svg) no-repeat center / contain;
  transition: all 0.3s;
}
.service_main .report .intro .download:hover {
  color: #fff;
  border-color: var(--title_color);
  background-color: var(--title_color);
}
.service_main .report .intro .download:hover::before,
.service_main .report .intro .download:hover::after {
  filter: contrast(0) brightness(2);
}
.service_main .report .img {
  width: 53.3058%;
}
.service_main .report .img img {
  width: 100%;
  height: auto;
  display: block;
}
.service_main .parameters {
  padding: 42px 0 3rem;
}
.service_main .parameters .main {
  margin-top: 30px;
}
.service_main .parameters .intro {
  flex: 1;
  max-width: 539px;
  padding-bottom: 5.785124%;
}
.service_main .parameters .intro ul {
  margin-top: 12px;
}
.service_main .parameters .intro ul li {
  color: var(--title_color);
  font-size: 17px;
  line-height: 2rem;
  font-weight: 300;
  display: grid;
  align-items: start;
  grid-template-columns: auto 1fr;
  gap: 12px;
}
.service_main .parameters .intro ul li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--title_color);
  transform: translateY(14px);
}
.service_main .parameters a.img {
  width: 44.31819%;
  display: block;
  padding: 0;
  aspect-ratio: 429/394;
  background-color: transparent;
}
.service_main .parameters a.img::after {
  display: none;
}
.service_main .parameters a.img:hover {
  background-color: transparent;
}
.service_main .devices {
  padding: 3rem 0 4rem;
}
.service_main .devices .swiper_btns div {
  width: 35px;
  height: 28px;
}
.service_main .devices .service_devices_swiper {
  overflow: hidden;
  margin-top: 50px;
}
.service_main .devices .service_devices_swiper .swiper-slide .item {
  display: block;
}
.service_main .devices .service_devices_swiper .swiper-slide .item:hover img {
  transform: scale(1.03);
}
.service_main .devices .service_devices_swiper .swiper-slide .img {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  padding-bottom: 80.7693%;
}
.service_main .devices .service_devices_swiper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
  transition: all 0.5s;
  position: absolute;
  left: 0;
  top: 0;
}
.service_main .devices .service_devices_swiper .swiper-slide .info h3 {
  margin-top: 20px;
  color: var(--title_color);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
}
.service_main .devices .service_devices_swiper .swiper-slide .info p {
  margin-top: 8px;
  color: #515151;
  font-size: 17px;
  line-height: 28px;
  font-weight: 300;
}
.service_main .questions {
  padding: 4rem 0 0;
}
.service_main .questions .faqs {
  margin-top: 38px;
}
.service_main .questions .faqs .faq {
  transition: all 0.3s;
  border-bottom: 1px solid #dbdbdb;
}
.service_main .questions .faqs .faq .question {
  cursor: pointer;
  display: grid;
  align-items: start;
  grid-template-columns: auto 1fr auto;
  padding: 20px 0 30px;
  gap: 12px;
  transition: all 0.3s;
}
.service_main .questions .faqs .faq .question span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #d1d1d1;
  transition: all 0.3s;
}
.service_main .questions .faqs .faq .question span::after {
  content: '';
  display: block;
  width: 40%;
  height: 40%;
  background: url(../img/tip.svg) no-repeat center / contain;
  transition: all 0.3s;
}
.service_main .questions .faqs .faq .question strong {
  color: var(--title_color);
  font-size: 24px;
  line-height: 2rem;
  font-weight: 500;
  margin-top: 9px;
}
.service_main .questions .faqs .faq .question::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: url(../img/add-b.svg) no-repeat center / contain;
  transition: all 0.3s;
  margin-top: 18px;
}
.service_main .questions .faqs .faq .answer {
  color: #3d3d3d;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 300;
  display: none;
  padding-bottom: 2rem;
}
.service_main .questions .faqs .faq:first-child .answer {
  display: block;
}
.service_main .questions .faqs .faq.active {
  border-color: #242424;
}
.service_main .questions .faqs .faq.active .question {
  padding-bottom: 22px;
}
.service_main .questions .faqs .faq.active .question span {
  border-color: var(--theme_color);
  background-color: var(--theme_color);
}
.service_main .questions .faqs .faq.active .question span::after {
  filter: contrast(0) brightness(2);
}
.service_main .questions .faqs .faq.active .question::after {
  transform: rotate(135deg);
}
.service_main .questions > p {
  color: #3d3d3d;
  font-size: 18px;
  margin-top: 28px;
}
.service_main .questions > p a {
  font-size: 18px;
  color: var(--theme_color);
  text-decoration: underline;
}
