@font-face {
  font-family: 'pt_serifitalic';
  src: url('../fonts/ptf56f-webfont.eot');
  src: url('../fonts/ptf56f-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/ptf56f-webfont.woff2') format('woff2'), url('../fonts/ptf56f-webfont.woff') format('woff'), url('../fonts/ptf56f-webfont.ttf') format('truetype'), url('../fonts/ptf56f-webfont.svg#pt_serifitalic') format('svg');
  font-weight: normal;
  font-style: normal;
}
/*常用类*/
html,
body {
  height: 100%;
  width: 100%;
}
html {
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: Arial, helvetica, sans-serif;
  font-size: 14px;
}
.block-show,
.block-show img {
  display: block;
}
.list-inline {
  *display: inline;
  *zoom: 1;
}
.list-inline > * {
  *float: left;
}
/*主站菜单*/
.siteTop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 25px;
  min-height: 60px;
  z-index: 99;
}
.siteTop nav {
  padding-top: 15px;
}
.siteTop nav li {
  padding-right: 12px;
  padding-left: 12px;
}
.siteTop nav li.active a {
  text-decoration: none;
  color: #ff9000;
  border-color: #ff9000;
}
.siteTop nav a {
  color: #fff;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
}
.siteTop nav a:hover {
  text-decoration: none;
  color: #ff9000;
  border-color: #ff9000;
}
.icon {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
}
.icon.icon-more {
  width: 10px;
  height: 10px;
  background-image: url(../images/icon_dobule_arrow_right.png);
}
.icon.icon-growth,
.icon.icon-payment,
.icon.icon-platform,
.icon.icon-group,
.icon.icon-company {
  width: 86px;
  height: 86px;
  border-radius: 50%;
}
.icon.icon-growth {
  background-image: url(../images/icon_growth.png);
}
.icon.icon-payment {
  background-image: url(../images/icon_payment.png);
}
.icon.icon-platform {
  background-image: url(../images/icon_platform.png);
}
.icon.icon-group {
  background-image: url(../images/icon_group.png);
}
.icon.icon-company {
  background-image: url(../images/icon_company.png);
}
.logo {
  width: 206px;
  height: 59px;
  background: url(../images/logo.png) no-repeat center center;
  background-image: -webkit-image-set(url(../images/logo.png) 1x, url(../images/logo_retina.png) 2x);
}
/*移动菜单开关*/
#menuToggle {
  cursor: pointer;
  float: right;
  margin-top: 20px;
}
#menuToggle span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  margin-top: 8px;
}
#menuToggle span:first-child {
  margin-top: 0;
}
#banner,
#slides,
#siteHeader {
  height: 100%;
}
#parallaxContainer {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
/*banner*/
.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#slides .slides {
  height: 100%;
  background: url(../images/banner.jpg) no-repeat center center;
  background-size: cover;
}
#slides .slides h1 {
  font-size: 60px;
  color: #fff;
  text-align: center;
  margin-bottom: 55px;
  font-family: 'Microsoft YaHei';
  font-weight: normal;
}
#slides .slides h2 {
  font-size: 30px;
  color: #fff;
  font-family: 'pt_serifitalic';
  word-spacing: 5px;
}
#slides .slides h2 span {
  display: inline-block;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}
#slides .slides h2 span:after,
#slides .slides h2 span:before {
  display: block;
  content: '';
  width: 100%;
  height: 5px;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  position: absolute;
  left: 0;
}
#slides .slides h2 span:after {
  top: 0;
}
#slides .slides h2 span:before {
  bottom: 0;
}
/*移动菜单遮罩*/
#menuShadow {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: none;
}
/*移动菜单*/
#siteMenu {
  position: fixed;
  right: -150px;
  top: 0;
  bottom: 0;
  width: 150px;
  background-color: #333;
  line-height: 36px;
  z-index: 999;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
#siteMenu.open {
  right: 0;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
#siteMenu ul {
  margin: 0;
}
#siteMenu li {
  display: block;
  padding: 0;
  margin: 0;
}
#siteMenu li.active a {
  background-color: #ff9000;
  color: #fff;
}
#siteMenu li a {
  display: block;
  padding-left: 10px;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
#siteMenu li a:hover {
  background-color: #ff9000;
  color: #fff;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
/*页面标题*/
.page-title {
  text-transform: uppercase;
  font-size: 36px;
  color: #333333;
  font-family: 'pt_serifitalic';
  text-align: center;
  position: relative;
  margin: 0 0 10px;
}
.page-title:after,
.page-title:before {
  display: block;
  content: '';
  height: 5px;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  width: 33%;
}
.page-title:after {
  left: 0;
}
.page-title:before {
  right: 0;
}
.more {
  font-style: 14px;
  color: #ff9000;
  text-decoration: none;
}
.more:hover {
  color: #ff9000;
}
.main {
  background-color: #fff;
  position: relative;
}
.main > .items {
  padding-top: 115px;
  padding-bottom: 115px;
}
.our-advantages {
  line-height: 30px;
  overflow: hidden;
}
.our-advantages h3 {
  margin: 0 0 15px;
  -webkit-flex-basis: 100px;
      -ms-flex-preferred-size: 100px;
          flex-basis: 100px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.our-advantages .list p {
  min-height: 2em;
  font-size: 24px;
}
.our-advantages .list .flex-container {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.our-advantages .list .items {
  margin-top: 30px;
}
.our-advantages .list .items .icon {
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.our-giants {
  background: url(../images/small_banner.jpg) no-repeat center center;
  background-size: cover;
  color: #fff;
}
.our-giants .container {
  color: #ff9000;
  line-height: 24px;
}
.our-giants .container h3 {
  font-size: 30px;
  text-transform: uppercase;
  color: #ff9000;
  font-family: 'pt_serifitalic';
  margin-top: 0;
}
.our-giants .container p {
  color: #fff;
}
.our-giants .page-title {
  color: #fff;
}
.our-giants .page-title:after,
.our-giants .page-title:before {
  width: 32%;
}
.our-giants .lineHover {
  height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: 60px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.our-giants .lineHover:hover {
  border-color: #ff9000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.our-giants .lineHover:hover .mouse-out h3 {
  -webkit-transform: translateY(-200px);
      -ms-transform: translateY(-200px);
          transform: translateY(-200px);
  opacity: 0;
  filter: alpha(opacity: 0 );
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.our-giants .lineHover:hover .mouse-out p {
  -webkit-transform: translateY(-200px);
      -ms-transform: translateY(-200px);
          transform: translateY(-200px);
  opacity: 0;
  filter: alpha(opacity: 0 );
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.our-giants .lineHover:hover .mouse-in h3 {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  filter: alpha(opacity: 100 );
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.our-giants .lineHover:hover .mouse-in p {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  filter: alpha(opacity: 100 );
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.our-giants .lineHover .mouse-out h3 {
  padding-top: 115px;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  filter: alpha(opacity: 100 );
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.our-giants .lineHover .mouse-out p {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  filter: alpha(opacity: 100 );
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.our-giants .lineHover .mouse-in {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.our-giants .lineHover .mouse-in h3 {
  -webkit-transform: translateY(300px);
      -ms-transform: translateY(300px);
          transform: translateY(300px);
  opacity: 0;
  filter: alpha(opacity: 0 );
  padding-top: 115px;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.our-giants .lineHover .mouse-in p {
  -webkit-transform: translateY(300px);
      -ms-transform: translateY(300px);
          transform: translateY(300px);
  opacity: 0;
  filter: alpha(opacity: 0 );
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #ff9000;
}
.our-business .list-items {
  margin-top: 45px;
  padding: 10px;
  min-height: 520px;
  position: relative;
  cursor: pointer;
}
.our-business .list-items:after,
.our-business .list-items:before {
  display: block;
  content: '';
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.our-business .list-items:after {
  width: 0;
  height: 1px;
  background-color: #ff9000;
  left: 0;
  top: 0;
}
.our-business .list-items:before {
  width: 1px;
  height: 0;
  background-color: #ff9000;
  left: 0;
  top: 0;
}
.our-business .list-items h4 {
  font-size: 16px;
  color: #333333;
  margin-top: 25px;
  margin-bottom: 15px;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.our-business .list-items img {
  margin: 0 auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.our-business .list-items ul:after,
.our-business .list-items ul:before {
  display: block;
  content: '';
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.our-business .list-items ul:after {
  width: 0;
  height: 1px;
  background-color: #ff9000;
  right: 0;
  bottom: 0;
}
.our-business .list-items ul:before {
  width: 1px;
  height: 0;
  background-color: #ff9000;
  right: 0;
  bottom: 0;
}
.our-business .list-items:hover h4 {
  color: #ff9000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.our-business .list-items:hover img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.our-business .list-items:hover:after,
.our-business .list-items:hover:before {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.our-business .list-items:hover:after {
  width: 101%;
}
.our-business .list-items:hover:before {
  height: 101%;
}
.our-business .list-items:hover ul:after,
.our-business .list-items:hover ul:before {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.our-business .list-items:hover ul:after {
  width: 101%;
}
.our-business .list-items:hover ul:before {
  height: 101%;
}
.siteFooter {
  background-color: #1a1a1a;
  padding-top: 30px;
  padding-bottom: 30px;
  line-height: 14px;
  color: #999999;
  font-size: 12px;
  width: 100%;
  clear: both;
}
.siteFooter ul {
  margin: 0;
}
.siteFooter a {
  color: #999999;
}
.siteFooter a:hover {
  color: #ff9000;
  text-decoration: none;
}
/*滚动动画*/
.page-title,
.sub-title {
  opacity: 0;
  filter: alpha(opacity: 0 );
  -webkit-transform: translateY(200px);
      -ms-transform: translateY(200px);
          transform: translateY(200px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.main .animationShow {
  opacity: 0;
  filter: alpha(opacity: 0 );
  -webkit-transform: translateY(300px);
      -ms-transform: translateY(300px);
          transform: translateY(300px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.active .page-title,
.active .sub-title {
  opacity: 1;
  filter: alpha(opacity: 100 );
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.active .page-title {
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.active .sub-title {
  -webkit-transition: 0.9s;
  transition: 0.9s;
}
.active .animationShow {
  opacity: 1;
  filter: alpha(opacity: 100 );
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.active.our-advantages .items:nth-child(1) .animationShow,
.active.our-giants .items:nth-child(1) .animationShow {
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.active.our-advantages .items:nth-child(2) .animationShow,
.active.our-giants .items:nth-child(2) .animationShow {
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.active.our-advantages .items:nth-child(3) .animationShow,
.active.our-giants .items:nth-child(3) .animationShow {
  -webkit-transition: 0.9s;
  transition: 0.9s;
}
.active.our-advantages .items:nth-child(4) .animationShow,
.active.our-giants .items:nth-child(4) .animationShow {
  -webkit-transition: 1.1s;
  transition: 1.1s;
}
.active.our-advantages .items:nth-child(5) .animationShow,
.active.our-giants .items:nth-child(5) .animationShow {
  -webkit-transition: 1.2s;
  transition: 1.2s;
}
.our-business .col-sm-6:nth-child(1) .animationShow {
  -webkit-transition: 1s;
  transition: 1s;
}
.our-business .col-sm-6:nth-child(2) .animationShow {
  -webkit-transition: 1.2s;
  transition: 1.2s;
}
.our-business .col-sm-6:nth-child(3) .animationShow {
  -webkit-transition: 1.4s;
  transition: 1.4s;
}
.our-business .col-sm-6:nth-child(4) .animationShow {
  -webkit-transition: 1.6s;
  transition: 1.6s;
}
/*兼容低版本*/
.no-flexbox #parallaxContainer .flex-container > div {
  padding-top: 200px;
}
.no-flexbox .container {
  width: 1000px;
}
.no-flexbox .lineHover {
  border: 1px solid #ccc;
  min-width: 300px;
}
.no-flexbox .lineHover .mouse-in {
  *display: none;
}
.no-flexbox .lineHover:hover .mouse-in {
  *display: block;
}
.no-flexbox .lineHover:hover .mouse-out {
  *display: none;
}
.no-flexbox .row {
  *float: left;
}
.no-flexbox .our-business .row > * {
  width: 46%;
}
.no-flexbox .our-advantages .list .flex-container {
  display: table;
  width: 100%;
  clear: both;
}
.no-flexbox .our-advantages .list .flex-container > * {
  display: table-cell;
  *float: left;
}
.no-flexbox .list-unstyled {
  *padding: 0;
  *margin: 0;
}
@media (max-width: 767px) {
  /*xs*/
  #slides .slides h1 {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 30px;
  }
  #slides .slides h2 {
    font-size: 13px;
  }
  .main > .itmes {
    padding-bottom: 80px;
    padding-top: 80px;
  }
  .main .our-advantages {
    padding-bottom: 10px;
  }
  .main .our-advantages .list {
    padding-top: 40px;
  }
  .main .our-advantages .list p {
    font-size: 14px;
  }
  .page-title {
    font-size: 24px;
  }
  .page-title:after,
  .page-title:before {
    display: none;
  }
  .our-business .list-items {
    min-height: 400px;
    margin-top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /*sm*/
}
