/* 隐藏滚动条 */
::-webkit-scrollbar { width: 0px; background-color: transparent; }
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 img{
  width: 140px;
}
.header .content .nav nav{
  display: flex;
}
.header .content .nav nav a{
  position: relative;
  display: block;
  line-height: 30px;
  padding-bottom: 5px;
  align-items: center;
  margin: 0 15px;
  flex-shrink: 0;
  color: #999;
  font-size: 16px;
  
}
.header .content .nav nav a s{
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: #006CFF;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 2;
  opacity: 0;
}
.header .content .nav nav a.active{
  color: #333;
  font-weight: bolder;
}
.header .content .nav nav a.active s{
  opacity: 1;
}

.header .content .nav nav a:hover{
  font-weight: bolder;
  color: #006CFF;
  text-decoration: none;
}
.header .content .nav nav a:hover s{
  opacity: 1;
}

.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(51, 51, 51, 0.20) 0%, rgba(51, 51, 51, 0.00) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main .bannerImg .title .zh{
  color: #006CFF;
  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;
}
.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 .content{
  padding: 20px 0;
  width: 1200px;
  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: 48px;
}
.footer .content .top .text{
  color: #CCC;
  font-size: 24px;
  letter-spacing: 1.2px;
}
.footer .content .middle{
  padding: 52px 0;
  display: flex;
  justify-content: space-between;
}
.footer .content .middle .midLeft .nav{
  display: flex;
}
.footer .content .middle .midLeft .nav li{
  width: 230px;
}
.footer .content .middle .midLeft .nav .navTitle{
  color: #FFF;
  font-size: 16px;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}
.footer .content .middle .midLeft .nav .navContent a{
  display: block;
  color: rgba(255, 255, 255, 0.40);
  font-size: 14px;
  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.40);
  font-size: 14px;
  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: 12px;
  letter-spacing: 0.6px;
}
.footer .content .middle .midRight > p.tel{
  margin: 20px 0 60px 0;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 1.8px;
}
.footer .content .middle .midRight > p.tel > a{
  padding: 10px 0;
  color: #fff;
  border-bottom: 1px solid #fff;

}
.addInternet {
  display: flex;
}

.footer .content .middle .midRight .add span{
  margin-left: 10px;
}
.footer .content .middle .midRight .weixin .wxImg{
  text-align: right;
  margin-top: 42px;
}
.footer .content .middle .midRight .weixin .wxImg img{
  width: 100px;
}
.footer .content .middle .midRight .weixin {
  margin: 0 5px;
}
.footer .content .middle .midRight .weixin p{
 text-align: center;
  color: rgba(255, 255, 255, 0.40);
  font-size: 14px;
  letter-spacing: 0.7px;
}