@import url(reset.css);
@font-face {
  font-family: "Impact";
  src: url("../../fonts/impact.eot");
  /* IE9 Compat Modes */
  src: url("../../fonts/impact.eot?#iefix") format("embedded-opentype"), url("../../fonts/impact.otf") format("opentype"), url("../../fonts/impact.svg") format("svg"), url("../../fonts/impact.ttf") format("truetype"), url("../../fonts/impact.woff") format("woff"), url("../../fonts/impact.woff2") format("woff2");
  /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}
/* Color */
.cd-nav-trigger {
  position: fixed;
  z-index: 101;
  left: 114px;
  top: 115px;
  height: 54px;
  width: 54px;
  background-color: #bf9b5f;
  border-radius: 50%;
  cursor: pointer;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .cd-nav-trigger {
    position: fixed;
    z-index: 10000;
    left: 1%;
    top: 0px;
    transform: scale(0.7, 0.7);
  }
}
.cd-nav-trigger .cd-nav-icon {
  /* icon created in CSS */
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 22px;
  height: 2px;
  background-color: #ffffff;
}

.cd-nav-trigger .cd-nav-icon::before, .cd-nav-trigger .cd-nav-icon:after {
  /* upper and lower lines of the menu icon */
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  /* 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: -webkit-transform 0.5s, width 0.5s, top 0.3s;
  -moz-transition: -moz-transform 0.5s, width 0.5s, top 0.3s;
  transition: transform 0.5s, width 0.5s, top 0.3s;
}

.cd-nav-trigger .cd-nav-icon::before {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px);
}

.cd-nav-trigger .cd-nav-icon::after {
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: translateY(6px);
  -moz-transform: translateY(6px);
  -ms-transform: translateY(6px);
  -o-transform: translateY(6px);
  transform: translateY(6px);
}

.no-touch .cd-nav-trigger:hover .cd-nav-icon::after {
  top: 2px;
}

.no-touch .cd-nav-trigger:hover .cd-nav-icon::before {
  top: -2px;
}

.cd-nav-trigger svg {
  position: absolute;
  top: 0;
  left: 0;
}

.cd-nav-trigger circle {
  /* circle border animation */
  -webkit-transition: stroke-dashoffset 0.4s 0s;
  -moz-transition: stroke-dashoffset 0.4s 0s;
  transition: stroke-dashoffset 0.4s 0s;
}

.navigation-is-open .cd-nav-trigger {
  /* rotate trigger when navigation becomes visible */
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
  .navigation-is-open .cd-nav-trigger {
    transform: scale(0.7, 0.7);
  }
}
.navigation-is-open .cd-nav-trigger .cd-nav-icon::after,
.navigation-is-open .cd-nav-trigger .cd-nav-icon::before {
  /* animate arrow --> from hamburger to arrow */
  width: 50%;
  -webkit-transition: -webkit-transform 0.5s, width 0.5s;
  -moz-transition: -moz-transform 0.5s, width 0.5s;
  transition: transform 0.5s, width 0.5s;
}

.navigation-is-open .cd-nav-trigger .cd-nav-icon::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navigation-is-open .cd-nav-trigger .cd-nav-icon::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.no-touch .navigation-is-open .cd-nav-trigger:hover .cd-nav-icon::after, .no-touch .navigation-is-open .cd-nav-trigger:hover .cd-nav-icon::before {
  top: 0;
}

.navigation-is-open .cd-nav-trigger circle {
  stroke-dashoffset: 0;
  -webkit-transition: stroke-dashoffset 0.4s 0.3s;
  -moz-transition: stroke-dashoffset 0.4s 0.3s;
  transition: stroke-dashoffset 0.4s 0.3s;
}

.cd-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  height: 100%;
  width: 288px;
  background-color: #1f1f1f;
  /* 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: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.7s;
  -moz-transition: -moz-transform 0.7s;
  transition: transform 0.7s;
  -webkit-transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
  -moz-transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
  transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
}

@media screen and (max-width: 767px) {
  .cd-nav {
    position: fixed;
    z-index: 100;
    top: 0;
    height: 100%;
    width: 50%;
  }
}
.cd-nav .cd-navigation-wrapper {
  /* all navigation content */
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 40px 5% 40px 100;
}

.navigation-is-open .cd-nav {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
  -moz-transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
  transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
}

.cd-nav .cd-primary-nav {
  margin-top: 227px;
}

.cd-nav .cd-primary-nav li {
  cursor: pointer;
  color: #fff;
  margin: 1.6em 0;
  text-align: center;
}

.cd-nav .cd-primary-nav li:hover {
  color: #bf9b5f;
}

.cd-nav .cd-primary-nav a {
  font-family: "Merriweather", serif;
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.3);
  display: inline-block;
}

.cd-nav .cd-primary-nav a.selected {
  color: #ffffff;
}

.no-touch .cd-nav .cd-primary-nav a:hover {
  color: #ffffff;
}

.cd-nav .cd-contact-info {
  margin-top: 80px;
}

.cd-nav .cd-contact-info li {
  font-family: "Merriweather", serif;
  margin-bottom: 1.5em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.3);
}

.cd-nav .cd-contact-info a {
  color: #ffffff;
}

.cd-nav .cd-contact-info span {
  display: block;
}

.cd-nav .cd-contact-info li, .cd-nav .cd-contact-info a, .cd-nav .cd-contact-info span {
  font-size: 1.6rem;
}

.no-js main {
  height: auto;
  overflow: visible;
}

.no-js .cd-nav {
  position: static;
  visibility: visible;
}

.lang {
  position: absolute;
  left: 123px;
  bottom: 48px;
  color: #fff;
  z-index: 15;
  cursor: pointer;
}
.lang span:hover {
  color: #bf9b5f;
}
.lang a:link, .lang a:visited {
  color: #fff;
}
.lang a:hover {
  color: #bf9b5f;
}

@media screen and (max-width: 767px) {
  .lang {
    left: 21%;
    bottom: 24px;
  }
}
.cn {
  font-family: Microsoft YaHei, Arial;
}
.cn .box--full {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.cn .content--wrap {
  width: 100%;
  position: absolute;
  z-index: 11;
  overflow: hidden;
  top: 0;
  left: 0;
}
.cn .box--onepage {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cn .black--mask {
  background-color: #000;
  z-index: 10;
  opacity: 0;
}
.cn .white {
  color: #fff;
}
.cn .black {
  color: #1f1f1f;
}
.cn .orange {
  color: #bf9b5f;
}
.cn h3 {
  font-size: 64px;
  position: absolute;
  z-index: 10;
  top: 50%;
  margin: -110px 0 0 0;
  left: 272px;
  font-weight: border;
  line-height: 1.5em;
}
.cn h3 span {
  font-weight: border;
  font-size: 48px;
}
.cn h5 {
  font-size: 32px;
  padding: 1em 0 0.75em 1em;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .cn h5 {
    font-size: 24px;
    padding: 1em 0 0.75em 0;
    text-align: center;
  }
}
.logo img{
  width: 100%;
}
.cn .logo {
      position: fixed;
    z-index: 3;
    width: 132px;
    left: 76px;
    top: 34px;
    z-index: 120;
    cursor: pointer;
}
.cn .logo--bg {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .cn .logo {
    position: fixed;
    z-index: 2;
    width: 24.9%;
    left: 71.8%;
    top: 17px;
    z-index: 120;
  }
  .cn .logo img {
    width: 100%;
  }
}
.cn .langTop--wrap {
  position: absolute;
  right: 34px;
  top: 34px;
  color: #999;
  z-index: 15;
  cursor: pointer;
  font-size: 16px;
  line-height: 40px;
}
.cn .langTop--wrap span:hover {
  color: #bf9b5f;
}
.cn .langTop--wrap a:link, .cn .langTop--wrap a:visited {
  color: #999;
}
.cn .langTop--wrap a:hover {
  color: #bf9b5f;
}
@media screen and (max-width: 767px) {
  .cn .langTop--wrap {
    left: 42%;
    font-size: 12px;
    top: 10px;
  }
}
.cn .control--wrap {
  width: 310px;
  position: absolute;
  top: 34px;
  left: 50%;
  margin: 0 0 0 -155px;
  font-size: 16px;
  color: #1f1f1f;
  line-height: 40px;
  z-index: 15;
}
.cn .control--wrap .previous {
  position: absolute;
  top: 0;
  left: 44px;
  z-index: 1;
  cursor: pointer;
  text-indent: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.cn .control--wrap .previous span {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  position: absolute;
  top: 0;
  left: 80px;
}
.cn .control--wrap .previous:hover {
  text-indent: 2em;
  color: #bf9b5f;
  width: 160px;
  height: 40px;
}
.cn .control--wrap .previous:hover span {
  left: -24px;
}
.cn .control--wrap .next {
  position: absolute;
  top: 0;
  left: 194px;
  z-index: 1;
  cursor: pointer;
  text-indent: 24px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  width: 100px;
  height: 40px;
}
.cn .control--wrap .next span {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  position: absolute;
  top: 0;
  left: -24px;
}
.cn .control--wrap .next:hover {
  text-indent: 0;
  color: #bf9b5f;
}
.cn .control--wrap .next:hover span {
  left: 40px;
}
@media screen and (max-width: 767px) {
  .cn .control--wrap {
    width: 100%;
    position: fixed;
    top: 49%;
    left: 0%;
    color: #1f1f1f;
    margin: 0;
    z-index: 12;
    font-size: 12px;
  }
  .cn .control--wrap .previous {
    position: absolute;
    top: 0;
    left: 20px;
    z-index: 1;
    cursor: pointer;
    text-indent: 1.5em;
    text-indent: 0;
    color: #bf9b5f;
    cursor: pointer;
  }
  .cn .control--wrap .previous span {
    top: 0;
    left: -1em;
  }
  .cn .control--wrap .previous:hover {
    text-indent: 0em;
    color: #bf9b5f;
  }
  .cn .control--wrap .previous:hover span {
    top: 0;
    left: -1em;
  }
  .cn .control--wrap .next {
    position: absolute;
    top: 0;
    left: 80%;
    z-index: 1;
    cursor: pointer;
    text-indent: 28px;
    color: #bf9b5f;
    width: 100px;
    height: 40px;
    cursor: pointer;
  }
  .cn .control--wrap .next span {
    left: 30px;
  }
  .cn .control--wrap .next:hover {
    text-indent: 28px;
    color: #bf9b5f;
  }
  .cn .control--wrap .next:hover span {
    left: 30px;
  }
}
.cn .topButton--wrap {
  position: absolute;
  z-index: 11;
  width: 28px;
  height: 42px;
  bottom: 122px;
  left: 90%;
  display: block;
  cursor: pointer;
}
.cn .mouse--wrap {
  position: absolute;
  z-index: 15;
  width: 113px;
  height: 80px;
  left: 50%;
  margin: 0 0 0 -56px;
  bottom: 0;
  text-align: center;
  font-size: 16px;
}
.cn .mouse--wrap span {
  width: 18px;
  position: absolute;
  left: 43px;
  top: 32px;
  z-index: 1;
  animation: mouseloopCss 1s infinite linear;
}
.cn .mouse--wrap span img {
  width: 100%;
}
@keyframes mouseloopCss {
  0% {
    top: 32px;
  }
  50% {
    top: 22px;
  }
  100% {
    top: 32px;
  }
}
.cn .inner--wrap {
  width: 100%;
  max-width: 875px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
.cn .client--content, .cn .contact--content, .cn .export--content, .cn .join--content {
  display: none;
}
.cn .mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .cn .mobile {
    display: block;
  }
}
.cn .pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .cn .pc {
    display: none;
  }
}
.cn .content--footer {
  width: 100%;
  background-color: #000;
  padding: 2em 0;
}
.cn .content--footer p {
  font-size: 12px;
  color: #797979;
  width: 96%;
  line-height: 1.5em;
  margin: 0 auto;
  text-align: center;
}
.cn .about--1 {
  z-index: 1;
}
.cn .about--2 {
  z-index: 2;
}
.cn .about--3 {
  z-index: 3;
}
.cn .about--bg--1 {
  overflow: hidden;
}
.cn .about--bg--2 {
  background-color: #e5e5e5;
}
.cn .about--bg--3 {
  background: url("../../images/cn/1/2.jpg") 0 0 no-repeat;
  background-size: cover;
}
.cn .history--itenm {
  height: 80px;
}
.cn .line {
  width: 1px;
  background-color: #1f1f1f;
  position: absolute;
  top: 111px;
  left: 50%;
  height: 73%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .cn .line {
    height: 79%;
  }
}
.cn .history--itenm {
  width: 46.28%;
  position: absolute;
  z-index: 2;
}
.cn .h-left {
  position: relative;
  padding-left: 6.08%;
}
.cn .h-left .history--cricle {
  width: 40px;
  height: 40px;
  font-size: 12px;
  border-radius: 50%;
  background: #1f1f1f;
  color: #fff;
  line-height: 40px;
  text-align: center;
  right: 0;
  position: absolute;
}
.cn .h-left .history--txt {
  font-size: 14px;
  color: #373737;
  position: absolute;
  right: 56px;
  line-height: 1.5em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .cn .history--itenm {
    width: 50%;
    position: absolute;
    z-index: 2;
  }
  .cn .h-left {
    position: relative;
    padding-left: 6.08%;
  }
  .cn .h-left .history--cricle {
    width: 40px;
    height: 40px;
    font-size: 12px;
    border-radius: 50%;
    background: #1f1f1f;
    color: #fff;
    line-height: 40px;
    text-align: center;
    right: 0;
    position: absolute;
  }
  .cn .h-left .history--txt {
    font-size: 10px;
    color: #373737;
    position: absolute;
    right: 56px;
    line-height: 1.5em;
    text-align: right;
  }
}
.cn .h-right {
  position: relative;
  margin-left: 47.74%;
}
.cn .h-right .history--cricle {
  width: 40px;
  height: 40px;
  font-size: 12px;
  border-radius: 50%;
  background: #1f1f1f;
  color: #fff;
  line-height: 40px;
  text-align: center;
  left: 0;
  position: absolute;
}
.cn .h-right .history--txt {
  font-size: 14px;
  color: #373737;
  position: absolute;
  left: 56px;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .cn .h-right {
    position: relative;
    margin-left: 45.5%;
  }
  .cn .h-right .history--cricle {
    width: 40px;
    height: 40px;
    font-size: 12px;
    border-radius: 50%;
    background: #1f1f1f;
    color: #fff;
    line-height: 40px;
    text-align: center;
    left: 0;
    position: absolute;
  }
  .cn .h-right .history--txt {
    font-size: 10px;
    color: #373737;
    position: absolute;
    left: 56px;
    line-height: 1.5em;
  }
}
.cn .about--3 p {
  font-size: 14px;
  color: #fff;
  padding: 0 32px 1.5em 32px;
  line-height: 1.5em;
}
.cn .about--3 .about--3--img {
  width: 69.6%;
  margin: 20px auto;
  position: relative;
}
.cn .about--3 .about--3--img img {
  width: 100%;
}
.cn .about--3 .about--3--img ul {
  display: table;
  width: 100%;
}
.cn .about--3 .about--3--img ul .about--3--1 {
  top: 0;
  left: 0%;
}
.cn .about--3 .about--3--img ul .about--3--2 {
  top: 0;
  left: 40%;
}
.cn .about--3 .about--3--img ul .about--3--3 {
  top: 0;
  left: 80%;
}
.cn .about--3 .about--3--img ul .about--3--4 {
  top: 200px;
  left: 20%;
}
.cn .about--3 .about--3--img ul .about--3--5 {
  top: 200px;
  left: 60%;
}
.cn .about--3 .about--3--img ul li {
  position: absolute;
  width: 25%;
  border: 1px solid #fff;
  cursor: pointer;
}
.cn .about--3 .about--3--img ul li:hover, .cn .about--3 .about--3--img ul li.active {
  border: 1px solid #bf9b5f;
  background-color: #bf9b5f;
}
.cn .about--3 .about--3--img ul .gap {
  margin-right: 5.2%;
}
.cn .history--sum {
  width: 96%;
  position: relative;
  margin: 0 auto 0 auto;
  max-width: 707px;
  padding-bottom: 60px;
}
.cn .history--sum img {
  width: 100%;
}
.cn .history--sum .history--sum--1 {
  position: absolute;
  top: 20%;
  right: 86%;
  font-size: 72px;
  color: #bf9b5f;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .cn .history--sum .history--sum--1 {
    top: 19%;
  }
}
.cn .history--sum .history--sum--2 {
  position: absolute;
  top: 23%;
  right: 47%;
  font-size: 72px;
  color: #bf9b5f;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .cn .history--sum .history--sum--2 {
    top: 21%;
  }
}
.cn .history--sum .history--sum--3 {
  position: absolute;
  top: 25%;
  right: 8.5%;
  font-size: 72px;
  color: #bf9b5f;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .cn .history--sum .history--sum--3 {
    top: 22%;
  }
}
.cn .about--layout--1 {
  background: url("../../images/cn/bg/2-1.jpg") no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
.cn .about--layout--2 {
  background: url("../../images/cn/bg/2-3.png") no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
.cn .about--layout--3 {
  background: url("../../images/cn/bg/2-2.png") no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
.cn .about--title {
  position: absolute;
  top: 40%;
  width: 200px;
  z-index: 1;
  left: 50%;
  max-width: 200px;
  margin-left: -100px;
}
.cn .about--title img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cn .about--title {
        top: 42%;
    width: 32%;
    z-index: 1;
    left: 50%;
    margin-left: -16.5%;
  }
  .cn .about--title img {
    width: 100%;
  }
}
.cn .about--layout--mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .cn .about--layout--mobile {
    background: url("../../images/cn/1/mobile--bg.jpg") 0 0 no-repeat;
    background-size: cover;
    display: block;
    width: 100%;
    z-index: 0;
    height: 100%;
  }
  .cn .about--3 .about--3--img {
    width: 96%;
    margin: 0px auto;
    position: relative;
  }
  .cn .about--3 .about--3--img img {
    width: 100%;
  }
  .cn .about--3 .about--3--img ul {
    display: table;
    width: 100%;
  }
  .cn .about--3 .about--3--img ul .about--3--1 {
    top: 0;
    left: 8%;
  }
  .cn .about--3 .about--3--img ul .about--3--2 {
    top: 0;
    left: 40%;
  }
  .cn .about--3 .about--3--img ul .about--3--3 {
    top: 0;
    left: 72%;
  }
  .cn .about--3 .about--3--img ul .about--3--4 {
    top: 100px;
    left: 20%;
  }
  .cn .about--3 .about--3--img ul .about--3--5 {
    top: 100px;
    left: 60%;
  }
  .cn .about--3 .about--3--img ul li {
    position: absolute;
    width: 20%;
    border: 1px solid #fff;
    cursor: pointer;
  }
  .cn .about--3 .about--3--img ul li:hover, .cn .about--3 .about--3--img ul li.active {
    border: 1px solid #bf9b5f;
    background-color: #bf9b5f;
  }
  .cn .about--3 .about--3--img ul .gap {
    margin-right: 5.2%;
  }
}
.cn .about--title--1 {
  animation: at1loop1Css 5s infinite linear;
}
@keyframes at1loop1Css {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cn .about--title--2 {
  opacity: 0;
  animation: at2loop1Css 5s infinite linear;
}
@keyframes at2loop1Css {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.cn .client--1 {
  z-index: 1;
}
.cn .client--2 {
  z-index: 2;
  position: relative;
}
.cn .client--item--wrap {
  width: 100%;
  padding-bottom: 40px;
  display: table;
  position: relative;
}
.cn .client--item--wrap .client--item {
  width: 168px;
  height: 163px;
  margin-bottom: 6px;
  float: left;
  opacity: 0.85;
  cursor: pointer;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.cn .client--item--wrap .client--item img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cn .client--item--wrap .client--item {
    width: 32%;
    height: auto;
    margin-bottom: 3px;
    float: left;
    opacity: 0.85;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .cn .client--item--wrap .client--item img {
    width: 100%;
  }
}
.cn .client--item--wrap .client--item:hover {
  opacity: 1;
}
.cn .client--item--wrap .client--rap {
  margin-right: 6px;
}
.cn .client--item--wrap .client--mobile--rap {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .cn .client--item--wrap .client--rap {
    margin-right: 0px;
  }
  .cn .client--item--wrap .client--mobile--rap {
    margin-left: 3px;
  }
}
@media screen and (max-width: 767px) {
  .cn .client--item--wrap {
    width: 96%;
    padding-bottom: 80px;
    display: table;
    position: relative;
    margin: 0 auto;
  }
}
.cn .client--bg {
  width: 100%;
  overflow-y: hidden;
  z-index: -1;
  display: none;
}
.cn .client--bg img {
  width: 100%;
}
.cn .client--detial {
  background-color: #fff;
  position: absolute;
  width: 85%;
  max-width: 1024px;
  min-height: 545px;
  display: none;
}
.cn .client--detial .client--logo {
  width: 150px;
  height: 105px;
  overflow-y: hidden;
  position: relative;
  margin: 0 auto;
}
.cn .client--detial .client--logo img {
  position: absolute;
  width: 100%;
  left: 0;
  top: -20px;
}
.cn .client--detial .client--line {
  width: 96%;
  margin: 0 auto;
  line-height: 23px;
  height: 23px;
  border-top: 1px solid #1f1f1f;
}
.cn .client--detial .client--img {
  width: 44%;
  float: left;
  margin-left: 8.7%;
}
.cn .client--detial .client--img img {
  width: 100%;
}
.cn .client--detial .client--txt {
  width: 36.8%;
  float: left;
  margin-left: 3.7%;
  font-size: 14px;
  line-height: 1.5em;
  color: #232323;
}
.cn .client--detial .client--close {
  position: absolute;
  top: 10px;
  right: 12px;
  cursor: pointer;
}
.cn .client--detial .client--link {
  width: 374px;
  margin: 35px auto 0 auto;
}
.cn .client--detial .client--link .client--tmaill {
  width: 184px;
  float: left;
  cursor: pointer;
}
.cn .client--detial .client--link .client--tmaill img {
  width: 100%;
}
.cn .client--detial .client--link .client--jd {
  width: 184px;
  float: right;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .cn .client--detial {
    width: 96%;
    max-width: 1024px;
    min-height: 565px;
    padding-top: 20px;
    display: none;
  }
  .cn .client--detial .client--logo {
    width: 100px;
    height: 80px;
    overflow-y: hidden;
    position: relative;
    margin: 0 auto;
  }
  .cn .client--detial .client--logo img {
    position: absolute;
    width: 100%;
    left: 0;
    top: -10px;
  }
  .cn .client--detial .client--line {
    width: 96%;
    margin: 0 auto;
    line-height: 23px;
    height: 23px;
    border-top: 1px solid #1f1f1f;
  }
  .cn .client--detial .client--img {
    width: 96%;
    float: left;
    margin-left: 2%;
  }
  .cn .client--detial .client--img img {
    width: 100%;
  }
  .cn .client--detial .client--txt {
    width: 96%;
    float: left;
    margin-left: 2%;
    font-size: 12px;
    line-height: 1.5em;
    color: #232323;
    padding-top: 2em;
  }
  .cn .client--detial .client--close {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
  }
  .cn .client--detial .client--link {
    width: 96%;
    margin: 35px auto 0 auto;
  }
  .cn .client--detial .client--link .client--tmaill {
    width: 45%;
    float: left;
    cursor: pointer;
  }
  .cn .client--detial .client--link .client--tmaill img {
    width: 100%;
  }
  .cn .client--detial .client--link .client--jd {
    width: 45%;
    float: right;
    cursor: pointer;
  }
  .cn .client--detial .client--link .client--jd img {
    width: 100%;
  }
}
.cn .client--bg--cover {
  width: 100%;
  position: absolute;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.6);
}
.cn .client--bg--cover--1 {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.cn .client--bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  overflow: hidden;
}
.cn .client--title {
  position: absolute;
  top: 50%;
  width: 32.35%;
  z-index: 1;
  left: 300px;
  max-width: 465px;
}
.cn .client--title img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cn .client--title {
    top: 45%;
    width: 58%;
    z-index: 1;
    left: 25%;
  }
  .cn .client--title img {
    width: 100%;
  }
}
.cn .client--layout--1 {
  background: url("../../images/cn/2/bg.jpg") 0 0 no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
.cn .client--layout--mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .cn .client--layout--mobile {
    background: url("../../images/cn/2/mobile--bg.jpg") 0 0 no-repeat;
    background-size: cover;
    display: block;
    width: 100%;
    z-index: 0;
    height: 100%;
  }
}
.cn .join--1 {
  z-index: 1;
}
.cn .join--2 {
  z-index: 2;
}
.cn .join--2 h5 {
  padding-left: 0;
}
.cn .join--3 {
  z-index: 3;
}
.cn .join--3 h5 {
  padding-left: 0;
}
.cn .join--p {
  font-size: 14px;
  line-height: 1.3em;
}
@media screen and (max-width: 767px) {
  .cn .join--p {
    font-size: 12px;
    width: 96%;
    margin: 0 auto;
    padding-bottom: 1.5em;
  }
}
.cn .join--bg--2 {
  background-color: #e5e5e5;
  padding-bottom: 50px;
}
.cn .join--bg--3 {
  background-color: transparent;
  background-image: url("../../images/cn/4/bg--2.jpg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 100px;
}
.cn .join--item--wrap {
  width: 100%;
  position: relative;
}
.cn .join--item--wrap .join--item:hover .join--item--txt {
  background-color: #bf9b5f;
  bottom: 0;
}
.cn .join--item--wrap .join--item {
  width: 31%;
  position: absolute;
  top: 0;
  overflow: hidden;
}
.cn .join--item--wrap .join--item img {
  width: 100%;
}
.cn .join--item--wrap .join--item .join--item--txt {
  width: 100%;
  background-color: rgba(255, 114, 0, 0.8);
  position: absolute;
  z-index: 1;
  bottom: -70px;
  left: 0;
  transition: all 1s;
}
.cn .join--item--wrap .join--item .join--item--txt h6 {
  font-size: 24px;
  font-weight: bolder;
  padding: 1em 0.6em 0.5em 0.6em;
  color: #fff;
}
.cn .join--item--wrap .join--item .join--item--txt h6 span {
  font-weight: normal;
  padding-left: 1em;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .cn .join--item--wrap .join--item .join--item--txt h6 {
    font-size: 16px;
    font-weight: bolder;
    padding: 1em 0.6em 0.5em 0.6em;
    color: #fff;
  }
  .cn .join--item--wrap .join--item .join--item--txt h6 span {
    font-weight: normal;
    padding-left: 1em;
    font-size: 11px;
  }
}
.cn .join--item--wrap .join--item .join--item--txt p {
  font-size: 16px;
  font-weight: bolder;
  padding: 0 1em 1.5em 1em;
  line-height: 1.5em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .cn .join--item--wrap .join--item .join--item--txt p {
    font-size: 12px;
    font-weight: bolder;
    padding: 0 1em 1.5em 1em;
    line-height: 1.5em;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .cn .join--item--wrap .join--item {
    width: 45%;
  }
  .cn .join--item--wrap .join--item .join--item--txt {
    font-size: 16px;
    bottom: 0;
    min-height: 130px;
  }
}
.cn .join--paging {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  height: 17px;
  position: relative;
}
.cn .join--paging span {
  width: 17px;
  background-color: #535353;
  border-radius: 50%;
  height: 17px;
  display: block;
  float: left;
  margin-right: 20px;
  cursor: pointer;
}
.cn .join--paging span:hover {
  background-color: #bf9b5f;
}
.cn .join--paging span.active {
  background-color: #bf9b5f;
}
.cn .job--list p {
  font-size: 14px;
  color: #fff;
  padding-bottom: 1.5em;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .cn .job--list p {
    font-size: 12px;
    padding: 0 0 1.2em 0;
    width: 96%;
    margin: 0 auto;
  }
}
.cn .job--list .line {
  width: 100%;
  line-height: 1em;
  font-size: 14px;
  border-top: 1px solid #fff;
  height: auto;
  position: static;
  padding-bottom: 1.5em;
  background-color: transparent;
}
.cn .job--list .job--item {
  width: 100%;
  margin-bottom: 36px;
}
.cn .job--list .job--item h5 {
  font-size: 22px;
  color: #bf9b5f;
  padding: 0 0 14px 0;
}
@media screen and (max-width: 767px) {
  .cn .job--list .job--item h5 {
    font-size: 16px;
    padding: 0 0 0.8em 0;
  }
}
.cn .job--list .job--item h6 {
  font-size: 14px;
  color: #fff;
  padding: 0 0 22px 0;
}
@media screen and (max-width: 767px) {
  .cn .job--list .job--item h6 {
    font-size: 12px;
    padding: 0 0 1.2em 0;
  }
}
.cn .job--list .job--item p {
  font-size: 14px;
  color: #fff;
  padding: 0 0 22px 0;
}
@media screen and (max-width: 767px) {
  .cn .job--list .job--item p {
    font-size: 12px;
    width: 100%;
    padding: 0 0 1.2em 0;
  }
}
.cn .job--list .job--item a:link, .cn .job--list .job--item a:visited {
  border: 2px solid #bf9b5f;
  color: #bf9b5f;
  font-size: 14px;
  padding: 10px;
  display: table;
  width: auto;
}
.cn .job--list .job--item a:hover {
  border: 2px solid #bf9b5f;
  color: #bf9b5f;
  background-color: #bf9b5f;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .cn .job--list .job--item {
    width: 96%;
    margin: 0 auto 16px auto;
  }
}
.cn .job--list .job--paging {
  width: 100%;
  text-align: center;
  height: 17px;
}
.cn .job--list .job--paging span {
  width: 17px;
  background-color: #535353;
  border-radius: 50%;
  height: 17px;
  display: block;
  float: right;
  margin-right: 20px;
  cursor: pointer;
  line-height: 17px;
  text-align: center;
}
.cn .job--list .job--paging span:hover {
  background-color: #bf9b5f;
}
.cn .job--list .job--paging span.active {
  background-color: #bf9b5f;
  color: #fff;
}
.cn .join--layout--1 {
  background: url("../../images/cn/bg/3-1.jpg") 0 0 no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
.cn .join--layout--2 {
  background: url("../../images/cn/bg/3-2.png") 0 0 no-repeat;
  position: absolute;
  top: 0;
  width: 140%;
  z-index: 0;
  height: 100%;
}
.cn .join--layout--3 {
  background: url("../../images/cn/bg/3-3.png") 0 0 no-repeat;
  position: absolute;
  top: 0;
  width: 140%;
  z-index: 0;
  height: 100%;
}
.cn .join--layout--4 {
  background: url("../../images/cn/bg/3-4.png") 0 0 no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
.cn .join--layout--5 {
  background: url("../../images/cn/bg/3-5.png") 0 0 no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
.cn .join--title {
  position: absolute;
  top: 50%;
  width: 21.35%;
  z-index: 1;
  left: 300px;
  max-width: 306px;
}
.cn .join--title img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cn .join--title {
    top: 45%;
    width: 45%;
    z-index: 1;
    left: 27.5%;
  }
  .cn .join--title img {
    width: 100%;
  }
}
.cn .join--layout--mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .cn .join--layout--mobile {
    background: url("../../images/cn/4/mobile--bg.jpg") 0 0 no-repeat;
    background-size: cover;
    display: block;
    width: 100%;
    z-index: 0;
    height: 100%;
  }
}
.cn .contact--1 {
  z-index: 1;
}
.cn .contact--2 {
  z-index: 2;
}
.cn .stars {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cn .stars span {
  width: 16px;
  height: 21px;
  background-color: transparent;
  background-image: url("../../images/cn/star.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
}
.cn .contact--bg--1 {
  overflow: hidden;
}
.cn .contact--bg--2 {
  background-color: transparent;
  background-image: url("../../images/cn/5/bg--2.jpg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.cn .map {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cn .map {
    width: 96%;
    margin: 0 auto;
  }
  .cn .map img {
    width: 100%;
  }
}
.cn .contact--wrap {
  clear: both;
  padding: 10px 8.7% 80px 8.7%;
}
.cn .contact--wrap .contact-item {
  width: 100%;
  position: relative;
  margin: 38px 0 19px 0;
}
.cn .contact--wrap .contact-item h5 {
  font-size: 18px;
  color: #ffffff;
  padding: 0 0 1.5em 0;
}
.cn .contact--wrap .contact-item p {
  font-size: 12pxc;
  color: #fff;
  padding-bottom: 0.5em;
}
.cn .contact--wrap .contact-item a:link, .cn .contact--wrap .contact-item a:visited {
  font-size: 14px;
  border: 2px solid #fff;
  padding: 1em;
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #fff;
}
.cn .contact--wrap .contact-item a:hover {
  border: 2px solid #fff;
  background-color: #fff;
  color: #bf9b5f;
}
@media screen and (max-width: 767px) {
  .cn .contact--wrap .contact-item {
    width: 100%;
    position: relative;
    margin: 24px 0 16px 0;
  }
  .cn .contact--wrap .contact-item h5 {
    font-size: 14px;
    color: #ffffff;
    padding: 0 0 1.5em 0;
  }
  .cn .contact--wrap .contact-item p {
    font-size: 12px;
    color: #fff;
    padding-bottom: 0.5em;
  }
  .cn .contact--wrap .contact-item a:link, .cn .contact--wrap .contact-item a:visited {
    font-size: 12px;
    border: 1px solid #fff;
    padding: 0.5em;
    position: absolute;
    right: 10px;
    bottom: 0px;
    color: #fff;
  }
  .cn .contact--wrap .contact-item a:hover {
    border: 2px solid #fff;
    background-color: #fff;
    color: #bf9b5f;
  }
}
.cn .contact--wrap hr {
  color: #fff;
}
.cn .contact--layout--1 {
  background: url("../../images/cn/bg/1-1.jpg") 0 0 no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
.cn .contact--layout--2 {
  background: url("../../images/cn/bg/1-2.png") 0 0 no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
.cn .contact--title {
  position: absolute;
  top: 50%;
  width: 33.5%;
  z-index: 1;
  left: 300px;
  max-width: 482px;
}
.cn .contact--title img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cn .contact--title {
    top: 45%;
    width: 60%;
    z-index: 1;
    left: 25%;
  }
  .cn .contact--title img {
    width: 100%;
  }
}
.cn .contact--layout--mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .cn .contact--layout--mobile {
    background: url("../../images/cn/5/mobile--bg.jpg") 0 0 no-repeat;
    background-size: cover;
    display: block;
    width: 100%;
    z-index: 0;
    height: 100%;
  }
}
.cn .expert--1 {
  z-index: 1;
}
.cn .expert--2 {
  z-index: 2;
}
.cn .expert--bg--2 {
  background-color: #212121;
}
.cn .expert--wrap {
  width: 100%;
}
.cn .expert--wrap ul {
  display: table;
  width: 100%;
}
.cn .expert--wrap ul li {
  float: left;
  width: 15.5%;
  border: 1px solid #474747;
  cursor: pointer;
}
.cn .expert--wrap ul li img {
  width: 100%;
}
.cn .expert--wrap ul li:hover, .cn .expert--wrap ul li.active {
  border: 1px solid #bf9b5f;
  background-color: #bf9b5f;
}
.cn .expert--wrap ul .gap {
  margin-right: 5.2%;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap ul {
    display: table;
    width: 96%;
    margin-left: 2%;
  }
  .cn .expert--wrap ul li {
    float: left;
    width: 17.7%;
    border: 1px solid #474747;
    cursor: pointer;
  }
  .cn .expert--wrap ul li img {
    width: 100%;
  }
  .cn .expert--wrap ul li:hover, .cn .expert--wrap ul li.active {
    border: 1px solid #bf9b5f;
    background-color: #bf9b5f;
  }
  .cn .expert--wrap ul .gap {
    margin-right: 2%;
  }
}
.cn .expert--wrap .expert--content {
  width: 100%;
  position: relative;
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content {
    background-color: #212121;
    display: table;
  }
}
.cn .expert--wrap .expert--content img {
  width: 100%;
}
.cn .expert--wrap .expert--content .expert--c--1 {
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 0;
  /*.expert--c--1--1{
      left: 0%;
  }
  .expert--c--1--2{
      left: 20%;
      @media screen and (max-width: 767px) {
          left: 6%;
      }
  }
  .expert--c--1--3{
      left: 40%;
      @media screen and (max-width: 767px) {
          left: 9%;
      }
  }
  .expert--c--1--4{
      left: 60%;
      @media screen and (max-width: 767px) {
          left: 21%;
      }
  }
  .expert--c--1--5{
      left: 80%;
      @media screen and (max-width: 767px) {
          left: 24%;
      }
  }*/
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--1 {
    width: 96%;
    left: 2%;
    position: relative;
  }
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--1--c {
  width: 19.2%;
  float: left;
  position: absolute;
  overflow: hidden;
  z-inde: 1;
  top: 0;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--1 .expert--c--1--c {
    width: 30%;
    height: 240px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
    float: auto;
  }
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--1--c img {
  width: 100%;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--1--c .expert--c--1--c--bg {
  width: 100%;
  transition: all 1s;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--1--c h5 {
  font-size: 18px;
  color: #fff;
  text-align: center;
  padding: 1em 6%;
  background-color: #bf9b5f;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin: 0;
  width: 90%;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--1 .expert--c--1--c h5 {
    font-size: 12px;
  }
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left {
  width: 48%;
  float: left;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--1 .expert--c--left {
    position: static;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
  }
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left {
  width: 100%;
  height: 252px;
  position: relative;
  overflow: hidden;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left img {
  transition: all 1s;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left .expert--c--bg--mask {
  position: absolute;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 252px;
  top: 0;
  left: 0;
  transition: all 1s;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left .expert--c--title {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  width: 204px;
  height: 201px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left .expert--c--c--item {
  width: 85%;
  position: absolute;
  z-index: 3;
  left: 10px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left .expert--c--c--item .e--c--c--i--number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #bf9b5f;
  font-size: 42px;
  line-height: 48px;
  text-align: center;
  color: #bf9b5f;
  background-color: #fff;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left .expert--c--c--item .e--c--c--i--txt {
  color: #fff;
  font-size: 14px;
  line-height: 1.3em;
  position: absolute;
  top: 10px;
  left: 60px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left .e--c--c--i--1 {
  top: 20px;
  left: 10px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left .e--c--c--i--2 {
  top: 92px;
  left: 10px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left .e--c--c--i--3 {
  top: 170px;
  left: 10px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left:hover .expert--c--bg--mask {
  background-color: rgba(0, 0, 0, 0.8);
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left:hover .expert--c--bg img {
  transform: scale(1.1);
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right {
  width: 100%;
  height: 252px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right img {
  transition: all 1s;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .expert--c--bg--mask {
  position: absolute;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 252px;
  top: 0;
  left: 0;
  transition: all 1s;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .expert--c--title {
  position: absolute;
  z-index: 4;
  right: 0;
  top: 0;
  width: 204px;
  height: 201px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .expert--c--c--item {
  width: 85%;
  position: absolute;
  z-index: 3;
  left: 10px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .expert--c--c--item .e--c--c--i--number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #bf9b5f;
  font-size: 42px;
  line-height: 48px;
  text-align: center;
  color: #bf9b5f;
  background-color: #fff;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .expert--c--c--item .e--c--c--i--txt {
  color: #fff;
  font-size: 14px;
  line-height: 1.3em;
  position: absolute;
  top: 10px;
  left: 60px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .e--c--c--i--1 {
  top: 10px;
  left: 10px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .e--c--c--i--2 {
  top: 72px;
  left: 10px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .e--c--c--i--3 {
  top: 134px;
  left: 10px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .e--c--c--i--4 {
  top: 190px;
  left: 10px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right:hover .expert--c--bg--mask {
  background-color: rgba(0, 0, 0, 0.8);
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right:hover .expert--c--bg img {
  transform: scale(1.1);
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right {
  width: 48%;
  float: right;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--1 .expert--c--right {
    position: static;
    width: 100%;
    overflow: hidden;
    margin: 20px auto;
    float: auto;
  }
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left {
  width: 100%;
  height: 252px;
  position: relative;
  overflow: hidden;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left img {
  transition: all 1s;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left .expert--c--bg--mask {
  position: absolute;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 252px;
  top: 0;
  left: 0;
  transition: all 1s;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left .expert--c--title {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 0;
  width: 204px;
  height: 201px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left .expert--c--c--item {
  width: 95%;
  position: absolute;
  z-index: 3;
  right: 10px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left .expert--c--c--item .e--c--c--i--number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #bf9b5f;
  font-size: 42px;
  line-height: 48px;
  text-align: center;
  color: #bf9b5f;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left .expert--c--c--item .e--c--c--i--txt {
  color: #fff;
  font-size: 14px;
  line-height: 1.3em;
  position: absolute;
  top: 10px;
  right: 60px;
  text-align: right;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left .e--c--c--i--1 {
  top: 20px;
  left: 10px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left .e--c--c--i--2 {
  top: 92px;
  left: 10px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left .e--c--c--i--3 {
  top: 170px;
  left: 10px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left:hover .expert--c--bg--mask {
  background-color: rgba(0, 0, 0, 0.8);
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left:hover .expert--c--bg img {
  transform: scale(1.1);
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right {
  width: 100%;
  height: 252px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right img {
  transition: all 1s;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right .expert--c--bg--mask {
  position: absolute;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 252px;
  top: 0;
  left: 0;
  transition: all 1s;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right .expert--c--title {
  position: absolute;
  z-index: 4;
  left: 0;
  top: 0;
  width: 204px;
  height: 201px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right .expert--c--c--item {
  width: 95%;
  position: absolute;
  z-index: 3;
  right: 10px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right .expert--c--c--item .e--c--c--i--number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #bf9b5f;
  font-size: 42px;
  line-height: 48px;
  text-align: center;
  color: #bf9b5f;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right .expert--c--c--item .e--c--c--i--txt {
  color: #fff;
  font-size: 14px;
  line-height: 1.3em;
  position: absolute;
  top: 10px;
  right: 60px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right .e--c--c--i--1 {
  top: 20px;
  left: 10px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right .e--c--c--i--2 {
  top: 92px;
  left: 10px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right .e--c--c--i--3 {
  top: 170px;
  left: 10px;
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right:hover .expert--c--bg--mask {
  background-color: rgba(0, 0, 0, 0.8);
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right:hover .expert--c--bg img {
  transform: scale(1.1);
}
.cn .expert--wrap .expert--content .expert--c--1 .expert--c--1--c:hover .expert--c--1--c--bg {
  transform: scale(1.1);
}
.cn .expert--wrap .expert--content .expert--c--2--item {
  width: 48%;
  position: absolute;
  z-index: 1;
  height: 136px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--2--item {
    position: static;
    width: 96%;
    overflow: hidden;
    height: 110px;
    margin-bottom: 10px;
  }
}
.cn .expert--wrap .expert--content .expert--c--2--item .expert--c--2--item--left {
  width: 50%;
  float: left;
  background-color: #404040;
  height: 136px;
  text-align: center;
  display: table;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--2--item .expert--c--2--item--left {
    height: 110px;
  }
}
.cn .expert--wrap .expert--content .expert--c--2--item .expert--c--2--item--left .expert--c--2--item--left--txt {
  vertical-align: middle;
  display: table-cell;
  padding: 0 5%;
  color: #fff;
  font-size: 16px;
  line-height: 1.2em;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--2--item .expert--c--2--item--left .expert--c--2--item--left--txt {
    font-size: 12px;
  }
}
.cn .expert--wrap .expert--content .expert--c--2--item .expert--c--2--item--right {
  width: 50%;
  float: left;
  overflow: hidden;
}
.cn .expert--wrap .expert--content .expert--c--2--item .expert--c--2--item--right img {
  transition: all 1s;
}
.cn .expert--wrap .expert--content .expert--c--2--item:hover .expert--c--2--item--right img {
  transform: scale(1.1);
}
.cn .expert--wrap .expert--content .expert--c--2--2 {
  top: 0;
  left: 0;
}
.cn .expert--wrap .expert--content .expert--c--2--3 {
  top: 0;
  left: 52%;
}
.cn .expert--wrap .expert--content .expert--c--2--4 {
  top: 140px;
  left: 0;
}
.cn .expert--wrap .expert--content .expert--c--2--5 {
  top: 140px;
  left: 52%;
}
.cn .expert--wrap .expert--content .expert--c--2--6 {
  top: 280px;
  left: 0;
}
.cn .expert--wrap .expert--content .expert--c--2--7 {
  top: 280px;
  left: 52%;
}
.cn .expert--wrap .expert--content .expert--c--2 {
  position: absolute;
  z-index: 1;
  width: 100%;
  display: none;
  top: 0;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--2 {
    width: 96%;
    left: 2%;
    position: relative;
  }
}
.cn .expert--wrap .expert--content .expert--c--2 p {
  color: #fff;
  padding-bottom: 1.5em;
  line-height: 1.5em;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--2 p {
    font-size: 12px;
  }
}
.cn .expert--wrap .expert--content .expert--c--2 .expert--c--2 {
  width: 100%;
  position: relative;
}
.cn .expert--wrap .expert--content .expert--c--2 .expert--c--2 .expert--c--2--c {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--2 .expert--c--2 .expert--c--2--c {
    width: 96%;
    overflow: hidden;
    position: static;
    height: 80px;
    overflow: hidden;
  }
}
.cn .expert--wrap .expert--content .expert--c--3, .cn .expert--wrap .expert--content .expert--c--4, .cn .expert--wrap .expert--content .expert--c--5, .cn .expert--wrap .expert--content .expert--c--6 {
  position: absolute;
  z-index: 1;
  width: 100%;
  display: none;
  top: 0;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--3, .cn .expert--wrap .expert--content .expert--c--4, .cn .expert--wrap .expert--content .expert--c--5, .cn .expert--wrap .expert--content .expert--c--6 {
    width: 96%;
    left: 2%;
    position: static;
    margin-left: 2%;
  }
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--3 .expert--c--4--c--c, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--4--c--c, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--4--c--c, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--4--c--c {
    position: relative;
  }
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--4--c, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--4--c, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--4--c, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--4--c {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 49%;
  opacity: 0;
  overflow: hidden;
  height: 172px;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--3 .expert--c--4--c, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--4--c, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--4--c, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--4--c {
    width: 100%;
    position: static;
    height: 110px;
    overflow: hidden;
    margin-bottom: 10px;
  }
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--4--c .expert--c--4--item--left, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--4--c .expert--c--4--item--left, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--4--c .expert--c--4--item--left, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--4--c .expert--c--4--item--left {
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(64, 64, 64, 0.6);
  height: 172px;
  text-align: center;
  display: table;
  transition: all 1s;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--3 .expert--c--4--c .expert--c--4--item--left, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--4--c .expert--c--4--item--left, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--4--c .expert--c--4--item--left, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--4--c .expert--c--4--item--left {
    height: 110px;
    overflow: hidden;
    position: absolute;
    float: left;
  }
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--4--c .expert--c--4--item--left .expert--c--4--item--left--txt, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--4--c .expert--c--4--item--left .expert--c--4--item--left--txt, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--4--c .expert--c--4--item--left .expert--c--4--item--left--txt, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--4--c .expert--c--4--item--left .expert--c--4--item--left--txt {
  vertical-align: middle;
  display: table-cell;
  padding: 0 10%;
  color: #fff;
  font-size: 14px;
  line-height: 1.2em;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--3 .expert--c--4--c .expert--c--4--item--left .expert--c--4--item--left--txt, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--4--c .expert--c--4--item--left .expert--c--4--item--left--txt, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--4--c .expert--c--4--item--left .expert--c--4--item--left--txt, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--4--c .expert--c--4--item--left .expert--c--4--item--left--txt {
    font-size: 12px;
  }
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--4--c .expert--c--4--item--right, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--4--c .expert--c--4--item--right, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--4--c .expert--c--4--item--right, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--4--c .expert--c--4--item--right {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  height: 172px;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--3 .expert--c--4--c .expert--c--4--item--right, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--4--c .expert--c--4--item--right, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--4--c .expert--c--4--item--right, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--4--c .expert--c--4--item--right {
    height: 110px;
    overflow: hidden;
    position: absolute;
    float: right;
  }
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--4--c .expert--c--4--item--right img, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--4--c .expert--c--4--item--right img, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--4--c .expert--c--4--item--right img, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--4--c .expert--c--4--item--right img {
  transition: all 1s;
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--4--c:hover .expert--c--4--item--left, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--4--c:hover .expert--c--4--item--left, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--4--c:hover .expert--c--4--item--left, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--4--c:hover .expert--c--4--item--left {
  background-color: rgba(64, 64, 64, 0.9);
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--4--c:hover .expert--c--4--item--right img, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--4--c:hover .expert--c--4--item--right img, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--4--c:hover .expert--c--4--item--right img, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--4--c:hover .expert--c--4--item--right img {
  transform: scale(1.1);
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--4--1, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--4--1, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--4--1, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--4--1 {
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--3 .expert--c--4--1, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--4--1, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--4--1, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--4--1 {
    position: static;
  }
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--4--2, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--4--2, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--4--2, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--4--2 {
  top: 0;
  left: 51%;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--3 .expert--c--4--2, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--4--2, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--4--2, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--4--2 {
    position: static;
  }
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--4--3, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--4--3, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--4--3, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--4--3 {
  top: 176px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--3 .expert--c--4--3, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--4--3, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--4--3, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--4--3 {
    position: static;
  }
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--4--4, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--4--4, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--4--4, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--4--4 {
  top: 176px;
  left: 51%;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--3 .expert--c--4--4, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--4--4, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--4--4, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--4--4 {
    position: static;
  }
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--5--c, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--5--c, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--5--c, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--5--c {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 49%;
  opacity: 0;
  overflow: hidden;
  height: 120px;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--3 .expert--c--5--c, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--5--c, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--5--c, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--5--c {
    /*width: 100%;
    position:static;
    height:90px; 
    overflow:hidden;
    margin-bottom: 10px;*/
    height: 60px;
    width: 47%;
  }
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--5--c .expert--c--5--item--left, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--5--c .expert--c--5--item--left, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--5--c .expert--c--5--item--left, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--5--c .expert--c--5--item--left {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #505050;
  height: 120px;
  text-align: center;
  display: table;
  transition: all 1s;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--3 .expert--c--5--c .expert--c--5--item--left, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--5--c .expert--c--5--item--left, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--5--c .expert--c--5--item--left, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--5--c .expert--c--5--item--left {
    height: 60px;
    overflow: hidden;
    position: absolute;
    float: left;
  }
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--5--c .expert--c--5--item--left .expert--c--5--item--left--txt, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--5--c .expert--c--5--item--left .expert--c--5--item--left--txt, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--5--c .expert--c--5--item--left .expert--c--5--item--left--txt, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--5--c .expert--c--5--item--left .expert--c--5--item--left--txt {
  vertical-align: middle;
  display: table-cell;
  text-align: left;
  padding: 0 10%;
  color: #fff;
  font-size: 16px;
  line-height: 1.2em;
  padding-left: 168px;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--3 .expert--c--5--c .expert--c--5--item--left .expert--c--5--item--left--txt, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--5--c .expert--c--5--item--left .expert--c--5--item--left--txt, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--5--c .expert--c--5--item--left .expert--c--5--item--left--txt, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--5--c .expert--c--5--item--left .expert--c--5--item--left--txt {
    font-size: 12px;
    padding-left: 70px;
  }
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--5--c .expert--c--5--item--right, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--5--c .expert--c--5--item--right, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--5--c .expert--c--5--item--right, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--5--c .expert--c--5--item--right {
  width: 120px;
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  z-index: 3;
  overflow: hidden;
  height: 120px;
  background-color: #dcdcdc;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--3 .expert--c--5--c .expert--c--5--item--right, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--5--c .expert--c--5--item--right, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--5--c .expert--c--5--item--right, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--5--c .expert--c--5--item--right {
    height: 60px;
    width: 60px;
    overflow: hidden;
    position: absolute;
    float: right;
  }
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--5--c .expert--c--5--item--right img, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--5--c .expert--c--5--item--right img, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--5--c .expert--c--5--item--right img, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--5--c .expert--c--5--item--right img {
  transition: all 1s;
  width: 100%;
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--5--c:hover .expert--c--5--item--left, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--5--c:hover .expert--c--5--item--left, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--5--c:hover .expert--c--5--item--left, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--5--c:hover .expert--c--5--item--left {
  background-color: rgba(64, 64, 64, 0.9);
  padding-left: 20px;
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--5--c:hover .expert--c--5--item--right img, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--5--c:hover .expert--c--5--item--right img, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--5--c:hover .expert--c--5--item--right img, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--5--c:hover .expert--c--5--item--right img {
  transform: scale(1.1);
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--5--c--c, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--5--c--c, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--5--c--c, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--5--c--c {
  position: relative;
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--5--1, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--5--1, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--5--1, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--5--1 {
  top: 0;
  left: 0%;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--3 .expert--c--5--1, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--5--1, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--5--1, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--5--1 {
    left: 2%;
  }
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--5--2, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--5--2, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--5--2, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--5--2 {
  top: 0;
  left: 51%;
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--5--3, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--5--3, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--5--3, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--5--3 {
  top: 146px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--3 .expert--c--5--3, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--5--3, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--5--3, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--5--3 {
    left: 2%;
    top: 70px;
  }
}
.cn .expert--wrap .expert--content .expert--c--3 .expert--c--5--4, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--5--4, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--5--4, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--5--4 {
  top: 146px;
  left: 51%;
}
@media screen and (max-width: 767px) {
  .cn .expert--wrap .expert--content .expert--c--3 .expert--c--5--4, .cn .expert--wrap .expert--content .expert--c--4 .expert--c--5--4, .cn .expert--wrap .expert--content .expert--c--5 .expert--c--5--4, .cn .expert--wrap .expert--content .expert--c--6 .expert--c--5--4 {
    top: 70px;
  }
}
.cn .expert--title {
  position: absolute;
  top: 50%;
  width: 26.8%;
  z-index: 1;
  left: 300px;
  max-width: 385px;
}
.cn .expert--title img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cn .expert--title {
    top: 45%;
    width: 50%;
    z-index: 1;
    left: 25%;
  }
  .cn .expert--title img {
    width: 100%;
  }
}
.cn .expert--layout--1 {
  background: url("../../images/cn/3/bg.jpg") 0 0 no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
.cn .expert--layout--mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .cn .expert--layout--mobile {
    background: url("../../images/cn/3/mobile--bg.jpg") right 0 no-repeat;
    background-size: cover;
    display: block;
    width: 100%;
    z-index: 0;
    height: 100%;
  }
}
.cn .expert--c--5--c p {
  font-size: 12px;
  width: 100%;
  text-align: center;
  line-height: 1.5em;
  color: #fff;
  padding-bottom: 1.5em;
}
.cn .expert--c--5--5 {
  width: 388px;
  position: absolute;
  top: 270px;
  left: 3%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .cn .expert--c--5--5 {
    width: 45%;
    top: 140px;
  }
}
.cn .expert--c--5--6 {
  width: 24%;
  position: absolute;
  top: 360px;
  left: 0;
  z-index: 1;
}
.cn .expert--c--5--6 img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cn .expert--c--5--6 {
    top: 180px;
    width: 28%;
  }
}
.cn .expert--c--5--7 {
  width: 24%;
  position: absolute;
  top: 360px;
  left: 25%;
  z-index: 1;
}
.cn .expert--c--5--7 img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cn .expert--c--5--7 {
    top: 180px;
    width: 28%;
    left: 24%;
  }
}
.cn .expert--c--5--8 {
  width: 24%;
  position: absolute;
  top: 360px;
  left: 50%;
  z-index: 1;
}
.cn .expert--c--5--8 img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cn .expert--c--5--8 {
    top: 180px;
    width: 28%;
    left: 48%;
  }
}
.cn .expert--c--5--9 {
  width: 24%;
  position: absolute;
  top: 360px;
  left: 75%;
  z-index: 1;
}
.cn .expert--c--5--9 img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cn .expert--c--5--9 {
    top: 180px;
    width: 28%;
    left: 71%;
  }
}
@media screen and (max-width: 767px) {
  .cn .expert--c--5 {
    min-height: 400px;
  }
}
.cn .expert--c--2--1--item {
  width: 13.9%;
  float: left;
  margin-left: 3%;
  background-color: #c3c3c3;
  border-radius: 50%;
}
.cn .expert--c--2--1--item:first-child {
  margin-left: 0%;
}
.cn .expert--c--2--1--item:hover {
  background-color: #bf9b5f;
}
.cn .expert--c--2--1 {
  padding-bottom: 20px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 10%;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .cn .expert--c--2--1 {
    width: 96%;
    overflow: hidden;
    position: static;
    height: 80px;
    overflow: hidden;
  }
}

.en {
  font-family: Arial;
}
.en .box--full {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.en .content--wrap {
  width: 100%;
  position: absolute;
  z-index: 11;
  overflow: hidden;
  top: 0;
  left: 0;
}
.en .box--onepage {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.en .black--mask {
  background-color: #000;
  z-index: 10;
  opacity: 0;
}
.en .white {
  color: #fff;
}
.en .black {
  color: #1f1f1f;
}
.en .orange {
  color: #bf9b5f;
}
.en h3 {
  font-size: 64px;
  position: absolute;
  z-index: 10;
  top: 50%;
  margin: -110px 0 0 0;
  left: 272px;
  font-weight: border;
  line-height: 1.5em;
}
.en h3 span {
  font-weight: border;
  font-size: 48px;
}
.en h5 {
  font-size: 32px;
  padding: 1em 0 0.75em 1em;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .en h5 {
    font-size: 24px;
    padding: 1em 0 0.75em 0;
    text-align: center;
  }
}
.en .logo {
      position: fixed;
    z-index: 3;
    width: 132px;
    left: 76px;
    top: 34px;
    z-index: 120;
    cursor: pointer;
}
.en .logo--bg {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .en .logo {
    position: fixed;
    z-index: 2;
    width: 24.9%;
    left: 71.8%;
    top: 17px;
    z-index: 120;
  }
  .en .logo img {
    width: 100%;
  }
}
.en .langTop--wrap {
  position: absolute;
  right: 34px;
  top: 34px;
  color: #999;
  z-index: 15;
  cursor: pointer;
  font-size: 16px;
  line-height: 40px;
}
.en .langTop--wrap span:hover {
  color: #bf9b5f;
}
.en .langTop--wrap a:link, .en .langTop--wrap a:visited {
  color: #999;
}
.en .langTop--wrap a:hover {
  color: #bf9b5f;
}
@media screen and (max-width: 767px) {
  .en .langTop--wrap {
    left: 42%;
    font-size: 12px;
    top: 10px;
  }
}
.en .control--wrap {
  width: 310px;
  position: absolute;
  top: 34px;
  left: 50%;
  margin: 0 0 0 -155px;
  font-size: 16px;
  color: #1f1f1f;
  line-height: 40px;
  z-index: 15;
}
.en .control--wrap .previous {
  position: absolute;
  top: 0;
  left: 44px;
  z-index: 1;
  cursor: pointer;
  text-indent: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.en .control--wrap .previous span {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  position: absolute;
  top: 0;
  left: 80px;
}
.en .control--wrap .previous:hover {
  text-indent: 2em;
  color: #bf9b5f;
  width: 160px;
  height: 40px;
}
.en .control--wrap .previous:hover span {
  left: -24px;
}
.en .control--wrap .next {
  position: absolute;
  top: 0;
  left: 194px;
  z-index: 1;
  cursor: pointer;
  text-indent: 24px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  width: 100px;
  height: 40px;
}
.en .control--wrap .next span {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  position: absolute;
  top: 0;
  left: -24px;
}
.en .control--wrap .next:hover {
  text-indent: 0;
  color: #bf9b5f;
}
.en .control--wrap .next:hover span {
  left: 40px;
}
@media screen and (max-width: 767px) {
  .en .control--wrap {
    width: 100%;
    position: fixed;
    top: 49%;
    left: 0%;
    color: #1f1f1f;
    margin: 0;
    z-index: 12;
    font-size: 12px;
  }
  .en .control--wrap .previous {
    position: absolute;
    top: 0;
    left: 20px;
    z-index: 1;
    cursor: pointer;
    text-indent: 1.5em;
    text-indent: 0;
    color: #bf9b5f;
    cursor: pointer;
  }
  .en .control--wrap .previous span {
    top: 0;
    left: -1em;
  }
  .en .control--wrap .previous:hover {
    text-indent: 0em;
    color: #bf9b5f;
  }
  .en .control--wrap .previous:hover span {
    top: 0;
    left: -1em;
  }
  .en .control--wrap .next {
    position: absolute;
    top: 0;
    left: 80%;
    z-index: 1;
    cursor: pointer;
    text-indent: 28px;
    color: #bf9b5f;
    width: 100px;
    height: 40px;
    cursor: pointer;
  }
  .en .control--wrap .next span {
    left: 30px;
  }
  .en .control--wrap .next:hover {
    text-indent: 28px;
    color: #bf9b5f;
  }
  .en .control--wrap .next:hover span {
    left: 30px;
  }
}
.en .topButton--wrap {
  position: absolute;
  z-index: 11;
  width: 28px;
  height: 42px;
  bottom: 122px;
  left: 90%;
  display: block;
  cursor: pointer;
}
.en .mouse--wrap {
  position: absolute;
  z-index: 15;
  width: 113px;
  height: 80px;
  left: 50%;
  margin: 0 0 0 -56px;
  bottom: 0;
  text-align: center;
  font-size: 16px;
}
.en .mouse--wrap span {
  width: 18px;
  position: absolute;
  left: 43px;
  top: 32px;
  z-index: 1;
  animation: mouseloopCss 1s infinite linear;
}
.en .mouse--wrap span img {
  width: 100%;
}
@keyframes mouseloopCss {
  0% {
    top: 32px;
  }
  50% {
    top: 22px;
  }
  100% {
    top: 32px;
  }
}
.en .inner--wrap {
  width: 100%;
  max-width: 875px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
.en .client--content, .en .contact--content, .en .export--content, .en .join--content {
  display: none;
}
.en .mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .en .mobile {
    display: block;
  }
}
.en .pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .en .pc {
    display: none;
  }
}
.en .content--footer {
  width: 100%;
  background-color: #000;
  padding: 2em 0;
}
.en .content--footer p {
  font-size: 12px;
  color: #797979;
  width: 96%;
  line-height: 1.5em;
  margin: 0 auto;
  text-align: center;
}
.en .about--1 {
  z-index: 1;
}
.en .about--2 {
  z-index: 2;
}
.en .about--3 {
  z-index: 3;
}
.en .about--bg--1 {
  overflow: hidden;
}
.en .about--bg--2 {
  background-color: #e5e5e5;
}
.en .about--bg--3 {
  background: url("../../images/en/1/2.jpg") 0 0 no-repeat;
  background-size: cover;
}
.en .history--itenm {
  height: 120px;
}
.en .line {
  width: 1px;
  background-color: #1f1f1f;
  position: absolute;
  top: 111px;
  left: 50%;
  height: 82%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .en .line {
    height: 83%;
  }
}
.en .history--itenm {
  width: 46.28%;
  position: absolute;
  z-index: 2;
}
.en .h-left {
  position: relative;
  padding-left: 6.08%;
}
.en .h-left .history--cricle {
  width: 40px;
  height: 40px;
  font-size: 12px;
  border-radius: 50%;
  background: #1f1f1f;
  color: #fff;
  line-height: 40px;
  text-align: center;
  right: 0;
  position: absolute;
}
.en .h-left .history--txt {
  font-size: 14px;
  color: #373737;
  position: absolute;
  right: 56px;
  line-height: 1.5em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .en .history--itenm {
    width: 50%;
    position: absolute;
    z-index: 2;
  }
  .en .h-left {
    position: relative;
    padding-left: 6.08%;
  }
  .en .h-left .history--cricle {
    width: 40px;
    height: 40px;
    font-size: 12px;
    border-radius: 50%;
    background: #1f1f1f;
    color: #fff;
    line-height: 40px;
    text-align: center;
    right: 0;
    position: absolute;
  }
  .en .h-left .history--txt {
    font-size: 10px;
    color: #373737;
    position: absolute;
    right: 56px;
    line-height: 1.3em;
    text-align: right;
  }
}
.en .h-right {
  position: relative;
  margin-left: 47.74%;
}
.en .h-right .history--cricle {
  width: 40px;
  height: 40px;
  font-size: 12px;
  border-radius: 50%;
  background: #1f1f1f;
  color: #fff;
  line-height: 40px;
  text-align: center;
  left: 0;
  position: absolute;
}
.en .h-right .history--txt {
  font-size: 14px;
  color: #373737;
  position: absolute;
  left: 56px;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .en .h-right {
    position: relative;
    margin-left: 45.5%;
  }
  .en .h-right .history--cricle {
    width: 40px;
    height: 40px;
    font-size: 12px;
    border-radius: 50%;
    background: #1f1f1f;
    color: #fff;
    line-height: 40px;
    text-align: center;
    left: 0;
    position: absolute;
  }
  .en .h-right .history--txt {
    font-size: 10px;
    color: #373737;
    position: absolute;
    left: 56px;
    line-height: 1.5em;
  }
}
.en .about--3 p {
  font-size: 14px;
  color: #fff;
  padding: 0 32px 1.5em 32px;
  line-height: 1.5em;
}
.en .about--3 .about--3--img {
  width: 69.6%;
  margin: 20px auto;
  position: relative;
}
.en .about--3 .about--3--img img {
  width: 100%;
}
.en .about--3 .about--3--img ul {
  display: table;
  width: 100%;
}
.en .about--3 .about--3--img ul .about--3--1 {
  top: 0;
  left: 0%;
}
.en .about--3 .about--3--img ul .about--3--2 {
  top: 0;
  left: 40%;
}
.en .about--3 .about--3--img ul .about--3--3 {
  top: 0;
  left: 80%;
}
.en .about--3 .about--3--img ul .about--3--4 {
  top: 200px;
  left: 20%;
}
.en .about--3 .about--3--img ul .about--3--5 {
  top: 200px;
  left: 60%;
}
.en .about--3 .about--3--img ul li {
  position: absolute;
  width: 25%;
  border: 1px solid #fff;
  cursor: pointer;
}
.en .about--3 .about--3--img ul li:hover, .en .about--3 .about--3--img ul li.active {
  border: 1px solid #bf9b5f;
  background-color: #bf9b5f;
}
.en .about--3 .about--3--img ul .gap {
  margin-right: 5.2%;
}
.en .history--sum {
  width: 96%;
  position: relative;
  margin: 0 auto 0 auto;
  max-width: 707px;
  padding-bottom: 60px;
}
.en .history--sum img {
  width: 100%;
}
.en .history--sum .history--sum--1 {
  position: absolute;
  top: 25%;
  right: 85%;
  font-size: 72px;
  color: #bf9b5f;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .en .history--sum .history--sum--1 {
    top: 22%;
  }
}
.en .history--sum .history--sum--2 {
  position: absolute;
  top: 25%;
  right: 45%;
  font-size: 72px;
  color: #bf9b5f;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .en .history--sum .history--sum--2 {
    top: 22%;
    right: 45.5%;
  }
}
.en .history--sum .history--sum--3 {
  position: absolute;
  top: 25%;
  right: 10%;
  font-size: 72px;
  color: #bf9b5f;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .en .history--sum .history--sum--3 {
    top: 22%;
    right: 10%;
  }
}
.en .about--layout--1 {
  background: url("../../images/en/bg/2-1.jpg") no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
.en .about--layout--2 {
  background: url("../../images/en/bg/2-3.png") no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
.en .about--layout--3 {
  background: url("../../images/en/bg/2-2.png") no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
.en .about--title {
  position: absolute;
  top: 40%;
  width: 200px;
  z-index: 1;
  left: 50%;
  max-width: 200px;
  margin-left: -100px;
}
.en .about--title img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .en .about--title {
        top: 42%;
    width: 32%;
    z-index: 1;
    left: 50%;
    margin-left: -16.5%;
  }
  .en .about--title img {
    width: 100%;
  }
}
.en .about--layout--mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .en .about--layout--mobile {
    background: url("../../images/en/1/mobile--bg.jpg") 0 0 no-repeat;
    background-size: cover;
    display: block;
    width: 100%;
    z-index: 0;
    height: 100%;
  }
  .en .about--3 .about--3--img {
    width: 96%;
    margin: 0px auto;
    position: relative;
  }
  .en .about--3 .about--3--img img {
    width: 100%;
  }
  .en .about--3 .about--3--img ul {
    display: table;
    width: 100%;
  }
  .en .about--3 .about--3--img ul .about--3--1 {
    top: 0;
    left: 8%;
  }
  .en .about--3 .about--3--img ul .about--3--2 {
    top: 0;
    left: 40%;
  }
  .en .about--3 .about--3--img ul .about--3--3 {
    top: 0;
    left: 72%;
  }
  .en .about--3 .about--3--img ul .about--3--4 {
    top: 100px;
    left: 20%;
  }
  .en .about--3 .about--3--img ul .about--3--5 {
    top: 100px;
    left: 60%;
  }
  .en .about--3 .about--3--img ul li {
    position: absolute;
    width: 20%;
    border: 1px solid #fff;
    cursor: pointer;
  }
  .en .about--3 .about--3--img ul li:hover, .en .about--3 .about--3--img ul li.active {
    border: 1px solid #bf9b5f;
    background-color: #bf9b5f;
  }
  .en .about--3 .about--3--img ul .gap {
    margin-right: 5.2%;
  }
}
.en .about--title--1 {
  animation: at1loop1Css 5s infinite linear;
}
@keyframes at1loop1Css {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.en .about--title--2 {
  opacity: 0;
  animation: at2loop1Css 5s infinite linear;
}
@keyframes at2loop1Css {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.en .client--1 {
  z-index: 1;
}
.en .client--2 {
  z-index: 2;
  position: relative;
}
.en .client--item--wrap {
  width: 100%;
  padding-bottom: 40px;
  display: table;
  position: relative;
}
.en .client--item--wrap .client--item {
  width: 168px;
  height: 163px;
  margin-bottom: 6px;
  float: left;
  opacity: 0.85;
  cursor: pointer;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.en .client--item--wrap .client--item img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .en .client--item--wrap .client--item {
    width: 32%;
    height: auto;
    margin-bottom: 3px;
    float: left;
    opacity: 0.85;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .en .client--item--wrap .client--item img {
    width: 100%;
  }
}
.en .client--item--wrap .client--item:hover {
  opacity: 1;
}
.en .client--item--wrap .client--rap {
  margin-right: 6px;
}
.en .client--item--wrap .client--mobile--rap {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .en .client--item--wrap .client--rap {
    margin-right: 0px;
  }
  .en .client--item--wrap .client--mobile--rap {
    margin-left: 3px;
  }
}
@media screen and (max-width: 767px) {
  .en .client--item--wrap {
    width: 96%;
    padding-bottom: 80px;
    display: table;
    position: relative;
    margin: 0 auto;
  }
}
.en .client--bg {
  width: 100%;
  overflow-y: hidden;
  z-index: -1;
  display: none;
}
.en .client--bg img {
  width: 100%;
}
.en .client--detial {
  background-color: #fff;
  position: absolute;
  width: 85%;
  max-width: 1024px;
  min-height: 545px;
  display: none;
}
.en .client--detial .client--logo {
  width: 150px;
  height: 105px;
  overflow-y: hidden;
  position: relative;
  margin: 0 auto;
}
.en .client--detial .client--logo img {
  position: absolute;
  width: 100%;
  left: 0;
  top: -20px;
}
.en .client--detial .client--line {
  width: 96%;
  margin: 0 auto;
  line-height: 23px;
  height: 23px;
  border-top: 1px solid #1f1f1f;
}
.en .client--detial .client--img {
  width: 44%;
  float: left;
  margin-left: 8.7%;
}
.en .client--detial .client--img img {
  width: 100%;
}
.en .client--detial .client--txt {
  width: 36.8%;
  float: left;
  margin-left: 3.7%;
  font-size: 14px;
  line-height: 1.5em;
  color: #232323;
}
.en .client--detial .client--close {
  position: absolute;
  top: 10px;
  right: 12px;
  cursor: pointer;
}
.en .client--detial .client--link {
  width: 374px;
  margin: 35px auto 0 auto;
}
.en .client--detial .client--link .client--tmaill {
  width: 184px;
  float: left;
  cursor: pointer;
}
.en .client--detial .client--link .client--tmaill img {
  width: 100%;
}
.en .client--detial .client--link .client--jd {
  width: 184px;
  float: right;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .en .client--detial {
    width: 96%;
    max-width: 1024px;
    min-height: 565px;
    padding-top: 20px;
    display: none;
  }
  .en .client--detial .client--logo {
    width: 100px;
    height: 80px;
    overflow-y: hidden;
    position: relative;
    margin: 0 auto;
  }
  .en .client--detial .client--logo img {
    position: absolute;
    width: 100%;
    left: 0;
    top: -10px;
  }
  .en .client--detial .client--line {
    width: 96%;
    margin: 0 auto;
    line-height: 23px;
    height: 23px;
    border-top: 1px solid #1f1f1f;
  }
  .en .client--detial .client--img {
    width: 96%;
    float: left;
    margin-left: 2%;
  }
  .en .client--detial .client--img img {
    width: 100%;
  }
  .en .client--detial .client--txt {
    width: 96%;
    float: left;
    margin-left: 2%;
    font-size: 12px;
    line-height: 1.5em;
    color: #232323;
    padding-top: 2em;
  }
  .en .client--detial .client--close {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
  }
  .en .client--detial .client--link {
    width: 96%;
    margin: 35px auto 0 auto;
  }
  .en .client--detial .client--link .client--tmaill {
    width: 45%;
    float: left;
    cursor: pointer;
  }
  .en .client--detial .client--link .client--tmaill img {
    width: 100%;
  }
  .en .client--detial .client--link .client--jd {
    width: 45%;
    float: right;
    cursor: pointer;
  }
  .en .client--detial .client--link .client--jd img {
    width: 100%;
  }
}
.en .client--bg--cover {
  width: 100%;
  position: absolute;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.6);
}
.en .client--bg--cover--1 {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.en .client--bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  overflow: hidden;
}
.en .client--title {
  position: absolute;
  top: 50%;
  width: 32.35%;
  z-index: 1;
  left: 300px;
  max-width: 465px;
}
.en .client--title img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .en .client--title {
    top: 45%;
    width: 58%;
    z-index: 1;
    left: 25%;
  }
  .en .client--title img {
    width: 100%;
  }
}
.en .client--layout--1 {
  background: url("../../images/en/2/bg.jpg") 0 0 no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
.en .client--layout--mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .en .client--layout--mobile {
    background: url("../../images/en/2/mobile--bg.jpg") 0 0 no-repeat;
    background-size: cover;
    display: block;
    width: 100%;
    z-index: 0;
    height: 100%;
  }
}
.en .join--1 {
  z-index: 1;
}
.en .join--2 {
  z-index: 2;
}
.en .join--2 h5 {
  padding-left: 0;
}
.en .join--3 {
  z-index: 3;
}
.en .join--3 h5 {
  padding-left: 0;
}
.en .join--p {
  font-size: 14px;
  line-height: 1.3em;
}
@media screen and (max-width: 767px) {
  .en .join--p {
    font-size: 12px;
    width: 96%;
    margin: 0 auto;
    padding-bottom: 1.5em;
  }
}
.en .join--bg--2 {
  background-color: #e5e5e5;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .en .join--bg--2 {
    padding-bottom: 150px;
  }
}
.en .join--bg--3 {
  background-color: transparent;
  background-image: url("../../images/en/4/bg--2.jpg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 100px;
}
.en .join--item--wrap {
  width: 100%;
  position: relative;
}
.en .join--item--wrap .join--item:hover .join--item--txt {
  background-color: #bf9b5f;
  bottom: 0;
}
.en .join--item--wrap .join--item {
  width: 31%;
  position: absolute;
  top: 0;
  overflow: hidden;
}
.en .join--item--wrap .join--item img {
  width: 100%;
}
.en .join--item--wrap .join--item .join--item--txt {
  width: 100%;
  background-color: rgba(255, 114, 0, 0.8);
  position: absolute;
  z-index: 1;
  bottom: -150px;
  left: 0;
  transition: all 1s;
  height: 240px;
}
.en .join--item--wrap .join--item .join--item--txt h6 {
  font-size: 24px;
  font-weight: bolder;
  padding: 1em 0.6em 0.5em 0.6em;
  color: #fff;
  height: 60px;
}
.en .join--item--wrap .join--item .join--item--txt h6 span {
  font-weight: normal;
  padding-left: 0em;
  font-size: 20px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .en .join--item--wrap .join--item .join--item--txt {
    height: auto;
  }
  .en .join--item--wrap .join--item .join--item--txt h6 {
    font-size: 16px;
    font-weight: bolder;
    padding: 1em 0.6em 0.5em 0.6em;
    color: #fff;
    height: auto;
  }
  .en .join--item--wrap .join--item .join--item--txt h6 span {
    font-weight: normal;
    padding-left: 0em;
    font-size: 12px;
  }
}
.en .join--item--wrap .join--item .join--item--txt p {
  font-size: 16px;
  padding: 0 1em 1.5em 1em;
  line-height: 1.5em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .en .join--item--wrap .join--item .join--item--txt p {
    font-size: 12px;
    padding: 0 1em 1.5em 1em;
    line-height: 1.2em;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .en .join--item--wrap .join--item {
    width: 45%;
  }
  .en .join--item--wrap .join--item .join--item--txt {
    font-size: 12px;
    bottom: 0;
    min-height: 140px;
    font-weight: normal;
  }
}
.en .join--paging {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  height: 17px;
  position: relative;
}
.en .join--paging span {
  width: 17px;
  background-color: #535353;
  border-radius: 50%;
  height: 17px;
  display: block;
  float: left;
  margin-right: 20px;
  cursor: pointer;
}
.en .join--paging span:hover {
  background-color: #bf9b5f;
}
.en .join--paging span.active {
  background-color: #bf9b5f;
}
.en .job--list p {
  font-size: 14px;
  color: #fff;
  padding-bottom: 1.5em;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .en .job--list p {
    font-size: 12px;
    padding: 0 0 1.2em 0;
    width: 96%;
    margin: 0 auto;
  }
}
.en .job--list .line {
  width: 100%;
  line-height: 1em;
  font-size: 14px;
  border-top: 1px solid #fff;
  height: auto;
  position: static;
  padding-bottom: 1.5em;
  background-color: transparent;
}
.en .job--list .job--item {
  width: 100%;
  margin-bottom: 36px;
}
.en .job--list .job--item h5 {
  font-size: 22px;
  color: #bf9b5f;
  padding: 0 0 14px 0;
}
@media screen and (max-width: 767px) {
  .en .job--list .job--item h5 {
    font-size: 16px;
    padding: 0 0 0.8em 0;
  }
}
.en .job--list .job--item h6 {
  font-size: 14px;
  color: #fff;
  padding: 0 0 22px 0;
}
@media screen and (max-width: 767px) {
  .en .job--list .job--item h6 {
    font-size: 12px;
    padding: 0 0 1.2em 0;
  }
}
.en .job--list .job--item p {
  font-size: 14px;
  color: #fff;
  padding: 0 0 22px 0;
}
@media screen and (max-width: 767px) {
  .en .job--list .job--item p {
    font-size: 12px;
    width: 100%;
    padding: 0 0 1.2em 0;
  }
}
.en .job--list .job--item a:link, .en .job--list .job--item a:visited {
  border: 2px solid #bf9b5f;
  color: #bf9b5f;
  font-size: 14px;
  padding: 10px;
  display: table;
  width: auto;
}
.en .job--list .job--item a:hover {
  border: 2px solid #bf9b5f;
  color: #bf9b5f;
  background-color: #bf9b5f;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .en .job--list .job--item {
    width: 96%;
    margin: 0 auto 16px auto;
  }
}
.en .job--list .job--paging {
  width: 100%;
  text-align: center;
  height: 17px;
}
.en .job--list .job--paging span {
  width: 17px;
  background-color: #535353;
  border-radius: 50%;
  height: 17px;
  display: block;
  float: right;
  margin-right: 20px;
  cursor: pointer;
  line-height: 17px;
  text-align: center;
}
.en .job--list .job--paging span:hover {
  background-color: #bf9b5f;
}
.en .job--list .job--paging span.active {
  background-color: #bf9b5f;
  color: #fff;
}
.en .join--layout--1 {
  background: url("../../images/en/bg/3-1.jpg") 0 0 no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
.en .join--layout--2 {
  background: url("../../images/en/bg/3-2.png") 0 0 no-repeat;
  position: absolute;
  top: 0;
  width: 140%;
  z-index: 0;
  height: 100%;
}
.en .join--layout--3 {
  background: url("../../images/en/bg/3-3.png") 0 0 no-repeat;
  position: absolute;
  top: 0;
  width: 140%;
  z-index: 0;
  height: 100%;
}
.en .join--layout--4 {
  background: url("../../images/en/bg/3-4.png") 0 0 no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
.en .join--layout--5 {
  background: url("../../images/en/bg/3-5.png") 0 0 no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
.en .join--title {
  position: absolute;
  top: 50%;
  width: 21.35%;
  z-index: 1;
  left: 300px;
  max-width: 306px;
}
.en .join--title img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .en .join--title {
    top: 45%;
    width: 45%;
    z-index: 1;
    left: 27.5%;
  }
  .en .join--title img {
    width: 100%;
  }
}
.en .join--layout--mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .en .join--layout--mobile {
    background: url("../../images/en/4/mobile--bg.jpg") 0 0 no-repeat;
    background-size: cover;
    display: block;
    width: 100%;
    z-index: 0;
    height: 100%;
  }
}
.en .contact--1 {
  z-index: 1;
}
.en .contact--2 {
  z-index: 2;
}
.en .stars {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.en .stars span {
  width: 16px;
  height: 21px;
  background-color: transparent;
  background-image: url("../../images/en/star.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
}
.en .contact--bg--1 {
  overflow: hidden;
}
.en .contact--bg--2 {
  background-color: transparent;
  background-image: url("../../images/en/5/bg--2.jpg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.en .map {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .en .map {
    width: 96%;
    margin: 0 auto;
  }
  .en .map img {
    width: 100%;
  }
}
.en .contact--wrap {
  clear: both;
  padding: 10px 8.7% 80px 8.7%;
}
.en .contact--wrap .contact-item {
  width: 100%;
  position: relative;
  margin: 38px 0 19px 0;
}
.en .contact--wrap .contact-item h5 {
  font-size: 18px;
  color: #ffffff;
  padding: 0 0 1.5em 0;
}
.en .contact--wrap .contact-item p {
  font-size: 12pxc;
  color: #fff;
  padding-bottom: 0.5em;
}
.en .contact--wrap .contact-item a:link, .en .contact--wrap .contact-item a:visited {
  font-size: 14px;
  border: 2px solid #fff;
  padding: 1em;
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #fff;
}
.en .contact--wrap .contact-item a:hover {
  border: 2px solid #fff;
  background-color: #fff;
  color: #bf9b5f;
}
@media screen and (max-width: 767px) {
  .en .contact--wrap .contact-item {
    width: 100%;
    position: relative;
    margin: 24px 0 16px 0;
  }
  .en .contact--wrap .contact-item h5 {
    font-size: 14px;
    color: #ffffff;
    padding: 0 0 1.5em 0;
  }
  .en .contact--wrap .contact-item p {
    font-size: 12pxc;
    color: #fff;
    padding-bottom: 0.5em;
  }
  .en .contact--wrap .contact-item a:link, .en .contact--wrap .contact-item a:visited {
    font-size: 12px;
    border: 1px solid #fff;
    padding: 0.5em;
    position: absolute;
    right: 10px;
    bottom: 0px;
    color: #fff;
  }
  .en .contact--wrap .contact-item a:hover {
    border: 2px solid #fff;
    background-color: #fff;
    color: #bf9b5f;
  }
}
.en .contact--wrap hr {
  color: #fff;
}
.en .contact--layout--1 {
  background: url("../../images/en/bg/1-1.jpg") 0 0 no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
.en .contact--layout--2 {
  background: url("../../images/en/bg/1-2.png") 0 0 no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
.en .contact--title {
  position: absolute;
  top: 50%;
  width: 33.5%;
  z-index: 1;
  left: 300px;
  max-width: 482px;
}
.en .contact--title img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .en .contact--title {
    top: 45%;
    width: 60%;
    z-index: 1;
    left: 25%;
  }
  .en .contact--title img {
    width: 100%;
  }
}
.en .contact--layout--mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .en .contact--layout--mobile {
    background: url("../../images/en/5/mobile--bg.jpg") 0 0 no-repeat;
    background-size: cover;
    display: block;
    width: 100%;
    z-index: 0;
    height: 100%;
  }
}
.en .expert--1 {
  z-index: 1;
}
.en .expert--2 {
  z-index: 2;
}
.en .expert--bg--2 {
  background-color: #212121;
}
.en .expert--wrap {
  width: 100%;
}
.en .expert--wrap ul {
  display: table;
  width: 100%;
}
.en .expert--wrap ul li {
  float: left;
  width: 15.5%;
  border: 1px solid #474747;
  cursor: pointer;
}
.en .expert--wrap ul li img {
  width: 100%;
}
.en .expert--wrap ul li:hover, .en .expert--wrap ul li.active {
  border: 1px solid #bf9b5f;
  background-color: #bf9b5f;
}
.en .expert--wrap ul .gap {
  margin-right: 5.2%;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap ul {
    display: table;
    width: 96%;
    margin-left: 2%;
  }
  .en .expert--wrap ul li {
    float: left;
    width: 17.7%;
    border: 1px solid #474747;
    cursor: pointer;
  }
  .en .expert--wrap ul li img {
    width: 100%;
  }
  .en .expert--wrap ul li:hover, .en .expert--wrap ul li.active {
    border: 1px solid #bf9b5f;
    background-color: #bf9b5f;
  }
  .en .expert--wrap ul .gap {
    margin-right: 2%;
  }
}
.en .expert--wrap .expert--content {
  width: 100%;
  position: relative;
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content {
    background-color: #212121;
    display: table;
  }
}
.en .expert--wrap .expert--content img {
  width: 100%;
}
.en .expert--wrap .expert--content .expert--c--1 {
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 0;
  /*.expert--c--1--1{
      left: 0%;
  }
  .expert--c--1--2{
      left: 20%;
      @media screen and (max-width: 767px) {
          left: 6%;
      }
  }
  .expert--c--1--3{
      left: 40%;
      @media screen and (max-width: 767px) {
          left: 9%;
      }
  }
  .expert--c--1--4{
      left: 60%;
      @media screen and (max-width: 767px) {
          left: 21%;
      }
  }
  .expert--c--1--5{
      left: 80%;
      @media screen and (max-width: 767px) {
          left: 24%;
      }
  }*/
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--1 {
    width: 96%;
    left: 2%;
    position: relative;
  }
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--1--c {
  width: 19.2%;
  float: left;
  position: absolute;
  overflow: hidden;
  z-inde: 1;
  top: 0;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--1 .expert--c--1--c {
    width: 30%;
    height: 240px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
    float: auto;
  }
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--1--c img {
  width: 100%;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--1--c .expert--c--1--c--bg {
  width: 100%;
  transition: all 1s;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--1--c h5 {
  font-size: 18px;
  color: #fff;
  text-align: center;
  padding: 1em 6%;
  background-color: #bf9b5f;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin: 0;
  width: 90%;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--1 .expert--c--1--c h5 {
    font-size: 12px;
  }
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left {
  width: 48%;
  float: left;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--1 .expert--c--left {
    position: static;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
  }
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left {
  width: 100%;
  height: 252px;
  position: relative;
  overflow: hidden;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left img {
  transition: all 1s;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left .expert--c--bg--mask {
  position: absolute;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 252px;
  top: 0;
  left: 0;
  transition: all 1s;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left .expert--c--title {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  width: 204px;
  height: 201px;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left .expert--c--title {
    width: 120px;
    height: 120px;
  }
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left .expert--c--title img {
  width: 100%;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left .expert--c--c--item {
  width: 85%;
  position: absolute;
  z-index: 3;
  left: 10px;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left .expert--c--c--item .e--c--c--i--number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #bf9b5f;
  font-size: 42px;
  line-height: 48px;
  text-align: center;
  color: #bf9b5f;
  background-color: #fff;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left .expert--c--c--item .e--c--c--i--txt {
  color: #fff;
  font-size: 14px;
  line-height: 1.3em;
  position: absolute;
  top: 10px;
  left: 60px;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left .expert--c--c--item .e--c--c--i--txt {
    font-size: 12px;
  }
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left .e--c--c--i--1 {
  top: 20px;
  left: 10px;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left .e--c--c--i--2 {
  top: 92px;
  left: 10px;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left .e--c--c--i--3 {
  top: 170px;
  left: 10px;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left:hover .expert--c--bg--mask {
  background-color: rgba(0, 0, 0, 0.8);
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--left:hover .expert--c--bg img {
  transform: scale(1.1);
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right {
  width: 100%;
  height: 252px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right img {
  transition: all 1s;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .expert--c--bg--mask {
  position: absolute;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 252px;
  top: 0;
  left: 0;
  transition: all 1s;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .expert--c--title {
  position: absolute;
  z-index: 4;
  right: 0;
  top: 0;
  width: 204px;
  height: 201px;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .expert--c--title {
    width: 120px;
    height: 120px;
  }
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .expert--c--title img {
  width: 100%;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .expert--c--c--item {
  width: 85%;
  position: absolute;
  z-index: 3;
  left: 10px;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .expert--c--c--item .e--c--c--i--number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #bf9b5f;
  font-size: 42px;
  line-height: 48px;
  text-align: center;
  color: #bf9b5f;
  background-color: #fff;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .expert--c--c--item .e--c--c--i--txt {
  color: #fff;
  font-size: 14px;
  line-height: 1.3em;
  position: absolute;
  top: 10px;
  left: 60px;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .expert--c--c--item .e--c--c--i--txt {
    font-size: 12px;
  }
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .e--c--c--i--1 {
  top: 10px;
  left: 10px;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .e--c--c--i--2 {
  top: 72px;
  left: 10px;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .e--c--c--i--3 {
  top: 134px;
  left: 10px;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right .e--c--c--i--4 {
  top: 190px;
  left: 10px;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right:hover .expert--c--bg--mask {
  background-color: rgba(0, 0, 0, 0.8);
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--left .expert--c--contet--right:hover .expert--c--bg img {
  transform: scale(1.1);
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right {
  width: 48%;
  float: right;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--1 .expert--c--right {
    position: static;
    width: 100%;
    overflow: hidden;
    margin: 20px auto;
    float: auto;
  }
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left {
  width: 100%;
  height: 252px;
  position: relative;
  overflow: hidden;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left img {
  transition: all 1s;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left .expert--c--bg--mask {
  position: absolute;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 252px;
  top: 0;
  left: 0;
  transition: all 1s;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left .expert--c--title {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 0;
  width: 204px;
  height: 201px;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left .expert--c--title {
    width: 120px;
    height: 120px;
  }
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left .expert--c--title img {
  width: 100%;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left .expert--c--c--item {
  width: 95%;
  position: absolute;
  z-index: 3;
  right: 10px;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left .expert--c--c--item .e--c--c--i--number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #bf9b5f;
  font-size: 42px;
  line-height: 48px;
  text-align: center;
  color: #bf9b5f;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left .expert--c--c--item .e--c--c--i--txt {
  color: #fff;
  font-size: 14px;
  line-height: 1.3em;
  position: absolute;
  top: 10px;
  right: 60px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left .expert--c--c--item .e--c--c--i--txt {
    font-size: 12px;
  }
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left .e--c--c--i--1 {
  top: 20px;
  left: 10px;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left .e--c--c--i--2 {
  top: 92px;
  left: 10px;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left .e--c--c--i--3 {
  top: 170px;
  left: 10px;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left:hover .expert--c--bg--mask {
  background-color: rgba(0, 0, 0, 0.8);
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--left:hover .expert--c--bg img {
  transform: scale(1.1);
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right {
  width: 100%;
  height: 252px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right img {
  transition: all 1s;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right .expert--c--bg--mask {
  position: absolute;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 252px;
  top: 0;
  left: 0;
  transition: all 1s;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right .expert--c--title {
  position: absolute;
  z-index: 4;
  left: 0;
  top: 0;
  width: 204px;
  height: 201px;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right .expert--c--title {
    width: 120px;
    height: 120px;
  }
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right .expert--c--title img {
  width: 100%;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right .expert--c--c--item {
  width: 95%;
  position: absolute;
  z-index: 3;
  right: 10px;
  text-align: right;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right .expert--c--c--item .e--c--c--i--number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #bf9b5f;
  font-size: 42px;
  line-height: 48px;
  text-align: center;
  color: #bf9b5f;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right .expert--c--c--item .e--c--c--i--txt {
  color: #fff;
  font-size: 14px;
  line-height: 1.3em;
  position: absolute;
  top: 10px;
  right: 60px;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right .expert--c--c--item .e--c--c--i--txt {
    font-size: 12px;
  }
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right .e--c--c--i--1 {
  top: 20px;
  left: 10px;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right .e--c--c--i--2 {
  top: 92px;
  left: 10px;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right .e--c--c--i--3 {
  top: 170px;
  left: 10px;
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right:hover .expert--c--bg--mask {
  background-color: rgba(0, 0, 0, 0.8);
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--right .expert--c--contet--right:hover .expert--c--bg img {
  transform: scale(1.1);
}
.en .expert--wrap .expert--content .expert--c--1 .expert--c--1--c:hover .expert--c--1--c--bg {
  transform: scale(1.1);
}
.en .expert--wrap .expert--content .expert--c--2--item {
  width: 48%;
  position: absolute;
  z-index: 1;
  height: 136px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--2--item {
    position: static;
    width: 96%;
    overflow: hidden;
    height: 110px;
    margin-bottom: 10px;
  }
}
.en .expert--wrap .expert--content .expert--c--2--item .expert--c--2--item--left {
  width: 50%;
  float: left;
  background-color: #404040;
  height: 136px;
  text-align: left;
  display: table;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--2--item .expert--c--2--item--left {
    height: 110px;
  }
}
.en .expert--wrap .expert--content .expert--c--2--item .expert--c--2--item--left .expert--c--2--item--left--txt {
  vertical-align: middle;
  display: table-cell;
  padding: 0 5%;
  color: #fff;
  font-size: 14px;
  line-height: 1.2em;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--2--item .expert--c--2--item--left .expert--c--2--item--left--txt {
    font-size: 10px;
    text-align: left;
  }
}
.en .expert--wrap .expert--content .expert--c--2--item .expert--c--2--item--right {
  width: 50%;
  float: left;
  overflow: hidden;
}
.en .expert--wrap .expert--content .expert--c--2--item .expert--c--2--item--right img {
  transition: all 1s;
}
.en .expert--wrap .expert--content .expert--c--2--item:hover .expert--c--2--item--right img {
  transform: scale(1.1);
}
.en .expert--wrap .expert--content .expert--c--2--2 {
  top: 0;
  left: 0;
}
.en .expert--wrap .expert--content .expert--c--2--3 {
  top: 0;
  left: 52%;
}
.en .expert--wrap .expert--content .expert--c--2--4 {
  top: 140px;
  left: 0;
}
.en .expert--wrap .expert--content .expert--c--2--5 {
  top: 140px;
  left: 52%;
}
.en .expert--wrap .expert--content .expert--c--2--6 {
  top: 280px;
  left: 0;
}
.en .expert--wrap .expert--content .expert--c--2--7 {
  top: 280px;
  left: 52%;
}
.en .expert--wrap .expert--content .expert--c--2 {
  position: absolute;
  z-index: 1;
  width: 100%;
  display: none;
  top: 0;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--2 {
    width: 96%;
    left: 2%;
    position: relative;
  }
}
.en .expert--wrap .expert--content .expert--c--2 p {
  color: #fff;
  padding-bottom: 1.5em;
  line-height: 1.5em;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--2 p {
    font-size: 12px;
  }
}
.en .expert--wrap .expert--content .expert--c--2 .expert--c--2 {
  width: 100%;
  position: relative;
}
.en .expert--wrap .expert--content .expert--c--2 .expert--c--2 .expert--c--2--c {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--2 .expert--c--2 .expert--c--2--c {
    width: 96%;
    overflow: hidden;
    position: static;
    height: 80px;
    overflow: hidden;
  }
}
.en .expert--wrap .expert--content .expert--c--3, .en .expert--wrap .expert--content .expert--c--4, .en .expert--wrap .expert--content .expert--c--5, .en .expert--wrap .expert--content .expert--c--6 {
  position: absolute;
  z-index: 1;
  width: 100%;
  display: none;
  top: 0;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--3, .en .expert--wrap .expert--content .expert--c--4, .en .expert--wrap .expert--content .expert--c--5, .en .expert--wrap .expert--content .expert--c--6 {
    width: 96%;
    left: 2%;
    position: static;
    margin-left: 2%;
  }
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--3 .expert--c--4--c--c, .en .expert--wrap .expert--content .expert--c--4 .expert--c--4--c--c, .en .expert--wrap .expert--content .expert--c--5 .expert--c--4--c--c, .en .expert--wrap .expert--content .expert--c--6 .expert--c--4--c--c {
    position: relative;
  }
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--4--c, .en .expert--wrap .expert--content .expert--c--4 .expert--c--4--c, .en .expert--wrap .expert--content .expert--c--5 .expert--c--4--c, .en .expert--wrap .expert--content .expert--c--6 .expert--c--4--c {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 49%;
  opacity: 0;
  overflow: hidden;
  height: 172px;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--3 .expert--c--4--c, .en .expert--wrap .expert--content .expert--c--4 .expert--c--4--c, .en .expert--wrap .expert--content .expert--c--5 .expert--c--4--c, .en .expert--wrap .expert--content .expert--c--6 .expert--c--4--c {
    width: 100%;
    position: static;
    height: 110px;
    overflow: hidden;
    margin-bottom: 10px;
  }
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--4--c .expert--c--4--item--left, .en .expert--wrap .expert--content .expert--c--4 .expert--c--4--c .expert--c--4--item--left, .en .expert--wrap .expert--content .expert--c--5 .expert--c--4--c .expert--c--4--item--left, .en .expert--wrap .expert--content .expert--c--6 .expert--c--4--c .expert--c--4--item--left {
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(64, 64, 64, 0.6);
  height: 172px;
  text-align: left;
  display: table;
  transition: all 1s;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--3 .expert--c--4--c .expert--c--4--item--left, .en .expert--wrap .expert--content .expert--c--4 .expert--c--4--c .expert--c--4--item--left, .en .expert--wrap .expert--content .expert--c--5 .expert--c--4--c .expert--c--4--item--left, .en .expert--wrap .expert--content .expert--c--6 .expert--c--4--c .expert--c--4--item--left {
    height: 110px;
    overflow: hidden;
    position: absolute;
    float: left;
  }
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--4--c .expert--c--4--item--left .expert--c--4--item--left--txt, .en .expert--wrap .expert--content .expert--c--4 .expert--c--4--c .expert--c--4--item--left .expert--c--4--item--left--txt, .en .expert--wrap .expert--content .expert--c--5 .expert--c--4--c .expert--c--4--item--left .expert--c--4--item--left--txt, .en .expert--wrap .expert--content .expert--c--6 .expert--c--4--c .expert--c--4--item--left .expert--c--4--item--left--txt {
  vertical-align: middle;
  display: table-cell;
  padding: 0 10%;
  color: #fff;
  font-size: 14px;
  line-height: 1.2em;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--3 .expert--c--4--c .expert--c--4--item--left .expert--c--4--item--left--txt, .en .expert--wrap .expert--content .expert--c--4 .expert--c--4--c .expert--c--4--item--left .expert--c--4--item--left--txt, .en .expert--wrap .expert--content .expert--c--5 .expert--c--4--c .expert--c--4--item--left .expert--c--4--item--left--txt, .en .expert--wrap .expert--content .expert--c--6 .expert--c--4--c .expert--c--4--item--left .expert--c--4--item--left--txt {
    font-size: 10px;
    text-align: left;
  }
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--4--c .expert--c--4--item--right, .en .expert--wrap .expert--content .expert--c--4 .expert--c--4--c .expert--c--4--item--right, .en .expert--wrap .expert--content .expert--c--5 .expert--c--4--c .expert--c--4--item--right, .en .expert--wrap .expert--content .expert--c--6 .expert--c--4--c .expert--c--4--item--right {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  height: 172px;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--3 .expert--c--4--c .expert--c--4--item--right, .en .expert--wrap .expert--content .expert--c--4 .expert--c--4--c .expert--c--4--item--right, .en .expert--wrap .expert--content .expert--c--5 .expert--c--4--c .expert--c--4--item--right, .en .expert--wrap .expert--content .expert--c--6 .expert--c--4--c .expert--c--4--item--right {
    height: 110px;
    overflow: hidden;
    position: absolute;
    float: right;
  }
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--4--c .expert--c--4--item--right img, .en .expert--wrap .expert--content .expert--c--4 .expert--c--4--c .expert--c--4--item--right img, .en .expert--wrap .expert--content .expert--c--5 .expert--c--4--c .expert--c--4--item--right img, .en .expert--wrap .expert--content .expert--c--6 .expert--c--4--c .expert--c--4--item--right img {
  transition: all 1s;
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--4--c:hover .expert--c--4--item--left, .en .expert--wrap .expert--content .expert--c--4 .expert--c--4--c:hover .expert--c--4--item--left, .en .expert--wrap .expert--content .expert--c--5 .expert--c--4--c:hover .expert--c--4--item--left, .en .expert--wrap .expert--content .expert--c--6 .expert--c--4--c:hover .expert--c--4--item--left {
  background-color: rgba(64, 64, 64, 0.9);
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--4--c:hover .expert--c--4--item--right img, .en .expert--wrap .expert--content .expert--c--4 .expert--c--4--c:hover .expert--c--4--item--right img, .en .expert--wrap .expert--content .expert--c--5 .expert--c--4--c:hover .expert--c--4--item--right img, .en .expert--wrap .expert--content .expert--c--6 .expert--c--4--c:hover .expert--c--4--item--right img {
  transform: scale(1.1);
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--4--1, .en .expert--wrap .expert--content .expert--c--4 .expert--c--4--1, .en .expert--wrap .expert--content .expert--c--5 .expert--c--4--1, .en .expert--wrap .expert--content .expert--c--6 .expert--c--4--1 {
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--3 .expert--c--4--1, .en .expert--wrap .expert--content .expert--c--4 .expert--c--4--1, .en .expert--wrap .expert--content .expert--c--5 .expert--c--4--1, .en .expert--wrap .expert--content .expert--c--6 .expert--c--4--1 {
    position: static;
  }
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--4--2, .en .expert--wrap .expert--content .expert--c--4 .expert--c--4--2, .en .expert--wrap .expert--content .expert--c--5 .expert--c--4--2, .en .expert--wrap .expert--content .expert--c--6 .expert--c--4--2 {
  top: 0;
  left: 51%;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--3 .expert--c--4--2, .en .expert--wrap .expert--content .expert--c--4 .expert--c--4--2, .en .expert--wrap .expert--content .expert--c--5 .expert--c--4--2, .en .expert--wrap .expert--content .expert--c--6 .expert--c--4--2 {
    position: static;
  }
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--4--3, .en .expert--wrap .expert--content .expert--c--4 .expert--c--4--3, .en .expert--wrap .expert--content .expert--c--5 .expert--c--4--3, .en .expert--wrap .expert--content .expert--c--6 .expert--c--4--3 {
  top: 176px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--3 .expert--c--4--3, .en .expert--wrap .expert--content .expert--c--4 .expert--c--4--3, .en .expert--wrap .expert--content .expert--c--5 .expert--c--4--3, .en .expert--wrap .expert--content .expert--c--6 .expert--c--4--3 {
    position: static;
  }
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--4--4, .en .expert--wrap .expert--content .expert--c--4 .expert--c--4--4, .en .expert--wrap .expert--content .expert--c--5 .expert--c--4--4, .en .expert--wrap .expert--content .expert--c--6 .expert--c--4--4 {
  top: 176px;
  left: 51%;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--3 .expert--c--4--4, .en .expert--wrap .expert--content .expert--c--4 .expert--c--4--4, .en .expert--wrap .expert--content .expert--c--5 .expert--c--4--4, .en .expert--wrap .expert--content .expert--c--6 .expert--c--4--4 {
    position: static;
  }
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--5--c, .en .expert--wrap .expert--content .expert--c--4 .expert--c--5--c, .en .expert--wrap .expert--content .expert--c--5 .expert--c--5--c, .en .expert--wrap .expert--content .expert--c--6 .expert--c--5--c {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 49%;
  opacity: 0;
  overflow: hidden;
  height: 120px;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--3 .expert--c--5--c, .en .expert--wrap .expert--content .expert--c--4 .expert--c--5--c, .en .expert--wrap .expert--content .expert--c--5 .expert--c--5--c, .en .expert--wrap .expert--content .expert--c--6 .expert--c--5--c {
    /*width: 100%;
    position:static;
    height:90px; 
    overflow:hidden;
    margin-bottom: 10px;*/
    height: 60px;
    width: 47%;
  }
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--5--c .expert--c--5--item--left, .en .expert--wrap .expert--content .expert--c--4 .expert--c--5--c .expert--c--5--item--left, .en .expert--wrap .expert--content .expert--c--5 .expert--c--5--c .expert--c--5--item--left, .en .expert--wrap .expert--content .expert--c--6 .expert--c--5--c .expert--c--5--item--left {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #505050;
  height: 120px;
  text-align: left;
  display: table;
  transition: all 1s;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--3 .expert--c--5--c .expert--c--5--item--left, .en .expert--wrap .expert--content .expert--c--4 .expert--c--5--c .expert--c--5--item--left, .en .expert--wrap .expert--content .expert--c--5 .expert--c--5--c .expert--c--5--item--left, .en .expert--wrap .expert--content .expert--c--6 .expert--c--5--c .expert--c--5--item--left {
    height: 60px;
    overflow: hidden;
    position: absolute;
    float: left;
  }
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--5--c .expert--c--5--item--left .expert--c--5--item--left--txt, .en .expert--wrap .expert--content .expert--c--4 .expert--c--5--c .expert--c--5--item--left .expert--c--5--item--left--txt, .en .expert--wrap .expert--content .expert--c--5 .expert--c--5--c .expert--c--5--item--left .expert--c--5--item--left--txt, .en .expert--wrap .expert--content .expert--c--6 .expert--c--5--c .expert--c--5--item--left .expert--c--5--item--left--txt {
  vertical-align: middle;
  display: table-cell;
  text-align: left;
  padding: 0 10%;
  color: #fff;
  font-size: 16px;
  line-height: 1.2em;
  padding-left: 168px;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--3 .expert--c--5--c .expert--c--5--item--left .expert--c--5--item--left--txt, .en .expert--wrap .expert--content .expert--c--4 .expert--c--5--c .expert--c--5--item--left .expert--c--5--item--left--txt, .en .expert--wrap .expert--content .expert--c--5 .expert--c--5--c .expert--c--5--item--left .expert--c--5--item--left--txt, .en .expert--wrap .expert--content .expert--c--6 .expert--c--5--c .expert--c--5--item--left .expert--c--5--item--left--txt {
    font-size: 10px;
    padding-left: 70px;
  }
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--5--c .expert--c--5--item--right, .en .expert--wrap .expert--content .expert--c--4 .expert--c--5--c .expert--c--5--item--right, .en .expert--wrap .expert--content .expert--c--5 .expert--c--5--c .expert--c--5--item--right, .en .expert--wrap .expert--content .expert--c--6 .expert--c--5--c .expert--c--5--item--right {
  width: 120px;
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  z-index: 3;
  overflow: hidden;
  height: 120px;
  background-color: #dcdcdc;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--3 .expert--c--5--c .expert--c--5--item--right, .en .expert--wrap .expert--content .expert--c--4 .expert--c--5--c .expert--c--5--item--right, .en .expert--wrap .expert--content .expert--c--5 .expert--c--5--c .expert--c--5--item--right, .en .expert--wrap .expert--content .expert--c--6 .expert--c--5--c .expert--c--5--item--right {
    height: 60px;
    width: 60px;
    overflow: hidden;
    position: absolute;
    float: right;
  }
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--5--c .expert--c--5--item--right img, .en .expert--wrap .expert--content .expert--c--4 .expert--c--5--c .expert--c--5--item--right img, .en .expert--wrap .expert--content .expert--c--5 .expert--c--5--c .expert--c--5--item--right img, .en .expert--wrap .expert--content .expert--c--6 .expert--c--5--c .expert--c--5--item--right img {
  transition: all 1s;
  width: 100%;
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--5--c:hover .expert--c--5--item--left, .en .expert--wrap .expert--content .expert--c--4 .expert--c--5--c:hover .expert--c--5--item--left, .en .expert--wrap .expert--content .expert--c--5 .expert--c--5--c:hover .expert--c--5--item--left, .en .expert--wrap .expert--content .expert--c--6 .expert--c--5--c:hover .expert--c--5--item--left {
  background-color: rgba(64, 64, 64, 0.9);
  padding-left: 20px;
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--5--c:hover .expert--c--5--item--right img, .en .expert--wrap .expert--content .expert--c--4 .expert--c--5--c:hover .expert--c--5--item--right img, .en .expert--wrap .expert--content .expert--c--5 .expert--c--5--c:hover .expert--c--5--item--right img, .en .expert--wrap .expert--content .expert--c--6 .expert--c--5--c:hover .expert--c--5--item--right img {
  transform: scale(1.1);
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--5--c--c, .en .expert--wrap .expert--content .expert--c--4 .expert--c--5--c--c, .en .expert--wrap .expert--content .expert--c--5 .expert--c--5--c--c, .en .expert--wrap .expert--content .expert--c--6 .expert--c--5--c--c {
  position: relative;
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--5--1, .en .expert--wrap .expert--content .expert--c--4 .expert--c--5--1, .en .expert--wrap .expert--content .expert--c--5 .expert--c--5--1, .en .expert--wrap .expert--content .expert--c--6 .expert--c--5--1 {
  top: 0;
  left: 0%;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--3 .expert--c--5--1, .en .expert--wrap .expert--content .expert--c--4 .expert--c--5--1, .en .expert--wrap .expert--content .expert--c--5 .expert--c--5--1, .en .expert--wrap .expert--content .expert--c--6 .expert--c--5--1 {
    left: 2%;
  }
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--5--2, .en .expert--wrap .expert--content .expert--c--4 .expert--c--5--2, .en .expert--wrap .expert--content .expert--c--5 .expert--c--5--2, .en .expert--wrap .expert--content .expert--c--6 .expert--c--5--2 {
  top: 0;
  left: 51%;
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--5--3, .en .expert--wrap .expert--content .expert--c--4 .expert--c--5--3, .en .expert--wrap .expert--content .expert--c--5 .expert--c--5--3, .en .expert--wrap .expert--content .expert--c--6 .expert--c--5--3 {
  top: 146px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--3 .expert--c--5--3, .en .expert--wrap .expert--content .expert--c--4 .expert--c--5--3, .en .expert--wrap .expert--content .expert--c--5 .expert--c--5--3, .en .expert--wrap .expert--content .expert--c--6 .expert--c--5--3 {
    left: 2%;
    top: 70px;
  }
}
.en .expert--wrap .expert--content .expert--c--3 .expert--c--5--4, .en .expert--wrap .expert--content .expert--c--4 .expert--c--5--4, .en .expert--wrap .expert--content .expert--c--5 .expert--c--5--4, .en .expert--wrap .expert--content .expert--c--6 .expert--c--5--4 {
  top: 146px;
  left: 51%;
}
@media screen and (max-width: 767px) {
  .en .expert--wrap .expert--content .expert--c--3 .expert--c--5--4, .en .expert--wrap .expert--content .expert--c--4 .expert--c--5--4, .en .expert--wrap .expert--content .expert--c--5 .expert--c--5--4, .en .expert--wrap .expert--content .expert--c--6 .expert--c--5--4 {
    top: 70px;
  }
}
.en .expert--title {
  position: absolute;
  top: 50%;
  width: 26.8%;
  z-index: 1;
  left: 300px;
  max-width: 385px;
}
.en .expert--title img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .en .expert--title {
    top: 45%;
    width: 50%;
    z-index: 1;
    left: 25%;
  }
  .en .expert--title img {
    width: 100%;
  }
}
.en .expert--layout--1 {
  background: url("../../images/en/3/bg.jpg") 0 0 no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
.en .expert--layout--mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .en .expert--layout--mobile {
    background: url("../../images/en/3/mobile--bg.jpg") right 0 no-repeat;
    background-size: cover;
    display: block;
    width: 100%;
    z-index: 0;
    height: 100%;
  }
}
.en .expert--c--5--c p {
  font-size: 12px;
  width: 100%;
  text-align: center;
  line-height: 1.5em;
  color: #fff;
  padding-bottom: 1.5em;
}
.en .expert--c--5--5 {
  width: 388px;
  position: absolute;
  top: 270px;
  left: 3%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .en .expert--c--5--5 {
    width: 45%;
    top: 140px;
  }
}
.en .expert--c--5--6 {
  width: 24%;
  position: absolute;
  top: 360px;
  left: 0;
  z-index: 1;
}
.en .expert--c--5--6 img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .en .expert--c--5--6 {
    top: 180px;
    width: 28%;
  }
}
.en .expert--c--5--7 {
  width: 24%;
  position: absolute;
  top: 360px;
  left: 25%;
  z-index: 1;
}
.en .expert--c--5--7 img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .en .expert--c--5--7 {
    top: 180px;
    width: 28%;
    left: 24%;
  }
}
.en .expert--c--5--8 {
  width: 24%;
  position: absolute;
  top: 360px;
  left: 50%;
  z-index: 1;
}
.en .expert--c--5--8 img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .en .expert--c--5--8 {
    top: 180px;
    width: 28%;
    left: 48%;
  }
}
.en .expert--c--5--9 {
  width: 24%;
  position: absolute;
  top: 360px;
  left: 75%;
  z-index: 1;
}
.en .expert--c--5--9 img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .en .expert--c--5--9 {
    top: 180px;
    width: 28%;
    left: 71%;
  }
}
@media screen and (max-width: 767px) {
  .en .expert--c--5 {
    min-height: 400px;
  }
}
.en .expert--c--2--1--item {
  width: 11.9%;
  float: left;
  margin-left: 3%;
  background-color: #c3c3c3;
  border-radius: 50%;
  padding: 1%;
}
.en .expert--c--2--1--item:first-child {
  margin-left: 0%;
}
.en .expert--c--2--1--item:hover {
  background-color: #bf9b5f;
}
.en .expert--c--2--1 {
  padding-bottom: 20px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 10%;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .en .expert--c--2--1 {
    width: 96%;
    overflow: hidden;
    position: static;
    height: 80px;
    overflow: hidden;
  }
}

* {
  padding: 0;
  margin: 0;
}

html {
  -webkit-text-size-adjust: none;
}

body {
  padding: 0;
  background-color: #1f1f1f;
  margin: 0;
  position: relative;
}

a:link,
a:visited {
  color: #333;
  text-decoration: none;
}

a:hover,
a:active {
  color: #b0a56c;
}

p {
  color: #000;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

.clear {
  clear: both;
}

div {
  color: #999;
}

li {
  list-style-type: none;
}

/*
*@include wBackgroundImg('icon/nav-bg.png','',0,0,repeat);
*/
/* page
----------------------------------------------------------------------*/
.clear {
  clear: both;
}

.shiploop {
  animation: shiploopCss 2s infinite linear;
}

@keyframes shiploopCss {
  0% {
    transform: rotate(0deg);
    top: 0px;
  }
  10% {
    transform: rotate(3deg);
    top: 30px;
  }
  20% {
    transform: rotate(0deg);
    top: 0px;
  }
  30% {
    transform: rotate(-6deg);
    top: -30px;
  }
  40% {
    transform: rotate(0deg);
    top: 0px;
  }
  50% {
    transform: rotate(3deg);
    top: 30px;
  }
  60% {
    transform: rotate(0deg);
    top: 0px;
  }
  70% {
    transform: rotate(-6deg);
    top: -30px;
  }
  80% {
    transform: rotate(0deg);
    top: 0px;
  }
  90% {
    transform: rotate(3deg);
    top: 15px;
  }
  100% {
    transform: rotate(0deg);
    top: 0px;
  }
}
.starloop1 {
  animation: starloop1Css 2s infinite linear;
}

@keyframes starloop1Css {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.starloop2 {
  animation: starloop2Css 2s infinite linear;
}

@keyframes starloop2Css {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cn__word {
  display: block;
}

.en__word {
  display: none;
}
