@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 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}


/**/

.wal {
  width: 1200px;
  margin: 0px auto;
}

.main_title {
  text-align: center;
}

.main_title b {
  font-size: 40px;
  display: inline-block;
  color: #363636;
  font-weight: 700;
  position: relative;
}

.main_title span {
  display: block;
  font-size: 18px;
  color: #999999;
  margin: 10px 0;
}

.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;
}

/*顶部导航*/
.header {
  width: 100%;

}

.header_top {
  width: 100%;
  background: #f1f1f1;
  height: 35px;
  line-height: 35px;
  color: #000;
  overflow: hidden;
}

.top-center {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  position: relative;
}

.logo_txt {
  display: flex;
  align-items: center;
}

.logo_txt b {
  line-height: 34px;
  margin-top: 5px;
  font-size: 30px;
  color: #214696;
  display: block;
}

.logo_txt p {
  font-size: 17px;
  line-height: 40px;
}


.header_phone {
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.header_phone p {
  color: #333;

  margin-bottom: 8px;
  font-size: 15px;
  margin-left: 10px;
}

.header_phone b {
  color: #000;
  font-size: 32px;
  font-weight: bold;
  margin-top: 0;
  display: block;
  padding-left: 10px;
  font-family: '宋体';
}

/*导航菜单*/
.navbar {
  width: 100%;
  background: #214696;
}

.nav {
  margin: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.nav li {
  position: relative;
  flex: 1;
}

.nav li::before {
  content: " | ";
  position: absolute;
  top: 40%;
  color: rgba(255, 255, 255, .5);
  left: 0;
  font-weight: normal;
}

.nav li:last-child::after {
  content: " | ";
  position: absolute;
  top: 40%;
  color: rgba(255, 255, 255, .5);
  right: 0;
  font-weight: normal;
}

.nav li a {
  display: block;
  font-size: 17px;
  line-height: 60px;

  color: #fff;
  text-align: center;
  transition: all .3s;


}

.nav a:hover, .nav li:hover>a {

  color: #fff;
  background: #DE0505;
}
.cur a {

  color: #fff;
  background: #DE0505;
}
.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;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

.nav li .ejxl li {
  margin: 0 auto;
  display: block;
  padding: 0;
  width: 100%;
}

.nav li .ejxl li::before {
  content: "";
  position: relative;
}

.nav li .ejxl li a {
  display: block;
  color: #666;
  background:#fff;
  font-size: 15px;
  height: 35px;
  line-height: 35px;
  padding: 0;
  width: 100%;
  text-align: center;
}

.nav li .ejxl a:hover {
  background: #DE0505;
  color: #fff;
}

.nav li:hover .ejxl {

  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/*导航菜单 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: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  z-index: 10;
  width: 50px;
  font-size: 30px;
  line-height: 50px;
  height: 50px;
  transition: all .5s ease;
  outline: none;

}

#banner .swiper-button:hover {
  background: #DE0505;
}

.btn-prev {
  left: 5%;
}

.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: #DE0505;
  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 {
  background: #F7F7F7 url(../images/abbg.jpg) no-repeat;
  background-size: cover;
  padding: 80px 0 0 0;
  position: relative;
  overflow: hidden;
}

.about_fl {
  width: 45%;
  margin-top: 40px;
}

.ab_txt {
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.ab_txt p {
  line-height: 32px;
  padding: 10px 0;
  color: #666;
  font-size: 15px;
}

.ab_txt b {
  font-size: 28px;
  display: block;
  margin-bottom: 15px;
  color: #333;
  font-weight: normal;
}

.more-btn {
  margin: 15px 0 0;
  text-align: center;
  display: block;
  width: 100px;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  font-size: 15px;
  background: #214696;
  color: #fff;
  transition: all .3s;
  border: 1px solid #214696;
  display: block;
}

.more-btn span {
  display: block;
}

.more-btn:hover {
  color: #214696;
  border: 1px solid #214696;
  background: none;
}

.more_center {
  margin: 25px auto;
}

.about_fr {
  width: 55%;
  position: relative;
  z-index: 2;
}

.about_fr img {
  float: right;
}

.about_fr a:hover img {
  -webkit-filter: grayscale(50%);
  filter: grayscale(50%);
}

.abbg {
  background: #214696;
  background-size: cover;
  padding: 50px 0;

  margin: auto;
  z-index: 1;
}

.more_btn3 {
  display: block;
  margin-top: 30px;
  width: 100%;
  width: 150px;
  font-size: 14px;
  height: 45px;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  line-height: 45px;
  display: block;
}

.more_btn3:hover {
  background: rgba(255, 255, 255, 0.5);
}

/*产品*/
.product {
  margin-top: 50px;
}

.slide-nav {


  margin-top: 40px;
  width: 100%;


}

.slide-list {

  list-style: none;
  padding: 0;
  background: #939393;
  display: flex;
  margin: 10px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;



}

.slide-list li {

  overflow: hidden;
  width: 20%;

}

.slide-list li span {
  padding-right: 6px;

}

.slide-list li a {
  text-decoration: none;
  line-height: 56px;
  font-size: 17px;
  padding-left: 15px;
  display: block;
  color: #fff;
  position: relative;
  border: 1px solid #fff;


}



.slide-list li a:hover {
  background: #214696;
}

.slide-list li ul {
  margin: 0 15px;
}

.slide-list li ul li a {
  background: rgba(255, 255, 255, .8);
  color: #666;
  padding-left: 24px;
  line-height: 40px;
  font-size: 16px;
}

.slide-list li ul li a:hover {
  color: #fff;
}



.pro_list {
  margin-top: 20px;

}

.pro_list a {
  display: block;
  float: left;
  width: calc(25% - 22px);
  margin: 10px;
  border: 1px solid #f2f4f5;
}
.pro_list a img{ width:100%;}
.pro_list span {
  display: block;
  overflow: hidden;
}

.pro_list p {
  padding: 10px 15px;
  background: #214696;
}

.pro_list .cp_tit {
  font-size: 18px;
  line-height: 24px;
  text-align: left;
  color: #fff;
  padding-top: 15px;
  border-bottom: 1px solid #1A7ECE;
}

.pro_list .cp_tit i {
  float: right;
}

.pro_list .cp_dec {
  color: rgba(255, 255, 255, 0.7);
  line-height: 20px;
  padding-bottom: 20px;
  font-size: 14px;
}

.pro_list a:hover {
  box-shadow: 0 0 20px #ccc;
}

.pro_list a:hover p {
  color: #fff;
  background: #214696;
}

.probg {
  background: #F4F6F8;
  padding: 40px 0 60px;
  margin-top: 50px;
}

/*技术服务*/


/*优势*/
.ys {
  background: url(../images/probg.jpg) no-repeat;
  background-size: cover;
  padding: 60px 0;
  margin-top: 60px;
}

.yyfa {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 40px;

}

.yyfa .tab {
  overflow: hidden;
  display: flex;



}

.yyfa .tab .team-box .team-content {
  background: rgba(255, 255, 255, .2);

  width: 100%;
  padding: 18px 0;
  text-align: center;
  border-top: 4px solid transparent;
  display: inline-block;
  -webkit-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}

.yyfa .tab .team-box .team-content img {
  filter: brightness(500%);
}

.team-content .title {

  font-size: 24px;
  line-height: 48px;

}

.team-content .title2 {

  font-family: 'MontserratUltraLight';
  font-size: 16px;
  letter-spacing: 1.8px;
  margin-bottom: 8px;
  padding-left: 10px;
  padding-right: 10px;
}


.yyfa .tab a {
  display: block;
  flex: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, .2);

}



.yyfa .tab a.on .team-box .team-content {
  background-color: #DE0505;

}

.yyfa .tab a.on {
  color: #fff;
}

.yyfa .tab a.on .team-box .team-content img {
  filter: brightness(500%);
}

.yyfa .co {
  margin-top: 20px;
}

.yyfa .co ul {
  margin: 0;
  padding: 0px;
}

.yyfa .co li {
  display: none;
  position: relative;


  list-style: none;
}

.yyfa .co li .img-box {
  width: 60%;
  float: left;
  height: 445px;
}

.yyfa .co li .img-box img {
  height: 445px;
}

.yyfa .co li .ys_txt {
  display: flex;
  align-items: center;
  flex-direction: column;

  background: #fff;
  width: 40%;
  float: right;
  height: 445px;


}

.yyfa .co li .ys_txt b {
  font-size: 30px;
  color: #214696;

  display: block;
  margin-top: 70px;

}

.yyfa .co li .ys_txt p {
  padding: 50px 5%;
  font-size: 17px;

  line-height: 28px;
}

/*流程*/
.liucheng {

  background: #f1f1f1;
  padding: 60px 0;
}

.liuchengbox {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 30px;

}

.liucheng-list {
  width: calc(12.5% - 35px);
  text-align: center;
  color: #333;
  position: relative;
  z-index: 1;
  margin: 10px 18px;
  cursor: pointer;
  padding: 40px 0 10px 0;
  transition: all .3s;
  border-radius: 10px;


}

.liucheng-list i {
  display: block;
  width: 120px;
  height: 122px;
  background: url(../images/lcbg.png) no-repeat center;
  margin: auto;
}

.liucheng-list i:hover {
  background: url(../images/lcbg2.png) no-repeat center;
}

.liucheng-list .lcimg {
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  margin-top: 35px;


}

.liucheng-list:hover .lcimg {
  -webkit-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

.liucheng-list p {
  font-size: 16px;
  margin: 17px 0;
  border-bottom: 1px solid #dedede;
  padding-bottom: 20px;
}

.liucheng-list .num {
  font-size: 20px;
  width: 48px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  line-height: 44px;
  border-radius: 50px;
  text-align: center;

  font-size: 30px;
  color: #ccc;

  margin: 0 auto;
  position: relative;
}

.liucheng-list span {
  position: absolute;
  right: -35px;
  top: 50%
}

.liucheng-list:hover .num {
  color: #DE0505;
}

.liucheng-list:hover {
  background: rgba(255, 255, 255, 0.3);
}



/*新闻*/
.news_box {
  margin-top: 50px;
}

.news-block {
  width: 100%;
  margin-top: 40px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.news-block .img {
  width: 40%;

}

.news-block ul {
  width: calc(58% - 60px);
  background-color: #f1f1f1;
  padding: 0 30px;
}

.news-block ul li {
  width: 100%;
  padding: 30px 0 30px;
  border-bottom: 1px solid #dedede;
}

.news-block ul li a {
  display: flex;
  align-items: center;
}

.news-block ul li a .date {
  width: 70px;
  text-align: center;
  white-space: nowrap;
  transition: all 0.3s;
  flex-shrink: 0;
}

.news-block ul li a .date .day {
  font-size: 56px;
  font-weight: bold;
  font-family: 'DIN';
  line-height: 56px;
}

.news-block ul li a .date .mon {
  font-size: 16px;
  font-family: 'DIN';
}

.news-block ul li a .text {
  width: 100%;
  margin-left: 40px;
}

.news-block ul li a .text .title {
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s;
  color: #333;
}

.news-block ul li a .text .desc {
  width: 100%;
  line-height: 28px;
  color: #888;
  margin-top: 10px;
  transition: all 0.3s;
}

.news-block ul li a:hover .date,
.news-block ul li a.active .date {
  color: #214696;
}

.news-block ul li a:hover .text .title,
.news-block ul li a.active .text .title {
  color: #214696;
}

.news-block ul li a:hover .text .desc,
.news-block ul li a.active .text .desc {
  color: #333;
}

.news-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.news-list .item {
  display: block;
  width: calc(50% - 70px);

  margin-top: 20px;
  padding: 30px;
  background-color: #f1f1f1;

  border-bottom: 1px solid #fff;
  transition: all 0.3s;
}

.news-list .item .title {
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s;
  color: #333;
}

.news-list .item .desc {
  width: 100%;
  line-height: 28px;
  color: #888;
  margin-top: 10px;
  transition: all 0.3s;
}

.news-list .item span {
  display: block;
  margin-top: 10px;
  color: #999;
}

.news-list .item:hover {
  border-color: #214696;
}

.news-list .item:hover .title {
  color: #214696;
}

.news-list .item:hover .desc {
  color: #333;
}

.news-list .item:nth-child(2n + 1) {
  margin-left: 0;
}

/*返回顶部*/

.scroll {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: fixed;
  right: 45px;
  bottom: 60px;
  color: #fff;
  cursor: pointer;
  background: #214696;
  font-size: 26px;

}

/*底部footer*/
.footer {
  background: #214696;
  margin-top: 80px;
}

.foot {
  padding: 70px 0 30px 0;

}

.foot b {
  font-size: 22px;
  color: #fff;
  display: block;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.foot span {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding-right: 8px;
}

.foot .ft-nav {
  width: 37%;
}

.foot .ft-nav li {

  float: left;
  margin-bottom: 22px;
  width: 50%;
}

.foot .ft-nav li a {
  font-size: 16px;
  display: block;
  color: #fff;
}

.foot .ft-nav li a:hover {
  color: #f20000;
}

.foot .ft-contact {
  width: 28%;
}

.foot .ft-contact p {
  width: 100%;
  color: #fff;
  font-size: 16px;
  margin-bottom: 22px;
}

.foot .footer_center {
  margin-top: 32px;
  display: flex;

  justify-content: center;
  flex-direction: column;
}

.footer_phone {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.footer_phone p {
  color: #333;
  margin-bottom: 5px;
  font-size: 16px;

}

.footer_phone img {
  margin-bottom: 10px;
}

.footer_phone p span {
  font-weight: normal;
}

.footer_phone b {
  color: #fff;
  text-align: center;
  font-size: 32px;
  margin: 15px 0;
  display: block;
}

.footer_phone b span {
  font-size: 18px;
  font-weight: normal;
}

.foot .footer_center {
  width: 23%;
}

.foot .footer_center .footer_tel {

  display: flex;

  flex-direction: column;
}

.foot .footer_center p {
  text-align: left;
  color: #fff;

}

.foot .ewm {
  margin-top: 65px;
  width: 10%;
}

.foot .ewm img {
  max-width: 100px;
}

.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, .5);
}

.copyright a {
  color: #fff;
}


.foot .ft-nav .ft-nav-list dd a:hover {
  color: #E70012
}

.foot .ft-nav .ewm {
  display: flex;
}

.foot .ft-nav .ewm p {
  text-align: center;
  margin-top: 10px;
  color: #fff;
}

.foot .ft-nav .ewm img {
  width: 90px;
  margin-top: 20px;
}

.foot .ft-contact {

  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-direction: column;

}

.foot .ft-contact b {
  font-weight: 500;
  color: #fff;
  text-align: left;
  margin-bottom: 20px;
  font-size: 20px;
}

.foot .ft-contact p {
  color: #fff;
  text-align: left;
  margin-bottom: 15px;
  font-size: 16px;
}

.foot .ft-contact p span {
  padding-left: 18px;
}

.foot .ft-contact i {
  font-size: 17px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
  display: block;
  width: 100%;
}

.foot .ft-contact i img {
  float: right;
}

.copyright {
  padding: 20px 10px;
  text-align: center;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright a {
  color: #fff;
}