@charset "UTF-8";
.popWin .close::before, .popWin .close::after, .popWin .close {
  transition: all 0.5s ease-in-out;
}

.popWin {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 100vh;
  /*以防有不支援dvh的瀏覽器*/
  height: 100dvh;
  font-size: 15px;
  line-height: 1.8;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.7s;
}
.popWin .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.7s;
}
.popWin .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: 800px;
  max-width: 90%;
  max-height: 85vh;
  opacity: 0;
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.7s;
}
.popWin .popContent {
  max-height: 88vh;
  overflow-y: auto;
  padding: 55px;
}
.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: 50px;
  height: 50px;
  background-color: #2ea9df;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
  border-radius: 50%;
}
.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: 1024px) {
  .popWin .close:hover {
    background-color: #2ea9df;
  }
  .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;
}
.popWin.show .inner {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 1023px) {
  .popWin .popContent {
    max-height: calc(100vh - 150px);
    /*以防有不支援dvh的瀏覽器*/
    max-height: calc(100dvh - 150px);
  }
}

.mainArea {
  padding: 0;
}

.bannerArea .bannerBox {
  position: relative;
  z-index: 0;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerItem .Img {
  height: 100vh;
  overflow: hidden;
}
.bannerArea .bannerItem .Img img {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.bannerArea .bannerItem .Txt {
  max-width: 1620px;
  padding: 85px 210px calc(85px + 9.3vw) 50px;
  text-shadow: 0 12px 49px rgba(5, 57, 92, 0.69);
}
@media (max-width: 1540px) {
  .bannerArea .bannerItem .Txt {
    padding: 85px 50px calc(85px + 4.3vw);
  }
}
@media (max-width: 1023px) {
  .bannerArea .bannerItem .Txt {
    padding: 120px 50px 200px 30px;
  }
}
@media (max-width: 767px) {
  .bannerArea .bannerItem .Txt {
    padding: 80px 50px 180px 20px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt {
    padding: 80px 50px 120px 20px;
  }
}
.bannerArea .bannerItem .Txt .textBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  max-height: 100%;
  color: #fff;
  width: 100%;
  max-width: 800px;
}
.bannerArea .bannerItem .Txt .subtitle {
  color: #fff;
  display: block;
  font-size: min(max(1.667vw, 24px), 32px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.8px;
  margin-bottom: 40px;
  opacity: 0;
}
@media (max-width: 1540px) {
  .bannerArea .bannerItem .Txt .subtitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 1350px) {
  .bannerArea .bannerItem .Txt .subtitle {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: min(max(3.651vw, 20px), 28px);
  }
}
.bannerArea .bannerItem .Txt .title {
  color: #fff;
  font-size: min(max(3.125vw, 35px), 60px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0px;
  opacity: 0;
  margin-bottom: 40px;
}
@media (max-width: 1540px) {
  .bannerArea .bannerItem .Txt .title {
    margin-bottom: 30px;
  }
}
@media (max-width: 1350px) {
  .bannerArea .bannerItem .Txt .title {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: min(max(5.555vw, 28px), 40px);
  }
}
.bannerArea .bannerItem .Txt .text {
  color: #fff;
  display: block;
  line-height: 1.5;
  font-size: 9.375vw;
  font-size: min(max(3.125vw, 14px), 18px);
  letter-spacing: 0.75px;
  padding: 0 0 0 5px;
  opacity: 0;
}
.bannerArea .bannerItem:not(.show) .Img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  transition: -webkit-transform 0.1s 0.8s;
  transition: transform 0.1s 0.8s;
  transition: transform 0.1s 0.8s, -webkit-transform 0.1s 0.8s;
}
.bannerArea .bannerItem:not(.show) .Txt .title {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  transition: all 0.4s 0.3s;
}
.bannerArea .bannerItem:not(.show) .Txt .subtitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  transition: all 0.4s 0.2s;
}
.bannerArea .bannerItem:not(.show) .Txt .text {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  transition: all 0.4s 0.1s;
}
.bannerArea .bannerItem.show .Img img {
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: -webkit-transform 5s;
  transition: transform 5s;
  transition: transform 5s, -webkit-transform 5s;
}
.bannerArea .bannerItem.show .Txt .title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.8s 0.4s;
}
.bannerArea .bannerItem.show .Txt .subtitle {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.8s 0.6s;
}
.bannerArea .bannerItem.show .Txt .text {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.8s 0.8s;
}
.bannerArea .slickBtnBox {
  position: absolute;
  bottom: calc(85px + 4.5vw);
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 1616px;
  padding: 0 50px;
  text-shadow: 0 12px 49px rgba(5, 57, 92, 0.69);
  -ms-flex-pack: start;
      justify-content: start;
}
@media (max-width: 1540px) {
  .bannerArea .slickBtnBox {
    bottom: 85px;
  }
}
@media (max-width: 1023px) {
  .bannerArea .slickBtnBox {
    bottom: 60px;
    padding-right: 90px;
    padding: 0 90px 0 30px;
  }
  .bannerArea .slickBtnBox .right {
    width: 100%;
    max-width: unset;
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .bannerArea .slickBtnBox {
    bottom: 80px;
    padding: 0 60px 0 30px;
  }
}
@media (max-width: 480px) {
  .bannerArea .slickBtnBox {
    bottom: 60px;
  }
}
.bannerArea .slickBtnBox .slickBtn.arrowPrev {
  margin-right: 5px;
}
.bannerArea .slickBtnBox .right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.bannerArea .slickBtnBox .slash {
  margin: 0 5px;
}
.bannerArea .slickBtnBox .nowNumItem,
.bannerArea .slickBtnBox .slash,
.bannerArea .slickBtnBox .totalNum {
  color: #fff;
}
@media (max-width: 1023px) {
  .bannerArea .slickBtnBox .nowNumItem,
  .bannerArea .slickBtnBox .slash,
  .bannerArea .slickBtnBox .totalNum {
    width: auto;
  }
}
.bannerArea .scrollDown {
  cursor: pointer;
  display: block;
  position: absolute;
  bottom: 0;
  right: 190px;
  z-index: 2;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 1540px) {
  .bannerArea .scrollDown {
    right: 50px;
  }
}
@media (max-width: 1023px) {
  .bannerArea .scrollDown {
    right: 30px;
  }
}
@media (max-width: 767px) {
  .bannerArea .scrollDown {
    right: 20px;
  }
}
@media (min-width: 1024px) {
  .bannerArea .scrollDown:hover .line::before {
    height: 100%;
  }
  .bannerArea .scrollDown:hover .dots {
    top: 100%;
  }
}
.bannerArea .scrollDown .text {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.35px;
  margin: 0 0 14px;
}
.bannerArea .scrollDown .lineBox {
  position: relative;
}
.bannerArea .scrollDown .line {
  width: 2px;
  margin: 0;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.bannerArea .scrollDown .line::before {
  content: "";
  width: 2px;
  height: 50%;
  background-color: #ffffff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: all 0.5s;
}
.bannerArea .scrollDown .dots {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.5s;
}
.bannerArea .videoBox {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.bannerArea .videoBox.show .video {
  opacity: 1;
  pointer-events: auto;
}
.bannerArea .videoBox.show .videoBtnBox {
  pointer-events: auto;
}
.bannerArea .videoBox .video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: max(100vw, 177.7777777778dvh);
  height: max(100dvh, 56.25vw);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.bannerArea .videoBox .videoBtnBox {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.bannerArea .videoBox .videoBtnBox .videoBtn {
  width: 80px;
  height: 80px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  right: 157px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: auto;
  transition: all 0.5s;
}
@media (max-width: 1540px) {
  .bannerArea .videoBox .videoBtnBox .videoBtn {
    right: 20px;
  }
}
@media (max-width: 1023px) {
  .bannerArea .videoBox .videoBtnBox .videoBtn {
    top: calc(100% - 75px);
    right: calc(100% - 250px);
  }
}
.bannerArea .videoBox .videoBtnBox .videoBtn::before {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  left: -10px;
  border-radius: 50%;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px dashed rgba(255, 255, 255, 0.5);
}
@media (max-width: 1023px) {
  .bannerArea .videoBox .videoBtnBox .videoBtn.playing {
    right: calc(50% - 40px);
    opacity: 0.3;
  }
}
.bannerArea .videoBox .videoBtnBox .videoBtn.playing .pause {
  opacity: 1;
}
.bannerArea .videoBox .videoBtnBox .videoBtn.playing .play {
  opacity: 0;
}
.bannerArea .videoBox .videoBtnBox .videoBtn .play, .bannerArea .videoBox .videoBtnBox .videoBtn .pause {
  transition: all 0.5s;
  color: #2ea9df;
}
.bannerArea .videoBox .videoBtnBox .videoBtn .pause {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
}

.catalogArea {
  padding: 207px 0 111px;
  position: relative;
  background: url(../images/index_catalog/bgi.jpg) no-repeat center top/cover;
  border-radius: 0 0 0 150px;
  z-index: 1;
}
@media (max-width: 1540px) {
  .catalogArea {
    padding: 130px 0 100px;
    border-radius: 0 0 0 120px;
  }
}
@media (max-width: 1350px) {
  .catalogArea {
    border-radius: 0 0 0 100px;
  }
}
@media (max-width: 1023px) {
  .catalogArea {
    padding: 60px 0;
    border-radius: 0 0 0 80px;
  }
}
@media (max-width: 767px) {
  .catalogArea {
    border-radius: 0 0 0 50px;
  }
}
.catalogArea .deco {
  position: absolute;
  bottom: -6.95vw;
  left: 51.5%;
  width: 7.5%;
}
@media (max-width: 1023px) {
  .catalogArea .deco {
    width: 113px;
    bottom: -93px;
  }
}
@media (max-width: 480px) {
  .catalogArea .deco {
    width: 28vw;
    bottom: -23vw;
  }
}
.catalogArea .productDecoTitle {
  position: absolute;
  top: 207px;
  right: 8vw;
  -webkit-writing-mode: sideways-rl;
      -ms-writing-mode: sideways-rl;
          writing-mode: sideways-rl;
  font-size: 120px;
  font-style: italic;
  line-height: 0.7;
  height: 100%;
  font-weight: 900;
  color: #fff;
  letter-spacing: 3px;
  z-index: 0;
}
@media (max-width: 1800px) {
  .catalogArea .productDecoTitle {
    right: 50px;
  }
}
@media (max-width: 1540px) {
  .catalogArea .productDecoTitle {
    font-size: 100px;
    right: 30px;
    top: 130px;
  }
}
@media (max-width: 1350px) {
  .catalogArea .productDecoTitle {
    font-size: 80px;
    right: 20px;
  }
}
@media (max-width: 1023px) {
  .catalogArea .productDecoTitle {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    position: static;
    height: auto;
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }
}
.catalogArea .wrap {
  width: calc(100% - 16vw);
  position: relative;
  z-index: 2;
}
@media (max-width: 1540px) {
  .catalogArea .wrap {
    width: calc(100% - 100px);
  }
}
@media (max-width: 1023px) {
  .catalogArea .wrap {
    width: 100%;
  }
}
.catalogArea .catalogBox {
  padding-bottom: 20px;
  padding-right: 73px;
  position: relative;
}
@media (max-width: 1023px) {
  .catalogArea .catalogBox {
    padding-right: 0;
    padding: 0;
  }
}
.catalogArea .catalogList {
  position: relative;
}
.catalogArea .catalogList .item {
  position: relative;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media (max-width: 1023px) {
  .catalogArea .catalogList .item {
    display: block;
  }
}
@media (min-width: 1024px) {
  .catalogArea .catalogList .item:hover .Img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.catalogArea .catalogList .imgBox {
  width: 56.5%;
  max-width: 704px;
  border-radius: 30px;
  background-color: #fff;
  padding: 26px 63px 32px;
}
@media (max-width: 1540px) {
  .catalogArea .catalogList .imgBox {
    padding: 26px 40px;
  }
}
@media (max-width: 1350px) {
  .catalogArea .catalogList .imgBox {
    padding: 15px 30px;
  }
}
@media (max-width: 1023px) {
  .catalogArea .catalogList .imgBox {
    background-color: rgba(0, 0, 0, 0);
  }
}
.catalogArea .catalogList .logo {
  width: 100%;
  max-width: 202px;
  margin: 0 0 8px;
}
@media (max-width: 767px) {
  .catalogArea .catalogList .logo {
    max-width: 140px;
  }
}
.catalogArea .catalogList .Img {
  border-radius: 20px;
  overflow: hidden;
}
.catalogArea .catalogList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: all 0.5s;
}
.catalogArea .catalogList .Txt {
  position: relative;
  padding: 32px 0;
  width: calc(43.5% - 20px);
  max-width: 467px;
}
@media (max-width: 1540px) {
  .catalogArea .catalogList .Txt {
    padding: 15px 0 0;
  }
}
@media (max-width: 1023px) {
  .catalogArea .catalogList .Txt {
    width: 100%;
    max-width: unset;
  }
}
.catalogArea .catalogList .Txt .topTitle {
  color: #444444;
  font-size: 15px;
  margin: 0 0 21px 0;
}
@media (max-width: 1540px) {
  .catalogArea .catalogList .Txt .topTitle {
    font-size: 14px;
  }
}
@media (max-width: 1350px) {
  .catalogArea .catalogList .Txt .topTitle {
    font-size: 13px;
  }
}
.catalogArea .catalogList .Txt .title {
  font-size: 36px;
  font-weight: 500;
  position: relative;
  margin-bottom: 41px;
}
@media (max-width: 1540px) {
  .catalogArea .catalogList .Txt .title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1350px) {
  .catalogArea .catalogList .Txt .title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .catalogArea .catalogList .Txt .title {
    font-size: min(max(3.651vw, 20px), 28px);
    margin-bottom: 10px;
  }
}
.catalogArea .catalogList .Txt .title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 2px;
}
.catalogArea .catalogList .Txt .title::after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  background-color: #2ea9df;
  margin: 26px 0 0;
}
@media (max-width: 1540px) {
  .catalogArea .catalogList .Txt .title::after {
    width: 70px;
  }
}
@media (max-width: 1350px) {
  .catalogArea .catalogList .Txt .title::after {
    width: 60px;
  }
}
@media (max-width: 767px) {
  .catalogArea .catalogList .Txt .title::after {
    margin: 10px 0 0;
  }
}
.catalogArea .catalogList .Txt .title .small {
  font-size: 21px;
  padding: 0 0 0px 4px;
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
  display: inline-block;
}
@media (max-width: 1540px) {
  .catalogArea .catalogList .Txt .title .small {
    font-size: 18px;
    padding: 0 4px;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@media (max-width: 1350px) {
  .catalogArea .catalogList .Txt .title .small {
    font-size: 16px;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}
@media (max-width: 767px) {
  .catalogArea .catalogList .Txt .title .small {
    font-size: 14px;
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
}
.catalogArea .catalogList .Txt .title a {
  display: block;
  color: #2ea9df;
}
@media (min-width: 1024px) {
  .catalogArea .catalogList .Txt .title a:hover {
    color: #5abbe6;
  }
}
.catalogArea .catalogList .Txt .text {
  font-size: 16px;
  color: #333333;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: -0.2px;
}
@media (max-width: 1540px) {
  .catalogArea .catalogList .Txt .text {
    font-size: 14px;
  }
}
@media (max-width: 1350px) {
  .catalogArea .catalogList .Txt .text {
    font-size: 13px;
  }
}
@media (max-width: 1023px) {
  .catalogArea .catalogList .Txt .text {
    padding-top: 20px;
  }
}
.catalogArea .catalogList .Txt .text.ellipsis {
  max-height: 160px;
  overflow: hidden;
}
.catalogArea .catalogList .Txt .text ul {
  list-style: disc;
  padding: 0 0 0 17px;
}
.catalogArea .catalogList .Txt .text ul li {
  padding: 0 5px;
  margin-bottom: 9px;
}
@media (max-width: 767px) {
  .catalogArea .catalogList .Txt .text ul li {
    margin-bottom: 0;
  }
}
@media (max-width: 1023px) {
  .catalogArea .catalogList .btnBox .btn.style1 {
    max-width: calc(100% - 100px);
  }
}
.catalogArea .catalogList .tagBox {
  padding: 33px 0;
}
@media (max-width: 1540px) {
  .catalogArea .catalogList .tagBox {
    padding: 15px 0 0;
  }
}
@media (max-width: 1023px) {
  .catalogArea .catalogList .tagBox {
    display: none;
  }
}
.catalogArea .catalogList .tagList {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.catalogArea .catalogList .tagList .tagItem {
  background-color: #f5f6fb;
  padding: 6px 13px;
  border-radius: 9999px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  color: #333333;
  font-size: 15px;
  margin: 0 10px 16px 0;
  border: none;
}
@media (max-width: 1540px) {
  .catalogArea .catalogList .tagList .tagItem {
    font-size: 14px;
  }
}
@media (max-width: 1350px) {
  .catalogArea .catalogList .tagList .tagItem {
    font-size: 13px;
  }
}
.catalogArea .catalogList .tagList .tagItem .tagImg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.catalogArea .slickBtnBox {
  position: absolute;
  top: 0;
  right: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
  padding: 22px 0 0;
}
@media (min-width: 1024px) {
  .catalogArea .slickBtnBox .arrowPrev {
    margin-bottom: 6px;
  }
}
@media (max-width: 1023px) {
  .catalogArea .slickBtnBox {
    top: calc(100% - 45px);
    right: 0;
    width: 86px;
    height: auto;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    padding: 0;
  }
}
.catalogArea .slickBtnBox .top {
  margin: 0 0 24px;
}
@media (max-width: 1023px) {
  .catalogArea .slickBtnBox .top {
    display: none;
  }
}
.catalogArea .slickBtnBox .nowNumList {
  -webkit-writing-mode: sideways-rl;
      -ms-writing-mode: sideways-rl;
          writing-mode: sideways-rl;
}
.catalogArea .slickBtnBox .nowNumList .nowNumItem {
  width: auto;
  -webkit-transform: translate(5px, 0);
          transform: translate(5px, 0);
}
.catalogArea .slickBtnBox .nowNumList .nowNumItem.active {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
.catalogArea .slickBtnBox .slash::before {
  content: "";
  display: block;
  width: 1px;
  height: 17px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 5px 0;
  -webkit-transform: translateX(6px) rotate(45deg);
          transform: translateX(6px) rotate(45deg);
}
.catalogArea .slickBtnBox .totalNum {
  -webkit-writing-mode: sideways-rl;
      -ms-writing-mode: sideways-rl;
          writing-mode: sideways-rl;
}
.catalogArea:not(.show) .Txt {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.catalogArea:not(.show) .imgBox {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
@media (max-width: 1023px) {
  .catalogArea:not(.show) .imgBox {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.catalogArea.show .Txt {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.7s;
}
.catalogArea.show .imgBox {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition: all 0.7s 0.2s;
}
@media (max-width: 1023px) {
  .catalogArea.show .imgBox {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.aboutArea {
  background: url(../images/index_about/bgi.jpg) no-repeat center top/cover;
  padding: 207px 0 25px;
  margin-top: -140px;
  position: relative;
  border-radius: 0 0 7% 0;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 1540px) {
  .aboutArea {
    padding: 210px 0 65px;
  }
}
@media (max-width: 768px) {
  .aboutArea {
    border-radius: 0 0 80px 0;
    background: url(../images/index_about/bgi_ph.jpg) no-repeat center top/cover;
  }
}
@media (max-width: 767px) {
  .aboutArea {
    border-radius: 0 0 50px 0;
  }
}
.aboutArea .decoBox {
  position: absolute;
  inset: 0;
  z-index: 0;
}
@media (max-width: 1023px) {
  .aboutArea .decoBox {
    display: none;
  }
}
.aboutArea .decoBox .deco {
  position: absolute;
}
.aboutArea .decoBox .deco3 {
  top: 11%;
  left: -6%;
  width: 18.5%;
}
.aboutArea .decoBox .deco4 {
  top: 50.5%;
  right: 8.6%;
  width: 10.5%;
}
.aboutArea .decoBox .deco5 {
  top: 23.5%;
  right: 23.6%;
  width: 16.5%;
}
.aboutArea .decoBox .deco6 {
  top: 86.5%;
  right: 15.6%;
  width: 12.5%;
}
.aboutArea .wrap {
  position: relative;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-width: 1460px;
  width: calc(100% - 120px);
}
@media (max-width: 1540px) {
  .aboutArea .wrap {
    width: calc(100% - 110px);
    margin: 0 0 0 110px;
  }
}
@media (max-width: 1350px) {
  .aboutArea .wrap {
    width: calc(100% - 90px);
    margin: 0 0 0 90px;
  }
}
@media (max-width: 1023px) {
  .aboutArea .wrap {
    width: 100%;
    margin: 0;
  }
}
.aboutArea .wrap > .textBox {
  width: 388px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 0 0 36px;
}
@media (max-width: 1540px) {
  .aboutArea .wrap > .textBox {
    padding: 0 0 20px;
  }
  .aboutArea .wrap > .textBox .textEditor p:last-child {
    padding-bottom: 0;
  }
}
@media (max-width: 1350px) {
  .aboutArea .wrap > .textBox {
    width: calc(100% - 600px);
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .aboutArea .wrap > .textBox {
    -ms-flex-order: 2;
        order: 2;
  }
}
@media (max-width: 1023px) {
  .aboutArea .wrap > .textBox {
    width: 100%;
  }
}
.aboutArea .wrap > .textBox .titleBox {
  margin-bottom: 38px;
}
@media (max-width: 1540px) {
  .aboutArea .wrap > .textBox .titleBox {
    margin-bottom: 20px;
  }
}
@media (max-width: 1350px) {
  .aboutArea .wrap > .textBox .titleBox {
    margin-bottom: 16px;
  }
}
.aboutArea .wrap > .textBox .titleBox .title,
.aboutArea .wrap > .textBox .titleBox .subtitle,
.aboutArea .wrap > .textBox .titleBox .decoTitle {
  color: #fff;
}
@media (max-width: 1540px) {
  .aboutArea .wrap > .textBox .titleBox .subtitle {
    padding-top: 0;
  }
}
.aboutArea .wrap > .textBox .titleBox .title::after {
  display: none;
}
.aboutArea .wrap > .textBox .bottomText {
  color: #fff;
  position: relative;
  padding: 40px 0 0;
  font-size: 15px;
  letter-spacing: 0.6px;
  line-height: 1.75;
}
@media (max-width: 1540px) {
  .aboutArea .wrap > .textBox .bottomText {
    font-size: 14px;
    padding-top: 30px;
  }
}
@media (max-width: 1350px) {
  .aboutArea .wrap > .textBox .bottomText {
    font-size: 13px;
    padding-top: 20px;
  }
}
.aboutArea .wrap > .textBox .bottomText::before {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}
.aboutArea .wrap > .textBox .bottomText::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 2px;
}
.aboutArea .wrap .btnBox {
  margin-top: 19px;
}
@media (max-width: 1023px) {
  .aboutArea .wrap .btnBox.ph {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    width: 100%;
  }
}
.aboutArea .wrap .aboutBox {
  width: calc(100% - 520px);
  max-width: 810px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1350px) {
  .aboutArea .wrap .aboutBox {
    width: 450px;
  }
}
@media (min-width: 1024px) {
  .aboutArea .wrap .aboutBox {
    -ms-flex-order: 1;
        order: 1;
  }
}
@media (max-width: 1023px) {
  .aboutArea .wrap .aboutBox {
    width: 100%;
    max-width: unset;
  }
}
.aboutArea .circleBox {
  position: relative;
  z-index: 1;
}
@media (max-width: 1023px) {
  .aboutArea .circleBox {
    width: 50vw;
    height: 50vw;
    max-width: 400px;
    max-height: 400px;
    margin: 0 auto 60px;
  }
}
@media (max-width: 480px) {
  .aboutArea .circleBox {
    width: 40vw;
    height: 40vw;
    max-width: 400px;
    max-height: 400px;
    margin: 0 auto 20px;
  }
}
@media (max-width: 1023px) {
  .aboutArea .circleBox .circle {
    display: none;
  }
}
.aboutArea .circleBox .deco1 {
  position: absolute;
  bottom: -1.5%;
  z-index: 0;
  left: 19.4%;
  width: 23%;
}
@media (max-width: 1023px) {
  .aboutArea .circleBox .deco1 {
    bottom: -13.5%;
    left: -33.6%;
    width: 37%;
  }
}
.aboutArea .circleBox .deco2 {
  position: absolute;
  right: 19.5%;
  bottom: 35.8%;
  width: 17.2%;
}
@media (max-width: 1023px) {
  .aboutArea .circleBox .deco2 {
    right: -11%;
    width: 29.2%;
  }
}
.aboutArea .circleBox .ball {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 47%;
  max-width: 400px;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 1023px) {
  .aboutArea .circleBox .ball {
    width: 100%;
  }
}
.aboutArea .circleBox .ball2 {
  position: absolute;
  top: 56.5%;
  left: 49.6%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 95.5%;
  z-index: 2;
}
@media (max-width: 1023px) {
  .aboutArea .circleBox .ball2 {
    width: 200%;
  }
}
.aboutArea .circleBox .ball2 .realLine {
  position: absolute;
  top: 44.6%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 64.8%;
}
.aboutArea .circleBox .logo {
  position: absolute;
  z-index: 2;
  top: 49.3%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}
@media (max-width: 1023px) {
  .aboutArea .circleBox .logo {
    width: 100%;
  }
}
.aboutArea .aboutList {
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .aboutArea .aboutList {
    position: absolute;
    inset: 0;
  }
}
@media (min-width: 1024px) {
  .aboutArea .aboutList .aboutItem {
    position: absolute;
  }
  .aboutArea .aboutList .aboutItem:nth-child(1) {
    bottom: 80.2%;
    left: 65.5%;
  }
  .aboutArea .aboutList .aboutItem:nth-child(2) {
    bottom: 67%;
    left: 78.8%;
  }
  .aboutArea .aboutList .aboutItem:nth-child(3) {
    bottom: 51.2%;
    left: 83.4%;
  }
  .aboutArea .aboutList .aboutItem:nth-child(4) {
    bottom: 33.8%;
    left: 82.6%;
  }
  .aboutArea .aboutList .aboutItem:nth-child(5) {
    bottom: 24%;
    right: 80.5%;
  }
  .aboutArea .aboutList .aboutItem:nth-child(6) {
    bottom: 41.5%;
    right: 84%;
  }
  .aboutArea .aboutList .aboutItem:nth-child(7) {
    bottom: 57.2%;
    right: 82.6%;
  }
  .aboutArea .aboutList .aboutItem:nth-child(n+1):nth-child(-n+4) .Txt {
    left: 85px;
    padding: 0 0 8px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1540px) {
  .aboutArea .aboutList .aboutItem:nth-child(n+1):nth-child(-n+4) .Txt {
    left: 75px;
  }
}
@media (min-width: 1024px) and (max-width: 1350px) {
  .aboutArea .aboutList .aboutItem:nth-child(n+1):nth-child(-n+4) .Txt {
    left: 65px;
  }
}
@media (min-width: 1024px) {
  .aboutArea .aboutList .aboutItem:nth-child(n+5):nth-child(-n+7) .Txt {
    right: 85px;
    -ms-flex-align: end;
        align-items: end;
    padding: 0 15px 14px 0;
    text-align: right;
  }
}
@media (min-width: 1024px) and (max-width: 1540px) {
  .aboutArea .aboutList .aboutItem:nth-child(n+5):nth-child(-n+7) .Txt {
    right: 75px;
  }
}
@media (min-width: 1024px) and (max-width: 1350px) {
  .aboutArea .aboutList .aboutItem:nth-child(n+5):nth-child(-n+7) .Txt {
    right: 65px;
  }
}
.aboutArea .aboutList .aboutItem .item {
  position: relative;
}
@media (min-width: 1024px) {
  .aboutArea .aboutList .aboutItem .item:hover .Img::before, .aboutArea .aboutList .aboutItem .item:hover .Img::after {
    opacity: 1;
  }
  .aboutArea .aboutList .aboutItem .item:hover .Img img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
.aboutArea .aboutList .aboutItem .item .Img {
  width: 85px;
  aspect-ratio: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-color: #fff;
  border-radius: 50%;
  padding: 18px;
  position: relative;
}
@media (max-width: 1540px) {
  .aboutArea .aboutList .aboutItem .item .Img {
    width: 75px;
    padding: 16px;
  }
}
@media (max-width: 1350px) {
  .aboutArea .aboutList .aboutItem .item .Img {
    width: 60px;
    padding: 13px;
  }
}
@media (max-width: 1023px) {
  .aboutArea .aboutList .aboutItem .item .Img {
    margin: 0 auto 10px;
  }
}
@media (max-width: 480px) {
  .aboutArea .aboutList .aboutItem .item .Img {
    width: 50px;
  }
}
.aboutArea .aboutList .aboutItem .item .Img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 128%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #0075ac;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: all 0.5s;
}
.aboutArea .aboutList .aboutItem .item .Img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 109%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #9fe3e1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: all 0.5s;
}
.aboutArea .aboutList .aboutItem .item .Img img {
  position: relative;
  z-index: 1;
  transition: all 0.5s;
}
.aboutArea .aboutList .aboutItem .item .Txt {
  position: absolute;
  top: 0;
  width: 150px;
  padding: 0;
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  height: 100%;
  font-size: 18px;
  color: #fff;
}
@media (max-width: 1540px) {
  .aboutArea .aboutList .aboutItem .item .Txt {
    width: 140px;
    font-size: 17px;
  }
}
@media (max-width: 1350px) {
  .aboutArea .aboutList .aboutItem .item .Txt {
    width: 130px;
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .aboutArea .aboutList .aboutItem .item .Txt {
    position: static;
    text-align: center;
    width: 100%;
    padding-bottom: 20px;
  }
}
.aboutArea .aboutList .aboutItem .item .Txt .num {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  opacity: 0.4;
  padding: 4px 0;
}
@media (max-width: 1540px) {
  .aboutArea .aboutList .aboutItem .item .Txt .num {
    font-size: 14px;
    padding: 0;
  }
}
@media (max-width: 1350px) {
  .aboutArea .aboutList .aboutItem .item .Txt .num {
    font-size: 13px;
  }
}
.aboutArea:not(.show) .textBox {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
@media (max-width: 1023px) {
  .aboutArea:not(.show) .textBox {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.aboutArea:not(.show) .aboutBox {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}
@media (max-width: 1023px) {
  .aboutArea:not(.show) .aboutBox {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.aboutArea.show .textBox {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition: all 0.7s;
}
@media (max-width: 1023px) {
  .aboutArea.show .textBox {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.aboutArea.show .aboutBox {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition: all 0.7s 0.2s;
}
@media (max-width: 1023px) {
  .aboutArea.show .aboutBox {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.catalogClassArea {
  padding: 101px 0 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 1023px) {
  .catalogClassArea {
    padding: 60px 0;
  }
}
.catalogClassArea .titleBox {
  text-align: center;
  margin-bottom: 39px;
}
.catalogClassArea .titleBox .title::after {
  margin-left: auto;
  margin-right: auto;
}
.catalogClassArea .decoBox {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.catalogClassArea .decoBox .deco {
  position: absolute;
}
.catalogClassArea .decoBox .deco1 {
  right: 7%;
  top: 27vw;
  width: 11%;
}
@media (max-width: 1023px) {
  .catalogClassArea .decoBox .deco1 {
    display: none;
  }
}
.catalogClassArea .decoBox .deco2 {
  left: 30%;
  top: 11.5vw;
  width: 3%;
}
@media (max-width: 1023px) {
  .catalogClassArea .decoBox .deco2 {
    top: 5vw;
    left: 10%;
    width: 60px;
  }
}
.catalogClassArea .decoBox .deco4 {
  bottom: 3.3vw;
  left: 6%;
  width: 6%;
}
@media (max-width: 1023px) {
  .catalogClassArea .decoBox .deco4 {
    display: none;
  }
}
.catalogClassArea .decoCanvas {
  position: absolute;
  top: 300px;
  left: 0;
  width: 100%;
  height: 70vh;
  z-index: -1;
}
@media (max-width: 1023px) {
  .catalogClassArea .decoCanvas {
    top: 100px;
    height: 50vw;
  }
}
.catalogClassArea .catalogClassBox {
  transition: all 0.4s;
  padding-bottom: 20px;
}
.catalogClassArea .catalogClassBox.hide {
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  transition: all 0.2s;
}
.catalogClassArea .catalogClassList {
  margin: 0 -6px;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .catalogClassArea .catalogClassList:not(.notFull) .catalogClassItem:nth-of-type(1) {
    -ms-flex-order: 4;
        order: 4;
    position: absolute;
    top: 0;
    right: 0;
  }
  .catalogClassArea .catalogClassList:not(.notFull) .catalogClassItem:nth-of-type(1) .Txt {
    padding: 26px 96px 26px 35px;
  }
}
@media (min-width: 1024px) and (max-width: 1540px) {
  .catalogClassArea .catalogClassList:not(.notFull) .catalogClassItem:nth-of-type(1) .Txt {
    padding: 15px 74px 15px 26px;
  }
}
@media (min-width: 1024px) {
  .catalogClassArea .catalogClassList:not(.notFull) .catalogClassItem:nth-of-type(1) .Img1,
  .catalogClassArea .catalogClassList:not(.notFull) .catalogClassItem:nth-of-type(1) .Img2 {
    display: none;
  }
  .catalogClassArea .catalogClassList:not(.notFull) .catalogClassItem:nth-of-type(1) .plus {
    top: 33px;
    right: 35px;
  }
}
@media (min-width: 1024px) and (max-width: 1540px) {
  .catalogClassArea .catalogClassList:not(.notFull) .catalogClassItem:nth-of-type(1) .plus {
    top: 15px;
    right: 15px;
  }
}
@media (min-width: 1024px) {
  .catalogClassArea .catalogClassList:not(.notFull) .catalogClassItem:nth-of-type(2) {
    -ms-flex-order: 1;
        order: 1;
  }
  .catalogClassArea .catalogClassList:not(.notFull) .catalogClassItem:nth-of-type(2) .Img2,
  .catalogClassArea .catalogClassList:not(.notFull) .catalogClassItem:nth-of-type(2) .Img3 {
    display: none;
  }
  .catalogClassArea .catalogClassList:not(.notFull) .catalogClassItem:nth-of-type(3) {
    -ms-flex-order: 3;
        order: 3;
    width: 66.66%;
  }
  .catalogClassArea .catalogClassList:not(.notFull) .catalogClassItem:nth-of-type(3) .Img1,
  .catalogClassArea .catalogClassList:not(.notFull) .catalogClassItem:nth-of-type(3) .Img3 {
    display: none;
  }
  .catalogClassArea .catalogClassList:not(.notFull) .catalogClassItem:nth-of-type(4) {
    -ms-flex-order: 2;
        order: 2;
  }
  .catalogClassArea .catalogClassList:not(.notFull) .catalogClassItem:nth-of-type(4) .Img2,
  .catalogClassArea .catalogClassList:not(.notFull) .catalogClassItem:nth-of-type(4) .Img3 {
    display: none;
  }
  .catalogClassArea .catalogClassList.notFull {
    -ms-flex-pack: center;
        justify-content: center;
  }
  .catalogClassArea .catalogClassList.notFull .catalogClassItem .Img2,
  .catalogClassArea .catalogClassList.notFull .catalogClassItem .Img3 {
    display: none;
  }
}
.catalogClassArea .catalogClassList .catalogClassItem {
  padding: 6px;
  width: 33.33%;
}
@media (max-width: 1023px) {
  .catalogClassArea .catalogClassList .catalogClassItem {
    width: 50%;
    padding: 10px 6px;
  }
}
@media (max-width: 640px) {
  .catalogClassArea .catalogClassList .catalogClassItem {
    width: 100%;
  }
  .catalogClassArea .catalogClassList .catalogClassItem:last-child {
    padding-bottom: 0;
  }
}
.catalogClassArea .catalogClassList .item {
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .catalogClassArea .catalogClassList .item:hover .Img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .catalogClassArea .catalogClassList .item:hover .plus::before {
    background-color: #2ea9df;
  }
}
.catalogClassArea .catalogClassList .Img {
  border-radius: 30px;
  overflow: hidden;
}
.catalogClassArea .catalogClassList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: all 0.5s;
}
.catalogClassArea .catalogClassList .plus {
  -webkit-mask: url(../images/index_catalog/add.png) no-repeat center/100%;
          mask: url(../images/index_catalog/add.png) no-repeat center/100%;
  width: 50px;
  height: 50px;
  position: absolute;
  top: calc(100% - 69px);
  right: 17px;
}
.catalogClassArea .catalogClassList .plus::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 0.5s;
}
.catalogClassArea .catalogClassList .Txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 26px 35px;
}
@media (max-width: 1540px) {
  .catalogClassArea .catalogClassList .Txt {
    padding: 20px 30px;
  }
}
@media (max-width: 1350px) {
  .catalogClassArea .catalogClassList .Txt {
    padding: 15px 25px;
  }
}
.catalogClassArea .catalogClassList .Txt .subtitle {
  font-size: 34px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 6px;
}
@media (max-width: 1540px) {
  .catalogClassArea .catalogClassList .Txt .subtitle {
    font-size: 30px;
  }
}
@media (max-width: 1350px) {
  .catalogClassArea .catalogClassList .Txt .subtitle {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .catalogClassArea .catalogClassList .Txt .subtitle {
    font-size: 24px;
  }
}
.catalogClassArea .catalogClassList .Txt .title {
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 1540px) {
  .catalogClassArea .catalogClassList .Txt .title {
    font-size: 18px;
  }
}
@media (max-width: 1350px) {
  .catalogClassArea .catalogClassList .Txt .title {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .catalogClassArea .catalogClassList .Txt .title {
    font-size: 16px;
  }
}
.catalogClassArea .catalogClassList .Txt .title a {
  color: inherit;
}
.catalogClassArea:not(.show) .topTitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.catalogClassArea:not(.show) .catalogClassBox {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.catalogClassArea.show .topTitle {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.7s;
}
.catalogClassArea.show .catalogClassBox {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.7s 0.2s;
}

.newsArea {
  padding: 236px 0 124px;
  background: url(../images/index_news/bg.png) no-repeat center top/cover;
  margin-top: -123px;
  border-radius: 150px 150px 0 0;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 1540px) {
  .newsArea {
    border-radius: 120px 120px 0 0;
  }
}
@media (max-width: 1350px) {
  .newsArea {
    border-radius: 100px 100px 0 0;
  }
}
@media (max-width: 1023px) {
  .newsArea {
    margin-top: 0;
    padding: 60px 0;
    border-radius: 80px 0 0 0;
    background: url(../images/index_news/bgi.jpg) no-repeat center top/cover;
  }
}
@media (max-width: 767px) {
  .newsArea {
    border-radius: 50px 0 0 0;
  }
}
.newsArea .decoBox {
  position: absolute;
  inset: 0;
  z-index: 1;
}
@media (max-width: 1023px) {
  .newsArea .decoBox {
    display: none;
  }
}
.newsArea .decoBox .deco {
  position: absolute;
}
.newsArea .decoBox .deco1 {
  top: 10.4vw;
  left: 1.5%;
  width: 16%;
}
.newsArea .decoBox .deco2 {
  bottom: -2.7vw;
  right: -0.5%;
  width: 17%;
}
.newsArea .decoBox .deco3 {
  top: 21.3vw;
  left: 53.5%;
  width: 5%;
}
.newsArea .wrap {
  max-width: unset;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media (max-width: 1540px) {
  .newsArea .wrap {
    -ms-flex-pack: start;
        justify-content: start;
  }
}
@media (min-width: 1024px) {
  .newsArea .wrap {
    padding-right: 0;
  }
}
@media (max-width: 1023px) {
  .newsArea .wrap {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.newsArea .left {
  width: 33%;
  max-width: 520px;
  padding: 72px 32px 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: end;
}
@media (max-width: 1540px) {
  .newsArea .left {
    padding: 60px 20px 0 0;
  }
}
@media (max-width: 1350px) {
  .newsArea .left {
    padding: 50px 20px 0 0;
  }
}
@media (max-width: 1023px) {
  .newsArea .left {
    padding: 0 0 20px;
    width: 100%;
    max-width: unset;
    -ms-flex-pack: center;
        justify-content: center;
    text-align: center;
  }
}
.newsArea .left .textBox {
  width: 100%;
  max-width: 346px;
}
@media (max-width: 1023px) {
  .newsArea .left .textBox {
    max-width: unset;
    text-align: center;
  }
}
.newsArea .left .titleBox {
  margin-bottom: 29px;
}
@media (max-width: 767px) {
  .newsArea .left .titleBox {
    margin-bottom: 15px;
  }
}
.newsArea .left .titleBox .title::after {
  margin-top: 32px;
}
@media (max-width: 1023px) {
  .newsArea .left .titleBox .title::after {
    margin: 20px auto 0;
  }
}
@media (max-width: 767px) {
  .newsArea .left .titleBox .title::after {
    margin: 15px auto 0;
  }
}
.newsArea .left .text {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.1px;
  width: 100%;
}
@media (min-width: 1541px) {
  .newsArea .left .text {
    max-width: 340px;
  }
}
@media (max-width: 1540px) {
  .newsArea .left .text {
    font-size: 14px;
  }
}
@media (max-width: 1350px) {
  .newsArea .left .text {
    font-size: 13px;
  }
}
.newsArea .btnBox {
  margin-top: 44px;
}
@media (max-width: 1023px) {
  .newsArea .btnBox {
    margin-top: 0;
  }
  .newsArea .btnBox.ph {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    width: 100%;
  }
}
.newsArea .newsBox {
  width: 67%;
  max-width: 1271px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1540px) {
  .newsArea .newsBox {
    max-width: unset;
  }
}
@media (max-width: 1023px) {
  .newsArea .newsBox {
    width: calc(100% - 20px);
    overflow: unset;
    margin: 0 10px;
  }
}
.newsArea .newsBox .slickBox {
  width: calc(100% - 180px);
  max-width: 907px;
}
@media (max-width: 1023px) {
  .newsArea .newsBox .slickBox {
    width: 100%;
  }
}
.newsArea .newsBox .newsList {
  margin: 0 -21px;
}
@media (max-width: 1540px) {
  .newsArea .newsBox .newsList {
    margin: 0 -15px;
  }
}
@media (max-width: 1350px) {
  .newsArea .newsBox .newsList {
    margin: 0 -10px;
  }
}
@media (min-width: 1024px) {
  .newsArea .newsBox .newsList .slick-list {
    overflow: unset;
  }
}
.newsArea .newsBox .newsList:not(.slick-slider) {
  display: -ms-flexbox;
  display: flex;
}
.newsArea .newsBox .newsList:not(.slick-slider) .newsItem {
  width: 50%;
}
.newsArea .newsBox .newsList .newsItem {
  padding: 0 21px 46px;
  transition: all 0.6s;
}
@media (max-width: 1540px) {
  .newsArea .newsBox .newsList .newsItem {
    padding: 0 15px 46px;
  }
}
@media (max-width: 1350px) {
  .newsArea .newsBox .newsList .newsItem {
    padding: 0 10px 46px;
  }
}
@media (min-width: 1024px) {
  .newsArea .newsBox .newsList .newsItem.active {
    -webkit-transform: translateY(46px);
            transform: translateY(46px);
  }
}
@media (max-width: 1023px) {
  .newsArea .newsBox .newsList .newsItem {
    padding-bottom: 20px;
  }
}
.newsArea .newsBox .newsList .item {
  position: relative;
  padding: 26px 25px 15px;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 2px 6px 30px 0 rgba(233, 238, 246, 0.49);
}
@media (max-width: 1540px) {
  .newsArea .newsBox .newsList .item {
    padding: 20px;
  }
}
@media (max-width: 1350px) {
  .newsArea .newsBox .newsList .item {
    padding: 15px;
  }
}
@media (max-width: 1023px) {
  .newsArea .newsBox .newsList .item {
    padding: 20px;
  }
}
.newsArea .newsBox .newsList .item .Img {
  border-radius: 25px;
  overflow: hidden;
  margin: 0 0 26px;
}
.newsArea .newsBox .newsList .item .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: all 0.5s;
}
@media (min-width: 1024px) {
  .newsArea .newsBox .newsList .item:hover .Img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .newsArea .newsBox .newsList .item:hover .btnBox .style2 .hover {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
  }
  .newsArea .newsBox .newsList .item:hover .classTitle {
    background-color: #2ea9df;
    color: #fff;
  }
  .newsArea .newsBox .newsList .item:hover .classTitle::before {
    color: #fff;
  }
}
.newsArea .newsBox .newsList .Txt {
  padding-left: 5px;
}
.newsArea .newsBox .newsList .textBox {
  height: 154px;
}
@media (max-width: 1540px) {
  .newsArea .newsBox .newsList .textBox {
    height: 140px;
  }
}
@media (max-width: 480px) {
  .newsArea .newsBox .newsList .textBox {
    height: 120px;
  }
}
.newsArea .newsBox .newsList .classTitleBox {
  display: -ms-flexbox;
  display: flex;
}
.newsArea .newsBox .newsList .classTitle {
  background-color: #e4f4fb;
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 15px;
  margin: 0 0 30px;
  transition: all 0.5s;
}
@media (max-width: 1540px) {
  .newsArea .newsBox .newsList .classTitle {
    font-size: 14px;
    margin: 0 0 20px;
  }
}
@media (max-width: 1350px) {
  .newsArea .newsBox .newsList .classTitle {
    font-size: 13px;
    margin: 0 0 10px;
  }
}
.newsArea .newsBox .newsList .classTitle::before {
  content: "#";
  display: inline-block;
  color: #2ea9df;
  padding-right: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  transition: all 0.5s;
}
.newsArea .newsBox .newsList .title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  padding: 0 0 14px;
}
@media (max-width: 1540px) {
  .newsArea .newsBox .newsList .title {
    font-size: 17px;
  }
}
@media (max-width: 1350px) {
  .newsArea .newsBox .newsList .title {
    font-size: 16px;
  }
}
.newsArea .newsBox .newsList .text {
  font-size: 15px;
  color: #666666;
  letter-spacing: 0.3px;
  line-height: 1.7;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1540px) {
  .newsArea .newsBox .newsList .text {
    font-size: 14px;
  }
}
@media (max-width: 1350px) {
  .newsArea .newsBox .newsList .text {
    font-size: 13px;
  }
}
.newsArea .newsBox .newsList .btnBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: end;
  margin: 0;
}
.newsArea .slickBtnBox {
  margin: 48px -71px 0;
  -ms-flex-pack: end;
      justify-content: end;
}
@media (max-width: 1540px) {
  .newsArea .slickBtnBox {
    -ms-flex-pack: center;
        justify-content: center;
    margin: 48px 0 0;
  }
  .newsArea .slickBtnBox .nowNumList .nowNumItem {
    width: auto;
  }
}
@media (max-width: 1023px) {
  .newsArea .slickBtnBox {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 40px);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    margin: 0;
  }
}
.newsArea .slickBtnBox:has(.line) .lineBox {
  width: calc(100% - 92px);
}
.newsArea .slickBtnBox:has(.line) .right {
  max-width: 886px;
}
@media (max-width: 1023px) {
  .newsArea .slickBtnBox:has(.line) .right {
    display: none;
  }
}
.newsArea .slickBtnBox:has(.line) .slickBtn.arrowPrev {
  margin: 0 6px 0 16px;
}
@media (max-width: 1023px) {
  .newsArea .slickBtnBox:has(.line) .slickBtn.arrowPrev {
    margin-left: 0;
  }
}
.newsArea:not(.show) .left {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}
@media (max-width: 1023px) {
  .newsArea:not(.show) .left {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.newsArea:not(.show) .newsBox {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
@media (max-width: 1023px) {
  .newsArea:not(.show) .newsBox {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.newsArea.show .left {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition: all 0.7s;
}
@media (max-width: 1023px) {
  .newsArea.show .left {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.newsArea.show .newsBox {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition: all 0.7s 0.2s;
}
@media (max-width: 1023px) {
  .newsArea.show .newsBox {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}