@charset "utf-8";

/* CSS Document */

body {
  font: 14px "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
  height: 100%;
  min-width: 1260px;
  background: #fff;
  max-width: 100%;
  overflow: auto;
  color: #666;
  overflow-x: hidden;
  padding: 0px;
  margin: 0px;
}

a {
  color: #666;
  text-decoration: none;
  outline: none;
}

img {
  border: 0px;
  vertical-align: middle;
}

a:link {
  text-decoration: none;
  outline: none;
}

a:visited {
  text-decoration: none;
  outline: none;
}

a:hover {
  text-decoration: none;
  color: #333;
  outline: none;
}

ul,
p,
dl,
dt,
dd {
  padding: 0px;
  margin: 0px;
}

li {
  list-style-position: outside;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5 {
  padding: 0px;
  margin: 0px;
}

input {
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-appearance: none;
}

input::-webkit-input-placeholder {
  color: #ccc;
}

input::-ms-input-placeholder {
  color: #ccc;
}

input::-moz-placeholder {
  color: #ccc;
}

input[type=button],
input[type=submit] {
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input {
  background: transparent;
  padding: 0px;
  font-size: 14px;
  color: #888;
  border: 0px;
  outline: none;
}

em {
  font-style: normal;
}

i {
  font-style: normal;
}


/*清除浮动*/

.clear {
  clear: both;
  height: 0px;
  overflow: hidden;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}

.clearfix {
  /*兼容 IE*/
  zoom: 1;
}


/************全局样式************/

.fl {
  float: left;
}

.fr {
  float: right;
}

/************************图片样式***********************/
img {
  border: 0px;
  vertical-align: middle;
}

/*图片居中*/
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto
}

/*图片自适应*/
.img-responsive {
  display: block;
  height: auto;
  max-width: 100%
}

/*鼠标放上图片放大*/
.avatar {
  display: block;
  overflow: hidden;
  width: 100%;
}

.avatar img {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.avatar:hover img {
  transform: scale(1.1);
  transition: all 1s ease 0s;
  -webkit-transform: scale(1.1);
}


/*文字超出隐藏*/

.dot {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.dot2 {
  display: -webkit-box;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}


/**/

.wal {
  width: 1200px;
  margin: 0px auto;
}


.dflex {
  display: flex;
}

.dflex_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dflex_start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.dflex_end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.dflex_stretch {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: stretch;
}

.dflex_space-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*顶部导航*/

.headDiv {
  height: 100px;
  width: 100%;
  z-index: 9999;

  position: fixed;
  top: 0;
  left: 0;

  background: #fff;
  box-shadow: 0 0 10px #f1f1f1;


}

.headDiv .wal {
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.headDiv .logo {
  height: 100px;

  display: flex;
  align-items: center;
}

.headDiv .logo b {
  font-size: 24px;
  color: #333;
}

.nav {

  height: 100px;

}

.nav li {
  float: left;
  position: relative;


}

.nav ul li:last-of-type:after {
  content: "";
}

.nav a:hover, .nav li:hover>a {

  color: #fff;
  background: #15468e;

}

.nav .current>a{ color: #fff;
  background: #15468e;}

.nav ul li a {
  display: block;
  float: left;
  height: 100px;
  line-height: 100px;
  padding: 0 25px;
  overflow: hidden;
  text-align: center;
  font-size: 18px;
  color: #333;

}

.nav ul li:hover .ejxl {
  display: block;
}

/* 二级菜单 */
.ejxl {
  background-color: #fff;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  border-top: 4px solid #15468e;
  position: absolute;
  top: 100%;

  width: 100%;
}

.nav li .ejxl li {
  margin: 0 auto;
  display: block;
  padding: 0;
  width: 100%;
  border: none;
}

.nav li .ejxl li:after {
  content: "";
  position: relative;
}

.nav li .ejxl li a {
  display: block;
  color: #666;
  font-size: 15px;
  height: 45px;
  line-height: 45px;
  padding: 0;
  width: 100%;
  text-align: center;
}

.nav li .ejxl a:hover {
  background: #15468e;
  color: #fff;
}

.nav li:hover .ejxl {

  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.header_phone {
  height: 100px;
  line-height: 100px;
  text-align: center;
}

.header_phone b {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  display: block;
}

/*导航菜单 end*/

/*首页banner图*/
#banner .swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

#banner .swiper-slide {
  background-position: center;
  background-size: cover;
  position: relative;
}

#banner .swiper-slide img {
  display: block;
  width: 100%;


}

#banner .swiper-button {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;

  cursor: pointer;
  overflow: hidden;
  z-index: 10;

  transition: all .5s ease;
  outline: none;
  opacity: 0;

}

#banner:hover .swiper-button {
  opacity: 1;

}

.btn-prev {
  left: 8%;
}

.btn-next {
  right: 8%;
}

#banner:hover .btn-prev {
  left: 5%;
}

#banner:hover .btn-next {
  right: 5%;
}

#banner .swiper-pagination-bullet {
  position: relative;
  margin: 0 8px !important;
  display: inline-block;
  width: 14px;
  height: 14px;
  overflow: hidden;
  z-index: 10;
  border-radius: 100%;
  outline: none;
  background: #fff;
  opacity: 1;
}


#banner .swiper-pagination-bullet-active.swiper-pagination-bullet::before {
  background: #fff;
}

#banner .swiper-pagination-bullet-active {
  background-color: #15468e;
  opacity: 1;
  filter: alpha(opacity=100);
}

#banner .swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 20px;
  left: 0;
  width: 100%;
}


/*首页banner图 end*/
/* 简介*/
.about {
  padding: 50px 0;
}

.main_title {
  margin-bottom: 20px;
  font-size: 40px;
  color: #333;
  text-align: center;
  height: 60px;
  line-height: 60px;
  overflow: hidden;
  display: block;
  background: url(../images/line.png) no-repeat bottom;
  padding-bottom: 10px;
}

.about-tit {
  font-size: 16px;
  color: #666;
  margin-top: 15px;
  line-height: 30px;
}

.about-txt {
  padding: 30px 0 0;
}

.about-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-list .txt {
  width: 180px;
  text-align: center;
}

.about-list li:nth-child(2) .txt, .about-list li:nth-child(4) .txt {
  width: 160px;
}

.about-list .tb {
  margin-bottom: 20px;
}

.about-list .tb img {
  height: 30px;
}

.about-list li {
  margin-top: 20px;
  font-size: 17px;
  float: left;
  height: 100px;
  color: #666;
  -webkit-transition: transform .3s;
  transition: transform .3s;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.about-list li b {
  line-height: 50px;
  font-weight: normal;
  width: 50%;
}

.about-list li span {
  display: block;
  padding: 10px;
}

.about-list li i {
  font-size: 40px;
  color: #272727;
  font-weight: bold;
  padding-right: 4px;
}

.about-list li:hover {
  -webkit-transform: translate(0, -5px);
  transform: translate(0, -5px);
}

.about-list li.nobor {
  background: none;
}

.about-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.about-box .about-tit {
  flex: 1;
  margin-right: 30px;
}

.about-box .about-tit p {
  line-height: 28px;
  margin: 10px 0;
  font-size: 16px;
}

.about-box .about-tu {
  flex: 1;
  margin-left: 30px;
}

.ab-more {
  display: block;
  width: 150px;
  letter-spacing: 1px;
  margin-top: 20px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  border: 1px solid #15468e;
  background: #15468e;
  border-radius: 38px;
  text-shadow: none;
}

.ab-more a {
  color: #fff;
  text-decoration: none;
}

.ab-more:hover {

  background: none;
  border: 1px solid #15468e;
}

.ab-more:hover a {
  color: #15468e;
}

.ab-more::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
  top: -1px;
  margin-left: 7px;
  -webkit-transition: .6s ease;
  transition: .6s ease;
}

.ab-more:hover::after {
  margin-left: 13px;
}

/*产品*/
.product-box {
  padding: 70px 0;
  background: url(../images/probg.jpg) center no-repeat;
  background-size: 100%;
}

.product {
  padding: 80px 0;
  width: 30%;
  float: left;

}

.product .swiper-wrapper {
  display: flex;
  flex-direction: column;
}

.product .swiper-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}


.swiper-slide-thumb-active {
  color: #003e81;
}

.gallery-top {
  height: auto;
  margin: 20px auto;
}

.gallery-thumbs {

  text-align: left;
  box-sizing: border-box;

}

.gallery-thumbs .swiper-slide {


  height: 58px;
  line-height: 58px;
  margin: 20px 0;
  width: 100% !important;
  cursor: pointer;
}

.gallery-thumbs .swiper-slide img {
  margin-right: 10px;
  border: 1px solid #fff;
  padding: 5px;
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: " ";
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: " ";
}

.gallery-thumbs .swiper-slide-thumb-active a {
  color: #fff;
}

.gallery-thumbs .swiper-slide a {
  padding-left: 30px;
  display: block;
  height: 58px;
  font-size: 20px;
  position: relative;

  color: #FFF;
  transition: all 0.3s;
}

.gallery-thumbs .swiper-slide a:before {
  transition: all 0.3s;
  width: 10px;
  height: 1px;
  background: #fff;
  position: absolute;
  content: ' ';
  bottom: 30px;
  left: 0;
}

.gallery-thumbs .swiper-slide a:hover {
  color: #DB0F05;
}

.gallery-thumbs .swiper-slide a:hover:before {
  width: 45px;
  height: 2px;
}

.gallery-thumbs .swiper-slide a:hover {
  padding-left: 50px;
}

.gallery-thumbs .swiper-slide-thumb-active {
  color: #DB0F05;
  font-weight: bold;
}

.gallery-thumbs .swiper-slide-thumb-active a:before {
  width: 10px;
  height: 1px;
  background: #DB0F05;
  width: 25px;
}

.gallery-thumbs .swiper-slide-thumb-active a {
  color: #DB0F05;
}

.gallery-top {
  width: 50%;
  float: right;
  padding-top: 20px;
}

.gallery-top {

  height: auto;
  margin: auto;

}
.prone .swiper-slide span {height:450px;display:flex;  align-items:center; background:#fff}

.prone .swiper-slide img {
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%
}

.prone .swiper-slide p {
  background-color: #003e81;
  color: #fff;
  text-align: center;
  line-height: 40px;
  padding: 10px;
}

.prone .swiper-button-next {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);

  cursor: pointer;
  overflow: hidden;
  z-index: 999;
  width: 40px;
  font-size: 30px;
  line-height: 60px;
  height: 60px;
  transition: all .5s ease;
  outline: none;
}

.prone .swiper-button-prev {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);

  cursor: pointer;
  overflow: hidden;
  z-index: 999;
  width: 40px;
  font-size: 30px;
  line-height: 60px;
  height: 60px;
  transition: all .5s ease;
  outline: none;
}

.prone .swiper-button-prev:hover,
.prone .swiper-button-next:hover {
  background: #DB0F05;
}

/*生产实力*/
.scsl {

  padding: 60px 0;

}

.scsl-box {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 0;


}

.scsl-box li {
  position: relative;

  width: calc(50% - 20px);
  margin: 10px;
}

.scsl-box li a {
  display: block;
  overflow: hidden;
  position: relative;
}

.scsl-box li:last-child a:last-child {
  margin-top: 20px;
}

.scsl-box em {
  font-size: 20px;
  margin: 0;
  padding: 0;
  font-style: normal;
  display: block;
  text-align: center;
  color: #fff;
}

.scsl-box li .img_cont img {
  transition: all .5s;
}

.scsl-box li .cont_box {
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.scsl-box li .cont_tit {

  position: absolute;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;


}

.scsl-box li .cont_tit b {
  font-size: 30px;
  margin-top: 45px;
  display: block;
  padding: 0 30px;
}

.scsl-box li .cont_tit p {
  padding: 20px 30px;
  font-size: 17px;
  line-height: 32px;
}

.scsl-box li .more {
  text-align: center;
  color: #fff;
  margin-top: 15px;
}

.scsl-box li a:hover .img_cont img {
  transform: scale(1.1);
}

.scsl-box li a:hover .cont_tit {
  background: rgba(15, 48, 102, 0.7);
}

/*行业应用*/
.yy-box {
  background: url(../images/lybg.jpg) no-repeat center;
  padding: 70px 0;
  background-attachment: fixed;
  height: 400px;
  background-size: cover;
}

#hyyy {
  margin-top: 30px;
  position: relative;

}

#hyyy .swiper-pagination-progressbar {
  background: rgba(0, 0, 0, .25);
  position: absolute;

}

#hyyy .swiper-slide a {
  color: #fff;
}

#hyyy .swiper-slide p {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  opacity: 1;
  filter: alpha(opacity=100);
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .2);
}

#hyyy .swiper-slide .upbg {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  transform: translateY(0) scale(0);
  -webkit-transform: translateY(0) scale(0);
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  height: 100%;
  background: rgba(0, 62, 129, .8);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

#hyyy .swiper-slide img {
  width: 100%;
}

#hyyy .swiper-slide .upbg b {
  font-size: 24px;
  margin-bottom: 20px;
  display: block;
}

#hyyy .swiper-slide .upbg span {
  display: block;
  padding: 0 20px;
}

#hyyy .swiper-slide a:hover .upbg {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateY(0) scale(1);
  -webkit-transform: translateY(0) scale(1);
}

#hyyy .swiper-slide a:hover p {
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  filter: alpha(opacity=0);
}

#hyyy .swiper-button-next, #hyyy .swiper-button-prev {
  position: absolute;
  top: 50%;

  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  z-index: 999;
  width: 60px;
  font-size: 30px;
  line-height: 60px;
  height: 60px;
  transition: all .5s ease;
  outline: none;

}

#hyyy .swiper-button-prev {
  left: -80px;
}

#hyyy .swiper-button-next {
  right: -80px;
}

#hyyy .swiper-button-next:hover, #hyyy .swiper-button-prev:hover {
  background: rgba(0, 98, 183, 1);
}

#hyyy .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #086AC4;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

#hyyy .swiper-container-horizontal>.swiper-pagination-progressbar {
  width: 100%;
  height: 8px;
  left: 0;
  top: 0;
}

/*优势*/
.ys {
  background: #f1f1f1;
  background-size: cover;
  padding: 70px 0;
}

.zzsc {
  width: 100%;
  height: auto;
  margin: 20px auto;
}

.zzsc .tab {
  overflow: hidden;


}


.zzsc .tab a {
  display: block;
  font-size: 26px;
  padding: 30px 0;
  width: calc(25% - 10px);
  color: #333;
  background: #fff;
  margin: 0 5px;
  text-align: center;
  float: left;
  text-decoration: none;
  transition: all .3s;
}

.zzsc .tab a span {
  display: block;
}

.zzsc .tabb a {
  display: block;
  font-size: 26px;
  padding: 30px 0;
  width: calc(25% - 10px);
  color: #333;
  background: #f1f1f1;
  margin: 0 5px;
  text-align: center;
  float: left;
  text-decoration: none;
  transition: all .3s;
}


.zzsc .tab a.on {
  background-color: #0353A2;
  color: #fff;
}

.zzsc .co {
  overflow: hidden;
  margin: 5px;


}

.zzsc .co>ul {
  margin-top: 30px;

}

.zzsc .co li {
  display: none;
  width: 100%;
  list-style: none;
  position: relative;
}

.ys_list {
  margin-top: 40px;

}

.ys_list_right {
  float: left;
  width: 50%;

}

.ys_list_left {
  float: right;
  width: 40%;
  padding: 40px 5%;
  background: #ffffff;
  line-height: 24px;
  font-size: 14px;
  color: #585657;
  position: absolute;
  right: 0;
  bottom: 0;

}

.ys_list_left b {
  line-height: 56px;
  color: #333;
  padding: 28px 0 0;
  font-size: 36px;
  position: relative;
  font-weight: 500;
  display: block;
}

.ys_list_left span {
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin: 30px 0;
}

.ys_list_left p {
  font-size: 16px;
  padding-top: 10px;
  line-height: 26px;
  color: #666;
}

.ys_list_left a {
  display: block;
  padding-top: 10px;
  color: #C21125;
}


/*新闻*/

.news {
  padding: 70px 0;
}

.news-two ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.news-two ul li {
  width: 33.3%;

}

.news-two a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #f1f1f1;
  padding: 30px 20px;
  transition: .3s;
  margin: 10px;
  border: 1px solid #f1f1f1;

}

.news-two ul li:nth-child(5), .news-two ul li:nth-child(6) {
  margin-bottom: 0;
}

.news-two a:hover {
  box-shadow: 0 0 10px #dedede;
  background: url(../images/bgnews.jpg) no-repeat;
  background-size: 100%;

}

.news-two a:hover span {
  color: #fff;
}

.news-two a:hover .day, .news-two a:hover .newscon, .news-two a:hover .newscon b {
  color: #fff;
}

.day {
  color: #666;
  width: 100%;

  margin: 7px 0;
  font-size: 14px;

  border-top: 1px solid #dedede;
}

.day span {
  font-size: 16px;
  float: right;

}

.day p {
  padding-top: 20px;
}


.newscon b {
  padding-bottom: 10px;
  font-size: 16px;
  color: #333;
  display: block;

}

.newscon p {

  text-align: left;
  line-height: 24px;
  font-size: 14px;

}


/*返回顶部*/

.scroll {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: fixed;
  right: 45px;
  bottom: 70px;
  color: #fff;
  cursor: pointer;
  background: #15468e;
  font-size: 26px;

}


/*底部footer*/
.footer {
  background: url(../images/ftbg.jpg) no-repeat;

}

.foot {
  padding: 60px 0;

}

.foot b {
  font-size: 22px;
  color: #fff;
  display: block;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);

}

.foot span {
  color: #fff;
  font-size: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #fff;


}

.foot .ft-nav {
  width: 47%;

}

.foot .ft-nav ul {
  display: flex;
  flex-wrap: wrap;
}

.foot .ft-nav li {

  margin-bottom: 10px;
  width: 25%;


}

.foot .ft-nav li a {
  font-size: 15px;
  display: block;
  color: #fff;
}

.foot .ft-nav li a:hover {
  color: #DA0502;
}

.foot .ft-contact {
  width: 35%;

}

.foot .ft-contact p {
  width: 100%;
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
}


.foot .ewm {
  margin-top: 55px;
  width: 10%;
  display: flex;
  justify-content: space-between;
}

.foot .ewm img {
  max-width: 110px;
}

.foot .ewm p {
  margin-top: 10px;
  text-align: center;
  color: #fff;
}

.copyright {
  padding: 20px 10px;
  text-align: center;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.copyright a {
  color: #fff;
}