@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::selection {
  background-color: #6b1217;
  color: #fff;
}

::-moz-selection {
  background-color: #6b1217;
  color: #fff;
}

body {
  background-color: #fff;
  font-family: "Noto Sans TC", Arial, Helvetica, sans-serif;
  position: relative;
}

h1, h2, h3, h4, h5, h6, p, a, button {
  font-family: "Noto Sans TC", Arial, Helvetica, sans-serif;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}

img {
  width: auto;
  max-width: 100%;
  display: block;
}

a {
  outline: none;
  text-decoration: none;
}

p, a {
  color: #333;
  font-size: 18px;
  line-height: 1.6em;
  font-weight: 400;
}

button {
  padding: 0;
  cursor: pointer;
  opacity: 0.9;
}
button:hover {
  opacity: 1;
}

.outerWrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/*-- icon --*/
i {
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
}

i.iArrow {
  background-image: url("../images/iArrow.svg");
}

i.iSign {
  background-image: url("../images/iSign_w.svg");
}

i.iVideoconference {
  background-image: url("../images/iVideoconference_gy.svg");
}

/*-- 首頁 --*/
#idxPage .mainArea {
  position: relative;
  padding: 3%;
  width: 100%;
  height: 100vh;
  background-image: url(../images/bgT.png), url(../images/bgB.png);
  background-color: #fff;
  background-position: left top, left bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
#idxPage .mainArea .left {
  width: 563px;
  max-width: 30%;
}
#idxPage .mainArea .right {
  width: 1092px;
  max-width: 70%;
}
#idxPage .mainArea .txtMain {
  width: 100%;
}
#idxPage .mainArea h1 {
  opacity: 0;
  line-height: -999999;
  height: 0;
  visibility: hidden;
}
#idxPage .mainArea .hsingYun {
  width: 100%;
}
#idxPage .mainArea .btn {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0.5em 0;
}
#idxPage .mainArea .btn a {
  width: 280px;
  height: 100px;
  border-radius: 50px;
  margin: 0.5em;
  text-align: center;
  font-size: 40px;
  line-height: 100px;
  font-weight: 500;
  color: #fff;
  opacity: 0.9;
  transition: all 0.3s;
}
#idxPage .mainArea .btn a:hover {
  opacity: 1;
}
#idxPage .mainArea .btn a.colBr {
  background-color: #4c1524;
}
#idxPage .mainArea .btn a.colBrL {
  background-color: #986f42;
}
@media only screen and (max-width: 1024px) {
  #idxPage .mainArea {
    flex-direction: column;
    flex-wrap: nowrap;
    height: auto;
  }
  #idxPage .mainArea .right, #idxPage .mainArea .left {
    max-width: 70%;
  }
  #idxPage .mainArea .btn a {
    width: 240px;
    height: 80px;
    font-size: 30px;
    line-height: 80px;
  }
}
@media only screen and (max-width: 700px) {
  #idxPage .mainArea .right, #idxPage .mainArea .left {
    max-width: 90%;
  }
  #idxPage .mainArea .btn a {
    width: calc(50% - 1em);
  }
}
@media only screen and (max-width: 460px) {
  #idxPage .mainArea {
    background-size: 300% auto;
  }
  #idxPage .mainArea .right, #idxPage .mainArea .left {
    max-width: 100%;
  }
  #idxPage .mainArea .btn {
    flex-direction: column;
    align-items: center;
  }
  #idxPage .mainArea .btn a {
    margin: 0.3em;
    width: calc(70% - 0.6em);
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
}

/*-- 內容頁 --*/
#mainPage .topArea {
  padding: 0.5em 3%;
  border-top: 8px solid #a97a3e;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#mainPage .topArea .logo {
  width: 149px;
  max-width: 25%;
}
#mainPage .topArea .logo img {
  width: 100%;
}
#mainPage .topArea .langBtn {
  display: flex;
  height: 100%;
}
#mainPage .topArea .langBtn a {
  margin: 0.5em 0.2em;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid #a97a3e;
  color: #a97a3e;
  transition: all 0.3s;
}
#mainPage .topArea .langBtn a:hover {
  background-color: #ffefdc;
}
#mainPage .topArea .langBtn a.current {
  background-color: #a97a3e;
  color: #fff;
}
@media only screen and (max-width: 600px) {
  #mainPage .topArea .langBtn a {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 400px) {
  #mainPage .topArea {
    padding: 0 3%;
  }
  #mainPage .topArea .langBtn a {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
#mainPage .banner {
  margin-bottom: 3em;
  width: 100%;
}
#mainPage .banner img {
  width: 100%;
}
#mainPage .banner .mob {
  display: none;
}
@media screen and (max-width: 700px) {
  #mainPage .banner {
    margin-bottom: 0;
  }
  #mainPage .banner .mob {
    display: block;
  }
  #mainPage .banner .web {
    display: none;
  }
}
#mainPage .contentArea {
  width: 100%;
  padding: 3em 3%;
}
#mainPage .contentArea .txtBox {
  width: 1400px;
  margin: 0 auto;
  display: flex;
  max-width: 100%;
}
#mainPage .contentArea ul {
  padding-left: 0.8em;
}
#mainPage .contentArea li {
  margin-left: 0.5em;
  list-style: disc;
  color: #333;
  font-size: 18px;
  line-height: 1.6em;
  font-weight: 400;
}
#mainPage .contentArea .txtTitle {
  width: 200px;
  padding-right: 1em;
  color: #602f0f;
  font-weight: 600;
  font-size: 38px;
}
#mainPage .contentArea .txt {
  width: calc(100% - 200px);
  border-left: 1px solid #602f0f;
  padding: 0.5em 2em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#mainPage .contentArea .txt p {
  width: 100%;
}
#mainPage .contentArea .txt p.collapse {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
#mainPage .contentArea .txt p.collapse {
  height: 140px;
}
#mainPage .contentArea .txt p.collapse.open {
  height: auto;
  display: block;
  transition: all 0.3s;
}
#mainPage .contentArea .txt .collapseItem {
  opacity: 0;
  height: 0;
  display: none;
}
#mainPage .contentArea .txt .collapseItem.open {
  height: auto;
  opacity: 1;
  display: block;
  transition: all 0.3s;
}
#mainPage .contentArea .txt button.more {
  padding: 0.5em 0;
  background: none;
  border: none;
  color: #986f42;
  font-size: 16px;
  text-decoration: underline;
}
#mainPage .contentArea .txt button.more::before {
  content: "了解更多";
}
#mainPage .contentArea .txt button.more.btnOpen::before {
  content: "收合";
}
#mainPage .contentArea .txt a:hover {
  text-decoration: underline;
}
#mainPage .contentArea .txt .num {
  font-weight: 900;
  color: #b28146;
  margin-right: 0.5em;
}
#mainPage .contentArea .txt .subTitle {
  color: #b28146;
  font-weight: 500;
  margin-bottom: 0.8em;
}
#mainPage .contentArea .rowV50 {
  width: 50%;
  padding-right: 1em;
}
#mainPage .contentArea .rowV50:last-of-type {
  padding-right: 0;
}
#mainPage .contentArea .rowVAuto {
  width: auto;
  padding-right: 1em;
  display: flex;
  align-items: center;
}
#mainPage .contentArea .rowVAuto:last-of-type {
  padding-right: 0;
}
#mainPage .contentArea .rowVAuto .btnBox {
  border-right: 1px solid #602f0f;
  padding-top: 0;
  padding-right: 1em;
}
#mainPage .contentArea .btnBox {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding-top: 1em;
}
#mainPage .contentArea .btnBox a {
  width: 200px;
  height: 60px;
  border-radius: 50px;
  margin: 0.5em;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  opacity: 0.8;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
#mainPage .contentArea .btnBox a .tL {
  font-size: 24px;
  font-weight: 500;
}
#mainPage .contentArea .btnBox a .tS {
  font-size: 16px;
}
#mainPage .contentArea .btnBox a i {
  width: 14px;
  height: 14px;
  margin-left: 0.5em;
}
#mainPage .contentArea .btnBox a:hover {
  opacity: 1;
  text-decoration: none;
}
#mainPage .contentArea .btnBox a.sizeL {
  width: 240px;
  height: 240px;
  border-radius: 30px;
  flex-direction: column;
}
#mainPage .contentArea .btnBox a.sizeL i {
  width: 74px;
  height: 74px;
  margin-left: 0;
}
#mainPage .contentArea .btnBox a.colBrL {
  background-color: #986f42;
}
#mainPage .contentArea .btnBox a.colBrLL {
  background-color: #cfa77b;
}
#mainPage .contentArea .btnBox a.colBr {
  background-color: #602f0f;
}
#mainPage .contentArea .btnBox a.colGy {
  background-color: #dfdfdf;
}
#mainPage .contentArea .btnBox a.colGy span {
  color: #818181;
}
@media screen and (max-width: 1180px) {
  #mainPage .contentArea .btnBox a.sizeL {
    width: 180px;
    height: 180px;
  }
  #mainPage .contentArea .btnBox a.sizeL i {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 1024px) {
  #mainPage .contentArea .rowV50 {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  #mainPage .contentArea .txtBox {
    flex-direction: column;
  }
  #mainPage .contentArea .txtTitle, #mainPage .contentArea .txt {
    width: 100%;
  }
}
@media screen and (max-width: 860px) {
  #mainPage .contentArea .rowVAuto .btnBox {
    border-right: none;
  }
}
@media screen and (max-width: 760px) {
  #mainPage .contentArea {
    padding: 2em 3%;
  }
  #mainPage .contentArea .txtTitle {
    font-size: 30px;
  }
  #mainPage .contentArea .txt {
    border-left: none;
    padding: 0.5em 0;
  }
  #mainPage .contentArea .btnBox a {
    width: calc(50% - 1em);
    height: 50px;
    font-size: 20px;
  }
  #mainPage .contentArea .btnBox a i {
    width: 12px;
    height: 12px;
  }
}
@media screen and (max-width: 440px) {
  #mainPage .contentArea .btnBox a .tL {
    font-size: 20px;
  }
  #mainPage .contentArea .btnBox a .tS {
    font-size: 14px;
  }
  #mainPage .contentArea .btnBox a.sizeL {
    width: 160px;
  }
}
@media screen and (max-width: 400px) {
  #mainPage .contentArea .rowVAuto {
    width: 100%;
  }
  #mainPage .contentArea .btnBox {
    flex-direction: column;
    align-items: center;
  }
  #mainPage .contentArea .btnBox a {
    font-size: 16px;
    width: 90%;
    margin: 0.5em 0;
  }
  #mainPage .contentArea .btnBox a.sizeL {
    width: 90%;
  }
}
#mainPage {
  /*- newsArea -*/
}
#mainPage .newsArea {
  background-color: #ede6de;
  padding: 3em 3%;
}
#mainPage .newsArea .areaTitle {
  font-size: 30px;
  line-height: 1.2em;
  margin-bottom: 1em;
  text-align: center;
  color: #602f0f;
}
@media screen and (max-width: 760px) {
  #mainPage .newsArea {
    padding: 2em 3%;
  }
}
@media screen and (max-width: 460px) {
  #mainPage .newsArea .areaTitle {
    font-size: 24px;
    text-align: left;
  }
}
#mainPage .tab {
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-bottom: 1px solid #d1c2b2;
  margin-bottom: 1em;
}
#mainPage .tab .tablinks {
  color: #666;
  font-size: 24px;
  font-weight: 500;
  padding: 0.5em 0.8em;
  opacity: 0.6;
  transition: all 0.3s;
  cursor: pointer;
  transform: translateY(2px);
}
#mainPage .tab .tablinks:hover {
  opacity: 1;
}
#mainPage .tab .tablinks.active {
  color: #986f42;
  border-bottom: 4px solid #986f42;
  opacity: 1;
}
@media screen and (max-width: 460px) {
  #mainPage .tab .tablinks {
    font-size: 20px;
  }
}
#mainPage .owl-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#mainPage .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #986f42;
  margin: 0 0.2em;
}
#mainPage .owl-dots .owl-dot.active {
  background-color: #986f42;
}
@media screen and (max-width: 400px) {
  #mainPage .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
  }
}
#mainPage .itemBox {
  width: 1600px;
  margin: 0 auto;
  max-width: 100%;
}
#mainPage .itemBox .item {
  position: relative;
  padding: 1em;
  margin-bottom: 1em;
}
#mainPage .itemBox .item .photo {
  width: 100%;
  margin-bottom: 1em;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
}
#mainPage .itemBox .item .txt {
  width: 100%;
  padding: 0.5em 0;
}
#mainPage .itemBox .item .txt .date {
  color: #986f42;
  font-size: 18px;
}
#mainPage .itemBox .item .txt .title a {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0.5em;
  line-height: 1em;
}
@media screen and (max-width: 700px) {
  #mainPage .itemBox .item {
    padding: 0 0.3em;
  }
  #mainPage .itemBox .item .photo {
    border-radius: 20px;
  }
  #mainPage .itemBox .item .txt {
    padding: 0.5em;
  }
  #mainPage .itemBox .item .txt .date {
    font-size: 14px;
  }
  #mainPage .itemBox .item .txt .title a {
    font-size: 18px;
  }
}
@media screen and (max-width: 460px) {
  #mainPage .itemBox .item .txt .title a {
    font-size: 16px;
  }
}

footer {
  background: #cc9c62;
  padding: 3em 3%;
  display: flex;
  flex-direction: column;
}
footer .fotlLogo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  margin-bottom: 1em;
}
footer .fotlLogo img {
  margin-right: 0.5em;
}
footer .info {
  width: 100%;
  overflow: hidden;
}
footer .info p {
  color: #000;
  line-height: 2em;
}
footer .info p .title::after {
  content: "";
  background-color: #000;
  display: inline-block;
  width: 20px;
  height: 1px;
  transform: translateY(-5px);
  margin: 0 0.5em;
}
footer .info p span {
  margin-right: 1em;
  display: inline-block;
}
footer .info a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  footer .info p {
    font-size: 16px;
  }
  footer .info p .title {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 600px) {
  footer .fotlLogo img {
    max-height: 60px;
  }
}

/*EN*/
#mainPage.en .contentArea .txtTitle {
  font-size: 24px;
  line-height: 1.2em;
  margin-bottom: 0.5em;
}
#mainPage.en .contentArea .txt {
  padding: 0 2em;
}
#mainPage.en .contentArea .txt button.more::before {
  content: "Expand";
}
#mainPage.en .contentArea .txt button.more.btnOpen::before {
  content: "Collapse";
}
#mainPage.en .contentArea .btnBox a .tL {
  font-size: 20px;
}
#mainPage.en .contentArea .btnBox a .tS {
  font-size: 14px;
  line-height: 1.4em;
  text-align: center;
}
@media screen and (max-width: 1180px) {
  #mainPage.en .contentArea .btnBox a.sizeL {
    width: 240px;
    height: 240px;
  }
  #mainPage.en .contentArea .rowVAuto .btnBox {
    border-right: none;
  }
}
@media screen and (max-width: 760px) {
  #mainPage.en .contentArea .txt {
    padding: 0.5em 0;
  }
}
@media screen and (max-width: 560px) {
  #mainPage.en .contentArea .rowVAuto .btnBox {
    flex-direction: column;
    padding-right: 0;
  }
  #mainPage.en .contentArea .rowVAuto .btnBox a.sizeL {
    width: 100%;
    height: 180px;
    padding: 0 0.5em;
  }
}/*# sourceMappingURL=style.css.map */