@charset "UTF-8";
.newsArea .newsBox .Img img, .newsArea .newsBox .Img, .newsArea .arrowBox .dotsBox .slick-dots li button, .linkArea .linkList .item .Img, .productArea .productList .item .ImgBox .Img, .productArea .productList .item .ImgBox, .productArea .productBox .dotsBox .slick-dots li button, .bannerArea .dotsBox .slick-dots li button, .bannerArea .dotsBox, .bannerArea .bannerDecoBox, .bannerArea .bannerItem .bannerVideoBox, .bannerArea .bannerItem .videoBtn .box svg.play, .bannerArea .bannerItem .videoBtn, .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%;
  transform: translate(-50%, 50%);
  width: 800px;
  max-width: 90%;
  max-height: 85vh;
  opacity: 0;
  background-color: #fff;
  transition: all 0.7s;
}
.popWin .popContent {
  max-height: 88vh;
  overflow-y: auto;
}
.popWin img {
  display: block;
  max-width: 100%;
  height: auto;
  backface-visibility: hidden;
}
.popWin .Txt {
  padding: 30px;
}
.popWin .Txt .popTitle {
  font-size: 25px;
  margin-bottom: 25px;
}
.popWin .close {
  width: 46px;
  height: 46px;
  background-color: #8a199c;
  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 {
  transform: rotate(45deg);
}
.popWin .close::after {
  transform: rotate(-45deg);
}
@media (min-width: 1181px) {
  .popWin .close:hover {
    background-color: #8a199c;
  }
  .popWin .close:hover::before {
    transform: rotate(-30deg);
  }
  .popWin .close:hover::after {
    transform: rotate(30deg);
  }
}
.popWin.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popWin.show .mask,
.popWin.show .inner {
  opacity: 1;
}
.popWin.show .inner {
  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 .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Img {
    padding-bottom: 56.25%;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Img {
    padding-bottom: 87.5%;
  }
}
.bannerArea .bannerItem .videoBtn {
  width: 150px;
  height: 150px;
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 50%;
  position: absolute;
  right: 180px;
  bottom: 85px;
  z-index: 4;
  cursor: pointer;
}
@media (min-width: 1181px) {
  .bannerArea .bannerItem .videoBtn:hover .box svg.innerCircle_stroke {
    stroke-dashoffset: 0;
  }
  .bannerArea .bannerItem .videoBtn:hover .box svg.play {
    color: #8a199c;
    border-color: #8a199c;
  }
}
@media (max-width: 1600px) {
  .bannerArea .bannerItem .videoBtn {
    right: 80px;
  }
}
@media (max-width: 1360px) {
  .bannerArea .bannerItem .videoBtn {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .videoBtn {
    right: 50%;
    bottom: 50%;
    transform: translate(50%, 50%);
  }
}
.bannerArea .bannerItem .videoBtn.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.bannerArea .bannerItem .videoBtn .outerCircle {
  width: 100%;
  height: 100%;
  stroke-dasharray: 2;
  animation: rotate 30s linear 0s infinite;
}
.bannerArea .bannerItem .videoBtn .box {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.bannerArea .bannerItem .videoBtn .box svg {
  width: 100%;
  height: 100%;
}
.bannerArea .bannerItem .videoBtn .box svg.innerCircle_stroke {
  stroke-dasharray: 302;
  stroke-dashoffset: 302;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  transition: 1s all ease-in-out;
}
.bannerArea .bannerItem .videoBtn .box svg.play {
  width: 18px;
  height: 18px;
  color: #ffffff;
  border-right: solid 2px #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bannerArea .bannerItem .bannerVideoBox {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.bannerArea .bannerItem .bannerVideoBox .bannerVideoInner {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: unset;
}
.bannerArea .bannerItem .bannerVideoBox .bannerVideoInner p,
.bannerArea .bannerItem .bannerVideoBox .bannerVideoInner iframe {
  width: 100%;
  height: 100%;
}
.bannerArea .bannerItem .bannerVideoBox .bannerVideoMask {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}
.bannerArea .bannerItem .bannerVideoBox .bannerVideoClose {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
}
.bannerArea .bannerDecoBox {
  width: 100%;
  max-width: 1500px;
  display: flex;
  align-items: center;
  gap: 25px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media (max-width: 1600px) {
  .bannerArea .bannerDecoBox {
    max-width: calc(100% - 100px);
  }
}
@media (max-width: 600px) {
  .bannerArea .bannerDecoBox {
    max-width: calc(100% - 40px);
    bottom: 20px;
    justify-content: flex-end;
  }
}
.bannerArea .bannerDecoBox.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.bannerArea .bannerDecoBox.start .line i {
  animation: bannerLine 4.5s linear 0s forwards;
}
.bannerArea .bannerDecoBox .pageBox {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: calc(20 / 20 * 1.5);
  letter-spacing: calc(20 * 0 / 1000 * 1px);
  font-family: "Oswald", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.bannerArea .bannerDecoBox .line {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  position: relative;
}
.bannerArea .bannerDecoBox .line i {
  display: block;
  width: 100%;
  height: 100%;
  background: #8a199c;
  transform-origin: left;
  transform: scaleX(0);
}
.bannerArea .dotsBox {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 600px) {
  .bannerArea .dotsBox {
    display: none;
  }
}
.bannerArea .dotsBox.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.bannerArea .dotsBox .slick-dots {
  position: static;
}
.bannerArea .dotsBox .slick-dots li {
  display: block;
  width: 8px;
  height: 8px;
  margin: 15px 0;
}
.bannerArea .dotsBox .slick-dots li.slick-active button {
  background: #c48ccd;
}
.bannerArea .dotsBox .slick-dots li button {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 50%;
  padding: 0;
}
.bannerArea .dotsBox .slick-dots li button::before {
  display: none;
}
.bannerArea.is-video-active .bannerDecoBox,
.bannerArea.is-video-active .dotsBox,
.bannerArea.is-video-active .videoBtn {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.bannerArea.is-video-active .bannerItem .item.yt-playing .bannerVideoBox {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.bannerArea.is-video-active .bannerItem .item.yt-playing .bannerVideoBox .bannerVideoMask {
  pointer-events: auto !important;
}

.aboutArea {
  padding: 70px 0 50px;
}
@media (max-width: 1180px) {
  .aboutArea {
    padding: 50px 0;
  }
}
@media (max-width: 480px) {
  .aboutArea {
    padding: 40px 0;
  }
}
@media (max-width: 1536px) {
  .aboutArea .wrap {
    max-width: 100%;
  }
}
.aboutArea .aboutList {
  display: flex;
  gap: 40px;
}
@media (max-width: 1360px) {
  .aboutArea .aboutList {
    gap: 20px;
  }
}
@media (max-width: 1023px) {
  .aboutArea .aboutList {
    flex-direction: column;
    align-items: center;
  }
}
.aboutArea .aboutList .aboutItem {
  border-radius: 40px;
  flex: 1;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .aboutArea .aboutList .aboutItem {
    width: 100%;
    max-width: 500px;
    flex: unset;
  }
}
.aboutArea .aboutList .aboutItem:nth-of-type(1) {
  background: #d9dee6;
}
.aboutArea .aboutList .aboutItem:nth-of-type(2) {
  background: #eaf1fb;
}
.aboutArea .aboutList .aboutItem:nth-of-type(3) {
  background: #dfe1fd;
}
.aboutArea .aboutList .item {
  text-align: center;
  padding-top: 70px;
}
@media (max-width: 1023px) {
  .aboutArea .aboutList .item {
    padding-top: 40px;
  }
}
.aboutArea .aboutList .item .Txt .title {
  color: #000000;
  font-size: 45px;
  font-weight: 500;
  line-height: calc(45 / 45 * 1.5);
  letter-spacing: calc(45 * 0 / 1000 * 1px);
  font-family: "Oswald", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
@media (max-width: 1640px) {
  .aboutArea .aboutList .item .Txt .title {
    font-size: 36px;
    line-height: 1;
  }
}
@media (max-width: 1360px) {
  .aboutArea .aboutList .item .Txt .title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .aboutArea .aboutList .item .Txt .title {
    font-size: 22px;
  }
}
.aboutArea .aboutList .item .Txt .subtitle {
  margin-top: 10px;
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  line-height: calc(20 / 20 * 1.5);
  letter-spacing: calc(20 * 0 / 1000 * 1px);
  font-family: "Open Sans", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
@media (max-width: 1640px) {
  .aboutArea .aboutList .item .Txt .subtitle {
    font-size: 18px;
  }
}
@media (max-width: 1360px) {
  .aboutArea .aboutList .item .Txt .subtitle {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .aboutArea .aboutList .item .Txt .subtitle {
    font-size: 13px;
  }
}
.aboutArea .aboutList .item .Txt .btnBox {
  margin-top: 20px;
}
.aboutArea .aboutList .item .Img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto -90px;
}
@media (max-width: 1023px) {
  .aboutArea .aboutList .item .Img {
    max-width: 350px;
  }
}
@media (max-width: 480px) {
  .aboutArea .aboutList .item .Img {
    max-width: 280px;
    margin: 20px auto 0;
  }
}
.aboutArea .aboutList .item .Img img {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}

.productArea {
  padding-bottom: 70px;
}
@media (max-width: 1180px) {
  .productArea {
    padding-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .productArea {
    padding-bottom: 40px;
  }
}
.productArea .titleBox {
  margin-bottom: 30px;
}
.productArea .productBox {
  position: relative;
}
.productArea .productBox .arrowBox {
  justify-content: space-between;
  padding-bottom: 57.5px;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: unset;
}
.productArea .productBox .arrowBox .arrowPrev {
  margin-left: -30px;
}
.productArea .productBox .arrowBox .arrowNext {
  margin-right: -30px;
}
.productArea .productBox .dotsBox {
  margin-top: 30px;
}
.productArea .productBox .dotsBox .slick-dots {
  position: static;
  display: flex;
  justify-content: center;
}
.productArea .productBox .dotsBox .slick-dots li {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 10px;
}
.productArea .productBox .dotsBox .slick-dots li.slick-active button {
  background: #c48ccd;
}
.productArea .productBox .dotsBox .slick-dots li button {
  width: 100%;
  height: 100%;
  background: #bfbfbf;
  border-radius: 50%;
  padding: 0;
}
.productArea .productBox .dotsBox .slick-dots li button::before {
  display: none;
}
.productArea .productList .slick-list {
  margin: 0 -15px;
}
.productArea .productList .slick-slide {
  padding: 0 15px;
}
.productArea .productList .item {
  position: relative;
}
@media (min-width: 1181px) {
  .productArea .productList .item:has(a):hover .ImgBox {
    background: #d3d7df;
  }
  .productArea .productList .item:has(a):hover .ImgBox::before {
    opacity: 1;
  }
  .productArea .productList .item:has(a):hover .ImgBox .Img {
    transform: scale(1.05);
    opacity: 0.8;
  }
  .productArea .productList .item:has(a):hover .Txt .title {
    color: #8a199c;
  }
}
.productArea .productList .item .ImgBox {
  height: 285px;
  background: #f5f5f5;
  border-radius: 40px;
  position: relative;
  display: grid;
  place-items: center;
}
.productArea .productList .item .ImgBox::before {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: 0.5s all;
  border: solid 1px #8a199c;
  border-radius: 40px;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: unset;
}
.productArea .productList .item .ImgBox .Img {
  width: 200px;
  position: relative;
  z-index: 1;
}
.productArea .productList .item .ImgBox .Img::before {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: 0.5s all;
  width: 200px;
  height: 10px;
  background: #000000;
  border-radius: 50%;
  bottom: 10px;
  left: -20px;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.5;
}
.productArea .productList .item .ImgBox .Img::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: 0.5s all;
  width: 200px;
  height: 10px;
  background: #000000;
  border-radius: 50%;
  bottom: 10px;
  left: 10px;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.8;
}
.productArea .productList .item .ImgBox .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.productArea .productList .item .Txt {
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 480px) {
  .productArea .productList .item .Txt {
    margin-top: 15px;
  }
}
.productArea .productList .item .Txt .title {
  color: #000000;
  font-size: 25px;
  font-weight: 400;
  line-height: calc(25 / 25 * 1.5);
  letter-spacing: calc(25 * 0 / 1000 * 1px);
  font-family: "Oswald", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
@media (max-width: 480px) {
  .productArea .productList .item .Txt .title {
    font-size: 18px;
  }
}
.productArea .productList .item .Txt .title a {
  color: currentColor;
}
.productArea .productList .item .Txt .title a::before {
  content: "";
  position: absolute;
  pointer-events: auto;
  transition: 0.5s all;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

@keyframes linkMarquee {
  to {
    transform: translateX(-50%);
  }
}
.linkArea {
  overflow: hidden;
  padding: 20px 0;
}
.linkArea .wrap {
  max-width: 100%;
  padding: 0;
}
.linkArea .linkList {
  display: flex;
}
@media (max-width: 940px) {
  .linkArea .linkList {
    display: grid;
    grid-template-columns: 1fr;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
.linkArea .linkList .linkItem {
  position: relative;
  flex: 1;
}
.linkArea .linkList .linkItem::before {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: 0.5s all;
  display: none;
  width: 100vw;
  height: 1px;
  background: #e5e5e5;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 940px) {
  .linkArea .linkList .linkItem {
    flex: unset;
  }
}
.linkArea .linkList .linkItem:not(:last-child) {
  border-right: solid 1px #e5e5e5;
}
@media (max-width: 940px) {
  .linkArea .linkList .linkItem:not(:last-child) {
    border: none;
  }
}
@media (max-width: 940px) {
  .linkArea .linkList .linkItem:not(:last-child)::before {
    display: block;
  }
}
.linkArea .linkList .item {
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  overflow-x: clip;
}
.linkArea .linkList .item .marqueeBg {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.linkArea .linkList .item .marqueeBg__track {
  display: flex;
  flex-shrink: 0;
  will-change: transform;
}
.linkArea .linkList .item .marqueeBg__group {
  display: flex;
  flex-shrink: 0;
}
.linkArea .linkList .item .marqueeBg__group span {
  flex-shrink: 0;
  padding-right: 1em;
  white-space: nowrap;
  color: #ffffff;
  font-size: 74px;
  font-weight: 600;
  line-height: calc(74 / 74 * 1.5);
  letter-spacing: calc(74 * 100 / 1000 * 1px);
  font-family: "Oswald", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.linkArea .linkList .item::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: 0.5s all;
  width: 100%;
  height: calc(100% + 40px);
  background: url("../images/linkHoverBG.jpg") no-repeat top center;
  background-size: cover;
  top: -20px;
  left: 0;
  z-index: -2;
  opacity: 0;
}
@media (min-width: 1181px) {
  .linkArea .linkList .item:hover .marqueeBg {
    opacity: 0.2;
  }
  .linkArea .linkList .item:hover .marqueeBg__track {
    animation: linkMarquee var(--marquee-duration, 18s) linear infinite;
  }
  .linkArea .linkList .item:hover::after {
    opacity: 1;
  }
  .linkArea .linkList .item:hover .Img {
    filter: brightness(0) invert(1);
  }
  .linkArea .linkList .item:hover .Txt .title {
    color: #ffffff;
  }
}
@media (max-width: 940px) {
  .linkArea .linkList .item {
    justify-content: flex-start;
  }
}
.linkArea .linkList .item .Img {
  width: 100%;
  max-width: 36px;
  position: relative;
  z-index: 1;
}
.linkArea .linkList .item .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.linkArea .linkList .item .Txt .title {
  color: #000000;
  font-size: 30px;
  font-weight: 600;
  line-height: calc(30 / 30 * 1.5);
  letter-spacing: calc(30 * 100 / 1000 * 1px);
  font-family: "Oswald", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
@media (max-width: 1180px) {
  .linkArea .linkList .item .Txt .title {
    font-size: 22px;
  }
}
.linkArea .linkList .item .Txt .title a {
  color: currentColor;
}
.linkArea .linkList .item .Txt .title a::before {
  content: "";
  position: absolute;
  pointer-events: auto;
  transition: 0.5s all;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: unset;
}

.pictureArea {
  position: relative;
}
.pictureArea .wrap {
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
}
@media (max-width: 1536px) {
  .pictureArea .wrap {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .pictureArea .wrap {
    position: static;
    transform: translate(0);
    margin-bottom: 30px;
  }
}
.pictureArea .pictureBox {
  height: 100%;
}
.pictureArea .item {
  height: 100%;
  display: flex;
  align-items: center;
}
.pictureArea .item .Txt {
  max-width: 810px;
  text-align: center;
}
@media (max-width: 1600px) {
  .pictureArea .item .Txt {
    max-width: 700px;
  }
}
@media (max-width: 1440px) {
  .pictureArea .item .Txt {
    max-width: 100%;
  }
}
.pictureArea .item .Txt .title {
  color: #2a2727;
  font-size: 27px;
  font-weight: 600;
  line-height: calc(27 / 27 * 1.5);
  letter-spacing: calc(27 * 0 / 1000 * 1px);
  font-family: "Oswald", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
@media (min-width: 769px) and (max-width: 1440px) {
  .pictureArea .item .Txt .title {
    color: #ffffff;
  }
}
@media (max-width: 480px) {
  .pictureArea .item .Txt .title {
    font-size: 20px;
    line-height: 1.5;
  }
}
.pictureArea .item .Txt .textEditor {
  margin-top: 10px;
}
@media (min-width: 769px) and (max-width: 1440px) {
  .pictureArea .item .Txt .textEditor {
    color: #ffffff;
  }
}
.pictureArea .bg {
  width: 100%;
}
@media (max-width: 1440px) {
  .pictureArea .bg {
    filter: brightness(0.7);
  }
}
@media (max-width: 768px) {
  .pictureArea .bg {
    filter: brightness(1);
  }
}
.pictureArea .bg img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
@media (max-width: 768px) {
  .pictureArea .bg img {
    min-height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 480px) {
  .pictureArea .bg img {
    min-height: 200px;
  }
}

.newsArea {
  position: relative;
  padding-bottom: 70px;
}
@media (max-width: 1180px) {
  .newsArea {
    padding-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .newsArea {
    padding-bottom: 40px;
  }
}
@media (max-width: 1536px) {
  .newsArea .wrap {
    max-width: 100%;
  }
}
.newsArea .titleBox {
  margin-bottom: 30px;
}
.newsArea .arrowBox {
  width: 100%;
  max-width: 1830px;
  justify-content: flex-end;
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  padding: 0 50px;
}
@media (max-width: 1180px) {
  .newsArea .arrowBox {
    justify-content: center;
    position: static;
    transform: translate(0);
    padding: 0;
    margin-top: 30px;
  }
}
.newsArea .arrowBox .dotsBox .slick-dots {
  position: static;
  display: flex;
  justify-content: center;
}
.newsArea .arrowBox .dotsBox .slick-dots li {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 10px;
}
.newsArea .arrowBox .dotsBox .slick-dots li.slick-active button {
  background: #c48ccd;
}
.newsArea .arrowBox .dotsBox .slick-dots li button {
  width: 100%;
  height: 100%;
  background: #bfbfbf;
  border-radius: 50%;
  padding: 0;
}
.newsArea .arrowBox .dotsBox .slick-dots li button::before {
  display: none;
}
.newsArea .newsBox {
  display: flex;
  gap: 40px;
}
@media (max-width: 940px) {
  .newsArea .newsBox {
    flex-direction: column;
    align-items: center;
  }
}
.newsArea .newsBox .newsTopList {
  width: 100%;
  max-width: 915px;
}
@media (max-width: 1340px) {
  .newsArea .newsBox .newsTopList {
    max-width: calc(55% - 20px);
  }
}
@media (max-width: 940px) {
  .newsArea .newsBox .newsTopList {
    max-width: 700px;
  }
}
.newsArea .newsBox .newsTopList .item .Txt {
  text-align: center;
  margin-top: 20px;
}
.newsArea .newsBox .newsTopList .item .Txt .title {
  height: 57px;
  color: #000000;
  font-size: 19px;
  font-weight: 600;
  line-height: calc(19 / 19 * 1.5);
  letter-spacing: calc(19 * 0 / 1000 * 1px);
  font-family: "Open Sans", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1181px) {
  .newsArea .newsBox .newsTopList .item .Txt .title:hover {
    color: #8a199c;
  }
}
.newsArea .newsBox .newsTopList .item .Txt .title a {
  color: currentColor;
}
.newsArea .newsBox .newsTopList .item .Txt .linkWrap {
  margin-top: 20px;
}
.newsArea .newsBox .newsList {
  width: 100%;
  max-width: 780px;
}
@media (max-width: 1600px) {
  .newsArea .newsBox .newsList {
    max-width: 600px;
  }
}
@media (max-width: 1340px) {
  .newsArea .newsBox .newsList {
    max-width: calc(45% - 20px);
  }
}
@media (max-width: 940px) {
  .newsArea .newsBox .newsList {
    max-width: 700px;
  }
}
.newsArea .newsBox .newsList.slick-dotted {
  margin-bottom: 0;
}
.newsArea .newsBox .newsList .slick-list {
  margin: 0 -10px;
}
.newsArea .newsBox .newsList .slick-slide {
  padding: 0 10px;
}
.newsArea .newsBox .newsList .slick-slide > div:not(:last-child) {
  padding-bottom: 25px;
}
@media (max-width: 1180px) {
  .newsArea .newsBox .newsList .slick-slide > div:not(:last-child) {
    padding-bottom: 15px;
  }
}
.newsArea .newsBox .newsList .item .Txt {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0 35px;
}
@media (max-width: 1180px) {
  .newsArea .newsBox .newsList .item .Txt {
    margin-top: 15px;
    padding: 0 20px;
  }
}
.newsArea .newsBox .newsList .item .Txt .title {
  max-width: 540px;
  height: 48.5px;
  color: #000000;
  font-size: 17px;
  font-weight: 600;
  line-height: calc(17 / 17 * 1.5);
  letter-spacing: calc(17 * 0 / 1000 * 1px);
  font-family: "Open Sans", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .newsArea .newsBox .newsList .item .Txt .title {
    max-width: 100%;
    height: 43.5px;
    font-size: 15px;
  }
}
.newsArea .newsBox .newsList .item .Txt .linkWrap {
  margin: -15px 0 0 20px;
}
@media (max-width: 1180px) {
  .newsArea .newsBox .newsList .item .Txt .linkWrap {
    display: none;
  }
}
@media (max-width: 480px) {
  .newsArea .newsBox .newsList .item .Img {
    max-height: 140px;
  }
}
.newsArea .newsBox .Img {
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
}
@media (min-width: 1181px) {
  .newsArea .newsBox .Img:hover {
    opacity: 0.8;
  }
  .newsArea .newsBox .Img:hover img {
    transform: scale(1.05);
  }
}
.newsArea .newsBox .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.newsArea .newsBox .linkWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 20px;
  flex-shrink: 0;
}
@media (min-width: 1181px) {
  .newsArea .newsBox .linkWrap:hover span {
    border-color: #8a199c;
    color: #8a199c;
  }
}
.newsArea .newsBox .linkWrap span {
  border-bottom: solid 1px #000000;
  padding-bottom: 5px;
  color: #000000;
  font-size: 17px;
  font-weight: 400;
  line-height: calc(17 / 17 * 1.5);
  letter-spacing: calc(17 * 0 / 1000 * 1px);
  font-family: "Oswald", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.newsArea .newsBox .linkWrap span a {
  color: currentColor;
}
.newsArea .newsBox .linkWrap span a::before {
  content: "";
  position: absolute;
  pointer-events: auto;
  transition: 0.5s all;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: unset;
}
.newsArea .newsBox .linkWrap i {
  display: block;
  width: 14px;
  height: 14px;
  border: solid 2px #141414;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  margin-top: -5px;
}