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

.outerWrap {
 padding-top: 120px;
}
@media (max-width: 1180px) {
 .outerWrap {
  padding-top: 80px;
 }
}

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

.mainArea {
 padding: 0;
}

.arrowBox {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: horizontal;
 -webkit-box-direction: normal;
     -ms-flex-direction: row;
         flex-direction: row;
 -webkit-box-pack: center;
     -ms-flex-pack: center;
         justify-content: center;
 -webkit-box-align: center;
     -ms-flex-align: center;
         align-items: center;
 gap: 20px;
}

.arrow {
 width: 40px;
 height: 40px;
 border-radius: 50%;
 background-color: #bfbfbf;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: horizontal;
 -webkit-box-direction: normal;
     -ms-flex-direction: row;
         flex-direction: row;
 -webkit-box-pack: center;
     -ms-flex-pack: center;
         justify-content: center;
 -webkit-box-align: center;
     -ms-flex-align: center;
         align-items: center;
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
 cursor: pointer;
}
.arrow::before {
 content: "";
 display: inline-block;
 width: 8px;
 height: 8px;
 border-left: 1px solid #fff;
 border-bottom: 1px solid #fff;
}
.arrow::after {
 content: "";
 width: 140%;
 height: 140%;
 border-radius: 50%;
 border: 2px dotted #d80212;
 position: absolute;
 top: 50%;
 left: 50%;
 -webkit-transform: translate(-50%, -50%);
         transform: translate(-50%, -50%);
 opacity: 0;
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
 pointer-events: none;
}
.arrow.prev::before {
 -webkit-transform: rotate(45deg);
         transform: rotate(45deg);
 margin-right: -3px;
}
.arrow.next::before {
 -webkit-transform: rotate(-135deg);
         transform: rotate(-135deg);
 margin-left: -3px;
}
@media (min-width: 1201px) {
 .arrow:hover {
  background-color: #d80212;
 }
 .arrow:hover::after {
  opacity: 1;
  -webkit-animation: arrowRotate 5s infinite linear;
          animation: arrowRotate 5s infinite linear;
 }
}

.funcBox {
 margin-top: 40px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: horizontal;
 -webkit-box-direction: normal;
     -ms-flex-direction: row;
         flex-direction: row;
 -webkit-box-pack: justify;
     -ms-flex-pack: justify;
         justify-content: space-between;
 -webkit-box-align: end;
     -ms-flex-align: end;
         align-items: flex-end;
}
.funcBox .btnBox {
 margin-top: 0;
}
.funcBox .slickLine {
 -webkit-box-flex: 1;
     -ms-flex: 1;
         flex: 1;
 height: 2px;
 background-color: #d9d9d9;
 margin-left: 50px;
 margin-right: 75px;
}
.funcBox .slickLine .line {
 width: 20%;
 height: 2px;
 background-color: #d80212;
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}
@media (max-width: 840px) {
 .funcBox {
  -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;
 }
 .funcBox .arrowBox {
  display: none;
 }
 .funcBox .slickLine {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  width: 100%;
  margin: 0;
  margin-bottom: 20px;
 }
}

.bannerHomeArea {
 padding: 85px 0;
}
.bannerHomeArea .Txt {
 max-width: 870px;
}
.bannerHomeArea .Txt .sloganEn {
 font-size: 28px;
 font-weight: 400;
 font-family: "Cormorant", serif, "Noto Serif", serif;
 color: #000;
 letter-spacing: 0px;
}
.bannerHomeArea .Txt .subtitle {
 font-size: 85px;
 font-weight: bold;
 font-family: "Cormorant", serif, "Noto Serif", serif;
 color: #000;
 letter-spacing: 0px;
}
.bannerHomeArea .Txt .title {
 font-size: 45px;
 font-weight: bold;
 font-family: "Noto Serif TC", serif, "Source Han Serif", serif;
 color: #000;
 letter-spacing: 2.25px;
 margin: 24px 0;
}
.bannerHomeArea .Txt .slogan {
 font-size: 28px;
 font-weight: bold;
 font-family: "Noto Serif TC", serif, "Source Han Serif", serif;
 color: #000;
 letter-spacing: 1.4px;
 padding-left: 5px;
}
.bannerHomeArea .Txt .text {
 font-size: 16px;
 font-weight: 400;
 font-family: "Noto Sans TC", sans-serif, "Microsoft JhengHei", sans-serif;
 color: #898989;
 letter-spacing: 0px;
 line-height: 1.87;
 margin-top: 12px;
}
.bannerHomeArea .Txt .btnBox {
 margin-top: 80px;
}
.bannerHomeArea .decoBox {
 margin-top: 72px;
}
.bannerHomeArea .decoBox .deco {
 font-size: 25px;
 font-weight: 600;
 font-family: "Noto Serif TC", serif, "Source Han Serif", serif;
 color: #515151;
 letter-spacing: -1.25px;
 margin-bottom: 12px;
}
.bannerHomeArea .decoBox .decoSmall {
 font-size: 15px;
 font-weight: 400;
 font-family: "Noto Sans TC", sans-serif, "Microsoft JhengHei", sans-serif;
 color: #898989;
 letter-spacing: 0px;
}
.bannerHomeArea .scrollDown {
 position: absolute;
 left: 50%;
 -webkit-transform: translateX(-50%);
         transform: translateX(-50%);
 bottom: 20px;
 border: 64px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
     -ms-flex-direction: column;
         flex-direction: column;
 -webkit-box-pack: center;
     -ms-flex-pack: center;
         justify-content: center;
 -webkit-box-align: center;
     -ms-flex-align: center;
         align-items: center;
 gap: 12px;
 font-size: 16px;
 font-weight: 400;
 font-family: "Cormorant", serif, "Noto Serif", serif;
 color: #515151;
 letter-spacing: 0.8px;
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
 cursor: pointer;
}
.bannerHomeArea .scrollDown::before {
 content: "\f107";
 color: #898989;
 font-size: 18px;
 font-family: FontAwesome;
 font-weight: 400;
 width: 30px;
 height: 30px;
 border-radius: 50%;
 border: 1px solid #898989;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: horizontal;
 -webkit-box-direction: normal;
     -ms-flex-direction: row;
         flex-direction: row;
 -webkit-box-pack: center;
     -ms-flex-pack: center;
         justify-content: center;
 -webkit-box-align: center;
     -ms-flex-align: center;
         align-items: center;
 padding-top: 2px;
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}
@media (min-width: 1201px) {
 .bannerHomeArea .scrollDown:hover {
  color: #d80212;
  font-weight: bold;
 }
 .bannerHomeArea .scrollDown:hover::before {
  color: #fff;
  background-color: #d80212;
  border-color: #d80212;
 }
}
.bannerHomeArea::before {
 content: attr(data-text);
 max-width: 1000px;
 font-size: 180px;
 font-weight: bold;
 font-family: "Cormorant", serif, "Noto Serif", serif;
 color: #ededed;
 letter-spacing: 9px;
 line-height: 150px;
 position: absolute;
 left: 60px;
 top: 0;
}
.bannerHomeArea::after {
 content: "";
 width: 70%;
 min-width: 800px;
 height: 400px;
 background-image: url(../images/cityBG01.png);
 background-size: cover;
 position: absolute;
 left: 0;
 bottom: -40px;
 z-index: -1;
}
.bannerHomeArea .decoBall {
 position: absolute;
 top: 0;
 left: 0;
 -webkit-transform: translate(-35%, -70%);
         transform: translate(-35%, -70%);
 pointer-events: none;
 z-index: -1;
}
.bannerHomeArea .decoBall svg {
 width: 100vw;
 height: 100vw;
 -webkit-animation: rotate 40s infinite linear;
         animation: rotate 40s infinite linear;
}
@media (max-width: 1180px) {
 .bannerHomeArea::before {
  font-size: 120px;
  line-height: 1;
  top: 20px;
 }
 .bannerHomeArea .Txt .subtitle {
  font-size: 65px;
 }
 .bannerHomeArea .Txt .title {
  font-size: 40px;
  margin: 20px 0;
 }
}
@media (max-width: 840px) {
 .bannerHomeArea {
  padding: 60px 0 80px 0;
  z-index: 2;
 }
 .bannerHomeArea::before {
  font-size: 80px;
  top: 20px;
  left: 0;
 }
 .bannerHomeArea::after {
  display: none;
 }
 .bannerHomeArea .Txt .subtitle {
  font-size: 52px;
  line-height: 1;
 }
 .bannerHomeArea .Txt .title {
  font-size: 36px;
  margin: 10px 0;
 }
 .bannerHomeArea .Txt .slogan {
  font-size: 24px;
 }
 .bannerHomeArea .Txt .text {
  font-size: 15px;
 }
 .bannerHomeArea .Txt .btnBox {
  margin-top: 40px;
 }
 .bannerHomeArea .decoBox {
  margin-top: 40px;
 }
 .bannerHomeArea .decoBox .deco {
  font-size: 20px;
 }
 .bannerHomeArea .decoBox .decoSmall {
  font-size: 12px;
 }
 .bannerHomeArea .scrollDown {
  bottom: 0;
 }
 .bannerHomeArea .decoBall {
  display: none;
 }
}
@media (max-width: 400px) {
 .bannerHomeArea::before {
  font-size: 60px;
 }
 .bannerHomeArea .Txt .sloganEn {
  font-size: 20px;
 }
 .bannerHomeArea .Txt .subtitle {
  font-size: 48px;
 }
 .bannerHomeArea .Txt .title {
  font-size: 28px;
  margin: 5px 0;
 }
 .bannerHomeArea .Txt .slogan {
  font-size: 18px;
 }
 .bannerHomeArea .Txt .btnBox {
  margin-top: 30px;
 }
}

.aboutArea {
 padding-top: 120px;
}
.aboutArea .wrap {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: horizontal;
 -webkit-box-direction: normal;
     -ms-flex-direction: row;
         flex-direction: row;
 -webkit-box-pack: justify;
     -ms-flex-pack: justify;
         justify-content: space-between;
 -webkit-box-align: start;
     -ms-flex-align: start;
         align-items: flex-start;
}
.aboutArea .titleBox {
 padding-top: 20px;
 max-width: 490px;
}
.aboutArea .titleBox .title {
 padding-left: 5px;
 margin-bottom: 32px;
}
.aboutArea .titleBox .subtitle {
 margin-top: 12px;
 padding-bottom: 30px;
}
.aboutArea .titleBox .subtitle::after {
 content: "";
 width: 45px;
 height: 1px;
 background-color: #d9d9d9;
 position: absolute;
 left: 0;
 bottom: 0;
}
.aboutArea .titleBox .text {
 padding: 30px 0;
}
.aboutArea .decoBottom {
 position: absolute;
 width: 100%;
 height: 360px;
 bottom: 0;
}
.aboutArea .decoBottom .redBall {
 width: 90px;
 height: 90px;
 top: 70px;
 left: 38%;
 z-index: 6;
}
.aboutArea .decoBottom .greenBall {
 width: 55px;
 height: 55px;
 top: 180px;
 right: 13%;
 z-index: 6;
}
.aboutArea .decoBottom .blueBall {
 width: 105px;
 height: 105px;
 bottom: 50px;
 left: 10%;
 z-index: 6;
}
.aboutArea::after {
 content: "";
 display: block;
 width: 100%;
 height: 360px;
 background-image: url(../images/news_BG.png);
 background-size: cover;
 background-position: center;
 margin-top: -100px;
 position: relative;
 z-index: -1;
}
.aboutArea .aboutBox {
 padding: 80px;
 margin-right: -40px;
 margin-top: -80px;
}
.aboutArea .decoBall {
 position: absolute;
 top: 0;
 right: 0;
 -webkit-transform: translate(45%, -35%);
         transform: translate(45%, -35%);
 pointer-events: none;
 z-index: -1;
}
.aboutArea .decoBall svg {
 width: 100vw;
 height: 100vw;
 -webkit-animation: rotate 30s infinite linear;
         animation: rotate 30s infinite linear;
}
@media (max-width: 1400px) {
 .aboutArea .aboutBox {
  padding: 30px;
 }
 .aboutArea .aboutList {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
 }
}
@media (max-width: 1180px) {
 .aboutArea .wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
 }
 .aboutArea .titleBox {
  max-width: 100%;
 }
 .aboutArea .aboutBox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
 }
 .aboutArea::after {
  height: 300px;
 }
 .aboutArea .decoBottom {
  height: 300px;
 }
}
@media (max-width: 840px) {
 .aboutArea {
  padding-top: 60px;
 }
 .aboutArea::after {
  height: 200px;
  margin-top: -200px;
 }
 .aboutArea .decoBottom {
  height: 200px;
 }
 .aboutArea .decoBottom .blueBall {
  width: 50px;
  height: 50px;
 }
 .aboutArea .decoBottom .redBall {
  display: none;
 }
 .aboutArea .aboutBox {
  padding: 80px 20px;
 }
 .aboutArea .aboutList {
  width: auto;
  height: auto;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
 }
 .aboutArea .titleBox .title {
  margin-bottom: 24px;
 }
}
@media (max-width: 480px) {
 .aboutArea .decoBottom .redBall {
  display: none;
 }
}
@media (max-width: 400px) {
 .aboutArea .aboutList {
  -webkit-transform: scale(0.55);
          transform: scale(0.55);
 }
 .aboutArea::after {
  height: 160px;
  margin-top: -160px;
 }
 .aboutArea .decoBottom {
  height: 160px;
 }
 .aboutArea .decoBottom .blueBall {
  display: none;
 }
 .aboutArea .decoBottom .greenBall {
  top: 80px;
 }
}

.aboutList {
 width: 580px;
 height: 580px;
 border-radius: 50%;
 border: 5px solid #d9d9d9;
 -webkit-transform-origin: center center;
         transform-origin: center center;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: horizontal;
 -webkit-box-direction: normal;
     -ms-flex-direction: row;
         flex-direction: row;
 -webkit-box-pack: center;
     -ms-flex-pack: center;
         justify-content: center;
 -webkit-box-align: center;
     -ms-flex-align: center;
         align-items: center;
}
.aboutList::before {
 content: "";
 width: 110%;
 height: 110%;
 border-radius: 50%;
 border: 5px dotted #d9d9d9;
 position: absolute;
 top: 50%;
 left: 50%;
 -webkit-transform: translate(-50%, -50%);
         transform: translate(-50%, -50%);
}
.aboutList .aboutItem {
 position: absolute;
 top: 50%;
 left: 50%;
 height: calc(50% + 80px);
 -webkit-transform-origin: center 0%;
         transform-origin: center 0%;
 -webkit-transform: translate(-50%, 0%) rotate(0deg);
         transform: translate(-50%, 0%) rotate(0deg);
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: end;
     -ms-flex-align: end;
         align-items: flex-end;
 -webkit-box-pack: end;
     -ms-flex-pack: end;
         justify-content: flex-end;
 pointer-events: none;
 z-index: 1;
}
.aboutList .aboutItem .item {
 border: 1px solid #d9d9d9;
 background-color: rgba(255, 255, 255, 0.6);
 padding: 5px;
 border-radius: 50%;
}
.aboutList .aboutItem .Img {
 width: 125px;
 height: 125px;
 display: block;
 border: 1px solid #898989;
 border-radius: 50%;
 overflow: hidden;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: horizontal;
 -webkit-box-direction: normal;
     -ms-flex-direction: row;
         flex-direction: row;
 -webkit-box-pack: center;
     -ms-flex-pack: center;
         justify-content: center;
 -webkit-box-align: center;
     -ms-flex-align: center;
         align-items: center;
 pointer-events: all;
 background-color: #000;
}
.aboutList .aboutItem .Img a {
 display: block;
 width: 100%;
 height: 100%;
}
.aboutList .aboutItem .Img img {
 vertical-align: middle;
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
 width: 100%;
}
@media (min-width: 1201px) {
 .aboutList .aboutItem .Img:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.9;
 }
}
.aboutList .centerItem {
 border-radius: 50%;
 padding: 45px;
 border: 1px solid #898989;
}
.aboutList .centerItem::before {
 content: "";
 width: 90%;
 height: 90%;
 border-radius: 50%;
 border: 1px solid #d9d9d9;
 position: absolute;
 top: 50%;
 left: 50%;
 -webkit-transform: translate(-50%, -50%);
         transform: translate(-50%, -50%);
}
.aboutList .centerItem .item {
 border: 25px solid #e0e0e0;
 border-radius: 50%;
 padding: 25px;
}
.aboutList .centerItem .item::before {
 content: "";
 width: 95%;
 height: 95%;
 border-radius: 50%;
 border: 1px solid #d9d9d9;
 position: absolute;
 top: 50%;
 left: 50%;
 -webkit-transform: translate(-50%, -50%);
         transform: translate(-50%, -50%);
}
.aboutList .centerItem .Img {
 width: 195px;
 height: 195px;
 border-radius: 50%;
 overflow: hidden;
 border: 1px solid #898989;
}
.aboutList .centerItem .Img img {
 width: 100%;
}
.aboutList .centerItem .smallBall {
 width: 10px;
 height: 10px;
 border-radius: 50%;
 background-color: #d80212;
 position: absolute;
 top: -5px;
 left: 50%;
 -webkit-transform-origin: center 198.5px;
         transform-origin: center 198.5px;
}
.aboutList .centerItem .smallBall:nth-child(1) {
 -webkit-transform: translate(-50%, 0) rotate(90deg);
         transform: translate(-50%, 0) rotate(90deg);
 background-color: #2f6eb6;
}
.aboutList .centerItem .smallBall:nth-child(2) {
 -webkit-transform: translate(-50%, 0) rotate(150deg);
         transform: translate(-50%, 0) rotate(150deg);
}
.aboutList .centerItem .smallBall:nth-child(3) {
 -webkit-transform: translate(-50%, 0) rotate(210deg);
         transform: translate(-50%, 0) rotate(210deg);
 background-color: #4fb331;
}
.aboutList .centerItem .smallBall:nth-child(4) {
 -webkit-transform: translate(-50%, 0) rotate(270deg);
         transform: translate(-50%, 0) rotate(270deg);
 background-color: #2f6eb6;
}
.aboutList .centerItem .smallBall:nth-child(5) {
 -webkit-transform: translate(-50%, 0) rotate(330deg);
         transform: translate(-50%, 0) rotate(330deg);
}
.aboutList .centerItem .smallBall:nth-child(6) {
 -webkit-transform: translate(-50%, 0) rotate(390deg);
         transform: translate(-50%, 0) rotate(390deg);
 background-color: #4fb331;
}
@media (max-width: 840px) {
 .aboutList .centerItem {
  border: none;
 }
 .aboutList .centerItem .smallBall {
  display: none;
 }
}

.newsArea {
 padding-top: 100px;
 padding-bottom: 110px;
}
.newsArea::before {
 content: "";
 width: 100%;
 height: 100%;
 background-color: #eee;
 position: absolute;
 left: 0;
 top: 0;
 z-index: -1;
}
.newsArea .topBox {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: horizontal;
 -webkit-box-direction: reverse;
     -ms-flex-direction: row-reverse;
         flex-direction: row-reverse;
 -webkit-box-pack: justify;
     -ms-flex-pack: justify;
         justify-content: space-between;
 -webkit-box-align: start;
     -ms-flex-align: start;
         align-items: flex-start;
 -ms-flex-wrap: wrap;
     flex-wrap: wrap;
 gap: 20px;
}
.newsArea .titleBox {
 text-align: right;
 margin-bottom: 0;
}
.newsArea .titleBox .decoTitle {
 -webkit-box-align: end;
     -ms-flex-align: end;
         align-items: flex-end;
}
.newsArea .classBoxRow {
 margin: 0;
 padding-top: 20px;
}
.newsArea .classBoxRow .classLink {
 -webkit-box-pack: start;
     -ms-flex-pack: start;
         justify-content: flex-start;
}
.newsArea .newsBox {
 margin-top: -40px;
 opacity: 1;
 -webkit-transform: translateY(0);
         transform: translateY(0);
 -webkit-transition: all 1s;
 transition: all 1s;
}
.newsArea .newsBox.hide {
 opacity: 0;
 -webkit-transform: translateY(50px);
         transform: translateY(50px);
}
.newsArea .newsBox .arrow.side {
 position: absolute;
 top: 50%;
 -webkit-transform: translateY(-50%);
         transform: translateY(-50%);
}
@media (max-width: 1180px) {
 .newsArea .newsBox .arrow.side {
  display: none;
 }
}
.newsArea .newsBox .arrow.side.prev {
 left: -60px;
}
@media (max-width: 1500px) {
 .newsArea .newsBox .arrow.side.prev {
  left: -45px;
 }
}
.newsArea .newsBox .arrow.side.next {
 right: -60px;
}
@media (max-width: 1500px) {
 .newsArea .newsBox .arrow.side.next {
  right: -45px;
 }
}
.newsArea .funcBox .redBall {
 width: 60px;
 height: 60px;
 top: -50px;
 left: 48%;
}
.newsArea .funcBox .redBall::after {
 background: radial-gradient(circle at 30% 30%, #e27582 0%, #c01526 43%, #500009 100%);
}
.newsArea .wrap::before {
 content: attr(data-text);
 max-width: 500px;
 font-size: 130px;
 font-weight: bold;
 font-family: "Cormorant", serif, "Noto Serif", serif;
 color: #e3e3e3;
 letter-spacing: 6.5px;
 position: absolute;
 bottom: 0;
 left: -50px;
}
@media (max-width: 1400px) {
 .newsArea .wrap::before {
  left: 10px;
  font-size: 100px;
 }
}
@media (max-width: 1180px) {
 .newsArea .newsBox {
  margin-top: 0;
 }
 .newsArea .titleBox {
  text-align: center;
 }
 .newsArea .titleBox .decoTitle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
 }
 .newsArea .topBox {
  -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;
  margin-bottom: 40px;
 }
 .newsArea .classBoxRow {
  width: 100%;
 }
}
@media (max-width: 840px) {
 .newsArea {
  padding-top: 40px;
 }
 .newsArea .wrap::before {
  display: none;
 }
 .newsArea .redBall {
  display: none;
 }
}

.newsList {
 margin-right: -40px;
 height: 572px;
}
.newsList .newsItem {
 padding: 0 40px;
}
.newsList .newsItem::before {
 content: "";
 width: 1px;
 height: 350px;
 background-color: #d9d9d9;
 position: absolute;
 left: 0;
 top: 0;
}
.newsList .item {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -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;
}
@media (min-width: 1201px) {
 .newsList .item:hover .Img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
 }
 .newsList .item:hover .Txt .title {
  color: #d80212;
 }
}
.newsList .Img {
 width: 100%;
 max-width: 320px;
 overflow: hidden;
}
.newsList .Img img {
 width: 100%;
 height: auto;
 display: block;
 -webkit-backface-visibility: hidden;
         backface-visibility: hidden;
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}
.newsList .Txt {
 padding-bottom: 32px;
}
.newsList .Txt .dateBox {
 margin-bottom: 20px;
}
.newsList .Txt .dateBox .year {
 font-size: 16px;
 font-weight: bold;
 font-family: "Cormorant", serif, "Noto Serif", serif;
 color: #515151;
 letter-spacing: 0px;
}
.newsList .Txt .dateBox .date {
 width: 50px;
 font-size: 26px;
 font-weight: 600;
 font-family: "Cormorant", serif, "Noto Serif", serif;
 color: #515151;
 letter-spacing: 0px;
}
.newsList .Txt .dateBox .date .day {
 text-align: right;
}
.newsList .Txt .dateBox .date::before {
 content: "";
 position: absolute;
 top: 50%;
 left: 50%;
 -webkit-transform: translate(-50%, -50%);
         transform: translate(-50%, -50%);
 width: 1px;
 height: 100%;
 background-color: #d9d9d9;
 -webkit-transform: translate(-50%, -50%) rotate(45deg);
         transform: translate(-50%, -50%) rotate(45deg);
}
.newsList .Txt .title {
 font-size: 18px;
 font-weight: bold;
 font-family: "Noto Serif TC", serif, "Source Han Serif", serif;
 color: #000;
 letter-spacing: 1.8px;
 margin-bottom: 10px;
 height: 26px;
 overflow: hidden;
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}
.newsList .Txt .text {
 font-size: 15px;
 font-weight: 400;
 font-family: "Noto Sans TC", sans-serif, "Microsoft JhengHei", sans-serif;
 color: #898989;
 letter-spacing: 0.75px;
 line-height: 1.66;
 height: 50px;
 overflow: hidden;
}
.newsList .linkWrap {
 width: 100%;
 height: 100%;
 margin: auto;
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
}
.newsList .slick-slide {
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}
@media (max-width: 840px) {
 .newsList {
  margin-right: -20px;
 }
 .newsList .newsItem {
  padding: 0 20px;
 }
}
@media (max-width: 481px) {
 .newsList {
  margin-right: 0;
 }
}

.projectsArea {
 padding: 120px 0;
}
.projectsArea .titleBox {
 padding-top: 20px;
 text-align: center;
}
.projectsArea .titleBox .decoTitle {
 -webkit-box-align: center;
     -ms-flex-align: center;
         align-items: center;
}
.projectsArea .titleBox .subtitle {
 font-size: 19px;
 font-weight: bold;
 font-family: "Noto Serif TC", serif, "Source Han Serif", serif;
 color: #000;
 letter-spacing: 0.95px;
 margin-top: 48px;
}
.projectsArea .wrap {
 max-width: 100%;
 padding: 0;
 margin: 0;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: end;
     -ms-flex-pack: end;
         justify-content: flex-end;
 -webkit-box-align: center;
     -ms-flex-align: center;
         align-items: center;
 padding-left: 370px;
}
.projectsArea .wrap .decoBall {
 position: absolute;
 top: 50%;
 left: 0;
 -webkit-transform: translate(-50%, -50%);
         transform: translate(-50%, -50%);
 pointer-events: none;
 z-index: -1;
}
.projectsArea .wrap .decoBall svg {
 width: 1700px;
 height: 1700px;
 -webkit-animation: rotate 30s infinite linear;
         animation: rotate 30s infinite linear;
}
.projectsArea .projectsBox {
 max-width: 1275px;
 width: 100%;
 z-index: 5;
 opacity: 1;
 -webkit-transform: translateY(0);
         transform: translateY(0);
 -webkit-transition: all 1s;
 transition: all 1s;
}
.projectsArea .projectsBox.hide {
 opacity: 0;
 -webkit-transform: translateY(50px);
         transform: translateY(50px);
}
.projectsArea .classBox {
 width: 990px;
 height: 990px;
 border: 1px solid #d9d9d9;
 border-radius: 50%;
 -webkit-transform: translateX(calc(-50% - 180px));
         transform: translateX(calc(-50% - 180px));
 position: absolute;
 left: 0;
}
.projectsArea .classBox::before {
 content: "";
 width: 200%;
 height: 1px;
 background-color: #d9d9d9;
 position: absolute;
 top: 50%;
 left: 50%;
 -webkit-transform: translate(-50%, -50%);
         transform: translate(-50%, -50%);
}
.projectsArea .classBox.unClick {
 pointer-events: none;
}
.projectsArea .classBox.unClick .classItem {
 pointer-events: none !important;
}
.projectsArea .classBox.unClick .classArrow .arrow {
 pointer-events: none !important;
}
.projectsArea .classBox .classArrow {
 position: absolute;
 top: 50%;
 right: 0;
 width: 50%;
 -webkit-transform-origin: 0% 50%;
         transform-origin: 0% 50%;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: end;
     -ms-flex-pack: end;
         justify-content: flex-end;
 pointer-events: none;
}
.projectsArea .classBox .classArrow.top {
 -webkit-transform: translate(0%, -50%) rotate(-45deg);
         transform: translate(0%, -50%) rotate(-45deg);
}
.projectsArea .classBox .classArrow.top .arrow {
 pointer-events: all;
 -webkit-transform: translateX(50%) rotate(45deg);
         transform: translateX(50%) rotate(45deg);
}
.projectsArea .classBox .classArrow.top .arrow::before {
 -webkit-transform: rotate(135deg);
         transform: rotate(135deg);
 margin-right: 0;
 margin-bottom: -3px;
}
.projectsArea .classBox .classArrow.bottom {
 -webkit-transform: translate(0%, -50%) rotate(45deg);
         transform: translate(0%, -50%) rotate(45deg);
}
.projectsArea .classBox .classArrow.bottom .arrow {
 pointer-events: all;
 -webkit-transform: translateX(50%) rotate(-45deg);
         transform: translateX(50%) rotate(-45deg);
}
.projectsArea .classBox .classArrow.bottom .arrow::before {
 -webkit-transform: rotate(-45deg);
         transform: rotate(-45deg);
 margin-left: 0;
 margin-top: -3px;
}
.projectsArea .classBox .classLink {
 position: absolute;
 top: 50%;
 left: 50%;
 width: 50%;
 -webkit-transform-origin: 0% center;
         transform-origin: 0% center;
 -webkit-transform: translate(0%, -50%) rotate(-60deg);
         transform: translate(0%, -50%) rotate(-60deg);
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: end;
     -ms-flex-pack: end;
         justify-content: flex-end;
 pointer-events: none;
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}
.projectsArea .classBox .classLink .classItem {
 -webkit-transform: translateX(99%) rotate(60deg);
         transform: translateX(99%) rotate(60deg);
 font-family: "Cormorant", serif, "Noto Serif", serif;
 font-size: 20px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: horizontal;
 -webkit-box-direction: normal;
     -ms-flex-direction: row;
         flex-direction: row;
 -webkit-box-pack: center;
     -ms-flex-pack: center;
         justify-content: center;
 -webkit-box-align: center;
     -ms-flex-align: center;
         align-items: center;
 gap: 10px;
 -webkit-transform-origin: 0% 50%;
         transform-origin: 0% 50%;
 pointer-events: none;
 opacity: 0;
 line-height: 1;
 cursor: pointer;
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}
.projectsArea .classBox .classLink .classItem::before {
 content: "";
 width: 5px;
 height: 5px;
 background-color: #898989;
 border-radius: 50%;
}
.projectsArea .classBox .classLink .classItem::after {
 content: "YEAR";
 font-size: 15px;
 font-weight: bold;
 font-family: "Cormorant", serif, "Noto Serif", serif;
 color: #898989;
 letter-spacing: 0px;
 margin-bottom: -10px;
 opacity: 0;
 pointer-events: none;
}
.projectsArea .classBox .classLink .classItem.active {
 opacity: 1;
 pointer-events: all;
}
.projectsArea .classBox .classLink.current {
 width: 30%;
}
.projectsArea .classBox .classLink.current .classItem {
 opacity: 1;
 -webkit-box-orient: vertical;
 -webkit-box-direction: reverse;
     -ms-flex-direction: column-reverse;
         flex-direction: column-reverse;
 color: #d80212;
 font-size: 40px;
 font-weight: bold;
 pointer-events: none;
}
.projectsArea .classBox .classLink.current .classItem::after {
 opacity: 1;
}
.projectsArea .classBox .classLink.current .classItem::before {
 width: 15px;
 height: 15px;
 background-color: #d80212;
 margin-bottom: -7px;
}
.projectsArea .classPhoneBox {
 width: 100%;
 height: 80px;
 margin-bottom: 40px;
 overflow-x: auto;
 display: none;
}
.projectsArea .classPhoneBox::-webkit-scrollbar {
 display: none;
}
.projectsArea .classPhoneBox .classList {
 padding: 10px 20px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: horizontal;
 -webkit-box-direction: normal;
     -ms-flex-direction: row;
         flex-direction: row;
 -webkit-box-pack: center;
     -ms-flex-pack: center;
         justify-content: center;
 -webkit-box-align: end;
     -ms-flex-align: end;
         align-items: flex-end;
 gap: 48px;
}
.projectsArea .classPhoneBox .classList::before {
 content: "";
 width: 100%;
 height: 1px;
 background-color: #d9d9d9;
 position: absolute;
 left: 0;
 bottom: 10px;
}
.projectsArea .classPhoneBox .classItem {
 font-family: "Cormorant", serif, "Noto Serif", serif;
 font-size: 24px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
     -ms-flex-direction: column;
         flex-direction: column;
 -webkit-box-pack: end;
     -ms-flex-pack: end;
         justify-content: flex-end;
 -webkit-box-align: center;
     -ms-flex-align: center;
         align-items: center;
 gap: 5px;
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}
.projectsArea .classPhoneBox .classItem::after {
 content: "";
 display: block;
 width: 5px;
 height: 5px;
 background-color: #898989;
 border-radius: 50%;
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
 margin-bottom: -2px;
}
.projectsArea .classPhoneBox .classItem::before {
 content: "YEAR";
 font-size: 15px;
 font-weight: bold;
 font-family: "Cormorant", serif, "Noto Serif", serif;
 color: #898989;
 letter-spacing: 0px;
 margin-bottom: -10px;
 opacity: 0;
 pointer-events: none;
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}
.projectsArea .classPhoneBox .classItem.current {
 color: #d80212;
 font-size: 32px;
 pointer-events: none;
}
.projectsArea .classPhoneBox .classItem.current::after {
 width: 12px;
 height: 12px;
 background-color: #d80212;
 margin-bottom: -5px;
}
.projectsArea .classPhoneBox .classItem.current::before {
 opacity: 1;
}
.projectsArea::before {
 content: "";
 display: block;
 width: 75%;
 height: 380px;
 background-image: url(../images/cityBG02.png);
 background-size: cover;
 position: absolute;
 right: 0;
 bottom: -200px;
}
@media (max-width: 1400px) {
 .projectsArea .wrap {
  padding-left: 270px;
 }
 .projectsArea .classBox {
  width: 750px;
  height: 750px;
  -webkit-transform: translateX(-70%);
          transform: translateX(-70%);
 }
}
@media (max-width: 1180px) {
 .projectsArea .wrap {
  padding-left: 280px;
 }
 .projectsArea .classBox::before {
  width: 100%;
 }
}
@media (max-width: 840px) {
 .projectsArea {
  padding: 60px 0;
 }
 .projectsArea .wrap {
  padding-left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
 }
 .projectsArea .classBox {
  display: none;
 }
 .projectsArea .classPhoneBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
 }
}

.projectsList {
 width: 100%;
}
.projectsList .item {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: end;
     -ms-flex-pack: end;
         justify-content: flex-end;
 -webkit-box-align: start;
     -ms-flex-align: start;
         align-items: flex-start;
}
.projectsList .Img {
 max-width: 620px;
 overflow: hidden;
}
.projectsList .Img img {
 width: 100%;
 height: auto;
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}
@media (min-width: 1201px) {
 .projectsList .Img:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
 }
}
.projectsList .Txt {
 max-width: 540px;
 padding: 50px;
}
.projectsList .Txt .title {
 font-size: 26px;
 font-weight: bold;
 font-family: "Noto Serif TC", serif, "Source Han Serif", serif;
 color: #000;
 letter-spacing: 1.3px;
 margin-bottom: 20px;
}
.projectsList .Txt .subtitle {
 font-size: 18px;
 font-weight: 400;
 font-family: "Noto Sans TC", sans-serif, "Microsoft JhengHei", sans-serif;
 color: #d80212;
 letter-spacing: 0.9px;
 height: 26px;
 overflow: hidden;
 margin-bottom: 20px;
}
.projectsList .Txt .text {
 font-size: 15px;
 font-weight: 400;
 font-family: "Noto Sans TC", sans-serif, "Microsoft JhengHei", sans-serif;
 color: #898989;
 letter-spacing: 0.75px;
 line-height: 1.66;
 height: 115px;
 overflow: hidden;
 padding-top: 40px;
}
.projectsList .Txt .text::before {
 content: "";
 display: block;
 width: 45px;
 height: 1px;
 background-color: #d9d9d9;
 position: absolute;
 left: 0;
 top: 0;
}
.projectsList .Txt .btnBox {
 margin-top: 20px;
}
.projectsList .Txt .funcBox {
 -ms-flex-wrap: wrap;
     flex-wrap: wrap;
 -webkit-box-align: center;
     -ms-flex-align: center;
         align-items: center;
 gap: 15px;
 margin: 20px 0;
}
.projectsList .Txt .funcBox .index {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 gap: 10px;
}
.projectsList .Txt .funcBox .index li {
 width: 5px;
 height: 5px;
 border-radius: 30px;
 background-color: #d9d9d9;
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}
.projectsList .Txt .funcBox .index li.active {
 width: 30px;
 background-color: #d80212;
}
.projectsList .Txt .funcBox .arrowBox {
 -webkit-box-pack: start;
     -ms-flex-pack: start;
         justify-content: flex-start;
 gap: 15px;
}
.projectsList .Txt .funcBox .arrowBox .arrow {
 width: 35px;
 height: 35px;
}
.projectsList .txtBottom {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: end;
     -ms-flex-align: end;
         align-items: flex-end;
 -webkit-box-pack: justify;
     -ms-flex-pack: justify;
         justify-content: space-between;
}
.projectsList .txtBottom .picture {
 display: none;
}
.projectsList .picture {
 width: 250px;
}
.projectsList .picture img {
 width: 100%;
 height: auto;
 border-bottom: 1px solid #d9d9d9;
}
@media (max-width: 1600px) {
 .projectsList .picture {
  display: none;
 }
 .projectsList .item {
  gap: 0;
 }
 .projectsList .Txt {
  max-width: 50%;
  padding: 0 40px;
 }
 .projectsList .txtBottom .picture {
  display: block;
 }
}
@media (max-width: 1180px) {
 .projectsList .item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-right: 20px;
 }
 .projectsList .Txt {
  max-width: 620px;
  width: 100%;
  padding: 20px 0;
 }
}
@media (max-width: 840px) {
 .projectsList .item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
 }
 .projectsList .Txt {
  padding: 20px 0;
 }
}
@media (max-width: 400px) {
 .projectsList .Txt .txtBottom .picture {
  display: none;
 }
}

.facArea {
 padding-top: 160px;
}
.facArea .titleBox {
 max-width: 1105px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: horizontal;
 -webkit-box-direction: normal;
     -ms-flex-direction: row;
         flex-direction: row;
 -webkit-box-pack: justify;
     -ms-flex-pack: justify;
         justify-content: space-between;
 -webkit-box-align: end;
     -ms-flex-align: end;
         align-items: flex-end;
 gap: 20px;
 margin-bottom: 72px;
}
.facArea .titleBox .subtitleEn {
 margin-bottom: 12px;
}
.facArea .wrap::before {
 content: attr(data-text);
 max-width: 690px;
 font-size: 130px;
 font-weight: bold;
 font-family: "Cormorant", serif, "Noto Serif", serif;
 color: #fff;
 letter-spacing: 6.5px;
 line-height: 100px;
 text-align: right;
 position: absolute;
 right: 0;
 top: 0;
}
.facArea .greenBall {
 width: 45px;
 height: 45px;
 top: 0;
 right: 80px;
}
.facArea .redBall {
 width: 85px;
 height: 85px;
 bottom: -150px;
 left: 0px;
}
.facArea::after {
 content: "";
 display: block;
 width: 100%;
 height: 330px;
 background-image: url(../images/esg_BG.png);
 background-size: cover;
 margin-top: 40px;
 z-index: -1;
 position: relative;
}
.facArea::before {
 content: "";
 width: 40%;
 height: 80%;
 background-image: url(../images/map_BG.png);
 background-size: contain;
 background-repeat: no-repeat;
 position: absolute;
 left: 0;
 top: 0;
 z-index: -1;
}
@media (max-width: 1400px) {
 .facArea .titleBox {
  max-width: 100%;
 }
}
@media (max-width: 1180px) {
 .facArea .titleBox {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
 }
 .facArea .titleBox div {
  width: 100%;
 }
 .facArea .titleBox div.subtitleBox {
  text-align: right;
 }
 .facArea::before {
  width: 60%;
 }
 .facArea .wrap::before {
  font-size: 100px;
  line-height: 1;
 }
 .facArea::after {
  height: 280px;
  margin-top: 0;
 }
}
@media (max-width: 840px) {
 .facArea {
  padding-top: 60px;
 }
 .facArea .wrap::before {
  display: none;
 }
 .facArea::after {
  height: 250px;
  margin-top: -50px;
 }
}

.facList {
 margin: 0 -20px;
}
.facList .facItem {
 padding: 0 20px;
}
.facList .Img {
 width: 100%;
 overflow: hidden;
 background-color: #000;
}
.facList .Img img {
 width: 100%;
 height: auto;
 display: block;
 -webkit-backface-visibility: hidden;
         backface-visibility: hidden;
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}
@media (min-width: 1201px) {
 .facList .Img:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.9;
 }
}
.facList .Txt {
 padding-top: 40px;
}
.facList .Txt .dateBox {
 font-size: 16px;
 font-weight: bold;
 font-family: "Cormorant", serif, "Noto Serif", serif;
 color: #d80212;
 letter-spacing: 0.8px;
}
.facList .Txt .title {
 font-size: 18px;
 font-weight: bold;
 font-family: "Noto Serif TC", serif, "Source Han Serif", serif;
 color: #000;
 letter-spacing: 0.9px;
 margin: 12px 0;
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}
.facList .Txt .title a {
 font-size: 18px;
 font-weight: bold;
 font-family: "Noto Serif TC", serif, "Source Han Serif", serif;
 color: #000;
 letter-spacing: 0.9px;
}
@media (min-width: 1201px) {
 .facList .Txt .title:hover {
  color: #d80212;
 }
 .facList .Txt .title:hover a {
  color: #d80212;
 }
}
.facList .Txt .itemTitle {
 vertical-align: baseline;
}
.facList .Txt .itemTitle::after {
 content: "";
 display: inline-block;
 width: 1px;
 height: 12px;
 background-color: #898989;
 margin: 0 5px;
}
.facList .Txt .implement {
 font-size: 15px;
 font-weight: 400;
 font-family: "Noto Sans TC", sans-serif, "Microsoft JhengHei", sans-serif;
 color: #898989;
 letter-spacing: 0.75px;
 line-height: 1.66;
}
.facList .Txt .text {
 font-size: 15px;
 font-weight: 400;
 font-family: "Noto Sans TC", sans-serif, "Microsoft JhengHei", sans-serif;
 color: #898989;
 letter-spacing: 0.75px;
 line-height: 1.66;
 height: 75px;
 overflow: hidden;
}

.esgArea {
 padding-top: 30px;
 padding-bottom: 50px;
}
.esgArea::before {
 content: "";
 width: 100%;
 height: 100%;
 background-color: #eee;
 position: absolute;
 left: 0;
 top: 0;
 z-index: -1;
}
.esgArea .wrap {
 padding-top: 115px;
 padding-bottom: 150px;
}
.esgArea .titleBox {
 max-width: 570px;
 margin: auto;
 text-align: center;
 margin-bottom: 0;
}
.esgArea .titleBox .decoTitle {
 -webkit-box-align: center;
     -ms-flex-align: center;
         align-items: center;
}
.esgArea .titleBox .subtitle {
 margin-top: 40px;
 margin-bottom: 24px;
}
.esgArea .titleBox .btnBox {
 margin-top: 40px;
}
.esgArea .picture {
 position: absolute;
 pointer-events: none;
}
.esgArea .picture img {
 width: 100%;
 height: auto;
}
.esgArea .picture.pictureTop {
 width: 215px;
 top: 20px;
 left: 180px;
}
.esgArea .picture.pictureCenter {
 width: 300px;
 top: 130px;
 left: -50px;
}
.esgArea .picture.pictureBottom {
 width: 280px;
 bottom: -40px;
 left: 120px;
}
.esgArea .picture.pictureRight {
 width: 380px;
 top: 80px;
 right: -50px;
}
.esgArea .blueBall {
 width: 100px;
 height: 100px;
 top: 0;
 right: 30%;
 z-index: 3;
}
@media (max-width: 1500px) {
 .esgArea .wrap {
  padding: 115px 300px 150px 280px;
 }
 .esgArea .titleBox {
  padding: 0 10px;
 }
 .esgArea .picture.pictureCenter {
  width: 280px;
  top: 130px;
  left: 0;
 }
 .esgArea .picture.pictureRight {
  width: 300px;
  right: 0;
 }
}
@media (max-width: 1180px) {
 .esgArea .wrap {
  padding: 115px 200px 150px 220px;
 }
 .esgArea .picture.pictureCenter {
  top: 50px;
  left: -30px;
 }
 .esgArea .picture.pictureTop {
  width: 180px;
  top: -50px;
  left: 120px;
 }
 .esgArea .picture.pictureBottom {
  width: 200px;
  bottom: -50px;
  left: auto;
  right: 250px;
 }
 .esgArea .picture.pictureRight {
  width: 200px;
  right: 10px;
  top: auto;
  bottom: 0;
 }
}
@media (max-width: 840px) {
 .esgArea .wrap {
  padding: 200px 30px;
 }
 .esgArea .blueBall {
  width: 60px;
  height: 60px;
 }
 .esgArea .picture.pictureCenter {
  width: 200px;
 }
 .esgArea .picture.pictureRight {
  bottom: -30px;
 }
}
@media (max-width: 640px) {
 .esgArea .blueBall {
  display: none;
 }
 .esgArea .picture.pictureTop {
  top: -30px;
  left: auto;
  right: 30px;
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
 }
 .esgArea .picture.pictureCenter {
  width: 190px;
  top: -40px;
  left: 0px;
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
 }
 .esgArea .picture.pictureRight {
  bottom: -80px;
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
 }
 .esgArea .picture.pictureBottom {
  right: auto;
  left: 30px;
  z-index: 3;
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
 }
}
.linkArea {
 padding-top: 72px;
 padding-bottom: 220px;
}
.linkArea::before {
 content: "";
 width: 100%;
 height: 100%;
 background-color: #eee;
 position: absolute;
 left: 0;
 top: 0;
 z-index: -1;
}
.linkArea .titleBox {
 text-align: center;
 margin-bottom: 60px;
}
.linkArea .titleBox .decoTitle::after {
 display: none;
}
.linkArea .titleBox .titleIcon {
 display: inline-block;
 width: 60px;
 height: 60px;
 margin-bottom: 12px;
}
.linkArea .titleBox .titleIcon img {
 width: 100%;
 height: 100%;
 -o-object-fit: contain;
    object-fit: contain;
}
.linkArea .titleBox .title {
 margin-top: 0;
}
.linkArea .greenBall {
 width: 65px;
 height: 65px;
 top: 0;
 left: -50px;
}
.linkArea .redBall {
 width: 120px;
 height: 120px;
 top: 0;
 right: 80px;
}
.linkArea .blueBall {
 width: 95px;
 height: 95px;
 bottom: 50px;
 right: 200px;
}
.linkArea .slick-dots li {
 background-color: #d9d9d9;
}
@media (max-width: 1400px) {
 .linkArea .greenBall {
  left: -10px;
 }
}
@media (max-width: 1180px) {
 .linkArea {
  padding-bottom: 120px;
 }
}
@media (max-width: 840px) {
 .linkArea {
  padding-top: 100px;
  padding-bottom: 100px;
 }
 .linkArea .redBall {
  display: none;
 }
 .linkArea .blueBall {
  display: none;
 }
}

.linkList {
 margin: 0 -8px;
}
.linkList .linkItem {
 padding: 0 8px;
}
.linkList .dataTitle {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: horizontal;
 -webkit-box-direction: normal;
     -ms-flex-direction: row;
         flex-direction: row;
 -webkit-box-pack: start;
     -ms-flex-pack: start;
         justify-content: flex-start;
 -webkit-box-align: center;
     -ms-flex-align: center;
         align-items: center;
 gap: 12px;
 margin-bottom: 16px;
}
.linkList .dataTitle .icon {
 width: 40px;
 height: 40px;
}
.linkList .dataTitle .icon img {
 width: 100%;
}
.linkList .dataTitle .title {
 font-size: 18px;
 font-weight: bold;
 font-family: "Noto Serif TC", serif, "Source Han Serif", serif;
 color: #000;
 letter-spacing: 0px;
}
.linkList .Img {
 width: 100%;
}
.linkList .Img img {
 width: 100%;
 height: auto;
 display: block;
 -webkit-backface-visibility: hidden;
         backface-visibility: hidden;
}
.linkList .text {
 padding-top: 32px;
 font-size: 15px;
 font-weight: 400;
 font-family: "Noto Sans TC", sans-serif, "Microsoft JhengHei", sans-serif;
 color: #898989;
 letter-spacing: 0.75px;
 line-height: 1.66;
}