 @font-face{
	font-family:"mont";
	src: url("fonts/Montserrat-Light.otf") format("opentype");
}
* {
  margin: 0;
  padding: 0;
}
body,
html {
  height: 100%;
  position: relative;
  width: 100%;
}
body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
body::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  background: #35619c;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
  background: #EEEEEE;
}
img {
  display: block;
}
a {
  color: #333;
  text-decoration: none;
}
ul,
ol,
li,
dl,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hamburger {
  display: none;
}
.x-center{
  width: 1200px;
}
.center{
  width: 1500px;
}
.header-box{
  width: 100%;
  background-color: #FFFFFF;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 100;
  transition: 0.3s;
  height: 64px;
}
.headerInner{
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
  -webkit-align-items: center;
  -webkit-justify-content: space-between;
  height: 64px;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
}
.headerInner.center{
  width: 100%;
  max-width: 100%;

}
.headerInner .logo{
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.headerInner .logo img{
  height: 64px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}
.headerInner .logo p{
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  margin-left: 8px;
}
.headerInner .right{
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  height: 100%;
}
.headerInner .nav{
  display: flex;
  display: -webkit-flex;
  height: 100%;

}
.headerInner .nav li{
  position: relative;
}
.headerInner .nav li>a{
  transition: 0.3s;
  font-family:  ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;;
  font-weight: 300;
  font-size: 18px;
  color: #000000;
  height: 100%;
  display: block;
  line-height: 68px;
  position: relative;
}
.headerInner .nav li .two-b{
  position: fixed;
  left: 0;
  right: 0;
  top: 64px;
  width: 100%;
  height: 60vh;
  transform: scaleY(0);
  transform-origin: center top;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  z-index: 99;
  overflow: hidden;
  box-sizing: border-box;
  display: block;
  padding-top: 3px;
}
.headerInner .nav li .two-b::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #35619c 0%, #5a8bc4 50%, #35619c 100%);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  z-index: 10;
}
.headerInner .nav li .two-b::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 30%;
  min-width: 320px;
  max-width: 400px;
  bottom: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-right: 2px solid rgba(53, 97, 156, 0.15);
  z-index: 1;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.headerInner .nav li .two-b .menu-category-title {
  width: 30%;
  min-width: 300px;
  max-width: 350px;
  text-align: left;
  padding: 20px 0 15px 0;
  position: relative;
  z-index: 10;
  border-bottom: 2px solid rgba(53, 97, 156, 0.2);
  margin-bottom: 10px;
}
.headerInner .nav li .two-b .menu-category-title h4 {
  font-size: 20px;
  font-weight: 700;
  color: #35619c;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.headerInner .nav li:hover>.two-b{
  transform: scaleY(1);
  padding-left: 30px;
  padding-right: 30px;
  opacity: 1;
}
/* 左侧一级菜单列 */
.headerInner .nav li .two-b .two{
  width: 30%;
  min-width: 300px;
  max-width: 350px;
  background: transparent;
  position: relative;
  padding-top: 0;
  margin: 0;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
  z-index: 2;
}
.headerInner .nav li .two-b .two>a{
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: center;
  -webkit-align-items: center;
  width: calc(100% - 40px);
  padding: 18px 20px;
  transition: all 0.3s ease;
  position: relative;
  background: transparent;
  margin: 0;
  border-left: 3px solid transparent;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
}
.headerInner .nav li .two-b .two>a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: rgba(53, 97, 156, 0.08);
  transition: width 0.3s ease;
  z-index: -1;
}
.headerInner .nav li .two-b .two:hover>a::before,
.headerInner .nav li .two-b .two.active>a::before {
  width: 100%;
}
.headerInner .nav li .two-b .two:hover>a,
.headerInner .nav li .two-b .two.active>a{
  border-left-color: #35619c;
  color: #35619c;
  padding-left: 28px;
}
.headerInner .nav li .two-b .two>a span{
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: inherit;
  flex: 1;
  transition: 0.3s;
}
.headerInner .nav li .two-b .two>a i{
  font-size: 16px;
  color: inherit;
  transition: 0.3s;
  opacity: 0.6;
}
.headerInner .nav li .two-b .two:hover>a i,
.headerInner .nav li .two-b .two.active>a i{
  opacity: 1;
}
/* 右侧二级菜单区域 */
.headerInner .nav li .two-b .two .three{
  position: fixed;
  left: max(30%, 320px);
  top: 0px;
  right: 0;
  height: calc(60vh - 3px);
  max-height: calc(60vh - 3px);
  transform: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 20px 20px;
  background: #ffffff;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  z-index: 3;
  align-content: start;
}
.headerInner .nav li .two-b .two .three::-webkit-scrollbar {
  width: 6px;
}
.headerInner .nav li .two-b .two .three::-webkit-scrollbar-thumb {
  background: rgba(53, 97, 156, 0.3);
  border-radius: 3px;
}
.headerInner .nav li .two-b .two .three::-webkit-scrollbar-thumb:hover {
  background: rgba(53, 97, 156, 0.5);
}
.headerInner .nav li .two-b .two .three::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}
.headerInner .nav li .two-b .two:hover .three,
.headerInner .nav li .two-b .two.active .three{
  opacity: 1;
  visibility: visible;
}
.headerInner .nav li .two-b .two .three a{
  display: flex;
  align-items: stretch;
  background-color: #FFFFFF;
  padding: 16px 20px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  transition: all 0.3s ease;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  gap: 15px;
  height: 80px;
}
.headerInner .nav li .two-b .two .three a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #35619c 0%, #5a8bc4 100%);
  transition: height 0.3s ease;
}
.headerInner .nav li .two-b .two .three a:hover::before {
  height: 100%;
}
.headerInner .nav li .two-b .two .three a .menu-image{
  width: 120px;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f5f5f5;
}
.headerInner .nav li .two-b .two .three a .menu-content{
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.headerInner .nav li .two-b .two .three a .menu-title{
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  transition: color 0.3s ease;
  line-height: 1.4;
  height: 33.33%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.headerInner .nav li .two-b .two .three a .menu-desc{
  font-weight: 400;
  font-size: 13px;
  color: #999999;
  line-height: 1.5;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 66.67%;
  flex-shrink: 0;
}
.headerInner .nav li .two-b .two .three a:hover{
  background: linear-gradient(135deg, rgba(53, 97, 156, 0.05) 0%, rgba(90, 139, 196, 0.08) 100%);
  border-color: rgba(53, 97, 156, 0.3);
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(53, 97, 156, 0.15);
}
.headerInner .nav li .two-b .two .three a:hover .menu-title{
  color: #35619c;
}
.headerInner .nav li .two-b .two .three a:hover .menu-desc{
  color: #666666;
}
.headerInner .nav li>a::before{
    display: block;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #000000;
    transition: 0.3s;
}
.headerInner .nav li>a:hover::before{
  width: 100%;
}
.headerInner .nav li.active>a::before{
  width: 100%;
}
.headerInner .nav li:not(:first-of-type){
  margin-left: 59px;
}
.headerInner .language{
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.headerInner .language a{
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  margin-left: 59px;
}
.flow-message{
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 99;
  width: 48px;
  height: 48px;
  background: #35619c;
  border-radius: 3px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  cursor: pointer;
}
.mySwiper{
  width: 100%;
  height: auto;
}
.mySwiper img{
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
}
.mySwiper .ct{
  position: absolute;
  /*top: 50%;*/
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
.mySwiper .ct h3{
  font-family: mont;
  font-weight: 400;
  font-size: 48px;
  color: #222222;
}
.mySwiper .ct h6{
  font-family: mont;
  font-weight: 400;
  font-size: 18px;
  color: #222222;
  line-height: 36px;
  max-width: 50%;
  margin: 16px 0 20px 0;
}
.mySwiper .ct a{
  width: 186px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border: 1px solid #35619c;
  font-family: mont;
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  position: relative;
  z-index: 1;
  transition: 0.3s;
  display: block;
}
.mySwiper .ct a::before{
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #35619c;
}
/*.mySwiper .ct a:hover:before{*/
/*  width: 100%;*/
/*}*/
/*.mySwiper .ct a:hover{*/
/*  color: #ffffff;*/
/*  border-color: #35619c;*/
/*}*/
.mySwiper .swiper-pagination{
  bottom: 20px;
}
.mySwiper .swiper-pagination-bullet{
  width: 15px;
  height: 15px;
  background: #FFFFFF;
  border-radius: 50%;
  opacity: 0.5;
}
.mySwiper .swiper-pagination-bullet-active{
  background-color: #35619c;
  opacity: 1;
}
.i1-box{
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
}
.i1-box .container{
  width: calc(100% - 40px);
  height: calc(100% - 78px - 30px);
  padding: 78px 20px 30px 20px;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.i1-box .container .top{
  width: 100%;
  height: calc(50% - 15px);
  display: flex;
  display: -webkit-flex;
}
.i1-box .container .top .i1Swiper{
  width: calc(100% - (100% - 62px) / 3 - 31px);
  height: 100%;
  margin-right: 31px;
  border-radius: 10px;
  overflow: hidden;
}
.i1-box .container .top .i1Swiper a{
  width: 100%;
  height: 100%;
  display: block;
}
.i1-box .container .top .i1Swiper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.i1-box .container .top .i1Swiper .swiper-pagination-bullet{
  width: 12px;
  height: 12px;
  background: #FFFFFF;
  border-radius: 50%;
  opacity: 0.5;
}
.i1-box .container .top .i1Swiper .swiper-pagination-bullet-active{
  background-color: #35619c;
  opacity: 1;
}
.i1-box .container .top .item{
  width: calc((100% - 62px) / 3);
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.i1-box .container .top .item a{
  width: 100%;
  height: 100%;
  display: block;
}
.i1-box .container .top .item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.i1-box .container .bottom{
  width: 100%;
  height: calc(50% - 15px);
  display: flex;
  display: -webkit-flex;
}
.i1-box .container .bottom .item{
  width: calc((100% - 62px) / 3);
  margin-right: 31px;
  background-color: #EBEBEB;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.i1-box .container .bottom .item img{
  max-width: 50%;
  max-height: 80%;
  position: absolute;
  left: 50%;
  top: 64px;
  transform: translateX(-50%);
  transition: 0.3s;
}
.i1-box .container .bottom .item:hover>img{
  transform: scale(1.05) translateX(-50%);
}
.i1-box .container .bottom .item p{
  position: absolute;
  left: 0px;
  bottom: 15px;
  font-family: mont;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  text-align: center;
  width: calc(100% - 20px);
  padding: 0 10px;
}
.i1-box .container .bottom .item:nth-of-type(3n){
  margin-right: 0px;
}
.i2-box{
  width: 100%;
  height: 100vh;
  position: relative;
  background: url('../images/i2-bg.png') no-repeat center / cover;
}
.wx-flow{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  cursor: pointer;
  display: none;
}
.wx-flow i{
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.wx-box{
  display: none;
  width: 100%;
}
.i2-box h3{
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: mont;
  font-weight: 400;
  font-size: 36px;
  color: #FFFFFF;
}
.i2-box h3 span{
  display: block;
}
.i2-box video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.i3-box{
  width: 100%;
  height: 100vh;
  background: url('../images/i3-bg.jpg') no-repeat center / cover;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.i3-box h3{
  font-family: mont;
  font-weight: 400;
  font-size: 30px;
  color: #FFFFFF;
  text-align: center;
}
.i3-box .container{
  width: calc(100% - 90px);
}
.i3-box .content{
  margin: 80px auto 0;
  position: relative;
}
.i3-box .content .pb{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
.i3-box .content .pb i{
  font-size: 20px;
  color: #FFFFFF;
  transition: 0.3s;
}
.i3-box .content .pb:hover>i{
  color: #35619c;
}
.i3-box .content .pb:hover{
  border-color: #35619c;
}
.i3-box .content .next{
  right: 0px;
}
.i3-box .content .prev{
  left: 0px;
}
.i3-box .i3Swiper{
  width: calc(100% - 72px - 80px);
  height: 360px;
}
.i3-box .i3Swiper .swiper-slide{
  border-radius: 30px;
  background-color: #FFFFFF;
  position: relative;
}
.i3-box .i3Swiper .swiper-slide a{
  display: block;
  width: 100%;
  height: 100%;
}
.i3-box .i3Swiper .swiper-slide .img-box{
  width: 100%;
  height: calc(100% - 50px - 100px);
  position: absolute;
  top: 50px;
  left: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.i3-box .i3Swiper .swiper-slide .img-box img{
  max-width: 70%;
  max-height: 80%;
}
.i3-box .i3Swiper .swiper-slide p{
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  width: calc(100% - 20px);
  padding: 0 10px;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 20px;
}
.i33-box{
  width: 100%;
  height: 100vh;
  background: url(../images/i5.png) no-repeat fixed center / cover;
}
.i4-box{
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  display: flex;
  display: -webkit-flex;
  /* align-items: flex-end;
  -webkit-align-items: flex-end; */
  align-items: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
/*.i4Inner{*/
/*  margin-bottom: 64px;*/
/*}*/
.i4Inner .title h3{
  font-family: mont;
  font-weight: 400;
  font-size: 30px;
  color: #333333;
  text-align: center;
}
.i4Inner .title p{
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  text-align: center;
  margin-top: 10px;
}
.i4Inner .i4Swiper{
  margin-top: 45px;
}
.i4Inner .i4Swiper .img-box{
  width: calc(100% - 2px);
  height: 98px;
  border: 1px solid #F5F5F5;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.i4Inner .i4Swiper .img-box img{
  max-width: 90%;
  max-height: 90%;
}
.i4Inner .i4news{
  margin-top: 60px;
}
.i4Inner .i4news .box{
  margin-top: 40px;
  display: flex;
  display: -webkit-flex;
}
.i4Inner .i4news .box a{
  width: calc((100% - 90px) / 3);
  margin-right: 45px;
}
.i4Inner .i4news .box a img{
  width: 100%;
  height: 170px;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
}
.i4Inner .i4news .box a .txt{
  border: 1px solid #F6F6F6;
  border-top: none;
  width: calc(100% - 2px - 34px);
  padding: 17px 17px 20px 17px;
  border-radius: 0 0 20px 20px;
}
.i4Inner .i4news .box a .txt .tt{
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.i4Inner .i4news .box a .txt .tt h3{
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  font-family: mont;
  width: calc(100% - 100px);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transition: 0.3s;
}
.i4Inner .i4news .box a:hover>.txt .tt h3{
  color: #35619c;
}
.i4Inner .i4news .box a .txt .tt .time{
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  font-family: mont;
}
.i4Inner .i4news .box a h6{
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  line-height: 24px;
  font-family: mont;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 11px 0 10px 0;
  height: 72px;
}
.i4Inner .i4news .box a .bottom{
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.i4Inner .i4news .box a .bottom span{
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  font-family: mont;
  transition: 0.3s;
}
.i4Inner .i4news .box a .bottom:hover>span,
.i4Inner .i4news .box a .bottom:hover>i{
  color: #35619c;
}
.i4Inner .i4news .box a .bottom i{
  font-size: 22px;
  color: #DFDFDF;
  transition: 0.3s;
}
.banner{
  width: 100%;
  height: auto !important;
  margin-top: 64px !important;
  position: relative;
}
.banner.a-banner{
  height: auto;
}
.banner .bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .b-nav{
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: rgba(0,0,0,0.1);
  width: 100%;
  overflow: hidden;
}
.banner.no-bg .b-nav{
  position: relative;
  bottom: auto;
  background-color: #f5f5f5;
}
.banner.no-bg .b-nav .ct i,
.banner.no-bg .b-nav .ct p,
.banner.no-bg .b-nav .ct a,
.banner.no-bg .b-nav .ct span{
  color: #333333;
}
.banner .b-nav .ct{
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
}
.banner .b-nav .ct form{
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 25px;
}
.banner .b-nav .ct form input{
  border: none;
  outline: none;
  height: 100%;
  background-color: transparent;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  font-family: mont;
  padding: 0 10px;
  width: 160px;
}
.banner .b-nav .ct form button{
  border: none;
  outline: none;
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
}
.banner .b-nav .ct form button i{
  font-size: 16px;
  color: #333333;
  margin: 0;
}
.banner .b-nav .ct i,
.banner .b-nav .ct p,
.banner .b-nav .ct a,
.banner .b-nav .ct span{
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  font-family: mont;
}
.banner .b-nav .ct a:last-of-type{
  max-width: 30%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.banner .b-nav .ct i{
  margin-right: 10px;
}
.banner .b-nav .ct span{
  margin: 0 5px;
}
.pro-box{
  width: 100%;
  overflow: hidden;
}
.proInner{
  padding: 60px 0;
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.proInner .left{
  width: 300px;
}
.slide{
  width: 100%;
}
.slide .item .row{
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
  -webkit-align-items: center;
  -webkit-justify-content: space-between;
  width: calc(100% - 40px);
  padding: 17px 20px;
  background-color: #F8F8F8;
  cursor: pointer;
}
.slide .item .row span{
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  font-family: mont;
  width: calc(100% - 16px - 10px);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transition: 0.3s;
}
.slide .item .row i{
  font-size: 16px;
  color: #999999;
  transition: 0.3s;
}
.slide .item .row>a{
  width: 100%;
  display: block;
}
.slide .item:not(:first-of-type){
  border-top: 1px solid #FFFFFF;
}
.slide .item .txt{
  background-color: #F8F8F8;
  padding: 10px 20px;
  width: calc(100% - 40px);
  display: none;
}
.slide .item .txt a{
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  font-family: mont;
  transition: 0.3s;
  padding: 10px 0;
}
.slide .item.active .row span{
  color: #35619c;
}
.slide .item.active .row i{
  transform: rotate(90deg);
}
.slide .item:hover>.row span{
  color: #35619c;
}
.slide .item .txt .active{
  color: #35619c;
}
.slide .item .txt a:hover{
  color: #35619c;
}
.proInner .left .tj{
  width: 100%;
  margin-top: 20px;
}
.proInner .left .tj h3{
  height: 50px;
  line-height: 50px;
  background: #E9222A;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  width: calc(100% - 40px);
  padding: 0 20px;
}
.proInner .left .tj .box{
  margin-top: 21px;
}
.proInner .left .tj .box a{
  display: block;
  width: calc(100% - 2px);
  border-radius: 20px;
  border: 1px solid #F2F2F2;
  height: 292px;
  position: relative;
}
.proInner .left .tj .box a .img-box{
  width: 100%;
  height: 250px;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.proInner .left .tj .box a .img-box img{
  max-width: 90%;
  max-height: 90%;
}
.proInner .left .tj .box a p{
  position: absolute;
  left: 0;
  bottom: 16px;
  width: calc(100% - 30px);
  padding: 0 15px;
  font-weight: 400;
  color: #888888;
  text-align: center;
  font-size: 14px;
  font-family: mont;
  transition: 0.3s;
}
.proInner .left .tj .box a:hover>p{
  color: #E9222A;
}
.proInner .left .tj .box a:hover{
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
}
.proInner .left .tj .box a:not(:first-of-type){
  margin-top: 20px;
}
.proInner .right{
  width: calc(100% - 300px - 30px);
  border: 1px solid #F2F2F2;
  padding-bottom: 30px;
}
.proInner .right .top{
  font-weight: 400;
  font-size: 16px;
  font-family: mont;
  color: #333333;
  width: calc(100% - 40px);
  padding: 16px 20px;
  border-bottom: 1px solid #F2F2F2;
}
.pro-list{
  width: calc(100% - 60px);
  padding: 30px 30px 0 30px;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.pro-list li{
  width: calc((100% - 60px - 6px) / 3);
  height: 328px;
  margin-right: 30px;
  margin-bottom: 30px;
  border-radius: 20px;
  border: 1px solid #F2F2F2;
  transition: 0.3s;
}
.pro-list li:hover{
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
}
.pro-list li:nth-of-type(3n){
  margin-right: 0px;
}
.pro-list li a{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.pro-list li a .img-box{
  width: 100%;
  height: 280px;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.pro-list li a .img-box img{
  max-width: 90%;
  max-height: 90%;
}
.pro-list li a p{
  position: absolute;
  left: 0;
  bottom: 16px;
  width: calc(100% - 30px);
  padding: 0 15px;
  font-weight: 400;
  color: #888888;
  text-align: center;
  font-size: 14px;
  font-family: mont;
  transition: 0.3s;
}
.pro-list li a:hover>p{
  color: #E9222A;
}
.pd-box{
  width: 100%;
  margin-top: calc(83px + 64px);
}
.pd-box .pb-box:not(:first-of-type){
  display: none;
}
.pdpb-top{
  background-color: #F2F2F2;
  position: fixed;
  top: 48px;
  left: 0px;
  z-index: 99;
  width: 100%;
  overflow: hidden;
}
.pdpb-top .ct{
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
  -webkit-align-items: center;
  -webkit-justify-content: space-between;
  padding: 26px 0;
}
.pdpb-top .ct h3{
  font-family: mont;
  font-weight: 400;
  font-size: 24px;
  color: #333333;
}
.pdpb-top .ct .right{
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.pdpb-top .ct .right a{
  font-family: mont;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  transition: 0.3s;
}
.pdpb-top .ct .right a:not(:first-of-type){
  margin-left: 55px;
}
.pdpb-top .ct .right a:hover{
  color: #E9222A;
}
.pdpb-top .ct .right a.active{
  color: #E9222A;
}
.pd-box .p-details .pdSwiper{
  width: 100%;
  height: 600px;
}
.pd-box .p-details .pdSwiper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd-box .p-details .pdSwiper .swiper-pagination-bullet{
  width: 15px;
  height: 15px;
  background: #FFFFFF;
  border-radius: 50%;
  opacity: 0.5;
}
.pd-box .p-details .pdSwiper .swiper-pagination-bullet-active{
  background-color: #E9222A;
  opacity: 1;
}
.pd-box .p-details .content .ct{
  margin: 0 auto;
  padding: 0px 0 50px 0;
}
.pd-box .p-details .content .ct img{
  width: 100%;
  margin: 0 auto;
}
.pd-box .p-zc{
  padding: 100px 0;
  margin: 0 auto;
}
.pd-box .p-zc .p-zc-nav{
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.pd-box .p-zc .p-zc-nav a{
  width: calc((100% - 42px) / 3);
  height: 64px;
  border: 1px solid #BABABA;
  border-radius: 10px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  transition: 0.3s;
}
.pd-box .p-zc .p-zc-nav a .img-box img:last-of-type{
  display: none;
}
.pd-box .p-zc .p-zc-nav a p{
  font-family: mont;
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  margin-left: 21px;
  transition: 0.3s;
}
.pd-box .p-zc .p-zc-nav a:hover{
  border-color: #E9222A;
}
.pd-box .p-zc .p-zc-nav a:hover>p{
  color: #E9222A;
}
.pd-box .p-zc .p-zc-nav a:hover>.img-box img:last-of-type{
  display: block;
}
.pd-box .p-zc .p-zc-nav a:hover>.img-box img:first-of-type{
  display: none;
}
.pd-box .p-zc .p-zc-nav a.active{
  border-color: #E9222A;
}
.pd-box .p-zc .p-zc-nav a.active p{
  color: #E9222A;
}
.pd-box .p-zc .p-zc-nav a.active .img-box img:last-of-type{
  display: block;
}
.pd-box .p-zc .p-zc-nav a.active .img-box img:first-of-type{
  display: none;
}
.pd-box .p-zc .p-zc-box{
  margin-top: 100px;
  min-height: calc(100vh - 48px - 83px - 100px - 200px - 66px);
}
.pd-box .p-zc .cjwt .row{
  border-bottom: 1px solid #E3E3E3;
  padding: 18px 0;
}
.pd-box .p-zc .cjwt .row:first-of-type{
  padding-top: 0px;
}
.pd-box .p-zc .cjwt .row .tm{
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
  -webkit-align-items: center;
  -webkit-justify-content: space-between;
  cursor: pointer;
}
.pd-box .p-zc .cjwt .row .tm p{
  font-family: mont;
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  max-width: 90%;
  transition: 0.3s;
}
.pd-box .p-zc .cjwt .row.active .tm p{
  color: #E9222A;
}
.pd-box .p-zc .cjwt .row.active .tm i{
  transform: rotate(90deg);
}
.pd-box .p-zc .cjwt .row .tm:hover>p{
  color: #E9222A;
}
.pd-box .p-zc .cjwt .row .tm i{
  font-size: 16px;
  color: #BABABA;
  transition: 0.3s;
}
.pd-box .p-zc .cjwt .row .txt{
  margin-top: 10px;
  display: none;
}
.pd-box .p-zc .cjwt .row .txt p{
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
}
.pd-box .p-zc .cjwt .row .txt p:not(:first-of-type){
  margin-top: 5px;
}
.pd-box .p-zc .p-zc-ct:not(:first-of-type){
  display: none;
}
.pd-box .p-zc .axsp .img-box{
  width: 486px;
  height: 299px;
  border-radius: 10px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.pd-box .p-zc .axsp .img-box img{
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pd-box .p-zc .axsp .img-box .flow{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.2);
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  cursor: pointer;
}
.pd-box .p-zc .axsp .img-box .flow i{
  font-size: 24px;
  color: #FFFFFF;
}
.pd-box .p-zc .wsp img{
  margin: 0 auto;
}
.pd-box .p-zc .wsp p{
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  text-align: center;
}
.pd-box .p-zc .cpsc{
  margin: 0 auto;
  width: 400px;
}
.pd-box .p-zc .cpsc .img-box{
  width: 100%;
  height: 300px;
  border-radius: 10px;
  border: 1px solid #BABABA;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.pd-box .p-zc .cpsc .img-box img{
  max-width: 90%;
  max-height: 90%;
}
.pd-box .p-zc .cpsc .btn{
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-top: 40px;
}
.pd-box .p-zc .cpsc .btn a{
  width: 186px;
  height: 50px;
  background: #FFFFFF;
  border-radius: 5px;
  border: 1px solid #DFDFDF;
  font-family: mont;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  text-align: center;
  line-height: 50px;
  position: relative;
  z-index: 1;
  transition: 0.3s;
  overflow: hidden;
}
.pd-box .p-zc .cpsc .btn a::before{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: #E9222A;
  transition: 0.3s;
  z-index: -1;
}
.pd-box .p-zc .cpsc .btn a:hover{
  color: #FFFFFF;
}
.pd-box .p-zc .cpsc .btn a:hover::before{
  width: 100%;
}
.pd-box .p-gltx{
  margin: 0 auto;
  padding: 100px 0;
  min-height: calc(100vh - 48px - 83px - 200px);
}
.pd-box .p-gltx h3{
  font-family: mont;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
}
.pd-box .p-gltx .txt{
  margin-top: 20px;
}
.pd-box .p-gltx .txt p,
.pd-box .p-gltx .txt span{
  font-family: mont !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #666666 !important;
  line-height: 36px !important;
}
.pd-box .p-cpcs{
  margin: 0 auto;
  padding: 100px 0;
  min-height: calc(100vh - 48px - 83px - 200px);
}
.pd-box .p-cpcs img{
  max-width: 100%;
  margin: 0 auto;
}
.pd-box .p-cpcs table{
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #F2F2F2;
}
.pd-box .p-cpcs table thead th{
  background-color: #F2F2F2;
  padding: 15px 0;
  font-family: mont;
  font-weight: bold;
  font-size: 16px;
  color: #333333;
}
.pd-box .p-cpcs table tbody td{
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  padding: 15px 20px;
  border-left: 1px solid #F2F2F2;
}
.pd-box .p-cpcs table tbody tr:not(:first-of-type){
  border-top: 1px solid #F2F2F2;
}
.pb-table{
  width: 100%;
  border-bottom: 1px solid #F2F2F2;
  overflow: hidden;
}
.pb-table .ct{
  display: flex;
  display: -webkit-flex;
  margin: 0 auto;
  height: 59px;
}
.pb-table .ct a{
  font-family: mont;
  font-size: 16px;
  color: #666666;
  font-weight: 400;
  line-height: 59px;
  position: relative;
  transition: 0.3s;
}
.pb-table .ct a::after{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 1px;
  background-color: #E9222A;
  transition: 0.3s;
}
.pb-table .ct a.active{
  color: #E9222A;
}
.pb-table .ct a.active::after{
  width: 100%;
}
.pb-table .ct a:hover{
  color: #E9222A;
}
.pb-table .ct a:hover::after{
  width: 100%;
}
.pb-table .ct a:not(:first-of-type){
  margin-left: 75px;
}
.faq-box{
  width: 100%;
}
.faqInner{
  margin: 0 auto;
  padding: 65px 0 60px 0;
}
.pb-title h3{
  font-family: mont;
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  text-align: center;
}
.pb-title p{
  width: 48px;
  height: 2px;
  background: #E11E23;
  margin: 15px auto 0;
}
.faqInner .ct{
  margin-top: 30px;
}
.faqInner .ct .row{
  background-color: #FAFAFA;
  width: calc(100% - 40px);
  padding: 20px 20px 30px 20px;
  transition: 0.3s;
}
.faqInner .ct .row:hover{
  transform: translateX(-20px);
}
.faqInner .ct .row .top{
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
.faqInner .ct .row .top h4{
  margin-left: 11px;
  width: calc(100% - 22px - 11px);
  font-family: mont;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
}
.faqInner .ct .row .bottom{
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  margin-top: 24px;
}
.faqInner .ct .row .bottom h6{
  margin-left: 11px;
  width: calc(100% - 24px - 11px);
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  line-height: 24px;
}
.faqInner .ct .row:not(:first-of-type){
  margin-top: 20px;
}
.job-box{
  width: 100%;
}
.jobInner{
  padding: 65px 0 50px 0;
  margin: 0 auto;
}
.job-list{
  margin-top: 30px;
}
.job-list li:not(:first-of-type){
  margin-top: 20px;
}
.job-list .top{
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
  -webkit-align-items: center;
  -webkit-justify-content: space-between;
  width: calc(100% - 40px);
  padding: 30px 20px;
  border: 1px solid #F2F2F2;
  cursor: pointer;
}
.job-list .top .name{
  font-family: mont;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  max-width: 60%;
  transition: 0.3s;
}
.job-list .top .right{
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.job-list .top .right .time{
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  transition: 0.3s;
}
.job-list .top .right i{
  font-size: 20px;
  color: #C3C3C3;
  transition: 0.3s;
  margin-left: 100px;
}
.job-list li.active .top{
  border-color: #E9222A;
}
.job-list li.active .top .name,
.job-list li.active .top .right .time,
.job-list li.active .top .right i{
  color: #E9222A;
}
.job-list li.active .top .right i{
  transform: rotate(90deg);
}
.job-list .ct{
  padding-top: 20px;
  display: none;
}
.job-list .ct .content{
  border: 1px solid #F1F1F1;
  width: calc(100% - 40px - 2px);
  padding: 25px 20px;
}
.job-list .ct .content .js{
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #F1F1F1;
}
.job-list .ct .content .js .it{
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.job-list .ct .content .js .it:not(:first-of-type){
  margin-left: 170px;
}
.job-list .ct .content .js .it p{
  font-family: mont;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}
.job-list .ct .content .js .it span{
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  margin-left: 85px;
}
.job-list .ct .content .js .it:not(:first-of-type){
  margin-left: 170px;
}
.job-list .ct .content .txt{
  margin-top: 30px;
}
.job-list .ct .content .txt .nr:not(:first-of-type){
  margin-top: 30px;
}
.job-list .ct .content .txt .nr h3{
  font-family: mont;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}
.job-list .ct .content .txt .nr .jj{
  margin-top: 10px;
}
.job-list .ct .content .txt .nr .jj p{
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  line-height: 32px;
}
.con-box{
  width: 100%;
}
.conInner{
  margin: 0 auto;
  padding: 55px 0 60px 0;
}
.conInner h3{
  font-family: mont;
  font-weight: 400;
  font-size: 24px;
  color: #333333;
}
.conInner h6{
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  line-height: 24px;
  margin-top: 16px;
}
.conInner .top .ct{
  border-top: 1px solid #F2F2F2;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding-top: 22px;
  margin-top: 20px;
}
.conInner .top .ct form{
  width: 740px;
}
.conInner .top .ct form input{
  width: 100%;
  text-indent: 15px;
  height: 43px;
  background: #FFFFFF;
  border: 1px solid #F2F2F2;
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  outline: unset;
  margin-bottom: 20px;
}
.conInner .top .ct form .row{
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.conInner .top .ct form .row input{
  width: calc((100% - 20px) / 2);
}
.conInner .top .ct form textarea{
  width: 100%;
  text-indent: 15px;
  height: 195px;
  background: #FFFFFF;
  border: 1px solid #F2F2F2;
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  outline: unset;
  padding-top: 15px;
  resize: unset;
  margin-bottom: 20px;
}
.conInner .top .ct form button{
  width: 100%;
  height: 45px;
  border: none;
  outline: unset;
  background: #35619c;
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
}
.conInner .top .ct .right{
  width: calc(100% - 740px - 20px - 40px);
  padding: 20px;
  border: 1px solid #F2F2F2;
}
.conInner .top .ct .right .txt p{
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  line-height: 26px;
}
.conInner .top .ct .right .txt .line{
  width: 100%;
  height: 1px;
  background-color: #F2F2F2;
  margin-top: 10px;
}
.conInner .top .ct .right .txt p:not(:first-of-type){
  margin-top: 5px;
}
.conInner .top .ct .right .txt img{
  width: 100%;
  margin-top: 10px;
}
.conInner .bottom{
  margin-top: 50px;
}
.conInner .bottom .row{
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #F2F2F2;
}
.conInner .bottom .row a{
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  width: calc((100% - 30px) / 3);
}
.conInner .bottom .row a i{
  font-size: 24px;
  color: #999999;
}
.conInner .bottom .row a span{
  color: #999999;
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  margin-left: 14px;
}
.conInner .bottom .map{
  width: 100%;
  height: 500px;
  margin-top: 25px;
}
#map{
  width: 100%;
  height: 100%;
}
#map .BMap_cpyCtrl{
  display:none;
}
#map .anchorBL{
  display:none;
}

#map .amap-logo{
  display: none;
  opacity: 0 !important;
}
#map .amap-copyright{
  display: none !important;
}
#map .amap-info-close{
  display: none;
}
.news-box{
  width: 100%;
}
.newsInner{
  margin: 0 auto;
  padding: 20px 0 50px 0;
}
.news-list li{
  border-bottom: 1px solid #F2F2F2;
  transition: 0.3s;
}
.news-list li a{
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding: 20px 0;
}
.news-list li:first-of-type a{
  padding-top: 0;
}
.news-list li a img{
  width: 276px;
  height: 182px;
  object-fit: cover;
}
.news-list li a .right{
  width: calc(100% - 276px - 29px);
}
.news-list li a .right h3{
  font-family: mont;
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transition: 0.3s;
}
.news-list li:hover{
  transform: translateX(-20px);
}
.news-list li:hover>a .right h3{
  color: #E9222A;
}
.news-list li a .right .time{
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  margin: 13px 0 10px 0;
}
.news-list li a .right h6{
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  line-height: 28px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.nd-box{
  width: 100%;
}
.ndInner{
  margin: 0 auto;
  padding: 45px 0 0 0;
}
.ndInner .title h3{
  font-family: mont;
  font-weight: 400;
  font-size: 36px;
  color: #333333;
  text-align: center;
}
.ndInner .title .time{
  font-family: mont;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  text-align: center;
  margin-top: 20px;
}
.ndInner .content{
  border-top: 1px solid #F2F2F2;
  padding-top: 26px;
  margin-top: 40px;
  font-family: mont !important;
  font-size: 14px !important;
  color: #666666 !important;
  line-height: 30px !important;
  font-weight: 400 !important;
}
.ndInner .content p:not(:first-of-type),
.ndInner .content span:not(:first-of-type){
  margin-top: 25px;
}
.ndInner .content img{
  max-width: 100%;
  margin: 25px auto 0;
}
.ndInner .bottom{
  margin-top: 35px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
  -webkit-align-items: center;
  -webkit-justify-content: space-between;
  padding: 24px 0 30px 0;
  border-top: 1px solid #F2F2F2;
}
.ndInner .bottom a{
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  max-width: 48%;
  transition: 0.3s;
}
.ndInner .bottom a:hover{
  color: #E9222A;
}
.ab1-box{
  width: 100%;
  overflow: hidden;
}
.ab1Inner{
  padding: 120px 0 140px calc((100% - 1500px) / 2);
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
  -webkit-align-items: center;
  -webkit-justify-content: space-between;
}
.ab1Inner .left{
  width: 728px;
}
.a-title h3{
  font-family: mont;
  font-weight: 400;
  font-size: 42px;
  color: #333333;
  text-align: left;
}
.a-title p{
  width: 42px;
  height: 2px;
  background: #E9222A;
  margin-top: 35px;
}
.ab1Inner .left h6{
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 24px;
  margin-top: 35px;
}
.ab1Inner .left span{
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 24px;
}
.ab1Inner .left .txt .row{
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.ab1Inner .left .txt .row span{
  width: 8px;
  height: 8px;
  background: #E9222A;
  border-radius: 50%;
}
.ab1Inner .left .txt .row p{
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 30px;
  width: calc(100% - 8px - 8px);
  margin-left: 8px;
}
.ab1Inner .right{
  width: calc(100% - 728px - 80px);
}
.ab1Inner .right img{
  width: 100%;
}
.ab2-box{
  width: 100%;
  background-color: #FAFAFA;
}
.ab2Inner{
  padding: 90px 0 120px 0;
  margin: 0 auto;
}
.ab2Inner .container{
  width: 100%;
  position: relative;
}
.ab2Inner .container .pb{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  border: 1px solid #999999;
  cursor: pointer;
}
.ab2Inner .container .pb i{
  font-size: 20px;
  color: #999999;
  transition: 0.3s;
}
.ab2Inner .container .pb:hover{
  border-color: #E9222A;
}
.ab2Inner .container .pb:hover>i{
  color: #E9222A;
}
.ab2Inner .container .next{
  right: 0;
}
.ab2Inner .container .prev{
  left: 0;
}
.ab2Inner .container .zz-swiper{
  width: 1065px;
  margin-top: 59px;
  padding: 10px 0;
}
.ab2Inner .container .zz-swiper .swiper-slide{
  width: calc(100% / 3);
}
.ab2Inner .container .zz-swiper .img-box{
  width: 100%;
  height: 300px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  /*background: #FFFFFF;*/
  /*box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 15%);*/
}
.ab2Inner .container .zz-swiper img{
  max-width: 95%;
  max-height: 95%;
  cursor: pointer;
}
.ab3-box{
  width: 100%;
  background: url('../images/ab6.png') no-repeat center / cover;
}
.ab3Inner{
  margin: 0 auto;
  padding: 90px 0 230px 0;
}
.ab3Inner .container{
  margin-top: 90px;
  position: relative;
}
.ab3Inner .container .pb{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  border: 1px solid #999999;
  cursor: pointer;
}
.ab3Inner .container .pb i{
  font-size: 20px;
  color: #999999;
  transition: 0.3s;
}
.ab3Inner .container .pb:hover{
  border-color: #E9222A;
}
.ab3Inner .container .pb:hover>i{
  color: #E9222A;
}
.ab3Inner .container .next{
  right: 0;
}
.ab3Inner .container .prev{
  left: 0;
}
.ab3Inner .lc-swiper{
  width: 1370px;
}
.ab3Inner .lc-swiper::before{
  display: block;
  content: '';
  width: 90%;
  height: 1px;
  background-color: #F2F2F2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.ab3Inner .lc-swiper .item{
  width: 100%;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  height: 300px;
}
.ab3Inner .lc-swiper .item .txt{
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.ab3Inner .lc-swiper .item h3{
  font-family: mont;
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  text-align: center;
}
.ab3Inner .lc-swiper .item h6{
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 20px;
  height: 100px;
}
.ab3Inner .lc-swiper .item .rund{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  cursor: pointer;
  position: relative;
  background-color: rgba(233, 34, 42, 0.5);
  margin-top: 10px;
}
.ab3Inner .lc-swiper .item .rund .fl-rund{
  width: 10px;
  height: 10px;
  background: #E9222A;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.ab3Inner .lc-swiper .swiper-slide:nth-of-type(even) .item{
  flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.ab3Inner .lc-swiper .swiper-slide:nth-of-type(even) .item .txt{
  flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
}
.ab3Inner .lc-swiper .swiper-slide:nth-of-type(even) .item .rund{
  margin-top: 0;
  margin-bottom: 10px;
}
.v-box{
  width: 100%;
  margin-top: -60px;
}
.vInner{
  margin: 0 auto;
  padding: 60px 0 110px 0;
}
.vInner .flow{
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
.vInner .flow i{
  font-size: 24px;
  color: #FFFFFF;
}
.vInner .top{
  width: 100%;
  height: 660px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.vInner .top img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.vInner .top:hover>img{
  filter: brightness(75%);
}
.vInner .top:hover>.flow{
  opacity: 1;
}
.vInner .item{
  margin-top: 90px;
}
.vInner .item h3{
  font-family: mont;
  font-weight: bold;
  font-size: 32px;
  color: #000000;
}
.vInner .item ul{
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  margin-top: 30px;
}
.vInner .item ul li{
  width: calc((100% - 42px) / 3);
  margin-right: 21px;
  margin-bottom: 21px;
}
.vInner .item ul li .img-box{
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.vInner .item ul li .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.vInner .item ul li .img-box:hover>img{
  filter: brightness(75%);
}
.vInner .item ul li .img-box:hover>.flow{
  opacity: 1;
}
.vInner .item ul li:nth-of-type(3n){
  margin-right: 0px;
}
.vInner .item ul li p{
  width: calc(100% - 20px);
  padding: 0 10px;
  font-family: mont;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  text-align: center;
  margin-top: 25px;
}
.down-box{
  width: 100%;
}
.downInner{
  padding: 65px 0 60px 0;
  margin: 0 auto;
}
.down-list{
  margin-top: 30px;
}
.down-list li{
  border: 1px solid #F2F2F2;
  transition: 0.3s;
}
.down-list li a{
  width: calc(100% - 40px);
  padding: 15px 20px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
  -webkit-align-items: center;
  -webkit-justify-content: space-between;
}
.down-list li a .name{
  font-family: mont;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  max-width: 60%;
  transition: 0.3s;
}
.down-list li a .right{
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.down-list li a .right .mb{
  font-family: mont;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
}
.down-list li a .right i{
  font-size: 22px;
  color: #666666;
  margin-left: 200px;
  transition: 0.3s;
}
.down-list li:not(:first-of-type){
  margin-top: 20px;
}
.down-list li:hover{
  transform: translateX(-20px);
}
.down-list li:hover>a .right i,
.down-list li:hover>a .name{
  color: #E9222A;
}
/* 分页 */
.page {
  width: 100%;
  margin-top: 30px;
}
.page .el-pagination {
  text-align: center;
  width: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  padding: 0px;
}
.page .el-pagination .btn-prev {
  width: 45px;
  height: 45px;
  margin-right: 5px;
  padding: 0;
  background: #ffffff;
  border: 1px solid #DFDFDF;
  border-radius: 5px;
}
.page .el-pagination .btn-next {
  padding: 0;
  width: 45px;
  background: #ffffff;
  border: 1px solid #DFDFDF;
  height: 45px;
  border-radius: 5px;
}
.page .el-pager li {
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  background: #ffffff;
  border: 1px solid #DFDFDF !important;
  margin-right: 5px;
  padding: 0px;
  border-radius: 5px;
  font-family: mont;
  font-weight: 400;
  font-size: 14px;
  color: #555555;
}
.page .el-pager li.active {
  background-color: #DD2326;
  color: #ffffff;
}
.page .el-pagination .el-pager li:hover {
  color: #FFFFFF !important;
  background-color: #DD2326;
}
.page .el-pagination .el-pager .btn-quicknext:hover {
  color: #DD2326;
}
.diaolog{
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  display: none;
}
.diaolog video{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-height: 75%;
  max-width: 75%;
}
.diaolog img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-height: 80%;
  max-width: 80%;
}
.diaolog i{
  font-size: 46px;
  position: absolute;
  top: 3%;
  right: 3%;
  color: #ffffff;
  cursor: pointer;
}
.f-box{
  width: 100%;
  background-color: #F2F2F2;
}
.fInner{
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding: 60px 0;
}
.fInner .left{
  display: flex;
  display: -webkit-flex;
}
.fInner .left .item{
  max-width: 200px;
}
.fInner .left .item h3{
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  font-family: mont;
}
.fInner .left .item .txt{
  margin-top: 10px;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.fInner .left .item .txt a{
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  line-height: 30px;
  font-family: mont;
}
.fInner .left .item:not(:first-of-type){
  margin-left: 80px;
}
.fInner .right{
  width: 337px;
  border-left: 1px solid #E5E5E5;
  padding-left: 100px;
}
.fInner .right .flogo{
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.fInner .right .flogo p{
  font-weight: 400;
  font-size: 14px;
  color: #555555;
  font-family: mont;
  margin-left: 16px;
}
.fInner .right .row{
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.fInner .right .txt{
  margin-top: 50px;
}
.fInner .right .row .rund{
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  border: 1px solid #AAAAAA;
}
.fInner .right .row .rund i{
  font-size: 20px;
  color: #AAAAAA;
}
.fInner .right .row p{
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  font-family: mont;
  margin-left: 17px;
  width: calc(100% - 40px - 17px);
}
.fInner .right .row:not(:first-of-type){
  margin-top: 34px;
}
.f-box .bottom{
  border-top: 1px solid #E5E5E5;
}
.f-box .bottom .ct{
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  -webkit-justify-content: space-between;
  -webkit-align-items: center;
  margin: 0 auto;
  padding: 20px 0;
}
.f-box .bottom .ct .left a{
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  font-family: mont;
  display: block;
}
.f-box .bottom .ct .right{
  display: flex;
  display: -webkit-flex;
}
.f-box .bottom .ct .right a{
  position: relative;
}
.f-box .bottom .ct .right a:not(:first-of-type){
  margin-left: 17px;
}
.f-box .bottom .ct .right a .flow{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 10px);
}
.f-box .bottom .ct .right a .flow{
  border: 5px solid #FFFFFF;
  border-radius: 3px;
  display: none;
}
.f-box .bottom .ct .right a .flow img{
  height: 100px;
}
.f-box .bottom .ct .right a:hover>.flow{
  display: block;
}
@media screen and (min-width:1920px) and (max-width: 4060px){
  /*.i4-box{*/
  /*  align-items: center;*/
  /*  -webkit-align-items: center;*/
  /*}*/
  /*.i4Inner{*/
  /*  margin-bottom: 0px;*/
  /*}*/
}
@media only screen and (max-width:1660px) {
  .center{
    width: 1100px;
  }
  .mySwiper .ct h3{
    font-size: 42px;
  }
  .mySwiper .ct h6{
    max-width: 70%;
  }
  .i1-box .container .bottom .item img{
    top: 30px;
    max-height: 50%;
  }
  .i2-box h3{
    font-size: 28px;
  }
  .i3-box .content{
    margin: 40px auto 0;
  }
  .i3-box .i3Swiper{
    height: 260px;
  }
  .i3-box h3{
    font-size: 26px;
  }
  .i3-box .i3Swiper .swiper-slide{
    border-radius: 20px;
  }
  /*.i4Inner{*/
  /*  margin-bottom: 45px;*/
  /*}*/
  .i4Inner .title h3{
    font-size: 26px;
  }
  .i4Inner .i4Swiper .img-box{
    height: 60px;
  }
  .i4Inner .i4Swiper .img-box img{
    max-width: 70%;
    max-height: 80%;
  }
  .i4Inner .i4Swiper{
    margin-top: 35px;
  }
  .i4Inner .i4news .box{
    margin-top: 35px;
  }
  .i4Inner .i4news .box a img{
    height: 120px;
    border-radius: 10px 10px 0 0;
  }
  .i4Inner .i4news .box a .txt{
    width: calc(100% - 2px - 20px);
    padding: 10px 10px 15px 10px;
    border-radius: 0 0 10px 10px;
  }
  .i4Inner .i4news{
    margin-top: 50px;
  }
  .banner{
    height: 480px;
  }
  .pb-table .ct a:not(:first-of-type){
    margin-left: 55px;
  }
  .conInner .top .ct form{
    width: 540px;
  }
  .conInner .top .ct .right{
    width: calc(100% - 540px - 20px - 40px);
  }
  .ab1Inner{
    padding: 70px 0 80px calc((100% - 1100px) / 2);
  }
  .a-title h3{
    font-size: 26px;
  }
  .a-title p{
    margin-top: 10px;
  }
  .ab1Inner .left h6{
    margin-top: 10px;
  }
  .ab1Inner .left{
    width: 560px;
  }
  .ab1Inner .right{
    width: calc(100% - 560px - 50px);
  }
  .ab1Inner .left .txt .row p{
    line-height: 26px;
  }
  .ab2Inner .container .zz-swiper{
    width: 960px;
  }
  .ab2Inner .container .zz-swiper .img-box{
    height: 260px;
  }
  .ab3Inner .lc-swiper{
    width: 960px;
  }
  .ab3Inner .lc-swiper .item h3{
    font-size: 20px;
  }
  .ab3Inner .lc-swiper .item h6{
    height: 120px;
  }
  .ab3Inner .lc-swiper .item{
    height: 330px;
  }
  .ab3Inner{
    padding: 80px 0 150px 0;
  }
  .proInner .left{
    width: 250px;
  }
  .proInner .right{
    width: calc(100% - 250px - 30px);
  }
  .pro-list li{
    height: 230px;
  }
  .pro-list li a .img-box{
    height: 170px;
  }
  .pro-list li a .img-box img{
    max-height: 70%;
    max-width: 70%;
  }
  .proInner .left .tj .box a .img-box img{
    max-height: 70%;
    max-width: 70%;
  }
  .proInner .left .tj .box a .img-box{
    height: 170px;
  }
  .proInner .left .tj .box a{
    height: 230px;
  }
  .pd-box .p-details .pdSwiper{
    height: 480px;
  }
  .vInner .top{
    height: 430px;
  }
  .vInner .item ul li .img-box{
    height: 220px;
  }
  .headerInner .nav li:not(:first-of-type){
    margin-left: 25px;
  }
  .headerInner .language a{
    margin-left: 25px;
  }
  .fInner .left .item{
    max-width: 150px;
  }
  .fInner .left .item:not(:first-of-type){
    margin-left: 30px;
  }
  .fInner .right{
    padding-left: 40px;
  }
}
@media only screen and (max-width:1360px) {
  .i4Inner .i4news{
    margin-top: 25px;
  }
  .i4Inner .i4Swiper{
    margin-top: 20px;
  }
  .i4Inner .i4news .box{
    margin-top: 20px;
  }
  /*.i4Inner{*/
  /*  margin-bottom: 30px;*/
  /*}*/
  .i4Inner .title p{
    margin-top: 5px;
  }
  .i4Inner .i4news .box a h6{
    line-height: 20px;
    font-family: mont;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 40px;
    margin: 7px 0 6px 0;
    font-size: 14px;
  }
  .i4Inner .i4news .box a .txt .tt h3{
    font-size: 14px;
  }
  .i4Inner .i4news .box a .txt .tt .time{
    font-size: 12px;
  }
  .i4Inner .i4news .box a .bottom span{
    font-size: 12px;
  }
  .i4Inner .i4news .box a .bottom i{
    font-size: 16px;
  }
  .i4Inner .title h3{
    font-size: 22px;
  }
  .i3-box h3{
    font-size: 22px;
  }
  .banner{
    height: 400px;
  }
  .pd-box .p-details .pdSwiper{
    height: 400px;
  }
}
