/* 设置滚动条宽度 */
::-webkit-scrollbar {
  width: 8px;
  /* 设置滚动条宽度 */
  height: 8px;
  /* 设置滚动条高度 */
}

/* 设置滚动条滑块样式 */
::-webkit-scrollbar-thumb {
  background-color: #666;
  /* 滑块颜色 */
  border-radius: 4px;
  /* 滑块圆角 */
}

/* 设置滚动条轨道样式 */
::-webkit-scrollbar-track {
  background: #FCFCFC;
  /* 轨道颜色 */
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* 动画过渡 */
.alltime,
.alltime * {
  -webkit-transition: all .4s cubic-bezier(.4, 0, .2, 1);
  -moz-transition: all .4s cubic-bezier(.4, 0, .2, 1);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.header {
  width: 100%;
  flex-shrink: 0;
  background: #FFF;
  box-shadow: 0px 2px 20px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header .content {
  width: 1200px;
  height: 90px;
  margin: 0 auto;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

.header .content .logo a {
  display: block;
}

.header .content .logo a img {
  height: 55px;
  vertical-align: bottom;
}

.header .content .nav>nav {
  display: flex;
}

.header .content .nav>nav>a,
.header .content .nav>nav>.navA {
  position: relative;
  display: block;
  line-height: 30px;
  padding-top: 30px;
  height: 60px;
  align-items: center;
  margin: 0 20px;


}

.header .content .nav>nav a {
  flex-shrink: 0;
  color: #555;
  font-size: 20px;
}

.header .content .nav nav a s {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: #006CFF;
  z-index: 2;
  opacity: 0;
  margin-top: 3px;
}

.header .content .nav>nav>a.active,
.header .content .nav>nav>.navA.active>a {
  font-size: 22px;
  color: #000;
  font-weight: bolder;
}

.header .content .nav>nav>a.active s,
.header .content .nav>nav>.navA.active s {
  opacity: 1;
}

.header .content .nav>nav>a:hover,
.header .content .nav>nav>.navA:hover a {
  font-weight: bolder;
  color: #006CFF;
  text-decoration: none;
}

.header .content .nav>nav>a:hover s,
.header .content .nav>nav>.navA:hover s {
  opacity: 1;
}

.header .content .nav>nav>.navA {
  cursor: pointer;
}

.header .content .nav>nav>.navA>ul {
  padding: 0 10px;
  position: absolute;
  top: 78px;
  left: -10px;
  height: 0px;
  overflow: hidden;
}

.header .content .nav>nav>a:hover>ul,
.header .content .nav>nav>.navA:hover>ul {
  overflow: visible;
}

.header .content .nav>nav>.navA>ul li.arrow {
  position: relative;
  z-index: 999;
  margin-left: 25px;
  width: 0;
  height: 0;
  border-bottom:
    12px solid rgba(255, 255, 255, 1);
  border-left:
    6px solid transparent;
  border-right:
    6px solid transparent;
}

.header .content .nav>nav>.navA>ul li.text {
  padding: 10px 0;
  width: 280px;
  overflow: hidden;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 10px rgba(51, 51, 51, 0.5);
  border-radius: 8px;
}

.header .content .nav>nav>.navA>ul li.text a {
  display: block;
  width: 100%;
  line-height: 48px;
  font-size: 16px;
  color: #333;
  text-align: center;
}

.header .content .nav>nav>.navA>ul li.text a:hover {
  color: #006CFF;
  text-decoration: none;
}


.header .content .nav>nav>.navA.productNav>ul {
  left: -200px;
}

.header .content .nav>nav>.navA.productNav>ul li.arrow {
  margin-left: 33.5%;
}

.header .content .nav>nav>.navA ul li.text.productText {
  width: 650px;
  padding: 20px 0 0 0;
  overflow: hidden;
}

.header .content .nav>nav>.navA ul li.text.productText .proSerach {
  position: relative;
  padding: 0 20px;
  margin-right: -50px;
}

.header .content .nav>nav>.navA ul li.text.productText .proSerach input {
  width: 545px;
  padding: 0 30px;
  border-radius: 10px;
  height: 40px;
  border: 1px solid #d9d9d9;
  font-size: 14px;
  color: #006CFF;
}

.header .content .nav>nav>.navA ul li.text.productText .proSerach input:focus {
  outline: 1px solid #006CFF;
}

.header .content .nav>nav>.navA ul li.text.productText .proSerach input::-webkit-input-placeholder {
  /*Webkit browsers*/
  color: #ccc;
  font-size: 14px;
}

.header .content .nav>nav>.navA ul li.text.productText .proSerach input::-moz-placeholder {
  /*Mozilla Firefox 19+*/
  color: #ccc;
  font-size: 14px;
}

.header .content .nav>nav>.navA ul li.text.productText .proSerach input::-ms-input-placeholder {
  /*Internet Explorer 10+*/
  color: #ccc;
  font-size: 14px;
}

.header .content .nav>nav>.navA ul li.text.productText .proSerach span {
  width: 26px;
  position: absolute;
  top: 8px;
  left: 25px;
}

.header .content .nav>nav>.navA ul li.text.productText .proSerach span img {
  width: 100%;
}

.header .content .nav>nav>.navA ul li.text.productText .proContent {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.header .content .nav>nav>.navA ul li.text.productText .proContent .leftTitle .littleNav {
  width: 160px;
  height: 52px;
  border: 1px solid #D9D9D9;
  background-color: rgba(0, 108, 255, 0.05);
  color: #555;
}

.header .content .nav>nav>.navA ul li.text.productText .proContent .leftTitle .littleNav.active {
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 1);
  color: #006CFF;
}

.header .content .nav>nav>.navA ul li.text.productText .proContent .rightWrap {
  width: 100%;
}

.header .content .nav>nav>.navA ul li.text.productText .proContent .rightWrap .rightUl {
  /* height: 324px; */
  overflow-y: scroll;
}

.header .content .nav>nav>.navA ul li.text.productText .proContent .rightWrap .rightUl .rightLi {
  position: relative;
  display: none;

}

.header .content .nav>nav>.navA ul li.text.productText .proContent .rightWrap .rightUl .rightLi.active {
  display: block;
}

.header .content .nav>nav>.navA ul li.text.productText .proContent .rightWrap .rightUl .rightLi .rightNav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.header .content .nav>nav>.navA ul li.text.productText .proContent .rightWrap .rightUl .rightLi .rightNav .rightA {
  width: 50%;
}

.header .content .nav>nav>.navA ul li.text.productText .proContent .rightWrap .rightUl .rightLi .rightLine {
  position: absolute;
  height: 100%;
  left: 50%;
  top: 0;
  border-right: 1px solid #D9D9D9;
}

.main .bannerImg {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.main .bannerImg img {
  width: 100%;
  /* height: 300px; */
  object-fit: cover;
}

.main .bannerImg .title {
  position: absolute;
  top: 28%;
  left: 50%;
  width: 1200px;
  margin-left: -600px;
}

.main .bannerImg .title .en {
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 2.1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main .bannerImg .title .zh {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 1.68px;
  margin-top: -36px;
}

.main .bannerImg .title.detailTitle .zh {
  margin-top: 24px;
}

.main .content.contactUsWrap .title {
  text-align: center;
  margin-bottom: 32px;
  line-height: 48px;
}

.main .content.contactUsWrap .title h3 {
  color: #000;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 1.7px;
}

.main .content .contactUs {
  display: flex;
  width: 1200px;
  margin: auto;
  padding-top: 24px;
  justify-content: space-around;
}

.main .content .contactUs .usLeft .title {
  color: #979797;
  font-size: 16px;
  letter-spacing: 0.8px;
  text-align: left;
  margin-bottom: 0;
}

.main .content .contactUs .usLeft .text {
  color: #333;
  font-size: 20px;
  letter-spacing: 1px;
  text-align: left;
}

.main .content .contactUs .usLeft .bottom {
  display: flex;
  margin-top: 44px;
}

.main .content .contactUs .usLeft .bottom .info {
  margin-right: 52px;
}

.main .content .contactUs .usRight {
  width: 50%;
  border-radius: 5px;
  overflow: hidden;
}

.main .content .contactUs .usRight #usContainer {
  width: 100%;
  height: 100%;
}

.main .listPage {
  display: flex;
  justify-content: center;
}

.main .listPage .pageNumber {
  display: flex;
  justify-content: center;
}

.main .listPage .pageNumber li {
  display: flex;
  text-align: center;
  border-radius: 50%;
  margin: 0 5px;
}

.main .listPage .pageNumber li.active a {
  background-color: #006CFF;
  color: #fff;
}

.main .listPage .pageNumber li a {
  display: block;
  color: #000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-decoration: none;
  line-height: 30px;
  font-size: 14px;
  align-items: baseline;
}

.main .listPage .pageLeft,
.main .listPage .pageRight {
  border-radius: 50%;
  margin: 0 5px;
}

.main .listPage .pageLeft a,
.main .listPage .pageRight a {
  display: block;
  width: 30px;
  height: 30px;
}

.main .listPage .pageLeft:hover,
.main .listPage .pageRight:hover {
  background-color: #006CFF;
  color: #fff;
}

.main .listPage .pageLeft:hover svg path,
.main .listPage .pageRight:hover svg path {
  fill: #fff;
}

.main .listPage .pageNumber li:hover a {
  background-color: #006CFF;
  color: #fff;
}

.main .listPage .pageAll {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.56px;
  line-height: 30px;
  margin-left: 30px;
}

#casesSwiper {
  position: relative;
  width: 1700px;
  /*判断宽度设置响应式效果*/
  margin: 60px auto
}

#casesSwiper .swiper-container {
  padding-bottom: 60px;
}

#casesSwiper .swiper-slide {
  width: 1060px;
  height: 440px;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  box-shadow: 0px 2px 20px 5px rgba(0, 0, 0, 0.05);

}

#casesSwiper .swiper-slide .slideLeft img {
  width: 700px;
  height: 440px;
  object-fit: cover;
}

#casesSwiper .swiper-slide .slideRight {
  padding: 24px;
  background-color: #fff;
}

#casesSwiper .swiper-slide .slideRight h3 {
  color: #000;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1.4px;
  margin: 20px 0;
}

#casesSwiper .swiper-slide .slideRight p {
  height: 108px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  color: #999;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.8px;
  margin-bottom: 30px;
}

#casesSwiper .swiper-slide .slideRight .btn {
  margin-top: 20px;
  width: 100px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 5px;
  background: rgba(0, 108, 255, 0.05);
  line-height: 32px;
}

#casesSwiper .swiper-slide .slideRight .btn:hover {
  background: rgba(0, 108, 255, 1);
}

#casesSwiper .swiper-slide .slideRight .btn:hover a {
  text-decoration: none;
}

#casesSwiper .swiper-slide .slideRight .btn:hover span {
  color: #fff;
}

#casesSwiper .swiper-slide .slideRight .btn:hover svg path {
  fill: #FFF;
  /* 修改填充颜色为红色 */
}

#casesSwiper .swiper-slide .slideRight .btn span {
  margin: 0 8px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
}

#casesSwiper .swiper-slide .slideRight .time {
  display: flex;
  align-items: center
}

#casesSwiper .swiper-slide .slideRight .time span {
  margin-left: 5px;
  color: #999;
  ;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.8px;
}

#casesSwiper .swiper-pagination {
  width: 100%;
  bottom: 20px;
}

#casesSwiper .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
  border: 3px solid #fff;
  background-color: #d5d5d5;
  width: 10px;
  height: 10px;
  opacity: 1;
}

#casesSwiper .swiper-pagination-bullets .swiper-pagination-bullet-active {
  border: 3px solid #00aadc;
  background-color: #fff;
}

.footer {
  margin-top: 118px;
  background-color: #000;
}

.footer .fTop {
  border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}

.footer .fBottom {
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.40);
  font-size: 14px;
  letter-spacing: 0.7px;
}

.footer .fBottom a {
  color: rgba(255, 255, 255, 0.40);
}

.footer .fBottom img {
  width: 20px;
  margin-left: 10px;
  vertical-align: bottom;
}

.footer .fBottom span {
  margin-left: 10px;
}

.footer .content {
  padding: 4px 0;
  width: 1580px;
  margin: auto;
}

.footer .content .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}

.footer .content .top .logo img {
  height: 50px;
}

.footer .content .top .text {
  color: #CCC;
  font-size: 24px;
  letter-spacing: 1.2px;
}

.footer .content .middle {
  padding: 48px 0;
  display: flex;
  justify-content: space-between;
}

.footer .content .middle .midLeft .nav {
  display: flex;
}

.footer .content .middle .midLeft .nav li {
  width: 280px;
}

.footer .content .middle .midLeft .nav li.littleLi {
  width: 190px;
}

.footer .content .middle .midLeft .nav .navTitle {
  color: #FFF;
  font-size: 18px;
  letter-spacing: 0.8px;
  margin-bottom: 13px;
}

.footer .content .middle .midLeft .nav .navContent a {
  display: block;
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  letter-spacing: 0.7px;
  line-height: 40px;
}

.footer .content .middle .midLeft .nav .navContent a:hover {
  color: #006CFF;
}

.footer .content .middle .midRight .add {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  letter-spacing: 0.7px;
  display: flex;
  align-items: center;
  text-align: right;
  justify-content: flex-end;
}

.footer .content .middle .midRight>p {
  text-align: right;
  color: #FFF;
  font-size: 14px;
  letter-spacing: 0.6px;
}

.footer .content .middle .midRight>p.tel {
  margin: 5px 0;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 1.8px;
}

.footer .content .middle .midRight>p.tel>a {
  padding: 10px 0;
  color: #fff;
  /* border-bottom: 1px solid #fff; */
}

.footer .content .middle .midRight .add span {
  margin-left: 10px;
}

.addInternet {
  display: flex;
}

.footer .content .middle .midRight .weixin .wxImg {
  text-align: right;
  margin-top: 32px;
}

.footer .content .middle .midRight .weixin .wxImg img {
  width: 100px;
  border-radius: 10px;
}

.footer .content .middle .midRight .weixin {
  margin-left: 42px;
}

.footer .content .middle .midRight .weixin p {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  letter-spacing: 0.7px;
}