.applicationArea .classBoxRow .filter li a .Img .icon, .applicationArea .classBoxRow .filter li a .Img::after, .applicationArea .arrowBox .arrow, .productArea .productList .productItem .stateBox .preview .txt:after,
.productArea .productList .productItem .stateBox .active .txt:after, .productArea .productList .productItem .item, .bannerArea .arrowBox .arrow .arrowIcon:after, .bannerArea .arrowBox .arrow .arrowIcon, .bannerArea .arrowBox .arrow .txt, .bannerArea .arrowBox .arrow, .bannerArea .socialBox .socialList li a svg, .bannerArea .socialBox .socialList li {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

@-webkit-keyframes txtMask {
  0% {
    width: 0%;
    opacity: 0;
  }
  100% {
    width: 105%;
    opacity: 1;
  }
}

@keyframes txtMask {
  0% {
    width: 0%;
    opacity: 0;
  }
  100% {
    width: 105%;
    opacity: 1;
  }
}
@-webkit-keyframes rerotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@keyframes rerotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes dotAni {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    opacity: 0.3;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.45);
            transform: scale(1.45);
  }
}
@keyframes dotAni {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    opacity: 0.3;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.45);
            transform: scale(1.45);
  }
}
@-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%);
  }
}
.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: #ffffff;
  -webkit-transition: all 0.7s;
  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: $color-wh; */
  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: 1180px) {
  .popWin .close {
    right: 0;
    top: 0;
    border-radius: 0;
  }
  .popWin .popContent {
    max-height: calc(100vh - 150px);
  }
}

.outerWrap {
  padding-top: 0;
}

header .top {
  background-color: rgba(255, 255, 255, 0.16);
}

.mainArea {
  padding: 0;
}

.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList > .bannerItem:not(:first-child) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerList .slick-dots li button:before {
  border-color: #ffffff;
}
.bannerArea .bannerList .slick-dots li.slick-active button:before {
  border-color: #d2b428;
}
.bannerArea .bannerItem.slick-current .title span:before {
  -webkit-animation: txtMask both 0.8s;
          animation: txtMask both 0.8s;
}
.bannerArea .bannerItem .Txt {
  max-width: 1300px;
  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;
  padding: 110px 20px 85px;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 1500px) {
  .bannerArea .bannerItem .Txt {
    max-width: calc(100% - 300px);
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt {
    max-width: calc(100% - 20px);
  }
}
.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;
}
.bannerArea .bannerItem .Txt .title {
  color: #ffffff;
  font-size: 49px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1.96px;
  opacity: 0;
  cursor: pointer;
  position: relative;
  padding-bottom: 27px;
}
.bannerArea .bannerItem .Txt .title:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 60px;
  height: 2px;
  background-color: #d1d1d1;
}
.bannerArea .bannerItem .Txt .title span {
  position: relative;
  display: inline-block;
  color: transparent;
}
.bannerArea .bannerItem .Txt .title span.chart_1:before {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.bannerArea .bannerItem .Txt .title span.chart_2:before {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.bannerArea .bannerItem .Txt .title span.chart_3:before {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.bannerArea .bannerItem .Txt .title span.chart_4:before {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.bannerArea .bannerItem .Txt .title span.chart_5:before {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.bannerArea .bannerItem .Txt .title span.chart_6:before {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.bannerArea .bannerItem .Txt .title span.chart_7:before {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.bannerArea .bannerItem .Txt .title span.chart_8:before {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.bannerArea .bannerItem .Txt .title span.chart_9:before {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.bannerArea .bannerItem .Txt .title span.chart_10:before {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.bannerArea .bannerItem .Txt .title span.chart_11:before {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
.bannerArea .bannerItem .Txt .title span.chart_12:before {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
.bannerArea .bannerItem .Txt .title span.chart_13:before {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}
.bannerArea .bannerItem .Txt .title span.chart_14:before {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}
.bannerArea .bannerItem .Txt .title span.chart_15:before {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.bannerArea .bannerItem .Txt .title span.chart_16:before {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}
.bannerArea .bannerItem .Txt .title span.chart_17:before {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}
.bannerArea .bannerItem .Txt .title span.chart_18:before {
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}
.bannerArea .bannerItem .Txt .title span.chart_19:before {
  -webkit-animation-delay: 3.8s;
          animation-delay: 3.8s;
}
.bannerArea .bannerItem .Txt .title span.chart_20:before {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.bannerArea .bannerItem .Txt .title span.chart_21:before {
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}
.bannerArea .bannerItem .Txt .title span.chart_22:before {
  -webkit-animation-delay: 4.4s;
          animation-delay: 4.4s;
}
.bannerArea .bannerItem .Txt .title span.chart_23:before {
  -webkit-animation-delay: 4.6s;
          animation-delay: 4.6s;
}
.bannerArea .bannerItem .Txt .title span.chart_24:before {
  -webkit-animation-delay: 4.8s;
          animation-delay: 4.8s;
}
.bannerArea .bannerItem .Txt .title span.chart_25:before {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
.bannerArea .bannerItem .Txt .title span.chart_26:before {
  -webkit-animation-delay: 5.2s;
          animation-delay: 5.2s;
}
.bannerArea .bannerItem .Txt .title span.chart_27:before {
  -webkit-animation-delay: 5.4s;
          animation-delay: 5.4s;
}
.bannerArea .bannerItem .Txt .title span.chart_28:before {
  -webkit-animation-delay: 5.6s;
          animation-delay: 5.6s;
}
.bannerArea .bannerItem .Txt .title span.chart_29:before {
  -webkit-animation-delay: 5.8s;
          animation-delay: 5.8s;
}
.bannerArea .bannerItem .Txt .title span.chart_30:before {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
@supports (-webkit-text-stroke: 1px #ffffff) {
  .bannerArea .bannerItem .Txt .title span {
    -webkit-text-stroke: 1px #ffffff;
    -webkit-text-fill-color: transparent;
  }
  .bannerArea .bannerItem .Txt .title span:before {
    -webkit-text-fill-color: #ffffff;
  }
}
.bannerArea .bannerItem .Txt .title span:before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 120%;
  color: #ffffff;
  overflow: hidden;
  content: attr(data-text);
  display: inline-block;
}
.bannerArea .bannerItem .Txt .subtitle {
  color: #e7c624;
  display: block;
  font-size: 22px;
  font-family: "Outfit", sans-serif, "Noto Sans TC";
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 13px;
  opacity: 0;
}
.bannerArea .bannerItem .Txt .text {
  color: #ffffff;
  font-size: 15px;
  display: block;
  line-height: 1.8;
  letter-spacing: 0.6px;
  margin-top: 23px;
  opacity: 0;
}
.bannerArea .bannerItem .Txt .bannerBtn {
  opacity: 0;
  padding-top: 58px;
}
.bannerArea .bannerItem .Txt .bannerBtn a {
  background-color: transparent;
  border-left-color: #ffffff;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.bannerArea .bannerItem .Txt .bannerBtn a:after {
  background-color: #227844;
}
@media (min-width: 1025px) {
  .bannerArea .bannerItem .Txt .bannerBtn a:hover {
    background-color: transparent;
    border-left-color: #299d56;
    border-top: 1px solid #227844;
    border-right: 1px solid #227844;
    border-bottom: 1px solid #227844;
  }
}
.bannerArea .bannerItem .Txt .bannerVideo .videoBtn {
  width: 100px;
  height: 100px;
  border: 1px solid #ffffff;
  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 #ffffff;
  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 #ffffff;
  border-radius: 50%;
  z-index: 1;
  width: 75%;
  height: 75%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.bannerArea .bannerItem .Img {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerItem .Img img {
  height: 820px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Img img {
    height: 700px;
  }
}
.bannerArea .bannerItem.slick-current .Txt .title {
  -webkit-animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .subtitle {
  -webkit-animation: bannerTxtAnimation 0.8s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .text {
  -webkit-animation: bannerTxtAnimation 0.8s 0.8s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 0.8s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .bannerBtn {
  -webkit-animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .videoBtn::after {
  -webkit-animation: rotate 50s linear forwards;
          animation: rotate 50s linear forwards;
}
.bannerArea .socialBox {
  display: block;
  position: absolute;
  top: 50%;
  left: 50px;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.bannerArea .socialBox .socialList {
  -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;
}
.bannerArea .socialBox .socialList li {
  margin: 7.5px 0;
}
.bannerArea .socialBox .socialList li:first-child {
  margin-top: 0;
}
.bannerArea .socialBox .socialList li:last-child {
  margin-bottom: 0;
}
.bannerArea .socialBox .socialList li a {
  color: #ffffff;
  display: block;
  font-size: 18px;
  line-height: 35px;
  text-align: center;
}
.bannerArea .socialBox .socialList li a svg {
  width: 20px;
  height: 18px;
  display: inline-block;
  fill: #ffffff;
  margin-top: -2px;
  vertical-align: middle;
}
.bannerArea .socialBox .socialList li a:hover {
  color: #21a13d;
}
.bannerArea .socialBox .socialList li a:hover svg {
  fill: #21a13d;
}
.bannerArea .arrowBox {
  display: block;
  position: absolute;
  top: 50%;
  left: 25px;
  right: 25px;
  margin: auto;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
}
.bannerArea .arrowBox .arrow {
  height: 30px;
  overflow: hidden;
  position: relative;
  margin: 10px 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: auto;
}
.bannerArea .arrowBox .arrow .txt {
  width: calc(100% - 30px);
  color: #ffffff;
  font-size: 14px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}
.bannerArea .arrowBox .arrow .arrowIcon {
  width: 30px;
  height: 30px;
  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;
  border: 1px solid #ffffff;
  position: relative;
}
.bannerArea .arrowBox .arrow .arrowIcon svg {
  color: #ffffff;
  position: relative;
  z-index: 2;
}
.bannerArea .arrowBox .arrow .arrowIcon:after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  content: "";
  background-color: #e7c624;
}
.bannerArea .arrowBox .arrowPrev .txt {
  padding-left: 18px;
}
.bannerArea .arrowBox .arrowPrev .arrowIcon:after {
  left: 0;
}
.bannerArea .arrowBox .arrowNext .txt {
  padding-right: 18px;
}
.bannerArea .arrowBox .arrowNext .arrowIcon:after {
  right: 0;
}
@media (min-width: 1025px) {
  .bannerArea .arrowBox .arrow:hover .txt {
    color: #e7c624;
  }
  .bannerArea .arrowBox .arrow:hover .arrowIcon {
    border-color: #e7c624;
  }
  .bannerArea .arrowBox .arrow:hover .arrowIcon:after {
    width: 100%;
  }
}
.bannerArea .scrollDown {
  cursor: pointer;
  display: block;
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 2;
}
.bannerArea .scrollDown span {
  display: block;
}
.bannerArea .scrollDown span.text {
  color: #ffffff;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  letter-spacing: 0.5px;
}
.bannerArea .scrollDown span.line {
  width: 2px;
  height: calc(100% + 20px);
  background-color: #ffffff;
  overflow: hidden;
  position: absolute;
  top: -5px;
  left: -5px;
  z-index: 1;
}
.bannerArea .scrollDown span.line::before {
  content: "";
  width: 2px;
  height: calc(100% + 20px);
  -webkit-animation: bannerScrollAnimation 2.5s linear infinite forwards;
          animation: bannerScrollAnimation 2.5s linear infinite forwards;
  background-color: #21a13d;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.bannerArea .slick-dots {
  position: absolute;
  bottom: 32px;
}
@media (max-width: 1180px) {
  .bannerArea .Txt .bannerVideo, .bannerArea .socialBox, .bannerArea .scrollDown, .bannerArea .arrowBox {
    display: none !important;
  }
}

.tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized .tooltipster-box {
  border: 0;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 2px 17px 0px rgba(0, 0, 0, 0.21);
          box-shadow: 0px 2px 17px 0px rgba(0, 0, 0, 0.21);
}
.tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized .tooltipster-content {
  color: #545454;
  padding: 18px 26px;
}
.tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized.tooltipster-left .tooltipster-arrow-border, .tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized.tooltipster-right .tooltipster-arrow-border {
  border-right-color: #ffffff;
}
.tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized.tooltipster-left .tooltipster-arrow-background, .tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #ffffff;
}

.productArea {
  padding-top: 57px;
  padding-bottom: 61px;
  background-color: #f5f5f5;
}
@media (max-width: 480px) {
  .productArea {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.productArea .titleBox {
  margin-bottom: 40px;
}
.productArea .productList {
  margin: 0 -20px;
}
.productArea .productList .slick-list {
  max-width: calc(100% - 140px);
  margin: auto;
}
.productArea .productList .slick-arrow {
  background-color: #ffffff;
}
.productArea .productList .slick-arrow.slick-prev {
  left: 20px;
}
.productArea .productList .slick-arrow.slick-next {
  right: 20px;
}
@media (min-width: 1025px) {
  .productArea .productList .slick-arrow:hover {
    background-color: #e7c624;
  }
}
.productArea .productList > .productItem {
  float: left;
  width: 33.33%;
}
.productArea .productList > .productItem:not(:nth-child(1)):not(:nth-child(3)):not(:nth-child(3)) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
@media (max-width: 1024px) {
  .productArea .productList > .productItem {
    width: 50%;
  }
  .productArea .productList > .productItem:nth-child(3) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .productArea .productList > .productItem {
    width: 100%;
  }
  .productArea .productList > .productItem:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }
}
.productArea .productList .productItem {
  padding: 0 20px;
}
.productArea .productList .productItem .item {
  position: relative;
  background-color: #ffffff;
  border: 2px solid transparent;
}
@media (min-width: 1025px) {
  .productArea .productList .productItem .item:hover {
    border-color: #21a13d;
  }
}
.productArea .productList .productItem .ribbon {
  position: absolute;
  right: -12px;
  top: -2px;
  display: block;
  width: 68px;
  height: 30px;
  background-color: #21a13d;
  color: #ffffff;
  font-size: 14px;
  font-family: "Outfit", sans-serif;
  font-weight: bold;
  letter-spacing: 0.28px;
  line-height: 2;
  text-align: center;
  padding-top: 1.5px;
}
.productArea .productList .productItem .ribbon:after {
  position: absolute;
  right: 0;
  bottom: -10px;
  content: "";
  width: 12px;
  height: 10px;
  display: block;
  background-image: url(../images/ribbon_corn.png);
  background-repeat: no-repeat;
}
.productArea .productList .productItem .topBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e0e0e0;
  padding: 31px 26px;
}
.productArea .productList .productItem .topBox .icon {
  width: 44px;
}
.productArea .productList .productItem .topBox .title {
  width: calc(100% - 44px);
  padding-left: 16px;
  color: #2c2c2c;
  font-size: 25px;
  font-family: "Outfit", sans-serif;
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 1.16;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.productArea .productList .productItem .topBox .title a {
  color: #2c2c2c;
}
@media (min-width: 1025px) {
  .productArea .productList .productItem .topBox .title a:hover {
    color: #21a13d;
  }
}
.productArea .productList .productItem .Txt {
  padding: 23px 30px;
}
.productArea .productList .productItem .stateBox {
  position: relative;
}
.productArea .productList .productItem .stateBox .preview,
.productArea .productList .productItem .stateBox .active {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.productArea .productList .productItem .stateBox .preview .circle,
.productArea .productList .productItem .stateBox .active .circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  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;
  background-color: #d5d5d5;
}
.productArea .productList .productItem .stateBox .preview .txt,
.productArea .productList .productItem .stateBox .active .txt {
  color: #545454;
  font-size: 15px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.9px;
  margin-left: 7px;
  position: relative;
}
.productArea .productList .productItem .stateBox .preview .txt:after,
.productArea .productList .productItem .stateBox .active .txt:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #8b8b8b;
  opacity: 0;
}
.productArea .productList .productItem .stateBox .preview:hover,
.productArea .productList .productItem .stateBox .active:hover {
  cursor: pointer;
}
.productArea .productList .productItem .stateBox .preview:hover .txt:after,
.productArea .productList .productItem .stateBox .active:hover .txt:after {
  opacity: 1;
}
.productArea .productList .productItem .stateBox .active .circle {
  background-color: #3fa756;
}
.productArea .productList .productItem .btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.productArea .productList .productItem .btnBox a {
  max-width: calc(50% - 5px);
  font-size: 13px;
  padding-left: 15px;
}
.productArea .productList .productItem .btnBox a .plus {
  right: 12px;
  padding-left: 10px;
}
.productArea .productList .productItem .btnBox #inquiry_script {
  display: none;
}
.productArea .productList .productItem .infoBox {
  padding-top: 16px;
  color: #626262;
  font-size: 15px;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.3px;
  line-height: 1.666;
  height: 191px;
}
.productArea .productList .productItem .infoBox .infoTitle {
  color: #353535;
  font-size: 17px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  line-height: 1.705;
  letter-spacing: 0.34px;
  height: 29px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.productArea .productList .productItem .infoBox .infoText {
  color: #626262;
  font-size: 15px;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.3px;
  line-height: 1.666;
  margin-top: 10px;
  height: 125px;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .productArea .productList {
    margin: 0 -12.5px;
  }
  .productArea .productList .slick-list {
    max-width: calc(100% - 80px);
  }
  .productArea .productList .slick-arrow.slick-prev {
    left: 12.5px;
  }
  .productArea .productList .slick-arrow.slick-next {
    right: 12.5px;
  }
  .productArea .productList .productItem {
    padding: 0 12.5px;
  }
  .productArea .productList .productItem .topBox {
    padding: 31px 20px;
  }
  .productArea .productList .productItem .Txt {
    padding: 23px 20px;
  }
}
@media (max-width: 1180px) {
  .productArea .productList {
    margin: 0 -10px;
  }
  .productArea .productList .slick-list {
    max-width: calc(100% - 100px);
  }
  .productArea .productList .slick-arrow.slick-prev {
    left: 10px;
  }
  .productArea .productList .slick-arrow.slick-next {
    right: 10px;
  }
  .productArea .productList .productItem {
    padding: 0 10px;
  }
}
@media (max-width: 460px) {
  .productArea .productList .slick-dots {
    padding-top: 30px;
  }
  .productArea .productList .productItem .topBox .title {
    font-size: 20px;
  }
  .productArea .productList .productItem .btnBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .productArea .productList .productItem .btnBox a {
    max-width: none;
  }
  .productArea .productList .productItem .btnBox a:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (max-width: 375px) {
  .productArea .productList .slick-list {
    max-width: 100%;
  }
}

.applicationArea {
  padding-top: 60px;
  padding-bottom: 85px;
}
@media (max-width: 768px) {
  .applicationArea {
    padding: 50px 0 60px;
  }
}
@media (max-width: 480px) {
  .applicationArea {
    padding: 30px 0 40px;
  }
}
.applicationArea .titleBox {
  margin-bottom: 36px;
}
.applicationArea .arrowBox {
  position: absolute;
  left: 22px;
  bottom: 18px;
  width: 67px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.applicationArea .arrowBox .arrow {
  width: 31px;
  height: 31px;
  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;
  border: 1px solid #dcdcdc;
  background-color: rgba(255, 255, 255, 0.4);
}
.applicationArea .arrowBox .arrow svg {
  color: #ffffff;
}
.applicationArea .arrowBox .arrow.arrowPrev {
  padding-right: 2px;
}
.applicationArea .arrowBox .arrow.arrowNext {
  padding-left: 2px;
}
.applicationArea .arrowBox .arrow.slick-disabled {
  opacity: 0.4;
}
@media (min-width: 1025px) {
  .applicationArea .arrowBox .arrow:hover {
    cursor: pointer;
    border-color: #23983d;
    background-color: #299d56;
  }
}
@media (max-width: 480px) {
  .applicationArea .arrowBox {
    left: 15px;
    bottom: 15px;
  }
}
.applicationArea .classBoxRow {
  position: relative;
  max-width: 1064px;
  margin: auto;
}
.applicationArea .classBoxRow .line {
  width: 100%;
  height: 13px;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -13px;
  z-index: -1;
}
.applicationArea .classBoxRow .line:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: auto;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #dfdfdf;
}
.applicationArea .classBoxRow .line .dots {
  position: absolute;
  width: 100%;
  height: 13px;
}
.applicationArea .classBoxRow .line .dots:before, .applicationArea .classBoxRow .line .dots:after {
  position: absolute;
  content: "";
  width: 13px;
  height: 100%;
  border-radius: 50%;
  background-color: #dfdfdf;
}
.applicationArea .classBoxRow .line .dots:before {
  left: 0;
}
.applicationArea .classBoxRow .line .dots:after {
  right: 0;
}
.applicationArea .classBoxRow .filter {
  display: block;
}
.applicationArea .classBoxRow .filter .slick-list {
  max-width: 832px;
  margin: auto;
}
.applicationArea .classBoxRow .filter .slick-prev, .applicationArea .classBoxRow .filter .slick-next {
  margin-top: -13px;
  background-color: #ffffff;
}
@media (min-width: 1025px) {
  .applicationArea .classBoxRow .filter .slick-prev:hover, .applicationArea .classBoxRow .filter .slick-next:hover {
    color: #21a13d;
    background-color: #e7c624;
  }
}
.applicationArea .classBoxRow .filter .slick-prev {
  left: 50px;
}
.applicationArea .classBoxRow .filter .slick-next {
  right: 50px;
}
@media (max-width: 1180px) {
  .applicationArea .classBoxRow .filter .slick-list {
    max-width: calc(100% - 200px);
  }
}
@media (max-width: 992px) {
  .applicationArea .classBoxRow .filter .slick-list {
    max-width: calc(100% - 80px);
  }
  .applicationArea .classBoxRow .filter .slick-prev {
    left: 0;
  }
  .applicationArea .classBoxRow .filter .slick-next {
    right: 0;
  }
}
.applicationArea .classBoxRow .filter > li {
  float: left;
  width: 20%;
}
.applicationArea .classBoxRow .filter > li:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)):not(:nth-child(4)):not(:nth-child(5)) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
@media (max-width: 1180px) {
  .applicationArea .classBoxRow .filter > li {
    width: 25%;
  }
  .applicationArea .classBoxRow .filter > li:nth-child(5) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .applicationArea .classBoxRow .filter > li {
    width: 33.33%;
  }
  .applicationArea .classBoxRow .filter > li:nth-child(4) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }
}
@media (max-width: 600px) {
  .applicationArea .classBoxRow .filter > li {
    width: 50%;
  }
  .applicationArea .classBoxRow .filter > li:nth-child(3) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }
}
@media (max-width: 440px) {
  .applicationArea .classBoxRow .filter > li {
    width: 100%;
  }
  .applicationArea .classBoxRow .filter > li:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }
}
.applicationArea .classBoxRow .filter li a {
  background-color: #ffffff;
}
.applicationArea .classBoxRow .filter li a:hover .Img::after, .applicationArea .classBoxRow .filter li a.current .Img::after {
  background-image: url(../images/home/applicationCircle_bg2.png);
}
.applicationArea .classBoxRow .filter li a:hover .Img .icon, .applicationArea .classBoxRow .filter li a.current .Img .icon {
  background-color: #149d32;
}
.applicationArea .classBoxRow .filter li a .Img {
  width: 141px;
  height: 141px;
  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;
  border-radius: 50%;
  position: relative;
  margin: auto;
}
.applicationArea .classBoxRow .filter li a .Img::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  background-image: url(../images/home/applicationCircle_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: rotate 40s linear infinite;
          animation: rotate 40s linear infinite;
}
.applicationArea .classBoxRow .filter li a .Img .icon {
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background-color: #dadada;
}
.applicationArea .classBoxRow .filter li a .Img img {
  margin: auto;
}
.applicationArea .classBoxRow .filter li a .Txt {
  padding-top: 13px;
  text-align: center;
}
.applicationArea .classBoxRow .filter li a .Txt .title {
  color: #393939;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.68px;
  line-height: 1.7;
}
.applicationArea .applicationBox {
  padding-top: 37px;
}
.applicationArea .applicationList > .applicationItem:not(:first-child) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.applicationArea .applicationList .applicationItem .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.applicationArea .applicationList .applicationItem .Img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.applicationArea .applicationList .applicationItem .Img img {
  width: 100%;
}
.applicationArea .applicationList .applicationItem .Txt {
  width: 540px;
  padding-left: 56px;
}
.applicationArea .applicationList .applicationItem .Txt .topTxt {
  padding-bottom: 15px;
  margin-bottom: 23px;
  border-bottom: 1px solid #e5e5e5;
}
.applicationArea .applicationList .applicationItem .Txt .topTxt .title a {
  display: block;
  color: #393939;
  font-size: 35px;
  font-family: "Outfit", sans-serif;
  font-weight: bold;
}
.applicationArea .applicationList .applicationItem .Txt .topTxt .subTitle {
  color: #a5a5a5;
  font-size: 15px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.933;
  margin-top: 8px;
}
.applicationArea .applicationList .applicationItem .Txt .infoBox .infoTitle {
  color: #525252;
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.38px;
  line-height: 1.63;
}
.applicationArea .applicationList .applicationItem .Txt .infoBox .infoTxt {
  color: #6a6a6a;
  font-size: 15px;
  letter-spacing: 0.3px;
  line-height: 2.06;
  margin-top: 13px;
}
.applicationArea .applicationList .applicationItem .Txt .infoBox .btnBox {
  padding-top: 35px;
}
@media (max-width: 1280px) {
  .applicationArea .applicationList .applicationItem .Img {
    width: 53%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .applicationArea .applicationList .applicationItem .Txt {
    width: 47%;
    padding-left: 30px;
  }
}
@media (max-width: 992px) {
  .applicationArea .applicationList .applicationItem .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .applicationArea .applicationList .applicationItem .Img,
.applicationArea .applicationList .applicationItem .Txt {
    width: 100%;
  }
  .applicationArea .applicationList .applicationItem .Txt {
    padding-left: 0;
    padding-top: 30px;
  }
}

.aboutArea {
  position: relative;
  overflow: hidden;
  --aboutWidth: 1440;
}
.aboutArea .wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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;
  margin: -35px auto auto;
  z-index: 2;
  max-width: 900px;
}
@media (max-width: 768px) {
  .aboutArea .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .aboutArea {
    --aboutWidth: 744;
  }
}
@media (max-width: 600px) {
  .aboutArea {
    --aboutWidth: 450;
  }
}
@media (max-width: 375px) {
  .aboutArea {
    --aboutWidth: 281;
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(37.5deg) rotateZ(0) translateZ(0);
            transform: rotate(37.5deg) rotateZ(0) translateZ(0);
    width: 900px;
    height: 900px;
    z-index: 2;
  }
  .aboutArea .aboutList:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 760px;
    height: 760px;
    background-image: url(../images/home/aboutCircle_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    z-index: 2;
    -webkit-animation: rotate 100s linear infinite;
            animation: rotate 100s linear infinite;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .aboutArea .aboutList {
    width: calc(744 / var(--aboutWidth) * 100vw);
    /*992*/
    height: calc(744 / var(--aboutWidth) * 100vw);
    /*992*/
  }
  .aboutArea .aboutList:before {
    width: calc(570 / var(--aboutWidth) * 100vw);
    /*760*/
    height: calc(570 / var(--aboutWidth) * 100vw);
    /*760*/
  }
}
@media (min-width: 769px) and (max-width: 768px) {
  .aboutArea .aboutList:before {
    display: none;
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem {
    position: absolute;
    top: 0;
    left: calc(50% - 74px);
    z-index: 5;
    width: 148px;
    height: 50%;
    -webkit-transform-origin: bottom center;
            transform-origin: bottom center;
    pointer-events: none;
  }
  .aboutArea .aboutList .aboutItem:nth-child(1) {
    -webkit-transform: rotate(0deg) rotateZ(0);
            transform: rotate(0deg) rotateZ(0);
  }
  .aboutArea .aboutList .aboutItem:nth-child(1) .item {
    -webkit-transform: rotate(0deg) rotate(-37.5deg);
            transform: rotate(0deg) rotate(-37.5deg);
  }
  .aboutArea .aboutList .aboutItem:nth-child(2) {
    -webkit-transform: rotate(72deg) rotateZ(0);
            transform: rotate(72deg) rotateZ(0);
  }
  .aboutArea .aboutList .aboutItem:nth-child(2) .item {
    -webkit-transform: rotate(-72deg) rotate(-37.5deg);
            transform: rotate(-72deg) rotate(-37.5deg);
  }
  .aboutArea .aboutList .aboutItem:nth-child(3) {
    -webkit-transform: rotate(144deg) rotateZ(0);
            transform: rotate(144deg) rotateZ(0);
  }
  .aboutArea .aboutList .aboutItem:nth-child(3) .item {
    -webkit-transform: rotate(-144deg) rotate(-37.5deg);
            transform: rotate(-144deg) rotate(-37.5deg);
  }
  .aboutArea .aboutList .aboutItem:nth-child(4) {
    -webkit-transform: rotate(216deg) rotateZ(0);
            transform: rotate(216deg) rotateZ(0);
  }
  .aboutArea .aboutList .aboutItem:nth-child(4) .item {
    -webkit-transform: rotate(-216deg) rotate(-37.5deg);
            transform: rotate(-216deg) rotate(-37.5deg);
  }
  .aboutArea .aboutList .aboutItem:nth-child(5) {
    -webkit-transform: rotate(288deg) rotateZ(0);
            transform: rotate(288deg) rotateZ(0);
  }
  .aboutArea .aboutList .aboutItem:nth-child(5) .item {
    -webkit-transform: rotate(-288deg) rotate(-37.5deg);
            transform: rotate(-288deg) rotate(-37.5deg);
  }
  .aboutArea .aboutList .aboutItem:nth-child(1) .item {
    width: 138px;
    height: 138px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .aboutArea .aboutList .aboutItem:nth-child(1) .item {
    width: 128px;
    height: 128px;
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem:nth-child(1) .outer:after {
    background-image: url(../images/home/about_iconBg_01.png);
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem:nth-child(1) .inner {
    width: 104px;
    height: 104px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .aboutArea .aboutList .aboutItem:nth-child(1) .inner {
    width: 94px;
    height: 94px;
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem:nth-child(1) .Txt {
    margin-top: 3px;
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem:nth-child(2) .item {
    width: 171px;
    height: 171px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .aboutArea .aboutList .aboutItem:nth-child(2) .item {
    width: 161px;
    height: 161px;
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem:nth-child(2) .outer:after {
    background-image: url(../images/home/about_iconBg_02.png);
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem:nth-child(2) .inner {
    width: 129px;
    height: 129px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .aboutArea .aboutList .aboutItem:nth-child(2) .inner {
    width: 119px;
    height: 119px;
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem:nth-child(2) .Txt {
    margin-top: 8px;
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem:nth-child(3) .item {
    width: 197px;
    height: 197px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .aboutArea .aboutList .aboutItem:nth-child(3) .item {
    width: 187px;
    height: 187px;
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem:nth-child(3) .outer:after {
    background-image: url(../images/home/about_iconBg_03.png);
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem:nth-child(3) .inner {
    width: 148px;
    height: 148px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .aboutArea .aboutList .aboutItem:nth-child(3) .inner {
    width: 138px;
    height: 138px;
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem:nth-child(3) .Txt {
    margin-top: 10px;
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem:nth-child(4) .item {
    width: 156px;
    height: 156px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .aboutArea .aboutList .aboutItem:nth-child(4) .item {
    width: 146px;
    height: 146px;
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem:nth-child(4) .outer:after {
    background-image: url(../images/home/about_iconBg_04.png);
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem:nth-child(4) .inner {
    width: 117px;
    height: 117px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .aboutArea .aboutList .aboutItem:nth-child(4) .inner {
    width: 107px;
    height: 107px;
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem:nth-child(4) .Txt {
    margin-top: 4px;
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem:nth-child(5) .item {
    width: 156px;
    height: 156px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .aboutArea .aboutList .aboutItem:nth-child(5) .item {
    width: 146px;
    height: 146px;
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem:nth-child(5) .outer:after {
    background-image: url(../images/home/about_iconBg_04.png);
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem:nth-child(5) .inner {
    width: 117px;
    height: 117px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .aboutArea .aboutList .aboutItem:nth-child(5) .inner {
    width: 107px;
    height: 107px;
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem:nth-child(5) .Txt {
    margin-top: 5px;
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem .item {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem .outer {
    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;
    margin: auto;
    text-align: center;
    position: relative;
    width: 100%;
    height: 100%;
  }
  .aboutArea .aboutList .aboutItem .outer:after {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: rerotate 30s linear infinite;
            animation: rerotate 30s linear infinite;
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem .inner {
    width: 100%;
    height: 100%;
    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;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 0px 12px 0px #ffffff;
            box-shadow: 0px 0px 12px 0px #ffffff;
  }
}
@media (min-width: 769px) {
  .aboutArea .aboutList .aboutItem .Txt .title {
    color: #1f1f1f;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.6px;
  }
}
@media (max-width: 768px) {
  .aboutArea .aboutList {
    max-width: 100vw;
    width: 100%;
  }
  .aboutArea .aboutList .slick-dots {
    padding-top: 30px;
  }
  .aboutArea .aboutList > .aboutItem {
    float: left;
    width: 33.33%;
  }
  .aboutArea .aboutList > .aboutItem:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }
}
@media (max-width: 768px) and (max-width: 600px) {
  .aboutArea .aboutList > .aboutItem {
    width: 50%;
  }
  .aboutArea .aboutList > .aboutItem:nth-child(3) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }
}
@media (max-width: 768px) and (max-width: 375px) {
  .aboutArea .aboutList > .aboutItem {
    width: 100%;
  }
  .aboutArea .aboutList > .aboutItem:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .aboutArea .aboutList .aboutItem:nth-child(1) .Txt {
    margin-top: 3px;
  }
  .aboutArea .aboutList .aboutItem:nth-child(2) .Txt {
    margin-top: 8px;
  }
  .aboutArea .aboutList .aboutItem:nth-child(3) .Txt {
    margin-top: 10px;
  }
  .aboutArea .aboutList .aboutItem:nth-child(4) .Txt {
    margin-top: 4px;
  }
  .aboutArea .aboutList .aboutItem:nth-child(5) .Txt {
    margin-top: 5px;
  }
  .aboutArea .aboutList .aboutItem .item {
    width: calc(210 / var(--aboutWidth) * 100vw);
    /*280*/
    height: calc(210 / var(--aboutWidth) * 100vw);
    /*280*/
    margin: auto;
    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;
  }
}
@media (max-width: 768px) and (max-width: 600px) {
  .aboutArea .aboutList .aboutItem .item {
    width: calc(188 / var(--aboutWidth) * 100vw);
    /*250*/
    height: calc(188 / var(--aboutWidth) * 100vw);
    /*250*/
  }
}
@media (max-width: 768px) {
  .aboutArea .aboutList .aboutItem .outer {
    width: 75.13%;
    height: 75.13%;
    margin: auto;
    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;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 0px 12px 0px #ffffff;
            box-shadow: 0px 0px 12px 0px #ffffff;
    position: relative;
  }
  .aboutArea .aboutList .aboutItem .outer:after {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/home/about_iconBg_03.png);
  }
}
@media (max-width: 768px) {
  .aboutArea .aboutList .aboutItem .Txt .title {
    color: #1f1f1f;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.6px;
  }
}
@media (max-width: 768px) {
  .aboutArea .aboutList .aboutItem .Img img {
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .aboutArea .aboutList .slick-dots {
    padding-bottom: 15px;
  }
}
.aboutArea .infoBox {
  max-width: 610px;
  margin-top: -29px;
  position: relative;
  z-index: 3;
  text-align: center;
}
.aboutArea .infoBox .subTitle {
  color: #525252;
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.76px;
  line-height: 1.789;
  margin-top: 2px;
}
.aboutArea .infoBox .text {
  color: #6a6a6a;
  font-size: 16px;
  letter-spacing: 0.64px;
  line-height: 1.9375;
  margin-top: 11px;
}
.aboutArea .infoBox .btnBox {
  padding-top: 40px;
}
@media (max-width: 992px) {
  .aboutArea .infoBox {
    max-width: calc(450 / var(--aboutWidth) * 100vw);
    /*600*/
  }
}
@media (max-width: 768px) {
  .aboutArea .infoBox {
    margin-top: 0;
    max-width: 100%;
    padding-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .aboutArea .infoBox {
    padding-bottom: 30px;
  }
  .aboutArea .infoBox .btnBox {
    padding-top: 30px;
  }
}
.aboutArea .bg img {
  height: 910px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 480px) {
  .aboutArea .bg img {
    height: 810px;
  }
}

.newsArea {
  padding: 85px 0 75px;
}
@media (max-width: 768px) {
  .newsArea {
    padding: 50px 0;
  }
}
@media (max-width: 480px) {
  .newsArea {
    padding: 35px 0 40px;
  }
}
.newsArea .newsList .newsItem .Img img {
  width: 100%;
}
.newsArea .newsList .newsItem .Txt .dateClassBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 16px;
}
.newsArea .newsList .newsItem .Txt .dateClassBar .date {
  font-family: "Outfit", sans-serif;
  padding-right: 22px;
}
.newsArea .newsList .newsItem .Txt .dateClassBar .date .txt {
  font-size: 14px;
  font-weight: bold;
  color: #3b3b3b;
  letter-spacing: 0.28px;
  padding-right: 13px;
}
.newsArea .newsList .newsItem .Txt .dateClassBar .date .popDate {
  color: #3d893e;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.9px;
}
@media (max-width: 480px) {
  .newsArea .newsList .newsItem .Txt .dateClassBar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .newsArea .newsList .newsItem .Txt .dateClassBar .date {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-top: 15px;
  }
}
.newsArea .newsList .newsItem .Txt .classTitle {
  color: #888888;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.9px;
  line-height: 1.53;
  border: 1px solid #ededed;
  padding: 4.5px 24px;
}
.newsArea .newsList .newsItem .Txt .title a {
  display: block;
  color: #3b3b3b;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 1.26px;
  line-height: 1.57;
}
@media (min-width: 1025px) {
  .newsArea .newsList .newsItem .Txt .title a:hover {
    color: #21a13d;
  }
}
.newsArea .newsList .newsItem .Txt .text {
  color: #6a6a6a;
  font-size: 15px;
  letter-spacing: 0.3px;
  line-height: 2.066;
  margin-top: 17px;
  height: 124px;
}
.newsArea .newsList .newsItem .Txt .btnBox {
  padding-top: 39px;
}
.newsArea .newsTopBox .newsList .slick-dots {
  padding: 36px 0;
}
.newsArea .newsTopBox .newsList > .newsItem:not(:first-child) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.newsArea .newsTopBox .newsList .newsItem .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.newsArea .newsTopBox .newsList .newsItem .Txt {
  width: 500px;
  padding-left: 50px;
  padding-top: 14px;
}
.newsArea .newsTopBox .newsList .newsItem .Txt .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .newsArea .newsTopBox .newsList .newsItem .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .newsArea .newsTopBox .newsList .newsItem .Txt {
    width: 100%;
    padding-left: 0;
  }
  .newsArea .newsTopBox .newsList .newsItem .Txt .text {
    height: 93px;
  }
}
.newsArea .newsBox {
  position: relative;
  overflow: hidden;
}
.newsArea .newsBox .newsList {
  margin: 0 -50px;
}
.newsArea .newsBox .newsList .slick-list {
  max-width: calc(100% - 150px);
  margin: auto;
}
.newsArea .newsBox .newsList .slick-prev {
  left: 50px;
}
.newsArea .newsBox .newsList .slick-next {
  right: 50px;
}
.newsArea .newsBox .newsList > .newsItem {
  float: left;
  width: 33.33%;
}
.newsArea .newsBox .newsList > .newsItem:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
@media (max-width: 1180px) {
  .newsArea .newsBox .newsList > .newsItem {
    width: 50%;
  }
  .newsArea .newsBox .newsList > .newsItem:nth-child(3) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }
}
@media (max-width: 992px) {
  .newsArea .newsBox .newsList > .newsItem {
    width: 100%;
  }
  .newsArea .newsBox .newsList > .newsItem:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }
}
.newsArea .newsBox .newsList .newsItem {
  padding: 5px 50px 20px;
  position: relative;
}
@media (min-width: 993px) {
  .newsArea .newsBox .newsList .newsItem:after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    background-color: #e2e2e2;
    width: 1px;
    height: 100%;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .newsArea .newsBox .newsList .newsItem.slick-active:after {
    opacity: 1;
  }
  .newsArea .newsBox .newsList .newsItem.slick-active + .slick-active:after {
    opacity: 1;
  }
}
.newsArea .newsBox .newsList .newsItem .Txt .title a {
  font-size: 18px;
  letter-spacing: 1.08px;
  line-height: 1.6;
  height: 58px;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .newsArea .newsBox .newsList {
    margin: 0 -30px;
  }
  .newsArea .newsBox .newsList .slick-prev {
    left: 30px;
  }
  .newsArea .newsBox .newsList .slick-next {
    right: 30px;
  }
  .newsArea .newsBox .newsList .newsItem {
    padding: 5px 30px 20px;
  }
}
@media (max-width: 992px) {
  .newsArea .newsBox .newsList {
    margin: 0 -10px;
  }
  .newsArea .newsBox .newsList .slick-prev {
    left: 10px;
  }
  .newsArea .newsBox .newsList .slick-next {
    right: 10px;
  }
  .newsArea .newsBox .newsList .newsItem {
    padding: 5px 10px 20px;
  }
}
@media (max-width: 600px) {
  .newsArea .newsBox .newsList {
    margin: 0 -10px;
  }
  .newsArea .newsBox .newsList .slick-list {
    max-width: calc(100% - 100px);
    margin: auto;
  }
  .newsArea .newsBox .newsList .slick-dots {
    padding-top: 10px;
  }
  .newsArea .newsBox .newsList .slick-prev {
    left: 10px;
  }
  .newsArea .newsBox .newsList .slick-next {
    right: 10px;
  }
  .newsArea .newsBox .newsList .newsItem {
    padding: 5px 10px 20px;
  }
}
@media (max-width: 480px) {
  .newsArea .newsBox .newsList .slick-list {
    max-width: 100%;
  }
}
.newsArea .newsBox .progress {
  display: block;
  max-width: 525px;
  margin: 56px auto 0;
  width: 100%;
  height: 3px;
  overflow: hidden;
  background-color: #e6e6e6;
  background-image: -webkit-gradient(linear, left top, right top, from(#e7c624), to(#e7c624));
  background-image: linear-gradient(to right, #e7c624, #e7c624);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size 0.4s ease-in-out;
  transition: background-size 0.4s ease-in-out;
}
@media (max-width: 992px) {
  .newsArea .newsBox .progress {
    margin-top: 25px;
    max-width: 80%;
  }
}
@media (max-width: 480px) {
  .newsArea .newsBox .progress {
    display: none !important;
  }
}