﻿@charset "utf-8";

/* CSS Document */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0px;
  border: 0;
  outline: none;
}

header,
nav,
footer,
menu {
  display: block;
}

dt {
  font-weight: 300;
}

img {
  border: none;
  max-width: 100%;
}

li {
  list-style-type: none;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  color: #333;
}

.block {
  display: block;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: "microsoft yahei";
  font-size: 14px;
  color: #333;
  position: relative;
  background-color: #fff;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

p {}

input::placeholder {
  color: #fff;
  font-size: 14px;
}

input::-moz-placeholder {
  color: #fff;
  font-size: 14px;
}

input:-ms-input-placeholder {
  color: #fff;
  font-size: 14px;
}

.clear {
  clear: both;
}

.display-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-justify-content: space-between;
  -ms-flex-pack: distribute;
  justify-content: space-between;
  flex-flow: row wrap;
}

.display-flex-center {
  -webkit-justify-content: center;
  -ms-flex-pack: distribute;
  justify-content: center;
}

.display-flex-top {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

.display-flex-left {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: distribute;
  justify-content: flex-start;
}

/*******头部********/
header {
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}

header .display-flex {
  position: relative;
}

header .logo {
  float: left;
  position: relative;
  width: 14rem;
}

header .header-nav {
  float: left;
}

header .header-nav li {
  float: left;
  position: relative;
}

header .header-nav li:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  height: 12px;
  width: 1px;
  margin-top: -6px;
  background-color: #666666;
}

header .header-nav li:before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  background: url(../images/second-icon.png) no-repeat center;
  height: 9px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .20s ease-in-out;
  -moz-transition: all .20s ease-in-out;
  -ms-transition: all .20s ease-in-out;
  -o-transition: all .20s ease-in-out;
  transition: all .20s ease-in-out;
}

header .header-nav li:last-child:after {
  display: none;
}

header .header-nav li:last-child>a {
  padding-right: 0;
}

header .header-nav li>a {
  display: block;
  position: relative;
  padding: 27.5px 26px;
  font-size: 18px;
  color: #000000;
}

header .header-nav li.active>a,
header .header-nav li:hover>a {
  color: #003883;
}

.menu {
  position: absolute;
  right: 75px;
  top: 73px;
}

.menu strong {
  display: inline-block;
  float: left;
  color: #2f318b;
  font-size: 16px;
  line-height: 18px;
  font-weight: normal;
  margin-right: 12px;
}

.menu {
  cursor: pointer;
  z-index: 9999;
}

#menu_toggle1 {
  display: none;
}

.menu span {
  position: relative;
  display: inline-block;
  width: 21px;
  height: 3px;
  background-color: #2c9cde;
  border-radius: 2px;
  vertical-align: middle;
  -webkit-transition-duration: .3s, .3s;
  -moz-transition-duration: .3s, .3s;
  -ms-transition-duration: .3s, .3s;
  -o-transition-duration: .3s, .3s;
  transition-duration: .3s, .3s;
  -webkit-transition-delay: .3s, 0s;
  -moz-transition-delay: .3s, 0s;
  -ms-transition-delay: .3s, 0s;
  -o-transition-delay: .3s, 0s;
  transition-delay: .3s, 0s;
  margin-top: -2px;
}

.menu span:after,
.menu span:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 21px;
  height: 3px;
  left: 0;
  border-radius: 2px;
  background-color: #2c9cde;
  -webkit-transition-duration: .3s, .3s;
  -moz-transition-duration: .3s, .3s;
  -ms-transition-duration: .3s, .3s;
  -o-transition-duration: .3s, .3s;
  transition-duration: .3s, .3s;
  -webkit-transition-delay: .3s, 0s;
  -moz-transition-delay: .3s, 0s;
  -ms-transition-delay: .3s, 0s;
  -o-transition-delay: .3s, 0s;
  transition-delay: .3s, 0s;
}

.menu span:before {
  top: -6px;
  -webkit-transition-property: top, transform;
  -moz-transition-property: top, transform;
  -ms-transition-property: top, transform;
  -o-transition-property: top, transform;
  transition-property: top, transform;
}

.menu span:after {
  bottom: -6px;
  -webkit-transition-property: bottom, transform;
  -moz-transition-property: bottom, transform;
  -ms-transition-property: bottom, transform;
  -o-transition-property: bottom, transform;
  transition-property: bottom, transform;
}

.menu.active {
  position: fixed;
  top: 40px;
  right: 1.875%;
}

.menu.active span {
  background-color: transparent;
  -webkit-transition-delay: 0s, 0s;
  -moz-transition-delay: 0s, 0s;
  -ms-transition-delay: 0s, 0s;
  -o-transition-delay: 0s, 0s;
  transition-delay: 0s, 0s;
}

.menu.active span:after,
.menu.active span:before {
  -webkit-transition-delay: 0s, .3s;
  -moz-transition-delay: 0s, .3s;
  -ms-transition-delay: 0s, .3s;
  -o-transition-delay: 0s, .3s;
  transition-delay: 0s, .3s;
}

.menu.active span:before {
  top: 0;
  background: #2c9cde;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu.active span:after {
  bottom: 0;
  background: #2c9cde;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menubox {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff;
  display: none;
  overflow-y: auto;
  z-index: 999;
}

.menus-list {
  position: relative;
  top: 80px;
  left: 0;
  margin: auto;
  width: 100%;
  padding: 20px;
}

.menus-list li {
  position: relative;
}

.menus-list li:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: ReturnToNormal;
  animation-name: ReturnToNormal;
  border-bottom: 1px solid #e5e5e5;
}

.menus-list li a {
  display: block;
  padding: 16px;
  color: #323232;
  font-size: 20px;
  text-align: center;
}

.menudown {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  height: 50px;
  background: #ccc;
  line-height: 50px;
  font-size: 16px;
}

.menudown div.row div+div {
  border-left: 1px solid #fff;
}

@-webkit-keyframes ReturnToNormal {
  0% {
    -webkit-transform: scale(0.1, 1);
    -ms-transform: scale(0.1, 1);
    transform: translate:scale(0.1, 1);
  }

  100% {
    -webkit-transform: scaleX(1, 1);
    -ms-transform: scale(1, 1);
    transform: translate:scaleX(1, 1);
  }
}

@keyframes ReturnToNormal {
  0% {
    -webkit-transform: scale(0.1, 1);
    -ms-transform: scale(0.1, 1);
    transform: translate:scale(0.1, 1);
  }

  100% {
    -webkit-transform: scaleX(1, 1);
    -ms-transform: scale(1, 1);
    transform: translate:scaleX(1, 1);
  }
}

.menu-leval {
  position: relative;
  padding: 0 20px 20px;
  display: none;
  background-color: #eee;
}

.menu-leval li a {
  display: block;
  text-align: center;
  font-size: 16px;
  padding: 14px;
}

.second-level-nav {
  position: absolute;
  top: 100px;
  left: 50%;
  width: 135px;
  margin-left: -67.5px;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  -webkit-transition: all .35s ease-in-out .20s;
  -moz-transition: all .35s ease-in-out .20s;
  -ms-transition: all .35s ease-in-out .20s;
  -o-transition: all .35s ease-in-out .20s;
  transition: all .35s ease-in-out .20s;
}

.second-level-nav>div {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 8px 10px 14px;
  border-radius: 6px;
}

.second-level-nav>div>a {
  text-align: center;
  display: block;
  font-size: 15px;
  color: #454545;
  padding: 8px 0 4px;
  position: relative;
}

.second-level-nav>div>a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 1px;
  background-color: #055eae;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

.second-level-nav>div>a:hover:after {
  width: 100%;
  left: 0;
}

/*********尾部************/
footer {
  background-color: #1a1a1a;
  padding: 10px 0;
  line-height: 2;
}

footer .f-copyright {
  color: #bbbbbb;
}

/*****主体开始*******/
.banner {
  position: relative;
  overflow: hidden;
}

.banner .bannerfix>li {
  height: 410px;
  line-height: 0;
  opacity: 0;
  transition: opacity 1000ms linear;
  -webkit-transition: opacity 1000ms linear;
  float: left;
  overflow: hidden;
}

.banner .bannerfix>li .bimg {
  line-height: 0;
  width: auto;
  max-width: inherit;
  position: relative;
  left: 50%;
  margin-left: -960px;
  transition: transform 5s ease;
  -webkit-transition: transform 5s ease;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}

.banner .bannerfix>li.imgIn {
  opacity: 1;
  z-index: 10;
  display: block;
}

.banner .bannerfix>li.imgIn .bimg {
  transform: matrix(1, 0, 0, 1, 0, 0);
  -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
}

.banner .bannerfix>li.imgIn .bbox h1 {
  opacity: 1;
  visibility: visible;
  top: 0;
  transition: 420ms 120ms;
}

.banner .bannerfix>li.imgIn .bbox p {
  opacity: 1;
  visibility: visible;
  top: 0;
  transition: 420ms 460ms;
}

.banner .flex-direction-nav {
  display: none;
}

.banner .flex-direction-nav .flex-nav-prev,
.banner .flex-direction-nav .flex-nav-next {
  position: absolute;
  top: calc(50% + 40px);
  width: 30px;
  height: 55px;
  background-image: url(../images/banner-prev.png);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 9;
  cursor: pointer;
  margin-top: -27.5px;
}

.banner .flex-direction-nav .flex-nav-prev a,
.banner .flex-direction-nav .flex-nav-next a {
  display: block;
  width: 100%;
  height: 100%;
}

.banner .flex-direction-nav .flex-nav-prev {
  left: 0;
}

.banner .flex-direction-nav .flex-nav-next {
  right: 0;
}

.banner .flex-direction-nav .flex-nav-prev:hover,
.banner .flex-direction-nav .flex-nav-next:hover {
  background-image: url(../images/banner-next.png);
}

.banner .flex-direction-nav .flex-nav-next {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.banner .flex-direction-nav .flex-nav-next:hover {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

.banner .flex-direction-nav .flex-nav-prev:hover {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.h-video-swiper {
  position: relative;
}

.banner .flex-control-nav,
.h-video-swiper .flex-control-nav {
  width: 100%;
  height: 20px;
  position: absolute;
  left: 0;
  bottom: 10px;
  text-align: center;
  z-index: 20;
}

.banner .flex-control-nav li,
.h-video-swiper .flex-control-nav li {
  display: inline-block;
  position: relative;
  margin-right: 22px;
  width: 20px;
  height: 6px;
}

.h-video-swiper .flex-control-nav li {
  width: 10px;
  height: 10px;
  margin-right: 6px;
}

.banner .flex-control-nav li:last-child,
.h-video-swiper .flex-control-nav li:last-child {
  margin-right: 0;
}

.banner .flex-control-nav li span,
.h-video-swiper .flex-control-nav li span {
  display: block;
  text-indent: 999px;
  overflow: hidden;
  width: 20px;
  height: 6px;
  border-radius: 20px;
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  transition: 320ms;
  left: 0;
  bottom: 0;
}

.h-video-swiper .flex-control-nav li span {
  width: 10px;
  height: 10px;
}

.banner .flex-control-nav li a.flex-active span,
.h-video-swiper .flex-control-nav li a.flex-active span {
  bottom: 0;
  background: #fff;
}

.bamnline {
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 20;
  position: relative;
  max-width: 450px;
  margin: 15px auto;
}

.bamnline span {
  display: block;
  width: 0;
  height: 1px;
  background: #ffffff;
}

.bamnline.load span {
  width: 100%;
  transition: 5.8s 0s linear;
  -webkit-transition: 5.8s 0s linear;
  -moz-transition: 5.8s 0s linear;
}

.bbox {
  position: absolute;
  left: 0;
  top: 50%;
  top: calc(50% + 40px);
  width: 100%;
  padding: 0 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.bbox .bbox-bg {
  width: 100%;
  padding: 15px 0;
  position: relative;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}

.bbox h1 {
  line-height: 1;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  position: relative;
  top: 30px;
}

.bbox p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.8;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  position: relative;
  top: 30px;
}

/**/
.h-con {
  padding-bottom: 35px;
}

.h-title {
  border-bottom: 1px solid #d3d3d3;
  padding: 30px 0 8px;
  margin-bottom: 15px;
}

.h-title-box {
  font-weight: bold;
  font-size: 18px;
  position: relative;
}

.h-title-box:after {
  content: '';
  position: absolute;
  bottom: -9px;
  width: 115%;
  height: 1px;
  background-color: #20418b;
}

.h-title-box span {
  font-weight: 300;
  font-size: 15px;
  color: #666666;
  text-transform: uppercase;
}

.h-title .more a {
  color: #666666;
}

.h-news {
  width: 65%;
  float: left;
}

.h-news .con {}

.h-news .con .img {
  width: 39.10%;
  float: left;
}

.h-news .con .img img,
.h-video .con img {
  width: 100%;
}

.h-news .con .img a {
  display: block;
  position: relative;
}

.h-news .con .img span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 5px 10px;
}

@media (min-width: 991px) {
  .h-title .more a:hover {
    color: #003883;
  }

  .h-news .con .img a,
  .honor-text ul.row li .img,
  .news-box li .con .img {
    overflow: hidden;
  }

  .h-news .con .img img,
  .h-engineering ul li .img>img,
  .honor-text ul.row li .img img,
  .news-box li .con .img img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: transform .50s;
    -moz-transition: transform .50s;
    -ms-transition: transform .50s;
    -o-transition: transform .50s;
    transition: transform .50s;
  }

  .h-news .con .img a:hover img,
  .h-engineering ul li .img:hover img,
  .honor-text ul.row li .img:hover img,
  .news-box li:hover .con .img img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }

  .business-text .panel-group .panel-body .more:hover {
    background-color: #20418b;
  }
}

.h-news .con .text {
  width: 58.97%;
  float: right;
  padding: 10px 0;
}

.h-news .con .text dl {
  padding: 7px 0;
}

.h-news .con .text dl dd {
  font-size: 16px;
}

.h-news .con .text dl dd a {
  display: block;
  width: 72%;
  padding-left: 22px;
  position: relative;
  word-break: keep-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.h-news .con .text dl dd a:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  height: 12px;
  width: 12px;
  margin-top: -6px;
  border: 1px solid #bebebe;
  border-radius: 100%;
}

.h-news .con .text dl:hover,
.h-news .con .text dl:hover dd a {
  color: #20418b;
}

.h-video {
  width: 33%;
  float: right;
}

.h-engineering {
  background-color: #eeeeee;
  padding: 30px 0 0 0;
}

.h-engineering ul li {
  margin-bottom: 30px;
}

.h-engineering ul li .img {
  position: relative;
  overflow: hidden;
}

.h-engineering ul li .img .text {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 22px;
  text-align: center;
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .35s ease-in-out;
  -ms-transition: all .35s ease-in-out;
  -o-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
}

.h-engineering ul li .img .text p {
  position: relative;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.h-engineering ul li .img:hover .text {
  top: 0;
}

/*/*/
#banner {
  position: relative;
}

.banner-fixed>div {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 410px;
  overflow: hidden;
}

.banner-fixed>div img {
  max-width: inherit;
  min-height: 100%;
  position: relative;
  left: 50%;
  margin-left: -960px;
}

.side-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.side-nav .side-title {
  color: #fff;
  padding: 22px 0 22px 50px;
  background: url(../images/side-title01.png) no-repeat left center;
}

.side-nav ul.side-text {}

.side-nav ul.side-text>li {
  font-size: 16px;
  position: relative;
  margin: 0 1px;
  float: left;
}

.side-nav ul.side-text>li>a {
  color: #ffffff;
  display: block;
  position: relative;
  text-align: center;
  padding: 24px 30px;
}

.side-nav ul.side-text>li>a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -ms-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
  background: url(../images/side-nav-li-bg.png) no-repeat center;
  opacity: 0;
  visibility: hidden;
}

.side-nav ul.side-text>li>a:hover,
.side-nav ul.side-text>li.on>a {
  background-color: #20418b;
}

.side-nav ul.side-text>li>a:hover:after,
.side-nav ul.side-text>li.on>a:after {
  opacity: 1;
  visibility: visible;
  bottom: 6px;
}

/*主体*/
.w-main {
  padding: 40px 0 60px;
}

.breadcrumb {
  padding: 0;
  margin: 0;
  color: #333333;
  background-color: transparent;
  background-image: url(../images/breadcrumb-icon.png);
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 20px;
}

.breadcrumb>li a {
  color: #333333;
}

.breadcrumb>li+li:before {
  content: '>';
  color: #333333;
}

.breadcrumb>.active {
  color: #333333;
}

.w-title {
  padding: 30px 0 40px;
}

.w-title h2 {
  font-size: 32px;
  color: #000;
}

.w-title .w-nav li {
  margin-right: 27px;
  float: left;
}

.w-title .w-nav li:last-child {
  margin-right: 0;
}

.w-title .w-nav li a {
  color: #333333;
  font-size: 16px;
  padding: 8px 22px;
  display: block;
  border: 1px solid #20418b;
}

.w-title .w-nav li.active a {
  background-color: #20418b;
  border-color: #20418b;
  color: #ffffff;
}

.about-text {
  line-height: 1.8;
  font-size: 15px;
  color: #454545;
}

.qualifications-text {
  position: relative;
  /*padding-top: 225px;*/
}

.qualifications-text ul li {
  height: 160px;
  width: 160px;
  background: url(../images/qualifications01.png) center;
  font-size: 17px;
  font-weight: bold;
  color: #252525;
  text-align: center;
  display: table;
  position: relative;
  margin: 0 6% 30px;
}

.qualifications-text ul li div {
  display: table-cell;
  vertical-align: middle;
  line-height: 1.6;
}

/*.qualifications-text ul li.ab01 {
  bottom: 30px;
  left: 7.5%;
}
.qualifications-text ul li.ab02 {
  bottom: 180px;
  left: 15%;
}
.qualifications-text ul li.ab03 {
  bottom: 300px;
  left: 27.5%;
}
.qualifications-text ul li.ab04 {
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
.qualifications-text ul li.ab05 {
  bottom: 300px;
  right: 27.5%;
}
.qualifications-text ul li.ab06 {
  bottom: 180px;
  right: 15%;
}
.qualifications-text ul li.ab07 {
  bottom: 30px;
  right: 7.5%;
}*/

.qualifications-map {
  border-bottom: 2px solid #4d67a2;
  text-align: center;
  height: 300px;
  overflow: hidden;
  display: none;
}

.qualifications-map img {
  -webkit-animation: spin 30s linear infinite;
  -moz-animation: spin 30s linear infinite;
  -ms-animation: spin 30s linear infinite;
  -o-animation: spin 30s linear infinite;
  animation: spin 30s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.honor-text {}

.honor-text ul.row {
  padding-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.honor-text ul.row li {
  margin-bottom: 30px;
}

.honor-text ul.row li .img {
  border: 4px solid #dddddd;
}

.honor-text ul.row li .img img {
  width: 100%;
}

.pagination {
  margin: 0 auto;
}

.pagination li a,
.pagination li span {
  margin: 0 7px;
  border-radius: 0 !important;
  background-color: transparent;
  color: #333333;
  border-color: #999999;
}

.pagination li.active a,
.pagination li.active span {
  color: #fff;
  border-color: #1a6bbc !important;
  background-color: #1a6bbc !important;
}

.message-text {
  font-size: 16px;
  line-height: 1.8;
}

.message-text h3 {
  color: #20418b;
}

.vision-text {}

.vision-text ul li {
  font-size: 16px;
  margin-bottom: 30px;
}

.vision-text ul li .box {
  background-color: #f8f8f8;
  text-align: center;
  padding: 30px 0;
  color: #666666;
}

.vision-text ul li h1 {
  color: #20418b;
  font-size: 50px;
  padding-bottom: 15px;
}

.vision-text ul li h1 .h4 {
  color: #333333;
  display: inline-block;
  background-color: #f8f8f8;
  margin-left: -30px;
}

.history-swiper {
  margin: 0 50px;
}

.history-text {
  background-color: #f5f5f5;
  background-image: url(../images/history-map.jpg);
  background-position: center;
  background-repeat: no-repeat;
  padding: 124px 0;
}

.history-text .box {
  background-color: #ffffff;
  height: 128px;
  width: 300px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -150px;
}

.history-text li:nth-child(2n) .box {
  bottom: initial;
  top: 0;
}

.history-text li:nth-child(2n) .box:after {
  top: initial;
  bottom: -11px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.history-text li:nth-child(2n) .box h3 {
  bottom: -86px;
}

.history-text li:nth-child(2n) .box .p {
  top: -42px;
}

.history-year {
  height: 350px;
  width: 100%;
  position: relative;
}

.history-year:after {
  content: '';
  position: absolute;
  height: 12px;
  width: 12px;
  border-radius: 100%;
  background-color: #20418b;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  z-index: 9;
}

.history-year:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  background-color: #dbdbdb;
}

.history-text .box:after {
  content: '';
  position: absolute;
  top: -11px;
  left: 0;
  width: 100%;
  height: 11px;
  background: url(../images/history-icon.png) no-repeat center;
}

.history-text .box h3 {
  background-color: #20418b;
  font-size: 20px;
  color: #ffffff;
  height: 42px;
  line-height: 42px;
  text-align: center;
  position: relative;
}

.history-text .box .p {
  height: 86px;
  padding: 20px 20px 20px 45px;
  position: relative;
  overflow-y: auto;
}

.history-text .box .p:after {
  content: '';
  position: absolute;
  left: 20px;
  top: 29px;
  width: 11px;
  height: 2px;
  background-color: #666666;
}

.history-relative {
  position: relative;
}

.history-text .swiper-button-prev,
.history-text .swiper-button-next {
  height: 34px;
  width: 34px;
  background-size: 34px 34px;
  margin-top: -17px;
}

.history-text .swiper-button-prev {
  background-image: url(../images/history-prev.png);
  left: 0;
}

.history-text .swiper-button-next {
  background-image: url(../images/history-next.png);
  right: 0;
}

/*业务*/
.business-text .panel-group {
  margin-bottom: 45px;
}

.business-text .panel-group .panel {
  box-shadow: none;
  border: none;
}

.business-text .panel-group .panel-heading {
  padding: 0;
  border: none;
  border-radius: 0;
}

.business-text .panel-group .panel-body {
  height: auto;
  padding: 25px 40px;
  border: none !important;
  color: #333;
  line-height: 1.8;
  font-size: 16px;
}

.business-text .panel-group .panel-body .more {
  width: 130px;
  padding: 10px 0;
  color: #fff;
  display: block;
  text-align: center;
  background-color: #4d67a2;
  margin-top: 25px;
}

.business-text .panel-group .panel-heading a {
  color: #ffffff;
  display: block;
  font-size: 18px;
  background: #20418b;
  position: relative;
}

.business-text .panel-group .panel-heading a div.problem-title {
  padding: 20px 50px;
  margin-right: 107px;
  position: relative;
}

.business-text .problem-hover {
  width: 107px;
  float: right;
  position: absolute;
  top: 50%;
  right: 0;
  padding: 32.5px 0;
  overflow: hidden;
  background-image: url(../images/business-icon02.png);
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.business-text .panel-group .panel-heading a.collapsed .problem-hover {
  background-image: url(../images/business-icon.png);
}

.business-text .panel-group .panel-heading a.collapsed {
  background: #eaeef1;
  color: #20418b;
}

/*企业文化*/
.culture-text .row {
  padding-bottom: 100px;
}

.culture-text li {}

.culture-text li .con {
  border-bottom: 1px solid #dddddd;
  padding: 80px 0 25px;
  height: 185px;
}

.culture-text li .con .img {
  width: 16%;
  text-align: center;
}

.culture-text li .con .text {
  width: 82%;
}

.culture-text li .con .text h3 {
  padding-bottom: 20px;
}

.culture-text li .con .text p {
  line-height: 1.8;
  color: #666;
  font-size: 18px;
}

.worker-con {
  padding-bottom: 60px;
}

.worker-con li {
  background-color: #f5f5f5;
}

.worker-con li .col-md-6 {
  padding: 0;
}

.worker-con li .img img {
  width: 100%;
}

.worker-con li .text {
  padding: 50px 35px;
  font-size: 16px;
  line-height: 1.6;
}

.worker-con li .text h3 {
  color: #20418b;
  border-left: 5px solid #20418b;
  padding-left: 10px;
  line-height: 1;
  margin-bottom: 20px;
}

/*新闻资讯*/
.news-box {
  padding-bottom: 45px;
}

.news-box li {
  border-bottom: 1px solid #cccccc;
  padding: 35px 40px;
  position: relative;
}

.news-box li:before,
.news-box li:after {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  bottom: -1px;
  left: 0;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
}

.news-box li:before {
  border-top: 3px solid #1a6bbc;
  border-bottom: 3px solid #1a6bbc;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}

.news-box li:after {
  border-right: 3px solid #1a6bbc;
  border-left: 3px solid #1a6bbc;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
}

.news-box li .con {
  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-justify-content: space-between;
  -ms-flex-pack: distribute;
  justify-content: space-between;
  flex-flow: row wrap;
}

.news-box li .con .img {
  width: 23.3%;
}

.news-box li .con .img img {
  width: 100%;
}

.news-box li .con .text {
  width: 62%;
}

.news-box li .con .text h3 {
  padding-bottom: 20px;
}

.news-box li .con .text h3 a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  color: #161616;
}

.news-box li .con .text p {
  color: #666666;
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 15px;
  overflow: hidden;
}

.news-box li .con .text .browse {
  color: #999999;
}

.news-box li .con .time {
  width: 80px;
  text-align: center;
  color: #777777;
  font-size: 18px;
}

.news-box li .con .time span {
  font-size: 60px;
  font-weight: bold;
  line-height: 1;
}

.news-box li.no-img .con .text {
  width: 85.25%;
}

.news-details {
  padding: 15px 0;
}

.news-details-text {
  width: 67.25%;
  float: left;
}

.news-details-text .title {
  font-size: 26px;
  padding-bottom: 15px;
  color: #20418b;
}

.news-details-text .time {
  color: #999999;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid #c6c6c6;
}

.news-details-text .con {
  line-height: 1.8;
  color: #222222;
  font-size: 16px;
}

.news-details-page {
  width: 25.50%;
  float: right;
}

.news-details-share {
  padding: 12px 0 34px 12px;
}

.news-details-share .share {}

.news-details-share .return {
  background: url(../images/inspiration-more.png) no-repeat left center;
  padding-left: 30px;
}

.news-details-share .return a {
  color: #222222;
}

.list-page {
  border: 10px solid #c6c6c6;
  padding: 30px 20px;
}

.list-page li+li {
  border-top: 1px solid #ddd;
  padding-top: 18px;
  margin-top: 18px;
}

.list-page li a {
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  color: #333333;
}

.list-page li span {
  font-size: 12px;
  color: #999999;
  display: block;
  padding: 5px 0;
}

.list-page li p {
  font-size: 16px;
  line-height: 1.6;
  color: #454545;
}

.list-page li a:hover {
  color: #20418b;
}

/*工程案例*/
.case-box {
  padding-bottom: 40px;
}

.case-box li {
  margin-bottom: 20px;
}

.case-box li img {
  width: 100%;
  display: block;
}

.case-box li p {
  font-size: 20px;
  padding-top: 20px;
  word-break: keep-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.case-box li a:hover p {
  color: #20418b;
}

.case-details .news-details-text .title {
  padding-bottom: 25px;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 25px;
}

/*人才招聘*/
.recruit-text {}

.recruitment-main {
  float: left;
  width: 70%;
}

.recruitment-main .panel-group {
  margin-bottom: 50px;
}

.recruitment-main .panel-group .panel {
  box-shadow: none;
  border: none;
}

.recruitment-main .panel-group .panel-heading {
  padding: 0;
  border: none;
  border-radius: 0;
}

.recruitment-main .panel-group .panel-body {
  height: auto;
  padding: 30px 40px;
  border: none !important;
  color: #333333;
  line-height: 1.8;
  font-size: 15px;
}

.recruitment-main .panel-group .panel-body h4 {
  padding-bottom: 15px;
}

.recruitment-main .panel-group .panel-body .year {
  color: #666666;
}

.recruitment-main .panel-group .panel-body p .strong {
  color: #333;
}

.recruitment-main .panel-group .panel-heading a {
  color: #333333;
  display: block;
  font-size: 16px;
  background: #dfdfdf;
}

.recruitment-main .panel-group .panel-heading a div.problem-title {
  padding: 16px 15px 16px 28px;
  margin-right: 72px;
  position: relative;
}

.recruitment-main .problem-hover {
  width: 72px;
  float: right;
  position: relative;
  padding: 27px 0;
  overflow: hidden;
  top: 1px;
}

.recruitment-main .problem-hover:after,
.recruitment-main .problem-hover:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #20418b;
  -webkit-transition: all .5s linear;
  -moz-transition: all .5s linear;
  -ms-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
}

.recruitment-main .problem-hover:after {
  width: 3px;
  height: 23px;
  top: -100%;
  margin-top: -11.5px;
  margin-left: -1.5px;
}

.recruitment-main .problem-hover:before {
  height: 3px;
  width: 23px;
  margin-left: -11.5px;
  margin-top: -1.5px;
}

.recruitment-main .panel-group .panel-heading a.collapsed .problem-hover:after {
  top: 50%;
}

.recruitment-main .panel-group .panel-heading a.collapsed {
  background: #e9e9e9;
  color: #333333;
}

.recruitment-main .panel-group .panel-heading a.collapsed div.problem-title:after {
  background: #043e80;
}

.recruitment-main .panel-group .panel-heading a.collapsed .problem-hover:after,
.recruitment-main .panel-group .panel-heading a.collapsed .problem-hover:before {
  background-color: #a2a2a2;
}

.recruitment-main .recruitment-more a {
  color: #ffffff;
  background-color: #627aae;
  font-size: 16px;
  max-width: 140px;
  text-align: center;
  display: block;
  padding: 7px 0;
  margin-top: 20px;
}

.recruitment-more a {
  color: #ffffff;
  background-color: #005dad;
  font-size: 16px;
  max-width: 100px;
  text-align: center;
  display: block;
  padding: 5px 0;
  margin-top: 20px;
}

.recruitment-side {
  float: right;
  width: 25.50%;
  border: 10px solid #dedede;
  padding: 30px;
}

.recruitment-side h4 {
  padding-bottom: 16px;
  font-size: 20px;
}

.recruitment-side .text {
  color: #666666;
  padding-top: 12px;
  line-height: 1.8;
}

/*联系我们*/
.message-con {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.message-con .form-control {
  width: 100%;
  border: none;
  background-color: #ffffff;
  height: 50px;
  line-height: 50px;
  border-radius: 0;
  font-size: 16px;
  color: #333;
  box-shadow: none;
  padding: 0 12px;
}

.message-con .form-group {
  position: relative;
}

.message-con .control-label {
  font-weight: 300;
  font-size: 16px;
  color: #333333;
  height: 48px;
  line-height: 48px;
  position: absolute;
  top: 1px;
  left: 1px;
  padding-left: 16px;
  background-color: #ffffff;
  padding-top: 0;
}

.message-con textarea.form-control {
  height: auto;
}

.radio-button {
  font-size: 0;
  text-align: center;
  padding-top: 18px;
}

.radio-button button {
  border-radius: 0;
  border: none;
  padding: 9px 34px;
  font-size: 16px;
}

.radio-button button+button {
  margin-left: 30px;
}

.btn-primary {
  background-color: #07608f;
}

.btn-success {
  background-color: #909090;
}

.contact {
  padding: 80px 0 60px;
}

.contact h2 {
  font-size: 28px;
  text-align: center;
  padding-bottom: 60px;
}

.contact-us-text {
  text-align: center;
}

.contact-us-text li .img {
  height: 100px;
  width: 100px;
  background-image: url(../images/icon01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
}

.contact-us-text li .img02 {
  background-image: url(../images/icon02.jpg);
}

.contact-us-text li .img03 {
  background-image: url(../images/icon03.png);
}

.contact-us-text li:hover .img01 {
  background-image: url(../images/icon01_.png);
}

.contact-us-text li:hover .img02 {
  background-image: url(../images/icon02_.png);
}

.contact-us-text li:hover .img03 {
  background-image: url(../images/icon03_.png);
}

.contact-us-text li h4 {
  color: #333;
  padding: 20px 0 10px;
  position: relative;
}

.contact-us-text li p {
  color: #666666;
  font-size: 18px;
}

#map {
  border-top: 2px solid #508ec6;
  height: 430px;
  background: url(../images/map.jpg) no-repeat center;
}

#map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/*渐变效果样式*/
.animation-img {
  position: relative;
  overflow: hidden;
  display: block;
}

.animation-img img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.animation-img:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.video_con video {
  width: 100%;
  display: block;
}