.newsArea .newsItem .title, .newsArea .newsItem .Img img, .newsArea .newsItem, .newsArea .newsBox .arrow svg, .newsArea .newsBox .arrow.swiper-button-lock, .newsArea .newsBox .arrow, .catalogArea .catalogBox .Txt .title, .catalogArea .catalogBox .Img, .catalogArea .catalogBox::before, .bannerArea .slickTools .arrowBox button, .popWin .close::before, .popWin .close::after, .popWin .close {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.popWin {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 100vh;
  font-size: 15px;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.7s;
  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;
  -webkit-transition: all 0.7s;
  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;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.popWin .popContent {
  max-height: 85vh;
  overflow-y: auto;
}
.popWin img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.popWin .Txt {
  padding: 30px;
}
.popWin .Txt .popTitle {
  font-size: 25px;
  margin-bottom: 25px;
}
.popWin .close {
  width: 46px;
  height: 46px;
  background-color: #303644;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.popWin .close::before, .popWin .close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 23px;
  width: 25px;
  height: 1px;
  background-color: #fff;
}
.popWin .close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popWin .close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 1201px) {
  .popWin .close:hover {
    background-color: #303644;
  }
  .popWin .close:hover::before {
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  .popWin .close:hover::after {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
}
.popWin.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popWin.show .mask,
.popWin.show .inner {
  opacity: 1;
}
@media (max-width: 1180px) {
  .popWin .popContent {
    max-height: calc(100vh - 150px);
  }
}

.mainArea {
  padding: 0;
}

.bannerArea {
  position: relative;
}
.bannerArea #lineSVG {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 10;
  width: 68%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
}
@media (max-width: 480px) {
  .bannerArea #lineSVG {
    display: none;
  }
}
.bannerArea .path {
  stroke: #fff;
  -webkit-animation: glow 5s infinite linear;
          animation: glow 5s infinite linear;
}
@-webkit-keyframes glow {
  0% {
    -webkit-filter: drop-shadow(0 0 5px #d1fefe) drop-shadow(0 0 20px #d1fefe);
            filter: drop-shadow(0 0 5px #d1fefe) drop-shadow(0 0 20px #d1fefe);
  }
  50% {
    -webkit-filter: drop-shadow(0 0 20px #d1fefe) drop-shadow(0 0 40px #d1fefe);
            filter: drop-shadow(0 0 20px #d1fefe) drop-shadow(0 0 40px #d1fefe);
  }
  100% {
    -webkit-filter: drop-shadow(0 0 5px #d1fefe) drop-shadow(0 0 20px #d1fefe);
            filter: drop-shadow(0 0 5px #d1fefe) drop-shadow(0 0 20px #d1fefe);
  }
}
@keyframes glow {
  0% {
    -webkit-filter: drop-shadow(0 0 5px #d1fefe) drop-shadow(0 0 20px #d1fefe);
            filter: drop-shadow(0 0 5px #d1fefe) drop-shadow(0 0 20px #d1fefe);
  }
  50% {
    -webkit-filter: drop-shadow(0 0 20px #d1fefe) drop-shadow(0 0 40px #d1fefe);
            filter: drop-shadow(0 0 20px #d1fefe) drop-shadow(0 0 40px #d1fefe);
  }
  100% {
    -webkit-filter: drop-shadow(0 0 5px #d1fefe) drop-shadow(0 0 20px #d1fefe);
            filter: drop-shadow(0 0 5px #d1fefe) drop-shadow(0 0 20px #d1fefe);
  }
}
.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Txt {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.bannerArea .bannerItem .Txt .textBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 390px;
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Txt .textBox {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.bannerArea .bannerItem .Txt .title {
  color: #20bec7;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.5px;
  opacity: 0;
  letter-spacing: 2.4px;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 24px;
  }
}
.bannerArea .bannerItem .Txt .subtitle {
  color: #fff;
  display: block;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-top: 10px;
  opacity: 0;
  letter-spacing: 2.4px;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .subtitle {
    margin-top: 5px;
    font-size: 18px;
  }
}
.bannerArea .bannerItem .Txt .decotitle {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  margin-top: 10px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
  line-height: 0.5;
  line-height: 1.15;
}
.bannerArea .bannerItem .Txt .decotitle::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #20bec7;
  left: 0;
  bottom: 0;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .decotitle {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .decotitle {
    margin-top: 5px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 24px;
  }
}
.bannerArea .bannerItem .Txt .text {
  color: #fff;
  display: block;
  opacity: 0;
  letter-spacing: 1.92px;
  line-height: 1.875;
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 14px;
  }
}
.bannerArea .bannerItem .Txt .btnBox {
  opacity: 0;
}
.bannerArea .bannerItem .Txt .bannerVideo .videoBtn {
  width: 100px;
  height: 100px;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  bottom: 150px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.bannerArea .bannerItem .Txt .bannerVideo .videoBtn::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #fff;
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 5px);
  z-index: 1;
}
.bannerArea .bannerItem .Txt .bannerVideo .videoBtn::after {
  content: "";
  border: 1px dashed #fff;
  border-radius: 50%;
  z-index: 1;
  width: 75%;
  height: 75%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .bannerVideo .videoBtn {
    width: 80px;
    height: 80px;
    right: 40%;
    bottom: 40px;
  }
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt {
    padding: 20px 20px 85px;
  }
}
@media (max-width: 960px) {
  .bannerArea .bannerItem .Txt {
    padding: 20px;
  }
}

@media (max-width: 481px) {
  .bannerArea .bannerItem .Txt {
    padding: 85px 20px;
  }
}

.bannerArea .bannerItem .Img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Img {
    -webkit-filter: brightness(0.65);
            filter: brightness(0.65);
    padding-bottom: 75%;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Img {
    padding-bottom: 125%;
  }
}
.bannerArea .slick-current .Txt .title {
  -webkit-animation: slideUpAnimation 0.8s ease-in-out forwards;
          animation: slideUpAnimation 0.8s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .subtitle {
  -webkit-animation: slideUpAnimation 0.8s 0.4s ease-in-out forwards;
          animation: slideUpAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .text {
  -webkit-animation: slideUpAnimation 0.8s 0.8s ease-in-out forwards;
          animation: slideUpAnimation 0.8s 0.8s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .btnBox {
  -webkit-animation: slideUpAnimation 0.8s 1.2s ease-in-out forwards;
          animation: slideUpAnimation 0.8s 1.2s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .videoBtn::after {
  -webkit-animation: rotate 50s linear forwards;
          animation: rotate 50s linear forwards;
}
.bannerArea .slick-arrow {
  top: 80%;
  left: auto;
}
.bannerArea .slick-arrow.slick-prev {
  right: 110px;
}
.bannerArea .slick-arrow.slick-next {
  right: 50px;
}
.bannerArea .slickTools {
  width: 100%;
  position: absolute;
  bottom: 60px;
  left: 0;
  z-index: 5;
}
.bannerArea .slickTools .toolBox {
  max-width: 885px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
}
.bannerArea .slickTools .toolBox .toolBoxLine {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 25px;
  border-bottom: 1px solid #fff;
  opacity: 0.5;
  position: relative;
}
.bannerArea .slickTools .numBox {
  font-size: 13px;
  letter-spacing: 1.04px;
}
.bannerArea .slickTools .arrowBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bannerArea .slickTools .arrowBox button {
  color: currentColor;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}
@media (min-width: 1201px) {
  .bannerArea .slickTools .arrowBox button:hover {
    color: #20bec7;
  }
}
.bannerArea .slickTools .arrowBox button.prev {
  margin-right: 15px;
}
.bannerArea .slickTools .arrowBox button.prev svg {
  margin-right: 5px;
}
.bannerArea .slickTools .arrowBox button.next svg {
  margin-left: 5px;
}
.bannerArea .slickTools .arrowBox svg {
  width: 16px;
  height: 16px;
}
.bannerArea canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.catalogArea {
  padding: 120px 0;
  position: relative;
  background-color: #eee;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .catalogArea {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .catalogArea {
    padding: 40px 0;
  }
}
.catalogArea::before {
  content: "";
  position: absolute;
  width: 1020px;
  height: 420px;
  background-image: url("../images/sideBg.jpg");
  background-size: cover;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
}
.catalogArea .wrap {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1180px) {
  .catalogArea .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.catalogArea .leftBox {
  max-width: 1060px;
  width: 100%;
}
@media (max-width: 1600px) {
  .catalogArea .leftBox {
    width: 70%;
  }
}
@media (max-width: 1440px) {
  .catalogArea .leftBox {
    width: 60%;
  }
}
@media (max-width: 1180px) {
  .catalogArea .leftBox {
    width: 100%;
  }
}
@media (min-width: 1181px) {
  .catalogArea .leftBox .mobile {
    display: none;
  }
}
@media (max-width: 640px) {
  .catalogArea .leftBox .mobile {
    display: none;
  }
}
.catalogArea .rightBox {
  text-align: right;
  max-width: 440px;
  padding-top: 35px;
  position: relative;
}
@media (max-width: 1600px) {
  .catalogArea .rightBox {
    width: 30%;
  }
}
@media (max-width: 1440px) {
  .catalogArea .rightBox {
    width: 40%;
  }
}
@media (max-width: 1180px) {
  .catalogArea .rightBox {
    display: none;
  }
}
@media (max-width: 640px) {
  .catalogArea .rightBox {
    display: block;
    width: 100%;
  }
}
.catalogArea .rightBox::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 20px;
  top: 15px;
  right: 0;
  background-color: #303644;
}
@media (max-width: 1600px) {
  .catalogArea .rightBox::after {
    width: 80%;
  }
}
.catalogArea .rightBox .catalogBox {
  margin-right: 0;
}
@media (max-width: 640px) {
  .catalogArea .rightBox .catalogBox {
    display: block;
    height: 400px;
  }
}
.catalogArea .topBox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .catalogArea .topBox {
    margin-bottom: 30px;
  }
}
@media (max-width: 640px) {
  .catalogArea .topBox {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.catalogArea .bottomBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 640px) {
  .catalogArea .bottomBox {
    display: none;
  }
}
.catalogArea .bottomBox .catalogBox {
  margin: 0;
}
@media (max-width: 1540px) {
  .catalogArea .bottomBox .catalogBox:not(.centerSwiper) {
    display: none;
  }
}
.catalogArea .bottomBox .catalogBox.centerSwiper {
  width: 620px;
  text-align: right;
}
@media (max-width: 1540px) {
  .catalogArea .bottomBox .catalogBox.centerSwiper {
    width: 100%;
  }
}
.catalogArea .bottomBox .catalogBox.centerSwiper img {
  max-height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.catalogArea .titleBox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .catalogArea .titleBox {
    margin-bottom: 20px;
  }
}
.catalogArea .titleBox .subtitle {
  line-height: 1;
  margin-right: 15px;
}
.catalogArea .btnBox {
  margin-top: 0;
}
.catalogArea .catalogBox {
  width: 380px;
  max-width: 100%;
  position: relative;
}
@media (max-width: 640px) {
  .catalogArea .catalogBox {
    display: none;
  }
}
@media (min-width: 1201px) {
  .catalogArea .catalogBox:hover::before {
    scale: 1;
  }
  .catalogArea .catalogBox:hover .Txt .title {
    color: #20bec7;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
  .catalogArea .catalogBox:hover .Img {
    -webkit-filter: brightness(0.6);
            filter: brightness(0.6);
  }
}
.catalogArea .catalogBox::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 70%;
  left: 10%;
  top: 15%;
  border: 5px solid #20bec7;
  z-index: 2;
  scale: 0;
  pointer-events: none;
}
.catalogArea .catalogBox .Img {
  font-size: 0;
  position: relative;
}
.catalogArea .catalogBox .Txt {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  word-break: keep-all;
}
.catalogArea .catalogBox .Txt .title {
  height: 100%;
  position: relative;
  -webkit-transform: translateY(85%);
          transform: translateY(85%);
}
.catalogArea .catalogBox .dataLink {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}
.catalogArea .arrowBox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1180px) {
  .catalogArea .arrowBox {
    width: 100%;
  }
}
@media (max-width: 1180px) {
  .catalogArea .arrowBox .btnBox {
    width: 50%;
  }
}
.catalogArea .arrowBox .btn {
  height: 70px;
  width: 170px;
  min-width: 170px;
  font-weight: 700;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 1180px) {
  .catalogArea .arrowBox .btn {
    min-width: auto;
    width: 100%;
  }
}
.catalogArea .arrowBox .btn.prev svg {
  margin-right: 10px;
}
.catalogArea .arrowBox .btn.next svg {
  margin-left: 10px;
}
.catalogArea .arrowBox .btn svg {
  width: 16px;
  height: 16px;
}

.aboutArea {
  position: relative;
}
.aboutArea .bg {
  overflow: hidden;
  max-width: 100%;
  font-size: 0;
}
@media (max-width: 768px) {
  .aboutArea .bg {
    max-height: 600px;
  }
}
@media (max-width: 640px) {
  .aboutArea .bg {
    max-height: unset;
  }
}
.aboutArea .aboutParticles {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.aboutArea .aboutBox {
  position: absolute;
  left: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 60px;
}
@media (max-width: 1180px) {
  .aboutArea .aboutBox {
    padding-bottom: 120px;
  }
}
@media (max-width: 768px) {
  .aboutArea .aboutBox {
    padding-bottom: 40px;
  }
}
.aboutArea .dataBox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 25% 25%;
  grid-template-columns: 50% 25% 25%;
  background-color: #fff;
  min-height: 385px;
}
@media (max-width: 1536px) {
  .aboutArea .dataBox {
    min-height: 360px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .dataBox {
    -ms-grid-columns: 45% 30% 25%;
    grid-template-columns: 45% 30% 25%;
  }
}
@media (max-width: 1024px) {
  .aboutArea .dataBox {
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
  }
}
@media (max-width: 640px) {
  .aboutArea .dataBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.aboutArea .leftBox {
  height: 100%;
  width: 100%;
  padding: 0 150px 0 90px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.aboutArea .leftBox ::-moz-selection {
  background-color: #20bec7;
  color: #fff;
}
.aboutArea .leftBox ::selection {
  background-color: #20bec7;
  color: #fff;
}
.aboutArea .leftBox mark::-moz-selection {
  background-color: transparent;
  color: #20bec7;
}
.aboutArea .leftBox mark::selection {
  background-color: transparent;
  color: #20bec7;
}
.aboutArea .leftBox::after {
  content: "";
  position: absolute;
  background-color: #e7e7e7;
  background-image: url("../images/aboutLeftBg.jpg");
  background-color: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 1536px) {
  .aboutArea .leftBox {
    padding: 0 100px 0 60px;
  }
}
@media (max-width: 1440px) {
  .aboutArea .leftBox {
    padding: 0 60px 0 40px;
  }
}
@media (max-width: 768px) {
  .aboutArea .leftBox {
    padding: 20px 40px;
  }
}
@media (max-width: 640px) {
  .aboutArea .leftBox {
    padding: 10px 20px;
  }
}
.aboutArea .centerBox {
  position: relative;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 640px) {
  .aboutArea .centerBox {
    max-height: 300px;
    overflow: hidden;
  }
}
.aboutArea .centerBox > img {
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutArea .centerBox .iconList {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 85px;
}
@media (max-width: 640px) {
  .aboutArea .centerBox .iconList {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 0;
  }
}
.aboutArea .centerBox .iconList .iconItem {
  position: relative;
  padding: 0 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 640px) {
  .aboutArea .centerBox .iconList .iconItem {
    margin-bottom: 10px;
  }
}
@media (max-width: 640px) {
  .aboutArea .centerBox .iconList .iconItem .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.aboutArea .centerBox .iconList .iconItem:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background-color: #fff;
  opacity: 0.25;
}
@media (max-width: 640px) {
  .aboutArea .centerBox .iconList .iconItem:not(:last-child)::after {
    display: none;
  }
}
.aboutArea .centerBox .iconList .iconTitle {
  color: #fff;
  margin-top: 10px;
  font-size: 18px;
  text-align: center;
  letter-spacing: 1.08px;
}
@media (max-width: 640px) {
  .aboutArea .centerBox .iconList .iconTitle {
    margin-top: 0;
    margin-left: 20px;
  }
}
.aboutArea .rightBox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  background-image: url("../images/aboutRightBg.jpg");
}
@media (max-width: 1024px) {
  .aboutArea .rightBox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 2/1/3/3;
    padding: 40px 0;
  }
}
@media (max-width: 640px) {
  .aboutArea .rightBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.aboutArea .rightBox .btnBox {
  margin: 10px 20px;
}
@media (max-width: 640px) {
  .aboutArea .rightBox .btnBox {
    margin: 10px;
  }
}
.aboutArea .titleBox {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
.aboutArea .titleBox .title {
  margin-bottom: 20px;
}
@media (max-width: 1180px) {
  .aboutArea .titleBox .title {
    margin-bottom: 10px;
  }
}
.aboutArea .titleBox .subtitle {
  margin-bottom: 40px;
  line-height: 1.6666666667;
}
@media (max-width: 1180px) {
  .aboutArea .titleBox .subtitle {
    margin-bottom: 10px;
  }
}
.aboutArea .titleBox .text {
  letter-spacing: 0.96px;
  line-height: 1.875;
}

.newsArea {
  background-color: #eeeeee;
  background-image: url("../images/indexNewsBg.jpg");
  padding: 100px 0;
  position: relative;
}
@media (max-width: 1180px) {
  .newsArea {
    padding: 60px 0;
  }
}
.newsArea .wrap {
  position: relative;
  z-index: 2;
}
.newsArea .newsBox {
  padding: 20px 0;
  position: relative;
}
@media (max-width: 1366px) {
  .newsArea .newsBox {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.newsArea .newsBox .arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 60px;
  height: 220px;
  border: 5px solid #303644;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
@media (max-width: 640px) {
  .newsArea .newsBox .arrow {
    width: 30px;
    height: 110px;
  }
}
@media (min-width: 1201px) {
  .newsArea .newsBox .arrow:hover {
    background-color: #303644;
  }
  .newsArea .newsBox .arrow:hover svg {
    color: #fff;
  }
}
.newsArea .newsBox .arrow.prev {
  left: -60px;
  border-right: 0;
}
@media (max-width: 640px) {
  .newsArea .newsBox .arrow.prev {
    left: -30px;
  }
}
.newsArea .newsBox .arrow.next {
  right: -60px;
  border-left: 0;
}
@media (max-width: 640px) {
  .newsArea .newsBox .arrow.next {
    right: -30px;
  }
}
.newsArea .newsBox .arrow.swiper-button-lock {
  pointer-events: none;
  opacity: 0;
}
.newsArea .newsBox .arrow svg {
  height: 30px;
  width: 30px;
  color: #303644;
}
.newsArea .newsItem {
  height: 510px;
  overflow: hidden;
}
@media (max-width: 1536px) {
  .newsArea .newsItem {
    height: 490px;
  }
}
@media (max-width: 1440px) {
  .newsArea .newsItem {
    height: 470px;
  }
}
@media (max-width: 768px) {
  .newsArea .newsItem {
    height: 400px;
  }
}
@media (min-width: 1201px) {
  .newsArea .newsItem:hover .title {
    color: #303644;
  }
}
.newsArea .newsItem .item {
  height: 100%;
}
.newsArea .newsItem .item:not(:has(.Img)) {
  padding-top: 40px;
}
@media (max-width: 1440px) {
  .newsArea .newsItem .item:not(:has(.Img)) {
    padding-top: 38px;
  }
}
.newsArea .newsItem .item:not(:has(.Img)) .text {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newsArea .newsItem .Img {
  max-height: 240px;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .newsArea .newsItem .Img {
    max-height: 220px;
  }
}
.newsArea .newsItem .Img img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.newsArea .newsItem .Txt {
  margin-top: -40px;
  height: 100%;
}
@media (max-width: 1440px) {
  .newsArea .newsItem .Txt {
    margin-top: -38px;
  }
}
.newsArea .newsItem .dateBox {
  color: #444444;
  padding: 14px 30px 5px;
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  height: 40px;
  position: relative;
  z-index: 2;
  background-image: url("../images/newsCardDateBg.png");
  background-size: cover;
  letter-spacing: 1.44px;
}
@media (max-width: 1536px) {
  .newsArea .newsItem .dateBox {
    padding: 14px 15px 5px;
  }
}
@media (max-width: 1440px) {
  .newsArea .newsItem .dateBox {
    height: 38px;
  }
}
@media (max-width: 1180px) {
  .newsArea .newsItem .dateBox {
    letter-spacing: 0.72px;
  }
}
@media (max-width: 1024px) {
  .newsArea .newsItem .dateBox {
    height: 50px;
    padding: 20px 15px 5px;
  }
}
@media (max-width: 768px) {
  .newsArea .newsItem .dateBox {
    background-position: center top;
    padding: 15px 15px 5px;
    height: 40px;
  }
}
.newsArea .newsItem .dateBox .label {
  margin-right: 5px;
}
.newsArea .newsItem .textBox {
  padding: 30px 40px 40px;
  height: 100%;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
@media (max-width: 1180px) {
  .newsArea .newsItem .textBox {
    padding: 20px 40px;
  }
}
.newsArea .newsItem .classTitle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #888888;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.78px;
  line-height: 2;
}
.newsArea .newsItem .classTitle span {
  font-size: 13px;
  font-weight: 400;
  padding: 0 5px;
}
.newsArea .newsItem .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.5555555556;
  letter-spacing: 1.08px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .newsArea .newsItem .title {
    font-size: 16px;
  }
}
.newsArea .newsItem .text {
  color: #666666;
  font-size: 16px;
  letter-spacing: 0.96px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .newsArea .newsItem .text {
    font-size: 14px;
  }
}
.newsArea .newsItem .link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}