.partnersArea .Img img, .knowledgeArea .knowledgeList .title a::before, .educationArea .item, .bannerArea .newsBox .newsList .title a::before {
  transition: all 0.5s;
}

@-webkit-keyframes bannerTxtAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes bannerTxtAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes bannerScrollAnimation {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes bannerScrollAnimation {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.popWin {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 100vh;
  font-size: 15px;
  line-height: 1.8;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.7s;
}
.popWin .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.7s;
}
.popWin .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 700px;
  max-width: 90%;
  max-height: 85vh;
  opacity: 0;
  background-color: #fff;
  transition: all 0.7s;
}
.popWin .popContent {
  max-height: 85vh;
  overflow-y: auto;
}
.popWin img {
  display: block;
  max-width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.popWin .Txt {
  padding: 30px;
}
.popWin .Txt .popTitle {
  font-size: 25px;
  margin-bottom: 25px;
}
.popWin .close {
  position: absolute;
  right: -23px;
  top: -23px;
  z-index: 1;
  width: 46px;
  height: 46px;
  background-color: rgba(0, 0, 0, 0.7);
  /* background-color: #fff; */
  border-radius: 50%;
}
.popWin .close::before, .popWin .close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 23px;
  width: 25px;
  height: 1px;
  background-color: #bca480;
  /* border-radius:  50%; */
}
.popWin .close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popWin.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popWin.show .mask,
.popWin.show .inner {
  opacity: 1;
}
.popWin .close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (max-width: 1200px) {
  .popWin .close {
    right: 0;
    top: 0;
    border-radius: 0;
  }
  .popWin .popContent {
    max-height: calc(100vh - 150px);
  }
}

.mainArea {
  position: relative;
  padding: 0;
  z-index: 1;
}

.bannerArea {
  position: relative;
  background: url(../images/bn/bg.jpg) no-repeat center/cover;
  padding: 84px 0 135px;
}
@media (min-width: 641px) and (max-width: 1200px) {
  .bannerArea {
    padding: 84px 0 175px;
  }
}
@media (max-width: 640px) {
  .bannerArea {
    background: url(../images/bn/bg_m.jpg) no-repeat bottom/cover;
    padding: 84px 0 91px;
  }
}
.bannerArea .wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  max-width: 1440px;
  padding: 0 20px;
}
.bannerArea .bannerBox {
  position: relative;
  width: 68.8571428571%;
  height: 598px;
  padding: 0 28px;
}
@media (max-width: 1200px) {
  .bannerArea .bannerBox {
    width: 100%;
    height: auto;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .bannerArea .bannerBox .bannerList,
.bannerArea .bannerBox .slick-list,
.bannerArea .bannerBox .slick-track,
.bannerArea .bannerBox .bannerItem,
.bannerArea .bannerBox .Img {
    height: 100%;
  }
}
.bannerArea .bannerBox .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerBox .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerBox .bannerItem {
  padding: 0 2px;
}
.bannerArea .bannerBox .bannerItem .Img {
  position: relative;
  border: 2px solid #212121;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}
.bannerArea .bannerBox .bannerItem .Img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  .bannerArea .bannerBox .arrowBox {
    display: none;
  }
}
.bannerArea .newsBox {
  position: relative;
  width: calc(31.1428571429% - 38px);
  background: url(../images/bn/news_top.svg) no-repeat top/100%;
  height: 598px;
  padding: 36px 30px 36px 38px;
  margin-left: 38px;
}
@media (max-width: 1200px) {
  .bannerArea .newsBox {
    width: 100%;
    height: auto;
    border: 2px solid #323232;
    background: #fff;
    border-radius: 10px;
    margin-top: 65px;
    margin-left: 0;
    padding: 34px 40px;
  }
}
@media (max-width: 414px) {
  .bannerArea .newsBox {
    padding: 34px 25px;
  }
}
.bannerArea .newsBox::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100% - 110px);
  background: url(../images/bn/news_mid.svg) top/100%;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 1400px) {
  .bannerArea .newsBox::before {
    top: 90px;
    height: calc(100% - 100px);
  }
}
@media (max-width: 1280px) {
  .bannerArea .newsBox::before {
    top: 80px;
    height: calc(100% - 90px);
  }
}
@media (max-width: 1200px) {
  .bannerArea .newsBox::before {
    content: none;
  }
}
.bannerArea .newsBox::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 19px;
  background: url(../images/bn/news_bottom.svg) no-repeat bottom/100%;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 1200px) {
  .bannerArea .newsBox::after {
    content: none;
  }
}
.bannerArea .newsBox .titleBox {
  margin-bottom: 5px;
}
.bannerArea .newsBox .titleBox .titleTw {
  font-size: 26px;
  letter-spacing: 3px;
}
.bannerArea .newsBox .titleBox .titleTw::after {
  content: none;
}
.bannerArea .newsBox .titleBox .titleTw::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 7px;
  background-color: #ffec00;
  z-index: -1;
}
.bannerArea .newsBox .newsList .newsItem {
  position: relative;
  padding: 30px 0 34px;
}
.bannerArea .newsBox .newsList .newsItem::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../images/bn/line.png) left;
  width: 100%;
  height: 3px;
  z-index: 1;
}
.bannerArea .newsBox .newsList .title a {
  position: relative;
  display: block;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 1;
}
.bannerArea .newsBox .newsList .title a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 7px;
  background-color: #ffec00;
  z-index: -1;
}
@media (min-width: 1201px) {
  .bannerArea .newsBox .newsList .title a:hover::before {
    width: 100%;
  }
}
.bannerArea .newsBox .newsList p.text {
  max-height: 48px;
  color: #505050;
  letter-spacing: 0.8px;
  line-height: 1.5;
  margin-top: 8px;
}
.bannerArea .newsBox .newsList .btn1 {
  margin-top: 22px;
}
@media (min-width: 1201px) {
  .bannerArea .newsBox .newsList .btn1 {
    padding-left: 8px;
  }
}
.bannerArea .newsBox .moreBtn {
  text-align: center;
  margin-top: 58px;
}
.bannerArea .newsBox .moreBtn a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  max-width: 334px;
  width: 100%;
  height: 51px;
  color: #fff;
  border: 2px solid #000;
  background-color: #000;
  border-radius: 50px;
  letter-spacing: 1px;
}
@media (min-width: 1201px) {
  .bannerArea .newsBox .moreBtn a:hover {
    color: #000;
    background-color: #fff;
  }
}
.bannerArea .illustrationBox {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 1200px) {
  .bannerArea .illustrationBox {
    display: none;
  }
}
.bannerArea .illustrationBox .illustration {
  position: absolute;
}
.bannerArea .illustrationBox .illustration1 {
  bottom: 34%;
  left: 2%;
  width: 3.3783783784%;
  height: 86px;
  background: url(../images/bn/illustration_1.png) no-repeat center/cover;
}
.bannerArea .illustrationBox .illustration2 {
  bottom: 28.1%;
  left: 6.7%;
  width: 7.0382882883%;
  height: 121px;
  background: url(../images/bn/illustration_2.png) no-repeat center/contain;
}
.bannerArea .illustrationBox .illustration3 {
  bottom: 7.4%;
  left: 2.7%;
  width: 9.3468468468%;
  height: 110px;
  background: url(../images/bn/illustration_3.png) no-repeat center/contain;
}
.bannerArea .illustrationBox .illustration4 {
  bottom: 0%;
  left: 12.8%;
  width: 8.5022522523%;
  height: 101px;
  background: url(../images/bn/illustration_4.png) no-repeat center/contain;
}
.bannerArea .illustrationBox .illustration5 {
  bottom: 4%;
  right: 31.2%;
  width: 6.1373873874%;
  height: 95px;
  background: url(../images/bn/illustration_5.png) no-repeat center/contain;
}

.carIllustration {
  position: absolute;
  top: -86px;
  right: 9.3%;
  width: 8.8963963964%;
  height: 106px;
  background: url(../images/bn/illustration_6.png) no-repeat center/contain;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .carIllustration {
    display: none;
  }
}

.aboutArea {
  position: relative;
  background: url(../images/home_about/bg.png) no-repeat center bottom;
  overflow: hidden;
  padding: 120px 0 220px;
}
@media (max-width: 1200px) {
  .aboutArea {
    background: none;
    padding: 0;
  }
}
@media (max-width: 640px) {
  .aboutArea {
    margin-top: 58px;
  }
}
.aboutArea .Txt {
  position: relative;
  z-index: 1;
}
@media (min-width: 1201px) {
  .aboutArea .Txt {
    max-width: 580px;
  }
}
.aboutArea .titleBox .titleTw {
  padding-top: 107px;
}
.aboutArea .titleBox .titleTw::after {
  background: url(../images/home_about/icon.png) no-repeat;
  width: 73px;
  height: 79px;
}
@media (min-width: 1201px) {
  .aboutArea .titleBox .titleTw {
    left: 0;
    padding-right: 50px;
  }
}
.aboutArea .text {
  color: #505050;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 2.1;
  margin-top: 38px;
}
@media (max-width: 1200px) {
  .aboutArea .text {
    margin-top: 28px;
  }
}
.aboutArea .btn2 {
  margin-top: 88px;
}
@media (max-width: 1200px) {
  .aboutArea .btn2 {
    margin-top: 58px;
  }
}
.aboutArea .signal {
  position: absolute;
  top: 16%;
  left: calc(50% - 74px);
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  width: 104px;
  height: 374px;
  background: url(../images/home_about/signal.png);
  transition: ease-in 0.5s;
  opacity: 0;
}
.aboutArea .signal.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
@media (max-width: 1200px) {
  .aboutArea .signal {
    display: none;
  }
}
.aboutArea .note {
  position: absolute;
  top: 35.5%;
  left: calc(50% + 643px);
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  width: 197px;
  height: 224px;
  background: url(../images/home_about/note.png);
  transition: ease-in 0.5s;
  opacity: 0;
}
.aboutArea .note.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
@media (max-width: 1200px) {
  .aboutArea .note {
    display: none;
  }
}
.aboutArea .people {
  position: absolute;
  top: 18.5%;
  left: calc(50% + 88px);
  width: 512px;
  height: 590px;
  background: url(../images/home_about/people.png);
}
@media (max-width: 1200px) {
  .aboutArea .people {
    display: none;
  }
}
.aboutArea .bg {
  display: none;
  margin-top: 50px;
}
.aboutArea .bg img {
  position: relative;
  left: -20px;
  display: block;
  width: calc(100% + 40px);
}
.aboutArea .bg .mobile {
  display: none;
}
@media (max-width: 1200px) {
  .aboutArea .bg {
    display: block;
    margin-top: 40px;
  }
}
@media (max-width: 640px) {
  .aboutArea .bg .mobile {
    display: block;
  }
  .aboutArea .bg .tablet {
    display: none;
  }
}

.educationArea {
  position: relative;
  overflow: hidden;
  padding: 53px 0 32px;
}
@media (max-width: 1200px) {
  .educationArea {
    padding: 35px 0 35px;
  }
}
.educationArea .wrap {
  position: relative;
  max-width: 1090px;
  z-index: 1;
}
.educationArea .titleBox {
  text-align: center;
  margin-bottom: 58px;
}
.educationArea .titleBox .titleTw {
  -ms-flex-pack: center;
      justify-content: center;
  padding-top: 80px;
}
.educationArea .titleBox .titleTw::after {
  left: calc(50% - 28px);
  background: url(../images/education/icon.png) no-repeat;
  width: 56px;
  height: 67px;
}
@media (max-width: 1200px) {
  .educationArea .titleBox {
    margin-bottom: 48px;
  }
  .educationArea .titleBox .titleTw::after {
    left: 50%;
  }
}
.educationArea .educationList {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -63px;
}
@media (max-width: 1366px) {
  .educationArea .educationList {
    margin: 0 -30px;
  }
}
@media (max-width: 1200px) {
  .educationArea .educationList {
    margin: 0 -10px;
  }
}
.educationArea .educationItem {
  width: 50%;
  padding: 0 63px 63px;
}
@media (min-width: 1201px) {
  .educationArea .educationItem:nth-child(odd) .item::before {
    background: url(../images/education/bg_1.png) no-repeat center/contain;
  }
  .educationArea .educationItem:nth-child(even) .item::before {
    background: url(../images/education/bg_2.png) no-repeat center/contain;
  }
}
@media (max-width: 1366px) {
  .educationArea .educationItem {
    padding: 0 30px 30px;
  }
}
@media (max-width: 1200px) {
  .educationArea .educationItem {
    padding: 0 10px 20px;
  }
  .educationArea .educationItem:nth-child(odd) .item {
    background-color: #ffe7ab;
  }
  .educationArea .educationItem:nth-child(even) .item {
    background-color: #e4f0fa;
  }
}
@media (max-width: 479px) {
  .educationArea .educationItem {
    width: 100%;
    padding: 10px;
  }
}
.educationArea .item {
  position: relative;
  padding: 106px 40px 43px;
}
@media (min-width: 1201px) {
  .educationArea .item:hover {
    -webkit-transform: translate(-12px, -12px);
            transform: translate(-12px, -12px);
  }
  .educationArea .item:hover::after {
    opacity: 1;
  }
}
@media (min-width: 1201px) {
  .educationArea .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .educationArea .item::after {
    content: "";
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: calc(100% + 8px);
    height: calc(100% + 5px);
    background: url(../images/education/bg_3.png) no-repeat center/contain;
    transition: all 0.3s;
    opacity: 0;
    z-index: -2;
  }
}
@media (max-width: 1200px) {
  .educationArea .item {
    border: 2px solid #000;
    border-radius: 10px;
    overflow: hidden;
    padding: 23px 18px 25px;
  }
}
.educationArea .link {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media (min-width: 1201px) {
  .educationArea .link {
    display: none;
  }
}
.educationArea .Img img {
  max-width: 85%;
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .educationArea .Img {
    padding: 0 9px;
  }
  .educationArea .Img img {
    max-width: 100%;
  }
}
.educationArea .Txt {
  margin-top: 57px;
}
.educationArea .Txt .title a {
  max-width: 379px;
}
@media (max-width: 1200px) {
  .educationArea .Txt {
    margin-top: 20px;
  }
  .educationArea .Txt .title a {
    max-width: 100%;
    min-height: auto;
    font-size: 18px;
    background-color: initial;
    border: none;
    border-radius: 0;
    padding: 0;
  }
}
.educationArea .illustrationBox {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .educationArea .illustrationBox {
    display: none;
  }
}
.educationArea .illustrationBox .illustration {
  position: absolute;
}
.educationArea .illustrationBox .illustration1 {
  top: 17%;
  left: 12%;
  top: calc(50% - 302px);
  left: calc(50% - 682px);
  width: 235px;
  height: 235px;
  background: url(../images/education/illustration_1.png) no-repeat center/contain;
  z-index: -1;
}
.educationArea .illustrationBox .illustration2 {
  bottom: 15%;
  right: 14%;
  bottom: calc(50% - 321px);
  right: calc(50% - 637px);
  width: 173px;
  height: 173px;
  background: url(../images/education/illustration_2.png) no-repeat center/contain;
  z-index: -1;
}
.educationArea .illustrationBox .illustration3 {
  bottom: 29.5%;
  right: 9.7%;
  bottom: calc(50% - 187px);
  right: calc(50% - 717px);
  width: 117px;
  height: 121px;
  background: url(../images/education/illustration_3.png) no-repeat center/contain;
  z-index: -2;
}

.achievementArea {
  height: 781px;
  background-color: #efefef;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .achievementArea {
    height: auto;
    background-color: #fff;
    padding-top: 50px;
  }
}
@media (max-width: 640px) {
  .achievementArea {
    padding-top: 0;
  }
}
.achievementArea .wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1607px;
  height: 100%;
  padding: 0 20px 0 0;
  margin: 0;
}
@media (max-width: 1200px) {
  .achievementArea .wrap {
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 0;
  }
}
.achievementArea .leftBox {
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 490px);
  -webkit-transform: rotate(-8.6deg) translateX(-33px) rotateZ(0);
          transform: rotate(-8.6deg) translateX(-33px) rotateZ(0);
  pointer-events: none;
  margin: 0 -8px;
}
@media (max-width: 1200px) {
  .achievementArea .leftBox {
    position: relative;
    -ms-flex-order: 2;
        order: 2;
    width: 100%;
    height: 630px;
    -webkit-transform: none;
            transform: none;
    overflow: hidden;
    margin: 0;
  }
  .achievementArea .leftBox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #efefef;
  }
}
@media (max-width: 640px) {
  .achievementArea .leftBox {
    position: relative;
    left: -45%;
    width: 150%;
    height: 430px;
  }
}
.achievementArea .leftBox .listLeftBox,
.achievementArea .leftBox .listCenterBox,
.achievementArea .leftBox .listRightBox {
  width: 33.3333333333%;
  padding: 0 8px;
}
@media (max-width: 414px) {
  .achievementArea .leftBox .listLeftBox,
.achievementArea .leftBox .listCenterBox,
.achievementArea .leftBox .listRightBox {
    width: 50%;
  }
}
.achievementArea .leftBox .listLeftBox {
  margin-top: -106px;
  margin-top: -346px;
}
@media (max-width: 1200px) {
  .achievementArea .leftBox .listLeftBox {
    -webkit-transform: rotate(-8.6deg) translateX(-33px) rotateZ(0);
            transform: rotate(-8.6deg) translateX(-33px) rotateZ(0);
    margin-top: -40px;
  }
}
@media (max-width: 414px) {
  .achievementArea .leftBox .listLeftBox {
    display: none;
  }
}
.achievementArea .leftBox .listCenterBox {
  margin-top: -53px;
}
@media (max-width: 1200px) {
  .achievementArea .leftBox .listCenterBox {
    -webkit-transform: rotate(-8.6deg) translateX(-33px) rotateZ(0);
            transform: rotate(-8.6deg) translateX(-33px) rotateZ(0);
    margin-top: -50px;
  }
}
.achievementArea .leftBox .listRightBox {
  margin-top: -233px;
}
@media (max-width: 1200px) {
  .achievementArea .leftBox .listRightBox {
    -webkit-transform: rotate(-8.6deg) translateX(-46px) rotateZ(0);
            transform: rotate(-8.6deg) translateX(-46px) rotateZ(0);
    margin-top: -250px;
  }
}
.achievementArea .leftBox .achievementList {
  margin: 0 -6px;
}
.achievementArea .leftBox .achievementItem {
  padding: 6px;
}
.achievementArea .leftBox .Img {
  border: 2px solid #000;
  background-color: #c9c9c9;
  border-radius: 6px;
  overflow: hidden;
}
.achievementArea .leftBox .Img img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.achievementArea .leftBox .Txt {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #fff;
  font-weight: 500;
  border: 2px solid #000;
  background-color: #a9a9a9;
  border-radius: 6px;
  letter-spacing: 1px;
  line-height: 1.2;
  text-align: center;
  padding: 25px 10px;
  margin-top: 10px;
}
.achievementArea .leftBox .Txt em {
  position: relative;
  top: -4px;
  font-size: 30px;
  color: #ffec00;
}
@media (max-width: 1600px) {
  .achievementArea .leftBox .Txt em {
    top: 0;
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .achievementArea .leftBox .Txt {
    font-size: 14px;
    padding: 15px 10px;
  }
  .achievementArea .leftBox .Txt em {
    font-size: 14px;
  }
}
.achievementArea .rightBox {
  width: 490px;
  padding: 11.5% 0 0 70px;
}
@media (max-width: 1200px) {
  .achievementArea .rightBox {
    -ms-flex-order: 1;
        order: 1;
    width: 100%;
    padding: 0 20px 55px;
  }
}
.achievementArea .rightBox .titleBox {
  margin-bottom: 40px;
}
.achievementArea .rightBox .titleBox .titleTw {
  padding-top: 57px;
}
.achievementArea .rightBox .titleBox .titleTw::after {
  left: 0;
  background: url(../images/achievement/icon.png) no-repeat;
  width: 42px;
  height: 43px;
}
@media (max-width: 1200px) {
  .achievementArea .rightBox .titleBox {
    margin-bottom: 30px;
  }
  .achievementArea .rightBox .titleBox .titleTw::after {
    left: 50%;
  }
}
.achievementArea .rightBox .infoBox {
  color: #303030;
  font-size: 17px;
  letter-spacing: 1.2px;
  line-height: 2.1;
}

.knowledgeArea {
  overflow: hidden;
  padding: 70px 0 80px;
}
@media (max-width: 1200px) {
  .knowledgeArea {
    padding: 40px 0 60px;
  }
}
.knowledgeArea .wrap {
  max-width: 100%;
}
@media (min-width: 1201px) {
  .knowledgeArea .wrap {
    padding: 0;
  }
}
.knowledgeArea .titleBox {
  text-align: center;
  margin-bottom: 50px;
}
.knowledgeArea .titleBox .titleTw {
  -ms-flex-pack: center;
      justify-content: center;
  padding-top: 64px;
}
.knowledgeArea .titleBox .titleTw::after {
  left: calc(50% - 18.5px);
  background: url(../images/partners/icon.png) no-repeat;
  width: 37px;
  height: 54px;
}
@media (max-width: 1200px) {
  .knowledgeArea .titleBox {
    margin-bottom: 30px;
  }
  .knowledgeArea .titleBox .titleTw::after {
    left: 50%;
  }
}
.knowledgeArea .listBox.full .listLeftBox,
.knowledgeArea .listBox.full .listRightBox {
  display: none;
}
.knowledgeArea .listBox.full .listCenterBox {
  width: 100%;
}
@media (min-width: 1201px) {
  .knowledgeArea .listBox:not(.full) {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 135%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: start;
        align-items: flex-start;
  }
}
.knowledgeArea .listLeftBox {
  width: 36.2385321101%;
  overflow: hidden;
  padding: 0 30px;
}
@media (max-width: 1200px) {
  .knowledgeArea .listLeftBox {
    display: none;
  }
}
.knowledgeArea .listLeftBox .knowledgeList .classTitle {
  top: 4px;
}
.knowledgeArea .listLeftBox .knowledgeList .classTitle span {
  width: 26px;
  height: 26px;
  font-size: 15px;
  margin: 0 -4.5px;
}
.knowledgeArea .listLeftBox .knowledgeList .Txt {
  margin-top: 16px;
}
.knowledgeArea .listLeftBox .knowledgeList .title a {
  font-size: 20px;
}
.knowledgeArea .listLeftBox .knowledgeList p.text {
  margin-top: 7px;
}
.knowledgeArea .listLeftBox .knowledgeList .tagList {
  margin: 13px -5.5px 0;
}
.knowledgeArea .listLeftBox .knowledgeList .btn1 {
  margin-top: 29px;
}
.knowledgeArea .listCenterBox {
  position: relative;
  width: 27.5229357798%;
  overflow: hidden;
  padding: 0 30px;
}
@media (max-width: 1200px) {
  .knowledgeArea .listCenterBox {
    width: 100%;
  }
}
.knowledgeArea .listCenterBox .knowledgeList .classTitle {
  top: 6px;
}
.knowledgeArea .listCenterBox .knowledgeList .classTitle span {
  width: 38px;
  height: 38px;
  font-size: 22px;
  margin: -6px;
}
.knowledgeArea .listCenterBox .knowledgeList .Txt {
  margin-top: 31px;
}
@media (max-width: 1200px) {
  .knowledgeArea .listCenterBox .knowledgeList .Txt {
    margin-top: 24px;
  }
}
.knowledgeArea .listCenterBox .knowledgeList .title a {
  font-size: 24px;
}
@media (max-width: 1200px) {
  .knowledgeArea .listCenterBox .knowledgeList .title a {
    font-size: 20px;
  }
}
.knowledgeArea .listCenterBox .knowledgeList p.text {
  margin-top: 18px;
}
@media (max-width: 1200px) {
  .knowledgeArea .listCenterBox .knowledgeList p.text {
    margin-top: 11px;
  }
}
.knowledgeArea .listCenterBox .knowledgeList .tagList {
  margin: 25px -5.5px 0;
}
@media (max-width: 1200px) {
  .knowledgeArea .listCenterBox .knowledgeList .tagList {
    margin: 15px -5.5px 0;
  }
}
.knowledgeArea .listRightBox {
  width: 36.2385321101%;
  overflow: hidden;
  padding: 0 30px;
}
@media (max-width: 1200px) {
  .knowledgeArea .listRightBox {
    display: none;
  }
}
.knowledgeArea .listRightBox .knowledgeList .classTitle {
  top: 4px;
}
.knowledgeArea .listRightBox .knowledgeList .classTitle span {
  width: 26px;
  height: 26px;
  font-size: 15px;
  margin: 0 -4.5px;
}
.knowledgeArea .listRightBox .knowledgeList .Txt {
  margin-top: 16px;
}
.knowledgeArea .listRightBox .knowledgeList .title a {
  font-size: 20px;
}
.knowledgeArea .listRightBox .knowledgeList p.text {
  margin-top: 7px;
}
.knowledgeArea .listRightBox .knowledgeList .tagList {
  margin: 13px -5.5px 0;
}
.knowledgeArea .listRightBox .knowledgeList .btn1 {
  margin-top: 29px;
}
.knowledgeArea .knowledgeList {
  margin: 0 -30px;
}
@media (max-width: 1200px) {
  .knowledgeArea .knowledgeList {
    margin: 0 -15px;
  }
}
.knowledgeArea .knowledgeList .knowledgeItem {
  padding: 0 30px;
}
@media (max-width: 1200px) {
  .knowledgeArea .knowledgeList .knowledgeItem {
    padding: 0 15px;
  }
}
.knowledgeArea .knowledgeList .item {
  position: relative;
  padding-top: 18px;
}
.knowledgeArea .knowledgeList .classTitle {
  position: absolute;
  left: 24px;
  width: calc(100% - 48px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 1;
}
.knowledgeArea .knowledgeList .classTitle span {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #fff;
  font-weight: 500;
}
.knowledgeArea .knowledgeList .classTitle span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #000;
  z-index: -1;
}
.knowledgeArea .knowledgeList .Img {
  border: 2px solid #000;
  background-color: #c9c9c9;
  border-radius: 6px;
  overflow: hidden;
}
.knowledgeArea .knowledgeList .Img img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.knowledgeArea .knowledgeList .title {
  max-height: 70px;
}
.knowledgeArea .knowledgeList .title a {
  position: relative;
  display: inline-block;
  color: #000;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1.45;
}
.knowledgeArea .knowledgeList .title a::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 7px;
  background-color: #ffec00;
  z-index: -1;
}
@media (min-width: 1201px) {
  .knowledgeArea .knowledgeList .title a:hover::before {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .knowledgeArea .knowledgeList .title {
    max-height: 58px;
  }
}
.knowledgeArea .knowledgeList p.text {
  max-height: 47px;
  color: #505050;
  letter-spacing: 0.66px;
  line-height: 1.45;
}
.knowledgeArea .knowledgeList .tagList {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.knowledgeArea .knowledgeList .tagList li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  min-height: 30px;
  color: #313131;
  background-color: #e1e1e1;
  border-radius: 50px;
  padding: 4px 15px;
  margin: 3px 5.5px;
}

.partnersArea {
  background-color: #f0f0f0;
  padding: 38px 0 67px;
}
@media (max-width: 1200px) {
  .partnersArea {
    padding: 55px 0 27px;
  }
}
.partnersArea .titleBox {
  text-align: center;
  margin-bottom: 40px;
}
.partnersArea .titleBox .titleTw {
  -ms-flex-pack: center;
      justify-content: center;
  padding-top: 64px;
}
.partnersArea .titleBox .titleTw::after {
  left: calc(50% - 26px);
  background: url(../images/partners/icon2.png) no-repeat;
  width: 52px;
  height: 49px;
}
@media (max-width: 1200px) {
  .partnersArea .titleBox {
    margin-bottom: 30px;
  }
  .partnersArea .titleBox .titleTw::after {
    left: 50%;
  }
}
.partnersArea .listBox {
  position: relative;
}
.partnersArea .partnersList {
  padding: 0 86px;
  margin: 0 -12.5px;
}
.partnersArea .partnersList .slick-track {
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .partnersArea .partnersList {
    padding: 0;
    margin: 0 -6px;
  }
}
.partnersArea .partnersItem {
  padding: 0 12.5px;
}
@media (max-width: 1200px) {
  .partnersArea .partnersItem {
    padding: 0 6px;
  }
}
.partnersArea .item {
  border: 2px solid #000;
  background-color: #fff;
  border-radius: 5px;
}
.partnersArea .Img a {
  display: block;
  padding: 7px 0;
}
@media (min-width: 1201px) {
  .partnersArea .Img a:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media (max-width: 1200px) {
  .partnersArea .Img a {
    padding: 4.5px 15px;
  }
}
.partnersArea .Img img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .partnersArea .arrowBox {
    display: none;
  }
}
.partnersArea .slick-dots {
  top: calc(100% + 46px);
}
@media (max-width: 1200px) {
  .partnersArea .slick-dots {
    top: calc(100% + 29px);
  }
}

@media (min-width: 1201px) {
  footer {
    padding-top: 64px;
  }
}