@charset "UTF-8";
.partnerArea .partnerBox .partnerList .Img img, .partnerArea .partnerBox .partnerList .Img, .partnerArea .partnerBox .partnerList .item, .solutionArea .leftBox .iconBox .iconItem .item .Img img, .solutionArea .leftBox .iconBox .iconItem .item .Img::before, .solutionArea .leftBox .iconBox .iconItem .item .Img::after, .solutionArea .leftBox .iconBox .iconItem .item .Img, .solutionArea .leftBox .iconBox .iconItem .item .Txt .enTitle, .solutionArea .leftBox .iconBox .iconItem .item .Txt .title, .solutionArea .decoText, .productArea .productBox .productList .line, .productArea .productBox .productList .Txt .subtitle, .productArea .productBox .productList .Txt .title, .productArea .productBox .productList .Img img, .productArea .productBox .productList .Img, .productArea .productBox .productList .item, .aboutArea .sideText, .aboutArea .Txt .text, .aboutArea .Txt .subtitle, .aboutArea .Txt .title .unit, .aboutArea .Txt .title .slash, .aboutArea .Txt .title, .aboutArea .Txt .decoTitle, .aboutArea .bgImg, .aboutArea .Img, .aboutArea .item::after, .aboutArea .item, .bannerProductArea .bannerProductItem .Txt .subtitle .line, .bannerProductArea .bannerProductItem .Txt .subtitle, .bannerProductArea .bannerProductItem .Txt .title, .bannerProductArea .bannerProductItem .Txt .num, .bannerArea .bottomBox .scrollDown .icon-scrollArrow, .bannerArea .bottomBox .scrollDown span.text, .arrowBox .arrow .icon-slickArrow, .arrowBox .arrow, .popWindowArea .close::before, .popWindowArea .close::after, .popWindowArea .close {
  transition: all 0.5s ease-in-out;
}

@keyframes btnAni {
  20% {
    background-color: rgba(0, 0, 126, 0.3);
  }
  100% {
    transform: scale(1.3);
    background-color: transparent;
  }
}
@keyframes imgLoading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes slideLeftAnimation {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideDownAnimation {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUpAnimation {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes aniSlideLeft {
  0% {
    transform: translateX(10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes aniSlideDown {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes bannerScrollAnimation {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes scrollHorizontal {
  100% {
    transform: translateX(-30px);
    opacity: 0;
  }
}
@keyframes scrollVertical {
  100% {
    transform: translateY(-20px);
    opacity: 0;
  }
}
@keyframes loadingAni {
  0% {
    opacity: 0;
    transform: translateY(-15%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes textSlideRightAnimation {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes textSlideDownAnimation {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lightlineDotPulse {
  0%, 100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.85;
  }
}
@keyframes bannerLineDraw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes bannerLineLightRun {
  to {
    stroke-dashoffset: 100;
  }
}
@keyframes bannerLineDotPulse {
  0%, 100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}
@keyframes solutionIconGlowPulse {
  0%, 100% {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1.06);
  }
}
@keyframes solutionIconGlowRing {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.4);
  }
}
.popWindowArea {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 100vh;
  /*以防有不支援dvh的瀏覽器*/
  height: 100dvh;
  line-height: 1.8;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.7s;
}
.popWindowArea .popWindowMask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.7s;
}
.popWindowArea .popWindowBox {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 50%);
  width: 800px;
  max-width: 90%;
  height: auto;
  min-height: 300px;
  max-height: 85vh;
  opacity: 0;
  background-color: #fff;
  transition: all 0.7s;
}
.popWindowArea .popWindowContent {
  height: 100%;
  overflow-y: auto;
  overflow-x: clip;
}
.popWindowArea img {
  display: block;
  max-width: 100%;
  height: auto;
  backface-visibility: hidden;
}
.popWindowArea .Txt {
  padding: 30px;
}
.popWindowArea .Txt .popTitle {
  font-size: clamp(20px, 1.25vw, 24px);
  margin-bottom: 25px;
}
.popWindowArea .close {
  width: 46px;
  height: 46px;
  background-color: #00007E;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.popWindowArea .close::before, .popWindowArea .close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 23px;
  width: 25px;
  height: 1px;
  background-color: #fff;
}
.popWindowArea .close::before {
  transform: rotate(45deg);
}
.popWindowArea .close::after {
  transform: rotate(-45deg);
}
@media (min-width: 1181px) {
  .popWindowArea .close:hover {
    background-color: #00007E;
  }
  .popWindowArea .close:hover::before {
    transform: rotate(-30deg);
  }
  .popWindowArea .close:hover::after {
    transform: rotate(30deg);
  }
}
.popWindowArea.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popWindowArea.show .popWindowMask,
.popWindowArea.show .popWindowBox {
  opacity: 1;
}
.popWindowArea.show .popWindowBox {
  transform: translate(-50%, -50%);
}
@media (max-width: 1180px) {
  .popWindowArea .popWindowContent {
    max-height: calc(100vh - 150px);
    /*以防有不支援dvh的瀏覽器*/
    max-height: calc(100dvh - 150px);
  }
}

.mainArea {
  padding: 0;
}

.titleBox {
  display: flex;
  align-items: flex-start;
}
.titleBox .title {
  color: #00007E;
  font-size: clamp(36px, 4.8958vw, 94px);
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.titleBox .subtitle {
  position: relative;
  color: #00007E;
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 400;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  margin-top: 0;
  padding-left: 17px;
}
.titleBox .subtitle::after {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  background-color: #fa0001;
  left: 0px;
  top: 55%;
  transform: translateY(-50%);
}
.titleBox .text {
  color: #fff;
  font-size: clamp(15px, 0.8854vw, 17px);
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  letter-spacing: 0.38px;
  line-height: 1.68;
  padding-top: 0;
}

.arrowBox {
  display: flex;
  justify-content: center;
}
.arrowBox .arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid #00007E;
}
@media (min-width: 1181px) {
  .arrowBox .arrow:hover {
    background-color: #c70001;
    border: 1px solid #c70001;
  }
  .arrowBox .arrow:hover .icon-slickArrow {
    color: #fff;
  }
}
.arrowBox .arrow .icon-slickArrow {
  width: 14px;
  height: 10px;
  color: #00007E;
}
.arrowBox .arrow.prev {
  transform: rotate(180deg);
}

.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerItem .Txt {
  justify-content: flex-end;
  width: 50%;
  max-width: 1200px;
  padding: 110px 20px 80px 100px;
  margin-left: 0px;
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt {
    padding: 20px 20px 80px 50px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt {
    padding: 30px 20px 30px 30px;
  }
}
@media (max-width: 960px) {
  .bannerArea .bannerItem .Txt {
    width: 75%;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt {
    padding: 20px 20px 50px;
    width: 100%;
  }
}
.bannerArea .bannerItem .Txt .textBox {
  display: flex;
  flex-direction: column;
}
.bannerArea .bannerItem .Txt .title {
  color: #00007E;
  font-size: clamp(40px, 3.75vw, 72px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.8px;
  margin-left: -4px;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .title {
    margin-left: 0px;
  }
}
.bannerArea .bannerItem .Txt .subtitle {
  position: relative;
  color: #00007E;
  display: block;
  font-size: clamp(28px, 2.1875vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 2.2px;
  margin-top: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  margin-left: -4px;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .subtitle {
    margin-left: 0px;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
.bannerArea .bannerItem .Txt .subtitle::after {
  content: "";
  position: absolute;
  display: block;
  width: 111px;
  height: 3px;
  background-color: #fa0001;
  left: 0;
  bottom: 0;
}
.bannerArea .bannerItem .Txt .text {
  color: #333333;
  font-size: clamp(15px, 0.8854vw, 17px);
  display: block;
  line-height: 1.88;
  letter-spacing: 0.4px;
  max-width: 520px;
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 14px;
  }
}
.bannerArea .bannerItem .Img {
  position: relative;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Img {
    height: 510px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Img {
    height: 640px;
  }
}
.bannerArea .bannerItem .Img .bannerLineSvg {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.bannerArea .bannerItem .Img .bannerLine-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bannerArea .bannerItem .Img .bannerLine-draw {
  fill: none;
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(0, 153, 255, 0.7));
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: bannerLineDraw var(--draw-duration, 1s) ease-out var(--line-delay, 0s) forwards;
}
.bannerArea .bannerItem .Img .bannerLine-light {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px rgb(0, 200, 255)) drop-shadow(0 0 10px rgba(0, 140, 255, 0.65));
  stroke-dasharray: 34 68;
  stroke-dashoffset: 0;
  animation: bannerLineLightRun var(--light-duration, 1.4s) linear calc(var(--line-delay, 0s) + var(--draw-duration, 1s)) infinite;
}
.bannerArea .bannerItem .Img .bannerLine-dot {
  fill: #ffffff;
  filter: drop-shadow(0 0 4px rgba(0, 153, 255, 0.8));
  animation: bannerLineDotPulse 1.6s ease-in-out infinite;
}
.bannerArea .bannerItem .Img .bannerLine-dot--hub {
  animation-delay: 0s;
}
.bannerArea .bannerItem .Img .bannerLine-dot--node {
  animation-delay: calc(var(--line-delay, 0s) + 0.25s);
}
.bannerArea .bannerItem .Img .bannerLine--1 {
  --line-delay: 0.1s;
  --draw-duration: 1s;
  --light-duration: 1.4s;
}
.bannerArea .bannerItem .Img .bannerLine--2 {
  --line-delay: 0.25s;
  --draw-duration: 1s;
  --light-duration: 1.7s;
}
.bannerArea .bannerItem .Img .bannerLine--3 {
  --line-delay: 0.4s;
  --draw-duration: 1s;
  --light-duration: 1.2s;
}
@media (prefers-reduced-motion: reduce) {
  .bannerArea .bannerItem .Img .bannerLine-draw,
  .bannerArea .bannerItem .Img .bannerLine-light,
  .bannerArea .bannerItem .Img .bannerLine-dot {
    animation: none;
  }
  .bannerArea .bannerItem .Img .bannerLine-draw {
    stroke-dashoffset: 0;
  }
  .bannerArea .bannerItem .Img .bannerLine-light {
    display: none;
  }
  .bannerArea .bannerItem .Img .bannerLine-dot {
    opacity: 0.7;
  }
}
.bannerArea .slick-arrow {
  top: 80%;
  left: auto;
}
.bannerArea .slick-arrow.slick-prev {
  right: 110px;
}
.bannerArea .slick-arrow.slick-next {
  right: 50px;
}
.bannerArea .bottomBox {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 34px;
  margin-top: 30px;
}
@media (max-width: 1180px) {
  .bannerArea .bottomBox {
    margin-top: 15px;
  }
}
.bannerArea .bottomBox .btnBox {
  margin-top: 0;
}
.bannerArea .bottomBox .scrollDown {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 13px;
  z-index: 2;
}
@media (max-width: 1180px) {
  .bannerArea .bottomBox .scrollDown {
    display: none;
  }
}
@media (min-width: 1181px) {
  .bannerArea .bottomBox .scrollDown:hover span.text {
    color: #c70001;
  }
  .bannerArea .bottomBox .scrollDown:hover .icon-scrollArrow {
    color: #c70001;
  }
}
.bannerArea .bottomBox .scrollDown span {
  display: block;
}
.bannerArea .bottomBox .scrollDown span.text {
  color: #00007E;
  letter-spacing: 0.4px;
  font-size: 14px;
  margin-top: 0;
}
.bannerArea .bottomBox .scrollDown .icon-scrollArrow {
  color: #00007E;
  width: 11px;
  height: 12px;
}
.bannerArea .slick-dots {
  bottom: 50%;
  right: 50px;
  transform: translateY(50%);
}

/*bannerProductArea*/
.bannerProductArea {
  position: absolute;
  left: calc(65% - 3.8vw);
  bottom: 80px;
  z-index: 1;
  width: 975px;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .bannerProductArea {
    bottom: 30px;
  }
}
@media (max-width: 960px) {
  .bannerProductArea {
    position: static;
    width: 100%;
    padding: 40px 30px;
  }
}
@media (max-width: 768px) {
  .bannerProductArea {
    padding: 40px 20px;
  }
}
.bannerProductArea .bannerProductBox {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 960px) {
  .bannerProductArea .bannerProductBox {
    gap: 30px;
  }
}
.bannerProductArea .arrowBox {
  width: 61.2vw;
  gap: 9px;
}
@media (max-width: 960px) {
  .bannerProductArea .arrowBox {
    order: 2;
    width: 100%;
  }
}
.bannerProductArea .bannerProductList {
  width: 100%;
}
@media (max-width: 960px) {
  .bannerProductArea .bannerProductList {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
  }
}
.bannerProductArea .bannerProductList .slick-list {
  overflow: hidden;
}
.bannerProductArea .bannerProductList .slick-track {
  display: flex;
  margin-left: 0;
}
.bannerProductArea .bannerProductList .slick-slide {
  height: auto;
}
.bannerProductArea .bannerProductList .slick-slide > div {
  height: 100%;
}
.bannerProductArea .bannerProductItem {
  padding: 0 10px;
  box-sizing: border-box;
  position: relative;
}
@media (min-width: 1181px) {
  .bannerProductArea .bannerProductItem:hover .item {
    background: #00007E;
  }
  .bannerProductArea .bannerProductItem:hover .Txt .num {
    color: #fa0001;
  }
  .bannerProductArea .bannerProductItem:hover .Txt .title {
    color: #fff;
  }
  .bannerProductArea .bannerProductItem:hover .Txt .subtitle {
    color: #fff;
    opacity: 0.4;
  }
  .bannerProductArea .bannerProductItem:hover .Txt .subtitle .line {
    color: #fff;
    opacity: 0.4;
  }
}
.bannerProductArea .bannerProductItem .item {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: background 0.3s;
  gap: clamp(30px, 2.8646vw, 55px);
}
.bannerProductArea .bannerProductItem .linkWrap {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.bannerProductArea .bannerProductItem .Txt .num {
  font-size: clamp(14px, 0.8333vw, 16px);
  font-weight: 400;
  color: #00007E;
  line-height: 1;
  transition: color 0.3s;
}
.bannerProductArea .bannerProductItem .Txt .title {
  font-size: clamp(18px, 1.0417vw, 20px);
  font-weight: 500;
  letter-spacing: 1.1px;
  color: #333;
  margin-top: 17px;
  padding-left: 5px;
}
.bannerProductArea .bannerProductItem .Txt .subtitle {
  display: flex;
  align-items: center;
  font-size: clamp(16px, 0.9375vw, 18px);
  letter-spacing: -0.2px;
  color: #666;
  margin-top: 7px;
  padding-left: 6px;
}
.bannerProductArea .bannerProductItem .Txt .subtitle .line {
  display: inline-block;
  font-size: 13px;
  color: #666;
  padding: 0 6px;
}
.bannerProductArea .bannerProductItem .Img {
  margin: 0;
  flex-shrink: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 284/200;
  overflow: hidden;
  border-radius: 8px;
  overflow: hidden;
}
.bannerProductArea .bannerProductItem .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}

/*bannerProductArea end*/
.aboutArea {
  position: relative;
  overflow: hidden;
  padding-top: clamp(40px, 7.5521vw, 145px);
  padding-bottom: clamp(40px, 8.3333vw, 160px);
}
@media (max-width: 1180px) {
  .aboutArea {
    padding: 0 0 60px;
  }
}
.aboutArea .bgBox {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}
@media (max-width: 1180px) {
  .aboutArea .bgBox {
    position: static;
  }
}
.aboutArea .bgBox img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutArea .wrap {
  position: relative;
  z-index: 1;
  max-width: 1690px;
}
.aboutArea .topBox {
  margin-bottom: 70px;
}
@media (max-width: 1180px) {
  .aboutArea .topBox {
    margin-bottom: 30px;
    padding-top: 40px;
  }
}
.aboutArea .topBox .titleBox {
  display: flex;
  width: 100%;
  text-align: left;
  margin-bottom: 0;
}
@media (max-width: 1180px) {
  .aboutArea .topBox .titleBox {
    flex-direction: column;
  }
}
.aboutArea .topBox .titleBox .left {
  display: flex;
  flex-direction: column;
  width: 30%;
}
@media (max-width: 1180px) {
  .aboutArea .topBox .titleBox .left {
    width: 100%;
  }
}
.aboutArea .topBox .titleBox .text {
  flex: 1;
  padding-top: 7px;
  padding-left: clamp(20px, 4.1667vw, 80px);
  padding-right: clamp(20px, 7.5521vw, 145px);
}
@media (max-width: 1440px) {
  .aboutArea .topBox .titleBox .text {
    padding-right: clamp(20px, 4.1667vw, 80px);
  }
}
@media (max-width: 1180px) {
  .aboutArea .topBox .titleBox .text {
    padding-left: 0px;
    padding-right: 0px;
    color: #333;
  }
}
.aboutArea .topBox .btnBox {
  margin-top: 15px;
}
@media (max-width: 1180px) {
  .aboutArea .topBox .btnBox {
    display: none;
  }
}
.aboutArea .aboutBox {
  display: flex;
  align-items: center;
  margin: 0 -50px;
}
@media (max-width: 1680px) {
  .aboutArea .aboutBox {
    margin: 0 -30px;
  }
}
@media (max-width: 1280px) {
  .aboutArea .aboutBox {
    margin: 0 -20px;
  }
}
@media (max-width: 960px) {
  .aboutArea .aboutBox {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.aboutArea .aboutList {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.aboutArea .aboutItem {
  position: relative;
  width: 25%;
  padding: 30px 50px;
}
@media (max-width: 1680px) {
  .aboutArea .aboutItem {
    padding: 30px;
  }
}
@media (max-width: 1280px) {
  .aboutArea .aboutItem {
    padding: 20px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .aboutItem {
    width: 50%;
    padding: 30px 20px;
  }
}
@media (max-width: 960px) {
  .aboutArea .aboutItem {
    width: 100%;
  }
}
@media (min-width: 1181px) {
  .aboutArea .aboutItem:hover .bgImg {
    opacity: 1;
  }
  .aboutArea .aboutItem:hover .Img {
    filter: brightness(0) invert(1);
  }
  .aboutArea .aboutItem:hover .item::after {
    opacity: 1;
  }
  .aboutArea .aboutItem:hover .Txt .decoTitle {
    color: #fff;
  }
  .aboutArea .aboutItem:hover .Txt .title {
    color: #fff;
  }
  .aboutArea .aboutItem:hover .Txt .title .slash {
    color: #fff;
  }
  .aboutArea .aboutItem:hover .Txt .title .unit {
    color: #fff;
  }
  .aboutArea .aboutItem:hover .Txt .subtitle {
    color: #fff;
  }
  .aboutArea .aboutItem:hover .Txt .text {
    color: rgba(255, 255, 255, 0.6);
  }
}
@media (min-width: 1181px) {
  .aboutArea .aboutItem:nth-child(even) {
    transform: translateY(-30px);
  }
}
@media (min-width: 1181px) {
  .aboutArea .aboutItem:nth-child(odd) {
    transform: translateY(30px);
  }
}
.aboutArea .item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  height: 100%;
  min-height: clamp(300px, 23.1771vw, 445px);
  border-radius: 8px;
  padding: clamp(20px, 1.5625vw, 30px) clamp(20px, 1.875vw, 36px) clamp(20px, 1.875vw, 36px);
  overflow: hidden;
}
.aboutArea .item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 126, 0.9);
  opacity: 0;
  z-index: 1;
}
@media (max-width: 1680px) {
  .aboutArea .item {
    padding: clamp(20px, 1.5625vw, 30px);
  }
}
@media (max-width: 1180px) {
  .aboutArea .item {
    flex-direction: row;
    min-height: auto;
    gap: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 480px) {
  .aboutArea .item {
    flex-direction: column;
  }
}
.aboutArea .Img {
  position: relative;
  width: 65px;
  height: auto;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  z-index: 2;
}
.aboutArea .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
@media (max-width: 1440px) {
  .aboutArea .Img {
    flex-shrink: initial;
  }
}
@media (max-width: 960px) {
  .aboutArea .Img {
    margin: 0 auto 30px;
  }
}
@media (max-width: 480px) {
  .aboutArea .Img {
    margin: 0;
  }
}
.aboutArea .bgImg {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.aboutArea .bgImg img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutArea .Txt {
  position: relative;
  width: 100%;
  margin-top: auto;
  overflow: hidden;
  z-index: 2;
}
@media (max-width: 1180px) {
  .aboutArea .Txt {
    margin-top: 0;
  }
}
.aboutArea .Txt .decoTitle {
  font-size: clamp(16px, 0.9375vw, 18px);
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  letter-spacing: 0px;
  padding-top: 20px;
  margin-left: -2px;
  color: #333;
}
@media (max-width: 1680px) {
  .aboutArea .Txt .decoTitle {
    margin-left: 0px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .Txt .decoTitle {
    padding-top: 0px;
  }
}
.aboutArea .Txt .title {
  display: flex;
  align-items: center;
  font-size: clamp(36px, 2.5vw, 48px);
  font-weight: 500;
  line-height: 1;
  color: #00007E;
  padding-top: 33px;
  gap: 6px;
}
@media (max-width: 480px) {
  .aboutArea .Txt .title {
    padding-top: 20px;
  }
}
.aboutArea .Txt .title .slash {
  font-size: clamp(19px, 1.6146vw, 31px);
  font-weight: 400;
  padding: 0 12px;
}
.aboutArea .Txt .title .unit {
  font-size: clamp(18px, 1.1458vw, 22px);
  font-weight: 500;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  transform: translateY(3px);
}
.aboutArea .Txt .subtitle {
  font-size: clamp(18px, 1.1458vw, 22px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.2px;
  color: #333;
}
@media (max-width: 1680px) {
  .aboutArea .Txt .subtitle {
    padding-top: 5px;
  }
}
.aboutArea .Txt .text {
  font-size: clamp(14px, 0.8333vw, 16px);
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: #666;
  padding-top: 10px;
  letter-spacing: 1.1px;
  line-height: 1.8;
}
.aboutArea .sideText {
  position: absolute;
  top: 28px;
  right: 20px;
  color: #fff;
  font-size: clamp(14px, 0.8333vw, 16px);
  letter-spacing: 1.45px;
  line-height: 1.25;
  writing-mode: vertical-lr;
}
@media (max-width: 1680px) {
  .aboutArea .sideText {
    right: 10px;
  }
}
@media (max-width: 1280px) {
  .aboutArea .sideText {
    right: 0px;
    top: 20px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .sideText {
    right: auto;
    top: 0px;
    left: 20px;
    writing-mode: horizontal-tb;
    color: #333;
  }
}
.aboutArea .bottomBox {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 480px) {
  .aboutArea .bottomBox {
    margin-top: 0px;
  }
}
.aboutArea .bottomBox .btnBox {
  margin: 0 auto;
}
@media (min-width: 1181px) {
  .aboutArea .bottomBox {
    display: none;
  }
}

.productArea {
  position: relative;
  padding: 142px 0;
  background-color: #fafafa;
}
@media (max-width: 1180px) {
  .productArea {
    padding: 60px 0 80px;
  }
}
@media (max-width: 768px) {
  .productArea {
    padding: 40px 0 80px;
  }
}
.productArea .lightlineDecoBox {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  z-index: 0;
}
.productArea .lightlineDecoBox.left {
  width: 40vw;
  min-width: 480px;
  max-width: 755px;
  top: -8px;
  left: -100px;
}
@media (max-width: 768px) {
  .productArea .lightlineDecoBox.left {
    display: none;
  }
}
.productArea .lightlineDecoBox.right {
  width: 40vw;
  min-width: 480px;
  max-width: 695px;
  top: 170px;
  right: 0px;
}
@media (max-width: 1180px) {
  .productArea .lightlineDecoBox.right {
    display: none;
  }
}
.productArea .lightlineDecoBox .circuit-svg {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.45;
}
.productArea .lightlineDecoBox .dot {
  animation: lightlineDotPulse 2.5s ease-in-out infinite;
}
.productArea .lightlineDecoBox .dot:nth-child(2n) {
  animation-delay: -0.8s;
}
.productArea .lightlineDecoBox .dot:nth-child(3n) {
  animation-delay: -1.6s;
}
.productArea .lightlineDecoBox .dot:nth-child(5n) {
  animation-delay: -0.4s;
}
.productArea .lightlineDecoBox .dot:nth-child(7n) {
  animation-delay: -2.1s;
}
.productArea .lightlineDecoBox .circuit-svg.lightline-static .dot {
  animation: none;
  opacity: 0.6;
}
@media (prefers-reduced-motion: reduce) {
  .productArea .lightlineDecoBox .dot {
    animation: none;
    opacity: 0.6;
  }
}
@media (prefers-reduced-data: reduce) {
  .productArea .lightlineDecoBox .dot {
    animation: none;
    opacity: 0.6;
  }
}
.productArea .wrap {
  max-width: 1490px;
}
.productArea .titleBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 1180px) {
  .productArea .titleBox {
    margin-bottom: 30px;
  }
}
.productArea .productBox .productList {
  margin: 0 -10px;
  filter: drop-shadow(0 0 50px rgba(0, 0, 0, 0.06));
}
.productArea .productBox .productList .productItem {
  padding: 10px;
}
@media (min-width: 1181px) {
  .productArea .productBox .productList .productItem:hover .item {
    background-color: #c70001;
  }
  .productArea .productBox .productList .productItem:hover .Img {
    background-color: #df1b1c;
  }
  .productArea .productBox .productList .productItem:hover .Img img {
    filter: brightness(0) invert(1);
  }
  .productArea .productBox .productList .productItem:hover .Txt .title {
    color: #fff;
  }
  .productArea .productBox .productList .productItem:hover .Txt .subtitle {
    color: rgba(255, 255, 255, 0.8);
  }
  .productArea .productBox .productList .productItem:hover .line {
    background-color: #fff;
  }
}
.productArea .productBox .productList .item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 37px 20px 20px 36px;
  border-radius: 8px;
  background: #fff;
}
.productArea .productBox .productList .link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.productArea .productBox .productList .Img {
  width: 100px;
  height: auto;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  z-index: 2;
  background-color: #f4f4f4;
  border-radius: 50%;
  margin-left: auto;
}
.productArea .productBox .productList .Img img {
  border-radius: 50%;
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.productArea .productBox .productList .Txt .title {
  font-size: clamp(20px, 1.25vw, 24px);
  color: #00007e;
  font-weight: 500;
  letter-spacing: 1.1px;
  line-height: 1;
}
.productArea .productBox .productList .Txt .subtitle {
  font-size: clamp(16px, 1.0417vw, 20px);
  color: #333;
  padding-top: 15px;
  line-height: 1;
}
.productArea .productBox .productList .line {
  width: calc(100% - 116px);
  height: 1px;
  background-color: rgba(0, 0, 126, 0.2);
  bottom: 50%;
  left: 0;
  transform: translateY(-48px);
}

.solutionArea {
  position: relative;
  padding: 11px 0;
  background-color: #fafafa;
}
.solutionArea .bgBox {
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background-color: #f4f4f4;
  z-index: 0;
}
.solutionArea .decoText {
  position: absolute;
  top: -6.9vw;
  right: 4.4vw;
  pointer-events: none;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: right;
  font-size: clamp(100px, 6.7708vw, 130px);
  font-weight: 500;
  letter-spacing: 3.1px;
  line-height: 0.99;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #dfdfdf;
}
.solutionArea .decoText .char {
  display: inline-block;
}
@media (max-width: 768px) {
  .solutionArea .decoText {
    font-size: clamp(60px, 6.7708vw, 130px);
  }
}
@media (max-width: 480px) {
  .solutionArea .decoText {
    font-size: 12.5vw;
  }
}
.solutionArea .wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .solutionArea .wrap {
    flex-direction: column;
  }
}
.solutionArea .leftBox {
  display: flex;
  width: 50%;
  height: 100%;
}
@media (max-width: 768px) {
  .solutionArea .leftBox {
    width: 100%;
  }
}
.solutionArea .leftBox .trajectoryBox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45vw;
  max-width: 855px;
  height: auto;
  aspect-ratio: 1/1;
  margin-left: -4vw;
  background-image: url("../../images/tw/solutionBg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1680px) {
  .solutionArea .leftBox .trajectoryBox {
    margin-left: -7vw;
  }
}
@media (max-width: 1440px) {
  .solutionArea .leftBox .trajectoryBox {
    margin-left: -8vw;
  }
}
@media (max-width: 1180px) {
  .solutionArea .leftBox .trajectoryBox {
    margin-left: -5vw;
    width: 50vw;
  }
}
@media (max-width: 768px) {
  .solutionArea .leftBox .trajectoryBox {
    width: 100%;
    max-width: 480px;
  }
}
@media (max-width: 560px) {
  .solutionArea .leftBox .trajectoryBox {
    margin-left: -10vw;
  }
}
@media (max-width: 480px) {
  .solutionArea .leftBox .trajectoryBox {
    margin-left: -85px;
    width: calc(100% + 40px);
    flex-shrink: 0;
  }
}
@media (max-width: 359px) {
  .solutionArea .leftBox .trajectoryBox {
    width: calc(100% + 60px);
  }
}
.solutionArea .leftBox .titleBox {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
  width: calc(100% - 221px);
  height: auto;
  aspect-ratio: 1/1;
  text-align: left;
  padding-left: 6.25vw;
  padding: 0 0 25px 6.25vw;
}
@media (max-width: 1680px) {
  .solutionArea .leftBox .titleBox {
    padding: 0 0 25px 4vw;
  }
}
@media (max-width: 1440px) {
  .solutionArea .leftBox .titleBox {
    padding: 3vw;
  }
}
@media (max-width: 960px) {
  .solutionArea .leftBox .titleBox {
    padding: 0vw;
  }
}
.solutionArea .leftBox .titleBox .title {
  letter-spacing: 2.4px;
}
.solutionArea .leftBox .titleBox .subtitle {
  font-size: clamp(20px, 1.0938vw, 21px);
  padding-left: 22px;
  line-height: 1.25;
  padding-top: 3px;
}
.solutionArea .leftBox .titleBox .arrowBox {
  gap: 8px;
  margin-top: 58px;
  padding-left: 5px;
}
@media (max-width: 1180px) {
  .solutionArea .leftBox .titleBox .arrowBox {
    margin-top: 30px;
  }
}
.solutionArea .leftBox .iconBox {
  --solution-icon-size: 84px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1440px) {
  .solutionArea .leftBox .iconBox {
    --solution-icon-size: 65px;
  }
}
@media (max-width: 480px) {
  .solutionArea .leftBox .iconBox {
    display: none;
  }
}
.solutionArea .leftBox .iconBox .iconList {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.solutionArea .leftBox .iconBox .iconItem {
  --solution-icon-bg: #fa0001;
  --solution-icon-img-filter: brightness(0) invert(1);
  --solution-icon-img-bg: transparent;
  --solution-icon-txt-opacity: 1;
  --solution-icon-title-color: #00007E;
  --solution-icon-en-color: #00007E;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  overflow: visible;
  pointer-events: none;
  will-change: transform;
  transition: opacity 0.35s ease;
}
.solutionArea .leftBox .iconBox .iconItem.is-visible, .solutionArea .leftBox .iconBox .iconItem.is-focus {
  pointer-events: auto;
  cursor: pointer;
}
.solutionArea .leftBox .iconBox .iconItem.is-focus {
  z-index: 3;
}
.solutionArea .leftBox .iconBox .iconItem.is-focus .item .Img::before, .solutionArea .leftBox .iconBox .iconItem.is-focus .item .Img::after {
  opacity: 1;
}
.solutionArea .leftBox .iconBox .iconItem.is-focus .item .Img::before {
  animation: solutionIconGlowPulse 2s ease-in-out infinite;
}
.solutionArea .leftBox .iconBox .iconItem.is-focus .item .Img::after {
  animation: solutionIconGlowRing 2.4s ease-out infinite;
}
@media (min-width: 1181px) {
  .solutionArea .leftBox .iconBox .iconItem:hover {
    z-index: 3;
  }
  .solutionArea .leftBox .iconBox .iconItem:hover .item .Img::before, .solutionArea .leftBox .iconBox .iconItem:hover .item .Img::after {
    opacity: 1;
  }
  .solutionArea .leftBox .iconBox .iconItem:hover .item .Img::before {
    animation: solutionIconGlowPulse 2s ease-in-out infinite;
  }
  .solutionArea .leftBox .iconBox .iconItem:hover .item .Img::after {
    animation: solutionIconGlowRing 2.4s ease-out infinite;
  }
}
.solutionArea .leftBox .iconBox .iconItem .item {
  position: absolute;
  left: 0;
  top: 50%;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 34px;
  width: -moz-max-content;
  width: max-content;
  height: var(--solution-icon-size);
  transform: translate(calc(var(--solution-icon-size) / -2), -50%);
  transform-origin: calc(var(--solution-icon-size) / 2) 50%;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
@media (max-width: 1440px) {
  .solutionArea .leftBox .iconBox .iconItem .item {
    gap: 20px;
  }
}
.solutionArea .leftBox .iconBox .iconItem .item .Txt {
  position: relative;
  flex-shrink: 0;
  width: -moz-max-content;
  width: max-content;
  max-width: 160px;
  pointer-events: none;
  min-width: 10vw;
  opacity: var(--solution-icon-txt-opacity);
}
@media (max-width: 1180px) {
  .solutionArea .leftBox .iconBox .iconItem .item .Txt {
    display: none;
  }
}
.solutionArea .leftBox .iconBox .iconItem .item .Txt .title {
  color: var(--solution-icon-title-color);
  font-size: clamp(18px, 1.1458vw, 22px);
  font-weight: 500;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  letter-spacing: 0.8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.solutionArea .leftBox .iconBox .iconItem .item .Txt .enTitle {
  color: var(--solution-icon-en-color);
  font-size: clamp(14px, 0.8333vw, 16px);
  letter-spacing: 0.8px;
  padding-top: 2px;
  line-height: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.solutionArea .leftBox .iconBox .iconItem .item .Img {
  position: relative;
  z-index: 1;
  width: var(--solution-icon-size);
  height: auto;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  margin: 0;
  border-radius: 50%;
  padding: 4px;
  background-color: var(--solution-icon-bg);
  box-shadow: none;
}
.solutionArea .leftBox .iconBox .iconItem .item .Img::before, .solutionArea .leftBox .iconBox .iconItem .item .Img::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
}
.solutionArea .leftBox .iconBox .iconItem .item .Img::before {
  z-index: -1;
  width: calc(100% + 36px);
  height: calc(100% + 36px);
  background-color: rgba(250, 0, 1, 0.14);
}
@media (max-width: 1440px) {
  .solutionArea .leftBox .iconBox .iconItem .item .Img::before {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
  }
}
.solutionArea .leftBox .iconBox .iconItem .item .Img::after {
  z-index: -2;
  width: calc(100% + 36px);
  height: calc(100% + 36px);
  border: 1px solid rgba(250, 0, 1, 0.28);
}
@media (max-width: 1440px) {
  .solutionArea .leftBox .iconBox .iconItem .item .Img::after {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
  }
}
.solutionArea .leftBox .iconBox .iconItem .item .Img img {
  background-color: var(--solution-icon-img-bg);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  filter: var(--solution-icon-img-filter);
}
.solutionArea .leftBox .iconBox .iconItem.is-visible:not(.is-focus) {
  --solution-icon-bg: #00007E;
  --solution-icon-img-filter: none;
  --solution-icon-img-bg: #fff;
  --solution-icon-txt-opacity: 0.75;
  --solution-icon-title-color: #333333;
  --solution-icon-en-color: #666666;
}
@media (min-width: 1181px) {
  .solutionArea .leftBox .iconBox .iconItem.is-visible:not(.is-focus):hover {
    --solution-icon-bg: #fa0001;
    --solution-icon-img-filter: brightness(0) invert(1);
    --solution-icon-img-bg: transparent;
    --solution-icon-txt-opacity: 1;
    --solution-icon-title-color: #00007E;
    --solution-icon-en-color: #00007E;
  }
}
.solutionArea .leftBox .iconBox .iconItem.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.solutionArea .leftBox .iconBox .iconItem.is-hidden .item {
  transform: translate(calc(var(--solution-icon-size) / -2), -50%) scale(0.55);
}
@media (prefers-reduced-motion: reduce) {
  .solutionArea .leftBox .iconBox .iconItem.is-focus .item .Img::before, .solutionArea .leftBox .iconBox .iconItem.is-focus .item .Img::after, .solutionArea .leftBox .iconBox .iconItem:hover .item .Img::before, .solutionArea .leftBox .iconBox .iconItem:hover .item .Img::after {
    animation: none;
  }
}
.solutionArea .rightBox {
  width: 50%;
  padding: 40px 50px;
}
@media (max-width: 1180px) {
  .solutionArea .rightBox {
    padding: 40px 30px;
  }
}
@media (max-width: 768px) {
  .solutionArea .rightBox {
    width: 100%;
    padding: 0px 20px 40px;
    margin-top: -120px;
  }
}
@media (max-width: 480px) {
  .solutionArea .rightBox {
    margin-top: -25vw;
  }
}
@media (max-width: 380px) {
  .solutionArea .rightBox {
    margin-top: -40px;
  }
}
.solutionArea .rightBox .solutionBox {
  width: 100%;
  max-width: 635px;
  margin: 0 auto;
  padding-top: 15px;
}
@media (max-width: 1680px) {
  .solutionArea .rightBox .solutionBox {
    margin: 0 0 0 auto;
  }
}
@media (max-width: 768px) {
  .solutionArea .rightBox .solutionBox {
    padding-top: 0px;
    margin: 0 auto;
  }
}
.solutionArea .rightBox .Img {
  position: relative;
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
}
.solutionArea .rightBox .Img .link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.solutionArea .rightBox .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.solutionArea .rightBox .Txt {
  padding: 18px 0 0;
}
.solutionArea .rightBox .Txt .top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 25px;
  -moz-column-gap: 19px;
       column-gap: 19px;
  border-bottom: 1px solid #dedede;
}
@media (max-width: 480px) {
  .solutionArea .rightBox .Txt .top {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.solutionArea .rightBox .Txt .top .title {
  color: #00007E;
  font-size: clamp(20px, 1.1458vw, 22px);
  font-weight: 500;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  letter-spacing: 1.1px;
}
.solutionArea .rightBox .Txt .top .enTitle {
  color: #333333;
  font-size: clamp(14px, 0.8333vw, 16px);
  letter-spacing: 0.85px;
  padding-top: 5px;
}
.solutionArea .rightBox .Txt .text {
  color: #666666;
  font-size: clamp(15px, 0.8854vw, 17px);
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.75;
  letter-spacing: 0.4px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.partnerArea {
  position: relative;
  padding: 103px 0;
}
@media (max-width: 1180px) {
  .partnerArea {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .partnerArea {
    padding: 40px 0;
  }
}
.partnerArea .bgBox {
  position: absolute;
  inset: 0;
  background-image: url("../../images/tw/partnerBg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.partnerArea .wrap {
  max-width: 100%;
  padding: 0;
}
.partnerArea .titleBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(30px, 3.125vw, 60px);
}
.partnerArea .partnerBox .partnerList .partnerTrack {
  filter: drop-shadow(0 0 50px rgba(0, 0, 0, 0.06));
}
.partnerArea .partnerBox .partnerList .partnerItem {
  flex: 0 0 auto;
  padding: 10px;
  box-sizing: border-box;
}
@media (min-width: 1181px) {
  .partnerArea .partnerBox .partnerList .partnerItem:hover .item {
    background-color: #c70001;
  }
  .partnerArea .partnerBox .partnerList .partnerItem:hover .Img img {
    filter: brightness(0) invert(1);
  }
}
.partnerArea .partnerBox .partnerList .item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.partnerArea .partnerBox .partnerList .Img {
  width: 100%;
  height: 100%;
}
.partnerArea .partnerBox .partnerList .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.partnerArea .partnerBox .partnerTrack {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}