@charset "UTF-8";
.brandArea .brandBox .btnBox, .brandArea .brandBox .textEditor, .brandArea .brandBox .item .rightBox .rightSide .Img, .brandArea .brandBox .item .rightBox .leftSide > .Img, .brandArea .brandBox .item .rightBox .leftSide .ImgBox, .brandArea .brandBox .item .leftImg, .brandArea .brandBox .dataBox, .brandArea .brandNavBox .brandNavList .item .Img, .brandArea .brandNavBox .brandNavList .item .line, .dmArea .dmBox .item .Txt .linkWrap .text, .dmArea .dmBox .item .Txt .linkWrap a .star, .dmArea .dmBox .item .ImgBox .Img, .banksArea .banksList .item .Txt .text, .homeAboutArea .homeAboutBox .homeAboutNavList .item .Txt, .homeAboutArea .homeAboutBox .homeAboutNavList .item, .homeAboutArea .homeAboutBox .homeAboutList .item .Img img, .homeAboutArea .homeAboutBox .homeAboutList .item .Img, .newsArea .newsList .item .Txt .textBox .newsInfoBox .readMore, .newsArea .newsList .item .Img img, .newsArea .newsList .item .Img, .bannerArea .markerBox .item, .popWin .close::before, .popWin .close::after, .popWin .close {
  -webkit-transition: all 0.5s ease-in-out;
  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;
  -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: 100dvh;
  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: 800px;
  max-width: 90%;
  max-height: 85vh;
  opacity: 0;
  background-color: #fff;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.popWin .popContent {
  max-height: 88vh;
  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: #dd006f;
  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: 1181px) {
  .popWin .close:hover {
    background-color: #dd006f;
  }
  .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: 1180px) {
  .popWin .popContent {
    max-height: calc(100vh - 150px);
    /*以防有不支援dvh的瀏覽器*/
    max-height: calc(100dvh - 150px);
  }
}

.mainArea {
  padding: 0;
}

.bannerArea::before {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff1f5), to(transparent));
  background: linear-gradient(to bottom, #fff1f5 0%, transparent 100%);
  top: 0;
  left: 0;
}
.bannerArea .bannerBox {
  padding: 40px 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
  gap: 15px;
}
@media (max-width: 1180px) {
  .bannerArea .bannerBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
    padding: 20px 20px 0;
  }
}
.bannerArea .markerBox {
  width: 100%;
  max-width: 340px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1900px) {
  .bannerArea .markerBox {
    max-width: 19%;
  }
}
@media (max-width: 1180px) {
  .bannerArea .markerBox {
    width: calc(100% + 40px);
    max-width: unset;
    margin: 0 -20px;
  }
}
.bannerArea .markerBox .markerItem {
  margin-bottom: 15px;
}
.bannerArea .markerBox .markerItem:last-child {
  margin: 0;
}
.bannerArea .markerBox .slick-slide {
  margin: 0 6px;
}
.bannerArea .markerBox .item {
  width: 100%;
  border: solid 2px #ffffff;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .bannerArea .markerBox .item {
    max-width: 340px;
  }
}
@media (max-width: 768px) {
  .bannerArea .markerBox .item {
    max-width: 280px;
  }
}
@media (max-width: 480px) {
  .bannerArea .markerBox .item {
    max-width: 180px;
  }
}
@media (min-width: 1181px) {
  .bannerArea .markerBox .item:has(a):hover {
    border-color: #dd006f;
  }
}
.bannerArea .markerBox .item .Img {
  width: 100%;
}
.bannerArea .markerBox .item .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.bannerArea .rightBox {
  width: 100%;
  position: relative;
}
.bannerArea .rightBox:not(.single) {
  max-width: calc(100% - 355px);
}
@media (max-width: 1900px) {
  .bannerArea .rightBox:not(.single) {
    max-width: 79.5%;
  }
}
@media (max-width: 1180px) {
  .bannerArea .rightBox:not(.single) {
    max-width: 100%;
  }
}
.bannerArea .rightBox .arrowBox {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 40px;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
@media (max-width: 768px) {
  .bannerArea .rightBox .arrowBox {
    padding: 0 20px;
  }
}
.bannerArea .bannerList {
  width: 100%;
}
.bannerArea .bannerList .item {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.bannerArea .bannerList .item .Img {
  width: 100%;
}
.bannerArea .bannerList .item .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.newsArea {
  padding: 100px 0;
}
@media (max-width: 1180px) {
  .newsArea {
    padding: 60px 0;
  }
}
.newsArea .titleBox {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 870px) {
  .newsArea .titleBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.newsArea .newsBox {
  position: relative;
  will-change: transform;
}
.newsArea .newsBox .arrowBox {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
@media (max-width: 1800px) {
  .newsArea .newsBox .arrowBox {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: static;
    margin-top: 40px;
  }
}
.newsArea .newsBox .arrowBox .arrowPrev {
  margin-left: -90px;
}
@media (max-width: 1800px) {
  .newsArea .newsBox .arrowBox .arrowPrev {
    margin: 0;
  }
}
.newsArea .newsBox .arrowBox .arrowNext {
  margin-right: -90px;
}
@media (max-width: 1800px) {
  .newsArea .newsBox .arrowBox .arrowNext {
    margin: 0;
  }
}
.newsArea .newsList .slick-list {
  margin: 0 -10px;
}
.newsArea .newsList .slick-slide {
  padding: 0 10px;
}
.newsArea .newsList .item {
  width: 100%;
  max-width: 360px;
  position: relative;
  margin: 0 auto;
}
@media (min-width: 1181px) {
  .newsArea .newsList .item:hover .Img {
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
  .newsArea .newsList .item:hover .Img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .newsArea .newsList .item:hover .Txt .newsInfoBox .readMore {
    color: #dd006f;
  }
}
.newsArea .newsList .item .Img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.newsArea .newsList .item .Img.emptyImg {
  aspect-ratio: 1;
}
.newsArea .newsList .item .Img.emptyImg img {
  width: 150px;
}
.newsArea .newsList .item .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.newsArea .newsList .item .Txt {
  margin-top: 30px;
}
.newsArea .newsList .item .Txt .topBox {
  width: 100%;
  border-bottom: solid 1px #cfcfcf;
}
.newsArea .newsList .item .Txt .topBox > div {
  position: relative;
  padding: 0 10px 12px 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  gap: 10px;
}
.newsArea .newsList .item .Txt .topBox > div::before {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 100%;
  height: 2px;
  background: #dd006f;
  left: 0;
  bottom: 0;
}
.newsArea .newsList .item .Txt .topBox .classTitle {
  color: #dd006f;
  font-size: 12px;
  font-weight: 400;
  line-height: calc(12 / 12 * 1.5);
  letter-spacing: calc(12 * 60 / 1000 * 1px);
  font-family: "PT Serif", Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.newsArea .newsList .item .Txt .textBox {
  margin-top: 20px;
}
.newsArea .newsList .item .Txt .textBox .title {
  height: 54px;
  color: #231815;
  font-size: 18px;
  font-weight: 400;
  line-height: calc(18 / 18 * 1.5);
  letter-spacing: calc(18 * 60 / 1000 * 1px);
  font-family: "PT Serif", Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newsArea .newsList .item .Txt .textBox .title a::before {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  pointer-events: auto;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.newsArea .newsList .item .Txt .textBox .newsInfoBox {
  margin-top: 20px;
  color: #231815;
  font-size: 13px;
  font-weight: 400;
  line-height: calc(13 / 13 * 1.5);
  letter-spacing: calc(13 * 60 / 1000 * 1px);
  font-family: "PT Serif", Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  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;
  gap: 5px;
}
.homeAboutArea {
  max-height: 1012px;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
@media (max-width: 1180px) {
  .homeAboutArea {
    padding: 60px 0;
  }
}
@media (max-width: 900px) {
  .homeAboutArea {
    max-height: unset;
  }
}
.homeAboutArea .wrap {
  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;
  gap: 180px;
}
@media (max-width: 1540px) {
  .homeAboutArea .wrap {
    gap: 80px;
  }
}
@media (max-width: 1400px) {
  .homeAboutArea .wrap {
    gap: 30px;
  }
}
@media (max-width: 900px) {
  .homeAboutArea .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.homeAboutArea .leftBox {
  width: 100%;
  max-width: 370px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.homeAboutArea .leftBox .titleBox {
  width: 100%;
  -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;
  gap: 0;
}
@media (max-width: 900px) {
  .homeAboutArea .leftBox .titleBox {
    margin: 0;
  }
}
.homeAboutArea .leftBox .titleBox.active .textBox::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.homeAboutArea .leftBox .titleBox .textBox {
  width: 100%;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
.homeAboutArea .leftBox .titleBox .textBox::before {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 100%;
  height: 1px;
  background: #dd006f;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.homeAboutArea .leftBox .titleBox .textBox .title {
  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: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
}
.homeAboutArea .leftBox .titleBox .textBox .title .top {
  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;
  gap: 15px;
}
.homeAboutArea .leftBox .titleBox .textBox .title .top svg {
  width: 30px;
  height: 24px;
  margin-top: 4px;
}
@media (max-width: 480px) {
  .homeAboutArea .leftBox .titleBox .textBox .title .top svg {
    width: 15px;
    height: 12px;
    margin-top: 2px;
  }
}
.homeAboutArea .leftBox .titleBox .smallTagBox {
  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;
  gap: 15px;
}
@media (max-width: 480px) {
  .homeAboutArea .leftBox .titleBox .smallTagBox {
    gap: 10px;
  }
}
.homeAboutArea .leftBox .titleBox .smallTagBox .smallTag {
  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;
  gap: 5px;
}
.homeAboutArea .leftBox .titleBox .smallTagBox .smallTag .content {
  color: #231815;
  font-size: 24px;
  font-weight: 400;
  line-height: calc(24 / 24 * 1.5);
  letter-spacing: calc(24 * 60 / 1000 * 1px);
  font-family: "PT Serif", Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
@media (max-width: 480px) {
  .homeAboutArea .leftBox .titleBox .smallTagBox .smallTag .content {
    font-size: 18px;
  }
}
.homeAboutArea .leftBox .titleBox .linkBox {
  margin-top: 40px;
}
@media (max-width: 900px) {
  .homeAboutArea .leftBox .titleBox .linkBox {
    margin-top: 20px;
  }
}
.homeAboutArea .leftBox .titleBox .linkBox .linkWrap {
  height: 36px;
  background: #dd006f;
  border: solid 1px #dd006f;
  border-radius: 99px;
  padding: 0 20px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: calc(16 / 16 * 1.5);
  letter-spacing: calc(16 * 60 / 1000 * 1px);
  font-family: "PT Serif", Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  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;
  gap: 10px;
}
@media (min-width: 1181px) {
  .homeAboutArea .leftBox .titleBox .linkBox .linkWrap:hover {
    background: #ffffff;
    color: #dd006f;
  }
}
.homeAboutArea .leftBox .titleBox .linkBox .linkWrap svg {
  width: 16px;
  height: 16px;
}
.homeAboutArea .homeAboutBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
  gap: 0;
}
@media (max-width: 1400px) {
  .homeAboutArea .homeAboutBox {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (max-width: 480px) {
  .homeAboutArea .homeAboutBox {
    width: 100%;
    position: relative;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 0 70px;
  }
  .homeAboutArea .homeAboutBox::before {
    content: "";
    position: absolute;
    pointer-events: none;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    width: calc(100% + 40px);
    height: 100%;
    background: #ffffff;
    left: -20px;
    top: 0;
  }
}
.homeAboutArea .homeAboutBox .homeAboutList {
  width: 406px;
  height: 812px;
  background: url("../images/cellphone_base.png") no-repeat top center;
  background-size: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 2;
  padding: 170px 19px 0 17px;
  margin: 0 !important;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}
.homeAboutArea .homeAboutBox .homeAboutList::before {
  content: "#";
  position: absolute;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 100%;
  max-width: 350px;
  height: 40px;
  background: #fff1f5;
  border: solid 1px #dd006f;
  border-radius: 99px;
  bottom: 32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 0 20px;
  color: #dd006f;
  font-size: 24px;
  font-weight: 700;
  line-height: calc(24 / 24 * 1.5);
  letter-spacing: calc(24 * 60 / 1000 * 1px);
  font-family: "PT Serif", Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
@media (max-width: 480px) {
  .homeAboutArea .homeAboutBox .homeAboutList::before {
    content: "";
    max-width: 320px;
    height: 32px;
    bottom: -50px;
    color: #dd006f;
    font-size: 18px;
    font-weight: 700;
    line-height: calc(20 / 18 * 1.5);
    letter-spacing: calc(18 * 60 / 1000 * 1px);
    font-family: "PT Serif", Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  }
}
@media (max-width: 480px) {
  .homeAboutArea .homeAboutBox .homeAboutList {
    width: 320px;
    height: 602px;
    background: url("../images/cellphone_system.png") no-repeat top center;
    background-size: contain;
    padding: 100px 0 0;
  }
}
@media (min-width: 481px) {
  .homeAboutArea .homeAboutBox .homeAboutList .slick-slide {
    opacity: 1 !important;
  }
}
@media (min-width: 1181px) {
  .homeAboutArea .homeAboutBox .homeAboutList .item:has(a):hover .Img {
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
  .homeAboutArea .homeAboutBox .homeAboutList .item:has(a):hover .Img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.homeAboutArea .homeAboutBox .homeAboutList .item .Img {
  width: 370px;
  height: 430px;
  position: relative;
  overflow: hidden;
  opacity: 0;
}
@media (max-width: 480px) {
  .homeAboutArea .homeAboutBox .homeAboutList .item .Img {
    width: 320px;
    height: 372px;
    opacity: 1;
  }
}
.homeAboutArea .homeAboutBox .homeAboutList .item .Img.change {
  -webkit-animation: cellphonePhotoChange_leave 0.8s linear;
          animation: cellphonePhotoChange_leave 0.8s linear;
}
@media (max-width: 480px) {
  .homeAboutArea .homeAboutBox .homeAboutList .item .Img.change {
    -webkit-animation: none;
            animation: none;
  }
}
.homeAboutArea .homeAboutBox .homeAboutList .item .Img.readyToEnter {
  -webkit-animation: cellphonePhotoChange_enter 0.8s linear forwards;
          animation: cellphonePhotoChange_enter 0.8s linear forwards;
}
@media (max-width: 480px) {
  .homeAboutArea .homeAboutBox .homeAboutList .item .Img.readyToEnter {
    -webkit-animation: none;
            animation: none;
  }
}
.homeAboutArea .homeAboutBox .homeAboutList .item .Img.emptyImg img {
  width: 150px;
}
.homeAboutArea .homeAboutBox .homeAboutList .item .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.homeAboutArea .homeAboutBox .homeAboutList .item .Txt {
  width: 100%;
  max-width: 255px;
  height: 40px;
  margin: 140px auto 0;
  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: 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;
  gap: 0;
}
@media (max-width: 480px) {
  .homeAboutArea .homeAboutBox .homeAboutList .item .Txt {
    max-width: 245px;
    height: 32px;
    overflow: visible;
    margin-top: 148px;
  }
}
.homeAboutArea .homeAboutBox .homeAboutList .item .Txt.change .title {
  -webkit-animation: cellphoneTxtChange_leave 0.8s linear;
          animation: cellphoneTxtChange_leave 0.8s linear;
}
@media (max-width: 480px) {
  .homeAboutArea .homeAboutBox .homeAboutList .item .Txt.change .title {
    -webkit-animation: none;
            animation: none;
  }
}
.homeAboutArea .homeAboutBox .homeAboutList .item .Txt.show .title {
  -webkit-animation: cellphoneTxtChange_enter 0.8s linear forwards;
          animation: cellphoneTxtChange_enter 0.8s linear forwards;
}
@media (max-width: 480px) {
  .homeAboutArea .homeAboutBox .homeAboutList .item .Txt.show .title {
    -webkit-animation: none;
            animation: none;
  }
}
.homeAboutArea .homeAboutBox .homeAboutList .item .Txt .title {
  position: relative;
  -webkit-transform: translateY(120%);
          transform: translateY(120%);
  color: #dd006f;
  font-size: 18px;
  font-weight: 400;
  line-height: calc(18 / 18 * 1.5);
  letter-spacing: calc(18 * 60 / 1000 * 1px);
  font-family: "PT Serif", Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
@media (max-width: 480px) {
  .homeAboutArea .homeAboutBox .homeAboutList .item .Txt .title {
    font-size: 14px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .homeAboutArea .homeAboutBox .homeAboutList .item .Txt .title::before {
    content: "#";
    position: absolute;
    pointer-events: none;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    font-size: 24px;
    top: -8px;
    left: -18px;
  }
}
.homeAboutArea .homeAboutBox .homeAboutNavList {
  width: 100%;
  max-width: 920px;
  margin-left: -200px;
}
@media (max-width: 1400px) {
  .homeAboutArea .homeAboutBox .homeAboutNavList {
    display: none;
  }
}
.homeAboutArea .homeAboutBox .homeAboutNavList .slick-slide {
  padding: 20px;
}
.homeAboutArea .homeAboutBox .homeAboutNavList .item {
  width: 240px;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.homeAboutArea .homeAboutBox .homeAboutNavList .item.hide {
  opacity: 0;
}
.homeAboutArea .homeAboutBox .homeAboutNavList .item.current {
  -webkit-animation: cellphoneNavChange 0.8s linear forwards;
          animation: cellphoneNavChange 0.8s linear forwards;
}
.homeAboutArea .homeAboutBox .homeAboutNavList .item.current .Txt {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
}
.homeAboutArea .homeAboutBox .homeAboutNavList .item.noAnimation.current {
  -webkit-animation: none;
          animation: none;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.homeAboutArea .homeAboutBox .homeAboutNavList .item .ImgBox {
  width: 240px;
  height: 350px;
  background: url("../images/cellphone_system_nav.png") no-repeat top center;
  background-size: contain;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  padding-top: 35px;
  margin-bottom: 30px;
}
.homeAboutArea .homeAboutBox .homeAboutNavList .item .ImgBox .Img {
  width: 100%;
  height: 279px;
}
.homeAboutArea .homeAboutBox .homeAboutNavList .item .ImgBox .Img.emptyImg img {
  width: 100px;
}
.homeAboutArea .homeAboutBox .homeAboutNavList .item .ImgBox .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.homeAboutArea .homeAboutBox .homeAboutNavList .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: 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;
  gap: 10px;
}
.homeAboutArea .homeAboutBox .homeAboutNavList .item .Txt .hashTag {
  color: #231815;
}
.homeAboutArea .homeAboutBox .homeAboutNavList .item .Txt .title {
  color: #231815;
  font-size: 16px;
  font-weight: 400;
  line-height: calc(16 / 16 * 1.5);
  letter-spacing: calc(16 * 60 / 1000 * 1px);
  font-family: "PT Serif", Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.homeAboutArea .bottomBox {
  position: relative;
  z-index: 2;
  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;
  gap: 40px;
}
@media (max-width: 900px) {
  .homeAboutArea .bottomBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (max-width: 600px) {
  .homeAboutArea .bottomBox {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .homeAboutArea .bottomBox .dotsBox {
    position: absolute;
    left: 50%;
    top: -210px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.homeAboutArea .bottomBox .dotsBox .slick-dots {
  position: static;
  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;
  gap: 20px;
}
@media (max-width: 480px) {
  .homeAboutArea .bottomBox .dotsBox .slick-dots {
    gap: 5px;
  }
}
.homeAboutArea .bottomBox .dotsBox .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0;
}
@media (max-width: 480px) {
  .homeAboutArea .bottomBox .dotsBox .slick-dots li {
    width: 6px;
    height: 6px;
  }
}
.homeAboutArea .bottomBox .dotsBox .slick-dots li.slick-active button {
  background: #dd006f;
  border-color: #dd006f;
}
.homeAboutArea .bottomBox .dotsBox .slick-dots li button {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 50%;
  border: solid 1px #281c1a;
  padding: 0;
}
@media (max-width: 480px) {
  .homeAboutArea .bottomBox .dotsBox .slick-dots li button {
    background: #d5d5d5;
    border: none;
  }
}
.homeAboutArea .bottomBox .dotsBox .slick-dots li button::before {
  display: none;
}
.homeAboutArea .bg {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.homeAboutArea .bg::before {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 50%;
  height: 100%;
  background: #ffd7e9;
  left: 0;
  top: 0;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: 0.8s all;
  transition: 0.8s all;
}
.homeAboutArea .bg::after {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 50%;
  height: 100%;
  background: #ffcee3;
  right: 0;
  top: 0;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: 0.8s all;
  transition: 0.8s all;
}
.homeAboutArea .bg.active::before, .homeAboutArea .bg.active::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.homeAboutArea .bg .marquee {
  width: 100%;
  height: 80px;
  position: absolute;
  left: 0;
  z-index: 2;
  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;
  gap: 0;
}
.homeAboutArea .bg .marquee:first-child {
  top: 125px;
}
.homeAboutArea .bg .marquee:last-child {
  bottom: 125px;
}
.homeAboutArea .bg .marquee:last-child i {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.homeAboutArea .bg .marquee i {
  display: block;
  width: 1500px;
  height: 80px;
  background: url("../images/poyaMarquee.png") no-repeat left center;
  background-size: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding-right: 40px;
}

.banksArea {
  padding: 100px 0;
}
@media (max-width: 1180px) {
  .banksArea {
    padding: 60px 0;
  }
}
.banksArea .banksBox {
  position: relative;
}
.banksArea .banksBox .arrowBox {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
@media (max-width: 1800px) {
  .banksArea .banksBox .arrowBox {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: static;
    margin-top: 40px;
  }
}
.banksArea .banksBox .arrowBox .arrowPrev {
  margin-left: -90px;
}
@media (max-width: 1800px) {
  .banksArea .banksBox .arrowBox .arrowPrev {
    margin: 0;
  }
}
.banksArea .banksBox .arrowBox .arrowNext {
  margin-right: -90px;
}
@media (max-width: 1800px) {
  .banksArea .banksBox .arrowBox .arrowNext {
    margin: 0;
  }
}
.banksArea .banksList .slick-list {
  margin: 0 -40px;
}
@media (max-width: 1540px) {
  .banksArea .banksList .slick-list {
    margin: 0;
  }
}
.banksArea .banksList .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banksArea .banksList .slick-slide {
  height: inherit;
  border-right: solid 1px #ffd7e9;
  padding: 0 35px 0 50px;
}
@media (max-width: 1540px) {
  .banksArea .banksList .slick-slide {
    padding: 0 30px;
  }
}
@media (max-width: 870px) {
  .banksArea .banksList .slick-slide {
    border: none;
  }
}
@media (max-width: 480px) {
  .banksArea .banksList .slick-slide {
    padding: 0 15px;
  }
}
.banksArea .banksList .slick-slide > div {
  height: 100%;
}
.banksArea .banksList .banksItem {
  height: 100%;
}
.banksArea .banksList .item {
  height: 100%;
  position: relative;
  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;
  gap: 40px;
}
@media (min-width: 1181px) {
  .banksArea .banksList .item:hover .Txt .text,
  .banksArea .banksList .item:hover .Txt .linkWrap {
    color: #dd006f;
  }
}
@media (max-width: 1540px) {
  .banksArea .banksList .item {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .banksArea .banksList .item {
    -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;
  }
}
.banksArea .banksList .item .Img {
  width: 100%;
  max-width: 180px;
}
@media (max-width: 1540px) {
  .banksArea .banksList .item .Img {
    max-width: 120px;
  }
}
@media (max-width: 480px) {
  .banksArea .banksList .item .Img {
    max-width: 180px;
  }
}
.banksArea .banksList .item .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.banksArea .banksList .item .Txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.banksArea .banksList .item .Txt .topBox {
  border-bottom: solid 1px #cfcfcf;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.banksArea .banksList .item .Txt .topBox::before {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 80px;
  height: 2px;
  background: #dd006f;
  left: 0;
  bottom: 0;
}
@media (max-width: 480px) {
  .banksArea .banksList .item .Txt .topBox::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (max-width: 480px) {
  .banksArea .banksList .item .Txt .topBox {
    text-align: center;
  }
}
.banksArea .banksList .item .Txt .topBox .newsInfoBox {
  height: 30px;
  background: #ffd7e9;
  border-radius: 5px;
  padding: 0 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  gap: 0;
  color: #dd006f;
  font-size: 16px;
  font-weight: 400;
  line-height: calc(16 / 16 * 1.5);
  letter-spacing: calc(16 * 60 / 1000 * 1px);
  font-family: "PT Serif", Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.banksArea .banksList .item .Txt .text {
  color: #231815;
  font-size: 16px;
  font-weight: 400;
  line-height: calc(16 / 16 * 1.5);
  letter-spacing: calc(16 * 60 / 1000 * 1px);
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.banksArea .banksList .item .Txt .linkWrap {
  display: block;
  margin-top: 20px;
  color: #231815;
  font-size: 13px;
  font-weight: 400;
  line-height: calc(13 / 13 * 1.5);
  letter-spacing: calc(13 * 60 / 1000 * 1px);
  font-family: "PT Serif", Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.banksArea .banksList .item .Txt .linkWrap::before {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  pointer-events: auto;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.banksArea .btnBox {
  margin-top: 60px;
}
@media (max-width: 1800px) {
  .banksArea .btnBox {
    margin-top: 40px;
  }
}

.dmArea {
  position: relative;
  padding: 160px 0;
}
@media (max-width: 1180px) {
  .dmArea {
    padding: 60px 0;
  }
}
.dmArea .dmBox .item {
  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;
  gap: 120px;
}
@media (max-width: 1500px) {
  .dmArea .dmBox .item {
    gap: 60px;
  }
}
@media (max-width: 1180px) {
  .dmArea .dmBox .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.dmArea .dmBox .item .ImgBox {
  width: 100%;
  max-width: 750px;
  -webkit-filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
  padding: 0 110px;
}
@media (max-width: 1500px) {
  .dmArea .dmBox .item .ImgBox {
    max-width: 525px;
    padding: 0;
  }
}
.dmArea .dmBox .item .ImgBox .Img {
  width: 100%;
}
@media (min-width: 1181px) {
  .dmArea .dmBox .item .ImgBox .Img:has(a):hover {
    opacity: 0.8;
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
}
.dmArea .dmBox .item .ImgBox .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.dmArea .dmBox .item .Txt {
  width: 100%;
  max-width: 370px;
}
@media (max-width: 1180px) {
  .dmArea .dmBox .item .Txt {
    max-width: 525px;
  }
}
.dmArea .dmBox .item .Txt .titleBox {
  width: 100%;
  -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;
  position: relative;
  gap: 5px;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.dmArea .dmBox .item .Txt .titleBox::before {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 100%;
  height: 1px;
  background: #dd006f;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: 0.8s all;
  transition: 0.8s all;
}
.dmArea .dmBox .item .Txt .titleBox.active::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.dmArea .dmBox .item .Txt .titleBox .subtitle {
  color: #dd006f;
  font-size: 22px;
  font-weight: 400;
  line-height: calc(22 / 22 * 1.5);
  letter-spacing: calc(22 * 60 / 1000 * 1px);
  font-family: "PT Serif", Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.dmArea .dmBox .item .Txt .titleBox .star {
  display: block;
  width: 12px;
  height: 12px;
  background: #dd006f;
  border-radius: 50%;
  position: absolute;
  top: -12px;
  right: 30px;
}
.dmArea .dmBox .item .Txt .titleBox .star i {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.dmArea .dmBox .item .Txt .titleBox .star i::before {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 100%;
  height: 2px;
  background: #dd006f;
  left: 0;
  top: 19px;
  -webkit-animation: starShinny_x 1s ease-in-out infinite alternate;
          animation: starShinny_x 1s ease-in-out infinite alternate;
}
.dmArea .dmBox .item .Txt .titleBox .star i::after {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 2px;
  height: 100%;
  background: #dd006f;
  left: 19px;
  top: 0;
  -webkit-animation: starShinny 0.75s ease-in-out infinite alternate;
          animation: starShinny 0.75s ease-in-out infinite alternate;
}
.dmArea .dmBox .item .Txt .titleBox .star i:first-child {
  height: 60px;
}
.dmArea .dmBox .item .Txt .titleBox .star i:first-child::before {
  top: 29px;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.dmArea .dmBox .item .Txt .titleBox .star i:first-child::after {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.dmArea .dmBox .item .Txt .titleBox .star i:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.dmArea .dmBox .item .Txt .title {
  color: #231815;
  font-size: 24px;
  font-weight: 400;
  line-height: calc(24 / 24 * 1.5);
  letter-spacing: calc(24 * 60 / 1000 * 1px);
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
@media (max-width: 480px) {
  .dmArea .dmBox .item .Txt .title {
    font-size: 18px;
  }
}
.dmArea .dmBox .item .Txt .linkWrap {
  width: 200px;
  height: 200px;
  position: relative;
  margin-top: 60px;
  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;
  gap: 0;
}
@media (min-width: 1181px) {
  .dmArea .dmBox .item .Txt .linkWrap:hover a .star i::before {
    -webkit-animation: starShinny_x 1s ease-in-out infinite alternate;
            animation: starShinny_x 1s ease-in-out infinite alternate;
  }
  .dmArea .dmBox .item .Txt .linkWrap:hover a .star i::after {
    -webkit-animation: starShinny 0.75s ease-in-out infinite alternate;
            animation: starShinny 0.75s ease-in-out infinite alternate;
  }
  .dmArea .dmBox .item .Txt .linkWrap:hover a .star i:first-child::before {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  .dmArea .dmBox .item .Txt .linkWrap:hover a .star i:first-child::after {
    -webkit-animation-delay: 0.25s;
            animation-delay: 0.25s;
  }
  .dmArea .dmBox .item .Txt .linkWrap:hover .text {
    -webkit-filter: brightness(0);
            filter: brightness(0);
  }
}
@media (max-width: 1180px) {
  .dmArea .dmBox .item .Txt .linkWrap {
    margin: 40px auto 0;
  }
}
.dmArea .dmBox .item .Txt .linkWrap a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: calc(16 / 16 * 1.5);
  letter-spacing: calc(16 * 60 / 1000 * 1px);
  font-family: "PT Serif", Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  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;
  gap: 20px;
}
.dmArea .dmBox .item .Txt .linkWrap a::before {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  pointer-events: auto;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.dmArea .dmBox .item .Txt .linkWrap a .star {
  display: block;
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  position: relative;
}
.dmArea .dmBox .item .Txt .linkWrap a .star i {
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.dmArea .dmBox .item .Txt .linkWrap a .star i::before {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 100%;
  height: 2px;
  background: #ffffff;
  left: 0;
  top: 8px;
}
.dmArea .dmBox .item .Txt .linkWrap a .star i::after {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 2px;
  height: 100%;
  background: #ffffff;
  left: 8px;
  top: 0;
}
.dmArea .dmBox .item .Txt .linkWrap a .star i:first-child {
  height: 30px;
}
.dmArea .dmBox .item .Txt .linkWrap a .star i:first-child::before {
  top: 14px;
}
.dmArea .dmBox .item .Txt .linkWrap a .star i:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.dmArea .dmBox .item .Txt .linkWrap .text {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/home_dmBtnText.png") no-repeat center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-animation: rotate 30s linear infinite;
          animation: rotate 30s linear infinite;
}
.dmArea .dmBox .item .Txt .linkWrap .btnBG {
  display: block;
  width: 150px;
  height: 150px;
  background: url("../images/home_dmBtn.png") no-repeat center;
  background-size: contain;
  position: absolute;
  animation: rotate 60s linear infinite reverse;
  z-index: -1;
}
.dmArea .bg {
  background: url("../images/home_dmBG.jpg") no-repeat top center;
  background-size: cover;
  background-color: #ffe3f0;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -3;
}

.brandArea {
  background: #fff1f5;
  padding: 100px 0;
}
@media (max-width: 1180px) {
  .brandArea {
    padding: 60px 0;
  }
}
.brandArea .titleBox {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.brandArea .brandNavBox {
  width: 100%;
  max-width: 1260px;
  border-bottom: solid 1px #cfcfcf;
  overflow-y: clip;
  margin: 0 auto 75px;
}
@media (max-width: 1180px) {
  .brandArea .brandNavBox {
    overflow-x: auto;
  }
  .brandArea .brandNavBox::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
    background-color: #f1f1f1;
  }
  .brandArea .brandNavBox::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #f1f1f1;
  }
  .brandArea .brandNavBox::-webkit-scrollbar-thumb {
    background: #dd006f;
  }
}
@media (max-width: 768px) {
  .brandArea .brandNavBox {
    margin-bottom: 40px;
  }
}
.brandArea .brandNavBox .scrollHint {
  display: none;
}
.brandArea .brandNavBox .brandNavList {
  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;
  gap: 40px;
}
@media (max-width: 1460px) {
  .brandArea .brandNavBox .brandNavList {
    min-width: 920px;
    gap: 20px;
    padding: 0 50px;
  }
}
.brandArea .brandNavBox .brandNavList .item {
  width: 130px;
  position: relative;
  padding-bottom: 20px;
}
@media (min-width: 1181px) {
  .brandArea .brandNavBox .brandNavList .item:hover .line {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .brandArea .brandNavBox .brandNavList .item:hover .Img {
    -webkit-filter: none;
            filter: none;
  }
}
@media (max-width: 1460px) {
  .brandArea .brandNavBox .brandNavList .item {
    width: 100px;
  }
}
.brandArea .brandNavBox .brandNavList .item.current .line {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.brandArea .brandNavBox .brandNavList .item.current .Img {
  -webkit-filter: none;
          filter: none;
}
.brandArea .brandNavBox .brandNavList .item .line {
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: -1px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
@media (max-width: 1180px) {
  .brandArea .brandNavBox .brandNavList .item .line {
    display: none;
  }
}
.brandArea .brandNavBox .brandNavList .item a {
  display: block;
}
.brandArea .brandNavBox .brandNavList .item .Img {
  width: 100%;
  -webkit-filter: grayscale(1) brightness(0);
          filter: grayscale(1) brightness(0);
}
.brandArea .brandNavBox .brandNavList .item .Img.observer:not(.loaded), .brandArea .brandNavBox .brandNavList .item .Img.observerSlick:not(.loaded) {
  background: none;
  -webkit-animation: none;
          animation: none;
}
.brandArea .brandNavBox .brandNavList .item .Img img {
  -webkit-backface-visibility: none;
          backface-visibility: none;
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.brandArea .brandBox {
  position: relative;
}
.brandArea .brandBox .dataBox.hide {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition: 0s;
  transition: 0s;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
}
.brandArea .brandBox .item {
  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;
  gap: 50px;
}
@media (max-width: 1640px) {
  .brandArea .brandBox .item {
    gap: 30px;
  }
}
@media (max-width: 1360px) {
  .brandArea .brandBox .item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 768px) {
  .brandArea .brandBox .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 480px) {
  .brandArea .brandBox .item {
    gap: 20px;
  }
}
.brandArea .brandBox .item .leftImg {
  width: 100%;
  max-width: 820px;
  border-radius: 25px;
  overflow: hidden;
}
@media (max-width: 1560px) {
  .brandArea .brandBox .item .leftImg {
    max-width: calc(100% - 575px);
  }
}
@media (max-width: 1360px) {
  .brandArea .brandBox .item .leftImg {
    max-width: 820px;
  }
}
.brandArea .brandBox .item .leftImg .Img {
  width: 100%;
}
.brandArea .brandBox .item .leftImg .Img.emptyImg {
  height: 500px;
  background: #ffe3f0;
}
@media (max-width: 1180px) {
  .brandArea .brandBox .item .leftImg .Img.emptyImg {
    height: 360px;
  }
}
@media (max-width: 480px) {
  .brandArea .brandBox .item .leftImg .Img.emptyImg {
    height: 205px;
  }
}
.brandArea .brandBox .item .leftImg .Img.emptyImg img {
  width: 150px;
}
.brandArea .brandBox .item .leftImg .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.brandArea .brandBox .item .rightBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
  gap: 50px;
}
@media (max-width: 1640px) {
  .brandArea .brandBox .item .rightBox {
    gap: 30px;
  }
}
@media (max-width: 1360px) {
  .brandArea .brandBox .item .rightBox {
    width: 100%;
    max-width: 240px;
  }
}
.brandArea .brandBox .item .rightBox .leftSide .ImgBox {
  width: 240px;
  height: 240px;
  border-radius: 25px;
  text-align: center;
  margin-bottom: 20px;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  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;
  gap: 0;
}
@media (max-width: 768px) {
  .brandArea .brandBox .item .rightBox .leftSide .ImgBox {
    width: auto;
    height: auto;
    background: none !important;
    margin: 0;
  }
}
.brandArea .brandBox .item .rightBox .leftSide .ImgBox .Img {
  width: 130px;
}
@media (max-width: 768px) {
  .brandArea .brandBox .item .rightBox .leftSide .ImgBox .Img {
    display: none;
  }
}
.brandArea .brandBox .item .rightBox .leftSide .ImgBox .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.brandArea .brandBox .item .rightBox .leftSide .ImgBox .hashTag {
  font-size: 28px;
  line-height: 1;
  margin: 5px 0 10px;
}
@media (max-width: 768px) {
  .brandArea .brandBox .item .rightBox .leftSide .ImgBox .hashTag {
    display: none;
  }
}
.brandArea .brandBox .item .rightBox .leftSide .ImgBox .title,
.brandArea .brandBox .item .rightBox .leftSide .ImgBox .subtitle {
  color: #231815;
  font-size: 22px;
  font-weight: 400;
  line-height: calc(22 / 22 * 1.5);
  letter-spacing: calc(22 * 60 / 1000 * 1px);
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
@media (max-width: 768px) {
  .brandArea .brandBox .item .rightBox .leftSide .ImgBox .subtitle {
    display: none;
  }
}
.brandArea .brandBox .item .rightBox .leftSide > .Img {
  width: 240px;
  border-radius: 25px;
  overflow: hidden;
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
@media (max-width: 940px) {
  .brandArea .brandBox .item .rightBox .leftSide > .Img {
    display: none;
  }
}
.brandArea .brandBox .item .rightBox .leftSide > .Img.emptyImg {
  height: 240px;
  background: #ffe3f0;
}
.brandArea .brandBox .item .rightBox .leftSide > .Img.emptyImg img {
  width: 120px;
}
.brandArea .brandBox .item .rightBox .leftSide > .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.brandArea .brandBox .item .rightBox .rightSide {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 1360px) {
  .brandArea .brandBox .item .rightBox .rightSide {
    display: none;
  }
}
.brandArea .brandBox .item .rightBox .rightSide .Img {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 30px;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.brandArea .brandBox .item .rightBox .rightSide .Img.emptyImg {
  height: 270px;
  background: #ffe3f0;
}
.brandArea .brandBox .item .rightBox .rightSide .Img.emptyImg img {
  width: 120px;
}
.brandArea .brandBox .item .rightBox .rightSide .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.brandArea .brandBox .textEditor {
  height: 120px;
  margin-bottom: 30px;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1360px) {
  .brandArea .brandBox .textEditor {
    width: 100%;
    max-width: 1080px;
    height: auto;
    -webkit-line-clamp: none;
    margin: 30px auto;
  }
}
@media (max-width: 768px) {
  .brandArea .brandBox .textEditor {
    margin: 20px 0;
  }
}
.brandArea .brandBox .btnBox {
  -webkit-transition-delay: 1.35s;
          transition-delay: 1.35s;
}
@media (max-width: 768px) {
  .brandArea .brandBox .btnBox .btn {
    margin: 0 auto;
  }
}
.brandArea .brandBox .arrowBox {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
@media (max-width: 1800px) {
  .brandArea .brandBox .arrowBox {
    position: static;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
  }
}
.brandArea .brandBox .arrowBox .arrowPrev {
  margin-left: -90px;
}
@media (max-width: 1800px) {
  .brandArea .brandBox .arrowBox .arrowPrev {
    margin: 0;
  }
}
.brandArea .brandBox .arrowBox .arrowNext {
  margin-right: -90px;
}
@media (max-width: 1800px) {
  .brandArea .brandBox .arrowBox .arrowNext {
    margin: 0;
  }
}