@font-face {

  font-family: 'siyuanheiti';

  font-display: swap;

  src: url('//at.alicdn.com/t/webfont_jjw1rk3s9t.eot'); /* IE9*/

  src: url('//at.alicdn.com/t/webfont_jjw1rk3s9t.eot?#iefix')

      format('embedded-opentype'),

    /* IE6-IE8 */ url('//at.alicdn.com/t/webfont_jjw1rk3s9t.woff2')

      format('woff2'),

    url('//at.alicdn.com/t/webfont_jjw1rk3s9t.woff') format('woff'),

    /* chrome、firefox */ url('//at.alicdn.com/t/webfont_jjw1rk3s9t.ttf')

      format('truetype'),

    /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/

      url('//at.alicdn.com/t/webfont_jjw1rk3s9t.svg#思源黑体-普通')

      format('svg'); /* iOS 4.1- */

}

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



Primary style



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

* {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  font-family: 'siyuanheiti';

}



html {

  font-size: 62.5%;

}



body {

  font-size: 1.6rem;

  font-family: 'siyuanheiti';

  color: #2e3233;

  background-color: #ffffff;

}

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

  body.nav-on-left.overflow-hidden {

    overflow: hidden;

  }

}



a {

  color: #c70000;

  text-decoration: none;

}



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-header {

  position: absolute;

  top: 0;

  width: 100%;

  -webkit-transition: -webkit-transform 0.3s;

  -moz-transition: -moz-transform 0.3s;

  transition: transform 0.3s;

  z-index: 1000;

}

.cd-main-content {

  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;

  min-height: 100vh;

  z-index: 2;

}



.cd-main-header {

  height: 80px;

  background: rgba(0, 0, 0, 0.4);

  z-index: 100;

  display: flex;

  justify-content: space-between;

  align-items: center;

}

.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-logo {

  position: relative;

}

.cd-logo img {

  display: block;

}



.cd-header-buttons {

  position: relative;

  display: inline-block;

}

.cd-header-buttons li {

  display: inline-block;

}



.cd-search-trigger,

.cd-nav-trigger {

  position: relative;

  display: block;

  width: 50px;

  height: 50px;

  overflow: hidden;

  white-space: nowrap;

  /* hide text */

  color: transparent;

  z-index: 3;

}



.cd-search-trigger::before,

.cd-search-trigger::after {

  /* search icon */

  content: '';

  position: absolute;

  -webkit-transition: opacity 0.3s;

  -moz-transition: opacity 0.3s;

  transition: opacity 0.3s;

  /* 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;

}

.cd-search-trigger::before {

  /* lens */

  top: 11px;

  left: 11px;

  width: 18px;

  height: 18px;

  border-radius: 50%;

  border: 3px solid #2e3233;

}

.cd-search-trigger::after {

  /* handle */

  height: 3px;

  width: 8px;

  background: #2e3233;

  bottom: 14px;

  right: 11px;

  -webkit-transform: rotate(45deg);

  -moz-transform: rotate(45deg);

  -ms-transform: rotate(45deg);

  -o-transform: rotate(45deg);

  transform: rotate(45deg);

}

.cd-search-trigger span {

  /* container for the X icon */

  position: absolute;

  height: 100%;

  width: 100%;

  top: 0;

  left: 0;

}

.cd-search-trigger span::before,

.cd-search-trigger span::after {

  /* close icon */

  content: '';

  position: absolute;

  display: inline-block;

  height: 3px;

  width: 22px;

  top: 50%;

  margin-top: -2px;

  left: 50%;

  margin-left: -11px;

  background: #2e3233;

  opacity: 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-transition: opacity 0.3s, -webkit-transform 0.3s;

  -moz-transition: opacity 0.3s, -moz-transform 0.3s;

  transition: opacity 0.3s, transform 0.3s;

}

.cd-search-trigger span::before {

  -webkit-transform: rotate(45deg);

  -moz-transform: rotate(45deg);

  -ms-transform: rotate(45deg);

  -o-transform: rotate(45deg);

  transform: rotate(45deg);

}

.cd-search-trigger span::after {

  -webkit-transform: rotate(-45deg);

  -moz-transform: rotate(-45deg);

  -ms-transform: rotate(-45deg);

  -o-transform: rotate(-45deg);

  transform: rotate(-45deg);

}

.cd-search-trigger.search-is-visible::before,

.cd-search-trigger.search-is-visible::after {

  /* hide search icon */

  opacity: 0;

}

.cd-search-trigger.search-is-visible span::before,

.cd-search-trigger.search-is-visible span::after {

  /* show close icon */

  opacity: 1;

}

.cd-search-trigger.search-is-visible span::before {

  -webkit-transform: rotate(135deg);

  -moz-transform: rotate(135deg);

  -ms-transform: rotate(135deg);

  -o-transform: rotate(135deg);

  transform: rotate(135deg);

}

.cd-search-trigger.search-is-visible span::after {

  -webkit-transform: rotate(45deg);

  -moz-transform: rotate(45deg);

  -ms-transform: rotate(45deg);

  -o-transform: rotate(45deg);

  transform: rotate(45deg);

}



.cd-nav-trigger span,

.cd-nav-trigger span::before,

.cd-nav-trigger span::after {

  /* hamburger icon in CSS */

  position: absolute;

  display: inline-block;

  height: 3px;

  width: 100%;

  background: #fff;

}

.cd-nav-trigger span {

  /* line in the center */

  position: absolute;

  top: 50%;

  right: 10px;

  margin-top: -2px;

  -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: #fff;

}

.cd-nav-trigger.nav-is-visible span::before {

  -webkit-transform: translateX(10px) translateY(-8px) rotate(45deg);

  -moz-transform: translateX(10px) translateY(-8px) rotate(45deg);

  -ms-transform: translateX(10px) translateY(-8px) rotate(45deg);

  -o-transform: translateX(10px) translateY(-8px) rotate(45deg);

  transform: translateX(10px) translateY(-8px) rotate(45deg);

}

.cd-nav-trigger.nav-is-visible span::after {

  -webkit-transform: translateX(10px) translateY(1px) rotate(-45deg);

  -moz-transform: translateX(10px) translateY(1px) rotate(-45deg);

  -ms-transform: translateX(10px) translateY(1px) rotate(-45deg);

  -o-transform: translateX(10px) translateY(1px) rotate(-45deg);

  transform: translateX(10px) translateY(1px) 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: 1000000000;

  /* 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;

  -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 ul a {

  color: #ffffff;

  padding: 0;

}

.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: #c70000;

}

.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: 4.5rem;;

  line-height: 4.5rem;;

}

.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: 0;

}

.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;

    height: auto;

    width: auto;

    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: 30000000000000;

  }

  .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: 1.5em;

    position: relative;

  }

  .cd-primary-nav > li > a {

    /* main navigation buttons style */

    position: relative;

    display: inline-block;

    height: 80px;

    line-height: 80px;

    font-size: 16px;

    padding: 0 10px;

    color: #fff;

    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: #c70000;

  }

  .cd-primary-nav > li > a.selected {

    color: #c70000;

    box-shadow: inset 0 -2px 0 #c70000;

  }

  .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;

    left: 0;

    top: 80px;

    width: 100%;

    background: rgba(0, 0, 0, 0.4);

    padding: 0;

    /*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 0.3s 0s, visibility 0s 0s;

    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;

    transition: opacity 0.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 0.3s 0s, visibility 0s 0.3s;

    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;

    transition: opacity 0.3s 0s, visibility 0s 0.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: #c60000;

    border-color: #c60000;

    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: #c70000;

    font-weight: bold;

    font-size: 1.6rem;

    margin-bottom: 0.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: #c70000;

  }

  .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: 0.6em;

  }

  .cd-primary-nav .cd-nav-gallery .cd-nav-item h3 {

    color: #c70000;

    font-weight: bold;

    padding: 0 0.4em;

  }

  .cd-primary-nav .cd-nav-icons li {

    /* set here number of columns - use width percentage */

    width: 100%;

    float: left;

    margin: 0 ;

    text-align: center;

  }

  .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;

    line-height: 4.5rem;

  }

  .cd-primary-nav .cd-nav-icons .cd-nav-item:hover {

    background: #c60000;

    color: #fff;

  }

  .cd-primary-nav .cd-nav-icons .cd-nav-item h3 {

    color: #c70000;

    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: #c70000;

  }

}



.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-search {

  position: absolute;

  height: 50px;

  width: 100%;

  top: 50px;

  left: 0;

  z-index: 3;

  opacity: 0;

  visibility: hidden;

  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;

  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;

  transition: opacity 0.3s 0s, visibility 0s 0.3s;

}

.cd-search form {

  height: 100%;

  width: 100%;

}

.cd-search input {

  border-radius: 0;

  border: none;

  background: #ffffff;

  height: 100%;

  width: 100%;

  padding: 0 5%;

  box-shadow: inset 0 1px 0 #e2e3df, 0 3px 6px rgba(0, 0, 0, 0.05);

  -webkit-appearance: none;

  -moz-appearance: none;

  -ms-appearance: none;

  -o-appearance: none;

  appearance: none;

}

.cd-search input::-webkit-input-placeholder {

  color: #c9cbc4;

}

.cd-search input::-moz-placeholder {

  color: #c9cbc4;

}

.cd-search input:-moz-placeholder {

  color: #c9cbc4;

}

.cd-search input:-ms-input-placeholder {

  color: #c9cbc4;

}

.cd-search input:focus {

  outline: none;

}

.cd-search.is-visible {

  opacity: 1;

  visibility: visible;

  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;

  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;

  transition: opacity 0.3s 0s, visibility 0s 0s;

}

.nav-is-fixed .cd-search {

  position: fixed;

}

@media only screen and (min-width: 1170px) {

  .cd-search {

    height: 120px;

    top: 80px;

  }

  .cd-search input {

    padding: 0 2em;

    font-size: 3.2rem;

    font-weight: 300;

  }

}







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



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-search {

  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;

  }

}



.mb-30 {

  margin-bottom: 30px;

}

/* btn */

.thm-btn {

  padding: 1.5rem 4rem;

  background: rgba(0, 0, 0, 0.35);

  border: 1px #fff solid;

  color: #fff;

  font-size: 1.6rem;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  max-width: 16rem;

  text-decoration: none;

  -o-transition: all 1s linear 0s;

  transition: all 1s linear 0s;

}

.thm-btn::before {

  content: '';

  display: block;

  width: 4rem;

  height: 1px;

  background: #fff;

  position: absolute;

  left: -2rem;

  -o-transition: all 1s linear 0s;

  transition: all 1s linear 0s;

}

.thm-btn::after {

  content: '';

  display: block;

  width: 4rem;

  height: 1px;

  background: #fff;

  position: absolute;

  right: -2rem;

  -o-transition: all 1s linear 0s;

  transition: all 1s linear 0s;

}

.thm-btn:hover {

  background: rgba(255, 255, 255, 0.35);

  border: 1px #c70000 solid;

  color: #c70000;

}

.thm-btn:hover::before,

.thm-btn:hover::after {

  background: #c70000;

}

.fs-20 {

  font-size: 2rem !important;

}



/* baner */

.banner__box {

  position: relative;

  width: 100vw;

  height: 100vh;

}

.banner__box img{width: 100%;}

.banner__box-text {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  color: #fff;

  text-align: center;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  transform: translateY(100%);

  opacity: 0;

  transition: all 0.3s;

}

.banner__box-text h5 {

  font-size: 2.2rem;

  text-transform: uppercase;

  margin-bottom: 2rem;

  

}

.banner__box-text h4 {

  font-size: 8.8rem;

  margin-bottom: 10rem;

}

.banner__box-text h2 {

  font-size: 6.2rem;

  margin-bottom: 2rem;

}

.banner__box-text h3 {

  font-size: 4.8rem;

  margin-bottom: 10rem;

}

.section1.active .banner__box-text {

  transform: translateY(0);

  opacity: 1;

  transition-delay: 1.3s;

  transition: all 1.3s;

}

.slick-dots {

  bottom: 4rem;

}

.slick-dots li,

.slick-dots li button {

  width: 3rem;

  height: 0.6rem;

  background: rgba(255, 255, 255, 0.4);

  padding: 0;

}

.slick-dots li button:before {

  content: '';

  color: #fff;

  opacity: 1;

  width: 3rem;

  height: 0.2rem;

}

.slick-dots li.slick-active,

.slick-dots li.slick-active button {

  background: rgba(255, 255, 255, 1);

}

.videomask {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  background-color: #000000;

  z-index: 20;

  display: none;

}

.videomask video {

  display: block;

  width: 100%;

  height: 100vh;

  -o-object-fit: cover;

  object-fit: cover;

  -o-object-position: center;

  object-position: center;

}

.videomask .fa {

  font-size: 6rem;

  color: #dddddd;

  position: absolute;

  right: 5%;

  top: 12%;

  z-index: 3;

  cursor: pointer;

  display: block;

}



/* 右侧导航 */

#fp-nav {

  _display: none;

  font-size: 12px;

}



#fp-nav li {

  width: 90px;

  height: 15px;

  margin: 10px 0 0;

  vertical-align: middle;

}



#fp-nav li a {

  float: right;

  width: 12px;

  height: 12px;

  color: #8f9da4;

  text-decoration: none;

  text-align: right;

  background: rgba(255, 255, 255, 0.5);

  border-radius: 50%;

}



#fp-nav li .active {

  border: 1px #f00 solid;

  background: none;

  background-position: 0 bottom;

}



#fp-nav span {

  display: none;

}



.fullPage-tooltip {

  float: left;

  top: 0;

  margin-right: 5px;

  font: 12px 'Microsoft Yahei';

  color: #8f9da4;

  line-height: 21px;

}



.section {

  position: relative;

  overflow: hidden;

}



.section .bg {

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

}



.section .bg img {

  display: block;

  width: 100%;

  height: 100%;

}





/* index section2 */

.index02 {

  width: 100%;

  box-sizing: border-box;

  height: 100%;

  position: relative;

  overflow: hidden;

  display: flex;

  display: -webkit-flex;

  -webkit-justify-content: space-between;

  justify-content: space-between;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

}

.index02 a {

  display: block;

  width: calc((100% - 1px) / 2);

  box-sizing: border-box;

  height: calc((100% - 1px) / 2);

  overflow: hidden;

  position: relative;

}

.index02 a::after {

  content: '';

  display: block;

  width: 100%;

  height: 100%;

  position: absolute;

  left: 0;

  top: 0;

  background: -moz-linear-gradient(top, #f06f75 0%, #940807 100%);

  background: -webkit-gradient(

    linear,

    left top,

    left bottom,

    color-stop(0%, #f06f75),

    color-stop(100%, #940807)

  );

  background: -webkit-linear-gradient(top, #f06f75 0%, #940807 100%);

  opacity: 0;

  transition: all 0.3s;

}

.index02 a:hover::after {

  opacity: 0.75;

}

.index02 a img {

  display: block;

  width: auto;

  min-width: 100%;

  position: absolute;

  top: 0;

  left: 50%;

  transform: translateX(-50%);

  -webkit-transform: translateX(-50%);

  height: 100%;

}

.index02 a .text {

  width: 100%;

  box-sizing: border-box;

  position: absolute;

  left: 0;

  top: 50%;

  transform: translateY(-50%);

  -webkit-transform: translateY(-50%);

  padding: 0 10rem;

  text-align: center;

  z-index: 2;

}

.index02 a .text h3 {

  font-size: 3.2rem;

  color: #ffffff;

  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);

  margin-bottom: 2rem;

  font-weight: bold;

}

.index02 a .text h4 {

  font-size: 1.8rem;

  color: #ffffff;

  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);

  line-height: 2.2rem;

}

.index02 a .text span {

  margin: auto;

  margin-top: 4rem;

}







.index02 .circle {

  width: 20rem;

  height: 20rem;

  box-sizing: border-box;

  border: 1rem solid #eeeeee;

  background-color: #c70000;

  display: flex;

  display: -webkit-flex;

  -webkit-justify-content: center;

  justify-content: center;

  -webkit-align-items: center;

  align-items: center;

  -webkit-flex-flow: column;

  flex-flow: column;

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  -webkit-transform: translate(-50%, -50%);

  border-radius: 50%;

  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);

}

.index02 .circle p {

  font-size: 4.2rem;

  color: rgba(255, 255, 255, 0.5);

  margin-bottom: 1rem;

  text-transform: uppercase;

}

.index02 .circle font {

  font-size: 3.8rem;

  color: #fff;

}

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

  .index02 {

    display: flex;

  }

  .index02 a .text {

    padding: 0 2%;

  }

  .index02 a .text h3 {

    font-size: 2rem;

  }

  .index02 a .text h4 {

    display: none;

  }

  .index02 .circle {

    width: 130px;

    height: 130px;

    border: 0.5rem solid #eee;

  }

  .index02 .circle font {

    font-size: 1.6rem;

  }

}



/* section3 */

.section3 {

  background: url(../images/background/cer-bg.jpg) top no-repeat;

  background-size: cover;

  display: flex;

  align-items: center;

  justify-content: center;

}

.section3more,
.cert__active {

  transform: translateY(50%);

  opacity: 0;

  transition: all 1s;

}

.section3.active .section3more,
.section3.active .cert__active {

  transform: translateY(0);

  opacity: 1;

  transition-delay: 1s;

}

.section3more{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top:90px;
}
.section3.active .section3more{

  transform: translateY(0);

  opacity: 1;

  transition-delay: 1.5s;

}
.cert__box img {

  display: block;

  margin: 0 auto;

}

.cert__box p {

  font-size: 18px;

  color: #fff;

  margin-top: 2rem;

}

.cert__active {

  display: flex;

  align-items: center;

  justify-content: center;

}

.cert__active img {

  max-width: 100%;

  transition: all 0.4s ease;

}

.cert__active .cert__box:hover img {

  transform: scale(0.98);

}

.cert__active .cert__box:hover p {

  color: #c70000;

}

.cert__active .slick-dots {

  bottom: -40px;

}

.cert__prev-arrow,

.cert__next-arrow {

  color: #fff;

  font-size: 70px;

}

.cert__prev-arrow:hover,

.cert__next-arrow:hover {

  color: #c70000;

}



/* section4 */

.section4 {

  background: #fff;

}

.section4-left {

  margin: 10% 10% 0;

  height: 90%;

  opacity: 0;

  transition: all 1s;

  transform: translateX(-50%);

}

.section4-title {

  margin-bottom: 4rem;

  display: flex;

  justify-content: space-between;
  align-items: flex-end;

}

.section4-title p {

  font-size: 24px;

  text-transform: uppercase;

}

.section4-title h2 {

  font-size: 36px;

  font-weight: normal;

}

.section4-title div p {

  font-size: 24px;

  text-transform: uppercase;

}

.section4-title div h2 {

  font-size: 36px;

  font-weight: normal;

}
.section4-title a{
      color: #0c0c0c;
    line-height: 26px;
    border: 2px #0c0c0c solid;
    text-align: center;
    padding: 2px 15px;
}
.section4-title a:hover{
  color: #c70000;
  border-color: #c70000;
}

.news-list__active {

  height: 80%;

  overflow: hidden;

}

.news-list__box {

  width: 100%;

  height: calc((70% - 30px) / 3);

  overflow: hidden;

}

.news-list__box dl {

  height: 20vh;

  display: flex;

  align-items: center;

  justify-content: center;

  line-height: 30px;

  margin-bottom: 3rem;

  overflow: hidden;

}

.news-list__box dl dt{

  flex:  0 0 45%;

  max-width: 45%;

  overflow: hidden;

}

.news-list__box dl dd {

  margin-left: 2rem;

  

  overflow: hidden;

}

.news-list__box dl dd a {

  display: block;

  margin-bottom: 2rem;

  font-size: 20px;

  color: #000;

  -o-transition: all 1s linear 0s;

  transition: all 1s linear 0s;

}

.news-list__box dl dd p {

  font-size: 16px;

  color: #aeaeae;

  -o-transition: all 1s linear 0s;

  transition: all 1s linear 0s;

}

.news-list__box dl:hover a {

  color: #c70000;

}

.news-list__box dl:hover p {

  color: #666;

}

.news-list__box dl img {

  -o-transition: all 1s linear 0s;

  transition: all 1s linear 0s;

}

.news-list__box dl:hover img {

  -webkit-transform: scale(1.05) rotate(0deg) translateY(0);

  -ms-transform: scale(1.05) rotate(0deg) translateY(0);

  transform: scale(1.05) rotate(0deg) translateY(0);

}

.news-list__active .slick-dots {

  bottom: 0;

}

.news-list__active .slick-dots button,

.news-list__active .slick-dots button::before {

  background: #ccc;

  opacity: 1;

}

.news-list__active .slick-dots li.slick-active,

.news-list__active .slick-dots li.slick-active button {

  background: #c70000;

  opacity: 1;

}

.news-list__active .slick-dots li.slick-active button:before {

  opacity: 0;

}

.news-img__active {

  transform: translateX(50%);

  opacity: 0;

  transition: all 1s;

}

.news-img__box {

  position: relative;

  height: 100vh;

}

.news-img__box img {

  height: 100vh;

}

.news-img__hover {

  background: rgba(0, 0, 0, 0.4);

  padding: 5rem;

  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  z-index: 10;

}

.news-img__hover a {

  font-size: 2.4rem;

  color: #fff;

  margin: 2rem 0;

  display: block;

}

.news-img__hover p {

  color: #a7a6a6;

  font-size: 1.6rem;

  line-height: 3rem;

  width: 80%;

}

.news-img__active .news__prev-arrow,

.news-img__active .news__next-arrow {

  position: absolute;

  bottom: 9rem;

  font-size: 4rem;

  color: #fff;

  right: 2rem;

  z-index: 30;

  width: 4rem;

  height: 4rem;

  text-align: center;

}

.news-img__active .news__prev-arrow {

  right: 8rem;

  background: rgba(167, 166, 166, 0.5);

}

.news-img__active .news__next-arrow {

  background: rgba(199, 0, 0, 0.5);

}

.section4.active .section4-left {

  transform: translateX(0);

  opacity: 1;

  transition-delay: 1s;

}

.section4.active .news-img__active {

  transform: translateX(0);

  opacity: 1;

  transition-delay: 1s;

}



/* section5 */

.section5 {

  background: url(../images/background/media-bg.jpg) top center no-repeat;

  background-size: cover;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

}

.section5 .section4-title {

  margin-bottom: 4rem;

  display: block;

  justify-content: normal;
  align-items:normal;

}
.section5 .section4-title h2,

.section5 .section4-title p {

  color: #fff;

}

.section5 .section4-title p {

  font-size: 24px;

  text-transform: uppercase;

}

.section5 .section4-title h2 {

  font-size: 36px;

  font-weight: normal;

}

.media__active {

  opacity: 0;

  transition: all 1s;

  transform: translateX(-50%);

}

.zazhi__active {

  transform: translateX(50%);

  opacity: 0;

  transition: all 1s;

}

.section5.active .media__active {

  transform: translateX(0);

  opacity: 1;

  transition-delay: 1s;

}

.section5.active .zazhi__active {

  transform: translateX(0);

  opacity: 1;

  transition-delay: 1s;

}

.zazhi__active .zazhi__prev-arrow,

.zazhi__active .zazhi__next-arrow {

  position: absolute;

  top: 48%;

  font-size: 6rem;

  color: #fff;

  z-index: 30;

  text-align: center;

}

.zazhi__active .zazhi__prev-arrow {

  left: -4rem;

}

.zazhi__active .zazhi__next-arrow {

  right: -4rem;

}

.media__active .media__box {

  margin-bottom: 30px;

  position: relative;

}

.media__active .slick-dots {

  bottom: 0;

}





.media__box .text {

  width: 92%;

  height: 100%;

  box-sizing: border-box;

  position: absolute;

  left: 0;

  top: 0;

  padding: 0;

  text-align: center;

  z-index: 2;

  background: -moz-linear-gradient(top, #f06f75 0%, #940807 100%);

  background: -webkit-gradient(

    linear,

    left top,

    left bottom,

    color-stop(0%, #f06f75),

    color-stop(100%, #940807)

  );

  background: -webkit-linear-gradient(top, #f06f75 0%, #940807 100%);

  opacity: 0;

  transition: all 0.3s;

  display: flex;

  justify-content: center;

  align-items: center;

  flex-direction: column;

}

.media__box:hover .text {

  opacity: .75;

}

.media__box .text h3 {

  font-size: 1.8rem;

  color: #ffffff;

  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);

  margin-bottom: 2rem;

  font-weight: bold;

}

.media__box .text span {

  margin-top: 2rem;

  padding: .8rem 2rem;

}

.media__box .text span:after{

  width: 2rem;

  right: -1rem;

}

.media__box .text span:before{

  width: 2rem;

  left: -1rem;

}

.media__box:hover .text h3{

  opacity: 1;

}

.media__box:hover .text span{

  opacity: 1;

}

/* section6 */



.section6-left {

  width: 50%;

  height: 100%;

  float: left;

  position: relative;

}

.section6 img {

  display: block;

  width: 100%;

  height: 100%;

}

.section6-right {

  width: 50%;

  height: 100%;

  float: left;

}

.section6-right .right__box {

  width: 50%;

  height: calc(100% / 2);

  float: left;

  position: relative;

  overflow: hidden;

}

.product__box {

  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  background: rgba(0, 0, 0, 0.4);

  color: #fff;

  line-height: 4rem;

  text-align: center;

}

.product__box a {

  color: #fff;

}

.section6 .circle {

  width: 20rem;

  height: 20rem;

  box-sizing: border-box;

  border: 1rem solid #eeeeee;

  background-color: #c70000;

  display: flex;

  display: -webkit-flex;

  -webkit-justify-content: center;

  justify-content: center;

  -webkit-align-items: center;

  align-items: center;

  -webkit-flex-flow: column;

  flex-flow: column;

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  -webkit-transform: translate(-50%, -50%);

  border-radius: 50%;

  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);

}

.section6 .circle p {

  font-size: 2.7rem;

  color: rgba(255, 255, 255, 0.5);

  margin-bottom: 1rem;

  text-transform: uppercase;

}

.section6 .circle font {

  font-size: 3.8rem;

  color: #fff;

}

.section6 img {

  -o-transition: all 1s linear 0s;

  transition: all 1s linear 0s;

}

.right__box:hover img {

  -webkit-transform: scale(1.05) rotate(0deg) translateY(0);

  -ms-transform: scale(1.05) rotate(0deg) translateY(0);

  transform: scale(1.05) rotate(0deg) translateY(0);

}

.footer {

  background: #c70000;

  padding: 6rem 0;

  overflow: hidden;

}

.footer_flogo {

  color: #fff;

  font-size: 1.6rem;

}

.footer_flogo img {

  max-width: 100%;

}

.footer_flogo p {

  margin-top: 2rem;

  line-height: 2.5rem;

}

.footer_flogo a {

  color: #fff;

}

.footer_menu li {

  width: 45%;

  float: left;

  line-height: 3rem;

}

.footer_menu li a {

  color: #fff;

}

.footer_contact {

  color: #fff;

  font-size: 1.6rem;

  line-height: 3rem;

}

.footer_contact h2 {

  font-size: 2.2rem;

  display: flex;

  align-items: center;

  margin-bottom: 1.5rem;

}

.footer_contact h2 i {

  width: 3rem;

  height: 3rem;

  border-radius: 50%;

  background: #fff;

  color: #c70000;

  font-size: 2.4rem;

  text-align: center;

  line-height: 3rem;

  margin-right: 1rem;

}

.footer_rqcode {

  color: #fff;

  text-align: center;

  line-height: 3rem;

}



/* nybanner */

.nybanner {

  position: relative;

}

.nybanner-box {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  color: white;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

}

.nybanner-box p {

  font-size: 2.4rem;

  text-transform: uppercase;

}

.nybanner-box h2 {

  font-size: 6rem;

  font-weight: bold;

  margin-top: 1rem;

}



/* about */

.about-area {

  padding: 6rem 0;

}

.about-area_content {

  font-size: 1.8rem;

  line-height: 3.5rem;

}

.about-area_commit h4 {

  font-size: 3.6rem;

  color: #c70000;

  font-weight: bold;

  line-height: 5rem;

  margin-bottom: 4rem;

}

.about-area_commit h4 span {

  display: block;

  font-size: 4.2rem;

}

.about-area_commit p {
  text-indent: 4rem;

  font-size: 2rem;

  color: #484848;

  font-weight: bold;

  line-height: 4rem;

}

.about-area_list {

  text-indent: 32px;

  background-color: #ec6363;

  padding: 2rem;

  color: #fff;

  line-height: 3rem;

}

.about-area_bg2 {

  background-color: #da4141;

  border-left: 1px solid #fff;

  border-right: 1px solid #fff;

}

.about-area_bg3 {

  background-color: #c70000;

}



.history-area {

  background: #eef4f6;

  padding: 6rem 0;

}

.history-area .gallery-top .swiper-slide {

  width: 100%;

  box-sizing: border-box;

  padding: 5px;

}

.history-area .gallery-top .swiper-slide .box {

  position: relative;

  width: 100%;

  display: flex;

  display: -webkit-flex;

  -webkit-justify-content: space-between;

  justify-content: space-between;

  -webkit-align-items: center;

  align-items: stretch;

  background-color: #fff;

  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);

}

.history-area .gallery-top .swiper-slide img {

  display: block;

  width: 100%;

}

.history-area .gallery-top .swiper-slide .imgbox {

  width: 55%;

}

.history-area .gallery-top .swiper-slide .text {

  width: 45%;

  box-sizing: border-box;

  padding: 5rem 5rem 0;

  height: 100%;

}

.history-area .gallery-top .swiper-slide .text h3 {

  font-size: 36px;

  color: #222222;

  font-weight: bold;

  margin-bottom: 20px;

  position: relative;

  z-index: 2;

}

.history-area .gallery-top .swiper-slide .text p {

  font-size: 20px;

  color: #222222;

}

.history-area .gallery-top .swiper-slide .text strong {

  display: block;

  width: 100%;

  height: 1px;

  background-color: #ddd;

  margin: 20px 0;

}

.history-area .gallery-top .swiper-slide .text h4 {

  font-size: 15px;

  color: #666666;

  line-height: 26px;

  position: relative;

  z-index: 2;

}

.history-area .gallery-top .swiper-slide .text h4 p {

  font-size: 15px;

  color: #666666;

  line-height: 26px;

  padding-left: 20px;

  position: relative;

}

.history-area .gallery-top .swiper-slide .text h4 p::before {

  content: '';

  display: block;

  width: 5px;

  height: 5px;

  background-color: #666;

  position: absolute;

  left: 0;

  top: 10px;

  border-radius: 50%;

}

.history-area .gallery-top .swiper-slide .text time {

  position: absolute;

  right: 0;

  bottom: 0;

  font-size: 12rem;

  font-weight: bold;

  color: #f0f0f0;

  z-index: 1;

}

.history-area .gallery-thumbs {

  width: 100%;

  box-sizing: border-box;

  padding: 4rem 4rem;

  position: relative;

  margin: 1rem 0;

}

.history-area .gallery-thumbs:before {

  content: '';

  display: block;

  width: calc((100% - 40px));

  height: 1px;

  position: absolute;

  top: 49%;

  left: 1rem;

  background-color: #ddd;

}

.history-area .gallery-thumbs .swiper-wrapper .swiper-slide {

  text-align: center;

}

.history-area .gallery-thumbs .swiper-wrapper .swiper-slide span {

  display: block;

  margin: auto;

  width: 10rem;

  height: 10rem;

  border-radius: 50%;

  background-color: #eef4f6;

  position: relative;

  border: 1px #dcdedf solid;

}

.history-area .gallery-thumbs .swiper-wrapper .swiper-slide span:before {

  content: '';

  display: block;

  width: 10rem;

  height: 10rem;

  border-radius: 50%;

  position: absolute;

  top: 50%;

  left: 50%;

  margin-top: -5rem;

  margin-left: -5rem;

  background-color: #eef4f6;

  border: 1px #dcdedf solid;

  z-index: 2;

}

.history-area .gallery-thumbs .swiper-wrapper .swiper-slide span:after {

  content: '';

  display: block;

  width: 12rem;

  height: 12rem;

  border-radius: 50%;

  position: absolute;

  top: 50%;

  left: 50%;

  margin-top: -6rem;

  margin-left: -6rem;

  background-color: #e6c3c5;

  opacity: 0;

  transition: all 0.6s;

  z-index: 1;

}

.history-area .gallery-thumbs .swiper-wrapper .swiper-slide p {

  font-size: 3.6rem;

  color: #a8a8a8;

  position: absolute;

  top: 0;

  left: 0;

  text-align: center;

  width: 100%;

  z-index: 10;

  height: 10rem;

  line-height: 10rem;

  margin-top: -4px;

  font-weight: bold;

}

.history-area .swiper-button-prev,

.history-area .swiper-button-next {

  background-image: none;

  background: #a8a8a8;

  width: 20px;

  height: 20px;

  text-align: center;

  line-height: 20px;

  border: 1px solid #a8a8a8;

  border-radius: 50%;

  color: #a8a8a8;

  top: 56%;

}

.history-area

  .gallery-thumbs

  .swiper-wrapper

  .swiper-slide-thumb-active

  span:after {

  opacity: 1;

}

.history-area

  .gallery-thumbs

  .swiper-wrapper

  .swiper-slide-thumb-active

  span:before {

  background: #c70000;

  opacity: 1;

  border: 1px #c70000 solid;

}

.history-area .gallery-thumbs .swiper-wrapper .swiper-slide-thumb-active p {

  color: #fff;

}

.group-area {

  background: url(../images/background/group-bg.jpg) top center no-repeat;

  background-size: cover;

  position: relative;

  padding: 6rem 0;

}

.group-area img {

  max-width: 100%;

}

.culture-area {

  background-size: cover;

  position: relative;

}

.culture-area__box {

  position: relative;

}

.culture-area__box-thumb img {

  width: 100%;

  opacity: 0.16;

}

.culture-area__box:hover .culture-area__box-thumb img {

  opacity: 1;

}

.culture-area__box-content {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  text-align: center;

  display: flex;

  flex-direction: column;

  justify-content: flex-start;

  padding-top: 40%;

}

.culture-area__box-title {

  margin-bottom: 8rem;

}

.culture-area__box-title p {

  font-size: 2.4rem;

  text-transform: uppercase;

  margin-bottom: 1rem;

}

.culture-area__box-title h4 {

  font-size: 3.6rem;

}

.culture-area__box-ttitle {

  font-size: 2.2rem;

  margin-bottom: 4rem;

  line-height: 4rem;

}

.culture-area__box-text {

  text-indent: 32px;

  text-align: left;

  font-size: 16px;

  width: 60%;

  margin: 0 auto;

  line-height: 3rem;

  color: #747474;

}



/* case */

.case-area__class {

  border-bottom: 1px #ccc solid;

  padding: 4rem 0 2rem 0;

  margin-bottom: 2rem;

  text-align: center;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: center;

}

.case-area__class a {

  color: #757575;

  margin: 0 2rem;

  display: flex;

  align-items: center;

}

.case-area__class a img{

-webkit-filter: grayscale(100%);

  -moz-filter: grayscale(100%);

  -ms-filter: grayscale(100%);

  -o-filter: grayscale(100%);

  filter: grayscale(100%);

  filter: #000;

}

.case-area__class a span{

  margin-left: 1rem;

}

.case-area__class a:hover,

.case-area__class a.active {

  color: #c70000;

}

.case-area__class a:hover img,

.case-area__class a.active img{

  filter: unset;

}

.case-area__class a.active::after {

  content: '';

  display: block;

  border-bottom: 1px #c70000 solid;

}

.case-area_list {

  margin-top: 3rem;

}

.case-area_box {

  position: relative;

  overflow: hidden;

}

.case-area_box .case-area_hover {

  position: absolute;

  bottom: 0;

  z-index: 100;

  width: 100%;

}

.case-area_box .case-area_hover a.title {

  background: rgba(0, 0, 0, 0.3);

  display: block;

  line-height: 4rem;

  color: #fff;

  text-align: center;

}

.case-area_box .case-area_hover .more {

  display: block;

  width: 4rem;

  height: 4rem;

  border-radius: 50%;

  background: #fff;

  text-align: center;

  line-height: 4rem;

}

.case-area_box .case-area_hover .text {

  font-size: 1.6rem;

  line-height: 2.5rem;

  color: #fff;

  width: 80%;

  text-align: center;

  margin: 1.5rem 0;

}

.case-area_box .case-area_hover .text,

.case-area_box .case-area_hover .more {

  display: none;

}

.case-area_box img {

  transition: all 0.4s;

}

.case-area_box:hover .case-area_hover {

  background: rgba(199, 0, 0, 0.7);

  height: 100%;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

}

.case-area_box:hover img {

  transform: scale(1.05) rotate(0deg) translateY(0);

}

.case-area_box:hover .case-area_hover a.title {

  background: none;

}

.case-area_box:hover .case-area_hover .text,

.case-area_box:hover .case-area_hover .more {

  display: block;

}

.pagination {

  align-items: center;

  justify-content: center;

  margin: 2rem auto 4rem;

}

.pagination a.page-link {

  color: #333;

  padding: 0.5rem 1.2rem;

}

.pagination .page-item a{

  color: #333;

      position: relative;

    padding: 0.5rem 1rem;

    margin-left: -1px;

    line-height: 1.25;

    background-color: #fff;

    border: 1px solid #dee2e6;

    display: inline-block

}



.pagination .page-item.active a.page-link ,.page-num-current{

  background-color: #c70000!important;

  border-color: #c70000!important;

    color: #fff!important;

}

.honor-area {

  padding: 6rem 0;

}

.honor-area_box {

  text-align: center;

  line-height: 4rem;

  color: #333;

  overflow: hidden;

}

.honor-area_box img {

  transition: all 0.5s ease-in-out;

}

.honor-area_box p {

  color: #333;

}

.honor-area_box:hover img {

  transform: scale(1.04);

}



.caseny-area .swiper-slide img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

}

.caseny-area .swiper {

  width: 100%;

  height: 300px;

  margin-left: auto;

  margin-right: auto;

  position: relative;

}



.caseny-area .swiper-slide {

  background-size: cover;

  background-position: center;

}



.caseny-area .myCase2 {

  height: 550px;

  width: 850px;

  overflow: hidden;

}



.caseny-area .myCase {

  width: 700px;

  height: 20%;

  box-sizing: border-box;

  padding: 10px 0;

  overflow: hidden;

}



.caseny-area .mySwiper .swiper-slide {

  width: 100px;

  height: 100%;

  opacity: 0.4;

}



.caseny-area .mySwiper .swiper-slide-thumb-active {

  opacity: 1;

  border: 1px #c70000 solid;

  padding: 10px;

}



.caseny-area .swiper-slide img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

}

.caseny-area{

  position: relative;

}

.swiper-btn{

  position: relative;

  width: 850px;

  margin:  0 auto;

}

.caseny-area .swiper-button-next,

.caseny-area .swiper-button-prev{

  position: absolute;

  top: -90px;

}

.caseny-area{

  padding: 60px 0;

}

.caseny-title{

  font-size: 30px;

  color: #000;

  text-align: center;

  margin-bottom: 20px;

}

.caseny-content{

  font-size: 18px;

  color: #585858;

  margin-top: 40px;

  line-height: 30px;

}



/* team-area_list */

.team-area_list{

  margin: 60px 0

}

.team-area_box{

  width: 90%;

  text-align:center

}

.team-area_box img{

  width: 90%;

  margin: 0 auto 20px;

  border-radius: 50%;

  border: 10px #e8e8e8 solid;

  transition: all 0.3s;

}

.team-area_box:hover img{

  border: 1px #c60000 solid;

  padding: 9px;

}

.team-area_hover .text{

  font-size: 16px;

  color:#767676;

  margin-bottom: 15px;

}

.team-area_hover .title{

  font-size: 24px;

  color:#000;

}

.team-area_box:hover .text,

.team-area_box:hover .title{

  color: #c60000

}

.user-info{

  padding: 40px 0;

}

.user-info .img img{

  width: 90%;

  margin: 0 auto 20px;

  border-radius: 50%;

  border: 10px #e8e8e8 solid;

  transition: all 0.3s;

}

.user-info .content .text{

  font-size: 16px;

  color:#767676;

  margin-bottom: 15px;;

}

.user-info .content .title{

  font-size: 24px;

  color:#000;

  margin-bottom: 15px;;

}

.user-info .content .intro{

  font-size: 16px;

  color:#000;

  line-height:30px

}

@media (min-width: 576px){

  .modal-dialog {

      max-width: 800px;

      margin: 1.75rem auto;

  }

}

.news-area__one{

  margin-top: 60px;;

  padding-bottom: 30px;

  border-bottom: 1px #e4e4e4 solid;

}

.news-area__one a{

  font-size: 24px;

  color:#000;

  margin-bottom: 15px;;

}

.news-area__one span{

  font-size: 14px;

  color:#9f9f9f;

  margin-bottom: 15px;;

}

.news-area__one p{

  font-size: 16px;

  color:#8d8d8d;

  line-height: 35px;

}

.news-area__one a.more{

  display: inline-block;

  margin-top: 20px;

  background: #c60000;

  color: #fff;

  border-radius: 6px;

  font-size: 16px;

  padding: 10px 40px;

  border: 1px #c60000 solid;

}

.news-area__one:hover a{

  color:#c60000

}

.news-area__one:hover a.more{

  background:#fff;

  border: 1px #c60000 solid;

}

.news-area_list{

  margin: 0 0 40px 0;

}

.news-area_box{

  display: flex;

  padding: 30px 0;

  border: 1px #e4e4e4 solid;

  border-left: 0;

  border-right: 0;

  border-top: 1px #fff solid;

  transition: all .3s ease;

}

.news-area_box:hover{

  border: 1px #c60000 solid;

  border-left: 0;

  border-right: 0;

  border-top: 1px #c60000 solid;

}

.news-area_box-time{

  flex: 0 0 140px;

  margin-right: 20px;;

  border-right: 1px #ccc solid;

}

.news-area_box-time span{

  display: block;

  text-align: center;

}

.news-area_box-time span:nth-child(1){

  font-size: 72px;

  font-weight: lighter;

  color: #333;

}

.news-area_box-time span:nth-child(2){

  font-size: 20px;

  color: #333;

}

.news-area_box-intro a{

  font-size: 24px;

  color:#000;

  display: block;

  margin-bottom: 15px;;

  line-height:35px;

}

.news-area_box-intro p{

  font-size: 16px;

  color:#8d8d8d;

  line-height: 30px;

}

.news-area_box:hover .news-area_box-time span{

  color: #c60000

}

.news-area_box:hover .news-area_box-intro a{

  color: #c60000

}



.newsny-area__one{

  margin-top: 60px;;

  padding-bottom: 30px;

  border-bottom: 1px #e4e4e4 solid;

}

.newsny-area__one a.title{

  font-size: 24px;

  color:#000;

  margin-bottom: 15px;;

}

.newsny-area__one span.time{

  font-size: 14px;

  color:#9f9f9f;

  margin-bottom: 15px;;

}

.newsny-area__one .intro{

  font-size: 16px;

  color:#232121;

  line-height: 35px;

}

.prev-next{

  background: #f7f7f7;

  padding: 15px;

  display: flex;

  align-items: center;

  justify-content: space-between;

}



.prev-next .prev a,

.prev-next .next a{

  display: flex;

  align-items: center;

}

.prev-next .prev span:nth-child(1) i{

  margin-right: 6px

}

.prev-next .next span:nth-child(2) i{

  margin-left: 6px

}

.prev-next .prev span:nth-child(1){

  margin-right: 10px;

}

.prev-next .next span:nth-child(2){

  margin-left: 10px;

}

.prev-next .prev span:nth-child(1),

.prev-next .next span:nth-child(2){

  color: #c60000;

  font-size: 16px;;

}

.prev-next .prev span:nth-child(2),

.prev-next .next span:nth-child(1){

  color: #333;

  font-size: 16px;;

}

@media (max-width: 991px){

  .prev-next{

    flex-direction: column;

  }

  .prev-next .prev a, 

  .prev-next .next a{

    flex-direction: column;

    margin-bottom: 10px;

  }

  .prev-next span{

    display: block;

  }

}

.nybcontact-box{

  position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    width: 100%;

    height: 100%;

    color: white;

}

.bannercontact{

  width:380px;

  background: #343434;

  display: flex;

  flex-direction: row;

  align-items: stretch;

  justify-content:center;

  position: relative;

  left: 39%;

  top: 43%;

}

.bannercontact:before{

  content: '';

  background: url(../images/icon/icon8.png);

  display: block;

  width: 31px;

  height:37px;

  position: absolute;

  left: -60px;

  top:10px;

  -webkit-animation: pulse 2s infinite;

            animation: pulse 2s infinite;

}



@-webkit-keyframes pulse {

  0% {

    -webkit-transform: translate(0, 0);

            transform: translate(0, 0); }



  50% {

    -webkit-transform: translate(0, 10px);

            transform: translate(0, 10px); }



  100% {

    -webkit-transform: translate(0, 0);

            transform: translate(0, 0); } }



@keyframes pulse {

  0% {

    -webkit-transform: translate(0, 0);

            transform: translate(0, 0); }



  50% {

    -webkit-transform: translate(0, 10px);

            transform: translate(0, 10px); }



  100% {

    -webkit-transform: translate(0, 0);

            transform: translate(0, 0); } }



.bannercontact h4{

  font-size: 20px;

  color:#fff;

  margin-bottom: 15px;

}

.bannercontact p{

  font-size: 16px;

  color:#b5b5b5;

  line-height:30px;

}

.bannercontact div:nth-child(1){

  padding: 20px;

}

.bannercontact div:nth-child(2){

  background: #1f1f1f; 

  color: #fff; 

  padding: 0 10px;

}

.bannercontact div:nth-child(2) a{

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content:center;

  height: 100%

}

.bannercontact div:nth-child(2) a p{

  color:#fff;

  line-height: 20px;

  font-size:16px;;

}

@media (max-width: 1200px){

  .bannercontact:before{

    background: none;

  }

  .nybcontact-box{

    display: flex;

    align-items: center;

    justify-content: center;

  }

  .bannercontact{

    left: auto;

    top: auto;

  }

}

.contact-area{

  margin: 60px 0;

}

.contact-area input{

  width: 100%;

  background: #f4f4f4;

  border: 0;

  line-height: 40px;

  padding-left: 15px;

  margin-bottom: 10px;

}

.contact-area input:last-child{

  margin-bottom: 0;

}

.contact-area textarea{

  width: 100%;

  height: 100%;

  background: #f4f4f4;

  border: 0;

  line-height: 40px;

  padding-left: 10px;;

}

.contact-area button{

  display: inline-block;

  border: 0;

  background: #c60000;

  color:#fff;

  line-height: 40px;

  padding: 0 40px;

  float: right;

  margin-top: 15px;;

}



.join-icon{

  text-align: center;

  margin: 60px 0;

}

.join-icon h2,

.join-list-title{

  font-size: 30px;

  color:#000;

  margin-bottom: 40px;

  text-align: center;

}

.join-icon p{

  margin-top: 10px;;

  font-size: 16px;

  color:#575757;

}



#accordion{

  margin-bottom: 60px;

  border-bottom: 1px solid rgba(0,0,0,.125);

}

#accordion .card{

  border: 0;

}

#accordion .card-header{

  background: #fff;

  font-size: 24px;

  line-height: 50px;

  border:0;

  padding: 0;

}



#accordion .card-header a{

  display: flex;

  justify-content:space-between;

  align-items: center;

  color:#000;

  border-top: 1px solid rgba(0,0,0,.125);

  border-bottom: 1px solid rgba(0,0,0,.125);

}

#accordion .card-header a.card-link{

  color: #c60000;

  border-top: 1px solid #c60000;

  border-bottom: 1px solid #c60000;

}

#accordion .card-header a.card-link i:nth-child(1){

  display: none;

}

#accordion .card-header a.card-link.collapsed{

  color:#000;

  border-top: 1px solid rgba(0,0,0,.125);

  border-bottom: 0;

}

#accordion .card-header a.card-link.collapsed i:nth-child(1){

  display: block;

}

#accordion .card-header a.card-link.collapsed i:nth-child(2){

  display: none;

}

.join-one{

  display: flex;

  margin-bottom: 20px;

}

.join-one p{

  margin-right: 40px;

  font-size: 16px;

  color:#000000;

}

.join-one p span{

  color:#848484;

}

.join-two{

  display: flex;

  flex-direction: row;

  margin-bottom: 20px;

}

.join-two-one{

  font-size: 16px;

  color:#000000;

  line-height:30px;

  flex: 0 0 84px;

  min-width: 84px;

}

.join-two-two{

  font-size: 16px;

  color:#848484;

  line-height:30px;

}

.video-area_img{

  position: relative;

  overflow: hidden;

}

.video-area_img a{

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 60px;

  color:#fff;

}

.video-area_hover .title{

  margin-top: 10px;

  display: flex;

  align-items: center;

  justify-content: flex-start;

  color:#333;

  overflow: hidden;

  text-overflow: ellipsis;

  white-space: nowrap;

}

.video-area_hover .title i{

  margin-right: 10px;

}

.video-area_box img{

  transition: all .4s ease

}

.video-area_box:hover .video-area_img img{

  transform: scale(1.05) rotate(0deg) translateY(0);

}

.videos_bg {

  position: fixed;

  width: 100%;

  height: 100%;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: rgba(0, 0, 0, 0.7);

  z-index: 10000001;

  display: none;

}

.videos__box {

  position: fixed;

  width: 800px;

  height: 500px;

  top: 20%;

  left: 25%;

  right: 25%;

  bottom: 20%;

  background: rgba(0, 0, 0, 1);

  z-index: 10000003;

  overflow: hidden;

  display: none;

}

.videos__box .videos_close {

  color: #fff;

  float: right;

  position: absolute;

  right: 10px;

  top: 4px;

  width: 40px;

  height: 50px;

  z-index: 10000010;

  cursor: pointer;

}

#videos{

  width: 100%;height:100%;

}

.qudao_box{

  padding-top: 30px;

  border-top: 1px #e4e4e4 solid;

  border-bottom: 1px #e4e4e4 solid;

}

.qudao_intro{

  font-size: 16px;

  color: #5d5d5d;

  line-height: 40px;

  text-align: left;

}

.qudao_contact{

  font-size: 16px;

  line-height: 40px;

  color: #c70000;

  text-align: left;

}



