@charset "UTF-8";
.newsArea .item, .newsArea .arrowBox .arrow, .customizeArea .arrowBox .arrow, .customizeArea .customizeItem .customizeInfoItem > a::before, .customizeArea .customizeItem .customizeInfoItem > a::after, .customizeArea .customizeItem .customizeInfoItem > a span, .solutionArea .solutionItem .btn svg, .solutionArea .solutionItem .btn .arrow::after, .solutionArea .solutionItem .btn .arrow, .solutionArea .rightBox .arrowBox .arrow, .solutionArea .leftBox .arrowBox .arrow, .productArea .arrowBox .arrow, .productArea .productTitleItem .title, .bannerArea .slick-dots li .circle svg, .bannerArea .arrowBox .arrow, .bannerArea .socialBox .socialList li a svg, .bannerArea .socialBox .socialList li, .sidemenuBox li::after, .sidemenuBox li a, .sidemenuBox li, .sidemenuBox {
  -webkit-transition: all 0.5s;
  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;
  -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%;
  -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: 1180px) {
  .popWin .close {
    right: 0;
    top: 0;
    border-radius: 0;
  }
  .popWin .popContent {
    max-height: calc(100vh - 150px);
  }
}

.mainArea {
  position: relative;
  padding: 0;
}

/*sidemenuBox*/
.sidemenuBox {
  position: fixed;
  left: 60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 49;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 1660px) {
  .sidemenuBox {
    left: 20px;
  }
}
@media (max-width: 640px) {
  .sidemenuBox {
    display: none;
  }
}
.sidemenuBox.active {
  opacity: 1;
  pointer-events: all;
}
.sidemenuBox li {
  position: relative;
  padding: 7.5px 0 7.5px 15px;
}
.sidemenuBox li a {
  font-size: 17px;
  font-weight: 400;
  color: #a9b6c9;
}
@media (max-width: 1660px) {
  .sidemenuBox li a {
    font-size: 14px;
  }
}
@media (max-width: 960px) {
  .sidemenuBox li a {
    font-size: 12px;
  }
}
.sidemenuBox li.current {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  margin-bottom: 25px;
}
.sidemenuBox li.current a {
  color: #2b528f;
  font-weight: 500;
}
.sidemenuBox li.current::before {
  background: #2b528f;
}
.sidemenuBox li.current::after {
  height: 25px;
}
.sidemenuBox li.current:last-child {
  margin-top: 25px;
  margin-bottom: 0;
}
.sidemenuBox li.current:last-child::after {
  top: initial;
  bottom: 90%;
}
.sidemenuBox li.white a {
  color: #ffffff;
}
.sidemenuBox li.white::after, .sidemenuBox li.white::before {
  background: #ffffff;
}
.sidemenuBox li::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a9b6c9;
}
.sidemenuBox li::after {
  content: "";
  position: absolute;
  top: 90%;
  left: 3px;
  display: block;
  width: 1px;
  height: 0;
  background: #2b528f;
}
.sidemenuBox li:last-child::after {
  top: 0;
  background: #ffffff;
}

.bannerArea {
  overflow: hidden;
}
.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList:not(.slick-slider) {
  position: relative;
}
.bannerArea .bannerList:not(.slick-slider) > div, .bannerArea .bannerList:not(.slick-slider) li {
  position: relative;
  z-index: 2;
}
.bannerArea .bannerList:not(.slick-slider) > div:not(:first-child), .bannerArea .bannerList:not(.slick-slider) li:not(:first-child) {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerItem .Txt {
  max-width: 1450px;
  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 165px;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 1660px) {
  .bannerArea .bannerItem .Txt {
    max-width: 1200px;
  }
}
@media (max-width: 1280px) {
  .bannerArea .bannerItem .Txt {
    padding: 165px 20px;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Txt {
    padding: 85px 20px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt {
    padding: 80px 20px 45px;
  }
}
.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: #fff;
  font-family: Poppins;
  font-size: 100px;
  font-weight: 600;
  line-height: 1;
  max-width: 1000px;
  max-height: 240px;
  word-break: break-all;
  padding: 10px 0;
  opacity: 0;
}
@media (max-width: 1366px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 80px;
  }
}
@media (max-width: 1280px) {
  .bannerArea .bannerItem .Txt .title {
    max-width: 80%;
    font-size: 65px;
    max-height: 150px;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 45px;
    max-height: 110px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .title {
    max-width: 80%;
  }
}
@media (max-width: 360px) {
  .bannerArea .bannerItem .Txt .title {
    max-width: 100%;
  }
}
.bannerArea .bannerItem .Txt .subtitle {
  color: #fff;
  display: block;
  font-family: Poppins;
  font-weight: 600;
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: 9.5px;
  opacity: 0;
}
@media (max-width: 1280px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 21px;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 18px;
    letter-spacing: 6px;
  }
}
@media (max-width: 360px) {
  .bannerArea .bannerItem .Txt .subtitle {
    letter-spacing: 2px;
  }
}
.bannerArea .bannerItem .Txt .text {
  color: #fff;
  display: block;
  font-family: Poppins, "Noto Sans TC", "微軟正黑體", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.5px;
  max-width: 550px;
  opacity: 0;
}
@media (max-width: 1280px) {
  .bannerArea .bannerItem .Txt .text {
    line-height: 1.6;
    font-size: 15px;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 14px;
    max-width: 70%;
    max-height: 45px;
  }
}
@media (max-width: 360px) {
  .bannerArea .bannerItem .Txt .text {
    max-width: 100%;
    font-size: 13px;
    max-height: 65px;
  }
}
.bannerArea .bannerItem .Txt .bannerBtn {
  opacity: 0;
  padding-top: 30px;
}
@media (max-width: 1280px) {
  .bannerArea .bannerItem .Txt .bannerBtn {
    padding-top: 15px;
  }
}
.bannerArea .bannerItem .Txt .bannerBtn a {
  display: inline-block;
  padding: 10px 35px;
  font-family: Poppins;
  letter-spacing: 0.5px;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  border-radius: 25px;
  border: 1px solid #ffffff;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .bannerBtn a {
    font-size: 13px;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Txt .bannerBtn a {
    padding: 10px 20px;
  }
}
.bannerArea .bannerItem .Txt .bannerBtn a:hover {
  background-color: #2b528f;
  -webkit-box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
          box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
  border: 1px solid transparent;
}
.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;
}
.bannerArea .bannerItem .Img {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
  overflow: hidden;
}
.bannerArea .bannerItem .Img > img {
  -webkit-transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.bannerArea .bannerItem .Img::before {
  content: "";
  position: absolute;
  z-index: 5;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(255, 255, 255, 0.1)));
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.1));
  pointer-events: none;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Img > img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 640px;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Img > img {
    height: 400px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Img {
    margin-bottom: 0;
    height: initial;
  }
}
.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 .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 .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 .bannerItem.slick-current .Img > img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.bannerArea .bannerItem.slick-current .mirrorBox {
  -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 .productBox {
  -webkit-animation: bannerTxtAnimation 0.8s 1.4s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 1.4s ease-in-out forwards;
}
.bannerArea .mirrorBox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
}
@media (max-width: 480px) {
  .bannerArea .mirrorBox {
    display: none;
  }
}
.bannerArea .mirrorBox img {
  position: absolute;
  display: block;
  width: 100%;
}
.bannerArea .mirrorBox .mirror01 {
  width: 5vw;
  left: 13%;
  top: -8%;
}
@media (max-width: 1180px) {
  .bannerArea .mirrorBox .mirror01 {
    top: 10%;
  }
}
.bannerArea .mirrorBox .mirror02 {
  width: 4vw;
  left: 11%;
  top: 18%;
}
@media (max-width: 1180px) {
  .bannerArea .mirrorBox .mirror02 {
    top: 35%;
  }
}
.bannerArea .mirrorBox .mirror03 {
  width: 5.5vw;
  right: 20%;
  top: 18%;
}
.bannerArea .mirrorBox .mirror04 {
  width: 26vw;
  right: 7.5%;
  top: 24%;
}
.bannerArea .mirrorBox .mirror05 {
  width: 20vw;
  right: 5%;
  top: 29%;
}
.bannerArea .mirrorBox .mirror06 {
  width: 28vw;
  right: 12%;
  top: 31%;
}
.bannerArea .mirrorBox .mirror07 {
  width: 1.5vw;
  right: 40%;
  top: 38%;
}
.bannerArea .productBox {
  position: absolute;
  z-index: 5;
  bottom: 0;
  right: 15%;
  opacity: 0;
}
@media (max-width: 1280px) {
  .bannerArea .productBox {
    right: 0%;
  }
}
@media (max-width: 1024px) {
  .bannerArea .productBox {
    right: 5%;
  }
}
@media (max-width: 640px) {
  .bannerArea .productBox {
    width: 30%;
  }
}
@media (max-width: 480px) {
  .bannerArea .productBox {
    display: none;
  }
}
.bannerArea .productBox::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 85px;
  background-image: url("../images/home/productBg.png");
  background-position: center 100%;
  background-repeat: no-repeat;
}
.bannerArea .productBox .productImg {
  position: relative;
  z-index: 5;
  max-width: 330px;
}
@media (max-width: 1180px) {
  .bannerArea .productBox .productImg {
    max-width: 280px;
  }
}
@media (max-width: 1024px) {
  .bannerArea .productBox .productImg {
    max-width: 220px;
  }
}
@media (max-width: 640px) {
  .bannerArea .productBox .productImg {
    max-width: 180px;
  }
}
.bannerArea .productBox .productImg img {
  display: block;
  width: 100%;
}
.bannerArea .socialBox {
  display: block;
  position: absolute;
  top: 50%;
  right: 65px;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1366px) {
  .bannerArea .socialBox {
    right: 27px;
  }
}
.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: #fff;
  display: block;
  font-size: 16px;
  line-height: 35px;
  text-align: center;
}
.bannerArea .socialBox .socialList li a svg {
  width: 20px;
  height: 18px;
  display: inline-block;
  fill: #fff;
  margin-top: -2px;
  vertical-align: middle;
}
.bannerArea .socialBox .socialList li a:hover {
  color: #2b528f;
}
.bannerArea .socialBox .socialList li a:hover svg {
  fill: #2b528f;
}
.bannerArea .arrowBox {
  display: block;
  position: absolute;
  bottom: 90px;
  left: 65px;
  z-index: 2;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media (max-width: 1366px) {
  .bannerArea .arrowBox {
    left: 40px;
    bottom: 50px;
  }
}
.bannerArea .arrowBox .arrow {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 10px 0;
  cursor: pointer;
}
.bannerArea .arrowBox .arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15px;
  height: 20px;
  fill: #ffffff;
  stroke: #ffffff;
}
.bannerArea .arrowBox .arrowPrev {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.bannerArea .arrowBox .arrowPrev::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 20px;
  background-color: #fff;
}
.bannerArea .arrowBox .arrowPrev:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
          box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
}
.bannerArea .arrowBox .arrowPrev:hover svg {
  fill: #2b528f;
  stroke: #2b528f;
}
.bannerArea .arrowBox .arrowNext {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.bannerArea .arrowBox .arrowNext:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
          box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
}
.bannerArea .arrowBox .arrowNext:hover svg {
  fill: #2b528f;
  stroke: #2b528f;
}
.bannerArea .scrollDown {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 140px;
  right: 80px;
  z-index: 2;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}
@media (max-width: 1366px) {
  .bannerArea .scrollDown {
    right: 45px;
  }
}
.bannerArea .scrollDown span {
  display: block;
}
.bannerArea .scrollDown span.text {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
}
.bannerArea .scrollDown span.arrow {
  position: relative;
  width: 45px;
  margin-left: 15px;
  -webkit-animation: scsrollAnimation 3s ease-in-out infinite;
          animation: scsrollAnimation 3s ease-in-out infinite;
}
.bannerArea .scrollDown span.arrow::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  height: 1px;
  width: 100%;
  background: #ffffff;
}
@-webkit-keyframes scsrollAnimation {
  50% {
    -webkit-transform: translateX(10px) scaleX(1.2);
            transform: translateX(10px) scaleX(1.2);
  }
}
@keyframes scsrollAnimation {
  50% {
    -webkit-transform: translateX(10px) scaleX(1.2);
            transform: translateX(10px) scaleX(1.2);
  }
}
@media (max-width: 1280px) {
  .bannerArea .scrollDown span.arrow {
    width: 20px;
  }
}
.bannerArea .scrollDown span svg {
  display: block;
  margin-left: auto;
  fill: #ffffff;
  width: 25px;
  height: 15px;
}
.bannerArea .slick-dots {
  width: 8px;
  margin: 0;
  top: 50%;
  left: 60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  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;
}
@media (max-width: 1366px) {
  .bannerArea .slick-dots {
    left: 30px;
  }
}
@media (max-width: 1280px) {
  .bannerArea .slick-dots {
    display: none;
  }
}
.bannerArea .slick-dots li {
  position: relative;
  width: 100%;
  height: 8px;
  margin: 10px 0;
}
.bannerArea .slick-dots li .circle {
  display: block;
  width: 100;
  height: 100;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@-webkit-keyframes decoCircle {
  100% {
    stroke-dashoffset: 1500;
  }
}
@keyframes decoCircle {
  100% {
    stroke-dashoffset: 1500;
  }
}
.bannerArea .slick-dots li .circle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
  height: 20px;
  stroke: #fff;
  stroke-width: 25;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}
.bannerArea .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.bannerArea .slick-dots li button::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: transparent;
  opacity: 1;
}
.bannerArea .slick-dots li.slick-active button::before {
  border: 1px solid #fff;
  background-color: #fff;
  opacity: 1;
}
.bannerArea .slick-dots li.slick-active svg {
  -webkit-animation: decoCircle 5s linear forwards;
          animation: decoCircle 5s linear forwards;
}
@media (max-width: 1180px) {
  .bannerArea .Txt .bannerVideo, .bannerArea .socialBox, .bannerArea .scrollDown, .bannerArea .slick-dots, .bannerArea .arrowBox {
    display: none !important;
  }
}

.productArea {
  padding: 10px 0 50px;
}
@media (max-width: 480px) {
  .productArea {
    padding: 50px 0;
  }
}
.productArea .wrap {
  max-width: 1230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1440px) {
  .productArea .wrap {
    max-width: 1100px;
    padding: 0 5%;
  }
}
@media (max-width: 1280px) {
  .productArea .wrap {
    padding: 0 8%;
  }
}
@media (max-width: 1180px) {
  .productArea .wrap {
    padding: 0 15%;
  }
}
@media (max-width: 960px) {
  .productArea .wrap {
    padding: 0 18%;
  }
}
@media (max-width: 640px) {
  .productArea .wrap {
    padding: 0 20px;
  }
}
.productArea .titleBox {
  width: 100%;
}
@media (max-width: 1180px) {
  .productArea .titleBox {
    margin: 0 auto 30px;
  }
}
@media (max-width: 640px) {
  .productArea .titleBox {
    text-align: center;
  }
}
.productArea .leftBox {
  position: relative;
  width: 20%;
  padding: 20px 25px 0 0;
}
.productArea .leftBox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 85%;
  height: 1px;
  background: #c9cfdc;
}
@media (max-width: 1180px) {
  .productArea .leftBox::after {
    width: 100%;
  }
}
.productArea .leftBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 40%;
  height: 1px;
  background: #2b528f;
}
@media (max-width: 1180px) {
  .productArea .leftBox {
    width: 100%;
    padding: 0;
    padding-top: 20px;
  }
}
.productArea .productTitleList:not(.slick-slider) {
  position: relative;
}
.productArea .productTitleList:not(.slick-slider) > div, .productArea .productTitleList:not(.slick-slider) li {
  position: relative;
  z-index: 2;
}
.productArea .productTitleList:not(.slick-slider) > div:not(:first-child), .productArea .productTitleList:not(.slick-slider) li:not(:first-child) {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
@media (max-width: 1180px) {
  .productArea .productTitleList {
    display: none;
  }
}
.productArea .productTitleList_m {
  display: block;
  margin-bottom: 45px;
}
.productArea .productTitleList_m:not(.slick-slider) {
  position: relative;
}
.productArea .productTitleList_m:not(.slick-slider) > div, .productArea .productTitleList_m:not(.slick-slider) li {
  position: relative;
  z-index: 2;
}
.productArea .productTitleList_m:not(.slick-slider) > div:not(:first-child), .productArea .productTitleList_m:not(.slick-slider) li:not(:first-child) {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
@media (max-width: 640px) {
  .productArea .productTitleList_m {
    margin: 0 -20px 25px;
  }
}
@media (min-width: 1181px) {
  .productArea .productTitleList_m {
    display: none;
  }
}
.productArea .productTitleItem.slick-current .title {
  font-size: 20px;
  color: #2b528f;
}
@media (max-width: 1440px) {
  .productArea .productTitleItem.slick-current .title {
    font-size: 16px;
  }
}
@media (max-width: 860px) {
  .productArea .productTitleItem.slick-current .title {
    font-size: 14px;
  }
}
.productArea .productTitleItem .item {
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1180px) {
  .productArea .productTitleItem .Txt {
    width: 100%;
  }
}
.productArea .productTitleItem .title {
  font-weight: 500;
  font-size: 16px;
  color: #53535b;
  letter-spacing: 1px;
  cursor: pointer;
}
@media (max-width: 1440px) {
  .productArea .productTitleItem .title {
    font-size: 14px;
  }
}
@media (max-width: 1180px) {
  .productArea .productTitleItem .title {
    text-align: center;
  }
}
@media (max-width: 860px) {
  .productArea .productTitleItem .title {
    max-width: 90px;
    margin: 0 auto;
  }
}
.productArea .arrowBox {
  position: relative;
  display: block;
  margin-left: -20px;
  pointer-events: none;
}
@media (max-width: 1180px) {
  .productArea .arrowBox {
    position: absolute;
    top: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(100% + 20px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  .productArea .arrowBox {
    display: none;
  }
}
.productArea .arrowBox .arrow {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.productArea .arrowBox .arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15px;
  height: 20px;
  fill: #0d0d0d;
  stroke: #0d0d0d;
}
.productArea .arrowBox .arrowPrev {
  margin-right: auto;
  pointer-events: all;
}
@media (max-width: 1180px) {
  .productArea .arrowBox .arrowPrev {
    margin-left: -10px;
  }
}
.productArea .arrowBox .arrowPrev::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 20px;
  background-color: #0d0d0d;
}
@media (max-width: 1180px) {
  .productArea .arrowBox .arrowPrev::after {
    display: none;
  }
}
.productArea .arrowBox .arrowPrev:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
          box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
}
.productArea .arrowBox .arrowPrev:hover svg {
  fill: #2b528f;
}
.productArea .arrowBox .arrowNext {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  margin-left: 5px;
  pointer-events: all;
}
@media (max-width: 1180px) {
  .productArea .arrowBox .arrowNext {
    margin-left: 0;
    margin-right: -10px;
  }
}
.productArea .arrowBox .arrowNext:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
          box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
}
.productArea .arrowBox .arrowNext:hover svg {
  fill: #2b528f;
}
.productArea .rightBox {
  width: 80%;
}
@media (max-width: 1180px) {
  .productArea .rightBox {
    width: 100%;
  }
}
.productArea .productList:not(.slick-slider) {
  position: relative;
}
.productArea .productList:not(.slick-slider) > div, .productArea .productList:not(.slick-slider) li {
  position: relative;
  z-index: 2;
}
.productArea .productList:not(.slick-slider) > div:not(:first-child), .productArea .productList:not(.slick-slider) li:not(:first-child) {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.productArea .productItem .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #ffffff;
  border-radius: 25px;
}
@media (max-width: 1024px) {
  .productArea .productItem .item {
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 800px) {
  .productArea .productItem .item {
    max-width: 100%;
  }
}
@media (max-width: 960px) {
  .productArea .productItem .item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 420px;
  }
}
.productArea .productItem .Txt {
  position: relative;
  padding: 45px 50px;
  max-width: 460px;
}
@media (max-width: 1440px) {
  .productArea .productItem .Txt {
    max-width: 370px;
    padding: 40px 30px;
  }
}
@media (max-width: 1280px) {
  .productArea .productItem .Txt {
    max-width: 345px;
  }
}
@media (max-width: 1060px) {
  .productArea .productItem .Txt {
    max-width: 50%;
  }
}
@media (max-width: 960px) {
  .productArea .productItem .Txt {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    max-width: initial;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 30px 25px 120px;
  }
}
.productArea .productItem .introTitle {
  font-family: Poppins;
  font-weight: 500;
  font-size: 25px;
  line-height: 1.2;
  color: #000000;
  padding: 30px 0 40px;
}
@media (max-width: 1440px) {
  .productArea .productItem .introTitle {
    padding: 20px 0;
  }
}
@media (max-width: 1024px) {
  .productArea .productItem .introTitle {
    padding: 0 0 45px;
  }
}
@media (max-width: 768px) {
  .productArea .productItem .introTitle {
    padding-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .productArea .productItem .introTitle {
    font-size: 21px;
  }
}
.productArea .productItem .introList {
  font-family: Poppins, "Noto Sans TC", "微軟正黑體", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #53535b;
  letter-spacing: 0.5px;
  line-height: 1.8;
  height: 180px;
  padding-right: 10px;
  overflow-y: auto;
}
.productArea .productItem .introList::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
  background-color: #7c7c7c;
}
.productArea .productItem .introList::-webkit-scrollbar {
  border: 1px solid #000;
  width: 5px;
  height: 25px;
  background-color: #7c7c7c;
}
.productArea .productItem .introList::-webkit-scrollbar-thumb {
  background: #2b528f;
}
@media (max-width: 1440px) {
  .productArea .productItem .introList {
    height: 140px;
  }
}
@media (max-width: 1060px) {
  .productArea .productItem .introList {
    height: 110px;
  }
}
@media (max-width: 768px) {
  .productArea .productItem .introList {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .productArea .productItem .introList {
    margin-top: 20px;
  }
}
.productArea .productItem .btn {
  position: absolute;
  bottom: 45px;
  left: 40px;
  border: 1px solid transparent;
}
.productArea .productItem .btn:hover {
  background: #ffffff;
  border: 1px solid #2b528f;
}
.productArea .productItem .btn:hover .text {
  color: #2b528f;
}
.productArea .productItem .btn:hover .arrow::after {
  background: #2b528f;
}
.productArea .productItem .btn:hover svg {
  fill: #2b528f;
}
@media (max-width: 1280px) {
  .productArea .productItem .btn {
    bottom: 40px;
    left: 30px;
  }
}
@media (max-width: 1024px) {
  .productArea .productItem .btn {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .productArea .productItem .btn {
    margin-top: 30px;
  }
}
.productArea .productItem .Img {
  margin-left: auto;
}
@media (max-width: 1024px) {
  .productArea .productItem .Img {
    margin: 0;
    max-width: 420px;
  }
}
@media (max-width: 960px) {
  .productArea .productItem .Img {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    width: 100%;
    max-width: 420px;
  }
}
.productArea .productItem .Img a {
  display: block;
  max-width: 510px;
  border-radius: 25px;
  overflow: hidden;
}
.productArea .productItem .Img img {
  display: block;
  width: 100%;
}

.solutionArea {
  position: relative;
  padding: 50px 0;
}
@media (max-width: 640px) {
  .solutionArea {
    padding-bottom: 180px;
  }
}
@media (max-width: 480px) {
  .solutionArea {
    padding: 0 0 180px;
  }
}
.solutionArea .wrap {
  position: relative;
  z-index: 5;
  max-width: 1230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1440px) {
  .solutionArea .wrap {
    max-width: 1100px;
    padding: 0 5%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 1280px) {
  .solutionArea .wrap {
    padding: 0 8%;
  }
}
@media (max-width: 1180px) {
  .solutionArea .wrap {
    padding: 0 15%;
  }
}
@media (max-width: 960px) {
  .solutionArea .wrap {
    padding: 0 18%;
  }
}
@media (max-width: 640px) {
  .solutionArea .wrap {
    padding: 0 20px;
  }
}
.solutionArea .leftBox {
  width: 250px;
  padding-top: 25px;
}
@media (max-width: 1440px) {
  .solutionArea .leftBox {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 350px;
  }
}
@media (max-width: 1180px) {
  .solutionArea .leftBox {
    display: none;
  }
}
.solutionArea .leftBox .arrowBox {
  position: relative;
  display: block;
  margin-left: -20px;
  margin-top: 15px;
}
.solutionArea .leftBox .arrowBox .arrow {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.solutionArea .leftBox .arrowBox .arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15px;
  height: 20px;
  fill: #0d0d0d;
  stroke: #0d0d0d;
}
.solutionArea .leftBox .arrowBox .arrowPrev::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 20px;
  background-color: #0d0d0d;
}
.solutionArea .leftBox .arrowBox .arrowPrev:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
          box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
}
.solutionArea .leftBox .arrowBox .arrowPrev:hover svg {
  fill: #2b528f;
}
.solutionArea .leftBox .arrowBox .arrowNext {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  margin-left: 5px;
}
.solutionArea .leftBox .arrowBox .arrowNext:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
          box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
}
.solutionArea .leftBox .arrowBox .arrowNext:hover svg {
  fill: #2b528f;
}
.solutionArea .solutionTitleItem.slick-current .title {
  color: #2b528f;
}
.solutionArea .solutionTitleItem.slick-current .Img {
  background: #2b528f;
}
.solutionArea .solutionTitleItem.slick-current .Img img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.solutionArea .solutionTitleItem .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  cursor: pointer;
}
.solutionArea .solutionTitleItem .Img {
  padding: 15px;
  background: #ffffff;
  border-radius: 20px;
}
.solutionArea .solutionTitleItem .Img img {
  display: block;
  max-width: 45px;
  width: 100%;
}
.solutionArea .solutionTitleItem .Txt {
  margin-left: 20px;
  max-width: 140px;
}
.solutionArea .solutionTitleItem .title {
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}
.solutionArea .rightBox {
  position: relative;
  width: 530px;
  padding-top: 35px;
}
@media (max-width: 1440px) {
  .solutionArea .rightBox {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 640px) {
  .solutionArea .rightBox {
    width: initial;
    max-width: 100%;
  }
}
.solutionArea .rightBox .arrowBox {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
  width: calc(100% + 85px);
  margin-top: 15px;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .solutionArea .rightBox .arrowBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 860px) {
  .solutionArea .rightBox .arrowBox {
    width: calc(100% - 40px);
  }
}
@media (max-width: 640px) {
  .solutionArea .rightBox .arrowBox {
    position: static;
    -webkit-transform: none;
            transform: none;
    width: initial;
    margin-top: -180px;
  }
}
@media (max-width: 420px) {
  .solutionArea .rightBox .arrowBox {
    max-width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
}
.solutionArea .rightBox .arrowBox .arrow {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
  pointer-events: all;
}
.solutionArea .rightBox .arrowBox .arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15px;
  height: 20px;
  fill: #0d0d0d;
  stroke: #0d0d0d;
}
.solutionArea .rightBox .arrowBox .arrowPrev {
  margin-right: auto;
}
.solutionArea .rightBox .arrowBox .arrowPrev:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
          box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
}
.solutionArea .rightBox .arrowBox .arrowPrev:hover svg {
  fill: #2b528f;
}
.solutionArea .rightBox .arrowBox .arrowNext {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.solutionArea .rightBox .arrowBox .arrowNext:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
          box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
}
.solutionArea .rightBox .arrowBox .arrowNext:hover svg {
  fill: #2b528f;
}
.solutionArea .solutionList:not(.slick-slider) {
  position: relative;
}
.solutionArea .solutionList:not(.slick-slider) > div, .solutionArea .solutionList:not(.slick-slider) li {
  position: relative;
  z-index: 2;
}
.solutionArea .solutionList:not(.slick-slider) > div:not(:first-child), .solutionArea .solutionList:not(.slick-slider) li:not(:first-child) {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.solutionArea .solutionItem:hover .Img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.solutionArea .solutionItem .item {
  position: relative;
}
.solutionArea .solutionItem .Img {
  padding-bottom: 160px;
}
@media (max-width: 860px) {
  .solutionArea .solutionItem .Img {
    padding-bottom: 200px;
  }
}
@media (max-width: 640px) {
  .solutionArea .solutionItem .Img {
    padding-bottom: 0;
  }
}
.solutionArea .solutionItem .Img a {
  display: block;
  border-radius: 50%;
  max-width: 455px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 860px) {
  .solutionArea .solutionItem .Img a {
    width: 70%;
  }
}
@media (max-width: 640px) {
  .solutionArea .solutionItem .Img a {
    width: 80%;
  }
}
.solutionArea .solutionItem .Img .imgWrap {
  position: relative;
  padding: 25px 0;
}
@media (max-width: 640px) {
  .solutionArea .solutionItem .Img .imgWrap {
    padding: 12.5px 0;
  }
}
@media (max-width: 480px) {
  .solutionArea .solutionItem .Img .imgWrap {
    padding: 9px 0;
  }
}
.solutionArea .solutionItem .Img img {
  display: block;
  width: 100%;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
@-webkit-keyframes circle {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes circle {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
.solutionArea .solutionItem .Img .decoBox {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
@media (max-width: 640px) {
  .solutionArea .solutionItem .Img .decoBox {
    width: 100%;
  }
}
.solutionArea .solutionItem .Img .decoBox svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 480px;
  height: 480px;
  -webkit-animation: circle 50s linear infinite;
          animation: circle 50s linear infinite;
}
@media (max-width: 860px) {
  .solutionArea .solutionItem .Img .decoBox svg {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 640px) {
  .solutionArea .solutionItem .Img .decoBox svg {
    width: 95%;
    height: 95%;
  }
}
.solutionArea .solutionItem .Img .decoBox::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 500px;
  height: 500px;
  border: 1px solid #2b528f;
  border-radius: 50%;
}
@media (max-width: 860px) {
  .solutionArea .solutionItem .Img .decoBox::after {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 640px) {
  .solutionArea .solutionItem .Img .decoBox::after {
    width: 85%;
    height: 100%;
  }
}
.solutionArea .solutionItem .Txt {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  width: 400px;
  padding: 35px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 1024px) {
  .solutionArea .solutionItem .Txt {
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (max-width: 640px) {
  .solutionArea .solutionItem .Txt {
    position: relative;
    left: initial;
    bottom: initial;
    z-index: 5;
    -webkit-transform: none;
            transform: none;
    margin: -150px auto 0;
  }
}
@media (max-width: 480px) {
  .solutionArea .solutionItem .Txt {
    max-width: 85%;
    padding: 35px 20px 20px;
    margin-top: -100px;
  }
}
@media (max-width: 420px) {
  .solutionArea .solutionItem .Txt {
    margin-top: -50px;
  }
}
.solutionArea .solutionItem .title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}
.solutionArea .solutionItem .text {
  font-weight: 400;
  font-size: 16px;
  color: #53535b;
  max-height: 135px;
  padding-right: 15px;
  overflow-y: auto;
}
.solutionArea .solutionItem .text::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
  background-color: #7c7c7c;
}
.solutionArea .solutionItem .text::-webkit-scrollbar {
  border: 1px solid #000;
  width: 5px;
  height: 25px;
  background-color: #7c7c7c;
}
.solutionArea .solutionItem .text::-webkit-scrollbar-thumb {
  background: #2b528f;
}
@media (max-width: 420px) {
  .solutionArea .solutionItem .text {
    max-height: 180px;
  }
}
.solutionArea .solutionItem .btn {
  display: inline-block;
  background: transparent;
  margin-top: 20px;
}
.solutionArea .solutionItem .btn:hover .arrow {
  border: 1px solid transparent;
  background: #2b528f;
}
.solutionArea .solutionItem .btn:hover .arrow::after {
  background: #ffffff;
}
.solutionArea .solutionItem .btn:hover svg {
  fill: #ffffff;
}
.solutionArea .solutionItem .btn .arrow {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #000;
}
.solutionArea .solutionItem .btn .arrow::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  height: 1px;
  width: 45%;
  background: #000;
}
.solutionArea .solutionItem .btn svg {
  position: absolute;
  display: block;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 12px;
  fill: #000;
}
.solutionArea .contentBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 30px 0 0 55px;
}
.solutionArea .contentBox .titleEn {
  letter-spacing: -1.2px;
}
@media (max-width: 480px) {
  .solutionArea .contentBox .titleEn {
    word-break: initial;
    line-height: 1.3;
  }
}
@media (max-width: 1440px) {
  .solutionArea .contentBox {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    padding: 30px 0;
    margin: 0 auto;
  }
}
@media (max-width: 1180px) {
  .solutionArea .contentBox {
    text-align: center;
    padding: 30px 0 0;
  }
  .solutionArea .contentBox .titleBox {
    text-align: center;
  }
}
.solutionArea .more {
  margin-top: 40px;
  background: transparent;
  border: 1px solid #53535b;
}
.solutionArea .more .text {
  color: #53535b;
}
.solutionArea .more .arrow::after {
  background: #53535b;
}
.solutionArea .more svg {
  fill: #53535b;
}
.solutionArea .more:hover {
  background: #2b528f;
}
.solutionArea .more:hover .text {
  color: #ffffff;
}
.solutionArea .more:hover .arrow::after {
  background: #ffffff;
}
.solutionArea .more:hover svg {
  fill: #ffffff;
}
.solutionArea .circleBg {
  position: absolute;
  z-index: 1;
  top: 0%;
  pointer-events: none;
}
.solutionArea .circleBg img {
  display: block;
  width: 100%;
}
@media (max-width: 1440px) {
  .solutionArea .circleBg {
    top: 80%;
  }
}
@media (max-width: 1024px) {
  .solutionArea .circleBg {
    top: 50%;
  }
}

.customizeArea {
  position: relative;
  margin-top: -160px;
  position: relative;
  padding: 240px 0 80px;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .customizeArea {
    margin-top: -20px;
  }
}
@media (max-width: 1024px) {
  .customizeArea {
    margin-top: -160px;
  }
}
@media (max-width: 640px) {
  .customizeArea {
    margin-top: 0;
    padding: 50px 0;
  }
}
.customizeArea .wrap {
  position: relative;
  z-index: 5;
  max-width: 1450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 130px;
}
@media (max-width: 1180px) {
  .customizeArea .wrap {
    padding: 0 15%;
  }
}
@media (max-width: 960px) {
  .customizeArea .wrap {
    padding: 0 18%;
  }
}
@media (max-width: 640px) {
  .customizeArea .wrap {
    padding: 0 20px;
  }
}
.customizeArea .contentBox {
  padding-bottom: 60px;
}
@media (max-width: 640px) {
  .customizeArea .contentBox {
    text-align: center;
  }
}
@media (max-width: 640px) {
  .customizeArea .titleBox {
    text-align: center;
  }
}
.customizeArea .infoBox {
  display: inline-block;
  max-width: 615px;
  margin-right: 110px;
}
@media (max-width: 640px) {
  .customizeArea .infoBox {
    margin: 0 auto;
    text-align: center;
  }
}
.customizeArea .infoBox .more {
  background: transparent;
  border: 1px solid #53535b;
  margin-top: 20px;
  line-height: 1.5;
}
.customizeArea .infoBox .more .text {
  color: #53535b;
}
.customizeArea .infoBox .more .arrow::after {
  background: #53535b;
}
.customizeArea .infoBox .more svg {
  fill: #53535b;
}
.customizeArea .infoBox .more:hover {
  background: #2b528f;
}
.customizeArea .infoBox .more:hover .text {
  color: #ffffff;
}
.customizeArea .infoBox .more:hover .arrow::after {
  background: #ffffff;
}
.customizeArea .infoBox .more:hover svg {
  fill: #ffffff;
}
.customizeArea .listBox {
  position: relative;
  width: 100%;
}
.customizeArea .stepBox {
  position: absolute;
  top: 55px;
  left: 0;
  z-index: 0;
  width: 100%;
  max-width: 1032px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.customizeArea .stepBox::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  display: block;
  width: 150%;
  height: 1px;
  background: #cccdd0;
}
@media (max-width: 640px) {
  .customizeArea .stepBox::before {
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
}
.customizeArea .customizeList {
  z-index: 5;
}
.customizeArea .customizeList:not(.slick-slider) {
  position: relative;
}
.customizeArea .customizeList:not(.slick-slider) > div, .customizeArea .customizeList:not(.slick-slider) li {
  position: relative;
  z-index: 2;
}
.customizeArea .customizeList:not(.slick-slider) > div:not(:first-child), .customizeArea .customizeList:not(.slick-slider) li:not(:first-child) {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.customizeArea .customizeItem:nth-of-type(even) .Img {
  background: #2b528f;
}
.customizeArea .customizeItem:nth-of-type(even) img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.customizeArea .customizeItem .item {
  position: relative;
}
.customizeArea .customizeItem .title {
  display: block;
  padding-top: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #000000;
}
.customizeArea .customizeItem .Img {
  padding: 25px;
  background: #ffffff;
  border-radius: 20px;
  max-width: 110px;
}
.customizeArea .customizeItem .Img img {
  display: block;
  max-width: 60px;
  width: 100%;
}
@media (max-width: 420px) {
  .customizeArea .customizeItem .Img {
    margin: 0 auto;
  }
}
@media (max-width: 420px) {
  .customizeArea .customizeItem .Txt {
    max-width: 130px;
    margin: 0 auto;
  }
}
.customizeArea .customizeItem .customizeInfoList {
  margin-top: 10px;
}
.customizeArea .customizeItem .customizeInfoItem {
  color: #53535b;
  font-size: 16px;
  padding: 5px 0;
}
.customizeArea .customizeItem .customizeInfoItem > a {
  display: inline-block;
  position: relative;
}
.customizeArea .customizeItem .customizeInfoItem > a span {
  color: #53535b;
  font-size: 16px;
}
.customizeArea .customizeItem .customizeInfoItem > a::after {
  content: url("../images/triangle.svg");
  position: absolute;
  top: 0;
  left: -15px;
  display: block;
  width: 9px;
  opacity: 0;
}
.customizeArea .customizeItem .customizeInfoItem > a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  display: block;
  width: 0;
  height: 1px;
  background: #2b528f;
}
.customizeArea .customizeItem .customizeInfoItem > a:hover span {
  font-size: 18px;
  color: #2b528f;
  font-weight: 500;
  margin-left: 12px;
}
.customizeArea .customizeItem .customizeInfoItem > a:hover::after {
  left: 0;
  opacity: 1;
}
.customizeArea .customizeItem .customizeInfoItem > a:hover::before {
  width: 100%;
}
.customizeArea .customizeItem .arrow {
  position: absolute;
  top: 55px;
  right: 25%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 420px) {
  .customizeArea .customizeItem .arrow {
    right: 15%;
  }
}
.customizeArea .customizeItem .arrow span {
  display: block;
}
.customizeArea .customizeItem .arrow svg {
  width: 11px;
  height: 18px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  fill: #2b528f;
  stroke: #2b528f;
}
.customizeArea .customizeItem .arrow.mobile {
  display: none;
  right: 75%;
}
@media (max-width: 420px) {
  .customizeArea .customizeItem .arrow.mobile {
    display: block;
  }
}
.customizeArea .arrowBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -20px;
  margin-top: 30px;
}
.customizeArea .arrowBox .arrow {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.customizeArea .arrowBox .arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15px;
  height: 20px;
  fill: #0d0d0d;
  stroke: #0d0d0d;
}
.customizeArea .arrowBox .arrowPrev::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 20px;
  background-color: #0d0d0d;
}
.customizeArea .arrowBox .arrowPrev:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
          box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
}
.customizeArea .arrowBox .arrowPrev:hover svg {
  fill: #2b528f;
}
.customizeArea .arrowBox .arrowNext {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  margin-left: 5px;
}
.customizeArea .arrowBox .arrowNext:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
          box-shadow: 0 3px 10px rgba(204, 204, 204, 0.4);
}
.customizeArea .arrowBox .arrowNext:hover svg {
  fill: #2b528f;
}
@media (max-width: 640px) {
  .customizeArea .arrowBox {
    display: none;
  }
}
.customizeArea .decoBox {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}
.customizeArea .decoBox .Img {
  position: absolute;
  top: 0;
  right: 0;
}
.customizeArea .decoBox .Img img {
  display: block;
  width: 100%;
}
.customizeArea .decoBox .Img.arm {
  width: 560px;
  z-index: 5;
}
@media (max-width: 1440px) {
  .customizeArea .decoBox .Img.arm {
    width: 35vw;
  }
}
@media (max-width: 640px) {
  .customizeArea .decoBox .Img.arm {
    display: none;
  }
}
.customizeArea .decoBox .Img.dot {
  top: 100px;
  right: -180px;
  width: 420px;
}
@media (max-width: 640px) {
  .customizeArea .decoBox .Img.dot {
    display: none;
  }
}
.customizeArea .decoBox .whiteBoard {
  position: absolute;
  z-index: 0;
  bottom: 20px;
  right: 12%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0.1)));
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.1));
  border-radius: 25px;
  width: 500px;
  height: 755px;
}
@media (max-width: 640px) {
  .customizeArea .decoBox .whiteBoard {
    height: 50%;
    width: 80%;
    bottom: initial;
    top: 40%;
    right: initial;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
}
@media (max-width: 480px) {
  .customizeArea .decoBox .whiteBoard {
    top: 42%;
  }
}

.aboutArea {
  overflow: hidden;
  background: url(../images/home/newsBg.png) #2b528f;
}
.aboutArea .wrap {
  position: relative;
  max-width: 100%;
  padding: 0;
}
.aboutArea .ImgBox {
  position: relative;
}
.aboutArea .ImgBox img {
  display: block;
  width: 100%;
}
@media (max-width: 640px) {
  .aboutArea .ImgBox {
    min-height: 600px;
  }
}
.aboutArea .bg {
  height: 100vh;
}
.aboutArea .bg img {
  opacity: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-filter: blur(4px);
          filter: blur(4px);
  -webkit-transition: opacity 0.6s cubic-bezier(0.83, 0, 0.17, 1), -webkit-transform 0.8s cubic-bezier(0.83, 0, 0.17, 1), -webkit-filter 1s cubic-bezier(0.83, 0, 0.17, 1);
  transition: opacity 0.6s cubic-bezier(0.83, 0, 0.17, 1), -webkit-transform 0.8s cubic-bezier(0.83, 0, 0.17, 1), -webkit-filter 1s cubic-bezier(0.83, 0, 0.17, 1);
  transition: transform 0.8s cubic-bezier(0.83, 0, 0.17, 1), opacity 0.6s cubic-bezier(0.83, 0, 0.17, 1), filter 1s cubic-bezier(0.83, 0, 0.17, 1);
  transition: transform 0.8s cubic-bezier(0.83, 0, 0.17, 1), opacity 0.6s cubic-bezier(0.83, 0, 0.17, 1), filter 1s cubic-bezier(0.83, 0, 0.17, 1), -webkit-transform 0.8s cubic-bezier(0.83, 0, 0.17, 1), -webkit-filter 1s cubic-bezier(0.83, 0, 0.17, 1);
}
.aboutArea .bg.appear img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: blur(0);
          filter: blur(0);
}
.aboutArea .door {
  position: absolute;
  bottom: 15%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 485px;
  background: #ffffff;
  -webkit-transition: all 0.4s cubic-bezier(0.83, 0, 0.17, 1);
  transition: all 0.4s cubic-bezier(0.83, 0, 0.17, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.aboutArea .door.appear {
  width: 310px;
}
@media (max-width: 1080px) {
  .aboutArea .door.appear {
    width: 25vw;
    height: 30em;
  }
}
@media (max-width: 1024px) {
  .aboutArea .door.appear {
    min-width: 260px;
  }
}
.aboutArea .door.appear .doorframe-lr {
  -webkit-box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
          box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}
.aboutArea .door.appear .doorframe-lr::after {
  width: 7px;
  left: 0;
  -webkit-transform: none;
          transform: none;
}
.aboutArea .door.appear .doorframe-lr::before {
  width: 7px;
  right: 0;
  -webkit-transform: none;
          transform: none;
}
.aboutArea .door.appear .doorframe-tb {
  -webkit-box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
          box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}
.aboutArea .door.appear .doorframe-tb::after, .aboutArea .door.appear .doorframe-tb::before {
  width: 100%;
  height: 7px;
}
.aboutArea .door.appear .light {
  opacity: 1;
  width: calc(100% + 60px);
}
.aboutArea .door.appear .doorInsBg {
  opacity: 1;
}
.aboutArea .door .doorframe-tb {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.aboutArea .door .doorframe-tb::after, .aboutArea .door .doorframe-tb::before {
  content: "";
  position: absolute;
  z-index: 5;
  display: block;
  background: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.8s cubic-bezier(0.83, 0, 0.17, 1);
  transition: all 0.8s cubic-bezier(0.83, 0, 0.17, 1);
}
.aboutArea .door .doorframe-tb::after {
  top: 0;
  left: 50%;
}
.aboutArea .door .doorframe-tb::before {
  bottom: 0;
  left: 50%;
}
.aboutArea .door .doorframe-lr {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.aboutArea .door .doorframe-lr::after, .aboutArea .door .doorframe-lr::before {
  content: "";
  position: absolute;
  z-index: 5;
  display: block;
  background: #ffffff;
  width: 1px;
  height: 100%;
  -webkit-transition: all 0.8s cubic-bezier(0.83, 0, 0.17, 1);
  transition: all 0.8s cubic-bezier(0.83, 0, 0.17, 1);
}
.aboutArea .door .doorframe-lr::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.aboutArea .door .doorframe-lr::before {
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.aboutArea .door .light {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
  width: 0;
  opacity: 0;
  -webkit-transition: width 0.5s ease-in-out, opacity 0.8s linear 1s;
  transition: width 0.5s ease-in-out, opacity 0.8s linear 1s;
}
.aboutArea .door .light img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.aboutArea .door .light .light01 {
  opacity: 0.5;
}
.aboutArea .door .light .light02 {
  opacity: 0.3;
  -webkit-filter: brightness(1);
          filter: brightness(1);
}
.aboutArea .door .doorInsBg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.aboutArea .door .doorInsBg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutArea .humanBox {
  position: absolute;
  bottom: 10%;
  left: 45%;
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.83, 0, 0.17, 1);
  transition: all 0.6s cubic-bezier(0.83, 0, 0.17, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.aboutArea .humanBox.appear {
  opacity: 1;
}
@media (max-width: 1280px) {
  .aboutArea .humanBox {
    left: 36%;
  }
}
.aboutArea .human {
  position: relative;
  z-index: 5;
  max-width: 60px;
}
.aboutArea .shadow {
  position: absolute;
  bottom: -70px;
  right: 0;
  width: 245px;
  opacity: 1;
}
.aboutArea .TxtBox {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-transition: all 0.6s cubic-bezier(0.83, 0, 0.17, 1);
  transition: all 0.6s cubic-bezier(0.83, 0, 0.17, 1);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
@media (max-width: 1440px) {
  .aboutArea .TxtBox {
    background: rgba(43, 81, 143, 0.4039215686);
  }
}
.aboutArea .TxtBox.appear {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.aboutArea .Txtwrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1440px) {
  .aboutArea .Txtwrap {
    max-width: 1080px;
  }
}
@media (max-width: 1280px) {
  .aboutArea .Txtwrap {
    padding: 0 10%;
  }
}
@media (max-width: 1180px) {
  .aboutArea .Txtwrap {
    padding: 0 12%;
  }
}
@media (max-width: 1080px) {
  .aboutArea .Txtwrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 960px) {
  .aboutArea .Txtwrap {
    padding: 0 18%;
  }
}
@media (max-width: 640px) {
  .aboutArea .Txtwrap {
    padding: 0 20px;
  }
}
.aboutArea .leftBox {
  width: 50%;
}
@media (max-width: 1080px) {
  .aboutArea .leftBox {
    width: 100%;
  }
}
.aboutArea .textBox {
  max-width: 360px;
}
@media (max-width: 1080px) {
  .aboutArea .textBox {
    margin: 0 auto;
    max-width: 640px;
    text-align: center;
  }
}
@media (max-width: 1080px) {
  .aboutArea .titleBox {
    text-align: center;
  }
}
.aboutArea .titleBox .titleTw {
  font-size: 20px;
  color: #ffffff;
  margin-top: 20px;
}
.aboutArea .titleBox .titleEn {
  letter-spacing: 1px;
  line-height: 1.1;
  color: #ffffff;
  word-break: break-all;
}
@media (max-width: 1080px) {
  .aboutArea .titleBox .titleEn {
    word-break: normal;
  }
}
.aboutArea .rightBox {
  width: 50%;
}
@media (max-width: 1080px) {
  .aboutArea .rightBox {
    width: 100%;
  }
}
.aboutArea .contentBox h1 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1px;
  color: #ffffff;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  padding-top: 15px;
}
.aboutArea .more {
  margin-top: 40px;
  background: transparent;
  border: 1px solid #c9c9c9;
}
.aboutArea .more .text {
  color: #ffffff;
}
.aboutArea .more .arrow::after {
  background: #ffffff;
}
.aboutArea .more svg {
  fill: #ffffff;
}
.aboutArea .more:hover {
  background: #2b528f;
}
.aboutArea .more:hover .text {
  color: #ffffff;
}
.aboutArea .more:hover .arrow::after {
  background: #ffffff;
}
.aboutArea .more:hover svg {
  fill: #ffffff;
}
.aboutArea .aboutList {
  max-width: 250px;
  margin: 40px 120px 0 auto;
}
@media (max-width: 1080px) {
  .aboutArea .aboutList {
    max-width: 900px;
    width: 100%;
    margin: 40px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.aboutArea .aboutItem {
  padding-bottom: 25px;
}
@media (max-width: 1080px) {
  .aboutArea .aboutItem {
    text-align: center;
    min-width: 130px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 15px;
  }
}
@media (max-width: 480px) {
  .aboutArea .aboutItem {
    margin: 0 5px;
  }
}
.aboutArea .infoTitle {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid #c9c9c9;
}
.aboutArea .infoNum .numBox {
  font-size: 52px;
  font-weight: 500;
  color: #ffffff;
}
@media (max-width: 860px) {
  .aboutArea .infoNum .numBox {
    padding-top: 10px;
    line-height: 1;
    font-size: 45px;
  }
}
@media (max-width: 480px) {
  .aboutArea .infoNum .numBox {
    font-size: 35px;
    padding-top: 10px;
  }
}
@media (max-width: 360px) {
  .aboutArea .infoNum .numBox {
    font-size: 24px;
  }
}
.aboutArea .infoNum .numSign {
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 640px) {
  .aboutArea .infoNum .numSign {
    display: block;
    line-height: 1;
  }
}

.newsArea {
  padding: 110px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../images/home/newsBg.png) #2b528f;
}
@media (max-width: 480px) {
  .newsArea {
    padding: 50px 0;
  }
}
.newsArea .wrap {
  max-width: 1230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1440px) {
  .newsArea .wrap {
    max-width: 1100px;
    padding: 0 5%;
  }
}
@media (max-width: 1280px) {
  .newsArea .wrap {
    padding: 0 8%;
  }
}
@media (max-width: 1180px) {
  .newsArea .wrap {
    padding: 0 15%;
  }
}
@media (max-width: 960px) {
  .newsArea .wrap {
    padding: 0 18%;
  }
}
@media (max-width: 640px) {
  .newsArea .wrap {
    padding: 0 20px;
  }
}
.newsArea .titleBox {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.newsArea .titleBox .titleEn {
  letter-spacing: 0.1px;
  line-height: 1.1;
  color: #ffffff;
  font-size: 46px;
  word-break: break-all;
  text-transform: none;
}
@media (max-width: 640px) {
  .newsArea .titleBox .titleEn {
    word-break: normal;
  }
}
@media (max-width: 1440px) {
  .newsArea .titleBox {
    width: 100%;
    display: block;
    text-align: center;
  }
}
.newsArea .infoBox {
  margin-top: 10px;
  font-size: 20px;
  color: #ffffff;
  font-weight: 400;
}
.newsArea .more {
  margin-top: 70px;
  background: transparent;
  border: 1px solid #c9c9c9;
}
@media (max-width: 1180px) {
  .newsArea .more {
    margin-top: 35px;
  }
}
.newsArea .more .text {
  color: #ffffff;
}
.newsArea .more .arrow::after {
  background: #ffffff;
}
.newsArea .more svg {
  fill: #ffffff;
}
.newsArea .more:hover {
  background: #c9c9c9;
}
.newsArea .more:hover .text {
  color: #2b528f;
}
.newsArea .more:hover .arrow::after {
  background: #2b528f;
}
.newsArea .more:hover svg {
  fill: #2b528f;
}
.newsArea .buttonBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.newsArea .buttonBox::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 25%;
  background: #ffffff;
}
@media (max-width: 1440px) {
  .newsArea .buttonBox {
    display: none;
  }
}
.newsArea .arrowBox {
  position: relative;
  display: block;
  margin-left: -20px;
}
.newsArea .arrowBox .arrow {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.newsArea .arrowBox .arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15px;
  height: 20px;
  fill: #ffffff;
  stroke: #ffffff;
}
.newsArea .arrowBox .arrowPrev::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 20px;
  background-color: #ffffff;
}
.newsArea .arrowBox .arrowPrev:hover {
  background-color: #ffffff;
}
.newsArea .arrowBox .arrowPrev:hover svg {
  fill: #2b528f;
  stroke: #2b528f;
}
.newsArea .arrowBox .arrowNext {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  margin-left: 5px;
}
.newsArea .arrowBox .arrowNext:hover {
  background-color: #fff;
}
.newsArea .arrowBox .arrowNext:hover svg {
  fill: #2b528f;
  stroke: #2b528f;
}
.newsArea .barBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
@media (max-width: 1180px) {
  .newsArea .barBox {
    padding: 0 25px;
  }
}
@media (max-width: 640px) {
  .newsArea .barBox {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    padding-right: 0;
    width: calc(100% - 92px);
  }
}
.newsArea .barBox .slidePage {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  font-family: Poppins;
  color: #ffffff;
}
.newsArea .barBox .slidePage.total {
  position: relative;
  margin-left: 20px;
}
.newsArea .barBox .slidePage.total::after {
  content: "/";
  position: absolute;
  left: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
}
.newsArea .newsBox {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  max-width: 765px;
  margin-left: auto;
}
@media (max-width: 1440px) {
  .newsArea .newsBox {
    margin: 0 auto;
    width: 100%;
  }
}
.newsArea .newsBox.hide {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.newsArea .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  border-radius: 15px;
}
.newsArea .item:hover {
  background: #1f3c68;
}
@media (max-width: 480px) {
  .newsArea .item {
    padding: 15px 0;
  }
}
.newsArea .Img {
  display: inline-block;
}
.newsArea .Img a {
  display: block;
  max-width: 200px;
  border-radius: 5%;
  overflow: hidden;
}
@media (max-width: 360px) {
  .newsArea .Img a {
    max-width: 150px;
  }
}
.newsArea .Img img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.newsArea .Txt {
  position: relative;
  display: inline-block;
  margin-left: 30px;
}
@media (max-width: 960px) {
  .newsArea .Txt {
    width: 75%;
  }
}
@media (max-width: 480px) {
  .newsArea .Txt {
    margin-left: 15px;
  }
}
.newsArea .Txt .classTitle {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  padding: 2px 15px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-right: 10px;
}
@media (max-width: 420px) {
  .newsArea .Txt .classTitle {
    margin-right: 5px;
    padding: 2px 8px;
  }
}
.newsArea .Txt .date {
  display: inline-block;
  font-family: Poppins;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 420px) {
  .newsArea .Txt .date {
    font-size: 13px;
  }
}
@media (max-width: 360px) {
  .newsArea .Txt .date {
    font-size: 12px;
  }
}
.newsArea .Txt .title {
  max-width: 495px;
  margin-top: 20px;
}
@media (max-width: 960px) {
  .newsArea .Txt .title {
    height: 70px;
  }
}
@media (max-width: 420px) {
  .newsArea .Txt .title {
    max-height: 60px;
  }
}
@media (max-width: 360px) {
  .newsArea .Txt .title {
    max-height: 45px;
    margin-top: 10px;
  }
}
.newsArea .Txt .title a {
  position: relative;
  display: inline;
  padding-bottom: 8px;
  margin-bottom: 12px;
  font-family: Poppins;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #ffffff;
}
.newsArea .Txt .title a::after {
  content: "";
  display: inline;
  height: 1px;
  width: 100%;
  background: #ffffff;
}
@media (max-width: 480px) {
  .newsArea .Txt .title a {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  .newsArea .Txt .title a {
    font-size: 16px;
  }
}
.newsArea .slick-dots {
  height: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.newsArea .slick-dots li {
  height: 100%;
  width: 8px;
  margin: 0 10px;
}
.newsArea .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.newsArea .slick-dots li button::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: transparent;
  opacity: 1;
}
.newsArea .slick-dots li.slick-active button::before {
  border: 1px solid #fff;
  background-color: #fff;
  opacity: 1;
}