/* flex布局 */
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*默认 主轴为水平方向，起点在左端*/
.f-dr {
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

/*主轴为水平方向，起点在右端*/
.f-dr-r {
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/*主轴为垂直方向，起点在上沿*/
.f-dc {
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/*主轴为垂直方向，起点在下沿*/
.f-dc-r {
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

/* 交叉轴的起点对齐 */
.f-as {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/* 交叉轴的中点对齐 */
.f-ac {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/* 交叉轴的终点对齐 */
.f-ae {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/* 项目的第一行文字的基线对齐 */
.f-ab {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/* 交叉轴拉伸对齐 */
.f-ast {
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/* 左对齐 */
.f-js {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

/* 居中 */
.f-jc {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* 右对齐 */
.f-je {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

/* 两端对齐，项目之间的间隔都相等 */
.f-jsb {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* 每个项目两侧的间隔相等。所以，项目之间的间隔比项目与边框的间隔大一倍 */
.f-jsa {
  -webkit-box-pack: distribute;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* 换行，第一行在上方 */
.f-warp {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* 换行，在第一行的下方 */
.f-warp-r {
  -webkit-flex-wrap: wrap-reverse;
  -moz-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  -o-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.com-page {
  padding-top: 40px;
}

.com-page a,
.com-page span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  text-align: center;
  line-height: 46px;
  color: #4d5a66;
  border: 1px solid #d1d1d1;
  margin: 0 5px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.com-page a.page-num-current,
.com-page a:hover {
  background-color: #143272;
  border-color: #143272;
  color: white;
}

.com-page a i {
  font-size: 22px;
  vertical-align: middle;
  line-height: 1;
}



@charset "utf-8";
/*reset Css*/

* {
  margin: 0;
  padding: 0;
}

/** 清除内外边距 **/
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
/* structural elements 结构元素 */
dl,
dt,
dd,
ul,
ol,
li,
/* list elements 列表元素 */
pre,
/* text formatting elements 文本格式元素 */
form,
fieldset,
legend,
button,
input,
textarea,
/* form elements 表单元素 */
th,
td

/* table elements 表格元素 */
  {
  margin: 0;
  padding: 0;
}

body {
  background-color: #fff;
  /*整体背景颜色*/
  -webkit-touch-callout: none;
  /*-webkit-user-select: none;*/
  /*禁止复制*/
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  /*点击高亮效果*/
}

/*clearfix清除浮动*/
.clearfix {
  *zoom: 1
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: ""
}

.clearfix:after {
  clear: both
}

/* 默认合并表格边框 */
table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

input,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

ol,
ul,
li {
  list-style: none;
}

a,
a:active {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a {
  border: 0;
}

em,
i {
  font-style: normal;
}

/* <input>标签 */
input {
  border: none;
  appearance: none;
  -moz-appearance: none;
  outline: none;
  -webkit-appearance: none;
}

input:focus {
  outline: none;
}

/* input标签聚焦不出现默认边框 */

textarea {
  resize: none;
}

/* 禁用了文本的拖拉，尤其在谷歌下 */
select,
button,
input,
img {
  vertical-align: middle;
}

/*去除图片底部缝隙并基于中线对齐*/
img {
  width: auto;
  height: auto;
  width: auto\9;
  max-width: 100%;
  display: block;
  -ms-interpolation-mode: bicubic;
}

/** 设置默认字体 **/
/* 
    宋体：\5B8B\4F53
    新宋体：\65B0\5B8B\4F53
    黑体：\9ED1\4F53
    微软雅黑：\5FAE\8F6F\96C5\9ED1
    楷体：\6977\4F53_GB2312
    思源黑体： Source Han Sans CN
 */
body,
button,
input,
select,
textarea

/* for ie */
  {
  font: 14px/1 "GB", Arial, "Microsoft YaHei", "Hiragino Sans GB", "Droid Sans Fallback", "WenQuanYi Micro Hei", sans-serif;
}

body {
  background: #fff;
  -webkit-text-size-adjust: 100%;
  color: #333;
}

/*End reset*/

/*public Css*/

/* 重绘元素边框盒 */
* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

html {
  -ms-touch-action: none;
  /* 阻止windows Phone 的默认触摸事件 */
}

/*兼容iphone去除默认input表单默认设置*/
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
}

/* 页面滚动样式 */
::-webkit-scrollbar {
  width: 5px;
}



::-webkit-scrollbar-track {
  background: #ccc;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: #db1f25;
}


/*clearfix清除浮动*/
.clearfix {
  *zoom: 1
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: ""
}

.clearfix:after {
  clear: both
}

/* 水平垂直居中 */
.cell_mid {
  display: table;
  height: 100%;
  width: 100%;
}

.cell_h {
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}

/*动画--规定动画移动出去的时间*/
a {
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.animation {
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/* 指定文字禁止复制 */
.noSelect {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}

/* 文字限制行数 */
/* 限制一行 */
.linelimit {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* 【常用】限制多行 修改行数-webkit-line-clamp: 2;【兼容必须限高】 */
.linelimit-2 {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.linelimit-3 {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* 引入字体 */
@font-face {
  font-family: 'GB';
  src: url('../fonts/Gothamrounded-book.ttf'),
    url('../fonts/Gothamrounded-book.eot'),
    url('../fonts/Gothamrounded-book.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gothamrounded-book.woff2') format('woff2'),
    url('../fonts/Gothamrounded-book.woff') format('woff'),
    url('../fonts/Gothamrounded-book.ttf') format('truetype'),
    url('../fonts/Gothamrounded-book.svg#svgFontName') format('svg');
}

@font-face {
  font-family: 'USB';
  src: url('../fonts/UlagadiSans-Bold.ttf'),
    url('../fonts/UlagadiSans-Bold.eot'),
    url('../fonts/UlagadiSans-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/UlagadiSans-Bold.woff2') format('woff2'),
    url('../fonts/UlagadiSans-Bold.woff') format('woff'),
    url('../fonts/UlagadiSans-Bold.ttf') format('truetype'),
    url('../fonts/UlagadiSans-Bold.svg#svgFontName') format('svg');
}

.USB {
  font-family: 'USB';
}

.GB {
  font-family: 'GB';
}

/*动画效果 所有属性获得过度*/
* {
  transition-property: all;
}

.com-img {
  overflow: hidden;
}

.com-img img {
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.com-img:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
}


.fl {
  float: left;
}

.fr {
  float: right;
}

.show {
  display: block;
}

.hide {
  display: none;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.ttu {
  text-transform: uppercase;
}

/*字母转换为大写*/
.ofh {
  overflow: hidden;
}

.pst-rel {
  position: relative;
}

.pst-abs {
  position: absolute;
}


.col-2 {
  width: 50%;
  float: left;
}

.col-3 {
  width: 33.333333%;
  float: left;
}

.col-4 {
  width: 25%;
  float: left;
}

.col-5 {
  width: 20%;
  float: left;
}

.col-6 {
  widows: 16.6666%;
  float: left;
}

.w12 {
  width: 1200px;
  max-width: 92%;
  margin: 0 auto;
}

.w14 {
  width: 1440px;
  max-width: 92%;
  margin: 0 auto;
}

.pc {
  display: block;
}

.mb {
  display: none;
}

.mt {
  margin-top: 82px;
}

@media all and (max-width:1000px) {
  .pc {
    display: none;
  }

  .mb {
    display: block;
  }
}


*[class*="rect-"] {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
}

*[class*="rect-"] ._full {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  *height: auto;
  object-fit: cover;
}

.rect-30 {
  padding-bottom: 30%;
}

.rect-40 {
  padding-bottom: 40%;
}

.rect-50 {
  padding-bottom: 50%;
}

.rect-55 {
  padding-bottom: 55%;
}

.rect-5625 {
  padding-bottom: 56.25%;
}

.rect-60 {
  padding-bottom: 60%;
}

.rect-70 {
  padding-bottom: 70%;
}

.rect-75 {
  padding-bottom: 75%;
}

.rect-80 {
  padding-bottom: 80%;
}

.rect-90 {
  padding-bottom: 90%;
}

.rect-95 {
  padding-bottom: 95%;
}

.rect-100 {
  padding-bottom: 100%;
}

.rect-150 {
  padding-bottom: 150%;
}

li *[class*="pic"]>img {
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -ms-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

li:hover *[class*="pic"]>img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.trs3 {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.trs5 {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.pd-40 {
  padding: 40px 0;
}

.pd-60 {
  padding: 60px 0;
}

.pd-80 {
  padding: 80px 0;
}

/* .swiper-pagination-bullet-active {
  background-color: #143272 !important;
}
 */


.prodbj {
  background: #eef1f6;
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
}

.prodmain {
  overflow: hidden;
  margin: 70px 0;
}

.prodmain .prodleft {
  background: #ffffff;
  width: 20%;
  padding: 35px 25px;
  padding-bottom: 20%;
}

.prod_search {
  overflow: hidden;
  height: 48px;
  border: 1px solid #dbdbdb;
  padding-left: 64px;
  position: relative;
}

.prod_search .input {
  border: none;
  width: 100%;
  height: 46px;
  line-height: 46px;
  font-size: 14px;
  color: #282828;
  padding: 0 15px;
  position: relative;
}

.prod_search:after {
  content: "";
  height: 18px;
  width: 1px;
  background: #dbdbdb;
  position: absolute;
  left: 64px;
  top: 50%;
  margin-top: -9px;
}

.prod_search .submit {
  border: none;
  position: absolute;
  left: 1px;
  top: 1px;
  background: url(../images/search_btn2.png) no-repeat center center;
  width: 64px;
  height: 46px;
  cursor: pointer;
}

.pnav {
  overflow: hidden;
  margin-top: 35px;
}

.pnav li {
  float: left;
  width: 100%;
  border-top: 1px solid #dbdbdb;
}

.pnav li .tit {
  line-height: 60px;
  color: #414141;
  font-size: 16px;
}

.pnav li .tit a {
  display: block;
  padding: 0 20px;
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.pnav li .tit a:after {
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/sub02.png) no-repeat center center;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 10px;
}

.pnav li .tit2 a:after {
  display: none;
}

.pnav li:hover .tit a,
.pnav li.on .tit a {
  background: #015ea2;
  color: #ffffff;
}

.weizhi {
  line-height: 85px;
  font-size: 14px;
  color: #4d4d4d;
}

.pnav li:hover .tit a:after,
.pnav li.on .tit a:after {
  background-image: url(../images/sub01.png);
}

.pnav li .sub {
  border-top: 1px solid #dbdbdb;
  padding: 20px;
  display: none;
}

.pnav li .sub a {
  display: block;
  font-size: 14px;
  line-height: 36px;
  padding-left: 12px;
  color: #282828;
  position: relative;
}

.pnav li .sub a:after {
  content: "";
  width: 2px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  background: #282828;
}

.pnav li .sub a:hover {
  color: #015ea2;
}

.pnav li .sub a:hover:after {
  background: #015ea2;
}

.pnav li.on .sub {
  display: block;
}

.pnav .sub .on {
  color: #015ea2;
}

.prodmain .prodright {
  width: 75%;
}

.prodlist {
  overflow: hidden;
}

.pnav li .tit a:after {
  transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
}

.pnav li .tit a:after {
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/sub02.png) no-repeat center center;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 10px;
}

.container2 {
  display: block;
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

.prodlist li {
  background: #ffffff;
  position: relative;
  width: 31%;
  margin-right: 2%;
  margin-bottom: 2%;
  float: left;
}

.prodlist li:hover {
  box-shadow: 0px 0px 10px #cccccc;
}

.prodlist li img {
  display: block;
  width: 100%;
  /* padding: 5%; */
}

.prodlist li .tit {
  color: #282828;
  font-size: 16px;
  text-align: center;
  line-height: 100px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.prodlist li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
}

.prodlist li:hover a {
  opacity: 1;
}

.prodlist li a .more {
  height: 42px;
  width: 148px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -21px 0 0 -74px;
  background: #015ea2;
  line-height: 42px;
  color: #ffffff;
  text-align: center;
}

.prodlist li a .more span {
  display: inline-block;
  background: url(../images/more2.png) no-repeat left center;
  padding-left: 25px;
}


/*Ã¤ÂºÂ§Ã¥â€œÂÃ¥Ë†â€”Ã¨Â¡Â¨*/


/*Ã¤ÂºÂ§Ã¥â€œÂÃ¨Â¯Â¦Ã¦Æ’â€¦*/

.prodmain2 {
  margin-top: 0 !important;
}

.prodtop {
  overflow: hidden;
}

.prodtop .img {
  width: 50%;
}

.prodtop .img img {
  background: white;
  display: block;
  width: 100%;
}

.prodtop .txt {
  width: 46%;
}

.prodtop .txt h1 {
  font-size: 30px;
  color: #282828;
  padding: 5% 0;
  line-height: 1.4;
  border-bottom: 1px solid #d6d8dd;
}

.prodtop .txt .info {
  line-height: 2;
  margin: 3% 0;
}

.prodtop .txt .info .tit {
  font-size: 16px;
  color: #292929;
  font-weight: bold;
}

.prodtop .txt .info p {
  color: #626262;
  font-size: 16px;
}

.prodtop .txt .parameter {
  overflow: hidden;
  border-bottom: 1px dashed #cacccf;
  padding-bottom: 6%;
}

.prodtop .txt .parameter li {
  float: left;
  width: 100%;
  background: url(../images/parameter.png) no-repeat left center;
  padding-left: 30px;
  color: #626262;
  font-size: 16px;
  line-height: 36px;
}

.prodbtn {
  overflow: hidden;
  margin-top: 9%;
}

.prodbtn a {
  float: left;
  height: 50px;
  padding: 0 25px;
  line-height: 50px;
}

.prodbtn a.online {
  background: #015ea2;
}

.prodbtn a.online span {
  display: block;
  font-size: 16px;
  color: #ffffff;
  font-weight: bold;
  padding-left: 40px;
  background: url(../images/prodbtn01.png) no-repeat left center;
  background-size: auto 100%;
}

.prodbtn a.prodtel {
  background: #015ea2;
  margin-left: 7px;
}

.prodbtn a.prodtel span {
  display: block;
  font-size: 16px;
  color: #ffffff;
  font-weight: bold;
  padding-left: 40px;
  background: url(../images/prodbtn02.png) no-repeat left center;
  background-size: auto 100%;
}

.prodbtn a.online:hover,
.prodbtn a.prodtel:hover {
  background: #007c1b8e;
}

.prodbtn a.prodshare {
  padding-right: 0 !important;
}

.prodbtn a.prodshare span {
  display: block;
  font-size: 16px;
  color: #626262;
  padding-left: 40px;
  background: url(../images/prodbtn03.png) no-repeat left center;
  background-size: auto 100%;
}

.share_pop_up {
  display: none;
  width: 380px;
  padding: 48px;
  border: 1px solid #dbdbdb;
  height: 150px;
  position: fixed;
  top: 50%;
  left: 50%;
  text-align: center;
  margin-top: -175px;
  margin-left: -190px;
  background: #ffffff;
  z-index: 100;
  box-shadow: 0 0 15px #dcdcdc;
}

.share_pop_up .social-share .social-share-icon {
  height: 50px;
  width: 50px;
  line-height: 50px;
  font-size: 30px;
  float: left;
  margin: 0 10px;
}

.ptabnav {
  overflow: hidden;
  margin-top: 40px;
  position: relative;
}

.ptabnav:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #d4d7db;
}

.ptabnav li {
  float: left;
  position: relative;
  z-index: 1;
  cursor: pointer;
  color: #282828;
  font-weight: bold;
  font-size: 18px;
  line-height: 56px;
  padding: 0 45px;
  border-top: 2px solid #eef1f6;
  border-left: 1px solid #eef1f6;
  border-right: 1px solid #eef1f6;
  border-bottom: 1px solid #d4d7db;
}

.ptabnav li.on {
  background: #ffffff;
  border-top-color: #015ea2;
  border-left-color: #d4d7db;
  border-right-color: #d4d7db;
  border-bottom-color: #ffffff;
}

.ptabmain {
  background: #ffffff;
  overflow: hidden;
  padding: 4%;
}

.ptabmain .txt {
  color: #686868;
  line-height: 2;
  font-size: 16px;
}

.ptabmain .tit {
  color: #282828;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  margin-top: 3%;
}

.characteristic {
  overflow: hidden;
}

.characteristic li {
  float: left;
  width: 50%;
  background: url(../images/parameter.png) no-repeat left center;
  padding-left: 30px;
  color: #626262;
  font-size: 16px;
  line-height: 36px;
}

.prodtable {
  width: 100%;
  background: #dddddd;
}

.prodtable td {
  background: #ffffff;
  color: #686868;
  font-size: 16px;
  padding: 5px 25px;
}

.modellist {
  overflow: hidden;
}

.modellist li {
  float: left;
  width: 23.5%;
  margin-right: 2%;
}

.modellist li .img {
  overflow: hidden;
  border: 1px solid #dddddd;
}

.modellist li .img img {
  display: block;
  width: 100%;
}

.modellist li .name {
  color: #686868;
  font-size: 16px;
  text-align: center;
  margin-top: 30px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}


/* .modellist li:hover .img{ border-color:#015ea2;}
.modellist li:hover .name{ color:#015ea2; } */

.prod_tips {
  color: #282828;
  font-size: 18px;
  font-weight: bold;
  padding: 3% 0 0 3%;
}

.prod_tips a:hover {
  color: #015ea2;
}

.prodbtn {
  overflow: hidden;
  margin-top: 9%;
}

.prodbtn a {
  float: left;
  height: 50px;
  padding: 0 25px;
  line-height: 50px;
}

/*Ã¤ÂºÂ§Ã¥â€œÂÃ¨Â¯Â¦Ã¦Æ’â€¦*/


/*Ã¨Âµâ€žÃ¨Â®Â¯Ã¨Â¯Â¦Ã¦Æ’â€¦*/

.showmian {
  padding: 3% 3% 0 3%;
  background: #ffffff;
}

.pronavli {
  width: 23%;
  float: left;
  margin-right: 2.6%;
  margin-bottom: 2%;
}

.pronavli:nth-child(4n) {
  margin-right: 0;
}

.pronavli a {
  position: relative;
  display: block;
}

.pronavli span {
  position: absolute;
  bottom: 11%;
  font-size: 22px;
  width: 100%;
  text-align: center;
  display: inline-block;
}

@media screen and (max-width: 1440px) {
  .pronavli {
    width: 32.33%;
    float: left;
    margin-right: 1.5%;
    margin-bottom: 2%;
  }

  .pronavli:nth-child(4n) {
    margin-right: 1.5%;
  }

  .pronavli:nth-child(3n) {

    margin-right: 0;
  }



  .pronavli span {
    font-size: 22px;
  }




  .prodbtn a {
    height: 40px;
    padding: 0 12px;
    line-height: 40px;
  }

  .prodlist li .tit {
    font-size: 14px;
    line-height: 70px;
  }

  .prodmain {
    margin: 50px 0;
  }
}

@media screen and (max-width: 1024px) {
  .prodbtn a {
    padding: 0 10px;
  }

  .prodtop .img {
    width: 100%;
  }

  .prodtop .txt {
    width: 100%;
  }

  .prodbtn {
    margin-top: 20px;
  }

  .prodlist li .tit {
    line-height: 60px;
  }

  .prodmain .prodright {
    width: 71%;
  }

  .prodmain .prodleft {
    padding: 20px 10px;
    width: 27%;
  }

  .prodlist li {
    width: 49%;
    margin-right: 2% !important;
  }

  .prodlist li:nth-child(2n) {
    margin-right: 0 !important;
  }

  .pnav li .tit a {
    padding: 0 10px;
  }

  .prod_search .input {
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    padding: 0 10px;
  }

  .prod_search .submit {
    width: 40px;
  }
}

.fr {
  float: right;
}

.fl {
  float: left;
}

li {
  list-style: none;
}

@media screen and (max-width: 768px) {
  .page {

    margin: 4% 0;
  }

  .prodlist li .tit {
    line-height: 50px;
    font-size: 12px;
  }

  .container2 {
    width: 100%;
    padding: 0 20px;
  }

  .container2 {
    padding: 0 15px;
  }

  .prodmain .prodright {
    width: 100%;
  }

  .prodmain .prodleft {
    padding: 20px 10px;
    width: 100%;
  }
}

.productlist_con,
.product_con {
  padding: 40px 0 60px;
}

.w16 {
  width: 1600px;
  max-width: 92%;
  margin: 0 auto;
}

.rect-100 {
  padding-bottom: 100%;
}


/* =====================产品中心样式======================== */
.pro_bg {
  background: #f3f5f7;
  margin-top: 75px;
}

.sidebox {
  /* background-color: #f6f6f7; */
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 4px;
  padding: 20px;
}

/* 产品列表 */
.productlist_con,
.product_con {
  padding: 40px 0 60px;
}

.productlist_con .fl,
.product_con .fl {
  width: 25%;
}

/* 侧栏搜索 */
.sidebox .search-form input[type=text] {
  height: 40px;
  padding-left: 20px;
  background-color: #fff;
  width: calc(100% - 50px);
  /* border: 0; */
  border: 1px solid #f3f5f7;
}

.sidebox .search-form .search-submit {
  width: 50px;
  height: 40px;
  display: inline-block;
  color: white;
  font-size: 24px;
  /*  background-image: url(../images/ico_search.png);
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: bottom; */
  background-color: #143272;
  border: 0;
}

/* 侧栏导航 */
.pro_nav_view {
  /* background-color: #f6f6f7; */
  background-color: #fff;
  /* box-shadow: 0px 0px 15px rgb(0 0 0 / 15%); */
  margin-bottom: 20px;
}

.pro_nav_view .tit {
  position: relative;
  height: 90px;
  line-height: 90px;
  padding: 0 20px;
  background: #143272 url(../images/pro_tit_bg.png) no-repeat center;
  background-position: center 10%;
}

.pro_nav_view .tit h3 {
  font-weight: bold;
  font-family: "USB";
  font-size: 26px;
  color: #fff;
  text-transform: uppercase;
}

.pro_nav_view .tit span {
  height: 38px;
  width: 50px;
  text-align: center;
  z-index: 1;
  line-height: 38px;
}

.pro_nav_view ul {
  padding: 20px 20px 15px;
}

.pro_nav_view ul li {
  margin-bottom: 10px;
}

.pro_nav_view ul li:last-child {
  margin-bottom: 0;
}

.pro_nav_view ul li a {
  position: relative;
  display: block;
  font-size: 18px;
  color: #242424;
  line-height: 30px;
  /*font-weight: 700;*/
  border-bottom: 1px solid rgba(36, 36, 36, 0.2);
  padding: 13px 10px 13px 20px;
  text-transform: capitalize;
  z-index: 1;
}

.pro_nav_view ul li:hover>a,
.pro_nav_view ul li.active>a {
  background-color: #143272;
  color: #fff;
}



.pro_nav_view ul li a i {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

.pro_nav_view ul li a i::before {
  content: "\f067";
}

.pro_nav_view ul li.active a i::before {
  content: "\f068";
}

.pro_nav_view ul>li>ul {
  display: none;
  padding-right: 0;
}

.pro_nav_view ul>li>ul>li>a {
  font-size: 16px;
}

/* 侧栏产品 */
.sidebox h3 {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e1e1e1;
}

.sidebox .side_pro {}

.sidebox .side_pro li {
  float: left;
  width: 49%;
  margin-right: 2%;
  margin-bottom: 25px;
}

.sidebox .side_pro li:nth-child(2n) {
  margin-right: 0;
}

.sidebox .side_pro li:last-child {
  margin-bottom: 0;
}

.sidebox .side_pro li a {
  display: block;
}

.sidebox .side_pro li .pic {}

.sidebox .side_pro li .pic img {}

.sidebox .side_pro li p {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  display: block;
  color: #333;
  margin: 7px;
}

/* 右侧列表 */
.productlist_con .fr,
.product_con .fr {
  width: 72%;
}

.productlist_con .fr ul {}

.productlist_con .fr>ul>li {
  float: left;
  /* 	width: 32%;
	margin-right: 2%; */
  width: 24%;
  margin-right: calc(4% / 3);
  margin-bottom: 30px;
  /* border: 1px solid #f6f6f6; */
}

.productlist_con .fr>ul>li:nth-child(4n) {
  margin-right: 0;
}

.productlist_con .fr>ul>li a {
  display: block;
}

.com-page {
  padding-top: 0.4rem;
}

.com-page a,
.com-page span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  text-align: center;
  line-height: 46px;
  color: #4d5a66;
  border: 1px solid #d1d1d1;
  margin: 0 5px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.com-page a.page-num-current,
.com-page a:hover {
  background-color: #143272;
  border-color: #143272;
  color: white;
}

.com-page a i {
  font-size: 22px;
  vertical-align: middle;
  line-height: 1;
}

.productlist_con .fr>ul>li .pic {}

.productlist_con .fr>ul>li .pic img {
  background: #fff;
}

.productlist_con .fr>ul>li .info {
  padding: 20px;
  background-color: #0000000f;
  /* background-color: #f6f6f6; */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.productlist_con .fr>ul>li:hover .info {
  background-color: #143272;
}

.productlist_con .fr>ul>li .info h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  font-family: "arial";
  color: #45494c;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.productlist_con .fr>ul>li .info h4 span {
  color: #f09420 !important;
}

.productlist_con .fr>ul>li .info p {
  font-size: 14px;
  line-height: 20px;
  /* height: 40px; */
  color: #909599;
  margin-top: 10px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.productlist_con .fr>ul>li:hover .info h4 {
  color: white;
}

.productlist_con .fr>ul>li:hover .info p {
  color: rgb(255, 255, 255, .7);
}

/* 产品详情 */
.product_con_view {}

.product_con_view .top {}

.product_con_view .top .fl {
  width: 34%;
}

.product_con_view .product_det_pic {}

.product_con_view .product_det_pic ul {}

.product_con_view .product_det_pic ul li {}

.product_con_view .product_det_pic img {
  width: 100%;
  background: white;
}

.product_con_view .product_det_ico {
  margin-top: 20px;
  padding: 0 18px;
}

.product_con_view .product_det_ico ul {}

.product_con_view .product_det_ico ul li {
  border: 1px solid #d7d9db;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.product_con_view .product_det_ico ul li.swiper-slide-thumb-active {
  border-color: #143272;
}

.product_con_view .product_det_ico ul li .pic {
  overflow: hidden;
}

.product_con_view .product_det_ico img {}

.product_con_view .product_det_ico .swiper-button-prev {}

.product_con_view .product_det_ico .swiper-button-next {}

.product_con_view .top .fr {
  width: 62%;
}

.product_con_view .fr h3 {
  font-family: "arial";
  color: #242e33;
  font-size: 36px;
  line-height: 1.3;
  padding-bottom: 20px;
  margin: 0px 0px 20px;
  border-bottom: 1px solid #d7d9db;
}

.product_con_view .fr .des {
  font-size: 16px;
  line-height: 2.5;
  color: #333;
}

.product_det_ico .mySwiper_ico {
  padding-right: 1px;

}

.product_con_view .fr .inquiry {
  margin-top: 30px;
}

.product_con_view .fr .inquiry a {
  display: inline-block;
  color: #fff;
  padding: 15px 30px;
  font-size: 16px;
  min-width: 150px;
  background-color: #143272;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin-right: 10px;
}

.product_con_view .fr .inquiry a:first-child {
  background-color: #333;
}

.product_con_view .fr .keyword_box {
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid #d7d9db;
}

.product_con_view .fr .keyword_box a {
  display: inline-block;
  font-size: 13px;
  line-height: 1.3;
  color: #333;
  padding: 10px 30px;
  margin-right: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 50px;
}

.product_con_view .bot {
  margin-top: 50px;
  background: #fff;
  border-radius: 10px;
  padding: 30px 40px;
}

.product_con_view .bot .bot_nav {
  border-bottom: 2px rgba(0, 0, 0, .1) solid;
}

.product_con_view .bot .bot_nav li {
  float: left;
  position: relative;
  font-size: 24px;
  line-height: 60px;
  color: #242e33;
  margin-right: 50px;
  padding-right: 5px;
  cursor: pointer;
}

.product_con_view .bot .bot_nav li:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  background: #143272;
  height: 2px;
  opacity: 0;
}

.product_con_view .bot .bot_nav li.active {
  color: #143272;
}

.product_con_view .bot .bot_nav li.active:after {
  opacity: 1;
}

.product_con_view .bot .bot_con {
  margin-top: 50px;
}

.product_con_view .bot .bot_con>li {
  display: none;
  color: #5d6e75;
  font-size: 16px;
  line-height: 2.5;
}

.product_con_view .bot .bot_con>li.show {
  display: block;
}



.product_con_view .bot .bot_con>li.show table {
  width: 75%;
}

.product_con_view .bot .bot_con>li.show table tr {
  white-space: nowrap;
  height: auto !important;
}

.product_con_view .bot .bot_con>li.show table td {
  white-space: nowrap;

}

.product_con_view .bot .bot_con>li.conflex table {
  width: auto;
  margin-left: 30px;
  /*flex: 1;*/
}

.product_con_view .bot .bot_con>li p {
        max-width: 800px;
  /*white-space: nowrap;*/
}

.product_con_view .bot .bot_con>li.show span {
  display: inline-block;
  font-family: 'OP-M' !important;
  white-space: nowrap;
}

/*.product_con_view .bot .bot_con>li p{*/
/*    font-size: 0;*/
/*}*/



.product_con_view .remen {
  margin-top: 60px
}

.product_con_view .remen .tit {
  color: #404040;
  font-size: 32px;
  line-height: 1.6;
  text-align: center;
  margin: 0px 0px 50px;
}

.product_con_view .remen ul {}

.product_con_view .remen ul li {
  float: left;
  width: 32%;
  margin-right: 2%;
  text-align: center;
}

.product_con_view .remen ul li:nth-child(3n) {
  margin-right: 0;
}

.product_con_view .remen ul li a {
  display: block;
}

.product_con_view .remen ul li .pic {
  border-radius: 8px;
}

.product_con_view .remen ul li img {}

.product_con_view .remen ul li p {
  display: block;
  padding: 20px 2%;
  color: #242e33;
  font-size: 20px;
  line-height: 1.6;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.product_con_view .remen ul li:hover p {
  color: #143272;
}

.com_form {
  margin-top: 60px;
}

.com_form h3 {
  display: block;
  width: 100%;
  font-size: 24px;
  line-height: 1;
  color: white;
  font-weight: 700;
  background-color: #143272;
  padding: 20px 30px;
  margin-bottom: 25px;
}

.com_form form {
  width: 98%;
  margin: 0 1%;
}

.com_form ul li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 15px;
  position: relative;
  background: #fff;
  border: 1px solid #eee;
  border-left: 3px solid #f09420;
}

.com_form ul li input {
  line-height: 48px;
  height: 48px;
  padding-left: 24px;
  width: 100%;
  font-size: 16px;
}

.com_form ul li i {
  position: absolute;
  top: 0;
  line-height: 60px;
  right: 15px;
  color: #143272;
  font-style: normal;
}

.com_form ul li textarea {
  width: 100%;
  height: 200px;
  padding: 20px 28px;
  border: none;
  font-size: 16px;
}

.com_form ul li:nth-child(2n) {
  margin-right: 0;
}

.com_form ul li.li {
  width: 100%;
  margin-right: 0;
}

.sortnav {
  position: relative;
  top: -35px;
}

.sortnav ul {
  box-shadow: 0 10px 25px -4px rgb(183, 27, 44, .18);
}

.sortnav ul li {
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.sortnav ul li a {
  display: block;
  position: relative;
  height: 100%;
  text-align: center;
  height: 70px;
  line-height: 70px;
  background: #fff;
  color: #2e2d3c;
  font-size: 18px;
  font-family: "USB";
  /* font-weight: 700; */
}

.sortnav ul li a::after {
  position: absolute;
  content: '';
  display: block;
  width: 1px;
  height: 30%;
  background: #ccc;
  right: 0;
  top: 35%;
}

.sortnav ul li:last-child a::after {
  display: none;
}

.sortnav ul li.active a,
.sortnav ul li:hover a {
  color: white;
  background-color: #143272;
}

.bot_con .show p img {
  /*width: 100%;*/
}

.com_form ul li .btn {
  width: 100%;
  background: #143272;
  /* line-height: 0.6rem; */
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.com_form ul li .btn:hover {
  background-color: #f09420;
}

.bot_con .conflex p img {
  margin-right: 3%;
}

.product_con_view .bot .bot_con>li.conflex {


  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}


@media all and (max-width:1500px) {
  .productlist_con .fr>ul>li:nth-child(4n) {
    margin-right: calc(4% / 3);
  }

  .productlist_con .fr>ul>li:nth-child(3n) {
    margin-right: 0;
  }

  .productlist_con .fr>ul>li {
    float: left;
    width: 32%;
    margin-right: calc(4% / 3);
    margin-bottom: 30px;
    /* border: 1px solid #f6f6f6; */
  }
}

@media all and (max-width:1000px) {

  .product_con_view .bot .bot_con table {
    width: 100%;
  }

  .bot_con .conflex p img {
    margin-right: 3%;
  }

  .product_con_view .bot .bot_con>li.conflex {
    display: block;
    /* flex-wrap: nowrap; */
  }



  .product_con_view .top .fl {
    width: 100%;
  }

  .product_con_view .top .fl,
  .product_con_view .top .fr {
    width: 100%;
  }

  .product_con_view .fr h3 {
    padding: 20px 0;
  }

  .pro_nav_view {
    display: none;

  }


  .productlist_con .fr>ul>li {
    float: left;
    width: 48%;
    margin-right: calc(5% / 3);
    margin-bottom: 30px;
  }

  .productlist_con .fr>ul>li:nth-child(3n) {
    margin-right: calc(5% / 3);
  }

  .productlist_con .fr>ul>li:nth-child(2n) {
    margin-right: 0;
  }

  .productlist_con .fl,
  .product_con .fl {
    width: 100%;
  }

  .productlist_con .fr,
  .product_con .fr {
    width: 100%;
  }

  .sidebox {
    display: none;
  }

  .com_form ul li .btn {
    padding-left: 0;
  }
}

@media all and (max-width:568px) {
  .productlist_con .fr>ul>li {
    float: left;
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

@media all and (max-width:1000px) {}

.pronav_con .pronavfr {
  width: 100%;
}

.pronav_con .fr>ul>li {
  float: left;
  width: 24%;
  margin-right: calc(4% / 3);
  margin-bottom: 30px;
  /* border: 1px solid #f6f6f6; */
}

.pronav_con .fr>ul h4 {
  font-size: 32px;
  font-weight: bold;
  line-height: 40px;
  color: #143272;
  display: block;
}

.pronav_con .fr>ul>li:nth-child(4n) {
  margin-right: 0;
}

.pronav_con .fr>ul>li:nth-child(3n) {
  margin-right: calc(4% / 3);
}

/*产品列表*/
#ny_pro_list {
  display: block;
  overflow: hidden;
  padding: 50px 0;
  background-color: #f9f9f9;
}

#ny_pro_list dl {
  display: block;
  overflow: hidden;
}

#ny_pro_list dl dd {
  display: block;
  overflow: hidden;
  margin-top: 30px;
}

#ny_pro_list dl dt {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 20px;
}

#ny_pro_list dl dt a {
  display: block;
  overflow: hidden;
}

#ny_pro_list dl dt a span {
  font-size: 32px;
  font-weight: bold;
  line-height: 40px;
  color: #143272;
  display: block;
}

#ny_pro_list dl dt a em {
  font-size: 16px;
  display: block;
  color: #666666;
  line-height: 2;
  display: block;
}

#ny_pro_list dl dd .box {
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}

#ny_pro_list dl dd .box:nth-child(even) {
  padding-right: 0px;
}

#ny_pro_list dl dd .box:nth-child(odd) {
  padding-left: 0px;
}

#ny_pro_list dl dd .box a {
  display: flex;
}

#ny_pro_list dl dd .box a .box_l {
  flex: 0.55;
  position: relative;
}

#ny_pro_list dl dd .box a .box_l p {
  position: absolute;
  writing-mode: vertical-lr;
  /*从左向右 从右向左是 writing-mode: vertical-rl;*/
  writing-mode: tb-lr;
  /*IE浏览器的从左向右 从右向左是 writing-mode: tb-rl；*/
  top: 0;
  left: 0;
  bottom: 0;
  width: 40px;
  background-color: #143272;
  font-size: 15px;
  line-height: 40px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: .02em;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: all .3s ease-out;
  letter-spacing: 2px;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  border-left: 1px solid #f5f5f5;
}

#ny_pro_list dl dd .box a .box_l img {
  max-width: 100%;
  display: block;
  border: 1px solid #f5f5f5;
}

#ny_pro_list dl dd .box a .box_r {
  flex: 0.45;
  background: #f5f5f5;
}

#ny_pro_list dl dd .box a .box_r .box_flex {
  display: flex;
  width: 100%;
  height: 100%;
}

.nypro-ul {
  overflow: hidden;
  margin: 0 -20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.nypro-ul li {
  margin-bottom: 35px;
  width: 25%;
  padding: 0 20px;
  float: left;
}

.nypro-ul li a {
  display: block;
  position: relative;
  overflow: hidden;
  background: #fff;
  padding-bottom: 30px;
}

.nypro-ul li a .nypro-img {
  padding: 20px;
  display: block;
}

.nypro-ul li a .nypro-img img {
  max-width: 100%;
  display: block;
  border: 1px solid #ddd;
  /* padding: 40px 0; */
}

.nypro-ul li a p {
  line-height: 40px;
  color: #333;
  text-align: center;
  font-size: 16px;
  padding: 0 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.nypro-ul li a:hover p {
  color: #143272;
}

#ny_pro_list .font {
  padding: 0 20px;
}

#ny_pro_list .font .tit {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 2px solid #ddd;
  color: #454545;
  margin-bottom: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#ny_pro_list .font p {
  font-size: 14px;
  color: #666666;
  line-height: 24px;
  display: block;
  margin-bottom: 30px;
}

#ny_pro_list .font .but {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 114px;
  height: 40px;
  position: relative;
}

#ny_pro_list .font .but strong {
  font-size: 16px;
  color: #666;
  position: relative;
  z-index: 2;
  font-weight: normal;
}

#ny_pro_list .font .but i {
  display: block;
  height: 14px;
  overflow: hidden;
  position: relative;
  margin-left: 14px;
  z-index: 2;
}

#ny_pro_list .font .but i img {
  float: left;
  height: 100%;
}

#ny_pro_list .font .but i img:nth-child(2n) {
  display: none;
}

#ny_pro_list .font .but::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  z-index: 1;
  background-color: #33b7b588;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#ny_pro_list li:hover .img img {
  transform: scale(1.04);
}

#ny_pro_list li:hover .font .tit {
  color: #143272;
  border-color: #143272;
}

#ny_pro_list li:hover .font .but strong {
  color: #fff;
}

#ny_pro_list li:hover .font .but i img:nth-child(1) {
  display: none;
}

#ny_pro_list li:hover .font .but i img:nth-child(2) {
  display: block;
}

#ny_pro_list li:hover .font .but::before {
  width: 100%;
  background-color: #143272;
}

#ny_pro_list .font .showproductli_info {
  display: block;
  overflow: hidden;
  font-size: 14px;
  color: #888;
  line-height: 24px;
  display: block;
  margin: 15px 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

#ny_pro_list .font .showproductli_info .canshu {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

@media(max-width: 1199px) {
  .nypro-ul li {
    padding: 0 10px;
    margin-bottom: 20px;
  }

  #ny_pro_list {
    padding: 30px 0;
  }

  #ny_pro_list dl dt a span {
    font-size: 28px;
  }
}

@media(max-width: 991px) {
  .nypro-ul li {
    width: 50%;
  }
}

@media(max-width: 767px) {
  #ny_pro_list dl dt a span {
    font-size: 24px;
  }

  #ny_pro_list dl dt a em {
    font-size: 14px;
  }

  #ny_pro_list .font .tit {
    font-size: 17px;
  }

  #ny_pro_list .font .showproductli_info {
    margin: 10px 0;
  }
}

@media(max-width: 500px) {
  .nypro-ul li {
    width: 100%;
  }

  #ny_pro_list .font .but strong {
    font-size: 14px;
  }

  #ny_pro_list {
    padding: 20px 0;
  }
}

.pro_nav_view ul li a i::before {
  content: "\f067";
}

.bot table td {

  padding: 0 5px !important;
  empty-cells: show !important;
  font-family: 'OP-M' !important;
  line-height: normal !important;
  vertical-align: middle !important;
  outline-width: 0px !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  text-align: center !important;
  font-size: 10pt !important;
  border-width: 1px !important;
  border-color: rgb(0, 0, 0) !important;
  border-style: solid !important;
  line-height: 25px !important;
  line-height: 1.5 !important;
  width: auto !important;
  padding: 8px 15px !important;
}

.bot table colgroup {
  display: none !important;
}

/* 产品中心 s */
.ind_pro {
  padding-top: 0.85rem;
}

.ind_pro {}

.ind_pro .con {
  margin-top: 0.7rem;
}

.ind_pro .con .top {}

.ind_pro .con ul {}

.ind_pro .con ul li {
  float: left;
  width: 25%;
  overflow: hidden;
}

.ind_pro .con ul li a {
  position: relative;
  display: block;
}

.ind_pro .con ul li a .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.ind_pro .con ul li:hover a .bg {
  opacity: 1;
}

.ind_pro .con ul li .view {
  position: relative;
  padding: 0.4rem 2%;
  background: url(../images/ind_probg.jpg) no-repeat center;
  background-size: cover;
  text-align: center;
}

.ind_pro .con ul li:nth-child(2n) .view {
  background-image: linear-gradient(0deg, rgba(214, 214, 214, 1), rgba(255, 255, 255, 1));
}

.ind_pro .con ul li .view .pic {}

.ind_pro .con ul li .view .pic img {
  display: inline-block;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/* .ind_pro .con ul li:hover .view .pic img {
  opacity: 0;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
 */
.ind_pro .con ul li .view .info {
  z-index: 2;
}

.ind_pro .con ul li .view .info .tit {
  font-size: 0.24rem;
  color: #333;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.ind_pro .con ul li .view .info .tit span {
  font-weight: bold;
  font-family: "USB";
}

.ind_pro .con ul li .view .info .tit p {
  display: inline-block;
}

.ind_pro .con ul li .view .info .txt {
  margin-top: 0.1rem;
  font-size: 14px;
  line-height: 20px;
  height: 40px;
  color: #555;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-family: 'GB';
}

.ind_pro .con ul li .view .info .more {
  width: 140px;
  height: 35px;
  line-height: 35px;
  border-radius: 5px;
  background-color: #545454;
  color: white;
  margin: 0.1rem auto 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-family: 'GB';
}

.ind_pro .con .bot ul li:hover .view .info .more {
  background-color: #424242;
}

.ind_pro .con .bot ul li:hover .view .info .txt,
.ind_pro .con .bot ul li:hover .view .info .tit {
  color: white;
}

.ind_pro .con .top ul li {
  width: 50%;
}

.ind_pro .con .top ul li .view {
  text-align: center;
  padding: 0.4rem 5%;
}

.ind_pro .con .top ul li .view .info .tit span {
  font-size: 0.36rem;
  /* font-size: 2.5vw; */
  line-height: 1.3;
}

.ind_pro .con .top ul li .view .pic {
  width: 36%;
  height: 3.6rem;
}

.ind_pro .con .top ul li .view .pic img {
  max-height: 100%;
}

.ind_pro .con .top ul li .view .info {
  text-align: left;
}

.ind_pro .con .top ul li .view .info .txt {
  margin-top: 0.2rem;
}

.ind_pro .con .top ul li .view .info .more {
  text-align: center;
  margin: 0.18rem 0 0;
}

.ind_pro .con .top ul li .view .info .more:hover {
  background-color: #424242;
}

.ind_pro .con .top ul li .view .bg {
  opacity: 1;
}

.ind_pro .con .top ul li .view .pic img,
.ind_pro .con .top ul li .view .pic {
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  opacity: 1;
  z-index: 2;
}

.ind_pro .con .top ul li:hover .view .bg {
  opacity: .8;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.ind_pro .con .top ul li .view .info {
  width: 64%;
}

/* 产品中心 e */

.kefu {
  opacity: 0;
  transition: all .5s;

}

.kefu.on {

  opacity: 1;
}

.products {
  margin-top: 50px;
}

.productsbox_l {
  display: flex;
  align-items: center;
}

.productsbox_lx {
  width: 18px;
  height: 3px;
  background-color: #163e83;
}

.productsbox_lh {
  font-family: 'ProximaNova-Bold';
  text-transform: capitalize;
  font-size: 45px;
  color: #333333;
  margin-left: 20px;
}

.productsbox_r .productsbox_ra {
  display: block;
  width: 200px;
  height: 54px;
  text-align: center;
  line-height: 52px;
  /*    border: 1px solid #777777;*/
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  overflow: hidden;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  text-transform: uppercase;
}

.productsbox_r .productsbox_ra:hover {
  border-color: #163e83;
}

.productsbox_ra.hvr-sweep-to-right::before {
  background-color: #163e83;
}

.productsboxb {
  position: relative;
  width: 100%;
  margin-top: 15px;
}

.products_prev,
.products_next {
  position: absolute;
  top: 50%;
  z-index: 10;
  outline: none;
  /* display: none; */
}

.products_prev {
  left: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.products_next {
  right: 0;
  transform: translate(50%, -50%);
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
}

.products_prev i,
.products_next i {
  font-size: 34px;
  color: #333;
}

.products_prev.swiper-button-disabled i,
.products_next.swiper-button-disabled i {
  color: #666;
}

.productst_thumbs {
  width: 100%;
}

.productst_slide .productst_slidea {
  display: block;
  background-color: #f3f3f3;
}

.productst_slideah {
  padding: 75px 10px 0;
  text-align: center;
  font-family: 'ProximaNova-Bold';
  text-transform: capitalize;
  font-size: 1px;
}

.productst_slideaimg img {
  display: block;
  margin: 0 auto;
  width: 90%;
}

.productst_slidedw {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;

}

.productst_slidedw .productst_slidedwbox::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, .1) !important;
  z-index: 2;
}

.productst_slidedwbox {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0 35px;
  text-align: center;
  overflow: hidden;
  /* transform: translateY(34px);
  -webkit-transform: translateY(34px);
  -moz-transform: translateY(34px);
  -ms-transform: translateY(34px);
  -o-transform: translateY(34px); */
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  position: relative;
}

.productst_slidedwboxbig {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 3;
  flex-direction: column;
}

.productst_slidedwbox_h {
  margin-top: 70px;
  font-size: 24px;
  font-family: 'ProximaNova-Bold';
  text-transform: capitalize;
  color: #fff;
}

.productst_slidedwbox_x {
  width: 20px;
  height: 2px;
  background-color: #fff;
  margin-top: 20px;
}

.productst_slidedwbox_p {
  flex: 1;
  margin-top: 35px;
  color: #fff;
  line-height: 23px;
  word-break: break-all;
}

.productst_slidedwbox_a {
  margin-bottom: 20px;
  margin-top: 20px;
  width: 152px;
  height: 45px;
  background-color: #163e83;
  line-height: 45px;
  text-align: center;
  color: #fff;
}

.productst_slidedwboxdw {
  position: absolute;
  width: 100%;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.productst_slidedwboxdw img {
  display: inline-block;
  margin: auto;
}

.productst_slide .productst_slideah {
  transition: all .3s;
  opacity: 1
}

.productst_slide .productst_slideaimg {
  transition: all .3s;
  opacity: 0
}

.productst_slide.swiper-slide-thumb-active .productst_slideah {
  opacity: 0;
}

.productst_slide.swiper-slide-thumb-active .productst_slideaimg {
  opacity: 0;
}

.productst_slide .productst_slidea:hover .productst_slidedw {
  opacity: 1;
}

.productst_slide .productst_slidea:hover .productst_slidedwbox {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.productst_slide.swiper-slide-thumb-active .productst_slidea .productst_slidedw {
  opacity: 1;
}

.productst_slide.swiper-slide-thumb-active .productst_slidea .productst_slidedwbox {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.productsboxd {
  border-bottom: 1px solid #d9d9d9;
}

.productsb_top {
  width: 100%;
}

.productsb_slideitem {
  padding: 65px 0;
  display: flex;
  background-color: #fff;
}

.productsb_slideitem_dg {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.productsb_slideitem_dg::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 1px;
  height: 45px;
  background-color: #d1d1d1;
}

.productsb_slideitem_dg:last-child::after {
  display: none;
}

.productsb_slideitem_dgtxt {
  margin-left: 25px;
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
}

.productsb_slideitem_dgtxt h6 {
  font-size: 20px;
}

.productsb_slideitem_dgtxt p {
  font-size: 14px;
  color: #666666;
}

.productsb_slideitem_dgi {
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
}

.productsb_slideitem_dg:hover .productsb_slideitem_dgi {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.productsb_slideitem_dg:hover .productsb_slideitem_dgtxt {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
}


.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* margin-right: -15px; */
  margin-bottom: 20px;
  justify-content: space-between;
  align-items: center;
}

.pronav {
  margin-top: 60px;
}

.productsboxb .products_prev,
.productsboxb .products_next {
  width: 50px;
  height: 50px;
  top: 49%;
  border: 1px solid #bbb;
  border-radius: 500px;
  background: none;
  overflow: hidden;
  transition: all .3s;
  z-index: 1;
  cursor: pointer;
}

.productsboxb .products_next {
  right: -3%;
}

.productsboxb .products_prev {
  left: -3%;
}

.pronav.center {
  overflow: unset;
}

.productsboxb .products_prev:hover,
.productsboxb .products_next:hover {
  border: 1px solid #163e83;
  background: #163e83;
}

.productsboxb .products_prev img,
.productsboxb .products_next img {
  user-select: none;
  display: block;
  margin: 0 auto;
  margin-top: 15px;
}

.productsboxb .products_prev:hover img,
.productsboxb .products_next:hover img {
  transform: translateY(-200px);
  filter: drop-shadow(#fff 0 200px);
}



@media screen and (max-width: 900px) {
  .pronavli {
    width: 100%;
    margin: 15px 0;

  }

  .pronavli span {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .productst_slidedwbox_h {
    margin-top: 70px;
    font-size: 14px;
    white-space: nowrap;
  }

  .productsboxb .products_prev,
  .productsboxb .products_next {
    display: none
  }

  .productst_slidedwbox_a {
    margin-bottom: 20px;
    margin-top: 20px;
    width: 90px;
    height: 30px;
    background-color: #163e83;
    line-height: 30px;
    text-align: center;
    font-size: 12px;
    color: #fff;
  }

  .productsboxb {
    margin-top: 0px;
  }

  .product_con_view .bot .bot_con>li.conflex table {
    margin-left: 0px;
  }

  .product_con_view .bot {
    padding: 10px 20px;
    margin-top: 25px;
  }

  .product_con_view .bot .bot_con {
    margin-top: 20px;
  }

  .product_con_view .fr h3 {
    font-size: 24px;
  }

  .pd-80 {
    padding: 40px 0;
  }

  .row {
    margin-bottom: 0px;
  }

  .pro_bg {
    background: #f3f5f7;
    margin-top: 0;
  }
}