/* CSS Document */
.doctorBox .insIntroBox .albumBox .albumItem img {
  transition: all 0.5s;
}

.titleBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
}
.titleBox.media {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.titleBox.media .title {
  margin-bottom: 10px;
}
.titleBox.media .subtitle {
  margin: 0;
}
.titleBox .subtitle {
  margin: 0 0 20px;
  padding: 0;
}
.titleBox .title {
  margin: 0;
}
.titleBox .bread {
  margin: 0 0 30px;
  padding: 0;
}
.titleBox .bread .wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 960px) {
  .titleBox .textBox {
    display: none;
  }
}
.titleBox .textBox p {
  color: #888888;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
  font-family: Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: right;
}

.teamList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 200px 100px;
  align-items: flex-start;
  margin: 0;
  padding: 120px 0 0;
}
@media (max-width: 1480px) {
  .teamList {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 960px) {
  .teamList {
    grid-template-columns: repeat(1, 1fr);
  }
}
.teamList .teamItem {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 1201px) {
  .teamList .teamItem:hover .base .Img {
    filter: drop-shadow(4px 1px 2px rgba(0, 0, 0, 0.2));
    transform: translate(-10px, 0);
  }
  .teamList .teamItem:hover .Txt .entitle {
    text-shadow: 2px 4px 5px rgba(0, 0, 0, 0.2);
    transform: translate(-10px, -10px);
  }
  .teamList .teamItem:hover .Txt .title a {
    color: #d97721;
  }
}
.teamList .teamItem .base {
  width: 100%;
  height: 0;
  background: url("../images/team_BG.png") no-repeat top center;
  background-size: contain;
  padding-top: 115%;
  position: relative;
  top: unset;
  right: unset;
  bottom: unset;
  left: unset;
  z-index: 1;
}
.teamList .teamItem .base::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(219, 200, 172, 0.8) 0%, transparent 30%);
  border-radius: 40px;
  left: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}
.teamList .teamItem .base .Img {
  width: 100%;
  position: absolute;
  top: unset;
  right: unset;
  bottom: 0;
  left: 0;
  z-index: 1;
  transition: all 0.8s;
  transition-delay: 0s;
}
.teamList .teamItem .base .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.teamList .teamItem .Txt {
  position: relative;
  top: unset;
  right: unset;
  bottom: unset;
  left: unset;
  z-index: 1;
  margin: 0;
  padding: 0 20px;
}
.teamList .teamItem .Txt .entitle {
  pointer-events: none;
  color: #d97721;
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 1px;
  font-family: "Poppins", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  transition: all 0.5s;
  transition-delay: 0s;
  margin: -55px 0 20px;
  padding: 0;
}
.teamList .teamItem .Txt .nameBox {
  border-style: solid;
  border-color: #e8e1d6;
  border-width: 0 0 1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 0 0 20px;
  padding: 0 0 20px;
}
.teamList .teamItem .Txt .nameBox .title {
  color: #444444;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1px;
  font-family: Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
}
.teamList .teamItem .Txt .nameBox .title a {
  transition: all 0.5s;
  transition-delay: 0s;
}
.teamList .teamItem .Txt .nameBox .title a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.teamList .teamItem .Txt .nameBox .level {
  border-radius: 30px;
  border-style: solid;
  border-color: #e8e1d6;
  border-width: 1px;
  color: #867063;
  font-size: 15px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0;
  font-family: Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  margin: 0;
  padding: 8px 15px;
}
.teamList .teamItem .Txt .text {
  height: 56px;
  color: #888888;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1px;
  font-family: Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 480px) {
  .teamList .teamItem .Txt .text {
    font-size: 13px;
  }
}

.doctorBox {
  width: 100%;
  margin: 0;
  padding: 120px 0 0;
}
@media (max-width: 768px) {
  .doctorBox {
    padding-top: 80px;
  }
}
@media (max-width: 480px) {
  .doctorBox {
    padding: 0;
  }
}
.doctorBox .topBox {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 1360px) {
  .doctorBox .topBox {
    align-items: center;
    flex-direction: column;
  }
}
.doctorBox .topBox .base {
  width: 520px;
  height: 600px;
  background: url("../images/team_BG.png") no-repeat bottom center;
  background-size: contain;
  flex-shrink: 0;
  position: relative;
  top: unset;
  right: unset;
  bottom: unset;
  left: unset;
  z-index: 1;
  margin: 0 40px 0 0;
  padding: 0;
}
@media (max-width: 1360px) {
  .doctorBox .topBox .base {
    margin: 0 0 50px;
  }
}
@media (max-width: 768px) {
  .doctorBox .topBox .base {
    width: 100%;
    max-width: 520px;
  }
}
@media (max-width: 480px) {
  .doctorBox .topBox .base {
    height: 480px;
  }
}
.doctorBox .topBox .base .Img {
  width: 100%;
  position: absolute;
  top: unset;
  right: unset;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.doctorBox .topBox .base .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.doctorBox .topBox .rightBox {
  width: 100%;
  background: #ffffff;
  border-radius: 40px;
  margin: 0;
  padding: 60px;
}
@media (max-width: 1540px) {
  .doctorBox .topBox .rightBox {
    height: auto;
  }
}
@media (max-width: 1360px) {
  .doctorBox .topBox .rightBox {
    max-width: 800px;
  }
}
@media (max-width: 768px) {
  .doctorBox .topBox .rightBox {
    padding: 30px;
  }
}
.doctorBox .topBox .rightBox .breadBox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 0 0 30px;
  padding: 0;
}
.doctorBox .topBox .rightBox .breadBox .line {
  width: 60px;
  height: 1px;
  background: #e8e1d6;
  position: relative;
  top: unset;
  right: unset;
  bottom: unset;
  left: unset;
  z-index: 1;
  margin: 0 20px 0 0;
  padding: 0;
}
.doctorBox .topBox .rightBox .breadBox .line::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background: #d97721;
  left: 0;
  top: 0;
}
@media (max-width: 480px) {
  .doctorBox .topBox .rightBox .breadBox .line {
    display: none;
  }
}
.doctorBox .topBox .rightBox .breadBox .bread {
  margin: 0;
  padding: 0;
}
@media (max-width: 980px) {
  .doctorBox .topBox .rightBox .breadBox .bread {
    display: block;
  }
}
.doctorBox .topBox .rightBox .nameBox {
  border-style: solid;
  border-color: #e8e1d6;
  border-width: 0 0 1px;
  margin: 0 0 30px;
  padding: 0 0 30px;
}
.doctorBox .topBox .rightBox .nameBox > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 0 0 10px;
  padding: 0;
}
.doctorBox .topBox .rightBox .nameBox .articleTitle {
  margin: 0;
}
.doctorBox .topBox .rightBox .nameBox .level {
  border-radius: 30px;
  border-style: solid;
  border-color: #e8e1d6;
  border-width: 1px;
  color: #867063;
  font-size: 15px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0;
  font-family: Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  margin: 0;
  padding: 8px 15px;
}
.doctorBox .topBox .rightBox .nameBox .entitle {
  color: #d97721;
  font-size: 46px;
  font-weight: 500;
  line-height: 46px;
  letter-spacing: 1px;
  font-family: "Poppins", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
}
@media (max-width: 768px) {
  .doctorBox .topBox .rightBox .nameBox .entitle {
    font-size: 32px;
    line-height: 1;
  }
}
@media (max-width: 480px) {
  .doctorBox .topBox .rightBox .nameBox .entitle {
    font-size: 24px;
  }
}
.doctorBox .topBox .rightBox .introTextBox {
  margin-bottom: 20px;
}
.doctorBox .topBox .rightBox .introTextBox .unitTitle {
  margin-bottom: 10px;
}
.doctorBox .topBox .rightBox .introTextBox p {
  color: #888888;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1px;
  font-family: Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
}
.doctorBox .topBox .rightBox .unitTitle {
  flex-shrink: 0;
  color: #444444;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 2px;
  font-family: Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
}
@media (max-width: 768px) {
  .doctorBox .topBox .rightBox .unitTitle {
    margin: 0 0 30px;
    padding: 0;
  }
}
.doctorBox .skillBox {
  background: #ffffff;
  border-radius: 40px;
  padding: 60px;
  margin-top: 60px;
}
@media (max-width: 1360px) {
  .doctorBox .skillBox {
    max-width: 800px;
    margin: 60px auto 0;
  }
}
.doctorBox .skillBox .skillList {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 0;
  align-items: flex-start;
}
@media (max-width: 1360px) {
  .doctorBox .skillBox .skillList {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 0;
  }
}
@media (max-width: 768px) {
  .doctorBox .skillBox .skillList {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 0;
  }
}
.doctorBox .skillBox .skillList .skillItem {
  border-style: solid;
  border-color: #e8e1d6;
  border-width: 0 1px 0 0;
  margin: 0;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .doctorBox .skillBox .skillList .skillItem {
    border-width: 0 0 1px;
    padding: 0 15px 30px;
  }
}
@media (max-width: 1540px) {
  .doctorBox .skillBox .skillList .skillItem:nth-of-type(even) {
    border-right: 0;
  }
}
.doctorBox .skillBox .skillList .skillItem:last-child {
  border-right: 0;
}
@media (max-width: 768px) {
  .doctorBox .skillBox .skillList .skillItem:last-child {
    border-bottom: 0;
  }
}
.doctorBox .skillBox .skillList .skillItem .item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
}
.doctorBox .skillBox .skillList .skillItem .Img {
  width: 60px;
  height: 60px;
  background: #f6f4ef;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.doctorBox .skillBox .skillList .skillItem .Img img {
  width: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.doctorBox .skillBox .skillList .skillItem .Txt .title {
  color: #444444;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0;
  font-family: Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: center;
  position: relative;
  top: unset;
  right: unset;
  bottom: unset;
  left: unset;
  z-index: 1;
  margin: 0 0 10px;
  padding: 10px 0;
}
.doctorBox .skillBox .skillList .skillItem .Txt .title::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background: #e8e1d6;
  position: absolute;
  left: 50%;
  top: unset;
  bottom: 0px;
  transform: translate(-50%, 0);
  z-index: 1;
}
.doctorBox .skillBox .skillList .skillItem .Txt .textEditor {
  line-height: 22px;
}
.doctorBox .skillBox .skillList .skillItem .Txt .textEditor ul {
  padding-left: 16px;
}
.doctorBox .skillBox .skillList .skillItem .Txt .textEditor ul li {
  max-width: 200px;
  margin: 0 0 10px;
  padding: 0;
}
.doctorBox .skillBox .skillList .skillItem .Txt .textEditor ul li::marker {
  color: #d97721;
}
.doctorBox .skillBox .skillList .skillItem .Txt .textEditor ul li:last-child {
  margin: 0;
}
.doctorBox .insIntroBox {
  margin: 60px 0 0;
  padding: 0;
}
.doctorBox .insIntroBox .introBox {
  width: 100%;
}
.doctorBox .insIntroBox .introBox:not(:last-child) {
  margin-bottom: 50px;
}
.doctorBox .insIntroBox .introBox .Txt {
  max-height: 580px;
  overflow-y: auto;
  color: #888888;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1px;
  font-family: Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
}
.doctorBox .insIntroBox .introBox .Txt::-webkit-scrollbar-track {
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
}
.doctorBox .insIntroBox .introBox .Txt::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #ffffff;
}
.doctorBox .insIntroBox .introBox .Txt::-webkit-scrollbar-thumb {
  background: #d97721;
}
@media (max-width: 480px) {
  .doctorBox .insIntroBox .introBox .Txt {
    max-height: unset;
  }
}
.doctorBox .insIntroBox .albumBox {
  width: 100%;
  position: relative;
  top: unset;
  right: unset;
  bottom: unset;
  left: unset;
  z-index: 1;
}
.doctorBox .insIntroBox .albumBox .albumList {
  -moz-column-count: 4;
       column-count: 4;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 1024px) {
  .doctorBox .insIntroBox .albumBox .albumList {
    -moz-column-count: 3;
         column-count: 3;
  }
}
.doctorBox .insIntroBox .albumBox .albumItem {
  display: inline-block;
  width: 100%;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  page-break-inside: avoid;
  cursor: pointer;
  margin: 0 0 20px;
  padding: 0;
}
@media (min-width: 1201px) {
  .doctorBox .insIntroBox .albumBox .albumItem:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
  }
}
@media (max-width: 1360px) {
  .doctorBox .insIntroBox .albumBox .albumItem {
    text-align: center;
  }
}
@media (max-width: 640px) {
  .doctorBox .insIntroBox .albumBox .albumItem {
    border-radius: 10px;
  }
}
.doctorBox .insIntroBox .albumBox .albumItem img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.doctorBox .insIntroBox .albumBox .albumItem .title {
  width: 100%;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  bottom: 0;
  padding-right: 20px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0;
  font-family: Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 640px) {
  .doctorBox .insIntroBox .albumBox .albumItem .title {
    display: none;
  }
}
.doctorBox .unitTitle {
  border-style: solid;
  border-color: #e8e1d6;
  border-width: 0 0 1px;
  color: #444444;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 2px;
  font-family: "Noto Serif TC", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  position: relative;
  top: unset;
  right: unset;
  bottom: unset;
  left: unset;
  z-index: 1;
  margin: 0 0 30px;
  padding: 0 0 20px;
}
.doctorBox .unitTitle::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background: #d97721;
  left: 0;
  bottom: -1px;
}
.doctorBox .unitTitle h2 {
  font-weight: 400;
}
@media (max-width: 480px) {
  .doctorBox .unitTitle p {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .doctorBox .unitTitle p span {
    padding: 10px 0 0;
  }
}
.doctorBox .unitTitle span {
  color: #d97721;
  font-size: 22px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0;
  font-family: "Poppins", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  margin: 0;
  padding: 0 0 0 5px;
}
@media (max-width: 540px) {
  .doctorBox .unitTitle span {
    font-size: 18px;
  }
}
.doctorBox .unitTitle .arrowBox {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  position: absolute;
  top: -5px;
  right: 0;
  bottom: unset;
  left: unset;
  z-index: 1;
}
.doctorBox .unitTitle .arrowBox button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border-style: solid;
  border-color: #d97721;
  border-width: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  transition: all 0.5s;
  transition-delay: 0s;
  margin: 0 10px 0 0;
  padding: 0;
}
@media (min-width: 1201px) {
  .doctorBox .unitTitle .arrowBox button:hover {
    background: #d97721;
  }
  .doctorBox .unitTitle .arrowBox button:hover i::before {
    border-color: transparent transparent #ffffff #ffffff;
  }
  .doctorBox .unitTitle .arrowBox button:hover i::after {
    border-color: #ffffff transparent transparent #ffffff;
  }
}
.doctorBox .unitTitle .arrowBox button:last-child {
  margin: 0;
}
.doctorBox .unitTitle .arrowBox button.arrowPrev {
  transform: scaleX(-1);
}
.doctorBox .unitTitle .arrowBox button i {
  width: 20px;
  height: 20px;
  position: relative;
  top: unset;
  right: unset;
  bottom: unset;
  left: unset;
  z-index: 1;
  margin: 10px 0 0;
  padding: 0;
}
.doctorBox .unitTitle .arrowBox button i::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: -4px;
  left: 8px;
  transform: skewX(30deg);
  border-style: solid;
  border-color: transparent transparent #d97721 #d97721;
  border-width: 4px;
  transition: all 0.5s;
  transition-delay: 0s;
}
.doctorBox .unitTitle .arrowBox button i::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 4px;
  left: 8px;
  transform: skewX(-30deg);
  border-style: solid;
  border-color: #d97721 transparent transparent #d97721;
  border-width: 4px;
  transition: all 0.5s;
  transition-delay: 0s;
}

.mediaExpBox {
  margin-top: 40px;
}

.btnBox.index {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 180px 0 0;
  padding: 0;
}

.bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: unset;
  bottom: unset;
  left: 0;
  z-index: -99;
}
.bg.fac {
  background: url("../images/team_inner_BG.jpg") no-repeat top center;
  background-size: cover;
}
.bg.fac::after, .bg.fac::before {
  display: none;
}
.bg:not(.inner)::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 550px;
  background: #ece9e5;
  border-radius: 0 0 100px 0;
  top: 0;
  left: 0;
  opacity: 0.5;
}
.bg:not(.inner)::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 550px;
  background: #ece9e5;
  border-radius: 100px 0 0 100px;
  right: 0;
  bottom: 0;
  opacity: 0.5;
}
.bg:not(.inner) .decoText {
  writing-mode: vertical-rl;
  opacity: 0.4;
  color: #e1d5cb;
  font-size: 190px;
  font-weight: 500;
  line-height: 190px;
  letter-spacing: 0;
  font-family: "Poppins", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  position: absolute;
  top: 700px;
  right: unset;
  bottom: unset;
  left: -50px;
  z-index: 1;
}
.bg.inner {
  background: url("../images/team_inner_BG.jpg") no-repeat top center;
  background-size: cover;
}
.bg.inner::before {
  content: "";
  position: absolute;
  width: 30%;
  height: 950px;
  background: #ece9e5;
  border-radius: 0 0 100px 0;
  top: 0;
  left: 0;
  opacity: 0.7;
}
.bg.inner::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 550px;
  background: #ece9e5;
  border-radius: 100px 0 0 100px;
  right: 0;
  bottom: 0;
  opacity: 0.5;
}
.bg.inner .decoText {
  writing-mode: vertical-rl;
  opacity: 0.4;
  color: #e1d5cb;
  font-size: 100px;
  font-weight: 600;
  line-height: 100px;
  letter-spacing: 0;
  font-family: "Poppins", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  position: absolute;
  top: 300px;
  right: unset;
  bottom: unset;
  left: 200px;
  z-index: 1;
}

.facList {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -15px;
  padding: 0;
}
.facList .facItem {
  width: 33.3333333333%;
  margin: 0;
  padding: 0 15px 30px;
}
@media (max-width: 1024px) {
  .facList .facItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .facList .facItem {
    width: 100%;
  }
}
.facList .item {
  position: relative;
  top: unset;
  right: unset;
  bottom: unset;
  left: unset;
  z-index: 1;
  margin: 0;
  padding: 20px 0;
}
@media (min-width: 1201px) {
  .facList .item:hover .Img img {
    transform: scale(1.05);
    filter: brightness(0.8);
  }
  .facList .item:hover .Txt .title a {
    color: #d97721;
  }
}
.facList .Img {
  width: 100%;
  max-width: 340px;
  border-radius: 40px;
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
}
.facList .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
  transition: all 0.5s;
  transition-delay: 0s;
}
.facList .Txt {
  max-width: 340px;
  overflow: hidden;
  margin: 0 auto;
  padding: 15px 0;
}
.facList .Txt .title a {
  color: #444444;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 2px;
  font-family: Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  transition: all 0.5s;
  transition-delay: 0s;
}
.facList .Txt .title a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.facList .Txt .text {
  height: 48px;
  color: #888888;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1px;
  font-family: Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 10px 0 0;
  padding: 0;
}
.facList .Txt .contactBox {
  margin: 10px 0 0;
  padding: 0;
}
.facList .Txt .contactBox p {
  color: #888888;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1px;
  font-family: Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
}

.insPage.fac .insIntroBox {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .insPage.fac .insIntroBox {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.insPage.fac .insIntroBox .albumBox {
  width: 50%;
  margin: 0 30px 0 0;
  padding: 0;
}
@media (max-width: 768px) {
  .insPage.fac .insIntroBox .albumBox {
    width: 100%;
    margin: 30px 0 0;
  }
}
.insPage.fac .insIntroBox .albumBox .albumList.albumListNav {
  margin: 20px -5px 0;
  padding: 0;
}
.insPage.fac .insIntroBox .albumBox .albumList.albumListNav .slick-slide {
  margin: 0 5px;
  padding: 0;
}
.insPage.fac .insIntroBox .albumBox .albumList .albumItem img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.insPage.fac .insIntroBox .introBox {
  width: calc(50% - 30px);
}
@media (max-width: 768px) {
  .insPage.fac .insIntroBox .introBox {
    width: 100%;
  }
}
.insPage.fac .insIntroBox .introBox .Txt {
  color: #444444;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1px;
  font-family: Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
}
.insPage.fac .insIntroBox .introBox .contactBox {
  margin: 10px 0 0;
  padding: 0;
}
.insPage.fac .insIntroBox .introBox .contactBox p {
  color: #444444;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1px;
  font-family: Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  text-align: left;
}