img {
    max-width: 100%;
    max-height: 100%;
    border: 0;
}
.idxPageShow {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    grid-gap: 0.15rem;
}
.ins_processCon1 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding: 5rem 0;
    background: #f8f9fb;
}
.ins_processCon1 .center_box {
    width: 100%;
    height: auto;
}
.ins_processCon1 .center_box .box_info {
    width: 100%;
    height: auto;
}
.ins_processCon1 .center_box .box_info .left_box {
    width: calc(30% - 5rem);
    height: 100%;
    position: sticky;
    top: calc(var(--header-height) + 5rem);
}
.ins_processCon1 .center_box .box_info .left_box .item_box {
    width: 100%;
    height: auto;
    background: #FFFFFF;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-radius: 1.6rem;
}
.ins_processCon1 .center_box .box_info .left_box .item_box .item {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    font-size: var(--font18);
    line-height: 1.5;
    border-bottom: 1px solid #EEE;
    padding-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}
.ins_processCon1 .center_box .box_info .left_box .item_box .item i {
    font-size: var(--font24);
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-100px);
    color: var(--main-color);
    transition: all 0.3s ease;
}
.ins_processCon1 .center_box .box_info .left_box .item_box .item.active {
    padding-left: 5rem;
    color: var(--main-color);
    border-color: var(--main-color);
}
.ins_processCon1 .center_box .box_info .left_box .item_box .item.active i {
    opacity: 1;
    transform: translateX(0);
}
.ins_processCon1 .center_box .box_info .right_box {
    width: 70%;
    height: auto;
}
.ins_processCon1 .center_box .box_info .right_box .item_box {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.ins_processCon1 .center_box .box_info .right_box .item_box .item {
    width: 100%;
    height: auto;
    background: #FFFFFF;
    display: flex;
    justify-content: space-between;
    border-radius: 1.6rem;
	overflow: hidden;
}
.ins_processCon1 .center_box .box_info .right_box .item_box .item .word {
    width: 50%;
    padding: 5rem;
    color: #222222;
}
.ins_processCon1 .center_box .box_info .right_box .item_box .item .word .t1 {
    font-weight: 600;
}
.ins_processCon1 .center_box .box_info .right_box .item_box .item .word .t2 {
    width: 100%;
    height: auto;
    margin-top: 2rem;
    line-height: 1.6;
    color: #666666;
}
.ins_processCon1 .center_box .box_info .right_box .item_box .item .word .idx_more {
    width: 100%;
    height: auto;
    margin-top: 4rem;
}
.ins_processCon1 .center_box .box_info .right_box .item_box .item .imges {
    width: 40%;
    height: auto;
}
.ins_processCon1 .center_box .box_info .right_box .item_box .item .imges .pb {
    /*padding-bottom: 610%;*/
	height: 100%;
}
.ins_processCon1 .center_box .box_info .right_box .item_box .item .imges .pb .ab {
    display: flex;
    align-items: center;
    justify-content: center;
	height: 100%;
}
.ins_processCon1 .center_box .box_info .right_box .item_box .item .imges .pb .ab img {
    transition: all 0.3s ease;
	height: 100%;
	max-height:none;
	object-fit: cover;
	object-position: center;
}
.ins_processCon1 .center_box .box_info .right_box .item_box .item:hover .imges img {
    transform: scale(1.03);
}

@media (max-width:990px) {
    .ins_processCon1 .center_box .box_info .left_box {
        display: none;
    }
    .ins_processCon1 .center_box .box_info .right_box .item_box .item {
        flex-direction: column;
        border: 1px solid #EEE;
        overflow: hidden;
    }
    .ins_processCon1 .center_box .box_info .right_box .item_box .item .word {
        width: 100%;
		padding: 3rem 2rem;
    }
    .ins_processCon1 .center_box .box_info .right_box .item_box .item .imges {
        width: 100%;
    }
}
.idx_more .more {
    width: fit-content;
    height: 4.8rem;
    min-height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 3rem;
    border-radius: 100px;
    background: var(--main-color);
    color: #FFFFFF;
    font-size: var(--font16);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.idx_more .more::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  background: #FFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
  border-radius: 100px;
}
.idx_more .more i {
  font-size: var(--font20);
}
.idx_more .more:hover {
  color: var(--main-color);
}
.idx_more .more:hover::after {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}
.ins_processCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 12rem 0;
}
.ins_processCon2 .center_box {
  width: 100%;
  height: auto;
  align-items: center;
}
.ins_processCon2 .center_box .left_box {
  width: 50%;
  height: auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ins_processCon2 .center_box .left_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_processCon2 .center_box .left_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_processCon2 .center_box .left_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid #f5f5f5;
  background: #f5f5f5;
}
.ins_processCon2 .center_box .left_box .swiper_box ul li .centerInfo .pb {
  /*padding-bottom: 61%;*/
}
.ins_processCon2 .center_box .left_box .swiper_box ul li .centerInfo .pb .ab {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ins_processCon2 .center_box .left_box .swiper_box ul li .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_processCon2 .center_box .left_box .idxPageShow {
  position: absolute;
  bottom: 2rem;
  z-index: 5;
  gap: 1rem;
}
.ins_processCon2 .center_box .right_box {
  width: 45%;
  height: auto;
}
.ins_processCon2 .center_box .right_box .word {
  width: 100%;
  color: #222222;
  padding: 5rem 0;
}
.ins_processCon2 .center_box .right_box .word .t1 {
  font-weight: 600;
}
.ins_processCon2 .center_box .right_box .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 2rem;
  line-height: 1.6;
  color: #666666;
}
.ins_processCon2 .center_box .right_box .word .t3 {
  width: 100%;
  height: auto;
  margin-top: 3rem;
  color: #333333;
}
.ins_processCon2 .center_box .right_box .word .idx_more {
  width: 100%;
  height: auto;
  margin-top: 5rem;
}

/* Con3 */
.ins_processCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 12rem 0;
  background: #f8f9fb;
}
.ins_processCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_processCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 6rem;
  gap: 4rem;
}
.ins_processCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border: 1px solid #00000017;
  padding: 4rem;
  border-radius: 1.6rem;
  transition: all 0.3s ease;
}
.ins_processCon3 .center_box .item_box .item .numBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.ins_processCon3 .center_box .item_box .item .numBox .number {
  font-size: 8rem;
  font-weight: 600;
  line-height: 1;
}
.ins_processCon3 .center_box .item_box .item .numBox .icon {
  width: 5rem;
}
.ins_processCon3 .center_box .item_box .item .word {
  font-size: var(--font28);
  margin-top: 3rem;
}
.ins_processCon3 .center_box .item_box .item:hover {
  transform: translateY(-100px);
}

/* Con4 */
.ins_processCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 12rem 0;
}
.ins_processCon4 .center_box {
  width: 100%;
}
.ins_processCon4 .center_box .swiper_box {
  width: 100%;
  position: relative;
  margin-top: 6rem;
}
.ins_processCon4 .center_box .swiper_box ul li .item {
  width: 100%;
  padding: 4rem;
  border-radius: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  background: #f8f9fb;
}
.ins_processCon4 .center_box .swiper_box ul li .item .word_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
.ins_processCon4 .center_box .swiper_box ul li .item .word_box .t2 {
  margin-top: 1rem;
}
.ins_processCon4 .center_box .swiper_box ul li .item .word_box .icon {
  width: 4rem;
  height: 4rem;
}
.ins_processCon4 .center_box .swiper_box ul li .item .imgs_box {
  border-radius: 1.6rem;
}

/* grid */
.ins_processCon4 .center_box .item_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 6rem;
  gap: 4rem;
}
.ins_processCon4 .center_box .item_box .item {
  padding: 4rem;
  border-radius: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  background: #f8f9fb;
}
.ins_processCon4 .center_box .item_box .item .word_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
.ins_processCon4 .center_box .item_box .item .word_box .t2 {
  margin-top: 1rem;
}
.ins_processCon4 .center_box .item_box .item .word_box .icon {
  width: 4rem;
  height: 4rem;
}
.ins_processCon4 .center_box .item_box .item .imgs_box {
  border-radius: 1.6rem;
}

@media (max-width:990px) {
  .ins_processCon3 .center_box .item_box {
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_processCon4 .center_box .item_box {
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_processCon4 .center_box .item_box .item .imgs_box .pb {
    padding-bottom: 600%;
  }
  
  .ins_processCon2{padding: 2rem 0 10rem;}
  
}
.ins_serviceCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 12rem 0;
}
.ins_serviceCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_serviceCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 8rem;
}
.ins_serviceCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #f8f9fb;
  border-radius: 1.6rem;
  overflow: hidden;
}
.ins_serviceCon3 .center_box .item_box .item .word {
  width: 100%;
  height: 8rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font20);
  background: var(--bgColor);
  color: #FFFFFF;
  overflow: hidden;
}
.ins_serviceCon3 .center_box .item_box .item .icon {
  width: 100%;
  height: auto;
  border: 1px solid #e5e5e5;
  border-top: 0;
  border-radius: 1.6rem;
  overflow: hidden;
}
.ins_serviceCon3 .center_box .item_box .item .icon img {
  width: 100%;
  height: auto;
}
.ins_serviceCon3 .center_box .item_box .item .icon img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_serviceCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

.ins_caseCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 12rem 0;
  background: #f8f9fb;
}
.ins_caseCon5 .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_caseCon5 .center_box .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_caseCon5 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_caseCon5 .center_box .swiper_box ul li .centerInfo .left_box {
  width: 45%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 10rem;
}
.ins_caseCon5 .center_box .swiper_box ul li .centerInfo .left_box .list_box {
  width: 100%;
  height: auto;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  font-size: var(--font18);
}
.ins_caseCon5 .center_box .swiper_box ul li .centerInfo .left_box .list_box p {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 1.8;
  font-weight: 300;
}
.ins_caseCon5 .center_box .swiper_box ul li .centerInfo .left_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 6rem;
}
.ins_caseCon5 .center_box .swiper_box ul li .centerInfo .right_box {
  width: 50%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_caseCon5 .center_box .swiper_box ul li .centerInfo .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 1.6rem;
  overflow: hidden;
}
/* .ins_caseCon5 .center_box .swiper_box ul li .centerInfo .right_box .img .pb {
  padding-bottom: 60%;
} */
.ins_caseCon5 .center_box .swiper_box ul li .centerInfo .right_box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_caseCon5 .center_box .pagerSwiper {
  width: 45%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: flex-start;
}
@media (max-width:990px) {
  .ins_caseCon5 .center_box .pagerSwiper {
    display: none;
  }
}
.ins_appCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 12rem 0;
  background: #f8f9fb;
}
.ins_appCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_appCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.ins_appCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: flex;
  /* align-items: baseline; */
  justify-content: space-between;
  padding: 4rem;
  background: #FFFFFF;
  border-radius: 1.6rem;
  gap: 5rem;
  transition: all 0.3s ease;
}
.ins_appCon3 .center_box .item_box .item .icon {
  width: 8rem;
  flex-shrink: 0;
}
.ins_appCon3 .center_box .item_box .item .word {
  font-size: var(--font18);
  width: 100%;
}
.ins_appCon3 .center_box .item_box .item:hover {
  margin-top: -10px;
}
@media (max-width:990px) {
  .ins_appCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_appCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 12rem 0;
}
.ins_appCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_appCon4 .center_box .img {
  width: 100%;
  height: auto;
  margin-top: 6rem;
}
.ins_appCon4 .center_box .img img {
  width: 100%;
  height: auto;
}









.ins_processCon2 .center_box .right_box .word .idx_more{  display: flex;gap: 2rem; }



/* ================== ins_productdCon1 ================== */
.ins_productdCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  background-image: url(../images/zz23.jpg);
  background-size: cover;
}
.ins_productdCon1 .center_box {
  width: 100%;
  height: auto;
  align-items: center;
}
.ins_productdCon1 .center_box .left_box {
  width: 50%;
}
.ins_productdCon1 .center_box .left_box .word {
  width: 100%;
  height: auto;
}
.ins_productdCon1 .center_box .left_box .word .t2 {
  width: 100%;
  line-height: 1.2;
  font-weight: 600;
}
.ins_productdCon1 .center_box .left_box .word .t3 {
  margin-top: 3rem;
}
.ins_productdCon1 .center_box .left_box .idx_more {
  margin-top: 5rem;
}
.ins_productdCon1 .center_box .right_box {
  width: 40%;
  max-width: 60rem;
}

/* ================== ins_serviceCon0 ================== */
.ins_serviceCon0 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 3rem;
  background: #103feb09;
}
.ins_serviceCon0 .center_box {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  gap: 5rem;
}
.ins_serviceCon0 .center_box .item {
  font-size: var(--font20);
  transition: all 0.3s ease;
  cursor: pointer;
  color: #666666;
  position: relative;
}
.ins_serviceCon0 .center_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--main-color);
  left: 0;
  bottom: -30px;
  opacity: 0;
  transition: all 0.3s ease;
}
.ins_serviceCon0 .center_box .item.active {
  color: var(--main-color);
}
.ins_serviceCon0 .center_box .item.active::after {
  opacity: 1;
}
@media (max-width:990px) {
  .ins_serviceCon0 {
    display: none;
  }
}

/* ================== ins_appCon2 ================== */
.ins_appCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 12rem 0;
}
.ins_appCon2 .center_box {
  width: 100%;
}
.ins_appCon2 .center_box .left_box {
  width: 20%;
}
.ins_appCon2 .center_box .right_box {
  width: 70%;
  line-height: 1.8;
  font-weight: 300;
}
.ins_appCon2 .center_box .right_box p {
  min-height: 0.5em;
}

/* ================== ins_productCon3 ================== */
.ins_productCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 8rem 0;
  background: #f8f9fb;
}
.ins_productCon3 .center_box {
  width: 100%;
}
.ins_productCon3 .center_box .swiper_box {
  width: 100%;
  margin-top: 6rem;
}
.ins_productCon3 .center_box .swiper_box ul li .item {
  width: 100%;
  padding: 4rem;
  background: #FFFFFF;
  border-radius: 1.6rem;
  gap: 5rem;
}
.ins_productCon3 .center_box .swiper_box ul li .item .icon {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.ins_productCon3 .center_box .swiper_box ul li .item .icon img {
  width: 6rem;
}
.ins_productCon3 .center_box .swiper_box ul li .item .word {
  font-size: var(--font20);
  margin-top: 3rem;
}
.ins_productCon3 .center_box .swiper_box ul li .item .word .t2 {
  margin-top: 1.5rem;
  color: #666666;
  font-weight: 300;
}

/* grid */
.ins_productCon3 .center_box .item_box {
  width: 100%;
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.ins_productCon3 .center_box .item_box .item {
  padding: 4rem;
  background: #FFFFFF;
  border-radius: 1.6rem;
  gap: 5rem;
}
.ins_productCon3 .center_box .item_box .item .icon {
  display: flex;
  gap: 4rem;
  align-items: center;
}
.ins_productCon3 .center_box .item_box .item .icon img {
  width: 6rem;
}
.ins_productCon3 .center_box .item_box .item .word {
  font-size: var(--font20);
  margin-top: 5rem;
}
.ins_productCon3 .center_box .item_box .item .word .t2 {
  margin-top: 1.5rem;
  color: #666666;
  font-weight: 300;
}

@media (max-width:990px) {
  .ins_productCon3 .center_box .item_box {
    grid-template-columns: repeat(1, 1fr);
  }
}

.ins_serviceCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 12rem 0;
  /* background: #f8f9fb; */
}
.ins_serviceCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_serviceCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 8rem;
}
.ins_serviceCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 3rem;
  background: #FFFFFF;
  padding: 1rem;
  border-radius: 0.8rem;
}
.ins_serviceCon2 .center_box .item_box .item .icon {
  width: 10rem;
  border-radius: 0.8rem;
  overflow: hidden;
}
.ins_serviceCon2 .center_box .item_box .item .word {
  font-size: var(--font20);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_serviceCon2 .center_box .item_box .item:hover .word {
  color: var(--main-color);
}
@media (max-width:990px) {
  .ins_serviceCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_serviceCon0 .center_box .item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--main-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    left: 0;
    bottom: -3px;
    opacity: 0;
}
.ins_serviceCon2 .center_box .item_box .item {
    flex-direction: column;
}
.ins_serviceCon2 .center_box .item_box .item .icon {
    width: 100%;
    text-align: center;
}