.popWin .close::before, .popWin .close::after, .popWin .close {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

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

.mainArea {
  padding: 0;
}

.bannerArea.show .bannerItem .Txt .decoTitle span {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.bannerArea.show .bannerItem .Txt .title,
.bannerArea.show .bannerItem .Txt .subtitle,
.bannerArea.show .bannerItem .Txt .btnBox {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.bannerArea.show .bannerItem .ImgBox .dashLine svg #pathMask path {
  -webkit-animation: dashAnime 10s ease-out 0.1s infinite;
          animation: dashAnime 10s ease-out 0.1s infinite;
}
.bannerArea.show .bannerItem .ImgBox .dashLine .airplane {
  -webkit-animation: airplane 10s ease-out 0s infinite;
          animation: airplane 10s ease-out 0s infinite;
}
.bannerArea.show .bannerItem .ImgBox .dots_1,
.bannerArea.show .bannerItem .ImgBox .dots_half {
  opacity: 1;
}
.bannerArea.show .bannerItem .ImgBox .dots_3 {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.bannerArea.show .bannerItem .ImgBox .btnBox {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.bannerArea.show .bannerItem .Img {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.bannerArea .bannerItem {
  max-width: 1400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0 auto;
  padding: 10% 0 0;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem {
    -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;
  }
}
.bannerArea .bannerItem .Txt {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 80px 0 0;
}
@media (max-width: 1460px) {
  .bannerArea .bannerItem .Txt {
    padding-left: 50px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt {
    padding: 80px 0 120px;
  }
}
@media (max-width: 670px) {
  .bannerArea .bannerItem .Txt {
    padding: 120px 0 0;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt {
    padding: 120px 20px 0;
  }
}
.bannerArea .bannerItem .Txt .decoTitle {
  color: #447ec0;
  font-size: 25px;
  font-weight: 700;
  line-height: calc(30 / 25);
  letter-spacing: calc(25 * 35 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1460px) {
  .bannerArea .bannerItem .Txt .decoTitle {
    font-size: 18px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .decoTitle {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 670px) {
  .bannerArea .bannerItem .Txt .decoTitle {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .decoTitle {
    font-size: 14px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 10px;
  }
}
.bannerArea .bannerItem .Txt .decoTitle span {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  margin: 0 2px 0 0;
  padding: 0;
}
.bannerArea .bannerItem .Txt .decoTitle span:last-child {
  margin: 0;
}
.bannerArea .bannerItem .Txt .decoTitle span.space {
  padding: 0 3px;
}
.bannerArea .bannerItem .Txt .title {
  max-width: 650px;
  color: #000000;
  font-size: 90px;
  font-weight: 800;
  line-height: calc(95 / 90);
  letter-spacing: calc(90 * 90 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  margin: 0 0 30px;
  padding: 0;
}
@media (max-width: 1460px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 70px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .title {
    text-align: center;
  }
}
@media (max-width: 670px) {
  .bannerArea .bannerItem .Txt .title {
    max-width: 550px;
    font-size: 56px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 36px;
    text-align: left;
  }
}
.bannerArea .bannerItem .Txt .title em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(60deg, #9bb2ed 0%, #7ab3e0 50%, #92d8f5 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.bannerArea .bannerItem .Txt .subtitle {
  max-width: 550px;
  color: #555555;
  font-size: 20px;
  font-weight: 400;
  line-height: calc(32 / 20);
  letter-spacing: calc(20 * 10 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
@media (max-width: 1460px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 16px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .subtitle {
    text-align: center;
    margin: 0 auto;
  }
}
@media (max-width: 670px) {
  .bannerArea .bannerItem .Txt .subtitle {
    max-width: 450px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .subtitle {
    color: #000000;
    text-align: left;
  }
}
.bannerArea .bannerItem .Txt .btnBox {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  margin: 60px 0 0;
  padding: 0;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .btnBox {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .btnBox {
    text-align: left;
    margin-top: 30px;
  }
}
.bannerArea .bannerItem .Txt .scrollDown {
  cursor: pointer;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: absolute;
  top: unset;
  left: 0;
  right: unset;
  bottom: 40px;
  z-index: 1;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .scrollDown {
    display: none;
  }
}
.bannerArea .bannerItem .Txt .scrollDown .icon {
  width: 14px;
  height: 18px;
  border-radius: 30px;
  overflow: hidden;
  border-style: solid;
  border-color: #1f1f1f;
  border-width: 1px;
  position: relative;
  z-index: 1;
  margin: 0 10px 0 0;
  padding: 0;
}
.bannerArea .bannerItem .Txt .scrollDown .icon i {
  display: block;
  width: 2px;
  height: 5px;
  background: #1f1f1f;
  -webkit-animation: scrollAnime 2s linear 0s infinite;
          animation: scrollAnime 2s linear 0s infinite;
  position: absolute;
  left: 50%;
  top: 2px;
  bottom: unset;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 1;
}
.bannerArea .bannerItem .Txt .scrollDown .text {
  color: #353535;
  font-size: 15px;
  font-weight: 500;
  line-height: calc(15 / 15);
  letter-spacing: calc(15 * 15 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
}
.bannerArea .bannerItem .ImgBox {
  -webkit-perspective: 1000px;
          perspective: 1000px;
  position: relative;
  z-index: 1;
}
.bannerArea .bannerItem .ImgBox::before {
  content: "";
  position: absolute;
  width: 180%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: unset;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 1;
}
@media (max-width: 670px) {
  .bannerArea .bannerItem .ImgBox {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .ImgBox {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    margin-top: -50px;
  }
}
@media (min-width: 1201px) {
  .bannerArea .bannerItem .ImgBox:hover {
    cursor: none;
  }
  .bannerArea .bannerItem .ImgBox:hover .cursor {
    opacity: 1;
  }
  .bannerArea .bannerItem .ImgBox:hover .cursor::before {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.bannerArea .bannerItem .ImgBox .base {
  width: 800px;
  height: 500px;
  background: linear-gradient(30deg, #a3e5fd 0%, #9c9ee8 100%);
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  top: 45%;
  left: 40%;
}
@media (max-width: 1480px) {
  .bannerArea .bannerItem .ImgBox .base {
    width: 600px;
    height: 400px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .ImgBox .base {
    width: 800px;
    height: 500px;
    -webkit-transform: translate(-50%, -50%) rotateY(-30deg);
            transform: translate(-50%, -50%) rotateY(-30deg);
  }
}
@media (max-width: 940px) {
  .bannerArea .bannerItem .ImgBox .base {
    width: 500px;
    height: 320px;
    -webkit-transform: translate(-50%, -50%) rotateY(-45deg) !important;
            transform: translate(-50%, -50%) rotateY(-45deg) !important;
  }
}
.bannerArea .bannerItem .ImgBox .dots_1 {
  width: 90px;
  height: 90px;
  background: linear-gradient(30deg, #a1c4fd 0%, #c2e9fb 100%);
  border-radius: 50%;
  opacity: 0;
  position: absolute;
  top: -50px;
  left: 0;
  right: unset;
  bottom: unset;
  z-index: 1;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.bannerArea .bannerItem .ImgBox .dots_1 i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-style: solid;
  border-color: #447ec0;
  border-width: 2px;
}
.bannerArea .bannerItem .ImgBox .dots_2 {
  width: 54px;
  height: 54px;
  background: #accbfe;
  border-radius: 50%;
  -webkit-animation: dotsLoop_1 2s ease-in-out 0s infinite alternate;
          animation: dotsLoop_1 2s ease-in-out 0s infinite alternate;
  position: absolute;
  top: unset;
  left: -200px;
  right: unset;
  bottom: 300px;
  z-index: 3;
}
@media (max-width: 1480px) {
  .bannerArea .bannerItem .ImgBox .dots_2 {
    display: none;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .ImgBox .dots_2 {
    display: block;
  }
}
.bannerArea .bannerItem .ImgBox .dots_3 {
  width: 106px;
  height: 105px;
  background: url("../images/bannerImg_1.png") no-repeat center;
  background-size: contain;
  position: absolute;
  top: unset;
  left: unset;
  right: -150px;
  bottom: 50px;
  z-index: 3;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.bannerArea .bannerItem .ImgBox .dots_half {
  width: 135px;
  height: 135px;
  opacity: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  position: absolute;
  top: 150px;
  left: unset;
  right: -150px;
  bottom: unset;
  z-index: 3;
}
.bannerArea .bannerItem .ImgBox .dots_half::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #feade4;
  -webkit-clip-path: circle(50% at top);
          clip-path: circle(50% at top);
  top: 0;
  left: 0;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-animation: dotsLoop_2 5s ease-in-out 0s infinite;
          animation: dotsLoop_2 5s ease-in-out 0s infinite;
}
.bannerArea .bannerItem .ImgBox .dots_half::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #feade4;
  -webkit-clip-path: circle(50% at top);
          clip-path: circle(50% at top);
  top: 0;
  left: 0;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-animation: dotsLoop_2 4s ease-in-out 0.5s infinite;
          animation: dotsLoop_2 4s ease-in-out 0.5s infinite;
}
@media (max-width: 1560px) {
  .bannerArea .bannerItem .ImgBox .dots_half {
    display: none;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .ImgBox .dots_half {
    display: block;
  }
}
.bannerArea .bannerItem .ImgBox .dashLine {
  width: 1059px;
  height: 661px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  left: 36%;
}
@media (max-width: 940px) {
  .bannerArea .bannerItem .ImgBox .dashLine {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
            transform: translate(-50%, -50%) scale(0.7);
  }
}
.bannerArea .bannerItem .ImgBox .dashLine svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: unset;
  bottom: unset;
  z-index: 1;
}
.bannerArea .bannerItem .ImgBox .dashLine svg #pathMask path {
  stroke-dasharray: 2350;
  stroke-dashoffset: 2350;
  opacity: 0;
}
.bannerArea .bannerItem .ImgBox .dashLine svg .cls-1 {
  fill: none;
  stroke: #0079bf;
  stroke-width: 1.5px;
  stroke-dasharray: 6px;
}
.bannerArea .bannerItem .ImgBox .dashLine .airplane {
  display: block;
  width: 53px;
  height: 49px;
  background: url("../images/airplane.png") no-repeat center;
  background-size: contain;
  offset-path: path("M181.88.75c119.13,11.49,131.75,40.74,217.36,111.76,85.61,71.02,281.14-36.88,364.04-31.98,82.91,4.9,310.59,18.43,294.65,278.73-8.85,144.62-128.42,200.84-281.08,190.02-152.66-10.82-204.39,51.46-257.93,96.24-53.54,44.78-142.11-19.17-181.06-64.72C195.29,414.11.16,455.97.16,455.97");
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: rotate(192deg);
          transform: rotate(192deg);
  opacity: 0;
  position: absolute;
  top: -4px;
  left: -4px;
  right: unset;
  bottom: unset;
  z-index: 1;
}
.bannerArea .bannerItem .ImgBox .btnBox {
  width: 1059px;
  height: 661px;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  -webkit-transform: translate(-50%, -48%);
          transform: translate(-50%, -48%);
}
@media (max-width: 1460px) {
  .bannerArea .bannerItem .ImgBox .btnBox {
    left: 80%;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .ImgBox .btnBox {
    display: none;
  }
}
.bannerArea .bannerItem .ImgBox .btnBox ul li {
  pointer-events: auto;
  position: absolute;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  z-index: 1;
}
.bannerArea .bannerItem .ImgBox .btnBox ul li:nth-of-type(1) {
  top: 140px;
  left: 100px;
}
.bannerArea .bannerItem .ImgBox .btnBox ul li:nth-of-type(2) {
  top: 250px;
  right: 50px;
}
@media (max-width: 1780px) {
  .bannerArea .bannerItem .ImgBox .btnBox ul li:nth-of-type(2) {
    right: unset;
    top: 300px;
    left: 150px;
  }
}
.bannerArea .bannerItem .ImgBox .btnBox ul li:nth-of-type(3) {
  left: 50px;
  bottom: 100px;
}
@media (min-width: 1201px) {
  .bannerArea .bannerItem .ImgBox .btnBox ul li:hover .textContainer {
    opacity: 1;
    -webkit-animation: containerJump 0.45s linear 0s;
            animation: containerJump 0.45s linear 0s;
  }
  .bannerArea .bannerItem .ImgBox .btnBox ul li:hover .textContainer::before {
    -webkit-animation: containerDotsJump_1 0.65s linear 0.25s forwards;
            animation: containerDotsJump_1 0.65s linear 0.25s forwards;
  }
  .bannerArea .bannerItem .ImgBox .btnBox ul li:hover .textContainer::after {
    -webkit-animation: containerDotsJump_2 0.5s linear 0.35s forwards;
            animation: containerDotsJump_2 0.5s linear 0.35s forwards;
  }
  .bannerArea .bannerItem .ImgBox .btnBox ul li:hover .textContainer p {
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 1px;
    -webkit-transition: font-size 0.35s 0s, color 0.35s 0.35s;
    transition: font-size 0.35s 0s, color 0.35s 0.35s;
  }
  .bannerArea .bannerItem .ImgBox .btnBox ul li:hover .textContainer p span {
    -webkit-animation: textAnime 1s ease infinite;
            animation: textAnime 1s ease infinite;
  }
}
.bannerArea .bannerItem .ImgBox .btnBox ul li a {
  display: block;
  background: #ffffff;
  border-radius: 50px;
  -webkit-box-shadow: 0 8px 15px 0 rgba(68, 126, 192, 0.3);
          box-shadow: 0 8px 15px 0 rgba(68, 126, 192, 0.3);
  cursor: none;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 30px 40px 30px 100px;
}
.bannerArea .bannerItem .ImgBox .btnBox ul li a .text {
  color: #447ec0;
  font-size: 21px;
  font-weight: 700;
  line-height: calc(21 / 21);
  letter-spacing: calc(21 * 21 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
}
.bannerArea .bannerItem .ImgBox .btnBox ul li a .icon {
  display: block;
  position: absolute;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  z-index: 1;
}
.bannerArea .bannerItem .ImgBox .btnBox ul li a .icon.work {
  width: 89px;
  height: 85px;
  background: url("../images/banner_linkIC_1.png") no-repeat center;
  background-size: contain;
  top: -5px;
  left: -5px;
}
.bannerArea .bannerItem .ImgBox .btnBox ul li a .icon.teachers {
  width: 82px;
  height: 97px;
  background: url("../images/banner_linkIC_2.png") no-repeat center;
  background-size: contain;
  top: -3px;
  left: 10px;
}
.bannerArea .bannerItem .ImgBox .btnBox ul li a .icon.training {
  width: 68px;
  height: 73px;
  background: url("../images/banner_linkIC_3.png") no-repeat center;
  background-size: contain;
  top: 7px;
  left: 10px;
}
.bannerArea .bannerItem .ImgBox .btnBox ul li .textContainer {
  width: auto;
  height: auto;
  background: #fbb825;
  border-radius: 30px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  pointer-events: none;
  opacity: 0;
  position: absolute;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  z-index: 2;
  margin: 0;
  padding: 20px;
}
.bannerArea .bannerItem .ImgBox .btnBox ul li .textContainer::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fbb825;
  top: 10px;
  left: 10px;
}
.bannerArea .bannerItem .ImgBox .btnBox ul li .textContainer::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #fbb825 transparent transparent;
  bottom: 5px;
  right: 5px;
}
.bannerArea .bannerItem .ImgBox .btnBox ul li .textContainer p {
  white-space: nowrap;
  color: transparent;
  font-size: 0px;
  font-weight: 700;
  line-height: calc(0 / 0);
  letter-spacing: calc(0 * 5 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.bannerArea .bannerItem .ImgBox .btnBox ul li .textContainer p span {
  display: inline-block;
}
.bannerArea .bannerItem .ImgBox .btnBox ul li .textContainer p span.space {
  padding: 0 2px;
}
.bannerArea .bannerItem .ImgBox .cursor {
  display: block;
  width: 28px;
  height: 28px;
  position: absolute;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  z-index: 99;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}
.bannerArea .bannerItem .ImgBox .cursor.current {
  -webkit-animation: cursorAnime 1s linear 0s infinite;
          animation: cursorAnime 1s linear 0s infinite;
}
.bannerArea .bannerItem .ImgBox .cursor::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/cursor.png") no-repeat center;
  background-size: contain;
  top: 0;
  left: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.bannerArea .bannerItem .Img {
  width: 530px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
@media (max-width: 1480px) {
  .bannerArea .bannerItem .Img {
    width: 450px;
  }
}
@media (max-width: 940px) {
  .bannerArea .bannerItem .Img {
    width: 300px;
  }
}
.bannerArea .bannerItem .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.bannerArea .bg {
  background: url("../images/banner_BG.png") no-repeat top center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -999;
  pointer-events: none;
}
.bannerArea .bg .ball_1 {
  display: block;
  width: 42px;
  height: 42px;
  background: #a3bdf8;
  border-radius: 50%;
  -webkit-animation: dotsLoop_1 2s ease-in-out 0.5s infinite alternate;
          animation: dotsLoop_1 2s ease-in-out 0.5s infinite alternate;
  position: absolute;
  top: 280px;
  left: -10px;
  right: unset;
  bottom: unset;
  z-index: 1;
}
.bannerArea .bg .ball_2 {
  display: block;
  width: 20px;
  height: 20px;
  background: #f88fa8;
  border-radius: 50%;
  -webkit-animation: dotsLoop_1 3s ease-in-out 0.25s infinite alternate;
          animation: dotsLoop_1 3s ease-in-out 0.25s infinite alternate;
  position: absolute;
  top: unset;
  left: 115px;
  right: unset;
  bottom: 280px;
  z-index: 1;
}

.aboutArea.show .wrap .leftSide .ImgBox i::before {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.aboutArea.show .wrap .leftSide .ImgBox .Img img {
  -webkit-animation: TaiwanFadeIn 0.8s linear 0.6s forwards;
          animation: TaiwanFadeIn 0.8s linear 0.6s forwards;
}
.aboutArea.show .wrap .leftSide .floatNumBox {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.aboutArea.show .wrap .Txt .titleBox .subtitle,
.aboutArea.show .wrap .Txt .titleBox .title {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.aboutArea.show .wrap .Txt .textEditor,
.aboutArea.show .wrap .Txt .numBox,
.aboutArea.show .wrap .Txt .btnBox {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.aboutArea .wrap {
  background: #ebf5fb;
  border-radius: 90px 90px 0 0;
  max-width: calc(100% - 80px);
  padding: 0;
}
@media (max-width: 670px) {
  .aboutArea .wrap {
    max-width: 100%;
  }
}
.aboutArea .wrap .aboutBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1340px) {
  .aboutArea .wrap .aboutBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.aboutArea .wrap .leftSide {
  width: auto;
  background: url("../images/home_about_BG.png") no-repeat top center;
  background-size: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 215px 190px 215px 250px;
}
@media (max-width: 1760px) {
  .aboutArea .wrap .leftSide {
    background-size: 100%;
    padding-left: 100px;
  }
}
@media (max-width: 1540px) {
  .aboutArea .wrap .leftSide {
    padding-right: 150px;
  }
}
@media (max-width: 1340px) {
  .aboutArea .wrap .leftSide {
    padding: 200px 40px;
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media (max-width: 480px) {
  .aboutArea .wrap .leftSide {
    overflow: hidden;
    padding-bottom: 150px;
  }
}
.aboutArea .wrap .leftSide .ImgBox {
  position: relative;
  z-index: 1;
}
.aboutArea .wrap .leftSide .ImgBox i {
  display: block;
  width: 85px;
  height: 85px;
  position: absolute;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  z-index: 1;
}
.aboutArea .wrap .leftSide .ImgBox i::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
@media (max-width: 1340px) {
  .aboutArea .wrap .leftSide .ImgBox i {
    display: none;
  }
}
.aboutArea .wrap .leftSide .ImgBox i.pic_1 {
  top: -120px;
  left: 300px;
}
.aboutArea .wrap .leftSide .ImgBox i.pic_1::before {
  background: url("../images/home_about_smallPic_1.png") no-repeat center;
  background-size: contain;
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}
.aboutArea .wrap .leftSide .ImgBox i.pic_2 {
  top: 220px;
  left: 30px;
}
.aboutArea .wrap .leftSide .ImgBox i.pic_2::before {
  background: url("../images/home_about_smallPic_2.png") no-repeat center;
  background-size: contain;
  -webkit-transition-delay: 1.45s;
          transition-delay: 1.45s;
}
.aboutArea .wrap .leftSide .ImgBox i.pic_3 {
  bottom: 20px;
  right: 25px;
}
.aboutArea .wrap .leftSide .ImgBox i.pic_3::before {
  background: url("../images/home_about_smallPic_3.png") no-repeat center;
  background-size: contain;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.aboutArea .wrap .leftSide .Img {
  width: 550px;
  position: relative;
  z-index: 1;
}
.aboutArea .wrap .leftSide .Img::before {
  content: "";
  position: absolute;
  width: 417px;
  height: 739px;
  background: url("../images/home_aboutImg_1.png") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 1540px) {
  .aboutArea .wrap .leftSide .Img::before {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
            transform: translate(-50%, -50%) scale(0.7);
  }
}
@media (max-width: 1340px) {
  .aboutArea .wrap .leftSide .Img::before {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
@media (max-width: 768px) {
  .aboutArea .wrap .leftSide .Img::before {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
            transform: translate(-50%, -50%) scale(0.7);
  }
}
@media (max-width: 480px) {
  .aboutArea .wrap .leftSide .Img::before {
    -webkit-transform: translate(-50%, -50%) scale(0.5);
            transform: translate(-50%, -50%) scale(0.5);
  }
}
@media (max-width: 1540px) {
  .aboutArea .wrap .leftSide .Img {
    width: 400px;
  }
}
@media (max-width: 1340px) {
  .aboutArea .wrap .leftSide .Img {
    width: 550px;
  }
}
@media (max-width: 768px) {
  .aboutArea .wrap .leftSide .Img {
    width: 400px;
  }
}
@media (max-width: 480px) {
  .aboutArea .wrap .leftSide .Img {
    width: 300px;
  }
}
.aboutArea .wrap .leftSide .Img img {
  opacity: 0;
  -webkit-transform-origin: top;
          transform-origin: top;
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.aboutArea .wrap .leftSide .floatNumBox {
  background: #ffffff;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  border-style: solid;
  border-color: #447ec0;
  border-width: 8px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: absolute;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
@media (max-width: 1540px) {
  .aboutArea .wrap .leftSide .floatNumBox {
    border-width: 4px;
  }
}
.aboutArea .wrap .leftSide .floatNumBox:nth-of-type(2) {
  width: 265px;
  height: 265px;
  top: 100px;
  left: 250px;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
@media (max-width: 1760px) {
  .aboutArea .wrap .leftSide .floatNumBox:nth-of-type(2) {
    left: 100px;
  }
}
@media (max-width: 1540px) {
  .aboutArea .wrap .leftSide .floatNumBox:nth-of-type(2) {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 1340px) {
  .aboutArea .wrap .leftSide .floatNumBox:nth-of-type(2) {
    left: 30%;
  }
}
@media (max-width: 768px) {
  .aboutArea .wrap .leftSide .floatNumBox:nth-of-type(2) {
    left: 15%;
  }
}
@media (max-width: 600px) {
  .aboutArea .wrap .leftSide .floatNumBox:nth-of-type(2) {
    width: 150px;
    height: 150px;
    top: 150px;
  }
}
@media (max-width: 480px) {
  .aboutArea .wrap .leftSide .floatNumBox:nth-of-type(2) {
    width: 120px;
    height: 120px;
  }
}
.aboutArea .wrap .leftSide .floatNumBox:nth-of-type(2) .circle_1 {
  width: 112.5%;
  height: 112.5%;
}
.aboutArea .wrap .leftSide .floatNumBox:nth-of-type(2) .circle_1 circle {
  -webkit-animation: floatNumCircleAnime_1 20s ease-in-out 0s infinite alternate;
          animation: floatNumCircleAnime_1 20s ease-in-out 0s infinite alternate;
}
.aboutArea .wrap .leftSide .floatNumBox:nth-of-type(2) .circle_2 {
  width: 120%;
  height: 120%;
  -webkit-animation: circleLoop_1 20s ease-in-out 0s infinite;
          animation: circleLoop_1 20s ease-in-out 0s infinite;
}
.aboutArea .wrap .leftSide .floatNumBox:nth-of-type(2) .circle_2 circle {
  -webkit-animation: floatNumCircleAnime_2 10s linear 0s infinite alternate;
          animation: floatNumCircleAnime_2 10s linear 0s infinite alternate;
}
.aboutArea .wrap .leftSide .floatNumBox:nth-of-type(3) {
  width: 220px;
  height: 220px;
  right: 40px;
  bottom: 350px;
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}
@media (max-width: 1760px) {
  .aboutArea .wrap .leftSide .floatNumBox:nth-of-type(3) {
    right: 150px;
  }
}
@media (max-width: 1540px) {
  .aboutArea .wrap .leftSide .floatNumBox:nth-of-type(3) {
    width: 180px;
    height: 180px;
    right: 80px;
  }
}
@media (max-width: 1340px) {
  .aboutArea .wrap .leftSide .floatNumBox:nth-of-type(3) {
    right: 25%;
    bottom: 400px;
  }
}
@media (max-width: 1060px) {
  .aboutArea .wrap .leftSide .floatNumBox:nth-of-type(3) {
    right: 20%;
  }
}
@media (max-width: 768px) {
  .aboutArea .wrap .leftSide .floatNumBox:nth-of-type(3) {
    right: 10%;
    bottom: 300px;
  }
}
@media (max-width: 600px) {
  .aboutArea .wrap .leftSide .floatNumBox:nth-of-type(3) {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 480px) {
  .aboutArea .wrap .leftSide .floatNumBox:nth-of-type(3) {
    width: 110px;
    height: 110px;
  }
}
.aboutArea .wrap .leftSide .floatNumBox:nth-of-type(3) .circle_1 {
  width: 115%;
  height: 115%;
  animation: circleLoop_1 20s ease-in-out 0s infinite reverse;
}
.aboutArea .wrap .leftSide .floatNumBox:nth-of-type(3) .circle_1 circle {
  -webkit-animation: floatNumCircleAnime_2 10s ease-in-out 0s infinite alternate;
          animation: floatNumCircleAnime_2 10s ease-in-out 0s infinite alternate;
}
.aboutArea .wrap .leftSide .floatNumBox:nth-of-type(3) .circle_2 {
  width: 125%;
  height: 125%;
  -webkit-animation: circleLoop_1 40s ease-in-out 0s infinite;
          animation: circleLoop_1 40s ease-in-out 0s infinite;
}
.aboutArea .wrap .leftSide .floatNumBox:nth-of-type(3) .circle_2 circle {
  -webkit-animation: floatNumCircleAnime_2 30s linear 0s infinite alternate;
          animation: floatNumCircleAnime_2 30s linear 0s infinite alternate;
}
.aboutArea .wrap .leftSide .floatNumBox:nth-of-type(4) {
  width: 200px;
  height: 200px;
  left: 250px;
  bottom: 200px;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
@media (max-width: 1760px) {
  .aboutArea .wrap .leftSide .floatNumBox:nth-of-type(4) {
    left: 150px;
  }
}
@media (max-width: 1540px) {
  .aboutArea .wrap .leftSide .floatNumBox:nth-of-type(4) {
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 1340px) {
  .aboutArea .wrap .leftSide .floatNumBox:nth-of-type(4) {
    left: 35%;
  }
}
@media (max-width: 1060px) {
  .aboutArea .wrap .leftSide .floatNumBox:nth-of-type(4) {
    left: 30%;
  }
}
@media (max-width: 768px) {
  .aboutArea .wrap .leftSide .floatNumBox:nth-of-type(4) {
    left: 15%;
  }
}
@media (max-width: 600px) {
  .aboutArea .wrap .leftSide .floatNumBox:nth-of-type(4) {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 480px) {
  .aboutArea .wrap .leftSide .floatNumBox:nth-of-type(4) {
    width: 100px;
    height: 100px;
  }
}
.aboutArea .wrap .leftSide .floatNumBox:nth-of-type(4) .circle_1 {
  width: 115%;
  height: 115%;
  animation: circleLoop_1 30s linear 0s infinite reverse;
}
.aboutArea .wrap .leftSide .floatNumBox:nth-of-type(4) .circle_1 circle {
  -webkit-animation: floatNumCircleAnime_1 20s ease-in-out 0s infinite alternate;
          animation: floatNumCircleAnime_1 20s ease-in-out 0s infinite alternate;
}
.aboutArea .wrap .leftSide .floatNumBox:nth-of-type(4) .circle_2 {
  width: 125%;
  height: 125%;
}
.aboutArea .wrap .leftSide .floatNumBox:nth-of-type(4) .circle_2 circle {
  -webkit-animation: floatNumCircleAnime_1 10s ease-in-out 0s infinite alternate;
          animation: floatNumCircleAnime_1 10s ease-in-out 0s infinite alternate;
}
.aboutArea .wrap .leftSide .floatNumBox .innerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  z-index: 1;
}
.aboutArea .wrap .leftSide .floatNumBox .innerBox .num {
  color: #447ec0;
  font-size: 75px;
  font-weight: 800;
  line-height: calc(75 / 75);
  letter-spacing: calc(75 * 0 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
}
@media (max-width: 1540px) {
  .aboutArea .wrap .leftSide .floatNumBox .innerBox .num {
    font-size: 50px;
  }
}
@media (max-width: 600px) {
  .aboutArea .wrap .leftSide .floatNumBox .innerBox .num {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .aboutArea .wrap .leftSide .floatNumBox .innerBox .num {
    font-size: 24px;
  }
}
.aboutArea .wrap .leftSide .floatNumBox .innerBox .unit {
  color: #447ec0;
  font-size: 25px;
  font-weight: 700;
  line-height: calc(25 / 25);
  letter-spacing: calc(25 * 5 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  position: absolute;
  top: 10px;
  left: unset;
  right: -25px;
  bottom: unset;
  z-index: 1;
}
@media (max-width: 600px) {
  .aboutArea .wrap .leftSide .floatNumBox .innerBox .unit {
    font-size: 16px;
    top: 5px;
    right: -15px;
  }
}
@media (max-width: 480px) {
  .aboutArea .wrap .leftSide .floatNumBox .innerBox .unit {
    font-size: 12px;
    top: 2px;
    right: -12px;
  }
}
.aboutArea .wrap .leftSide .floatNumBox .innerBox .unit.plus {
  font-size: 55px;
  font-weight: 500;
  right: -35px;
  top: -5px;
}
@media (max-width: 1540px) {
  .aboutArea .wrap .leftSide .floatNumBox .innerBox .unit.plus {
    font-size: 40px;
    right: -25px;
  }
}
@media (max-width: 600px) {
  .aboutArea .wrap .leftSide .floatNumBox .innerBox .unit.plus {
    font-size: 32px;
    right: -20px;
  }
}
@media (max-width: 480px) {
  .aboutArea .wrap .leftSide .floatNumBox .innerBox .unit.plus {
    font-size: 24px;
    right: -15px;
  }
}
.aboutArea .wrap .leftSide .floatNumBox .numTitle {
  max-width: 140px;
  color: #353535;
  font-size: 22px;
  font-weight: 700;
  line-height: calc(22 / 22);
  letter-spacing: calc(22 * 5 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: center;
}
@media (max-width: 1540px) {
  .aboutArea .wrap .leftSide .floatNumBox .numTitle {
    max-width: 100px;
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .aboutArea .wrap .leftSide .floatNumBox .numTitle {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .aboutArea .wrap .leftSide .floatNumBox .numTitle {
    max-width: 80px;
    font-size: 12px;
  }
}
.aboutArea .wrap .leftSide .floatNumBox svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.aboutArea .wrap .leftSide .floatNumBox svg circle {
  stroke: #447ec0;
}
.aboutArea .wrap .leftSide .floatNumBox .rippleBox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.aboutArea .wrap .leftSide .floatNumBox .rippleBox .ripple {
  display: block;
  width: 130%;
  height: 130%;
  border-radius: 50%;
  -webkit-animation: ripple 5s linear 0s infinite;
          animation: ripple 5s linear 0s infinite;
  opacity: 0;
  border-style: solid;
  border-color: #447ec0;
  border-width: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.aboutArea .wrap .leftSide .floatNumBox .rippleBox .ripple:nth-of-type(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.aboutArea .wrap .leftSide .floatNumBox .rippleBox .ripple:nth-of-type(3) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.aboutArea .wrap .Txt {
  margin: 0;
  padding: 150px 0 0 110px;
}
@media (max-width: 1760px) {
  .aboutArea .wrap .Txt {
    padding-left: 20px;
  }
}
@media (max-width: 1340px) {
  .aboutArea .wrap .Txt {
    padding: 60px 40px 80px;
  }
}
@media (max-width: 670px) {
  .aboutArea .wrap .Txt {
    padding: 80px 30px 50px;
  }
}
.aboutArea .wrap .Txt .titleBox .subtitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.aboutArea .wrap .Txt .titleBox .title {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 1.15s;
          transition-delay: 1.15s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.aboutArea .wrap .Txt .textEditor {
  max-width: 540px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  margin: 30px 0 0;
  padding: 0;
}
@media (max-width: 1340px) {
  .aboutArea .wrap .Txt .textEditor {
    max-width: 100%;
  }
}
.aboutArea .wrap .Txt .numBox {
  max-width: 540px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 1.45s;
          transition-delay: 1.45s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 50px 0 0;
  padding: 0;
}
.aboutArea .wrap .Txt .numBox .innerBox .flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.aboutArea .wrap .Txt .numBox .innerBox .flexBox .Img {
  width: 70px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 10px 0 0;
  padding: 0;
}
@media (max-width: 670px) {
  .aboutArea .wrap .Txt .numBox .innerBox .flexBox .Img {
    width: 50px;
  }
}
.aboutArea .wrap .Txt .numBox .innerBox .flexBox .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.aboutArea .wrap .Txt .numBox .innerBox .flexBox > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.aboutArea .wrap .Txt .numBox .innerBox .flexBox > div .num {
  color: #000000;
  font-size: 70px;
  font-weight: 800;
  line-height: calc(70 / 70);
  letter-spacing: calc(70 * 0 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
}
@media (max-width: 670px) {
  .aboutArea .wrap .Txt .numBox .innerBox .flexBox > div .num {
    font-size: 50px;
  }
}
.aboutArea .wrap .Txt .numBox .innerBox .flexBox > div .unit {
  color: #447ec0;
  font-size: 35px;
  font-weight: 700;
  line-height: calc(35 / 35);
  letter-spacing: calc(35 * 5 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  margin: 0 0 5px 5px;
  padding: 0;
}
@media (max-width: 670px) {
  .aboutArea .wrap .Txt .numBox .innerBox .flexBox > div .unit {
    font-size: 24px;
  }
}
.aboutArea .wrap .Txt .numBox .innerBox .flexBox > div .unit.plus {
  font-size: 50px;
  font-weight: 500;
  margin: 0 0 0 10px;
}
@media (max-width: 670px) {
  .aboutArea .wrap .Txt .numBox .innerBox .flexBox > div .unit.plus {
    font-size: 35px;
  }
}
.aboutArea .wrap .Txt .numBox .innerBox .numTitle {
  color: #353535;
  font-size: 20px;
  font-weight: 500;
  line-height: calc(20 / 20);
  letter-spacing: calc(20 * 0 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  margin: 5px 0 0;
  padding: 0;
}
@media (max-width: 670px) {
  .aboutArea .wrap .Txt .numBox .innerBox .numTitle {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .aboutArea .wrap .Txt .numBox .innerBox .numTitle {
    font-size: 13px;
  }
}
.aboutArea .wrap .Txt .btnBox {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  margin: 50px 0 0;
  padding: 0;
}

.serviceArea {
  position: relative;
  z-index: 2;
}
.serviceArea::before {
  content: "";
  position: absolute;
  width: calc(100% - 80px);
  height: 100%;
  background: #ebf5fb;
  border-radius: 0 0 90px 90px;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: unset;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: -1;
}
@media (max-width: 670px) {
  .serviceArea::before {
    width: 100%;
  }
}
.serviceArea.show .wrap .titleSide .titleBox .subtitle,
.serviceArea.show .wrap .titleSide .titleBox .title,
.serviceArea.show .wrap .titleSide .titleBox .text {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.serviceArea.show .wrap .titleSide .btnBox {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.serviceArea.show .wrap .rightSide,
.serviceArea.show .wrap .bottomSide {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.serviceArea.show .wrap .bg {
  width: 100%;
  opacity: 1;
}
.serviceArea .wrap {
  max-width: calc(100% - 80px);
  padding: 90px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 670px) {
  .serviceArea .wrap {
    max-width: 100%;
  }
}
.serviceArea .wrap .topSide,
.serviceArea .wrap .bottomSide,
.serviceArea .wrap .rightSide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.serviceArea .wrap .topSide {
  position: relative;
  z-index: 10;
}
.serviceArea .wrap .rightSide {
  width: 100%;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  margin-right: -10px;
}
@media (max-width: 1520px) {
  .serviceArea .wrap .rightSide {
    display: none;
  }
}
.serviceArea .wrap .bottomSide {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  margin: 20px -10px 0;
}
.serviceArea .wrap .bottomSide .ImgBox {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  margin: 0 10px;
  padding: 0;
}
@media (max-width: 1520px) {
  .serviceArea .wrap .bottomSide .ImgBox {
    display: none;
  }
}
.serviceArea .wrap .bottomSide .ImgBox.change {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  opacity: 0;
}
.serviceArea .wrap .bottomSide .ImgBox .Img {
  width: 310px;
  border-radius: 130px 0 130px 0;
  overflow: hidden;
}
.serviceArea .wrap .bottomSide .ImgBox .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.serviceArea .wrap .titleSide {
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1520px) {
  .serviceArea .wrap .titleSide {
    width: 100%;
  }
}
@media (max-width: 670px) {
  .serviceArea .wrap .titleSide .titleBox {
    width: calc(100% - 80px);
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .serviceArea .wrap .titleSide .titleBox {
    width: 100%;
  }
}
.serviceArea .wrap .titleSide .titleBox .subtitle,
.serviceArea .wrap .titleSide .titleBox .title {
  color: #ffffff;
}
.serviceArea .wrap .titleSide .titleBox .subtitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.serviceArea .wrap .titleSide .titleBox .title {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.serviceArea .wrap .titleSide .titleBox .text {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.serviceArea .wrap .titleSide .btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  margin: 50px 0 0;
  padding: 0;
}
@media (max-width: 670px) {
  .serviceArea .wrap .titleSide .btnBox {
    width: calc(100% - 80px);
    margin: 50px auto 0;
  }
}
@media (max-width: 480px) {
  .serviceArea .wrap .titleSide .btnBox {
    width: 100%;
  }
}
.serviceArea .wrap .titleSide .btnBox .btn {
  background: #87aeda;
}
.serviceArea .wrap .titleSide .arrowBox {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0;
  padding: 0 40px 0 0;
}
@media (max-width: 1520px) {
  .serviceArea .wrap .titleSide .arrowBox {
    display: none;
  }
}
.serviceArea .wrap .titleSide .arrowBox button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border-style: solid;
  border-color: #ffffff;
  border-width: 1px;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (min-width: 1201px) {
  .serviceArea .wrap .titleSide .arrowBox button:hover {
    background: #ffffff;
  }
  .serviceArea .wrap .titleSide .arrowBox button:hover i {
    background: #000000;
  }
  .serviceArea .wrap .titleSide .arrowBox button:hover i::before {
    border-color: #000000 #000000 transparent transparent;
  }
}
.serviceArea .wrap .titleSide .arrowBox button.arrowPrev {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  margin: 0 10px 0 0;
  padding: 0;
}
.serviceArea .wrap .titleSide .arrowBox button i {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.serviceArea .wrap .titleSide .arrowBox button i::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #ffffff #ffffff transparent transparent;
  position: absolute;
  top: 50%;
  left: unset;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.serviceArea .wrap .titleSide .arrowBox_rwd {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  display: none;
}
@media (max-width: 1520px) {
  .serviceArea .wrap .titleSide .arrowBox_rwd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 670px) {
  .serviceArea .wrap .titleSide .arrowBox_rwd {
    width: calc(100% + 140px);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: absolute;
    left: 50%;
    top: unset;
    bottom: -200px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    z-index: 1;
  }
}
@media (max-width: 480px) {
  .serviceArea .wrap .titleSide .arrowBox_rwd {
    width: calc(100% + 70px);
  }
}
.serviceArea .wrap .titleSide .arrowBox_rwd button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border-style: solid;
  border-color: #ffffff;
  border-width: 1px;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 480px) {
  .serviceArea .wrap .titleSide .arrowBox_rwd button {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1201px) {
  .serviceArea .wrap .titleSide .arrowBox_rwd button:hover {
    background: #ffffff;
  }
  .serviceArea .wrap .titleSide .arrowBox_rwd button:hover i {
    background: #000000;
  }
  .serviceArea .wrap .titleSide .arrowBox_rwd button:hover i::before {
    border-color: #000000 #000000 transparent transparent;
  }
}
.serviceArea .wrap .titleSide .arrowBox_rwd button.arrowPrev {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  margin: 0 10px 0 0;
  padding: 0;
}
@media (max-width: 670px) {
  .serviceArea .wrap .titleSide .arrowBox_rwd button.arrowPrev {
    margin: 0;
  }
}
.serviceArea .wrap .titleSide .arrowBox_rwd button i {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.serviceArea .wrap .titleSide .arrowBox_rwd button i::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #ffffff #ffffff transparent transparent;
  position: absolute;
  top: 50%;
  left: unset;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.serviceArea .wrap .serviceBox {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}
.serviceArea .wrap .serviceList_1,
.serviceArea .wrap .serviceList_2,
.serviceArea .wrap .serviceList_3,
.serviceArea .wrap .serviceList_4 {
  max-width: 310px;
  width: 100%;
  margin: 0 10px;
  padding: 0;
}
@media (max-width: 1520px) {
  .serviceArea .wrap .serviceList_1,
  .serviceArea .wrap .serviceList_2,
  .serviceArea .wrap .serviceList_3,
  .serviceArea .wrap .serviceList_4 {
    display: none;
  }
}
.serviceArea .wrap .serviceList_1 .slick-slide.change .item,
.serviceArea .wrap .serviceList_2 .slick-slide.change .item,
.serviceArea .wrap .serviceList_3 .slick-slide.change .item,
.serviceArea .wrap .serviceList_4 .slick-slide.change .item {
  opacity: 0;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: translate(-50px, -50px) rotate(-90deg);
          transform: translate(-50px, -50px) rotate(-90deg);
}
.serviceArea .wrap .serviceList_1 .slick-slide.show .item,
.serviceArea .wrap .serviceList_2 .slick-slide.show .item,
.serviceArea .wrap .serviceList_3 .slick-slide.show .item,
.serviceArea .wrap .serviceList_4 .slick-slide.show .item {
  opacity: 1;
  -webkit-animation: slickRotate 0.5s ease-out 0s;
          animation: slickRotate 0.5s ease-out 0s;
}
.serviceArea .wrap .serviceList_1 .serviceItem .item,
.serviceArea .wrap .serviceList_2 .serviceItem .item,
.serviceArea .wrap .serviceList_3 .serviceItem .item,
.serviceArea .wrap .serviceList_4 .serviceItem .item {
  background: #ffffff;
  border-radius: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  margin: 0;
  padding: 30px;
}
.serviceArea .wrap .serviceList_1 .serviceItem .item .title,
.serviceArea .wrap .serviceList_2 .serviceItem .item .title,
.serviceArea .wrap .serviceList_3 .serviceItem .item .title,
.serviceArea .wrap .serviceList_4 .serviceItem .item .title {
  height: 63px;
  color: #353535;
  font-size: 25px;
  font-weight: 700;
  line-height: calc(30 / 25);
  letter-spacing: calc(25 * 5 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 20px;
  padding: 0;
}
.serviceArea .wrap .serviceList_1 .serviceItem .item .Img,
.serviceArea .wrap .serviceList_2 .serviceItem .item .Img,
.serviceArea .wrap .serviceList_3 .serviceItem .item .Img,
.serviceArea .wrap .serviceList_4 .serviceItem .item .Img {
  width: 60px;
  -webkit-transform: translate(20px, -10px);
          transform: translate(20px, -10px);
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  padding: 0;
}
.serviceArea .wrap .serviceList_1 .serviceItem .item .Img::before,
.serviceArea .wrap .serviceList_2 .serviceItem .item .Img::before,
.serviceArea .wrap .serviceList_3 .serviceItem .item .Img::before,
.serviceArea .wrap .serviceList_4 .serviceItem .item .Img::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  left: -20px;
  bottom: -10px;
  z-index: -1;
}
.serviceArea .wrap .serviceList_1 .serviceItem .item .Img img,
.serviceArea .wrap .serviceList_2 .serviceItem .item .Img img,
.serviceArea .wrap .serviceList_3 .serviceItem .item .Img img,
.serviceArea .wrap .serviceList_4 .serviceItem .item .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.serviceArea .wrap .serviceList_1 .serviceItem .item .textEditor,
.serviceArea .wrap .serviceList_2 .serviceItem .item .textEditor,
.serviceArea .wrap .serviceList_3 .serviceItem .item .textEditor,
.serviceArea .wrap .serviceList_4 .serviceItem .item .textEditor {
  height: 96px;
  color: #555555;
  font-size: 16px;
  font-weight: 400;
  line-height: calc(24 / 16);
  letter-spacing: calc(16 * 5 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.serviceArea .wrap .serviceList_1 .slick-slide:nth-of-type(n) .serviceItem .item .Img::before {
  background: #f8d6cb;
}
.serviceArea .wrap .serviceList_1 .slick-slide:nth-of-type(2n) .serviceItem .item .Img::before {
  background: #d8f1fa;
}
.serviceArea .wrap .serviceList_1 .slick-slide:nth-of-type(3n) .serviceItem .item .Img::before {
  background: #daf2c1;
}
.serviceArea .wrap .serviceList_1 .slick-slide:nth-of-type(4n) .serviceItem .item .Img::before {
  background: #dae2f4;
}
.serviceArea .wrap .serviceList_2 .slick-slide:nth-of-type(n) .serviceItem .item .Img::before {
  background: #d8f1fa;
}
.serviceArea .wrap .serviceList_2 .slick-slide:nth-of-type(2n) .serviceItem .item .Img::before {
  background: #f8d6cb;
}
.serviceArea .wrap .serviceList_2 .slick-slide:nth-of-type(3n) .serviceItem .item .Img::before {
  background: #dae2f4;
}
.serviceArea .wrap .serviceList_2 .slick-slide:nth-of-type(4n) .serviceItem .item .Img::before {
  background: #daf2c1;
}
.serviceArea .wrap .serviceList_3 .slick-slide:nth-of-type(n) .serviceItem .item .Img::before {
  background: #d8f1fa;
}
.serviceArea .wrap .serviceList_3 .slick-slide:nth-of-type(2n) .serviceItem .item .Img::before {
  background: #dae2f4;
}
.serviceArea .wrap .serviceList_3 .slick-slide:nth-of-type(3n) .serviceItem .item .Img::before {
  background: #daf2c1;
}
.serviceArea .wrap .serviceList_3 .slick-slide:nth-of-type(4n) .serviceItem .item .Img::before {
  background: #f8d6cb;
}
.serviceArea .wrap .serviceList_4 .slick-slide:nth-of-type(n) .serviceItem .item .Img::before {
  background: #d8f1fa;
}
.serviceArea .wrap .serviceList_4 .slick-slide:nth-of-type(2n) .serviceItem .item .Img::before {
  background: #daf2c1;
}
.serviceArea .wrap .serviceList_4 .slick-slide:nth-of-type(3n) .serviceItem .item .Img::before {
  background: #f8d6cb;
}
.serviceArea .wrap .serviceList_4 .slick-slide:nth-of-type(4n) .serviceItem .item .Img::before {
  background: #dae2f4;
}
.serviceArea .wrap .serviceList_rwd {
  display: none;
  width: 100%;
}
@media (max-width: 1520px) {
  .serviceArea .wrap .serviceList_rwd {
    display: block;
  }
}
@media (max-width: 670px) {
  .serviceArea .wrap .serviceList_rwd {
    width: calc(100% - 80px);
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .serviceArea .wrap .serviceList_rwd {
    width: calc(100% - 40px);
  }
}
.serviceArea .wrap .serviceList_rwd .slick-slide {
  margin: 0 10px;
}
.serviceArea .wrap .serviceList_rwd .slick-slide:nth-of-type(n) .serviceItem .item .Img::before {
  background: #d8f1fa;
}
.serviceArea .wrap .serviceList_rwd .slick-slide:nth-of-type(2n) .serviceItem .item .Img::before {
  background: #daf2c1;
}
.serviceArea .wrap .serviceList_rwd .slick-slide:nth-of-type(3n) .serviceItem .item .Img::before {
  background: #f8d6cb;
}
.serviceArea .wrap .serviceList_rwd .slick-slide:nth-of-type(4n) .serviceItem .item .Img::before {
  background: #dae2f4;
}
.serviceArea .wrap .serviceList_rwd .serviceItem .item {
  background: #ffffff;
  border-radius: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  margin: 0;
  padding: 30px;
}
.serviceArea .wrap .serviceList_rwd .serviceItem .item .title {
  height: 63px;
  color: #353535;
  font-size: 25px;
  font-weight: 700;
  line-height: calc(30 / 25);
  letter-spacing: calc(25 * 5 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 20px;
  padding: 0;
}
@media (max-width: 480px) {
  .serviceArea .wrap .serviceList_rwd .serviceItem .item .title {
    height: 48px;
    font-size: 20px;
  }
}
.serviceArea .wrap .serviceList_rwd .serviceItem .item .Img {
  width: 60px;
  -webkit-transform: translate(20px, -10px);
          transform: translate(20px, -10px);
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  padding: 0;
}
.serviceArea .wrap .serviceList_rwd .serviceItem .item .Img::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  left: -20px;
  bottom: -10px;
  z-index: -1;
}
.serviceArea .wrap .serviceList_rwd .serviceItem .item .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.serviceArea .wrap .serviceList_rwd .serviceItem .item .textEditor {
  height: 96px;
  color: #555555;
  font-size: 16px;
  font-weight: 400;
  line-height: calc(24 / 16);
  letter-spacing: calc(16 * 5 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.serviceArea .wrap .bg {
  background: url("../images/service_BG.png") no-repeat;
  background-size: cover;
  border-radius: 90px;
  opacity: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -999;
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: unset;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: -999;
  width: 20%;
}

.newsArea {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 150px 0;
}
.newsArea.show .titleBox .subtitle,
.newsArea.show .titleBox .title {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.newsArea .topBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0 0 70px;
  padding: 0 50px;
}
@media (max-width: 1280px) {
  .newsArea .topBox {
    -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;
    padding: 0 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1280px) {
  .newsArea .topBox .classBoxRow {
    margin-top: 30px;
  }
}
@media (max-width: 1023px) {
  .newsArea .topBox .classBoxRow {
    width: 100%;
    max-width: 500px;
  }
}
.newsArea .titleBox .subtitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.newsArea .titleBox .title {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.newsArea .newsBox {
  background: #ffffff;
  border-radius: 30px;
  -webkit-box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1180px) {
  .newsArea .newsBox {
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.newsArea .newsInfoBox .dateBox .date {
  color: #353535;
  font-size: 50px;
  font-weight: 600;
  line-height: calc(50 / 50);
  letter-spacing: calc(50 * 0 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
}
.newsArea .newsInfoBox .dateBox .year {
  color: #888888;
  font-size: 15px;
  font-weight: 400;
  line-height: calc(15 / 15);
  letter-spacing: calc(15 * 15 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
}
.newsArea .classTitle {
  display: inline-block;
  border-radius: 30px;
  border-style: solid;
  border-color: #d2d2d2;
  border-width: 1px;
  color: #447ec0;
  font-size: 15px;
  font-weight: 400;
  line-height: calc(15 / 15);
  letter-spacing: calc(15 * 35 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  margin: 0;
  padding: 8px 15px;
}
.newsArea .linkWrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: unset;
  bottom: unset;
  z-index: 1;
}
.newsArea .newsList_first {
  width: 100%;
}
@media (max-width: 1180px) {
  .newsArea .newsList_first {
    margin: 0 0 20px;
    padding: 0 20px;
  }
}
.newsArea .newsList_first .newsItem {
  height: 100%;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  margin: 0;
  padding: 60px;
}
@media (min-width: 1201px) {
  .newsArea .newsList_first .newsItem:hover {
    -webkit-box-shadow: 0 8px 15px 0 rgba(68, 126, 192, 0.3);
            box-shadow: 0 8px 15px 0 rgba(68, 126, 192, 0.3);
  }
  .newsArea .newsList_first .newsItem:hover .title {
    color: #447ec0;
  }
}
@media (max-width: 1180px) {
  .newsArea .newsList_first .newsItem {
    background: #ffffff;
    -webkit-box-shadow: 0 8px 15px 0 rgba(68, 126, 192, 0.3);
            box-shadow: 0 8px 15px 0 rgba(68, 126, 192, 0.3);
  }
}
@media (max-width: 768px) {
  .newsArea .newsList_first .newsItem {
    padding: 30px;
  }
}
.newsArea .newsList_first .newsItem .newsInfoBox {
  margin: 0 0 30px;
  padding: 0;
}
.newsArea .newsList_first .newsItem .classTitle {
  margin: 0 0 30px;
}
.newsArea .newsList_first .newsItem .title {
  margin: 0 0 50px;
  padding: 0;
}
@media (max-width: 1180px) {
  .newsArea .newsList_first .newsItem .title {
    height: 56px;
    margin: 0;
    color: #353535;
    font-size: 20px;
    font-weight: 600;
    line-height: calc(28 / 20);
    letter-spacing: calc(20 * 0 / 1000 * 1px);
    font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
    font-style: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.newsArea .newsList_first .newsItem .text {
  color: #555555;
  font-size: 16px;
  font-weight: 400;
  line-height: calc(28 / 16);
  letter-spacing: calc(16 * 5 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
}
@media (max-width: 1180px) {
  .newsArea .newsList_first .newsItem .text {
    display: none;
  }
}
.newsArea .newsList {
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.newsArea .newsList::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  left: 0;
  top: 0;
  border-style: dashed;
  border-color: #d2d2d2;
  border-width: 1px;
}
@media (max-width: 1180px) {
  .newsArea .newsList {
    width: 100%;
    margin: 0;
    padding: 0 20px 20px;
  }
}
.newsArea .newsList .newsItem {
  border-radius: 30px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.newsArea .newsList .newsItem::before {
  content: "";
  position: absolute;
  width: calc(100% - 120px);
  height: 1px;
  border-style: dashed;
  border-color: #d2d2d2;
  border-width: 1px;
  position: absolute;
  left: 50%;
  top: unset;
  bottom: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
@media (max-width: 1180px) {
  .newsArea .newsList .newsItem::before {
    display: none;
  }
}
@media (min-width: 1201px) {
  .newsArea .newsList .newsItem:hover {
    -webkit-box-shadow: 0 8px 15px 0 rgba(68, 126, 192, 0.3);
            box-shadow: 0 8px 15px 0 rgba(68, 126, 192, 0.3);
  }
  .newsArea .newsList .newsItem:hover::before {
    opacity: 0;
  }
  .newsArea .newsList .newsItem:hover .item .Txt .title {
    color: #447ec0;
  }
}
@media (max-width: 1180px) {
  .newsArea .newsList .newsItem {
    background: #ffffff;
    -webkit-box-shadow: 0 8px 15px 0 rgba(68, 126, 192, 0.3);
            box-shadow: 0 8px 15px 0 rgba(68, 126, 192, 0.3);
    margin: 0 0 20px;
    padding: 0;
  }
}
@media (max-width: 1180px) {
  .newsArea .newsList .newsItem:last-child {
    margin: 0;
  }
}
.newsArea .newsList .newsItem:last-child::before {
  display: none;
}
.newsArea .newsList .newsItem .item .Txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0;
  padding: 60px;
}
@media (max-width: 1180px) {
  .newsArea .newsList .newsItem .item .Txt {
    display: block;
  }
}
@media (max-width: 768px) {
  .newsArea .newsList .newsItem .item .Txt {
    padding: 30px;
  }
}
.newsArea .newsList .newsItem .item .Txt .newsInfoBox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 40px 0 0;
  padding: 0;
}
@media (max-width: 1180px) {
  .newsArea .newsList .newsItem .item .Txt .newsInfoBox {
    margin: 0 0 30px;
  }
}
.newsArea .newsList .newsItem .item .Txt .classTitle {
  margin: 10px 0;
}
@media (max-width: 1180px) {
  .newsArea .newsList .newsItem .item .Txt .classTitle {
    margin: 0 0 30px;
  }
}
.newsArea .newsList .newsItem .item .Txt .title {
  height: 84px;
  color: #353535;
  font-size: 20px;
  font-weight: 600;
  line-height: calc(28 / 20);
  letter-spacing: calc(20 * 0 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .newsArea .newsList .newsItem .item .Txt .title {
    height: 56px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.newsArea .newsItem .title {
  color: #353535;
  font-size: 25px;
  font-weight: 700;
  line-height: calc(35 / 25);
  letter-spacing: calc(25 * 0 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.newsArea .btnBox {
  margin: 60px 0 0;
  padding: 0;
}
.newsArea .bg {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -999;
  pointer-events: none;
  height: 150%;
  top: -25%;
}
.newsArea .bg .ball_1 {
  width: 670px;
  height: 670px;
  background: #f1fbff;
  border-radius: 50%;
  -webkit-animation: dotsLoop_2 20s linear 0s infinite;
          animation: dotsLoop_2 20s linear 0s infinite;
  position: absolute;
  top: 50px;
  left: -100px;
  right: unset;
  bottom: unset;
  z-index: -1;
}
.newsArea .bg .ball_1 i {
  display: block;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  z-index: 1;
}
.newsArea .bg .ball_1 i.light_1 {
  width: 60px;
  height: 60px;
  left: 200px;
  top: 420px;
}
.newsArea .bg .ball_1 i.light_2 {
  width: 15px;
  height: 15px;
  right: 50px;
  bottom: 300px;
}
.newsArea .bg .ball_2 {
  width: 25px;
  height: 25px;
  background: #73dbff;
  border-radius: 50%;
  -webkit-animation: dotsLoop_1 2s ease-in-out 0s infinite alternate;
          animation: dotsLoop_1 2s ease-in-out 0s infinite alternate;
  position: absolute;
  top: 400px;
  left: 50%;
  right: unset;
  bottom: unset;
  z-index: 1;
}
.newsArea .bg .ball_3 {
  width: 160px;
  height: 160px;
  background: #73dbff;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 0 0 #00a5d8;
          box-shadow: 0 2px 0 0 #00a5d8;
  position: absolute;
  top: 600px;
  left: unset;
  right: -60px;
  bottom: unset;
  z-index: 1;
}
.newsArea .bg .ball_3::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: #ffffff;
  border-radius: 50%;
  -webkit-box-shadow: 0 -2px 0 0 #00a5d8;
          box-shadow: 0 -2px 0 0 #00a5d8;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.newsArea .bg .ball_4 {
  width: 40px;
  height: 40px;
  background: #ffbc00;
  border-radius: 50%;
  -webkit-box-shadow: -1px 2px 0 0 #ffe578;
          box-shadow: -1px 2px 0 0 #ffe578;
  position: absolute;
  top: 850px;
  left: unset;
  right: 70px;
  bottom: unset;
  z-index: 1;
}
.newsArea .bg .ball_5 {
  width: 490px;
  height: 490px;
  background: #fff6f6;
  border-radius: 50%;
  position: absolute;
  top: unset;
  left: unset;
  right: -100px;
  bottom: 400px;
  z-index: 1;
}
.newsArea .bg .ball_6 {
  width: 25px;
  height: 25px;
  background: #eeadca;
  border-radius: 50%;
  -webkit-animation: dotsLoop_1 2s ease-in-out 0s infinite alternate;
          animation: dotsLoop_1 2s ease-in-out 0s infinite alternate;
  position: absolute;
  top: unset;
  left: 70px;
  right: unset;
  bottom: 500px;
  z-index: 1;
}
.newsArea .bg .ball_7 {
  width: 30px;
  height: 30px;
  background: #73dbff;
  border-radius: 50%;
  position: absolute;
  top: unset;
  left: 200px;
  right: unset;
  bottom: 360px;
  z-index: 2;
}
@media (max-width: 768px) {
  .newsArea .bg .ball_7 {
    display: none;
  }
}
.newsArea .bg .bar {
  width: 25px;
  height: 110px;
  background: #2870b4;
  border-radius: 30px;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: stickMove 2s linear 0s infinite;
          animation: stickMove 2s linear 0s infinite;
  position: absolute;
  top: unset;
  left: 240px;
  right: unset;
  bottom: 320px;
  z-index: 1;
}
.newsArea .bg .base {
  width: 1571px;
  height: 1047px;
  background: url("../images/announcement_BG.png") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0px;
  left: -100px;
  right: unset;
  bottom: unset;
  z-index: 1;
}

.successArea {
  margin: 0;
  padding: 0 0 150px;
}
@media (max-width: 480px) {
  .successArea {
    padding-bottom: 60px;
  }
}
.successArea.show .titleBox .subtitle,
.successArea.show .titleBox .title {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.successArea.show .successList {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.successArea .titleBox {
  margin: 0 0 50px;
  padding: 0;
}
.successArea .titleBox .subtitle,
.successArea .titleBox .title {
  text-align: center;
}
.successArea .titleBox .subtitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.successArea .titleBox .title {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.successArea .successList {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  margin: 0;
  padding: 0 50px;
}
@media (max-width: 480px) {
  .successArea .successList {
    padding: 0;
  }
}
.successArea .successList .slick-list {
  margin: 0;
  padding: 0 0 60px;
}
@media (max-width: 600px) {
  .successArea .successList .slick-list {
    padding: 0 10px 60px;
  }
}
@media (max-width: 600px) {
  .successArea .successList .slick-slide {
    margin: 0 20px;
  }
}
.successArea .successList .item {
  max-width: 405px;
  -webkit-box-shadow: 0 8px 15px 0 rgba(68, 126, 192, 0.2);
          box-shadow: 0 8px 15px 0 rgba(68, 126, 192, 0.2);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 600px) {
  .successArea .successList .item {
    max-width: 100%;
  }
}
@media (min-width: 1201px) {
  .successArea .successList .item:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .successArea .successList .item:hover .Txt {
    border-color: #447ec0;
  }
  .successArea .successList .item:hover .Txt .title {
    color: #447ec0;
  }
  .successArea .successList .item:hover .Txt .moreBtn {
    color: #447ec0;
  }
  .successArea .successList .item:hover .Txt .moreBtn i {
    width: 25px;
  }
}
.successArea .successList .item .Img {
  width: 100%;
}
.successArea .successList .item .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.successArea .successList .item .Txt {
  width: 100%;
  border-radius: 0 0 15px 15px;
  border-style: solid;
  border-color: transparent;
  border-width: 0 1px 1px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  margin: 0;
  padding: 30px 40px 40px;
}
.successArea .successList .item .Txt .newsInfoBox {
  margin: 0 0 25px;
  padding: 0;
}
.successArea .successList .item .Txt .newsInfoBox .dateBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.successArea .successList .item .Txt .newsInfoBox .dateBox div {
  color: #888888;
  font-size: 15px;
  font-weight: 400;
  line-height: calc(15 / 15);
  letter-spacing: calc(15 * 5 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
}
.successArea .successList .item .Txt .newsInfoBox .dateBox div.date {
  margin: 0 5px 0 0;
  padding: 0;
}
.successArea .successList .item .Txt .title {
  height: 60px;
  color: #353535;
  font-size: 20px;
  font-weight: 700;
  line-height: calc(30 / 20);
  letter-spacing: calc(20 * 5 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.successArea .successList .item .Txt .moreBtn {
  color: #555555;
  font-size: 16px;
  font-weight: 400;
  line-height: calc(16 / 16);
  letter-spacing: calc(16 * 5 / 1000 * 1px);
  font-family: "DM Sans", "Noto Sans TC", "Arial", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 20px 0 0;
  padding: 0;
}
.successArea .successList .item .Txt .moreBtn i {
  display: block;
  width: 0;
  height: 1px;
  background: #447ec0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  margin: 0 0 0 5px;
  padding: 0;
}
.successArea .successList .item .Txt .linkWrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: unset;
  bottom: unset;
  z-index: 1;
}
.successArea .successBox {
  position: relative;
  z-index: 1;
}
.successArea .arrowBox {
  width: calc(100% + 50px);
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: -25px;
  right: unset;
  bottom: unset;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1020px) {
  .successArea .arrowBox {
    width: 100%;
    left: 0;
  }
}
@media (max-width: 480px) {
  .successArea .arrowBox {
    top: -50px;
  }
}
.successArea .arrowBox button {
  width: 55px;
  height: 55px;
  background: #ffffff;
  border-radius: 50%;
  -webkit-box-shadow: 0 5px 10px 0 rgba(68, 126, 192, 0.2);
          box-shadow: 0 5px 10px 0 rgba(68, 126, 192, 0.2);
  pointer-events: auto;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 480px) {
  .successArea .arrowBox button {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1201px) {
  .successArea .arrowBox button:hover {
    background: #447ec0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .successArea .arrowBox button:hover i {
    background: #ffffff;
  }
  .successArea .arrowBox button:hover i::before {
    border-color: #ffffff #ffffff transparent transparent;
  }
}
.successArea .arrowBox button.arrowPrev {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  margin: 0 10px 0 0;
  padding: 0;
}
.successArea .arrowBox button i {
  display: block;
  width: 18px;
  height: 2px;
  background: #000000;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.successArea .arrowBox button i::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #000000 #000000 transparent transparent;
  position: absolute;
  top: 50%;
  left: unset;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}