.container {padding-left: 0;padding-right: 0;}
header{position: absolute;top: 0;z-index: 50;width: 100%;}
header.active{background: #fff;box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);}
.head_layout{width: 100%;height: 61px;display: flex;}
header.active .head_layout{width: 87%;}
.head_layout .logo {width: 16%;}
.head_layout .logo img {display: block;margin: auto;width: auto;margin-right: 46px;margin-top: 16px;}
.head_layout .head_flex{display: flex;align-items: center;flex: 1;}
.head_layout .nav_wrap{flex: 1;position: relative;padding-left: 25px;}
.head_layout .nav_box .item{float: left;padding: 0 40px;position: relative;height: 20px;line-height: 20px;}	
.head_layout .nav_box .item:first-child{padding-left: 188px;}
.head_layout .nav_box .item:last-child{border-right: none;padding-right: 0;}
.head_layout .nav_box .item a{color: #fff;font-size: 17px;font-weight: 500;}
header.active .head_layout .nav_box .item a{color: #333;}
header.active .head_layout .nav_box .item:hover a{color: #044393;}
.head_layout .nav_box .item a i {font-size: 12px;margin-left: 5px;}
.head_layout .nav_box > .item > a.content1{display: flex;}
.head_layout .nav_box > .item > a,.head_layout .nav_box > .item > a .iconfontBox{transition: all 0.2s ease-in-out;}
.head_layout .nav_box > .item:hover > a{color: #044393;}
.head_layout .nav_box .item:hover .menu_down {visibility: visible;opacity: 1;z-index: 9;transform: scaleY(1)}
.head_layout .menu_down {width: 140%;transition: all 0.6s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;display: block;border-radius: 8px;background: rgba(255, 255, 255, 0.88);box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06);position: absolute;left: 0;transform: translate(-50%,0);transform: scaleY(.5);top: 30px;transform-origin: center top;visibility: hidden;opacity: 0;}
.head_layout .menu_down .classify li{height: auto;line-height: 30px;margin: 0;padding: 5px 15px;}
.head_layout .menu_down .classify li a{width: 100%;display: block;border-bottom: 1px #0000003D solid;color: #666!important;}
.head_layout .menu_down .classify li:hover a{color: #427dca!important;}
.head_layout .menu_down .classify li:last-child a{border-bottom: none;}
.head_layout .btn--search {width: 22px;height: 22px;cursor: pointer;position: relative;}
header.active .head_layout .btn--search{display: none;}
.head_layout .btn--search::after, .head_layout .btn--search::before {display: inline-block;width: 100%;height: 100%;background-image: url("../images/web_icon.jpg");background-position: 0px 0px;background-repeat: no-repeat;content: "";vertical-align: top;transition: all 0.3s ease 0s;}
.head_layout .btn--search::before {background-position: 0px 0px;}
.head_layout .btn--search::after {position: absolute;top: 0px;left: 0px;opacity: 0;transform: scale(0.6) translateY(60%);}
.head_layout .btn--search:hover::after {background-position: 0px -27px;opacity: 1;transform: none;}
.head_layout .btn--search:hover::before {opacity: 0;transform: scale(0.6) translateY(-60%);}
.head_layout .langChoice{position: relative;line-height: 28px;margin-left: 30px;cursor: pointer;display: flex;align-items: center;color: #fff;}
.head_layout .langChoice .lang{font-size: 24px;}
header.active .head_layout .langChoice .lang{color: #333;}
.head_layout .langChoice .down{color: #fff;font-size: 18px;}
header.active .head_layout .langChoice .down{color: #333;}
.head_layout .langChoice dt{line-height: 28px;font-weight: normal;color: #fff;display: flex;align-items: center;}
.head_layout .langChoice dt .txt{margin-left: 12px;}
header.active .head_layout .langChoice dt .txt{color: #333;}
.head_layout .langChoice dd{position: absolute;width: 103px;background: #fff;z-index: 10;text-align: center;line-height: 30px;border: 1px #ddd solid;border-bottom: none;display: none;right: 0;top: 100%;max-height: 400px;overflow-y: scroll;z-index: 99;color: #333;}
.head_layout .langChoice dd a{display: block;width: 100%;border-bottom: 1px #ddd solid;}
.head_layout .langChoice dd a:hover{text-decoration: none;background: #f5f5f5;}	
/* 搜索 */
.search-ipt {
  border: 0px;
  border-radius: 0px;
  background: transparent;
  appearance: none;
}

.web-search {
  display: flex;
  visibility: hidden;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.web-search .btn--search-close {
  position: absolute;
  top: 1.25em;
  right: 1.25em;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgb(204, 204, 204);
  background-image: url("../images/search_btn_close.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  font-size: 1.8em;
  line-height: 45px;
  cursor: pointer;
  transition: transform 0.3s ease 0s;
  background-size: auto 35%;
}
@keyframes bounceInA {
0%, 100%, 20%, 40%, 60%, 80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
}

20% {
    transform: scale3d(1.1, 1.1, 1.1);
}

40% {
    transform: scale3d(0.9, 0.9, 0.9);
}

60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
}

80% {
    transform: scale3d(0.97, 0.97, 0.97);
}

100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}
}
.web-search .btn--search-close:hover {
  background-color: #044393;
  transform: rotate(90deg);
}

.btn--search-close {
  display: block;
}

.web-search .search-ipt {
  display: inline-block;
  box-sizing: border-box;
  padding: 0.05em 0px;
  width: 75%;
  border-bottom: 3px solid;
  color: rgb(51, 51, 51);
  font-size: 20px;
  font-family: inherit;
  line-height: 1em;
}

.web-search .search-ipt::-webkit-input-placeholder {
  color: rgb(51, 51, 51);
  font-weight: bold;
  font-size: 60px;
}

.web-search .search-ipt::-webkit-search-cancel-button, .web-search .search-ipt::-webkit-search-decoration {
  appearance: none;
}

.web-search .search-attr {
  display: block;
  margin: 0px auto;
  padding: 0.85em 0px;
  width: 75%;
  color: rgb(51, 51, 51);
  text-align: right;
  font-size: 90%;
}

.container, .web-search .search-ipt {
  transition: all 0.3s ease-in-out 0s;
}

.container {
  position: relative;
}

.main-wrap--move {
  min-height: 100vh;
  transform: translateY(180px);
}
.main-wrap--move::after {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 100000;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
}
.web-search {
  pointer-events: none;
}

.web-search {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 100001;
  margin: auto;
  padding: 25px 0px;
  width: 100%;
  background-color: rgb(255, 255, 255);
  transition: all 0.3s ease 0s;
  transform: translateY(-100%);
  perspective: 1200px;
}

.web-search .btn--search-close {
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}

.search__suggestion, .web-search .search-attr {
  opacity: 0;
  transition: opacity 0.8s ease 0s, transform 0.8s ease 0s;
  transform: translate3d(-15%, 0px, 0px);
}

.web-search .search-attr {
  padding-bottom: 0px;
  font-size: 20px;
}

.web-search .search-ipt {
  padding: 0px 0px 15px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 60px;
  opacity: 0;
  transform: scale3d(0, 1, 1);
  transform-origin: 0% 50%;
  border-bottom-width: 1px;
}

.web-search .search-ipt, .web-search .search-attr {
  transition-delay: 0.15s;
}

.web-search .search-btn {
  display: none !important;
}

.search--open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.search--open .btn--search-close {
  opacity: 1;
  transition: transform 0.3s ease 0s;
  animation: 1s ease 0s 1 normal none running bounceInA;
}
.search--open .search-ipt {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.search--open .search-attr {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

.search--open {
  transform: none;
}

.search--open::before {
  opacity: 1;
  transform: none;
}
.wrapper img{transition: all 0.3s linear 0s;}
.banner{height: 1015px;}
.banner .banner_container{height: 100%;width: 100%;}
.banner .swiper-slide .ban_img{width: 100%;height: 100%;position: relative;}
.banner .swiper-slide .ban_img img{width: 100%;height: 100%;object-fit: cover;}
.banner .swiper-container-vertical>.swiper-pagination-bullets{right: 33px;top: 45%;}
.banner .swiper-pagination-bullet{width: 10px;height: 10px;background: #fff;opacity: 0.5;}
.banner .swiper-pagination-bullet-active{background: #fff;opacity: 1;}
.banner .swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin: 18px 0;}
.ind_products .container{position: relative;padding-top: 20px;padding-bottom: 20px;}
.title{font-size: 48px;font-weight: 700;color: #333;}
.ind_products .swiper-container{margin-top: 64px;}
.ind_products .item{height: 308px;border-radius: 0px 0px 12px 12px;background: #FFF;box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);margin-bottom: 45px;}
.ind_products .item .imgBox{width: 100%;height: 240px;display: flex;align-items: center;justify-content: center;overflow: hidden;border-radius: 12px 12px 0px 0px;}
.ind_products .item .imgBox img{transition: all .3s;}
.ind_products .item .imgBox:hover img{transform: scale(1.05);}
.ind_products .item .txtBox{width: 100%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;margin-top: 22px;text-align: center;padding: 0 15px;}
.ind_products .swiper-button-prev1,.ind_products .swiper-button-next1{background-image: none;width: 45px;height: 45px;background: #fff;border-radius: 50%;box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);display: flex;align-items: center;justify-content: center;top: 8%;user-select: none;}
.ind_products .swiper-button-prev1 i,.ind_products .swiper-button-next1 i{font-size: 20px;}
.ind_products .swiper-button-prev1:hover,.ind_products .swiper-button-next1:hover{background-color: #4091B1;}
.ind_products .swiper-button-prev1:hover i,.ind_products .swiper-button-next1:hover i{color: #fff;}
.ind_products .swiper-button-prev1{right: 74px;left: auto;}
.ind_about{position: relative;padding-top: 88px;padding-bottom: 75px;}
.ind_about .imgBox{position: absolute;left: -9%;top: -52%;z-index: -1;}
.ind_about .imgBox img{width: 100%;height: 100%;object-fit: cover;}
.ind_about .txtBox{float: right;width: 45%;}
.ind_about .txtBox p{margin-top: 80px;margin-bottom: 66px;overflow: hidden;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 6;}
.ind_about .txtBox .more{border-radius: 27.002px;border: 1px solid rgba(0, 0, 0, 0.47);width: 182px;height: 54px;display: flex;align-items: center;justify-content: center;}
.ind_about .txtBox .more{font-size: 16px;color: #393939;margin-bottom: 83px;}
.ind_about .txtBox .more i{color: #4091B1;font-size: 16px;margin-left: 25px;transition: all .3s;}
.ind_about .txtBox .more:hover i{transform: translateX(10px);}
.ind_about ul{margin-left: -55px;}
.ind_about ul li{width: 33.33%;float: left;text-align: center;position: relative;}
.ind_about ul li .isnum{font-size: 50px;font-weight: 700;color: #4091B1;}
.ind_about ul li .istxt{color: #666;font-size: 16px;margin-top: 0;}
.ind_about ul li .line{width: 1px;height: 60px;background-color: #000000A3;position: absolute;top: 12%;right: 0;}
.ind_about ul li:last-child{padding-left: 30px;} 
.ind_news .container{display: flex;}
.ind_news .container .txtBox{width: 57%;padding-right: 141px;padding-top: 99px;}
.ind_news .container .txtBox ul{width: 100%;margin-top: 47px;}
.ind_news .container .txtBox ul li{display: flex;justify-content: space-between;padding: 36px 0;padding-left: 13px;width: 100%;position: relative;cursor: pointer;}
.ind_news .container .txtBox ul li:first-child{border-top: 1px dashed rgba(0, 0, 0, 0.30);border-bottom: 1px dashed rgba(0, 0, 0, 0.30);}
.ind_news .container .txtBox ul li:not(:first-child){border-bottom: 1px dashed rgba(0, 0, 0, 0.30);}
.ind_news .container .txtBox ul li .left{display: flex;flex-direction: column;align-items: center;margin-right: 57px;width: 82px;}
.ind_news .container .txtBox ul li .left .item1{color: #333;font-size: 40px;margin-bottom: -6px;}
.ind_news .container .txtBox ul li .left .item2{color: rgba(102, 102, 102, 0.80);font-size: 14px;}
.ind_news .container .txtBox ul li .right .newsDetails{color: #666;font-size: 15px;margin-top: 14px;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;}
.ind_news .container .imgBox{width: 43%;height: 747px;position: relative;}
.ind_news .container .imgBox img{width: 100%;height: 100%;object-fit: cover;}
.ind_news .container .imgBox .imgTxt{position: absolute;left: 0;bottom: -3px;width: 100%;height: 188px;border-radius: 0px 0px 71px 71px;background: #51A1BE;padding-left: 23px;padding-right: 21px;padding-top: 35px;}
.ind_news .container .imgBox .imgTxt .p1{color: #fff;font-weight: 700;margin-bottom: 11px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.ind_news .container .imgBox .imgTxt .p2{color: #fff;font-size: 15px;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;}
.ind_news .container .txtBox ul li::after{content: "";position: absolute;bottom: -1px;left: 0;background: #51A1BE;width: 81px;height: 4px;display: none;}
.ind_news .container .txtBox ul li:hover::after{display: block;} 
.ind_news .container .txtBox ul li:hover{border-bottom: 1px dashed rgba(203, 31, 25, 0.40);}
.ind_news .container .txtBox ul li:hover .right .p1{color: #51A1BE;}
.decoration{position: relative;margin-bottom: 100px;margin-top: -100px;z-index: -1;}
.decoration img{width: 100%;height: 100%;object-fit: cover;}
/* 关于我们 */
.crumbs{color: #B0B0B0;font-size: 16px;}
.crumbs .container{padding:15px 5px;border-bottom: 1px solid #D9D9D9;}
.crumbs .weizhi{color: #B0B0B0;}
.nei_ban{height: 451px;background: url(../images/nei_ban.png) center center;background-size: cover;}
.about1{padding-top: 43px;padding-bottom: 100px;}
.about1 .container{display: flex;}
.about1 .container .txtBox{width: 58%;padding-right: 80px;}
.about1 .container .txtBox .p1{margin-top: 101px;margin-bottom: 36px;}
.about1 .container .imgBox{width: 42%;height: 524px;margin-top: 72px;overflow: hidden;border-radius: 29px;}
.about1 .container .imgBox img{width: 100%;height: 100%;object-fit: cover;transition: all .3s;}
.about1 .container .imgBox:hover img{transform: scale(1.05);}
.about2{border-radius: 0px 199px 0px 0px;background: rgba(64, 145, 177, 0.06);padding-top: 89px;padding-bottom: 163px;}
.about2 .title1{text-align: center;font-weight: 700;font-size: 48px;}
.about_sec2 {position: relative;margin-top: 380px;}
.about2_main {text-align: center;position: relative;}
h2.ab2_h2 {margin: 0;font-size: 16px;font-weight: bold;color: #333;line-height: 26px;letter-spacing: 3px;margin-bottom: 50px;}
.about2_swIn .container{position: static;}
.about2_swIn ul {display: inline-block;white-space: nowrap;z-index: 10;margin-left: 3px;position: absolute;right: 0;top: -287px;}
.about2_swIn ul li {position: relative;height: 30px;margin-bottom: 14px;}
.about2_swIn ul li a {max-width: 60px;font-size: 16px;line-height: 30px;color: #666;padding: 4px 0 14px;text-align: left;position: relative;font-family: Arial, Helvetica, sans-serif;transition: opacity 0.3s;}
.about2_swIn ul li.active a{font-size: 24px;color: #4091B1;}
.about2_swIn ul li.active a::after{content:"";width: 2px;height: 15px;background: #4091B1;position: absolute;right: -10px;top: 23%;}
.about2_sw {margin: 0 0 15px;padding: 30px 0;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;-khtml-user-select:none;user-select:none;}
.about2_txt{margin-top: -390px;}
.about2_txt_lis {display: none;}
.about2_txt_lis .contentBox{display: flex;justify-content: space-between;padding: 0 102px;}
.about2_txt_lis .contentBox .left{width: 58%;padding-right: 188px;padding-top: 40px;}
.about2_txt_lis .contentBox .right{width: 42%;height: 404px;margin-top: 40px;}
.about2_txt_lis h2 {color: #4091B1;font-size: 96px;margin-bottom: 50px;text-align: left;font-weight: 700;}
.about2_txt_lis p{text-align: left;line-height: 26px;}
.about2_swIn {display: inline-block;}
.about2_swIn .prev,.about2_swIn .next{width: 40px;height: 40px;background: #FFF;border-radius: 50%;position: absolute;cursor: pointer;display: flex;align-items: center;justify-content: center;box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.06);top: 57px;z-index: 20;}
.about2_swIn .prev:hover,.about2_swIn .next:hover{background: #4091B1;}
.about2_swIn .prev:hover i,.about2_swIn .next:hover i{color: #FFF;}
.about2_swIn .prev i,.about2_swIn .next i{font-size: 18px;color: #333;}
.about2_swIn .prev{left: 100px;}
.about2_swIn .next{right:auto;left: 169px;}
.about3{padding: 100px 0;}
.about3 .txt{margin-top: 81px;margin-bottom: 85px;}
.about3 ul{display: grid;grid-template-columns: repeat(auto-fill, minmax(27.33%, 1fr));grid-gap: 0 105px;}
.about3 ul li{top: 400px;opacity: 0;position: relative;}
.about3 ul li .imgBox{width: 100%;height: 530px;overflow: hidden;}
.about3 ul li .imgBox img{width: 100%;height: 100%;object-fit: cover;transition: all .3s;}
.about3 ul li .imgBox img:hover{transform: scale(1.05);}
.about3 ul li p{padding: 0 10px;text-align: center;width: 100%;margin-top: 33px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.about4{padding-top: 82px;padding-bottom: 281px;border-radius: 140px 0px 0px 0px;background: url(../images/about6.png) center center;background-size: cover;}
.about4 h2{color: #fff;font-size: 48px;font-weight: 700;margin-bottom: 145px;text-align: center;}
.about4 .txtBox{width: 1102px;height: 262px;padding: 70px 95px 50px 127px;margin: 0 auto;border-radius: 26px;background: rgba(255, 255, 255, 0.28);}
.about4 .txtBox p{color: #fff;text-align: center;}
/* 产品中心 */
.products{padding: 101px 0 120px;}
.products .container{display: flex;justify-content: space-between;}
.products .product_nav{width: 20%;}
.products .product_nav ul{border-bottom: 4px solid #F2F4F5;}
.products .product_nav .txt{padding: 18px 17px 18px;background: #51A1BE;font-size: 32px;font-weight: 700;color: #fff;border-radius: 8px 8px 0px 0px;}
.products .product_nav .item{padding: 16px 19px 16px;border-bottom: 1px solid #E6E6E6;border-left: 4px solid #F2F4F5;border-right: 4px solid #F2F4F5;}
.products .product_nav .item:last-child{border-bottom: none}
.products .product_nav .item a{display: flex;justify-content: space-between;align-items: center;}
.products .product_nav .item a .iconfontBox i{font-size: 18px;color: #666;}
.products .product_nav .item.active p{color: #51A1BE;}
.products .product_nav .item.active a .iconfontBox{transform: rotate(90deg);}
.products .product_nav .item.active a .iconfontBox i{color: #51A1BE;}
.products .product_nav .item .menu_down{padding-left: 15px;display: none;border-bottom: none}
.products .product_nav .item .menu_down li{border-bottom:1px solid #F2F4F5;padding: 17px 0 16px;position: relative;}
.products .product_nav .item .menu_down li::after{content: "";width: 6px;height: 6px;border-radius: 50%;background: #51A1BE;position: absolute;left: -11px;top: 45%;}
.products .product_nav .item .menu_down li:last-child{border-bottom:none;}
.products .contentBox{width: 80%;padding-left: 39px;}
.products .contentBox .searchBox{position: relative;margin-bottom: 41px;display: flex;}
.products .contentBox .searchBox input{width: 87%;height: 58px;padding-left: 24px;border-radius: 5px 0px 0px 5px;border: 4px solid #F2F4F5;background: #FFF;}
.products .contentBox .searchBox input::placeholder{color: #999;font-size: 16px;font-weight: 400;}
.products .contentBox .searchBox button{width: 13%;height: 58px;border-radius: 0px 5px 5px 0px;background: #51A1BE;/* y方向投影 */box-shadow: 0px 4px 4px 0px rgba(219, 219, 219, 0.25);display: flex;align-items: center;justify-content: center;color: #fff;cursor: pointer;font-size: 16px;position: absolute;right: 4px;}
.products .contentBox .content{display: grid;grid-template-columns: repeat(auto-fill, minmax(23%, 1fr));grid-gap: 48px 25px;}
.products .contentBox .content li:hover a p{color: #51A1BE;}
.products .contentBox .content li:hover a img{transform: scale(1.05);}
.products .contentBox .content li .imgBox{width: 100%;height: 240px;display: flex;align-items: center;justify-content: center;border: 4px solid #F2F4F5;overflow: hidden;margin-bottom: 10px;}
.products .contentBox .content li .p1{white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.products .contentBox .content li .p2{color: #666;}
.divide .pagination>.active>a{background-color: #51A1BE;border-color: #51A1BE;color: #fff;}
.divide .pagination>li>a{color: #51A1BE;}
/* 产品详情 */
.proDetail{padding-bottom: 100px;display: flex;}
.proTop .dotBoxL{float: left;width: 625px;}
.proTop .dotBoxL ol{width: 625px;height: 510px;position: relative;margin-bottom: 20px;border: 4px solid #F2F4F5;}
.proTop .dotBoxL ol li{max-height: 100%;max-width: 100%;display: flex;align-items: center;justify-content: center;overflow: hidden;position: absolute;z-index: 1;border-radius: 10px;width: 100%;height: 100%;}
.proTop .dotBoxL ol li img{max-width: 100%;opacity: 0;}
.proTop .dotBoxL ol li.open{z-index: 2;background: #FFF;}
.proTop .dotBoxL ol li.open img{opacity: 1;}
.proTop .dotBoxL ul li{float: left;width: 190px;height: 100px;cursor: pointer;margin-right: 10px;display: flex;align-items: center;justify-content: center;}
.proTop .dotBoxL ul li.active{border: 2px solid #3063BD;}
.proTop .dotBoxL .videoBox {background: #333;width: 625px;height: 510px;position: absolute;left: 0;top: 0px;z-index: 9;}
.videoIcon {position: absolute;z-index:8;bottom: 133px;left: 10px;width: 50px;height: 50px;line-height: 50px;cursor: pointer;}
.videoIcon i{font-size: 40px;color: #666;}
.videoClose{position: absolute;top: 20px;right: 20px;cursor: pointer;}
.videoClose i{color: #fff;}
.proTop .dotBoxL .proBan{position: relative;}
.proTop .dotBoxL .videoBox video{width: 625px;height: 510px;}
.proDetail .txtBox{width: calc(100% - 625px);}
.proDetail .txtBox .top{width: 100%;/* height: 121px; */background: linear-gradient(94deg, #50A1BE 25.37%, #F7F4E7 97.57%);padding-top: 28px;padding-bottom: 18px;padding-left: 62px;}
.proDetail .txtBox .top h2{color: #fff;font-size: 32px;font-weight: 700;margin-bottom: 16px;}
.proDetail .txtBox .top p{color: #fff;}
.proDetail .txtBox .content1{padding-top: 42px;padding-left: 62px;}
.proDetail .txtBox .content1 h2{color: #333;font-size: 16px;font-weight: 700;margin-bottom: 18px;}
.proDetail .txtBox .content1 p{line-height: 43px;}
.proDetail .txtBox .button:hover{opacity: 0.8;}
.proDetail .txtBox .button{transition: all 0.3s;width: 198px;height: 54px;background: #51A1BE;border-radius: 36.5px;display: flex;align-items: center;justify-content: center;color: #FFF;font-size: 20px;margin-top: 56px;margin-left: 62px;}
.proDetail .txtBox .button i{color: #fff;font-size: 20px;margin-left: 18px;margin-top: 3px;}
.details{padding-bottom: 84px;}
.details h2{background: #51A1BE;padding: 20px;font-size: 24px;color: #fff;font-weight: 700;margin-bottom: 35px;}
.details h3{color: #333;font-size: 16px;font-weight: 700;margin-bottom: 20px;}
.details p{margin-bottom: 55px;}
.related_products{padding-bottom: 100px;}
.related_products h2{background: #51A1BE;padding: 20px;font-size: 24px;color: #fff;font-weight: 700;margin-bottom: 59px;}
.related_products .imgBox{width: 100%;height: 243px;display: flex;align-items: center;justify-content: center;overflow: hidden;border: 4px solid #F2F4F5;}
.related_products .imgBox img{transition: all .3s;}
.related_products .imgBox:hover img{transform: scale(1.05);}
.related_products .txtBox{width: 100%;margin-top: 27px;}
.related_products .txtBox .p1{white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.related_products .txtBox .p2{color: #666;}
.related_products .swiperPro3 .pagination3{position: absolute;left: 46%;bottom: 0;bottom: -18px;}
.related_products .swiper-container{padding-bottom: 55px;}
.related_products .swiper-pagination-bullet{width: 10px;height: 10px;}
.dialogBox {position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 993;display: none;}
.inputBox.required .tips{left: 147px;}
.inquiryBox1 .inputBox.required textarea{border: 1px #f00 solid;}
.inquiryBox1 .inputBox.required input[type="text"]{border: 1px #f00 solid;}
body.black::after{background: rgba(0,0,0,0.4);
    z-index: 9;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: inline-block;  z-index: 990;
    position: fixed;}
.mask{
    width: 822px;
    position: absolute;
    left: 50%;
    top: 15%;
    transform: translate(-50%,0);
    z-index: 200;
    background-color: #fff;
    padding: 50px;
}
.closeBtn{position: absolute;top: 20px;right: 20px;}
.inquiryBox1 .submitBtn:hover{opacity: 0.9;}
.inquiryBox1 input{height: 30px;width: calc(100% - 153px);padding: 0 10px;border: 1px solid #DDDDDD;}
.inquiryBox1 form .selectCon{display: inline-block;width: calc(100% - 153px);position: relative;}
.inquiryBox1 form .selectCon input{width: calc(100% - 119px);}
.inquiryBox1 span{display:inline-block;width: 143px;position: relative;color: #666;}
.inquiryBox1 .inputBox{margin-bottom: 10px;}
.inquiryBox1 .inputBox .radioBox{display: inline-block;width: calc(100% - 153px);}
.inquiryBox1 .inputBox .radioBox label{margin-right: 20px;font-weight: normal;}
.inquiryBox1 .inputBox .codeBox{display: inline-block;width: calc(100% - 153px);}
.inquiryBox1 .inputBox .codeBox input{width: calc(100% - 80px);}
.inquiryBox1 .inputBox .codeBox img{width: 80px;height: 30px;}
.inquiryBox1 .inputBox select{width: 114px;height: 30px;border: 1px solid #DDDDDD;padding-left: 10px;}
.inquiryBox1 .inputBox .triangle{position: absolute;right: 10px;top: 5px;color: #D9D9D9;font-size: 14px;cursor: pointer;z-index: -10;width: auto;}
.inquiryBox1{margin-top: 30px;}
.inquiryBox1 h2{margin-bottom: 15px;}
.radio_box input[type="radio"]{width: 16px;height: 16px;-webkit-appearance: none;  margin-left: -1px;  border: 1px #bbb solid; border-radius: 100%;margin-right: 0.3rem;vertical-align: -4px;appearance: none;-webkit-appearance: none;outline: none;}
.radio_box input[type="radio"]:checked{ border: 1px #ff8a00 solid;position: relative;}
.radio_box input[type="radio"]:checked:after{content: "";background: #FF8A00;position: absolute;top: 4px;left: 4px;width: 6px;height: 6px;font-family: "iconfont" !important;font-size:30px;display:block;border-radius: 3px;}
.inquiryBox1 form .inputBox .radio_box .txt{margin-left: 10px;font-weight: 400;}
.inquiryBox1 sup{color: #EF2525;font-size: 18px;position: absolute;top: 9px;left: -5px;}
.inquiryBox1 .inputBox textarea{width: calc(100% - 153px);height: 98px;border: 1px solid #DDDDDD}
.inquiryBox1 .submitBtn{display: flex;align-items: center;justify-content: center;background-color: #51A1BE;color: #fff;width: 130px;height: 40px;cursor: pointer;border-radius: 5px;margin-left: 146px;margin-top: 41px;}
.inquiryBox1 .submitBtn:hover{opacity: 0.9;}
.inputBox.required input{border-bottom: 1px #f00 solid;}
.inputBox.required  textarea{border: 1px #f00 solid;}
.inputBox.required .tips{color: #fff;background: #363636;display: inline-block;position: relative;margin-top: 10px;font-size: 12px;border-radius: 2px;left: 147px;padding: 0 3px;}
.inputBox.required .tips::after{
        width:0;
        height:0;
        border-right: 6px solid transparent;
        border-left: 6px solid transparent;
        border-bottom: 6px solid #363636;
        position: absolute;
        content: "";
        left: 6px;
        top: -5px;
        }
.hint{display: none;position: fixed;top: 65%;left: 50%;transform: translate(-50%,-50%);z-index: 999;width: 580px;text-align: center;line-height: 50px;background-color: #fff;box-shadow: 0 0 10px rgba(0,0,0,0.2);}
.hint .iconfont{color: #51A1BE;font-size: 16px;margin-right: 5px;margin-top: 5px;}
.hint .txt{color: #333;font-size: 15px;} 
/* 科研创新 */
.innovation1,.innovation2,.innovation3{padding-top: 43px;padding-bottom: 84px;}
.innovation1 h2,.innovation2 h2,.innovation3 h2{font-size: 36px;color: #333;font-weight: 700;margin-bottom: 40px;}
.innovation2 h2{text-align: right;}
.innovation1 .contentBox,.innovation2 .contentBox,.innovation3 .contentBox{display: flex;}
.innovation1 .contentBox .imgBox,.innovation2 .contentBox .imgBox,.innovation3 .contentBox .imgBox{width: 46%;height: 408px;}
.innovation1 .contentBox .imgBox img,.innovation2 .contentBox .imgBox img,.innovation3 .contentBox .imgBox img{width: 100%;height: 100%;object-fit: cover;}
.innovation1 .contentBox .txtBox,.innovation2 .contentBox .txtBox,.innovation3 .contentBox .txtBox{width: 54%;padding-left: 63px;margin-top: 13px;}
.innovation2 .contentBox .txtBox{padding-left: 0;padding-right: 122px;}
.innovation3 .contentBox .txtBox{padding-left: 118px;}
.innovation1 .contentBox .txtBox h3,.innovation2 .contentBox .txtBox h3,.innovation3 .contentBox .txtBox h3{font-size: 24px;color: #333;font-weight: 700;margin-bottom: 40px;}
.innovation1 .contentBox .txtBox .p1,.innovation2 .contentBox .txtBox .p1,.innovation3 .contentBox .txtBox .p1{margin-bottom: 37px;}
/* 新闻列表 */
.news{padding-top: 43px;padding-bottom: 121px;}
.news .contentBox{width: 100%;}
.news .contentBox li{padding: 40px 37px 38px 24px;display: flex;justify-content: space-between;margin-bottom: 41px;position: relative;top: 200px;opacity: 0;}
.news .contentBox li .imgBox{width: 26%;height: 215px;display: inline-block;overflow: hidden;}
.news .contentBox li .imgBox img{width: 100%;height: 100%;object-fit: cover;}
.news .contentBox li .imgBox:hover img{transform: scale(1.05);}
.news .contentBox li .txtBox{width: 74%;padding-left: 66px;padding-top: 8px;}
.news .contentBox li .txtBox h2{color: #333;font-size: 24px;font-weight: 400;margin-bottom: 10px;}
.news .contentBox li .txtBox .p1{color: #666;font-size: 14px;margin-bottom: 10px;}
.news .contentBox li .txtBox .newsDetails{color: #666;margin-bottom: 20px; overflow: hidden;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;}
.news .contentBox li .txtBox .more{font-size: 14px;color: #51A1BE;display: block;float: right;position: relative;padding: 5px;transition: all .4s;}
.news .contentBox li .txtBox .more::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #51A1BE;
  content: "";
  transition: all 0.4s ease 0s;
}

.news .contentBox li .txtBox .more::before {
  top: 0px;
  left: 0px;
}

.news .contentBox li .txtBox .more::after {
  right: 0px;
  bottom: 0px;
}

.news .contentBox li .txtBox .more:hover::before, .news .contentBox li .txtBox .more:hover::after {
  width: 0px;
  opacity: 0;
}

.news .contentBox li .txtBox .more:hover {
  background-color: #51A1BE;
  color: rgb(255, 255, 255);
  transition-delay: 0.3s;
}
.news .contentBox li:nth-child(2n+1){background-color: #F4F9FB;}
/* 新闻详情 */
.newsDetail{padding-top: 50px;margin-bottom: 50px;}
.newsTxt h2{font-size: 28px;font-family: "times new roman";}
.newsTxt h5{margin: 20px 0;color: #999;}
.newsTxt img{max-width: 100%;margin-bottom: 20px;}
.newsTxt p{font-size: 15px;line-height: 32px;}
/* 招聘 */
.job{padding-top: 43px;padding-bottom: 31px;}
.job h3{color: #333;font-size: 20px;font-weight: 700;margin-bottom: 34px;}
.job .txt3{color: #333;font-size: 16px;font-weight: 400;margin-bottom: 52px;line-height: 28px;}
.job .item{margin-bottom: 48px;cursor: pointer;}
.job .item .overview{display: flex;padding: 20px 29px 20px 54px;justify-content: space-between;align-items: center;background: #F9F9F9;}
.job .item .overview .left{color: #333;font-size: 18px;font-weight: 700;}
.job .item .overview .middle span{margin: 0 20px;}
.job .item .overview .right{display: flex;align-items: center;}
.job .item .overview .right span{color: #333;font-size: 16px;}
.job .item .overview .right .icon_box{margin-left: 18px;user-select: none;margin-top: -3px;}
.job .item .overview .right .icon_box i{font-size: 18px;color: #333;}
.job .item .content1{padding-left: 54px;display: none;padding-top: 23px;}
.job .item.active .content1{display: block;}
.job .item.active .overview{background: #51A1BE;}
.job .item.active .overview .left,.job .item.active .overview .middle{color: #fff;}
.job .item.active .overview .right span{color: #fff;}
.job .item.active .overview .right .icon_box{transform:rotate(180deg);}
.job .item.active .overview .right .icon_box i{color: #fff;}
.job .item .content1 .title1{color: #333;font-size: 16px;font-weight:700;margin: 14px 0;}
.job .item .content1 .details1{color:  #333;font-size: 14px;font-weight: 400;margin-bottom: 20px;}
/* 联系我们 */
.contact1{padding-top: 43px;padding-bottom: 32px;}
.contact1 .container{display: flex;}
.contact1 .container .contact_box{width: 47%;padding-right: 40px;padding-top: 30px;}
.contact1 .container .contact_box h2{font-size: 24px;font-weight: 700;color: #333333E5;padding-bottom: 31px;border-bottom: 1px solid #0000004D;}
.contact1 .container .contact_box ul li{display: flex;align-items: center;padding: 26px 0;padding-left: 14px;border-bottom: 1px solid #0000004D;}
.contact1 .container .contact_box ul li i{font-size: 18px;color: #52A1BE;margin-right: 31px;}
.contact1 .container .contact_box ul li a{color: #333333E5;font-size: 16px;}
.contact1 .container #container{width: 53%;height: 485px;}
.contact2{padding-top: 50px;}
.contact2 h2{padding-left: 30px;padding-top: 16px;padding-bottom: 16px;background: #51A1BE;box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);color: #fff;font-size: 20px;font-weight: 700;}
.contact2 form{display: flex;position: relative;padding: 0 30px;padding-top: 40px;padding-bottom: 174px;margin-bottom: 116px;background: #FFF;box-shadow: 0px 45px 13px 0px rgba(161, 161, 161, 0.00), 0px 29px 12px 0px rgba(161, 161, 161, 0.01), 0px 16px 10px 0px rgba(161, 161, 161, 0.05), 0px 7px 7px 0px rgba(161, 161, 161, 0.09), 0px 2px 4px 0px rgba(161, 161, 161, 0.10);}
.contact2 form .left{width: 50%;}
.contact2 form .right{width: 50%;padding-left: 30px;padding-bottom: 23px;}
.contact2 form .inputBox.required .tips{margin-left: 0;left: 0;}
.contact2 form input{width: 100%;height: 48px;line-height: 48px;padding-left: 24px;border: 1px solid rgba(0, 0, 0, 0.20);color: #333;}
.contact2 form .inputBox.required input{border: 1px #f00 solid;}
.contact2 form input::placeholder{color: #333;font-size: 14px;}
.contact2 form textarea{width: 100%;height: 100%;margin-bottom: 41px;padding-top: 10px;padding-left: 24px;border: 1px solid rgba(0, 0, 0, 0.20);color: #333;}
.contact2 form .inputBox.required textarea{border: 1px #f00 solid;}
.contact2 form textarea::placeholder{color: #333;font-size: 14px;}
.contact2 form .img_verification{height: 48px;}
.contact2 form .submit{display: flex;align-items: center;justify-content: center;width: 355px;height: 54px;font-size: 16px;font-weight: 700;background: #51A1BE;color: #fff;position: absolute;left: 38%;bottom: 47px;}
.contact2 form .submit:hover{opacity: 0.9;}
.contact2 form .verification{display: flex;} 
.contact2 form .verification .verification_input{width: 81%;position: relative;}
.contact2 form .right .textarea_box{height: 100%;}
.contact2 form .right .textarea_box .tips{margin-top: -32px;}
.contact2 .inputBox{margin-bottom:15px;}
/* 底部 */
.footer {padding: 40px 0px 5px;background: #F9F9F9;font-size: 14px;color: rgb(51, 51, 51);}
.footernavwarp .col-lg-3 {padding-left: 0px;}
.footerwarp h2 {font-size: 16px;font-weight: bold;margin-bottom: 20px;}
.footerwarp  p {opacity: 0.8;margin-bottom: 22px;}
.footerwarp p a:hover {opacity: 0.8;}
.footerwarp  i {margin-right: 8px;}
.footerwarp .links{margin-top: 25px;}
.footerwarp .links a{margin-right: 49px;}
.footerwarp .links a:last-child{margin-right: 0;}
.footercopy {margin-top: 0px;border-top: 1px solid rgb(225, 228, 237);font-size: 12px;text-align: center;color: rgb(153, 153, 153);padding: 10px 0px;}
.footer .logo{margin-bottom: 15px;display: inline-block;}
@media (min-width: 1400px) {
  .container {
    width: 1400px;
  }
}
@media (max-width: 1366px) and (min-width:769px){
  .head_layout .nav_box .item:first-child{padding-left: 0;}
  .head_layout .head_flex{padding-right: 20px;}
  .ind_about .imgBox{left: -17%;}
  .ind_news .container .imgBox{height: 661px;}
  .ind_news .container .imgBox .imgTxt{bottom: -19px;}
  .ind_news .container .txtBox ul li{padding: 20px 0;}
  .ind_news .container .imgBox .imgTxt .p2{font-size: 14px;}
}
@media (max-width: 768px) {
.container{width: 100%;padding-left: 15px;padding-right: 15px;}
.headerPhoneTop {position: fixed;width: 100%;top: 0;left: 0;text-align: center;background: #fff;box-shadow: 0 0 7px #b9b9b9;z-index: 99;transition: all 0.2s ease-in-out;-webkit-transition: all 0.2s ease-in-out;-moz-transition: all 0.2s ease-in-out;-ms-transition: all 0.2s ease-in-out;-o-transition: all 0.2s ease-in-out;}
.menuPhone {position: fixed;width: 250px;height: 100%;overflow-y: auto;left: -250px;background: #90a4ae;top: 0;    z-index: 9;
transition: all 0.2s ease-in-out;-webkit-transition: all 0.2s ease-in-out;-moz-transition: all 0.2s ease-in-out;-ms-transition: all 0.2s ease-in-out;-o-transition: all 0.2s ease-in-out;}
.headerPhoneLogo img {height: 30px;}
.headerPhoneLogo {padding: 10px 0;}
a.menu-trigger {position: absolute;display: inline-block;width: 36px;height: 30px;top: 50%;margin-top: -15px;left: 10px;padding: 0 5px;}
a.menu-trigger span {display: block;background: #222;width: 100%;height: 2px;margin: 6px 0;}
.wrapper {position:relative;width: 100%;left: 0;padding-top: 0 !important;transition: left 0.2s ease-in-out;-webkit-transition: left 0.2s ease-in-out;-moz-transition: left 0.2s ease-in-out;-ms-transition: left 0.2s ease-in-out;-o-transition: left 0.2s ease-in-out;}
body.menuOpen .headerPhoneTop  {left:250px;}
body.menuOpen .wrapper  {left:250px;}
body.menuOpen .menuPhone{left:0;}
.headerPhone {transition: left 0.2s ease-in-out;-webkit-transition: left 0.2s ease-in-out;-moz-transition: left 0.2s ease-in-out;-ms-transition: left 0.2s ease-in-out;-o-transition: left 0.2s ease-in-out;}
body.menuOpen .headerPhone {left: 250px;}
.menuPhone li h2 {margin: 0;font-size: 15px;line-height: 30px;}
.menuPhone li h2 a {color: #fff;padding: 5px 15px;display: inline-block;width: 100%;}
.menuPhone li h5 {margin: 0;padding-left: 25px;font-size: 12px;line-height: 25px;border-top: solid 1px rgba(255, 255, 255, 0.15);}
.menuPhone li h5 a {color: #fff;padding: 5px 0;display: inline-block;font-size: 14px;}
.menuPhone ul li {border-bottom: solid 1px rgba(255, 255, 255, 0.15);}
.menuPhoneHide {background: rgba(255, 255, 255, 0.1);display: none;}
.headerPhone .menu_tr_ico{position: absolute;right:15px;top: 50%;margin-top: -18px;}
.headerPhone .menu_tr_ico .enChange{background:  #ff8a00;color:  #fff;border-radius:  100%;padding: 5px;}
.headerPhone .menu_tr_ico i{font-size: 20px;color: #666;display: inline-block;margin-left: 10px;}
.headerPhone .menu_tr_search{margin-top: 10px;padding: 0 15px;position: relative;}
.headerPhone .menu_tr_search input{width: 100%;height: 40px;background-color: #f1f1f1;padding: 0 10px;margin-bottom: 10px;}
.headerPhone .menu_tr_search button{    right: 20px;position: absolute;width: 40px;height: 40px;background: none;top: 0;}
.headerPhone {padding-top: 50px;position: relative;left: 0;}
.headerPhone .menu_tr_ico .selectBox {background: #fff;box-shadow: 0 0 4px #ddd;position: absolute;display: none;overflow-y: scroll;max-height: 300px;}
.headerPhone .menu_tr_ico .selectBox:after{width: 0;height: 0;border-right: 5px solid transparent;border-left: 5px solid transparent;border-bottom: 7px solid #fff;content: "";position: absolute;top: -7px;right: 9px;}
.headerPhone .menu_tr_ico .selectBox::before{width: 0;height: 0;border-right: 5px solid transparent;border-left: 5px solid transparent;border-bottom: 7px solid #999;content: "";position: absolute;top: -7px;right: 9px;}
.headerPhone .menu_tr_ico .selectBox ul li{padding: 0 10px;border-bottom: 1px #dedede solid;}
.banner{height: 400px;}
.banner .swiper-slide .ban_img{height: 400px;}
.title{font-size: 30px;}
.ind_products .swiper-button-prev1, .ind_products .swiper-button-next1{top: 4%;}
.ind_about{padding-top: 0;padding-bottom: 50px;}
.ind_about .imgBox{display: none;}
.ind_about .txtBox{width: 100%;}
.ind_about .txtBox p{margin: 30px 0;}
.ind_about ul{margin-left: -28px;}
.ind_about .txtBox .more{margin-bottom: 30px;}
.ind_about ul li .isnum{font-size: 30px;}
.ind_about ul li .istxt{font-size: 13px;}
.ind_about ul li .istxt{margin-top: 0;margin-bottom: 0;}
.ind_news .container{display: inherit;}
.ind_news .container .txtBox{width: 100%;padding-right: 0;padding-top: 0;}
.ind_news .container .txtBox ul{width: 100%;margin-top: 30px;}
.ind_news .container .txtBox ul li{padding: 15px 0;padding-left: 0;}
.ind_news .container .imgBox{width: 100%;height: 580px;margin-top: 30px;}
.ind_news .container .imgBox .imgTxt{bottom: -68px;height: 266px;}
.decoration{margin-bottom: 0;margin-top: 100px;}
/* 关于我们 */
.nei_ban{height: 200px;}
.about1{padding-top: 20px;padding-bottom: 0;}
.about1 .container{display: inherit;}
.about1 .container .txtBox{width: 100%;padding-right: 0;}
.about1 .container .txtBox .p1{margin-top: 20px;}
.about1 .container .imgBox{width: 100%;height: 348px;margin-top: 42px;}
.about2{border-radius: 0;padding-top: 56px;padding-bottom: 0;}
.about2_swIn ul{display: none;}
.about2 .title1{font-size: 28px;}
.about2_txt_lis h2{font-size: 55px;}
.about_sec2{margin-top: 305px;}
.about2_txt_lis .contentBox{display: inherit;padding: 0;}
.about2_txt_lis .contentBox .left{width: 100%;padding-right: 0;}
.about2_txt_lis .contentBox .right{width: 100%;height: 274px;margin-top: 26px;}
.about2_swIn .prev, .about2_swIn .next{top: -296px;}
.about2_swIn .prev{left: auto;right: 76px;}
.about2_swIn .next{left: auto;right: 14px;}
.about3{padding: 30px 0;}
.about3 .txt{margin: 20px 0;}
.about3 ul{grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));grid-gap: 0;}
.about4{padding-top: 42px;padding-bottom: 101px;border-radius: 0;}
.about4 h2{font-size: 35px;margin-bottom: 45px;}
.about4 .txtBox{width: 100%;height: 362px;padding: 15px;}
/* 产品中心 */
.products{padding: 36px 0 42px;}
.products .container{display: inherit;}
.products .product_nav{display: none;}
.products .contentBox{width: 100%;padding-left: 0!important;}
.products .contentBox .searchBox input{width: 76%;padding-left: 14px;}
.products .contentBox .searchBox button{width: 24%;}
.products .contentBox .content{grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));grid-gap: 18px 0;}
/* 产品详情 */
.proDetail{display: inherit;padding-bottom: 40px;}
.proTop .dotBoxL{width: 100%;}
.proTop .dotBoxL .videoBox,.proTop .dotBoxL .videoBox video,.proTop .dotBoxL ol{width: 100%;height: 300px;}
.proTop .dotBoxL ul li{width: 106px;}
.proDetail .txtBox{width: 100%;margin-top: 30px;}
.proDetail .txtBox .top{padding-left: 24px;}
.proDetail .txtBox .content1{padding-left: 24px;}
.proDetail .txtBox .button {
  position: fixed;
  bottom: 0;
  border-radius: 5px;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0;
  z-index: 99;
}
.details{padding-bottom: 0;}
.details p{margin-bottom: 26px;}
.related_products .swiperPro3 .pagination3{left: 40%;bottom: 2px;}
.related_products{padding-bottom: 0;}
.mask{width: 100%;padding: 20px;}
.inquiryBox1 input{width: 100%;}
.inquiryBox1 form .selectCon{width: 100%;}
.inquiryBox1 .inputBox textarea{width: 100%;}
.inquiryBox1 .inputBox .codeBox{width: 100%;}
.inquiryBox1 .submitBtn{margin-left: 0;}
.inputBox.required .tips{left: 0;}
.hint{width: 90%;padding: 0 15px;}
/* 招聘 */
.job .item .overview{padding: 0;padding-left: 10px;}
.job .item .overview .left{font-size: 14px;flex: 0.2;white-space: nowrap;}
.job .item .overview .middle{overflow: hidden;text-overflow: ellipsis;white-space: nowrap;flex: 0.3;}
.job .item .overview .right{flex: 0.4;}
.job .item .content1{padding-left: 10px;}
/* 新闻资讯 */
.news{padding-top: 20px;padding-bottom: 55px;}
.news .contentBox li{padding: 40px 15px 70px 15px;display: inherit;margin-bottom: 0;}
.news .contentBox li .imgBox{width: 100%;margin-bottom: 20px;}
.news .contentBox li .txtBox{width: 100%;padding-left: 0;}
/* 联系我们 */
.contact1{padding-top: 10px;padding-bottom: 0;}
.contact1 .container{display: inherit;}
.contact1 .container .contact_box{width: 100%;padding-right: 0;margin-bottom: 30px;}
.contact1 .container #container{width: 100%;}
.contact2{padding-top: 30px;}
.contact2 h2{padding-left: 15px;}
.contact2 form{display: inherit;padding: 20px 15px 68px 15px;margin-bottom: 42px;}
.contact2 form .left{width: 100%;margin-bottom: 20px;}
.contact2 form input{padding-left: 15px;}
.contact2 form .verification .verification_input .tips{bottom: 0;white-space: nowrap;}
.contact2 form .right{width: 100%;padding-left: 0;margin-top: -24px;}
.contact2 form textarea{height: 160px;}
.contact2 form .submit{bottom: 25px;left: 0;}
}
