/* -------------------------------- 

Primary style

-------------------------------- */
@font-face{
  font-family: pingfang;
  src: url(../fonts/PingFangSCRegular.ttf);
}
@font-face{
  font-family: pingfangbold;
  src: url(../fonts/PingFangBold.ttf);
}
@font-face{
  font-family: pingfangheavy;
  src: url(../fonts/PingFangHeavy.otf);
}
@font-face{
  font-family: pingfanglight;
  src: url(../fonts/PingFangLight.ttf);
}
@font-face{
  font-family: simsun;
  src: url(../fonts/simsun.ttf);
}
@font-face{
  font-family: keepcalm;
  src: url(../fonts/KeepCalm.ttf);
}
*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
@media screen and (min-width: 960px) and (max-width: 1199px){html {font-size: 56.3%;}}
@media only screen and (min-width: 768px) and (max-width: 959px) {html {font-size: 56.3%;}}
@media only screen and (min-width: 480px) and (max-width: 767px){html {font-size: 50%;}}
@media only screen and (max-width: 479px){html {font-size: 43.8%;}}
@media only screen and (max-width: 375px){html {font-size: 37.5%;}}
body {
  font-size: 1.6rem;
  font-family: sans-serif;
  color: #2e3233;
  background-color: #ffffff;
}
@media only screen and (max-width: 1169px) {
  body.nav-on-left.overflow-hidden {
    overflow: hidden;
  }
}

a {
  color: #ffb200;
  text-decoration: none;
}
a:link    {text-decoration: none;}
a:visited {text-decoration: none;}
a:hover   {text-decoration: none; color: #ffb200}
a:active  {text-decoration: none; color: #ffb200}
img {
  /* make images responsive */
  max-width: 100%;
}

input {
  font-family: sans-serif;
  font-size: 1.6rem;
}

input[type="search"]::-ms-clear {
  /* removes close icon - IE */
  display: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-main-content, .cd-main-header {
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

.cd-main-content, .cd-main-header {
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
@media only screen and (max-width: 1169px) {
  .cd-main-content.nav-is-visible, .cd-main-header.nav-is-visible {
    -webkit-transform: translateX(-260px);
    -moz-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    -o-transform: translateX(-260px);
    transform: translateX(-260px);
  }
  .nav-on-left .cd-main-content.nav-is-visible, .nav-on-left .cd-main-header.nav-is-visible {
    -webkit-transform: translateX(260px);
    -moz-transform: translateX(260px);
    -ms-transform: translateX(260px);
    -o-transform: translateX(260px);
    transform: translateX(260px);
  }
}

.cd-main-content {
  background: #fff;
  z-index: 2;
}

.cd-main-header {
  height: 8rem;
  background: #ffffff;
  z-index: 3;
}
.nav-is-fixed .cd-main-header {
  /* add .nav-is-fixed class to body if you want a fixed navigation on > 1170px */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
@media only screen and (min-width: 1170px) {
  .cd-main-header {
    height: 80px;
  }
  .cd-main-header:after {
    content: "";
    display: table;
    clear: both;
  }
}

.cd-logo {
  position: absolute;
  top: 12px;
  left: 5%;
}
.cd-logo img {
  display: block;
}
@media only screen and (max-width: 1169px) {
  .nav-on-left .cd-logo {
    left: auto;
    right: 5%;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-logo {
    top: 14px;
    left: 0;
  }
}

.cd-header-buttons {
  position: absolute;
  display: inline-block;
  top: 30px;
  right: 5%;
}
.cd-header-buttons li {
  display: inline-block;
}
@media only screen and (max-width: 1169px) {
  .nav-on-left .cd-header-buttons {
    right: auto;
    left: 5%;
  }
  .nav-on-left .cd-header-buttons li {
    float: right;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-header-buttons {
    top: 18px;
    right: 4em;
  }
}

.cd-nav-trigger span, .cd-nav-trigger span::before, .cd-nav-trigger span::after {
  /* hamburger icon in CSS */
  position: absolute;
  display: inline-block;
  height: 4px;
  width: 30px;
  background: #2e3233;
}
.cd-nav-trigger span {
  /* line in the center */
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: 4px;
  -webkit-transition: background 0.3s 0.3s;
  -moz-transition: background 0.3s 0.3s;
  transition: background 0.3s 0.3s;
}
.cd-nav-trigger span::before, .cd-nav-trigger span::after {
  /* other 2 lines */
  content: '';
  right: 0;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 0% 50%;
  -moz-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  -o-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  -moz-transition: -moz-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
}
.cd-nav-trigger span::before {
  /* menu icon top line */
  top: -13px;
}
.cd-nav-trigger span::after {
  /* menu icon bottom line */
  top: 13px;
}
.cd-nav-trigger.nav-is-visible span {
  /* hide line in the center */
  background: rgba(46, 50, 51, 0);
}
.cd-nav-trigger.nav-is-visible span::before, .cd-nav-trigger.nav-is-visible span::after {
  /* keep visible other 2 lines */
  background: #2e3233;
}
.cd-nav-trigger.nav-is-visible span::before {
  -webkit-transform: translateX(4px) translateY(6px) rotate(45deg);
  -moz-transform: translateX(4px) translateY(6px) rotate(45deg);
  -ms-transform: translateX(4px) translateY(6px) rotate(45deg);
  -o-transform: translateX(4px) translateY(6px) rotate(45deg);
  transform: translateX(4px) translateY(6px) rotate(45deg);
}
.cd-nav-trigger.nav-is-visible span::after {
  -webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -moz-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -o-transform: translateX(4px) translateY(2px) rotate(-45deg);
  transform: translateX(4px) translateY(2px) rotate(-45deg);
}
@media only screen and (min-width: 1170px) {
  .cd-nav-trigger {
    display: none;
  }
}

.cd-primary-nav, .cd-primary-nav ul {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 260px;
  background: #2e3233;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-primary-nav a, .cd-primary-nav ul a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: #ffffff;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 1px solid #3a3f40;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
}
.cd-primary-nav li.on{
  font-weight: bold;
}
.cd-primary-nav li.on a{
  border-bottom: 2px #ffb200 solid;
}
.cd-primary-nav.is-hidden, .cd-primary-nav ul.is-hidden {
  /* secondary navigations hidden by default */
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.cd-primary-nav.moves-out > li > a, .cd-primary-nav ul.moves-out > li > a {
  /* push the navigation items to the left - and lower down opacity - when secondary nav slides in */
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}

@media only screen and (max-width: 1169px) {
  .nav-on-left .cd-primary-nav, .nav-on-left .cd-primary-nav ul {
    right: auto;
    left: 0;
  }
}
.cd-primary-nav .see-all a {
  /* different style for the See all button on mobile and tablet */
  color: #ffb200;
}
.cd-primary-nav .cd-nav-gallery .cd-nav-item, .cd-primary-nav .cd-nav-icons .cd-nav-item {
  /* items with picture (or icon) and title */
  height: 80px;
  line-height: 80px;
}
.cd-primary-nav .cd-nav-gallery .cd-nav-item h3, .cd-primary-nav .cd-nav-icons .cd-nav-item h3 {
  overflow: hidden;
  text-overflow: ellipsis;
}
.cd-primary-nav .cd-nav-gallery .cd-nav-item {
  padding-left: 90px;
}
.cd-primary-nav .cd-nav-gallery .cd-nav-item img {
  position: absolute;
  display: block;
  height: 40px;
  width: auto;
  left: 20px;
  top: 50%;
  margin-top: -20px;
}
.cd-primary-nav .cd-nav-icons .cd-nav-item {
  padding-left: 75px;
}
.cd-primary-nav .cd-nav-icons .cd-nav-item p {
  color: #2e3233;
  font-size: 1.3rem;
  /* hide description on small devices */
  display: none;
}
.cd-primary-nav .cd-nav-icons .cd-nav-item::before {
  /* item icon */
  content: '';
  display: block;
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px 40px;
}

@media only screen and (max-width: 1169px) {
  .cd-primary-nav {
    /* by default .cd-primary-nav is hidden - trick for iOS devices where you can see the navigation if you pull down */
    visibility: hidden;
    -webkit-transition: visibility 0s 0.3s;
    -moz-transition: visibility 0s 0.3s;
    transition: visibility 0s 0.3s;
  }
  .cd-primary-nav.nav-is-visible {
    visibility: visible;
    -webkit-transition: visibility 0s 0s;
    -moz-transition: visibility 0s 0s;
    transition: visibility 0s 0s;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-primary-nav {
    position: static;
    padding: 0 100px 0 0;
    height: auto;
    width: auto;
    float: right;
    overflow: visible;
    background: transparent;
  }
  .cd-primary-nav:after {
    content: "";
    display: table;
    clear: both;
  }
  .cd-primary-nav.moves-out > li > a {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  .cd-primary-nav ul {
    position: static;
    height: auto;
    width: auto;
    background: transparent;
    overflow: visible;
    z-index: 3;
  }
  .cd-primary-nav ul.is-hidden {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-primary-nav ul.moves-out > li > a {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  .cd-primary-nav > li {
    float: left;
    margin-left: 3em;
  }
  .cd-primary-nav > li > a {
    /* main navigation buttons style */
    position: relative;
    display: inline-block;
    height: 80px;
    line-height: 80px;
    padding: 0 10px;
    color: #333;
    overflow: visible;
    border-bottom: none;
    -webkit-transition: color 0.3s, box-shadow 0.3s;
    -moz-transition: color 0.3s, box-shadow 0.3s;
    transition: color 0.3s, box-shadow 0.3s;
  }
  .cd-primary-nav > li > a:hover {
    color: #ffb200;
    text-decoration: none;
    border-bottom: 2px #ffb200 solid;
  }
  .cd-primary-nav > li > a.selected {
    color: #ffb200;
    box-shadow: inset 0 -2px 0 #ffb200;
  }
  .cd-primary-nav .go-back, .cd-primary-nav .see-all {
    display: none;
  }
  .cd-primary-nav .cd-secondary-nav, .cd-primary-nav .cd-nav-gallery, .cd-primary-nav .cd-nav-icons {
    /* dropdown menu style */
    position: absolute;
    top: 80px;
    width: 100vw;
    background: #ffffff;
    padding: 48px 64px 130px;
    box-shadow: inset 0 1px 0 #e2e3df, 0 3px 6px rgba(0, 0, 0, 0.05);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
  }
  .cd-primary-nav .cd-secondary-nav:after, .cd-primary-nav .cd-nav-gallery:after, .cd-primary-nav .cd-nav-icons:after {
    content: "";
    display: table;
    clear: both;
  }
  .cd-primary-nav .cd-secondary-nav.is-hidden, .cd-primary-nav .cd-nav-gallery.is-hidden, .cd-primary-nav .cd-nav-icons.is-hidden {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
  }
  .cd-primary-nav .cd-secondary-nav > .see-all, .cd-primary-nav .cd-nav-gallery > .see-all, .cd-primary-nav .cd-nav-icons > .see-all {
    /* this is the BIG See all button at the bottom of the dropdown menu */
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 80px;
    width: 100%;
    overflow: hidden;
    /* reset some inherited style */
    margin: 0;
    padding: 0;
  }
  .cd-primary-nav .cd-secondary-nav > .see-all a, .cd-primary-nav .cd-nav-gallery > .see-all a, .cd-primary-nav .cd-nav-icons > .see-all a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    line-height: 80px;
    border-top: 1px solid #e2e3df;
    /* reset some inherited style */
    border-bottom: none;
    margin: 0;
    padding: 0;
    -webkit-transition: color 0.2s, background 0.2s, border 0.2s;
    -moz-transition: color 0.2s, background 0.2s, border 0.2s;
    transition: color 0.2s, background 0.2s, border 0.2s;
  }
  .cd-primary-nav .cd-secondary-nav > .see-all a:hover, .cd-primary-nav .cd-nav-gallery > .see-all a:hover, .cd-primary-nav .cd-nav-icons > .see-all a:hover {
    background: #2e3233;
    border-color: #2e3233;
    color: #ffffff;
  }
  .cd-primary-nav .cd-secondary-nav > li {
    /* change the height according to your needs - you can even set height: auto */
    height: 340px;
    /* here you set the number of columns - use width percentage */
    width: 23%;
    float: left;
    margin-right: 2.66%;
    border-right: 1px solid #e2e3df;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cd-primary-nav .cd-secondary-nav > li:nth-child(4n+2) {
    /* +2 because we have 2 list items with display:none */
    margin-right: 0;
    border-right: none;
  }
  .cd-primary-nav .cd-secondary-nav > li > a {
    /* secondary nav title */
    color: #ffb200;
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: .6em;
  }
  .cd-primary-nav .cd-secondary-nav a {
    height: 30px;
    line-height: 30px;
    padding: 0 18% 0 0;
    color: #2e3233;
    border-bottom: none;
    font-size: 1.4rem;
  }
  .cd-primary-nav .cd-secondary-nav a:hover {
    color: #ffb200;
  }
  .cd-primary-nav .cd-secondary-nav ul {
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
  .cd-primary-nav .cd-secondary-nav ul ul {
    /* tertiary navigation */
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .cd-primary-nav .cd-secondary-nav ul ul.is-hidden {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  .cd-primary-nav .cd-secondary-nav ul ul .go-back {
    display: block;
  }
  .cd-primary-nav .cd-secondary-nav ul ul .go-back a {
    color: transparent;
  }
  .cd-primary-nav .cd-secondary-nav ul ul .see-all {
    display: block;
  }
  .cd-primary-nav .cd-secondary-nav .moves-out > li > a {
    /* push the navigation items to the left - and lower down opacity - when tertiary nav slides in */
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  .cd-primary-nav .cd-nav-gallery li {
    /* set here number of columns - use width percentage */
    width: 22%;
    float: left;
    margin: 0 4% 40px 0;
  }
  .cd-primary-nav .cd-nav-gallery li:nth-child(4n+2) {
    /* +2 because we have two additional list items with display:none */
    margin-right: 0;
  }
  .cd-primary-nav .cd-nav-gallery .cd-nav-item {
    border-bottom: none;
    padding: 0;
    height: auto;
    line-height: 1.2;
  }
  .cd-primary-nav .cd-nav-gallery .cd-nav-item img {
    position: static;
    margin-top: 0;
    height: auto;
    width: 100%;
    margin-bottom: .6em;
  }
  .cd-primary-nav .cd-nav-gallery .cd-nav-item h3 {
    color: #ffb200;
    font-weight: bold;
    padding: 0 .4em;
  }
  .cd-primary-nav .cd-nav-icons li {
    /* set here number of columns - use width percentage */
    width: 32%;
    float: left;
    margin: 0 2% 20px 0;
  }
  .cd-primary-nav .cd-nav-icons li:nth-child(3n+2) {
    /* +2 because we have two additional list items with display:none */
    margin-right: 0;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item {
    border-bottom: none;
    height: 80px;
    line-height: 1.2;
    padding: 24px 0 0 85px;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item:hover {
    background: #f6f6f5;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item h3 {
    color: #ffb200;
    font-weight: bold;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item p {
    display: block;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item::before {
    left: 25px;
  }
}
.has-children > a, .go-back a {
  position: relative;
}
.has-children > a::before, .has-children > a::after, .go-back a::before, .go-back a::after {
  /* arrow icon in CSS - for element with nested unordered lists */
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -1px;
  display: inline-block;
  height: 2px;
  width: 10px;
  background: #464c4e;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.has-children > a::before, .go-back a::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.has-children > a::after, .go-back a::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (min-width: 1170px) {
  .has-children > a::before, .has-children > a::after, .go-back a::before, .go-back a::after {
    background: #c9cbc4;
  }
  .has-children > a:hover::before, .has-children > a:hover::after, .go-back a:hover::before, .go-back a:hover::after {
    background: #ffb200;
  }
}

.has-children > a {
  padding-right: 40px;
}
.has-children > a::before, .has-children > a::after {
  /* arrow goes on the right side - children navigation */
  right: 20px;
  -webkit-transform-origin: 9px 50%;
  -moz-transform-origin: 9px 50%;
  -ms-transform-origin: 9px 50%;
  -o-transform-origin: 9px 50%;
  transform-origin: 9px 50%;
}

.cd-primary-nav .go-back a {
  padding-left: 40px;
}
.cd-primary-nav .go-back a::before, .cd-primary-nav .go-back a::after {
  /* arrow goes on the left side - go back button */
  left: 20px;
  -webkit-transform-origin: 1px 50%;
  -moz-transform-origin: 1px 50%;
  -ms-transform-origin: 1px 50%;
  -o-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}

@media only screen and (min-width: 1170px) {
  .has-children > a::before, .has-children > a::after {
    right: 15%;
  }

  .cd-primary-nav > .has-children > a {
    /* main navigation arrows on larger devices */
    padding-right: 30px !important;
  }
  .cd-primary-nav > .has-children > a::before, .cd-primary-nav > .has-children > a::after {
    width: 9px;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    background: #c9cbc4;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: width 0.3s, -webkit-transform 0.3s;
    -moz-transition: width 0.3s, -moz-transform 0.3s;
    transition: width 0.3s, transform 0.3s;
  }
  .cd-primary-nav > .has-children > a::before {
    right: 12px;
  }
  .cd-primary-nav > .has-children > a::after {
    right: 7px;
  }
  .cd-primary-nav > .has-children > a.selected::before, .cd-primary-nav > .has-children > a.selected::after {
    width: 14px;
  }
  .cd-primary-nav > .has-children > a.selected::before {
    -webkit-transform: translateX(5px) rotate(-45deg);
    -moz-transform: translateX(5px) rotate(-45deg);
    -ms-transform: translateX(5px) rotate(-45deg);
    -o-transform: translateX(5px) rotate(-45deg);
    transform: translateX(5px) rotate(-45deg);
  }
  .cd-primary-nav > .has-children > a.selected::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .cd-secondary-nav > .has-children > a::before, .cd-secondary-nav > .has-children > a::after {
    /* remove arrows on secondary nav titles */
    display: none;
  }

  .cd-primary-nav .go-back a {
    padding-left: 20px;
  }
  .cd-primary-nav .go-back a::before, .cd-primary-nav .go-back a::after {
    left: 1px;
  }
}
.cd-product {
  position: absolute;
  width: 100%;
  top: 50px;
  left: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-product form {
  height: 100%;
  width: 100%;
}
.cd-product .cd-product-list{
  margin-top: 60px;
  padding-bottom: 40px;
}
.cd-product a{
  text-decoration: none;
}
.cd-product a:hover{
  color: #ffb200;
}
.cd-product h2 a{
  font-size: 20px;
  color: #333;
  font-weight: bold;
  line-height: 40px;
}
.cd-product ul li{
  display: inline-block;
  margin-right: 20px;
}
.cd-product ul li a{
  font-size: 14px;
  color: #303233;
  display: block;
  /*line-height: 30px;*/
}
.cd-product dl dd a{
  font-size: 14px;
  color: #303233;
  display: block;
  line-height: 30px;
}
.cd-product input:focus {
  outline: none;
}
.cd-product.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.nav-is-fixed .cd-product {
  position: fixed;
}
@media only screen and (min-width: 1170px) {
  .cd-product {
    top: 80px;
  }
  .cd-product input {
    padding: 0 2em;
    font-size: 3.2rem;
    font-weight: 300;
  }
}

.cd-overlay {
  /* shadow layer visible when navigation is active */
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  background-color: none;
  visibility: hidden;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}

/* -------------------------------- 

support for no js 

-------------------------------- */
.no-js .cd-primary-nav {
  position: relative;
  height: auto;
  width: 100%;
  overflow: visible;
  visibility: visible;
  z-index: 2;
}

.no-js .cd-product {
  position: relative;
  top: 0;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 1170px) {
  .no-js .cd-primary-nav {
    position: absolute;
    z-index: 3;
    display: inline-block;
    width: auto;
    top: 0;
    right: 150px;
    padding: 0;
  }

  .no-js .nav-is-fixed .cd-primary-nav {
    position: fixed;
  }
}

/* banner */
.swiper-banner .swiper-pagination span{
   background: #fff;
   opacity: 1;
}
.swiper-banner .swiper-pagination .swiper-pagination-bullet-active{
  background: #ffb200
}
.swiper-banner .swiper-button-next{
  height: 7.3rem;
  width: 7.3rem;
  background: url(../images/right.png) no-repeat;
  right: 10%;
  background-size: 100%
}
.swiper-banner .swiper-button-prev{
  height: 7.3rem;
  width: 7.3rem;
  background: url(../images/left.png) no-repeat;
  left: 10%;
  background-size: 100%
}
/*index-video*/
.index-video video{
  background: #000;
  width: 100%;
  max-height: 56rem;
}
/*index_brand*/
.index_brand{
  margin-top: 6rem;
  margin-bottom: 6rem;
  overflow: hidden;
}
.index_brand h2{
  color: #333;
  font-size: 4rem;
  line-height: 7rem;
  font-family: pingfangheavy;
}
.index_brand h2:after{
  content: '';
  width: 4rem;
  height: 0.4rem;
  background: #ffb200;
  display: block;
  margin-top: 1rem;
}
.index_brand_content{
  line-height: 3.2rem;
  color: #333;
  margin-top: 3rem;
}
.index_brand_content h3{
  font-size: 2rem;
  font-family: pingfangbold;
}
.index_brand_content p{
  color: #333;
  font-size: 1.4rem;
  /*font-weight: bold;*/
  font-family: '宋体';
}
footer{
  background: #1f1f1f;
  width: 100%;
  padding-bottom: 8rem;
  overflow: hidden;
  *zoom:1;
}
footer dl{
  width: 18%;
  float: left;
  padding-top: 3rem;
  font-family: simsun;
  padding-left: 2%;
}
footer dl dt{
  font-size: 1.6rem;
  color: #fff;
  line-height: 4rem;
  font-family: simsun;
}

footer dl dd{
  font-size: 1.4rem;
  color: #999;
  line-height: 3rem;
  font-family: simsun;
}
footer dl dt a,footer dl dd a{
  color: #fff;
  font-family: simsun;
}
footer dl dd a{
  color: #999;
}
footer dl dt a:hover,footer dl dd a:hover{
  color: #ffb200;
}
@media screen and (min-width: 960px) and (max-width: 1199px){}
@media only screen and (min-width: 768px) and (max-width: 959px) {}
@media only screen and (min-width: 480px) and (max-width: 767px){
  footer dl{
    width: 31.3333%;
    float: left;
    padding-top: 3rem;
    font-family: simsun;
    padding-left: 2%;
  }
}
@media only screen and (max-width: 479px){
  .cd-main-header {
    height: 7rem;
    background: #ffffff;
    z-index: 3;
  }
  .cd-logo{
    top:1rem;
    left: 0.4%;
  }
  .cd-logo img{
    height: 5rem;
  }
  .cd-header-buttons {
      position: absolute;
      display: inline-block;
      top: 17px;
      right: 1%;
  }
  .index_brand{
    margin-top: 3rem;
  }
  .index_brand h2{
    line-height: 4rem;
  }
  .index_brand_content{
    line-height: 3rem;  
  }
  footer dl{
    width: 31.3333%;
    float: left;
    padding-top: 3rem;
    font-family: simsun;
    padding-left: 2%;
    min-height: 12rem;
  }
  footer dl:nth-of-type(4){
    clear: both;
  }
  footer dl:nth-of-type(4),footer dl:nth-of-type(5){
    width: 48%
  }
}
@media only screen and (max-width: 375px){}
/*product_left*/
.product_left{
  margin-top: 4rem;
  background: #fff;
  padding: 8.3rem 0;
}
.product_left ul li{
  padding-left: 4rem;
  line-height: 5rem;
  padding-right: 4rem;
  margin:0.7rem 0;
}
.product_left ul li a{
  display: block;
  font-size: 2rem;
  color: #333;
  padding-left: 2rem;
}
.product_left ul li a i{
  font-size: 1.4rem;
}
.product_left ul li a:hover{
  color: #ffb200;
}
.product_left ul li a.on{
  background: #212121;
  color: #fff;
}
.product_left ul li a.on i{
  color: #797979;
}
.product_right{
  margin-top: 4rem;
}
.product_right .col-md-6{

}
.product_right .thumbnail{
  border:2px #fff solid;
  border-radius: 0;
  padding-bottom: 2.8rem;
  margin-bottom: 2.4rem;
}
.product_right .thumbnail h3{
  color: #303233;
  font-size: 2rem;
  font-family: pingfangbold;
  line-height: 4.15rem;
  font-weight: normal;
}
.product_right .thumbnail .caption{
  width: 80%;
  margin-left: 10%;
}
.product_right .thumbnail p:nth-of-type(1){
  color: #303233;
  opacity: 0.5;
  font-size: 1.4rem;
  font-family: '宋体';
  line-height: 2.4rem;
}
.product_right .thumbnail .btn-default{
  border:1px #565656 solid;
  border-radius: 3rem;
  padding: .5rem 3rem;
  font-size: 1.5rem;
  color: #565656;
  margin-top: 2rem;
}
.product_right .thumbnail:hover{
  border:2px #ffb200 solid;
}
.product_right .thumbnail:hover h3{
  color: #ffb200;
}
.product_right .thumbnail:hover .btn-default{
  border:1px #ffb200 solid;
  color: #ffb200;
}
.product_right .thumbnail:hover .btn-default:hover{
  background: #ffb200;
  color: #fff;
}

@media only screen and (max-width: 479px){
  .product_left{
    margin-top: 1rem;
    padding: 2rem;
  }
  .product_left ul li {
      padding-left: 2rem;
      line-height: 3rem;
      padding-right: 2rem;
      margin: 0.2rem 0;
  }
  .product_right .col-xs-12{
    padding: 0;
  }
  .product_right .thumbnail .caption{
    width: 90%;
    margin-left: 5%;
  }
}
#certify {
  position: relative;
  width: 100%;/*判断宽度设置响应式效果*/
  margin: 0 auto;
  padding: 7rem 0;
}
.info_title{
  font-size: 4rem;
  color: #fff;
  margin-bottom: 3rem;
}
#certify .swiper-container {
  padding-bottom: 60px;
}

#certify  .swiper-slide {
  width: 397px;
  height: 612px;
  background: #fff;
}
#certify  .swiper-slide img{
  width: 397px;
  height: 612px;
  display:block;
}

#certify .swiper-pagination {
  width: 100%;
  bottom: 100px;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
  background: rgba(166,209,253,.43);
  width: 10px;
  height: 10px;
  opacity: 1;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet-active {
  width: 30px;
  background: rgba(89,171,255,0.59);
  border-radius: 10px;
}

#certify .swiper-button-prev {
  left: 15%;
  width: 67px;
  height: 67px;
  top:45%;
  background: url(../images/infoleft.png) no-repeat;

  background-size: 100%;
}

#certify .swiper-button-prev:hover {
  /*background-position: 0 -46px;*/
  /*background-size: 100%*/
}

#certify .swiper-button-next {
  right: 15%;
  width: 67px;
  height: 67px;
  top:45%;
  background: url("../images/inforight.png") no-repeat;

  background-size: 100%;
}

#certify .swiper-button-next:hover {
  /*background-position: 0 -139px;*/
  /*background-size: 100%*/
}
.info_content{ 
  position: absolute; 
  bottom: 0;
  width:100%; 
  height:100%;
  background-image: linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,1));
}
#certify .swiper-slide img{
  transition: all 0.3s;
}

.info_content h2{
  position: absolute;
  bottom: 100px;
  color: #fff;
  font-size: 2rem;
  line-height: 2.5rem;
  width: 90%;
  margin-left: 5%;
  opacity: .8;
}
.info_content .info_content_info{
  width: 90%;
  margin-left: 5%;
  position: absolute;
  bottom: 5px;
  line-height: 26px;
  padding-top: 5px;
  color: #999;
  font-size: 1.4rem; 
  opacity:0.5; 
  max-height: 84px;
  overflow: hidden;
}
#certify .swiper-slide:hover img{
  transform: scale(1.1);
}
#certify .swiper-slide:hover .info_content{
  background-image: linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.2));
}
#certify .swiper-slide:hover .info_content h2{
  opacity: 1;
}

/*client*/
.client{
  background: #252525;
  margin-top: 4rem;
  overflow: hidden;
}
.client h2{
  font-size: 4rem;
  color: #fff;
  line-height: 14rem;
  text-align: center;
}
.client dl{
  margin-bottom: 5rem;
  text-align: center;
}
.client dl dd{
  font-size: 2rem;
  color: #fff;
  line-height: 4rem;
  font-weight: normal;
}

/*brand*/
.brand{
  margin: 7rem 0;
}
.brand h2{
  font-size: 4rem;
  text-transform: uppercase;
  color: #2c2939;
  opacity: 0.2;
  font-family: pingfangbold;
}
.brand h3:before{
  content: '';
  width: 4rem;
  height: 0.4rem;
  background: #ffb200;
  display: block;
  margin: 3rem 0;
  opacity: 1;
}
.brand h3{
  font-size: 3.9rem;
  text-transform: uppercase;
  color: #333;
  font-family: pingfangheavy;
  line-height: 6rem;
}
.brand p{
  font-size: 1.9rem;
  text-transform: uppercase;
  color: #333;
  font-family: pingfanglight;
  line-height: 5rem;
}
.job_content p{
  font-family: '宋体';
  line-height: 3rem;
}
.job_list{
  background: #fff;
  padding: 5rem;
  margin-top: 4rem;
}
.job-panel-title{
  color: #333;
  font-size: 2.5rem;
  border-bottom: 1px rgba(0,0,0,.05) solid;
  line-height: 7rem;
}
.job_list .panel{
   border:0;
}
.job_list .panel-heading{
  padding: 0;
}
.job_list .panel-default>.panel-heading{
  background: #fff;
  border:0;
}
.job_list .panel-title{
  padding: 4rem 0;
  line-height: 3rem;
  overflow: hidden;
  font-size: 2.2rem;
  font-family: pingfang;
  color: #333;
}
.job_list a[data-toggle="collapse"]{
  display: block;
  
  background: url(../images/open.png) right no-repeat;
  background-size: auto 100%;
  opacity:.8;
}
.job_list a[aria-expanded="true"]{
  background: url(../images/close.png) right no-repeat;
  background-size: auto 100%;
  opacity:.8;
}
.job_list a[aria-expanded="false"]{
  background: url(../images/open.png) right no-repeat;
  background-size: auto 100%;
  opacity:.8;
}
.job_list .panel-body-title{
  font-size: 2rem;
  line-height: 4rem;
  color: #333;
}
.job_list .panel-body-title:nth-of-type(2){
  margin-top: 4rem;
}
.job_list .panel-body-content,.job_list .panel-body-content *{
  font-size: 1.4rem;
  color: rgba(51,51,51,0.7);
  line-height: 3rem;
  font-family: simsun;
}
.job_people{
  margin: 3rem auto;
  background: #fff;
  padding: 5rem;
  font-size: 2.1rem;
  
}
.job_people h2{
  font-size: 2.5rem;
  font-weight: normal;
  margin-bottom: 4rem;
  border-left: 2px #ffb200 solid;
  padding-left: 1rem;
}
.job_people i{
  color: #515151;
  font-size: 3rem;
  margin-bottom: 2rem;
  opacity: 0.8
}
.job_people p{
  margin-bottom: 2rem;
  font-family: pingfanglight;
}
.contact{
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.contact .col-md-6:nth-of-type(1):after{
  display: block;
  content: '';
  border-right: 1px #ccc solid;
  height:10rem;
  margin-top: 6rem;
}
.contact h2{
  color: #333;
  font-size: 4rem;
  line-height: 7rem;
  font-family: pingfangheavy;
}
.contact h2:after{
  content: '';
  width: 4rem;
  height: 0.4rem;
  background: #ffb200;
  display: block;
  margin: 1rem auto 2rem auto;
}
.contact p{
  font-size: 2rem;
  font-family: pingfanglight;
  line-height: 4rem;
}
.develop_title{
  height: 20.6rem;
}
.develop_title h2{
  padding-top: 6rem;
  font-size: 6rem;
  font-family: pingfangbold;
}
.develop_title p{
  margin-top: 1rem;
  font-size: 2.18rem;
  font-family: pingfanglight;
  opacity: 0.3;
}

/*font-family: keepcalm;*/
.develop_content .develop_list{
  width: 100%;
  height: 15.9rem;
  overflow: hidden;
  webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><fecolormatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0        0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'></fecolormatrix></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
  filter: grayscale(100%);
  filter: gray;
}
.develop_content .develop_list:hover{
  webkit-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: none;
  filter: grayscale(0%);
  filter: none;
  cursor: pointer;
}
/*.develop_content .develop_list:nth-of-type(1){*/
  /*background: #edad1a;*/
/*}*/

.develop_content .develop_list .time{
  padding-top: 5rem;
  font-family: keepcalm;
  font-size: 4.2rem;
  color:#fff;
  margin-bottom: 2rem;
}
.develop_content .develop_list p{
  color: #fff;
  font-size: 2rem;
}
.develop_content .develop_list .text-right{
  height: 15.9rem;
  display: table-cell;
  vertical-align: middle;
}
/*.develop_content .develop_list:nth-of-type(2){*/
  /*background: #f0eef2;*/
/*}*/
.develop_content .develop_list:nth-of-type(2) .time,.develop_content .develop_list:nth-of-type(2) p,.develop_content .develop_list:nth-of-type(10) .time,.develop_content .develop_list:nth-of-type(10) p{
  color:#333;
}
/*.develop_content .develop_list:nth-of-type(3){*/
  /*background: url(../images/develop/dev_10.png) top center no-repeat;*/
/*}*/
.develop_content .develop_list:nth-of-type(3) .time,.develop_content .develop_list:nth-of-type(2) p{
  color:#d0d0d0;
}
/*.develop_content .develop_list:nth-of-type(4){*/
  /*background: #ff6801;*/
/*}*/
/*.develop_content .develop_list:nth-of-type(5){*/
  /*background: #005bac;*/
/*}*/
/*.develop_content .develop_list:nth-of-type(6){*/
  /*background: #ff0036;*/
/*}*/
/*.develop_content .develop_list:nth-of-type(7){*/
  /*background: #e31e18;*/
/*}*/
/*.develop_content .develop_list:nth-of-type(8){*/
  /*background: #ec50a8;*/
/*}*/
/*.develop_content .develop_list:nth-of-type(9){*/
  /*background: #ef7e33;*/
/*}*/
/*.develop_content .develop_list:nth-of-type(10){*/
  /*background: #fff;*/
/*}*/
/*.develop_content .develop_list:nth-of-type(11){*/
  /*background: #f08c2e;*/
/*}*/
.has-children{
  position: relative;
}
.has-children .is-hidden{
  position: absolute;
  top: 80px;
  background: #fff;
}
.has-children a{
  color: #333!important;
}
.has-children ul li a{
  border-bottom: none;
  border-bottom: 0;
}
.has-children a:hover{
  color:#ffb200!important;
}
.has-children .is-hidden li.on a{
  border-bottom: 0;
      font-weight: normal;
}
.has-children .is-hidden a{
  color: #333!important;
  border-bottom: 0;
}
.has-children .is-hidden a{
  border-bottom: none;
}
.has-children .is-hidden a:hover{
  color:#ffb200!important;
}
@media only screen and (max-width: 479px){
  .has-children .is-hidden{
    position: absolute;
    top: 80px;
    background: #fff;
  }
  .has-children a{
    color: #fff!important;
  }
  .has-children ul li a{
    border-bottom: none;
    border-bottom: 0;
  }
  .has-children a:hover{
    color:#ffb200!important;
  }
  .has-children .is-hidden li.on a{
    border-bottom: 0;
        font-weight: normal;
  }
  .has-children .is-hidden a{
    color: #fff!important;
    border-bottom: 0;
  }
  .has-children .is-hidden a{
    border-bottom: none;
  }
  .has-children .is-hidden a:hover{
    color:#ffb200!important;
  }
  .develop_content .develop_list{
    text-align: center;

  }
  .develop_content .develop_list img.develop_line{
    height: 100%;
    width:auto;
    max-width: auto !important;
  }
  .develop_content .develop_list .time{
    padding-top: 6rem;
    font-family: keepcalm;
    font-size: 4.2rem;
    color:#fff;
    margin-bottom: 1rem;
  }
  .develop_content .develop_list .text-right{
    text-align: left;
  }
  .develop_content .develop_list .text-right img{
    padding-top: 2rem;
  }
  .develop_content .develop_list:nth-of-type(1) .time,
  .develop_content .develop_list:nth-of-type(2) .time,
  .develop_content .develop_list:nth-of-type(8) .time{
      padding-top: 5rem;
  }
  .develop_content .develop_list:nth-of-type(1) .text-right img,
  .develop_content .develop_list:nth-of-type(2) .text-right img,
  .develop_content .develop_list:nth-of-type(8) .text-right img{
    padding-top: 0rem;
  }
  
}
.infoa_title h2{
  line-height:4rem;
  font-size: 3rem;
  color: #333;
  margin-top: 6rem;
}
.info_time{
  line-height: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px #ccc solid;
  padding-bottom: 2rem;
}
.info_infocon{
  margin-bottom: 6rem;
  font-size: 1.6rem;
}
.info_infocon p *{
  font-size: 1.6rem !important;
}
.prevnext{
  line-height: 4rem;
  margin-bottom: 6rem;
}
.prevnext a{
  display: inline-block;
  color: #333;
}


#cd-product{
  padding: 20px 0;
}
#cd-product #myTab li{
  display: block;
  width: 100%;
  
}
#cd-product #myTab.nav-tabs{
  border-bottom: 0;
}
#cd-product #myTab li a{
  display: block;
  width: 100%;
  border-right: 1px #ccc solid;
  border-radius: 0;
  text-align: center;
}
#cd-product #myTab li a:hover{
  background: none;
  border:0;
  border-right: 2px #ffb200 solid;
}
#cd-product #myTab li a:focus, #cd-product #myTab li a:hover{
  background: none;
}
#cd-product #myTabContent .col-md-2{
  padding-right: 0;
}
#cd-product #myTab li.active a{
  border:0;
  border-right: 2px #ffb200 solid;
  background: none;
}
.thumbnail_img{
  width: 100%;
  min-height: 382px;
}

@media only screen and (max-width: 479px){

  #cd-product #myTab li{
    display: block;
    width: 50%;
    float: left;
    margin-right: 0;
    border:0;
    margin-bottom: 0;
  }
  .thumbnail_img{
    width: 100%;
    min-height: auto;
  }
  #cd-product #myTab li a{
    display: block;
    border:0;
    width: 100%;
    border-bottom: 1px #ccc solid;
    border-radius: 0;
    text-align: center;
  }
  #cd-product #myTab li.active a{
    border:0;
    border-bottom: 1px #ffb200 solid;
  }
  .develop_line{
    height: 15.9rem!important;
  }
  .develop_content .row{
    overflow: hidden;
  }
  .develop_content_img{
    display: none!important;
  }
}














