@charset "UTF-8";
@import url(reset.css);
@import url(font-awesome-4.7.0/css/font-awesome.min.css);
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Roboto&Noto+Sans+TC:wght@400;700&display=swap");
body {
  font-size: 16px;
  font-family: "Noto Sans TC", PingFang TC, "微軟正黑體", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #303030;
  background-color: #f8f8f8;
  overflow-x: hidden;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*:focus {
  outline: none;
}

a {
  color: #303030;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.dragBox {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 130px;
  height: 130px;
  background-color: #303030;
  border-radius: 50%;
  font-size: 16px;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  text-transform: uppercase;
  pointer-events: none;
  color: #fff;
  opacity: 0;
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  -o-transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}
.dragBox.show {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.t-left {
  text-align: left;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.paginationBox {
  padding-top: 5px;
  padding-bottom: 5px;
}
.paginationBox.center {
  text-align: center;
}
.paginationBox .swiper-pagination-bullet {
  margin-left: 8px;
  margin-right: 8px;
  opacity: 1;
  background: transparent;
  border: 1px solid #000;
}
.paginationBox .swiper-pagination-bullet-active {
  background: #000;
}

.wrap {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.wrap.large {
  max-width: 1480px;
}
.wrap.full {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.mobileMenu {
  position: relative;
  width: 30px;
  height: 20px;
  margin-left: auto;
  background: none;
  border: 1px solid #303030;
  border-left: none;
  border-right: none;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.mobileMenu.open {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (min-width: 1024px) {
  .mobileMenu {
    display: none;
  }
}
.mobileMenu::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.5px;
  width: 100%;
  height: 1px;
  background-color: #303030;
}

.fullWrap {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5px;
  padding-right: 5px;
}
@media (max-width: 1900px) {
  .fullWrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .fullWrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}

header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: #f8f8f8;
  border-bottom: 1px solid rgba(48, 48, 48, 0.5);
}
@media (max-width: 1023px) {
  header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 70px;
  }
}
header .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1480px;
  padding-left: 20px;
  padding-right: 20px;
}
header .logo {
  width: 215px;
}
@media (max-width: 1023px) {
  header .logo {
    width: 160px;
  }
}
header .logo img {
  display: block;
  width: 100%;
}

footer {
  position: relative;
  width: 100%;
  background-color: #303030;
}
@media (min-width: 961px) {
  footer {
    margin-top: 230px;
  }
}
@media (min-width: 768px) {
  footer {
    margin-top: 100px;
  }
}
footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -230px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  min-width: 1920px;
  height: 230px;
  background-image: url("../images/footerBg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center bottom;
}
@media (max-width: 767px) {
  footer::before {
    display: none;
  }
}
footer .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 70px;
  padding-bottom: 70px;
}
@media (max-width: 767px) {
  footer .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
footer .infoBox {
  font-family: "Cinzel", "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
@media (min-width: 768px) {
  footer .infoBox {
    border-right: 1px solid #fff;
    padding-right: 45px;
    margin-right: 45px;
  }
}
@media (max-width: 767px) {
  footer .infoBox {
    padding-bottom: 20px;
  }
}
footer.whiteBg {
  z-index: 0;
}
footer.whiteBg::before {
  background-color: #fff;
}

.mainBox.ins {
  padding-bottom: 90px;
}
@media (max-width: 767px) {
  .mainBox.ins {
    padding-bottom: 0;
  }
}

.socialBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.socialBox a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 70px;
  height: 70px;
  margin-right: 30px;
}
.socialBox a::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.socialBox a:hover::after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.menu {
  margin-left: auto;
}
@media (max-width: 1023px) {
  .menu {
    position: absolute;
    left: 0;
    top: 70px;
    z-index: 10;
    width: 100%;
    background-color: #303030;
    opacity: 0;
    -webkit-transform: translateY(15px);
        -ms-transform: translateY(15px);
            transform: translateY(15px);
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .menu.open {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }
}
.menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -40px;
  margin-right: -40px;
}
@media (max-width: 1023px) {
  .menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.menu li {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1023px) {
  .menu li {
    width: 100%;
  }
  .menu li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }
}
.menu a {
  position: relative;
  display: block;
  padding-top: 37px;
  padding-bottom: 37px;
}
@media (max-width: 1023px) {
  .menu a {
    padding-top: 15px;
    padding-bottom: 15px;
    color: #fff;
  }
}
.menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 65px;
  width: 0;
  height: 3px;
  background-color: #303030;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 1023px) {
  .menu a::before {
    display: none;
  }
}
.menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -6px;
  bottom: 25px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #303030 transparent transparent transparent;
  opacity: 0;
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 1023px) {
  .menu a::after {
    display: none;
  }
}
.menu a:hover::after {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.menu a:hover .en {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
.menu a:hover .tw {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.menu a.current::before {
  width: 100%;
}
.menu .ins {
  position: relative;
  display: block;
  height: 25px;
  overflow: hidden;
  text-align: center;
  width: 90px;
}
.menu .en,
.menu .tw {
  display: block;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.menu .en {
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}
.menu .tw {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}

.cardList .box {
  position: relative;
}
.cardList .box:hover .pic img {
  opacity: 1;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.cardList .link {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  font-size: 0;
  overflow: hidden;
  text-indent: -9999px;
}
.cardList .pic {
  margin-bottom: 12px;
  background-color: #000;
  overflow: hidden;
}
.cardList .pic img {
  display: block;
  width: 100%;
  opacity: 0.5;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cardList .date {
  margin-bottom: 5px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  color: #b9b9b9;
}
.cardList .date::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  margin-left: 8px;
  background-color: #303030;
}
.cardList .title {
  font-weight: 700;
  font-size: 24px;
  font-family: "Cinzel", "Noto Sans TC", sans-serif;
  line-height: 1.33;
}
.cardList.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cardList.card3 .list {
  width: 33.333%;
}
@media (max-width: 767px) {
  .cardList.card3 .list {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .cardList.card3 .list {
    width: 100%;
  }
}

.bannerInsBox {
  margin-bottom: 150px;
}
@media (max-width: 1800px) {
  .bannerInsBox {
    margin-bottom: 30px;
  }
}
.bannerInsBox .titleBox {
  margin-bottom: 20px;
}
.bannerInsBox .rightPic,
.bannerInsBox .insBox {
  padding-left: 60px;
}
@media (max-width: 1540px) {
  .bannerInsBox .rightPic,
.bannerInsBox .insBox {
    padding-left: 20px;
  }
}
.bannerInsBox .rightPic {
  margin-bottom: 50px;
}
.bannerInsBox .rightPic img {
  display: block;
  width: 100%;
  max-width: 100%;
}
.bannerInsBox .needlePic {
  position: relative;
}
@media (max-width: 1023px) {
  .bannerInsBox .needlePic {
    display: none;
  }
}
.bannerInsBox .needlePic::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: calc(100% + 60px);
  height: 200px;
  background-color: #fff;
}
.bannerInsBox .insBox {
  padding-right: calc((100vw - 1500px)/2);
}
@media (max-width: 1540px) {
  .bannerInsBox .insBox {
    padding-right: 20px;
  }
}
.bannerInsBox .scrollDown {
  margin-left: auto;
  margin-top: 70px;
}
@media (max-width: 1480px) {
  .bannerInsBox .scrollDown {
    display: none;
  }
}

.scrollDown {
  position: relative;
  display: block;
  padding: 0;
  border: none;
  background: none;
  padding-top: 185px;
  cursor: pointer;
  pointer-events: none;
}
.scrollDown::before {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -0.5px;
  top: 0;
  width: 1px;
  height: 170px;
  background-color: #707070;
}
.scrollDown .box {
  position: relative;
  width: 26px;
  height: 39px;
  border-radius: 13px;
  border: 1px solid #707070;
}
.scrollDown .box::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  margin-left: -0.5px;
  width: 1px;
  height: 12px;
  background-color: #707070;
  -webkit-animation: scrollDown 1.5s infinite linear;
          animation: scrollDown 1.5s infinite linear;
}

/*--title--*/
.titleBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 80px;
}
@media (max-width: 1180px) {
  .titleBox {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .titleBox {
    margin-bottom: 40px;
  }
}
@media (min-width: 641px) {
  .titleBox.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .titleBox.reverse .title {
    margin-left: 0;
    margin-right: 20px;
    padding-left: 0;
    padding-right: 12px;
  }
  .titleBox.reverse .title::before {
    left: auto;
    right: 3px;
  }
}
.titleBox .enTitle {
  font-family: "Cinzel", "Noto Sans TC", sans-serif;
  font-size: 150px;
  font-weight: 700;
  line-height: 0.7;
  text-transform: uppercase;
  color: #303030;
}
@media (max-width: 1180px) {
  .titleBox .enTitle {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .titleBox .enTitle {
    font-size: 70px;
  }
}
@media (max-width: 480px) {
  .titleBox .enTitle {
    font-size: 32px;
  }
}
.titleBox .title {
  position: relative;
  margin-left: 12px;
  font-size: 16px;
  padding-left: 12px;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .titleBox .title {
    font-size: 14px;
  }
}
.titleBox .title::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 4px;
  width: 1px;
  height: 14px;
  -webkit-transform: rotate(22deg);
      -ms-transform: rotate(22deg);
          transform: rotate(22deg);
  background-color: #303030;
}
.titleBox .title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/newsTitle.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: none;
}
.titleBox .note {
  width: 100%;
  padding-top: 20px;
  font-size: 16px;
  line-height: 1.5;
  color: #303030;
}
.titleBox.textBg .enTitle {
  -webkit-text-stroke: 0 #303030;
}
.titleBox.small .enTitle {
  font-size: 60px;
  color: #303030;
  letter-spacing: 0;
}
@media (max-width: 1540px) {
  .titleBox.small .enTitle {
    font-size: 24px;
  }
}
.titleBox.small .title {
  margin-left: 8px;
}

.titleBox2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  font-family: "Cinzel", "Noto Sans TC", sans-serif;
  text-transform: uppercase;
}
.titleBox2 .enTitle {
  font-weight: 700;
}
.titleBox2 .title {
  font-weight: 400;
  margin-left: 12px;
}

.titleInsBox {
  margin-bottom: 20px;
}
.titleInsBox .title {
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-family: "Cinzel", "Noto Sans TC", sans-serif;
  font-size: 24px;
  border-bottom: 1px solid #303030;
}
.titleInsBox .date {
  margin-bottom: 5px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  color: #b9b9b9;
}

.mainTitle {
  font-size: 24px;
}
.mainTitle.center {
  text-align: center;
}

/*--language--*/
.languageBox {
  position: fixed;
  left: 55px;
  bottom: 55px;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 960px) {
  .languageBox {
    left: 20px;
    bottom: 20px;
  }
}
.languageBox .box {
  position: relative;
  width: 19px;
  height: 45px;
  border-radius: 10px;
  background-color: #303030;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.languageBox .box::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.languageBox .right {
  padding-left: 12px;
}
.languageBox .right a {
  display: block;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.languageBox .en {
  letter-spacing: 0.1em;
}
.languageBox.white .box {
  background-color: #fff;
}
.languageBox.white .box::before {
  background-color: #303030;
}
.languageBox.white .right a {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.languageBox.toggle .box::before {
  top: 27px;
}

/*--title--*/
.titleStyle1 {
  font-weight: 500;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  font-size: 20px;
  font-style: italic;
  margin-bottom: 12px;
}
.titleStyle1 span {
  display: inline-block;
  padding-right: 35px;
  padding-bottom: 8px;
  border-bottom: 1px solid #303030;
}

/*--button--*/
.buttonStyle1.right {
  text-align: right;
}
.buttonStyle1.right a {
  margin-right: 40px;
}
.buttonStyle1 a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 16px;
  font-family: "Cinzel", "Noto Sans TC", sans-serif;
}
.buttonStyle1 a::after {
  content: "";
  position: absolute;
  right: 23px;
  top: 50%;
  margin-top: -0.5px;
  width: calc(100% - 23px);
  height: 1px;
  background-color: #303030;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.buttonStyle1 a:hover::after {
  left: auto;
  right: 15px;
  width: 21px;
  background-color: #fff;
}
.buttonStyle1 a:hover .arrow1 {
  color: #fff;
  -webkit-transform: translateX(8px);
      -ms-transform: translateX(8px);
          transform: translateX(8px);
}
.buttonStyle1 a:hover .arrow::after {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  background-color: #303030;
}
.buttonStyle1 .title {
  -webkit-transform: translateY(-13px);
      -ms-transform: translateY(-13px);
          transform: translateY(-13px);
  margin-right: 30px;
}
.buttonStyle1 .arrow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
}
.buttonStyle1 .arrow::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 1px solid #303030;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  pointer-events: none;
}
.buttonStyle1 .arrow1 {
  width: 9px;
  height: 15px;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

/*--keyframes--*/
@-webkit-keyframes scrollDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
@keyframes scrollDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.flex-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.wrapFlexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1023px) {
  .wrapFlexBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.wrapFlexBox.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.wrapFlexBox .picBox {
  width: 55%;
}
@media (max-width: 1023px) {
  .wrapFlexBox .picBox {
    width: 100%;
  }
}
.wrapFlexBox .picBox img {
  display: block;
  width: 100%;
}
.wrapFlexBox .itemBox {
  width: 45%;
  margin-top: 80px;
  background: #f8f8f8;
}
@media (max-width: 1023px) {
  .wrapFlexBox .itemBox {
    width: 100%;
    margin-top: 20px;
  }
}

.aboutBox {
  margin-bottom: 50px;
}
@media (max-width: 1620px) {
  .aboutBox {
    margin-bottom: 0;
  }
}
.aboutBox .fullWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 80px;
}
@media (max-width: 1800px) {
  .aboutBox .fullWrap {
    -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 (max-width: 640px) {
  .aboutBox .fullWrap {
    margin-bottom: 40px;
  }
}
.aboutBox .fullWrap .titleBox {
  margin-top: 30px;
}
.aboutBox .note {
  position: relative;
  width: 100%;
  max-width: 570px;
  padding: 30px;
}
@media (min-width: 1801px) {
  .aboutBox .note {
    margin-left: 100px;
  }
}
@media (max-width: 1800px) {
  .aboutBox .note {
    max-width: 650px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.aboutBox .note::before, .aboutBox .note::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid #303030;
}
.aboutBox .note::before {
  left: 0;
  top: 0;
  border-right: none;
  border-bottom: none;
}
.aboutBox .note::after {
  right: 0;
  bottom: 0;
  border-left: none;
  border-top: none;
}
.aboutBox .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1621px) {
  .aboutBox .wrap {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (max-width: 1620px) {
  .aboutBox .wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.aboutBox .picBox {
  width: 46%;
}
@media (max-width: 1620px) {
  .aboutBox .picBox {
    width: 100%;
    max-width: 890px;
    margin-bottom: 20px;
  }
}
.aboutBox .picBox img {
  display: block;
  max-width: 100%;
}
.aboutBox .itemBox {
  width: 54%;
}
@media (max-width: 1620px) {
  .aboutBox .itemBox {
    width: 100%;
  }
}
.aboutBox .itemBox .pic {
  width: 100%;
  max-width: 540px;
  margin-left: calc((100vw - 1500px)/2);
}
@media (max-width: 1620px) {
  .aboutBox .itemBox .pic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
.aboutBox .itemBox .pic img {
  display: block;
  width: 100%;
}
.aboutBox .textBox {
  position: relative;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: calc((100vw - 1500px)/2);
  margin-top: 130px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 1620px) {
  .aboutBox .textBox {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .aboutBox .textBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.aboutBox .textBox::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.aboutBox .textBox .ins {
  padding-right: 60px;
}
@media (max-width: 1620px) {
  .aboutBox .textBox .ins {
    width: calc(890px / 2);
    padding-right: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .aboutBox .textBox .ins {
    width: 100%;
    margin-bottom: 30px;
  }
}
.aboutBox .textBox .titleBox2 {
  margin-bottom: 50px;
}
@media (max-width: 1620px) {
  .aboutBox .textBox .titleBox2 {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
}
@media (max-width: 540px) {
  .aboutBox .textBox .titleBox2 {
    margin-bottom: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 1620px) {
  .aboutBox .textBox .titleBox2 .title {
    margin-left: 0;
  }
}
.aboutBox .textBox .text {
  padding-left: 30px;
  border-left: 1px solid #303030;
}

.newsInsList {
  margin-left: -18px;
  margin-right: -18px;
}
@media (max-width: 767px) {
  .newsInsList {
    margin-left: -10px;
    margin-right: -10px;
  }
}
.newsInsList .list {
  padding-left: 18px;
  padding-right: 18px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .newsInsList .list {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.moreNewsBox {
  margin-top: 100px;
  padding-top: 50px;
  background-color: #fff;
}
.moreNewsBox .mainTitle {
  margin-bottom: 40px;
}

.pageBox .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pageBox a,
.pageBox span {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 55px;
  height: 55px;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  font-size: 16px;
}
@media (max-width: 767px) {
  .pageBox .page:not(.current) {
    display: none;
  }
}
.pageBox .page::after {
  content: "";
  position: absolute;
  left: 10%;
  top: 10%;
  z-index: -1;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 80%;
  height: 80%;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media (min-width: 768px) {
  .pageBox .total {
    display: none;
  }
}
.pageBox .total::before {
  content: "/";
  position: absolute;
  left: -2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.pageBox .current {
  position: relative;
}
.pageBox .current::after {
  opacity: 1;
}
@media (max-width: 767px) {
  .pageBox .current::after {
    display: none;
  }
}
.pageBox .prev,
.pageBox .next {
  color: #b9b9b9;
}
.pageBox .prev::after,
.pageBox .next::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 1px solid #b9b9b9;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .pageBox .prev::after,
.pageBox .next::after {
    display: none;
  }
}
.pageBox .prev:hover,
.pageBox .next:hover {
  color: #303030;
}
.pageBox .prev:hover::after,
.pageBox .next:hover::after {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  border-color: #303030;
}
.pageBox .prev {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .pageBox .prev {
    margin-left: 0;
    margin-right: auto;
  }
}
.pageBox .prev .arrow1 {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
.pageBox .next {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .pageBox .next {
    margin-left: auto;
    margin-right: 0;
  }
}
.pageBox .arrow1 {
  width: 9px;
  height: 15px;
}

.formList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -24px;
  margin-right: -24px;
}
.formList .box {
  width: 50%;
  padding-left: 24px;
  padding-right: 24px;
  margin-bottom: 40px;
}
.formList .box.full {
  width: 100%;
}
.formList .left {
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.formList input,
.formList textarea {
  width: 100%;
  height: 47px;
  font-size: 16px;
  letter-spacing: 0.05em;
  background: #fff;
  border: none;
}
.formList input {
  height: 45px;
}
.formList textarea {
  padding: 10px;
  height: 315px;
}

.ptBox {
  padding-top: 160px;
}
@media (max-width: 1023px) {
  .ptBox {
    padding-top: 70px;
  }
}

.textEditor {
  font-size: 16px;
  line-height: 1.8;
}
.textEditor pre,
.textEditor code,
.textEditor tt {
  font: 1em/1.5em "Andale Mono", "Lucida Console", monospace;
}
.textEditor h1,
.textEditor h2,
.textEditor h3,
.textEditor h4,
.textEditor h5,
.textEditor h6,
.textEditor b,
.textEditor strong {
  font-weight: bold;
}
.textEditor em,
.textEditor i,
.textEditor dfn {
  font-style: italic;
}
.textEditor dfn {
  font-weight: bold;
}
.textEditor p,
.textEditor code,
.textEditor pre,
.textEditor kbd {
  margin: 0 0 1.5em 0;
}
.textEditor blockquote {
  margin: 0 1.5em 1.5em 1.5em;
}
.textEditor cite {
  font-style: italic;
}
.textEditor li ul,
.textEditor li ol {
  margin: 0 1.5em;
}
.textEditor ul,
.textEditor ol {
  margin: 0 1.5em 1.5em 1.5em;
}
.textEditor ul {
  list-style-type: disc;
}
.textEditor ol {
  list-style-type: decimal;
}
.textEditor ol ol {
  list-style: upper-alpha;
}
.textEditor ol ol ol {
  list-style: lower-roman;
}
.textEditor ol ol ol ol {
  list-style: lower-alpha;
}
.textEditor dl {
  margin: 0 0 1.5em 0;
}
.textEditor dl dt {
  font-weight: bold;
}
.textEditor dd {
  margin-left: 1.5em;
}
.textEditor table {
  margin-bottom: 1.4em;
  width: 100%;
}
.textEditor th {
  font-weight: bold;
}
.textEditor th,
.textEditor td,
.textEditor caption {
  padding: 4px 10px 4px 5px;
}
.textEditor tfoot {
  font-style: italic;
}
.textEditor sup,
.textEditor sub {
  line-height: 0;
}
.textEditor abbr,
.textEditor acronym {
  border-bottom: 1px dotted;
}
.textEditor address {
  margin: 0 0 1.5em;
  font-style: italic;
}
.textEditor del {
  text-decoration: line-through;
}
.textEditor pre {
  margin: 1.5em 0;
  white-space: pre;
}
.textEditor img.centered,
.textEditor .aligncenter,
.textEditor div.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.textEditor img.alignright {
  display: inline;
}
.textEditor img.alignleft {
  display: inline;
}
.textEditor .alignright {
  float: right;
  margin-left: 10px;
}
.textEditor .alignleft {
  float: left;
  margin-right: 10px;
}
.textEditor img {
  max-width: 100%;
}
.textEditor * html .clearfix {
  height: 1%;
}
.textEditor * + html .clearfix {
  display: inline-block;
}
.textEditor .clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.textEditor * html .group {
  height: 1%;
}
.textEditor * + html .group {
  display: inline-block;
}
.textEditor .group:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
