﻿.linkArea .Img, .newsArea .newsMoreBtn .moreTxt, .newsArea .newsMoreBtn, .newsArea .Txt .text, .newsArea .Txt .title, .newsArea .Txt .classTitle, .newsArea .Txt .date, .newsArea .Txt, .aboutArea .aboutLeft .arrowBox .arrow, .adArea .moreBtn span::before, .adArea .moreBtn span, .adArea .moreBtn, .adArea .Txt .title, .adArea .adItem, .bannerArea .bannerItem .Txt .bannerVideo a:after, .bannerArea .bannerItem .Txt .bannerVideo a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@-webkit-keyframes bannerTxtAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes bannerTxtAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes bannerScrollAnimation {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes bannerScrollAnimation {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
@keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
@-webkit-keyframes arrRight {
  0%, 100% {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  50% {
    -webkit-transform: translate(5px, -50%);
    transform: translate(5px, -50%);
  }
}
@keyframes arrRight {
  0%, 100% {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  50% {
    -webkit-transform: translate(5px, -50%);
    transform: translate(5px, -50%);
  }
}
/*loading*/
@-webkit-keyframes loadLine {
  0% {
    width: 0;
  }
  20% {
    width: 30%;
  }
  60% {
    width: 65%;
  }
  100% {
    width: 100%;
  }
}
@keyframes loadLine {
  0% {
    width: 0;
  }
  20% {
    width: 30%;
  }
  60% {
    width: 65%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loadLineMove {
  0% {
    height: 8px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    height: 100%;
    -webkit-transform: translateY(101%);
            transform: translateY(101%);
  }
}
@keyframes loadLineMove {
  0% {
    height: 8px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    height: 100%;
    -webkit-transform: translateY(101%);
            transform: translateY(101%);
  }
}
@-webkit-keyframes loadLineMove02 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(101%);
            transform: translateY(101%);
  }
}
@keyframes loadLineMove02 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(101%);
            transform: translateY(101%);
  }
}
@-webkit-keyframes logoFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes logoFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.loadingArea {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
}
.loadingArea::before {
  content: "";
  width: 0;
  height: 8px;
  background-color: #C7365B;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.loadingArea::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.loadingArea .loadLogo {
  width: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.loadingArea .loadLogo img {
  max-width: 100%;
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  height: auto;
}
.loadingArea.show {
  opacity: 1;
  pointer-events: auto;
}
.loadingArea.show::before {
  -webkit-animation: loadLine 3s forwards, loadLineMove 0.8s 3s forwards;
          animation: loadLine 3s forwards, loadLineMove 0.8s 3s forwards;
}
.loadingArea.show::after {
  -webkit-animation: loadLineMove02 0.8s 3.4s forwards;
          animation: loadLineMove02 0.8s 3.4s forwards;
}
.loadingArea.show .loadLogo {
  -webkit-animation: logoFadeOut 0.3s 3.12s forwards;
          animation: logoFadeOut 0.3s 3.12s forwards;
}

/*pop*/
.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%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.popWin .Txt {
  padding: 30px;
}
.popWin .Txt .popTitle {
  font-size: 25px;
  margin-bottom: 25px;
}
.popWin .close {
  position: absolute;
  right: -23px;
  top: -23px;
  z-index: 1;
  width: 46px;
  height: 46px;
  background-color: rgba(0, 0, 0, 0.7);
  /* background-color: #fff; */
  border-radius: 50%;
}
.popWin .close::before, .popWin .close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 23px;
  width: 25px;
  height: 1px;
  background-color: #bca480;
  /* border-radius:  50%; */
}
.popWin .close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popWin.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popWin.show .mask,
.popWin.show .inner {
  opacity: 1;
}
.popWin .close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (max-width: 1180px) {
  .popWin .close {
    right: 0;
    top: 0;
    border-radius: 0;
  }
  .popWin .popContent {
    max-height: calc(100vh - 150px);
  }
}

.mainArea {
  padding: 0;
}

.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerItem .Txt {
  max-width: 1314px;
  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;
  padding: 110px 0px 85px;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 1400px) {
  .bannerArea .bannerItem .Txt {
    max-width: 1200px;
    padding: 110px 25px 85px;
  }
}
@media (max-width: 1366px) {
  .bannerArea .bannerItem .Txt {
    padding: 200px 0px 0px;
  }
}
@media (max-width: 1280px) {
  .bannerArea .bannerItem .Txt {
    padding: 200px 25px 0px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt {
    padding: 110px 20px 85px;
  }
}
.bannerArea .bannerItem .Txt .textBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.bannerArea .bannerItem .Txt .title {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.5px;
  opacity: 0;
  font-family: "Roboto";
}
.bannerArea .bannerItem .Txt .subtitle {
  color: #fff;
  display: block;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-top: 15px;
  font-weight: 100;
  opacity: 0;
  font-family: "Roboto";
}
@media (max-width: 1000px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 38px;
  }
}
.bannerArea .bannerItem .Txt .subtitle em {
  font-weight: 700;
  line-height: 1.2;
  font-size: 60px;
  font-family: "Roboto";
}
@media (max-width: 1000px) {
  .bannerArea .bannerItem .Txt .subtitle em {
    font-size: 38px;
  }
}
.bannerArea .bannerItem .Txt .text {
  color: #fff;
  display: block;
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin: 30px 0;
  opacity: 0;
  font-size: 15px;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .text {
    margin: 15px 0;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Txt .text {
    margin: 35px 0;
  }
}
.bannerArea .bannerItem .Txt .bannerBtn {
  opacity: 0;
  width: 15%;
}
@media (max-width: 1200px) {
  .bannerArea .bannerItem .Txt .bannerBtn {
    width: 25%;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Txt .bannerBtn {
    width: 70%;
  }
}
.bannerArea .bannerItem .Txt .bannerBtn a {
  border: 1px solid #fff;
  color: #fff;
  display: inline-block;
  letter-spacing: 0.5px;
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}
.bannerArea .bannerItem .Txt .bannerBtn a span {
  width: 57px;
  height: 1px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.bannerArea .bannerItem .Txt .bannerBtn a span::before {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 7px;
  height: 1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: 3px;
  right: 0;
}
.bannerArea .bannerItem .Txt .bannerBtn a:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  color: #C7365B;
}
.bannerArea .bannerItem .Txt .bannerBtn a:hover span {
  background-color: #C7365B;
  -webkit-animation: arrRight 1.2s ease-in-out infinite;
          animation: arrRight 1.2s ease-in-out infinite;
}
.bannerArea .bannerItem .Txt .bannerBtn a:hover span::before {
  background-color: #C7365B;
}
.bannerArea .bannerItem .Txt .bannerVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -40px;
}
.bannerArea .bannerItem .Txt .bannerVideo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80px;
  height: 80px;
  background-color: #C7365B;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  position: absolute;
  border-radius: 50%;
}
.bannerArea .bannerItem .Txt .bannerVideo a:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 14px solid #fff;
  display: block;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.bannerArea .bannerItem .Txt .bannerVideo a:hover {
  background-color: #fff;
}
.bannerArea .bannerItem .Txt .bannerVideo a:hover:after {
  border-bottom: 14px solid #C7365B;
}
.bannerArea .bannerItem .Img {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerItem.slick-current .Txt .title {
  -webkit-animation: bannerTxtAnimation 0.8s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .subtitle {
  -webkit-animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .text {
  -webkit-animation: bannerTxtAnimation 0.8s 0.8s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 0.8s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .bannerBtn {
  -webkit-animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
}
.bannerArea .bannerControl {
  position: absolute;
  left: 0px;
  top: 190px;
  z-index: 1;
  margin: 0 auto;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}
@media (max-width: 1440px) {
  .bannerArea .bannerControl {
    top: 150px;
  }
}
@media (max-width: 1366px) {
  .bannerArea .bannerControl {
    top: 190px;
  }
}
@media (max-width: 1280px) {
  .bannerArea .bannerControl {
    left: 25px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerControl {
    display: none;
  }
}
.bannerArea .bannerControl .line {
  width: 260px;
  height: 1px;
  background-color: #fff;
  margin: 0 10px;
}
.bannerArea .bannerControl .page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  color: #fff;
}
.bannerArea .bannerControl .page span {
  margin: 0 5px;
}
.bannerArea .slick-dots {
  width: 15px;
  margin: 0;
  bottom: unset;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 45%;
  right: 50px;
}
.bannerArea .slick-dots li {
  width: 100%;
  height: 15px;
  margin: 5px;
}
.bannerArea .slick-dots li button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.bannerArea .slick-dots li button:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: transparent;
  border: 2px solid #fff;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 1;
}
.bannerArea .slick-dots li button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 2px solid #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  opacity: 0;
}
.bannerArea .slick-dots li.slick-active button:before {
  background-color: #fff;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  border: 2px solid #fff;
}
.bannerArea .slick-dots li.slick-active button::after {
  opacity: 1;
  z-index: 3;
}
@media (max-width: 1180px) {
  .bannerArea .Txt .bannerVideo,
  .bannerArea .socialBox,
  .bannerArea .scrollDown,
  .bannerArea .slick-dots,
  .bannerArea .arrowBox {
    display: none !important;
  }
}

.titleBox {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 1180px) {
  .titleBox {
    margin: 0 0 15px 0;
  }
}
.titleBox .titleEn {
  font-weight: 700;
  font-size: 51px;
  text-transform: uppercase;
  color: #C7365B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto";
  letter-spacing: 0;
}
@media (max-width: 640px) {
  .titleBox .titleEn {
    font-size: 30px;
  }
}
.titleBox .titleEn .enS {
  font-weight: 100;
  margin: 0 5px 0 0;
}
.titleBox .titleTw {
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.05em;
  font-family: "Noto Sans TC";
  color: #6e6e6e;
}
@media (max-width: 360px) {
  .titleBox .titleTw {
    font-size: 14px;
  }
}

.adArea {
  padding: 100px 0 70px 0;
}
@media (max-width: 1180px) {
  .adArea {
    padding: 60px 0;
  }
}
.adArea .adList {
  margin: 0 -20px;
  padding: 100px 0 0 0;
  position: relative;
}
@media (max-width: 1180px) {
  .adArea .adList {
    padding: 0px 0;
  }
}
.adArea .adList::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 47px;
  top: 0%;
  left: 50%;
  background-color: #afafaf;
}
@media (max-width: 1180px) {
  .adArea .adList.slick-slider {
    margin: 0;
    padding: 80px 0 10px 0;
  }
}
.adArea .adItem {
  padding: 0 20px;
  border-right: 1px solid #e5e5e5;
}
@media (max-width: 480px) {
  .adArea .adItem {
    border-right: 1px solid rgba(229, 229, 229, 0);
    padding: 0;
  }
}
.adArea .adItem:hover .title {
  color: #C7365B;
}
.adArea .adItem:hover .moreBtn {
  color: #C7365B;
}
.adArea .adItem:hover .moreBtn span {
  background-color: #C7365B;
  -webkit-animation: arrRight 0.7s ease-in-out infinite;
          animation: arrRight 0.7s ease-in-out infinite;
}
.adArea .adItem:hover .moreBtn span::before {
  background-color: #C7365B;
}
.adArea.slick-slider.slick-active + .slick-active + .slick-active {
  border-right: 1px solid rgba(0, 0, 0, 0);
}
.adArea .item {
  position: relative;
  overflow: hidden;
}
.adArea .Img img {
  max-width: 100%;
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  height: auto;
}
.adArea .Txt {
  width: 100%;
  padding: 20px 0px 0 0;
  text-align: left;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-family: "Noto Sans TC";
}
@media (max-width: 1180px) {
  .adArea .Txt {
    padding: 20px 0px 0 0;
  }
}
.adArea .Txt .title {
  display: block;
  width: 100%;
  font-size: 18px;
  color: #000;
  font-weight: 400;
  height: 55px;
}
.adArea .Txt .text {
  display: block;
  width: 100%;
  height: 55px;
  font-size: 14px;
  color: #afafaf;
  line-height: 1.6;
  margin: 10px 0;
}
.adArea .Txt .price {
  font-size: 35px;
  font-weight: bold;
}
.adArea .moreBtn {
  color: #3a3a3a;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 1px;
  position: relative;
}
.adArea .moreBtn span {
  width: 57px;
  height: 1px;
  background-color: #aeaeae;
  position: relative;
  z-index: 2;
  margin: 3px 0 0 15px;
  right: 10px;
}
.adArea .moreBtn span::before {
  content: "";
  position: absolute;
  background-color: #aeaeae;
  width: 7px;
  height: 1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: 3px;
  right: 0;
}
.adArea .slick-dots {
  text-align: center;
  bottom: -110px;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  width: 100%;
}
@media (max-width: 640px) {
  .adArea .slick-dots {
    bottom: -80px;
  }
}
.adArea .slick-dots li button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.adArea .slick-dots li button:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: transparent;
  border: 2px solid #C7365B;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 1;
}
.adArea .slick-dots li button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 2px solid #C7365B;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  opacity: 0;
}
.adArea .slick-dots li.slick-active button:before {
  background-color: #C7365B;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  border: 2px solid #C7365B;
}
.adArea .slick-dots li.slick-active button::after {
  opacity: 1;
  z-index: 3;
}

.aboutArea {
  padding: 50px 0 0px 0;
  position: relative;
}
@media (max-width: 1280px) {
  .aboutArea {
    padding: 50px 0 0 0;
  }
}
@media (max-width: 1200px) {
  .aboutArea {
    padding: 90px 0 0px 0;
  }
}
@media (max-width: 640px) {
  .aboutArea {
    padding: 40px 0 0px 0;
  }
}
.aboutArea .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .aboutArea .wrap {
    padding: 0 25px;
  }
}
.aboutArea .top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 1200px) {
  .aboutArea .top {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
@media (max-width: 360px) {
  .aboutArea .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.aboutArea .titleBox {
  width: 100%;
  position: relative;
  padding: 0 100px 0 0;
}
@media (max-width: 1200px) {
  .aboutArea .titleBox {
    padding: 0;
    max-width: 410px;
    font-size: 30px;
  }
}
@media (max-width: 360px) {
  .aboutArea .titleBox {
    margin: 0;
  }
}
.aboutArea .titleBox .titleEn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: normal;
  line-height: 1;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 640px) {
  .aboutArea .titleBox .titleEn {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    font-size: 30px;
  }
}
.aboutArea .titleBox .titleEn .enS {
  padding: 0 120px 0 0px;
}
@media (max-width: 640px) {
  .aboutArea .titleBox .titleEn .enS {
    padding: 0;
  }
}
.aboutArea .titleBox .TxtEn {
  position: absolute;
  top: 30px;
  right: 0;
  font-family: "Roboto";
  font-weight: 400;
}
@media (max-width: 1200px) {
  .aboutArea .titleBox .TxtEn {
    display: none;
  }
}
.aboutArea .titleBox::before {
  content: "";
  position: absolute;
  background-color: #dddddd;
  width: 1px;
  height: 140px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -5px;
  right: 0;
}
@media (max-width: 1200px) {
  .aboutArea .titleBox::before {
    top: -15px;
    right: -48px;
  }
}
@media (max-width: 640px) {
  .aboutArea .titleBox::before {
    top: -10px;
    right: 25px;
  }
}
@media (max-width: 360px) {
  .aboutArea .titleBox::before {
    display: none;
  }
}
.aboutArea .yearBox {
  margin: 0 0 -10px 15px;
  font-family: "Roboto";
  text-align: right;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .aboutArea .yearBox {
    width: auto;
    padding: 30px 0 0 60px;
  }
}
@media (max-width: 640px) {
  .aboutArea .yearBox {
    margin: 0 0 -10px 0;
    padding: 30px 0 0 0px;
  }
}
@media (max-width: 360px) {
  .aboutArea .yearBox {
    padding: 10px 0 0 0px;
    margin: 0;
    text-align: center;
  }
}
.aboutArea .yearBox .yy {
  color: #C7365B;
  font-size: 60px;
  font-weight: 400;
  line-height: 65px;
}
@media (max-width: 640px) {
  .aboutArea .yearBox .yy {
    font-size: 40px;
    line-height: 45px;
  }
}
.aboutArea .yearBox .Txt {
  font-size: 14px;
  color: #161616;
  letter-spacing: 4px;
  padding: 0 5px 0 0;
}
@media (max-width: 360px) {
  .aboutArea .yearBox .Txt {
    padding: 0;
    text-align: center;
    letter-spacing: 2px;
  }
}
.aboutArea .aboutBox {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1680px) {
  .aboutArea .aboutBox {
    min-height: 497px;
  }
}
@media (max-width: 1536px) {
  .aboutArea .aboutBox {
    min-height: 455px;
  }
}
@media (max-width: 1200px) {
  .aboutArea .aboutBox {
    -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;
    padding: 0 25px;
    margin: 35px 0 0 0;
  }
}
.aboutArea .aboutRight {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 1050px;
  z-index: 1;
  padding: 60px 0 0 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .aboutArea .aboutRight {
    width: 800px;
  }
}
@media (max-width: 1200px) {
  .aboutArea .aboutRight {
    width: 100%;
    position: relative;
    top: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.aboutArea .aboutRight .adAboutList .Img {
  width: 100%;
}
.aboutArea .aboutRight .adAboutList .Img img {
  max-width: 100%;
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  height: auto;
}
.aboutArea .aboutLeft {
  position: relative;
  width: calc(100% - 1050px);
  top: -125px;
}
@media (max-width: 1440px) {
  .aboutArea .aboutLeft {
    width: calc(100% - 800px);
  }
}
@media (max-width: 1200px) {
  .aboutArea .aboutLeft {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    top: 0;
  }
}
.aboutArea .aboutLeft .adAboutTxt {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
}
@media (max-width: 1200px) {
  .aboutArea .aboutLeft .adAboutTxt {
    width: 100%;
    position: relative;
    top: 0;
  }
}
.aboutArea .aboutLeft .adAboutTxt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.1;
  background-image: url("../image/home_about_bg.jpg");
  width: 960px;
  height: 534px;
}
@media (max-width: 1680px) {
  .aboutArea .aboutLeft .adAboutTxt::before {
    width: 915px;
  }
}
@media (max-width: 1536px) {
  .aboutArea .aboutLeft .adAboutTxt::before {
    width: 825px;
  }
}
@media (max-width: 1440px) {
  .aboutArea .aboutLeft .adAboutTxt::before {
    width: 750px;
  }
}
@media (max-width: 1280px) {
  .aboutArea .aboutLeft .adAboutTxt::before {
    width: 665px;
  }
}
@media (max-width: 1200px) {
  .aboutArea .aboutLeft .adAboutTxt::before {
    display: none;
  }
}
.aboutArea .aboutLeft .adAboutTxt::after {
  content: "";
  background-color: #C7365B;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 960px;
  height: 534px;
}
@media (max-width: 1680px) {
  .aboutArea .aboutLeft .adAboutTxt::after {
    width: 915px;
  }
}
@media (max-width: 1536px) {
  .aboutArea .aboutLeft .adAboutTxt::after {
    width: 825px;
  }
}
@media (max-width: 1440px) {
  .aboutArea .aboutLeft .adAboutTxt::after {
    width: 750px;
  }
}
@media (max-width: 1280px) {
  .aboutArea .aboutLeft .adAboutTxt::after {
    width: 665px;
  }
}
@media (max-width: 1200px) {
  .aboutArea .aboutLeft .adAboutTxt::after {
    display: none;
  }
}
.aboutArea .aboutLeft .adAboutTxt .slick-list {
  z-index: 3;
}
.aboutArea .aboutLeft .adAboutTxt .Txt {
  padding: 0;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
  padding: 75px 0;
  max-height: 534px;
}
@media (max-width: 1200px) {
  .aboutArea .aboutLeft .adAboutTxt .Txt {
    max-width: unset;
    padding: 40px 0 20px 0;
  }
}
.aboutArea .aboutLeft .adAboutTxt .title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.5;
  position: relative;
  padding: 0 0 30px 0;
  margin: 0 0 30px 0;
}
@media (max-width: 1200px) {
  .aboutArea .aboutLeft .adAboutTxt .title {
    color: #000;
    padding: 0 0 25px 0;
    margin: 0 0 25px 0;
  }
}
@media (max-width: 360px) {
  .aboutArea .aboutLeft .adAboutTxt .title {
    font-size: 22px;
  }
}
.aboutArea .aboutLeft .adAboutTxt .title::before {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100px;
  height: 1px;
  bottom: 0;
  left: 0;
}
@media (max-width: 1200px) {
  .aboutArea .aboutLeft .adAboutTxt .title::before {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.aboutArea .aboutLeft .adAboutTxt .text {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 1px;
}
@media (max-width: 1200px) {
  .aboutArea .aboutLeft .adAboutTxt .text {
    color: rgba(0, 0, 0, 0.85);
  }
}
.aboutArea .aboutLeft .moreBtn {
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 1.5px;
  color: #C7365B;
  background-color: #fff;
  width: 55%;
  margin: 48px 0 0 0;
  border: 1px solid white;
  font-weight: 400;
  font-family: "Noto Sans TC";
}
@media (max-width: 1200px) {
  .aboutArea .aboutLeft .moreBtn {
    margin: 40px 0;
    background-color: #C7365B;
    border: 1px solid rgba(255, 255, 255, 0);
    color: #fff;
    width: 20%;
  }
}
@media (max-width: 1000px) {
  .aboutArea .aboutLeft .moreBtn {
    width: 30%;
  }
}
@media (max-width: 640px) {
  .aboutArea .aboutLeft .moreBtn {
    width: 70%;
  }
}
.aboutArea .aboutLeft .moreBtn span {
  width: 57px;
  height: 1px;
  background-color: #C7365B;
  position: relative;
  z-index: 2;
  margin: 0 0 0 15px;
}
@media (max-width: 1200px) {
  .aboutArea .aboutLeft .moreBtn span {
    background-color: #fff;
  }
}
.aboutArea .aboutLeft .moreBtn span::before {
  content: "";
  position: absolute;
  background-color: #C7365B;
  width: 7px;
  height: 1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: 3px;
  right: 0;
}
@media (max-width: 1200px) {
  .aboutArea .aboutLeft .moreBtn span::before {
    background-color: #fff;
  }
}
.aboutArea .aboutLeft .moreBtn:hover {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
}
@media (max-width: 1200px) {
  .aboutArea .aboutLeft .moreBtn:hover {
    border: 1px solid #C7365B;
    color: #C7365B;
  }
}
.aboutArea .aboutLeft .moreBtn:hover span {
  background-color: #fff;
  -webkit-animation: arrRight 0.7s ease-in-out infinite;
          animation: arrRight 0.7s ease-in-out infinite;
}
@media (max-width: 1200px) {
  .aboutArea .aboutLeft .moreBtn:hover span {
    background-color: #C7365B;
  }
}
.aboutArea .aboutLeft .moreBtn:hover span::before {
  background-color: #fff;
}
@media (max-width: 1200px) {
  .aboutArea .aboutLeft .moreBtn:hover span::before {
    background-color: #C7365B;
  }
}
.aboutArea .aboutLeft .abtControlBox {
  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;
  width: 100%;
}
@media (max-width: 1200px) {
  .aboutArea .aboutLeft .abtControlBox {
    display: none;
  }
}
.aboutArea .aboutLeft .arrowBox {
  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;
  margin: 0 0 0 150px;
}
@media (max-width: 1536px) {
  .aboutArea .aboutLeft .arrowBox {
    margin: 0 0 0 80px;
  }
}
@media (max-width: 1366px) {
  .aboutArea .aboutLeft .arrowBox {
    margin: 0 0 0 40px;
  }
}
.aboutArea .aboutLeft .arrowBox .arrow {
  position: relative;
  cursor: pointer;
  background-color: #f7f7f7;
  width: 80px;
  height: 80px;
}
.aboutArea .aboutLeft .arrowBox .arrow span {
  width: 57px;
  height: 1px;
  background-color: #aeaeae;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  margin: 0 0 0 15px;
}
.aboutArea .aboutLeft .arrowBox .arrow span::before {
  content: "";
  position: absolute;
  background-color: #aeaeae;
  width: 7px;
  height: 1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: 3px;
  right: 0;
}
.aboutArea .aboutLeft .arrowBox .arrowPrev {
  background-color: #C7365B;
}
.aboutArea .aboutLeft .arrowBox .arrowPrev span {
  background-color: #fff;
  left: 35%;
}
.aboutArea .aboutLeft .arrowBox .arrowPrev span::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  right: unset;
  left: 0;
  background-color: #fff;
}
.aboutArea .aboutLeft .arrowBox .arrowNext span {
  background-color: #C7365B;
  right: -25%;
  left: unset;
}
.aboutArea .aboutLeft .arrowBox .arrowNext span::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 0;
  background-color: #C7365B;
}
.aboutArea .aboutLeft .arrowBox .arrow:hover {
  -webkit-box-shadow: 2px 0 13px rgba(0, 0, 0, 0.24);
          box-shadow: 2px 0 13px rgba(0, 0, 0, 0.24);
}
.aboutArea .aboutLeft .adAboutTxtControl {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.aboutArea .aboutLeft .adAboutTxtControl .line {
  width: 260px;
  height: 1px;
  background-color: #c7c7c7;
  margin: 0 10px;
}
.aboutArea .aboutLeft .adAboutTxtControl .page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  color: #767676;
}
.aboutArea .aboutLeft .adAboutTxtControl .page span {
  margin: 0 5px;
  color: #767676;
}
.aboutArea .aboutLeft .adAboutTxtControl .page .current {
  color: #C7365B;
}
.aboutArea .aboutVideoArea {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.newsArea {
  background-color: #f7f7f7;
  margin: 0px 0 0 0;
}
@media (max-width: 1200px) {
  .newsArea {
    margin: 0;
    padding: 60px 0;
  }
}
.newsArea .wrap {
  position: relative;
}
.newsArea .titleBox {
  width: 330px;
  height: 270px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0;
}
@media (max-width: 1280px) {
  .newsArea .titleBox {
    padding: 0 25px;
  }
}
@media (max-width: 1201px) {
  .newsArea .titleBox {
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto 40px auto;
    width: 100%;
    height: auto;
  }
}
.newsArea .titleBox .titleEn {
  font-family: "Roboto";
  font-size: 36px;
}
.newsArea .titleBox .TextBox {
  width: 250px;
  padding: 10px 0 0 0;
}
@media (max-width: 1201px) {
  .newsArea .titleBox .TextBox {
    width: 100%;
  }
}
.newsArea .titleBox .TextBox .Text {
  text-align: left;
  font-size: 15px;
  color: #afafaf;
  line-height: 1.3;
  letter-spacing: 1px;
}
@media (max-width: 1201px) {
  .newsArea .titleBox .TextBox .Text {
    text-align: center;
  }
}
.newsArea .titleBox .TextBox .Text .row {
  margin: 0;
}
.newsArea .newsBox {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.newsArea .newsBox.hide {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
@media (max-width: 1201px) {
  .newsArea .newsBox {
    margin: 0 -10px;
  }
}
@media (max-width: 1201px) {
  .newsArea .newsItem {
    margin: 0 10px;
  }
}
.newsArea .newsItem:nth-child(odd) {
  padding: 0 0 0 330px;
}
@media (max-width: 1201px) {
  .newsArea .newsItem:nth-child(odd) {
    padding: 0;
  }
}
.newsArea .newsItem:nth-child(even) {
  padding: 0 330px 0 0;
}
@media (max-width: 1201px) {
  .newsArea .newsItem:nth-child(even) {
    padding: 0;
  }
}
.newsArea .newsItem:hover .Txt {
  background-color: #C7365B;
}
.newsArea .newsItem:hover .Txt .date {
  color: #fff;
}
.newsArea .newsItem:hover .Txt .classTitle {
  background-color: #fff;
  color: #C7365B;
}
.newsArea .newsItem:hover .Txt .title {
  color: #fff;
}
.newsArea .newsItem:hover .Txt .text {
  color: #fff;
}
.newsArea .newsItem:hover .Txt .moreBtn span {
  background-color: #fff;
  -webkit-animation: arrRight 0.7s ease-in-out infinite;
          animation: arrRight 0.7s ease-in-out infinite;
}
.newsArea .newsItem:hover .Txt .moreBtn span::before {
  background-color: #fff;
}
.newsArea .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1201px) {
  .newsArea .item {
    -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;
  }
}
.newsArea .Img {
  max-width: 655px;
  width: 100%;
}
@media (max-width: 1201px) {
  .newsArea .Img {
    width: 100%;
    max-width: unset;
  }
}
.newsArea .Img img {
  display: block;
}
.newsArea .Txt {
  position: relative;
  padding: 0px 20px 20px 20px;
  background-color: #fff;
}
@media (max-width: 1201px) {
  .newsArea .Txt {
    width: 100%;
    padding: 0 25px 20px 25px;
  }
}
.newsArea .Txt .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.newsArea .Txt .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Roboto";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #bebebe;
}
.newsArea .Txt .date .dd {
  font-size: 50px;
  font-weight: 500;
  border-right: 2px solid #f2f2f2;
  padding: 20px 10px 20px 0;
  margin: 0 10px 0 0;
}
.newsArea .Txt .date .ym {
  font-size: 14px;
  letter-spacing: 0.5px;
  margin: 20px 0 0 0;
}
.newsArea .Txt .classTitle {
  margin: 20px 0 0 0;
  background-color: #C7365B;
  color: #fff;
  padding: 3px 8px;
}
.newsArea .Txt .title {
  margin: 15px 0;
  display: block;
  font-weight: 400;
  font-size: 18px;
  color: #161616;
  height: 30px;
}
.newsArea .Txt .text {
  height: 70px;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}
.newsArea .Txt .moreBtn {
  width: 100%;
  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;
  margin: 0 0 10px 0;
}
.newsArea .Txt .moreBtn span {
  width: 57px;
  height: 1px;
  background-color: #C7365B;
  position: relative;
  z-index: 2;
  margin: 0 0 0 15px;
}
.newsArea .Txt .moreBtn span::before {
  content: "";
  position: absolute;
  background-color: #C7365B;
  width: 7px;
  height: 1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: 3px;
  right: 0;
}
.newsArea .newsMoreBtn {
  max-width: 330px;
  width: 100%;
  height: 270px;
  background-color: #C7365B;
  margin: 0 auto 0 330px;
  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;
}
@media (max-width: 1201px) {
  .newsArea .newsMoreBtn {
    display: none;
  }
}
.newsArea .newsMoreBtn .moreTxt {
  text-align: center;
}
.newsArea .newsMoreBtn .moreTxt .tw {
  font-size: 18px;
  color: #fff;
  padding: 0 0 15px 0;
  margin: 0 0 15px 0;
  position: relative;
  font-weight: 500;
  letter-spacing: 1px;
}
.newsArea .newsMoreBtn .moreTxt .tw::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.newsArea .newsMoreBtn .moreTxt .en {
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}
.newsArea .newsMoreBtn:hover {
  background-color: #C7365B;
}
.newsArea .newsMoreBtn:hover .tw {
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}
.newsArea .dotBox {
  margin: 0 0 30px 0;
}
.newsArea .dotBox svg {
  width: 23px;
  height: 23px;
}
.newsArea .slick-dots {
  text-align: center;
  bottom: -95px;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  width: auto;
}
@media (max-width: 360px) {
  .newsArea .slick-dots {
    display: none;
  }
}
.newsArea .slick-dots li button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.newsArea .slick-dots li button:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: transparent;
  border: 2px solid #C7365B;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 1;
}
.newsArea .slick-dots li button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 2px solid #C7365B;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  opacity: 0;
}
.newsArea .slick-dots li.slick-active button:before {
  background-color: #C7365B;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  border: 2px solid #C7365B;
}
.newsArea .slick-dots li.slick-active button::after {
  opacity: 1;
  z-index: 3;
}

.linkArea {
  padding: 30px 0 30px 0;
  text-align: center;
  margin: 0 0 30px 0;
}
@media (max-width: 1280px) {
  .linkArea {
    padding: 30px 10px;
    overflow: hidden;
  }
}
.linkArea .titleBox .TxtTw {
  color: #6e6e6e;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 400;
}
.linkArea .linkList {
  padding: 30px 20px 20px;
}
@media (max-width: 1180px) {
  .linkArea .linkList {
    padding: 10px 0;
  }
}
@media (max-width: 640px) {
  .linkArea .linkList {
    padding: 10px 0 0 0;
  }
}
.linkArea .linkItem {
  padding: 10px;
}
.linkArea .linkItem:hover .Img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-animation: upDown 1.2s ease-in-out infinite;
          animation: upDown 1.2s ease-in-out infinite;
}
.linkArea .Img {
  width: 100%;
}
.linkArea .Img img {
  max-width: 100%;
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  height: auto;
  overflow: hidden;
}
.linkArea .slick-dots {
  text-align: center;
  bottom: -95px;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  width: auto;
}
@media (max-width: 360px) {
  .linkArea .slick-dots {
    display: none;
  }
}
.linkArea .slick-dots li button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.linkArea .slick-dots li button:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: transparent;
  border: 2px solid #C7365B;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 1;
}
.linkArea .slick-dots li button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 2px solid #C7365B;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  opacity: 0;
}
.linkArea .slick-dots li.slick-active button:before {
  background-color: #C7365B;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  border: 2px solid #C7365B;
}
.linkArea .slick-dots li.slick-active button::after {
  opacity: 1;
  z-index: 3;
}