
.foot{
  padding: 0 240px;
}

/* Add styles for product page */
.product-page {
  padding: 107px 240px 60px;
  position: relative;
}
.product-page .pagination{
  margin-top: 40px;
}
.product-page::before{
  background: linear-gradient(180deg,#f6f8fa,#fff);
  content: '';
  width: 100%;
  height: 107px;
  position: absolute;
  top: 0;
  left: 0;
}



.product-categories {
  display: flex;
  border-top: 1px solid #f0f0f0;
  justify-content: space-between;
  margin-bottom: 60px;  
}

.cateitem {
  height: 82px;
  white-space: nowrap;
  line-height: 82px;
  margin: 0 12px;
  color: #a2a2a2; 
  transition: all .5s ease;
  position: relative;
  cursor: pointer;
}
.cateitem dl{
  min-width: 136px;
  border-radius: 10px;
  box-shadow: 0px 0px 13px 0px 
		rgba(48, 121, 202, 0.23);
	border-radius: 6px;
  background: #fff;
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  transition: all .5s ease;
  overflow: hidden;
  height: 0;
  opacity: 0;
  padding: 10px;
}
.cateitem:hover dl{
  height: auto;
  opacity: 1;
}
.cateitem dl li{
  padding: 0 10px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  color: #999;
  cursor: pointer;
  transition: all .5s ease;
  font-weight: 400;
}
.cateitem dl li:hover,.cateitem dl li.sel{
  color: #396cbf;
}
.cateitem dl li.sel{
  font-weight: 700;
}
/* .cateitem dl li:last-child{
  border: none;
} */


.cateitem::before{
  content: "";
  display: block;
  width: 100%;
	height: 2px;
	background-color: #3368bd;
	border-radius: 1px;
  position: absolute;
  top: 10px;
  left: 0;
  opacity: 0;
  transition: all .5s ease;
}

.cateitem:hover{
  color: #396cbf;
}

.cateitem.sel{
  color: #396cbf;
  font-weight: 700; 
}

.cateitem.sel::before{
  top: -2px;
  opacity: 1;
}

/* Adjust existing product grid styles */
.product-grid {
  display: flex;
  flex-wrap: wrap;

}

.product-item {  
  width: calc(33.3333% - 22px);
  margin-right: 33px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.product-item>a{
  width: 100%;
} 
.product-item:nth-child(3n) {
  margin-right: 0;
}
.product-item:hover .product-image img{
  transform: scale(1.1);
}
.product-item:hover .product-image{
  border-width: 1px;
}
.product-image {
  width: 100%;
  height: 287px;
  margin-bottom: 20px;
	/* background-color: #f0f1f1; */
  border: 0px solid #f0f1f1;
	border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.product-image::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #0008;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.5s ease;
  opacity: 0;
  display: none;
}
.product-image p{
  width: 60%;
  color: #fff;
  text-align: center;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  line-height: 1.5;
  padding: 10px 0;
  transition: opacity 0.5s ease;
  opacity: 0;
  display: none;
}

.product-item:hover .product-image::after{
  opacity: 1;
}
.product-item:hover p{
  opacity: 1;
}
.product-item:hover p::after,.product-item:hover p::before{
  width: 20px;
}
.product-image p::after,.product-image p::before{
  content: "";
  display: block;
  width: 100%;
  height: 0px;
  border-top: 1px solid #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.5s ease;
}
.product-image p::before{
  top: 0;
}
.product-image p::after{
  bottom: 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .5s ease; 

}
.product-image.product-image2 img{
  object-fit: cover;
}
.product-page .pagination{
  margin-top: 0px; 
}

.product-item .product-title {
  font-size: 18px;
  transition: color .5s ease; 
  padding: 0;
  margin: 0;
  width: 100%;
}
.product-item:hover .product-title{
  color: #396cbf;
}

/* äº§å“è¯¦æƒ… */
.newsdetailhead .hbgbox{
  background: transparent !important;
}
.newsdetailhead.bg2 .hbgbox{
  background: #fff !important;
}
.headdetail{
  margin-top: 102px;
  height: 102px;
}
.headdetail .left a.back{
  width: 112px;
	height: 50px;
	border-radius: 25px;
  background: #6da4f822;
	border: solid 2px #6da4f833;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3368bd;
}
.headdetail .left a.back i{
  width: 26px;
	height: 26px;
  line-height: 26px;
  border-radius: 50%;
  margin-right: 12px;
  transform: rotate(180deg);
  text-align: center;
	background-image: linear-gradient(90deg, 
		#114bb0 0%, 
		#347fce 100%), 
	linear-gradient(
		#000000, 
		#000000);
	background-blend-mode: normal, 
		normal;
  color: #fff;
}

.product-detail-box{
  width: 100%;
  /* height: 830px; */
  /* min-height: 700px; */
  padding-bottom: 30px;
  background: url(../Images/productbg.png) no-repeat;
  background-size: 100% 830px;
  position: relative;
}
.product-detail-box::before{
  width: 100%;
  height: 300px;
  background: linear-gradient(180deg,#fff,transparent);
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.product-detail-box::after{
  width: 100%;
  height: 200px;
  background: linear-gradient(0deg,#fff,transparent);
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.product-banner{
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-banner .swiper{
  width: 800px;
  height: 540px;
  margin: 0 88px;
}
.product-banner .swiper-slide{
  /* display: flex;
  justify-content: center;
  align-items: center; */
}
.product-banner .product-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-btns {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease;
  background-image: linear-gradient(90deg, #cccccc 0%, #f9f9f9 100%);
  color: #2163be;
  z-index: 2;
  position: relative;
}
.product-btns i{
  font-size: 20px;
}
.product-btns:hover{
  color: #fff;
  background-image: linear-gradient(90deg, 
    #114bb0 0%, 
    #347fce 100%), 
  linear-gradient(90deg, 
    #2b8ecd 0%, 
    #04edbb 100%);
  background-blend-mode: normal, 
    normal;
}
.product-title{
  font-size: 18px;
	line-height: 48px;
  padding: 30px 0;
	color: #333333;
  position: relative;
  text-align: center;
}
.product-desc{
  margin: 0 auto;
  width: 1180px;
	font-size: 16px;
	line-height: 30px;
	color: #333333;
}
.product-contact{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 70px auto 110px;
}
.product-contact a{
  width: 205px;
	height: 60px;
  border-radius: 30px;
	border-style: solid;
	border-width: 2px;
  color: #1754b5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 13px;
  font-weight: 600;
  transition: transform .5s ease-in-out;
  position: relative;
}
.product-contact a img{
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 9;
  transform: translate(-50%,-110%);
  width: 200px;
  height: 200px;
  opacity: 0;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 10px #0006;
  display: block;
  transition: opacity .5s ease-in-out;
}
.product-contact a img::after{
  content: "";
  display: block;
  border: 10px solid transparent;
  position: absolute;
  left: 50%;
  top: 100%;
  border-top-color: #fff;
  transform: translateX(-50%);
}
.product-contact a:hover img{
  opacity: 1;
}

.product-contact a:last-child:hover{
  transform: scale(1.1);
}
.product-contact a i{
  font-weight: 400;
  margin-right: 12px;
  font-size: 30px;
}
.product-contact a:last-child{
  background-image: linear-gradient(90deg, 
		#114bb0 0%, 
		#347fce 100%), 
	linear-gradient(
		#000000, 
		#000000);
	background-blend-mode: normal, 
		normal;
  color: #fff;
}
.product-richtext{
  width: 1440px;
	/* height: 921px; */
	background-color: #ffffff;
	border-radius: 14px;
	border: solid 1px #e1e2f1;
  margin: 0 auto 110px;
  font-size: 16px !important;
  line-height: 24px !important;
  color: #333 !important;
  font-family: auto !important;
  padding: 24px ;
}

.product-richtext img{
  max-width: 100% !important;
  height: auto !important;
}
.product-richtext p{
  margin: 16px 0!important;
}

.product-other{
  width: 1920px;
	height: 614px;
  background: url(../Images/proother.jpg) no-repeat;
  background-size: 100% 100%;
  padding: 100px 240px;
}
.product-other .t{
  font-size: 36px;
	color: #333333;
  text-align: center;
}
.polist{
  display: flex;
  justify-content: space-between;
  margin-top: 98px;
}
.polist>a{
  display: flex;
  align-items: center;
  flex-direction: column;
}
.polist>a img{
  width: auto;
  height: 170px;
  object-fit: contain;
  margin-bottom: 64px;
  transition: transform .5s ease-in-out;
}.polist>a:hover img{
  transform: scale(1.1);
}
.polist>a p{
  color: #333;
}


/* å…¸åž‹ä¸šç»© */
.product-page-b{
  padding-left: 0;
  padding-right: 0;
  display: flex;
  justify-content: space-between;
}
.product-br{
  width: 1426px;
  /* padding-left: 72px; */
}
.product-hangye{
  width: 442px;
}
.hyitem{
  width: 100%;
  height: 51px;
  margin: 8px 0;
  line-height: 51px;
  color: #a2a2a2;
  cursor: pointer;
  padding-left: 240px;
  transition: all .5s ease-in-out;
	border-radius: 0px 4px 4px 0px;
  overflow: hidden;
  position: relative;
}
.hyitem>i{
  font-size: 14px;
  margin-left: 14px;
  display: inline-block;
}
.hyitem.sel>i{
  transform: rotate(180deg);
}
.hyitem::before{
  content: "";
  width: 100%;
	height: 51px;
	border-radius: 0px 4px 4px 0px;
	background-image: linear-gradient(90deg, 
		#114bb0 0%, 
		#347fce 100%), 
	linear-gradient(
		#3368bd, 
		#3368bd);
	background-blend-mode: normal, 
		normal;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity .5s ease-in-out;
}
.hyitem.sel::before{
  opacity: 1;
}
.hyitem:first-child{
  margin-top: 0;
}
.hyitem:hover{
  color: #114bb0;
}
.hyitem.sel{
	height: auto;
  color: #fff;
}
.hyitem.sel dl{
  width: 100%;
  color: #a2a2a2;
}
.hyitem.sel dl li{
  height: 45px;
  padding-left: 1em;
}
.hyitem.sel dl li:hover,.hyitem.sel dl li.sel{
  color: #114bb0;
}
.product-br-banner{
  padding-left: 72px;
  padding-bottom: 100px;
  overflow: hidden;
  position: relative;
}
.product-br-banner::before{
  width: 1153px;
  height: 423px;
  background: url(../Images/probrbg1.jpg) no-repeat;
  background-size: 100% 100%;
  content: "";
  display: block;
  position: absolute;
  left: 630px;
  top: 0;
  z-index: -1;
}
.product-brtit{
  font-size: 36px;
	font-weight: 700;
	line-height: 51px;
	color: #396cbf;
  margin-bottom: 70px;
  display: flex;
  align-items: center;
}
.bullets{
  width: 916px !important;
  margin-left: 53px;
}
.bullets .swiper-pagination-bullet{
  display: block;
  height: 0;
  border-top: 1px solid #6c9fe066;
  opacity: 0;
  z-index: 2;
  width: 0;
  position: relative;
}
.bullets .swiper-pagination-bullet::before{
  content: "";
  width: 0px;
  border-top: 1px solid #396cbf;
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
}
@keyframes bullet{
  0%{
    width: 0;
  }
  100%{
    width: 100%;
  }
}
.bullets .swiper-pagination-bullet-active{
  opacity: 1;
  width: 100%;
}
.bullets .swiper-pagination-bullet-active::before{
  animation: bullet 5.2s linear forwards;
}
.product-br-banner .swiper{
  width: 2228px;
  height: 375px;
}
.product-br-banner .swiper .swiper-slide{
  width: 1114px;
}
.product-br-banner .swiper .probr-img{
  width: 600px;
  height: 375px;
  border-radius: 14px;
  /* background: #000; */
}
.probr-slide{
  display: flex;
}
.probr-slide>.demo-gallery{
	flex-shrink: 0;
}
.probr-slide>b{
  font-size: 36px;
	color: #333333;
  padding: 45px 58px;
}
.probr-btns{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  bottom: 143px;
  left: 735px;
  z-index: 9;
}
.probr-btns i{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease;
  border: solid 1px #a3b9d2;
  color: #a3b9d2;
}
.probr-btns i:hover{
  color: #fff;
  background-image: linear-gradient(90deg, #2163be 0%, #347fce 100%), linear-gradient(#3368bd, #3368bd);
}
.probr-btns .nums {
  margin: 5px 28px 0;
  display: flex;
  align-items: flex-end;
}
.probr-btns .nums span.cur {
  color: #333;
}
.probr-btns .nums span.cur::after {
  content: '-';
  margin: 0 8px;
}
.probr-btns .nums span {
  display: inline-block;
  font-size: 26px;
  color: #d2d2d2;
}
.probr-list{
  display: flex;
  flex-wrap: wrap;
  padding: 100px 240px 0 72px;
  position: relative;
}
.probr-list::before{
  content: "";
  width: 100%;
  height: 100px;
  background: radial-gradient(ellipse at top, #f6f8fa 0%,#f6f8fa 30%,#fff 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.probr-item{
   width: calc(50% - 34px);
   margin: 0 68px 80px 0;
}
.probr-item:nth-child(2n){
  margin-right: 0;
}
.probr-item a{
  display: block;
  width: 100%;
  margin-bottom: 20px;
  transition: all .5s ease-in-out;
  position: relative;
}
.probr-item a>i{
  /* content: "+"; */
  width: 66px;
  height: 66px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #114bb0;
  left: 50%;
  top: 130px;
  transform: translateX(-50%);
  position: absolute;
  z-index: 2;
  opacity: 0;
  transition: all .5s ease-in-out;
}
.probr-item a>div::after{
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(0deg, 
		#114bb0cc 0%, 
		#347fce33 50%,
    transparent 100%);
	background-blend-mode: normal,
		normal;
  opacity: 0;
  transition: all .5s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
}
.probr-item a>div{
  width: 100%;
  height: 326px;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
  margin-bottom: 20px;
}
.probr-item .imgbr{
  width: 100%;
  height: 100%;
  transition: all .5s ease-in-out;
}
.probr-item p{
  font-size: 18px;
	line-height: 60px;
	color: #333333;
  text-align: center;
  transition: all .5s ease-in-out;
}

.probr-item:hover p{
  color: #396cbf;
}
.probr-item:hover a>div::after{
  opacity: 1;
}
.probr-item:hover a>i{
  opacity: 1;
}
.probr-item:hover .imgbr{
  transform: scale(1.1);
}


/* å¢žå€¼æœåŠ¡ */
.zzfw{
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
  background: url(../Images/zzfw1.jpg) no-repeat;
  background-position: 144px bottom;
  background-size: 232px 109px;
}
.zzfw2{
  background: url(../Images/zzfw2.jpg) no-repeat;
  background-position: 144px bottom;
  background-size: 287px 126px;
}
.zzfw3{
  background: url(../Images/zzfw3.jpg) no-repeat;
  background-position: 36px bottom;
  background-size: 391px 257px;
}
.zztop{
  padding-top: 20px; 
}
.zzfw h2{
  font-size: 36px;
  background: linear-gradient(to right, #114bb0, #347fce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.zzfw p{
  width: 991px;
  text-align: justify;
	font-family: MicrosoftYaHei;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 36px;
	letter-spacing: 0px;
	color: #333333;
}
.zzfwimg{
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin-bottom: 20px;
}



@media screen and (max-width: 1680px) and (min-width: 1440px)  {
  .product-page{
    padding: 80px 120px 50px;
  }
  .product-categories{
    margin-bottom: 50px;
  }
  .cateitem{
    height: 72px;
    line-height: 72px;
  }
  .product-item{
    margin-bottom: 50px;
  }
  .product-image{
    height: calc(287px * 0.875);
  }
  .product-item .product-title{
    font-size: 17px;
  }
  .product-title{
    padding: 25x 0;
  }
  .product-banner .swiper{
    width: 700px;
    height: 400px;
  }
  .product-desc{
    width: calc(1180px * 0.875);
  }
  .product-contact{
    margin: 60px auto 90px;
  }
  .product-richtext{
    width: calc(1440px * 0.875);
  }
  .product-other{
    width: 100%;
    height: calc(614px * 0.875);
    padding: 70px 120px;
  }
  .polist>a img{
    margin-bottom: 50px;
  }

  .product-page-b{
    padding-left: 0;
    padding-right: 0;
  }
  .product-hangye{
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    width: calc(442px * 0.875);
  }
  .hyitem{
    height: calc(51px * 0.875);
    line-height: calc(51px * 0.875);
    padding-left: calc(240px * 0.875);
  }
  .hyitem::before{
    height: calc(51px * 0.875);
  }
  .product-brtit{
    font-size: 32px;
    margin-bottom: 60px;
  }
  .bullets{
    width: calc(916px * 0.875) !important;
    margin-left: 40px;
  }
  .product-br{
    width: calc(1426px * 0.875);
  }

  .product-br-banner .swiper{
    width: calc(2228px * 0.875);
    height: calc(375px * 0.875);
  }
  .product-br-banner .swiper .swiper-slide{
    width: calc(1114px * 0.875);
  }
  .product-br-banner .swiper .probr-img{
    width: calc(600px * 0.875);
    height: calc(375px * 0.875);
  }
  .probr-slide>b{
    font-size: 32px;
    padding: 40px 50px;
  }
  .probr-btns{
    bottom: calc(143px * 0.875);
    left: calc(735px * 0.875);
    z-index: 9;
  }
  .probr-btns i{
    width: 50px;
    height: 50px;
  }
  .probr-list{
    padding: 80px 120px 0 60px;
  }
  .probr-item{
    width: calc(50% - 25px);
    margin: 0 50px 60px 0;
  }
  .foot{
  	padding: 0 120px;
  }
}

@media screen and (max-width: 1440px)  {
  .product-page{
    padding: 70px 100px 50px;
  }
  .product-categories{
    margin-bottom: 40px;
  }
  .cateitem{
    height: 68px;
    line-height: 68px;
    font-size: 15px;
  }
  .product-item{
    margin-bottom: 40px;
  }
  .product-image{
    height: calc(287px * 0.75);
  }
  .product-item .product-title{
    font-size: 16px;
  }
  .product-title{
    padding: 20px 0;
  }
  .product-banner .swiper{
    width: 600px;
    height: 350px;
  }
  .product-desc{
    width: calc(1180px * 0.75);
    font-size: 15px;
  }
  .product-contact{
    margin: 50px auto 70px;
  }
  .product-richtext{
    width: calc(1440px * 0.75);
    font-size: 15px !important;
  }
  .product-other{
    width: 100%;
    height: calc(614px * 0.75);
    padding: 60px 100px;
  }
  .polist{
    margin-top: 60px;
  }
  .polist>a img{
    margin-bottom: 40px;
  }
  .product-page-b{
    padding-left: 0;
    padding-right: 0;
  }
  .product-hangye{
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    width: calc(442px * 0.75);
    font-size: 15px;
  }
  .hyitem{
    height: calc(51px * 0.75);
    line-height: calc(51px * 0.75);
    padding-left: calc(240px * 0.75);
  }
  .hyitem::before{
    height: calc(51px * 0.75);
  }
  .product-brtit{
    font-size: 28px;
    margin-bottom: 50px;
  }
  .bullets{
    width: calc(916px * 0.75) !important;
    margin-left: 30px;
  }
  .product-br{
    width: calc(1426px * 0.75);
  }
  .product-br-banner .swiper{
    width: calc(2228px * 0.75);
    height: calc(375px * 0.75);
  }
  .product-br-banner .swiper .swiper-slide{
    width: calc(1114px * 0.75);
  }
  .product-br-banner .swiper .probr-img{
    width: calc(600px * 0.75);
    height: calc(375px * 0.75);
  }
  .probr-slide>b{
    font-size: 30px;
    padding: 30px 40px;
  }
  .probr-btns{
    bottom: calc(143px * 0.75);
    left: calc(735px * 0.75);
    z-index: 9;
  }
  .probr-btns i{
    width: 40px;
    height: 40px;
  }
  .probr-list{
    padding: 70px 100px 0 50px;
  }
  .probr-item{
    width: calc(50% - 20px);
    margin: 0 40px 50px 0;
  }
  .foot{
  	padding: 0 100px;
  }
}