/* !!!所有頁面共用!!! 開始 */
html, body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  line-height: 1.5;
}

.container-fluid{
  margin: 0 auto;
}

.ol, ul {
  padding-left: 0;
}

a:hover {
  text-decoration: none;
}

.ls-15 {
  letter-spacing: 1.5px;
}


/* footer置底 Start */
.sticky-footer {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sticky-footer-bottom {
  margin-top: auto; 
}
/* footer置底 End */


/* 編輯器樣式 Start */
.editorWrap thead,.editorWrap tbody,.editorWrap tfoot,.editorWrap tr,.editorWrap td,.editorWrap th {
  border-width: 1px;
}

.editorWrap a {
  color: #000;
}

.editorWrap a:hover {
  opacity: 0.6;
  text-decoration: underline;
}

.editorWrap ul {
  padding-inline-start: 20px;
  list-style: disc;
}

.editorWrap ol {
  list-style: decimal;
}

.editorWrap img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  height: auto;
}

a.fr-strong {
  font-weight: bold;
}

a.fr-green {
  color: #318000;
}
/* 編輯器樣式 End */


/* 輪播圖 開始 */
.banner img {
  width: 100%;
}
/* 輪播圖 結束 */


/* --------------------------------------- qp樣式 Start --------------------------------------- */
.qp-outerWrap {
  opacity: 0;
}

.qp-outerWrap img {
  max-width: 100%;
  height: auto;
}

.qp-outerWrap.show {
  opacity: 1;
}

.qp-wrap {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 50px;
}

@media (max-width: 1380px) {
  .qp-wrap {
    max-width: 90vw;
    padding: 0 20px;
  }
}

.qp-insContent {
  padding-top: 80px;
}

@media (max-width: 640px) {
  .qp-insContent {
    padding-top: 20px;
  }
}

.qp-insContent .qp-contentBox {
  padding: 30px 0 100px;
}

@media (max-width: 1180px) {
  .qp-insContent .qp-contentBox {
    padding: 40px 0;
  }
}

@media (max-width: 1024px) {
  .qp-insContent .qp-contentBox {
    padding-left: 20px;
  }
}

@media (max-width: 640px) {
  .qp-insContent .qp-contentBox {
    padding-left: 0;
  }
}

.qp-insContent .qp-insLabel {
  width: fit-content;
  padding: 5px 20px;
  background-color: #d4d4d4;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 30px;
  text-indent: 30px;
  text-align: center;
}

/* -----loading----- */
@keyframes slowShowLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

body.qp-isLoading {
  overflow: hidden;
}

.qp-loading {
  align-items: center;
  background-color: #fff;
  display: flex;
  height: 100%;
  justify-content: center;
  opacity: 1;
  position: fixed;
  pointer-events: none;
  top: 0;
  transition: all 0.5s ease-in-out;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.qp-loading.hide {
  opacity: 0;
  pointer-events: none;
}

.qp-loading-logo {
  margin: auto;
  max-width: 300px;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  animation: slowShowLeft 1s ease-in-out forwards;
}

.qp-loading-logo img {
  width: 100%;
}

/* -----按鈕區塊----- */
.qp-btnBox {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.qp-btnBox .qp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #7fc0c1;
  text-decoration: none;
}

.qp-btnBox .qp-btn .qp-imgBox {
  width: 25px;
  height: 25px;
  background-color: #7fc0c1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  margin-right: 5px;
}

@media (min-width: 1181px) {
  .qp-btnBox .qp-btn:hover .qp-imgBox {
    transform: translateX(-10%);
  }
}


/* -----全域標題----- */
.qp-titleBox {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  padding-bottom: 25px;
}

.qp-titleBox:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 10px;
  background-color: #7fc0c1;
}

.qp-titleBox .qp-title {
  font-size: 36px;
  color: #000;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 3.6px;
}

.qp-titleBox .qp-subtitle {
  color: #000;
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 3px;
}

@media (max-width: 640px) {
  .qp-titleBox .qp-title {
    font-size: 24px;
  }

  .qp-titleBox .qp-subtitle {
    font-size: 30px;
  }
}



/* -----banner----- */
.qp-banner {
  border-top: 10px solid #7fc0c1;
  border-bottom: 10px solid #7fc0c1;
}

.banner-static {
  position: relative;
}

.qp-banner-titlebox {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.qp-banner-titlebox .qp-wrap {
  width: 100%;
}

.qp-banner-titlebox .qp-banner-title {
  margin-bottom: 40px;
  font-size: 50px;
}

@media (max-width: 1024px) {
  .qp-banner-titlebox .qp-banner-title {
    font-size: 40px;
    margin-bottom: 20px;
  } 
}

.qp-breadBox {
  margin-bottom: 40px;
  align-items: center;
  display: flex;
}

.qp-bread {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.qp-bread li,
.qp-bread a {
  font-size: 14px;
  color: #3a5265;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-decoration: none;
}
.qp-bread .divider {
  margin: 0 5px;
}

/* -----編輯器----- */
.qp-editor {
  color: #378142;
}

.qp-editor p {
  margin-bottom: 0;
  color: #3b3b3b;
  font-size: 16px;
  line-height: calc(32 / 18);
  letter-spacing: 1.28px;
}

.qp-editor img {
  height: auto;
  max-width: 100%;
}

/* -----全域表單----- */
.qp-formItem {
  align-items: center;
  display: flex;
  padding: 10px 0;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 640px) {
  .qp-formItem {
    padding: 10px;
  }
}

.qp-formItem:focus-within {
  border-color: #7fc0c1;
}

.qp-formItem.textarea {
  align-items: flex-start;
}

.qp-formItem label {
  color: #3a5265;
  font-size: 18px;
  margin-right: 15px;
  letter-spacing: 1.44px;
  white-space: nowrap;
}

.qp-formItem input,
.qp-formItem textarea {
  font-family: 'fgdc';
  font-size: 18px;
  letter-spacing: 1.44px;
  font-weight: 700;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #c8c8c8;
  width: max-content;
  flex: 1;
  padding: 10px 30px;
}

.qp-formItem input:focus,
.qp-formItem textarea:focus {
  outline: none;
}


/* -----年份下拉----- */
.qp-yearFilter {
  margin-left: 20px;
}

@media (max-width: 640px) {
  .qp-yearFilter {
    margin-left: 0;
    margin-bottom: 20px;
    padding: 0 0.75rem;
  }
}

.qp-yearFilter select {
  outline: none;
  border: none;
  border-bottom: 1px solid #7fc0c1;
  color: #7fc0c1;
  padding: 5px 15px;
  font-weight: 700;
}


/* -----首頁----- */
/* 治療項目 */
.qp-serviceBox {
  padding: 80px 0;
  background-image: url("../qp-images/serviceBg.jpg");
  position: relative;
}

.qp-serviceBox .qp-wrap {
  display: flex;
}

.qp-serviceBox .qp-wrap .qp-leftBox {
  width: 300px;
}

.qp-serviceBox .qp-wrap .qp-rightBox {
  flex: 1;
  padding-left: 50px;
}

.qp-serviceBox .qp-btnBox {
  margin-top: 30px;
}

.qp-serviceBox .qp-serviceList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
}

.qp-serviceBox .qp-serviceItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #3a5265;
  font-weight: 700;
  text-align: center;
  padding: 15px 0 60px;
  width: 33%;
  height: 330px;
  border: 3px solid transparent;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.qp-serviceBox .qp-serviceItem:nth-child(odd) .qp-imgBox {
  background-color: #7fc0c1
}

.qp-serviceBox .qp-serviceItem:nth-child(even) .qp-imgBox {
  background-color: #3a5265;
}

.qp-serviceBox .qp-serviceItem .qp-imgBox {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qp-serviceBox .qp-serviceItem img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.qp-serviceBox .qp-serviceItem .qp-title {
  font-size: 24px;
  letter-spacing: 3px;
}

.qp-serviceBox .qp-serviceItem .qp-subtitle {
  font-size: 14px;
  max-width: 150px;
  letter-spacing: 1.12px;
}

.qp-serviceBox .qp-serviceItem .qp-link:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
} 

@media (max-width: 1024px) {
  .qp-serviceBox {
    padding: 40px 0;
  }

  .qp-serviceBox .qp-wrap {
    flex-direction: column;
  }

  .qp-serviceBox .qp-wrap .qp-rightBox {
    padding-left: 0;
  } 

  .qp-serviceBox .qp-serviceList {
    align-items: baseline;
    max-width: 100%;
  }

  .qp-serviceBox .qp-serviceItem {
    padding: 15px 0 40px;
  }
}

@media (max-width: 640px) {
  .qp-serviceBox .qp-serviceList {
    align-items: center;
    margin-top: 20px;
  }

  .qp-serviceBox .qp-serviceItem {
    width: 50%;
  }

  .qp-serviceBox .qp-serviceItem .qp-imgBox {
    width: 100px;
    height: 100px;
  }

  .qp-serviceBox .qp-serviceItem img {
    width: 50px;
    height: 50px;
  }

  .qp-serviceBox .qp-serviceItem .qp-subtitle {
    max-width: 100%;
  }
}

@media (min-width: 1181px) {
  .qp-serviceBox .qp-serviceItem:hover {
    border-color: #7fc0c1;
    background-color: #fff;
  }
}

/* 案例分享 */
.qp-workBox-index {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .qp-workBox-index {
    padding: 60px 0;
  }
}

.qp-workBox-index .qp-bg {
  position: absolute;
  top: 100px;
  right: 0;
  z-index: 1;
  max-height: 680px;
  overflow: hidden;
}

@media (max-width: 1536px) {
  .qp-workBox-index .qp-bg {
    right: -5%;
  }
}

@media (max-width: 1380px) {
  .qp-workBox-index .qp-bg {
    right: -15%;
  }
}

@media (max-width: 1280px) {
  .qp-workBox-index .qp-bg {
    right: -20%;
  }
}

@media (max-width: 1024px) {
  .qp-workBox-index .qp-bg {
    display: none;
  }
}

.qp-workBox-index .qp-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qp-workBox-index .qp-wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  padding-left: 140px;
}

.qp-workBox-index .qp-titleBox {
  align-items: flex-end;
  padding-top: 80px;
}

.qp-workBox-index .qp-titleBox:before {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
}

.qp-workBox-index .qp-workList {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 740px;
}

.qp-workBox-index .qp-workItem-index {
  width: 320px;
  height: 320px;
  position: relative;
}

.qp-workBox-index .qp-workItem-index .qp-imgBox {
  opacity: 0.35;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-size: 0;
  transition: all 0.5s ease-in-out;
}

.qp-workBox-index .qp-workItem-index .qp-imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qp-workBox-index .qp-workItem-index .qp-textBox {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  width: 80%;
  margin: 0 auto;
  transition: all 0.5s ease-in-out;
}

.qp-workBox-index .qp-workItem-index .qp-textBox .qp-title {
  font-size: 24px;
  color: #3a5265;
  font-weight: 700;
  padding: 10px 40px;
  text-align: center;
  border-bottom: 2px solid #7fc0c1;
}

.qp-workBox-index .qp-workItem-index .qp-link:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 1680px) {
  .qp-workBox-index .qp-wrap {
    padding-left: 0;
  }
}

@media (max-width: 1280px) {
  .qp-workBox-index .qp-workList {
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .qp-workBox-index .qp-wrap {
    flex-direction: column-reverse;
  }

  .qp-workBox-index .qp-titleBox {
    padding-top: 0;
    margin-bottom: 40px;
  }

  .qp-workBox-index .qp-workList {
    max-width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .qp-workBox-index .qp-wrap {
    padding-left: 20px;
  }

  .qp-workBox-index .qp-workList {
    gap: 20px;
  }
}

@media (min-width: 1181px) {
  .qp-workBox-index .qp-workItem-index:hover .qp-imgBox {
    opacity: 1;
  }

  .qp-workBox-index .qp-workItem-index:hover .qp-textBox {
    opacity: 0;
  }
}

/* 介紹 */
.qp-introductionBox {
  color: #3a5265;
  padding-left: 225px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.375;
  position: relative;
}

@media (max-width: 1024px) {
  .qp-introductionBox {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media (max-width: 640px) {
  .qp-introductionBox {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.qp-introductionBox:after {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 1400px;
  height: calc(100% + 40px);
  background-color: #dde4ea;
  top: -20px;
  left: 0;
  z-index: -1;
}

.qp-introductionBox .qp-en {
  position: relative;
}

.qp-introductionBox .qp-en:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #3a5265;
  left: -40px;
  top: -30px;
}

.qp-introductionBox .qp-tw {
  margin-top: 30px;
}


.qp-bgBox {
  background-image: url("../qp-images/newsBg.jpg");
  background-position: right 300px;
  background-repeat: no-repeat;
  background-size: contain;
}

/* 團隊介紹 */
.qp-teamBox {
  padding: 80px 0;
}

.qp-teamBox .qp-teamContent {
  position: relative;
}

.qp-teamBox .qp-teamList {
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .qp-teamBox {
    padding: 60px 0 40px;
  }
}

.slick_team .slick-list {
  padding-bottom: 15px;
}

.qp-teamList.slick_team .qp-teamItem {
  display: flex;
  margin: 0 25px;
}

@media (max-width: 640px) {
  .qp-teamList.slick_team .qp-teamItem {
    margin: 0 10px;
  }
}

.qp-teamList.slick_team .qp-teamItem:nth-child(2n):after {
  content: "";
  position: absolute;
  background-image: url("../qp-images/tbg2.jpg");
}

.qp-teamList.slick_team .qp-teamItem:nth-child(3n):after {
  content: "";
  position: absolute;
  background-image: url("../qp-images/tbg3.jpg");
}

.qp-teamList.slick_team .slick-prev,
.qp-teamList.slick_team .slick-next {
  width: 25px;
  height: 41px;
  cursor: pointer;
}

.qp-teamList.slick_team .slick-prev::before {
  content: '\f053';
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 40px;
  color: #7fc0c1;
}

.qp-teamList.slick_team .slick-next::before {
  content: '\f054';
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 40px;
  color: #7fc0c1;
}

.qp-teamList.slick_team .slick-dots li button:before {
  content: "□";
  font-size: 25px;
  color: #7fc0c1;
  opacity: 1;
}

.qp-teamList.slick_team .slick-dots li.slick-active button:before {
  content: "■";
}

/* 最新消息 */
.qp-newsBox-index {
  padding: 100px 0;
}

.qp-newsBox-index .qp-titleBox {
  align-items: flex-end;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .qp-newsBox-index .qp-titleBox {
    margin-bottom: 60px;
  }
}

.qp-newsBox-index .qp-titleBox:before {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
}

.qp-newsBox-index .qp-newsList {
  display: flex;
  margin: 0 -30px;
  padding-left: 0;
}

.qp-newsBox-index .qp-newsItem-index {
  width: calc(100% / 3);
  background-color: #fff;
  margin: 0 10px;
  position: relative;
}
  
@media (max-width: 768px) {
  .qp-newsBox-index .qp-newsItem-index {
    width: 100%; 
  }
}

@media (max-width: 640px) {
  .qp-newsBox-index {
    padding: 30px 0;
  }

  .qp-newsBox-index .qp-newsList {
    flex-direction: column;
    margin: 0;
  }

  .qp-newsBox-index .qp-newsItem-index {
    margin: 0;
  }
}

@media (min-width: 1181px) {
  .qp-newsBox-index .qp-newsItem-index:hover .qp-hoverBox {
    opacity: 1;
  }
}

.qp-newsBox-index .qp-hoverBox {
  position: absolute;
  left: 0;
  top: -10px;
  width: 100%;
  height: calc(100% + 20px);
  background-color: rgba(127, 192, 193, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.qp-newsBox-index .qp-hoverBox .qp-arrowBox {
  padding: 10px;
  background-color: #3a5265;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-size: 14px;
}

.qp-newsBox-index .qp-hoverBox .qp-arrowBox .qp-arrow {
  margin-bottom: 10px;
}

.qp-newsBox-index .qp-contentBox {
  flex-direction: column;
  position: relative;
  display: flex;
  padding: 15px;
}

@media (max-width: 640px) {
  .qp-newsBox-index .qp-contentBox {
    padding: 0;
  }
}

.qp-newsBox-index .qp-imgBox {
  width: 100%;
  overflow: hidden;
}

.qp-newsBox-index .qp-imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qp-newsBox-index .qp-dateBox {
  position: absolute;
  left: 35px;
  top: -10px;
  background-color: #7fc0c1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #fff;
  font-weight: 700;
  padding: 5px;
}

.qp-newsBox-index .qp-textBox {
  margin-top: 20px;
  padding-bottom: 100px;
}

.qp-newsBox-index .qp-textBox .qp-title {
  color: #3a5265;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.qp-newsBox-index .qp-textBox .qp-text {
  color: #3a5265;
  line-height: 1.5;
  max-width: 90%;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .qp-newsBox-index .qp-textBox {
    padding-bottom: 50px;
  }

  .qp-newsBox-index .qp-textBox .qp-title {
    font-size: 18px;
  }

  .qp-newsBox-index .qp-textBox .qp-text {
    max-width: 100%;
  }
}

.qp-newsBox-index .qp-link:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

@media (max-width: 640px) {
  .qp-newsBox-index .qp-btnBox {
    margin-top: 20px;
  }
}

.qp-newsBox-index .qp-btnBox .qp-btn {
  padding: 5px 60px;
  background-color: #3a5265;
  color: #fff;
  font-weight: 700;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 1181px) {
  .qp-newsBox-index .qp-btnBox .qp-btn:hover {
    background-color: #7fc0c1;
  }
}


/* -----左邊選單----- */
@media (max-width: 1180px) {
  .qp-sideBox .qp-sideMenu {
    display: none;
  }
}

.qp-sideBox .qp-sideMenu ul {
  margin-bottom: 0;
}

.qp-sideBox .qp-sideMenu li {
  border-radius: 20px;
  padding: 10px 30px;
  margin-bottom: 5px;
  position: relative;
  width: 100%;
  text-align: left;
  max-width: 220px;
  transition: all 0.5s ease-in-out;
}

.qp-sideBox .qp-sideMenu li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background-color: #c8c8c8;
  opacity: 0;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 1600px) {
  .qp-sideBox .qp-sideMenu li {
    text-align: left;
    padding: 8px 30px;
  }
}

.qp-sideBox .qp-sideMenu li a {
  font-weight: 400;
  font-size: 18px;
  padding-bottom: 5px;
  transition: all 0.5s ease-in-out;
  letter-spacing: 1.08px;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 640px) {
  .qp-sideBox .qp-sideMenu li a {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

.qp-sideBox .qp-sideMenu li.current > a {
  color: #7fc0c1;
  border-bottom: 2px solid #7fc0c1;
  font-weight: 700;
}

.qp-sideBox .qp-sideMenuBtn {
  margin: 10px 0;
}

@media (min-width: 1181px) {
  .qp-sideBox .qp-sideMenuBtn {
    display: none;
  }

  .qp-sideBox .qp-sideMenu li:hover {
    color: #3a5265;
    font-weight: 700;
  }

  .qp-sideBox .qp-sideMenu li:hover::after {
    opacity: .5;
  }
}

.qp-sideBox .qp-sideMenuBtn .qp-btn {
  cursor: pointer;
  border: none;
  background-color: #7fc0c1;
  color: #fff;
  padding: 10px;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .qp-sideBox .qp-sideMenuBtn .qp-btn {
    width: 100%;
  }

  .qp-sideBox .qp-sideMenuBtn + .qp-sideMenu {
    margin-top: 30px;
  }
}


/* -----團隊介紹列表頁----- */
.qp-teamList .qp-teamItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;
  height: 100%;
}

@media (max-width: 1024px) {
  .qp-teamList .qp-teamItem {
    margin-bottom: 20px;
  }
}

.qp-teamList .qp-teamItem:after {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 100%;
  height: 70%;
  background-image: url("../qp-images/tbg1.jpg");
  background-position: center;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.5s ease-in-out;
}

.qp-teamList .col:nth-child(2n) .qp-teamItem:after {
  content: "";
  position: absolute;
  background-image: url("../qp-images/tbg2.jpg");
}

.qp-teamList .col:nth-child(3n) .qp-teamItem:after {
  content: "";
  position: absolute;
  background-image: url("../qp-images/tbg3.jpg");
}

@media (min-width: 1181px) {
  .qp-teamList .qp-teamItem:hover .qp-imgBox {
    border-color: #7fc0c1;
  }

  .qp-teamList .qp-teamItem:hover .qp-imgBox img {
    transform: scale(1.1);
  }

  .qp-teamList .qp-teamItem:hover:after {
    content: "";
    position: absolute;
    transform: scale(1.1);
  }
}

.qp-teamList .qp-teamItem .qp-link:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.qp-teamList .qp-imgBox {
  width: 240px;
  height: 240px;
  border: 10px solid #f0f0f0;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.qp-teamList .qp-imgBox img {
  max-width: 100%;
  height: auto;
  transition: all 0.5s ease-in-out;
}

.qp-teamList .qp-textBox {
  padding: 20px 0 40px;
}

.qp-teamList .qp-teamTitle {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
}

.qp-teamList .qp-teamTitle span {
  font-size: 14px;
  font-weight: 400;
  margin-left: 10px;
}

.qp-teamList .qp-skillBox .qp-skillTitle {
  display: block;
  padding: 2.5px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 70px;
  text-indent: 70px;
  text-align: center;
}

.qp-teamList .qp-skillBox .qp-skillText {
  max-width: 250px;
  color: #fff;
  line-height: 1.85;
}

/* -----團隊介紹內頁----- */
.qp-teamInfo {
  padding-left: 50px;
}

.qp-content .qp-label {
  padding: 2.5px 0;
  border-top: 1px solid #3a5265;
  border-bottom: 1px solid #3a5265;
  font-weight: 700;
  font-size: 18px;
  color: #3a5265;
  margin-bottom: 10px;
  letter-spacing: 40px;
  text-indent: 40px;
  text-align: center;
  height: fit-content;
  width: fit-content;
  white-space: nowrap;
}

.qp-content .qp-topBox {
  display: flex;
  margin-bottom: 50px;
}

.qp-content .qp-topBox .qp-imgBox {
  position: relative;
}

.qp-teamInfo .qp-topBox .qp-imgBox {
  max-width: 300px;
}

.qp-teamInfo .qp-topBox .qp-imgBox:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #d4d4d4;
  left: -10px;
  top: -15px;
  z-index: -1;
}

.qp-content .qp-topBox .qp-rightBox {
  padding-left: 30px;
}

.qp-content .qp-topBox .qp-rightBox .qp-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.qp-content .qp-topBox .qp-rightBox .qp-title span {
  font-size: 20px;
  font-weight: 400;
  margin-left: 10px;
}

.qp-content .qp-topBox .qp-rightBox .qp-introItem {
  align-items: baseline;
  display: flex;
  margin-bottom: 20px;
}

.qp-content .qp-topBox .qp-rightBox .qp-introItem .qp-value {
  margin-left: 40px;
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .qp-teamInfo {
    padding-left: 0;
  }

  .qp-content .qp-label {
    font-size: 16px;
    letter-spacing: 15px;
    text-indent: 15px;
  }

  .qp-content .qp-topBox .qp-rightBox {
    padding-left: 15px;
  }

  .qp-content .qp-topBox .qp-rightBox .qp-introItem .qp-value {
    margin-left: 20px;
  }
}

@media (max-width: 640px) {
  .qp-content .qp-topBox {
    align-items: center;
    flex-direction: column;
    margin-bottom: 10px;
  }

  .qp-content .qp-topBox .qp-rightBox {
    padding-left: 0;
    align-self: flex-start;
    margin-top: 15px;
  }

  .qp-content .qp-topBox .qp-rightBox .qp-introItem {
    flex-direction: column;
  }

  .qp-content .qp-topBox .qp-rightBox .qp-introItem .qp-value {
    margin-left: 0;
  }
}


/* -----案例分享列表頁----- */
.qp-workBox {
  display: flex;
}

.qp-workItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
  border: 1px solid #c8c8c8;
  overflow: hidden;
  cursor: pointer;
}

.qp-workItem .qp-link:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.qp-workItem .qp-imgBox {
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  padding: 10px;
  width: 100%;
  flex-grow: 1;
}

.qp-workItem .qp-imgBox img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.qp-workItem .qp-textBox {
  background-color: #fff;
  width: 100%;
  font-size: 18px;
  padding: 10px 0 20px;
  text-align: center;
  color: #3a5265;
  font-weight: 700;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 640px) {
  .qp-workBox {
    flex-direction: column-reverse;
  }

  .qp-workItem {
    margin-bottom: 10px;
  }
}

@media (min-width: 1181px) {
  .qp-workItem:hover .qp-imgBox {
    border-color: #7fc0c1;
  }

  .qp-workItem:hover .qp-imgBox img {
    transform: scale(1.1);
  }

  .qp-workItem:hover .qp-textBox {
    color: #fff;
    background-color: #7fc0c1;
  }
}

/* -----案件分享內頁----- */
.qp-content .qp-topBox {
  margin-bottom: 20px;
}

.qp-workInfo .qp-insLabel {
  font-size: 16px;
  text-indent: unset;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1.6px;
}

.qp-albumTitle {
  font-size: 22px;
  font-weight: 700;
  color: #3a5265;
  padding: 0 10px 5px;
  margin-bottom: 20px;
  border-bottom: 1px solid #7fc0c1;
  width: fit-content;
}

.qp-albumList a {
  display: block;
  position: relative;
  height: 100%;
}

.qp-workInfo .qp-btnBox .qp-btn img {
  transition: all 0.5s ease-in-out;
}

@media (min-width: 1181px) {
  .qp-albumList a:hover:after {
    content: "";
    position: absolute;
    opacity: 1;
  }

  .qp-workInfo .qp-btnBox .qp-btn:hover img {
    transform: translateX(-10%) rotate(-45deg);
  }
}

.qp-albumList a:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: 10px;
  right: 10px;
  background-image: url("../qp-images/zoom.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
  z-index: 3;
}

.qp-albumList a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  background-color: rgba(127, 192, 193, 0.5);
  pointer-events: none;
  transition: all 0.5s ease-in-out;
  z-index: 2;
}

.qp-albumList img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -----最新消息列表頁----- */
.qp-newsBox {
  display: flex;
}

.qp-newsList {
  padding-left: 100px;
  flex-grow: 1;
}

.qp-newsItem {
  align-items: center;
  display: flex;
  margin-bottom: 20px;
  padding: 20px 10px;
  position: relative;
}

.qp-newsItem:nth-child(even) {
  flex-direction: row-reverse;
  background-color: #f1f1f1;
}

.qp-newsItem .qp-dateBox .qp-topBox {
  background-color: #7fc0c1;
  font-weight: 700;
  color: #fff;
  text-align: right;
  padding: 5px 10px;
}

.qp-contentBox .qp-newsItem .qp-dateBox .qp-topBox {
  display: block;
}

.qp-newsItem .qp-dateBox .qp-year {
  font-size: 18px;
  color: #3a5265;
  font-weight: 700;
  text-align: right;
}

.qp-newsItem .qp-dateBox {
  align-self: flex-start;
  margin-right: 15px;
  word-break: keep-all;
}

.qp-newsItem:nth-child(even) .qp-dateBox {
  margin-right: 0;
  margin-left: 15px;
}

.qp-newsItem:nth-child(even) .qp-dateBox .qp-year {
  text-align: left;
}

.qp-newsItem:nth-child(even) .qp-newsInfo {
  margin-right: auto;
}

.qp-newsItem .qp-newsImg {
  overflow: hidden;
}

.qp-newsItem .qp-newsImg img {
  transition: all 0.5s ease-in-out;
}

.qp-newsItem .qp-newsInfo {
  width: 60%;
  padding: 30px;
}

.qp-newsItem .qp-newsInfo .qp-title {
  color: #3a5265;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: all 0.5s ease-in-out;
}

.qp-newsItem .qp-newsInfo .qp-text {
  line-height: 1.7;
  margin-bottom: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.qp-newsItem .qp-btnBox {
  justify-content: flex-start;
}

.qp-newsItem .qp-btnBox .qp-btn {
  display: flex;
}

.qp-newsItem .qp-btnBox .qp-btn img {
  margin-left: 15px;
  transition: all 0.5s ease-in-out;
}

.qp-newsItem .qp-btnBox .qp-btn:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

@media (min-width: 1181px) {
  .qp-newsItem:hover .qp-newsInfo .qp-title {
    color: #7fc0c1;
  }

  .qp-newsItem:hover .qp-newsImg img {
    scale: 1.1;
  }

  .qp-newsItem .qp-btnBox .qp-btn:hover img {
    transform: translateX(10%) rotate(-45deg);
  }
}

@media (max-width: 1024px) {
  .qp-newsList {
    padding-left: 0;
  }

  .qp-newsItem {
    align-items: flex-start;
  }

  .qp-newsItem .qp-newsInfo .qp-title {
    font-size: 18px;
  }

  .qp-newsItem .qp-newsInfo .qp-text {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .qp-newsBox {
    flex-direction: column-reverse;
  }

  .qp-newsItem {
    flex-wrap: wrap;
  }

  .qp-newsItem:nth-child(even) {
    background-color: transparent;
  }

  .qp-newsItem .qp-dateBox {
    align-items: center;
    display: flex;
    margin-right: 0;
    order: 2; 
  }

  .qp-newsItem .qp-dateBox .qp-year {
    margin-left: 15px;
  }

  .qp-newsItem .qp-newsImg {
    order: 1;
    margin-bottom: 5px;
  }

  .qp-newsItem .qp-newsInfo {
    order: 3;
    width: 100%;
    padding: 10px 0;
  }

  .qp-newsItem .qp-newsInfo .qp-text {
    margin-bottom: 20px;
  }
}

/* -----最新消息內頁----- */
.qp-newsContent {
  flex: 1;
  padding-left: 100px;
}

.qp-newsContent .qp-newsImg {
  width: 100%;
  margin-bottom: 20px;
}

.qp-newsContent .qp-newsImg img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.qp-newsContent .qp-newsTopBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.qp-newsContent .qp-newsTopBox .qp-dateBox {
  align-self: flex-start;
  margin-right: 15px;
  word-break: keep-all;
}

.qp-newsContent .qp-newsTopBox .qp-dateBox .qp-topBox {
  background-color: #7fc0c1;
  font-weight: 700;
  color: #fff;
  text-align: right;
  padding: 5px 10px;
  display: block;
}

.qp-newsContent .qp-newsTopBox .qp-dateBox .qp-year {
  font-size: 18px;
  color: #3a5265;
  font-weight: 700;
  text-align: right;
}

.qp-newsContent .qp-newsTopBox .qp-title {
  font-size: 22px;
  padding: 10px;
  font-weight: 700;
  color: #3a5265;
  border-bottom: 1px solid #7fc0c1;
  margin-right: auto;
}

.qp-newsContent .qp-newsTopBox .qp-viewBox {
  align-items: center;
  display: flex;
  color: #9fa33d;
  font-size: 16px;
  margin-top: 10px;
}

.qp-newsContent .qp-newsTopBox .qp-viewBox .qp-view {
  color: #3a5265;
  font-weight: 700;
}

.qp-newsContent .qp-newsTopBox .qp-viewBox img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.qp-newsContent .qp-btnBox .qp-btn img {
  transition: all 0.5s ease-in-out;
}

@media (max-width: 1024px) {
  .qp-newsContent {
    padding-left: 0;
  }
}

@media (min-width: 1181px) {
  .qp-newsContent .qp-btnBox .qp-btn:hover img {
    transform: translateX(-10%) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .qp-newsContent .qp-newsTopBox {
    flex-wrap: wrap;
  }

  .qp-newsContent .qp-newsTopBox .qp-title {
    order: 3;
  }
}


/* -----聯絡我們----- */
.qp-insContent .qp-contactBlock {
  padding-top: 0;
}

.qp-insContent .qp-contactBlock .qp-topBox {
  display: flex;
  justify-content: center;
}

.qp-insContent .qp-contentBox .qp-topBox .qp-topItem {
  display: flex;
  align-items: center;
  margin: 0 30px;
}

.qp-insContent .qp-contentBox .qp-topBox .qp-topItem .qp-icon {
  margin-right: 10px;
}

.qp-insContent .qp-contentBox .qp-topBox .qp-topItem a {
  text-decoration: none;
  color: inherit;
}

.qp-insContent .qp-googleMap {
  width: 100%;
  margin: 30px auto;
  font-size: 0;
  position: relative;
  z-index: 1;
}

.qp-insContent .qp-googleMap iframe {
  position: relative;
  z-index: 2;
}

.qp-contactFormBox .qp-formBox {
  display: flex;
  width: 100%;
}

.qp-contactFormBox .qp-formBox .qp-leftBox,
.qp-contactFormBox .qp-formBox .qp-rightBox {
  width: 50%;
}

.qp-contactFormBox .qp-formBox .qp-leftBox {
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.qp-contactFormBox {
  padding: 20px;
  background-color: #f7f7f7;
}

.qp-contactFormBox .qp-title {
  color: #3a5265;
  font-size: 35px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 2.8px;
}

.qp-contactFormBox .qp-btnBox {
  text-align: center;
  margin-top: 40px;
}

.qp-contactFormBox .qp-btnBox .qp-btn {
  cursor: pointer;
  padding: 5px 80px;
  font-size: 20px;
  background-color: #7fc0c1;
  color: #fff;
  font-weight: 700;
  border: none;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 640px) {
  .qp-insContent .qp-contentBox .qp-topBox {
    flex-direction: column;
  }

  .qp-insContent .qp-contentBox .qp-topBox .qp-topItem {
    margin: 0 0 10px;
  }

  .qp-insContent .qp-googleMap {
    width: 100%;
    padding: 10px;
  }

  .qp-contactFormBox .qp-formBox {
    flex-direction: column;
  }

  .qp-contactFormBox .qp-formBox .qp-leftBox,
  .qp-contactFormBox .qp-formBox .qp-rightBox {
    width: 100%;
  }

  .qp-contactFormBox .qp-formBox .qp-leftBox {
    padding-right: 0;
  }

  .qp-contactFormBox .qp-formBox {
    margin-left: 0;
    width: 100%;
    padding: 40px 0;
  }

  .qp-contactFormBox .qp-title {
    font-size: 28px;
    letter-spacing: 1.68px;
  }
}

@media (min-width: 1181px) {
  .qp-contactFormBox .qp-btnBox .qp-btn:hover {
    background-color: #fff;
    color: #7fc0c1;
  }
}


/* -----頁碼----- */
.qp-pageList {
  align-items: baseline;
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
  margin-bottom: 0;
  font-family: "微軟正黑體", sans-serif;
}

.qp-pageList li.current a {
  color: #3a5265;
  font-size: 25px;
  position: relative;
}

.qp-pageList li.current a:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #0f502b;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
}

.qp-pageList a {
  color: #9fa33d;
  font-size: 20px;
  font-weight: 700;
  margin: 0 5px;
  letter-spacing: 2.88px;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 1181px) {
  .qp-pageList a:hover {
    color: #3a5265;
  }
}


/* -----頁尾----- */
.qp-footer {
  position: relative;
}

.qp-footer:before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 30%;
  z-index: -1;
  background-color: #d4d4d4;
}

.qp-footer .qp-topBox {
  padding: 30px 0;
}

.qp-footer .qp-wrap {
  /* max-width: 1440px; */
  align-items: center;
  display: flex;
}

.qp-footer .qp-leftBox,
.qp-footer .qp-rightBox {
  display: flex;
  align-items: flex-start;
}

.qp-footer .qp-leftBox .qp-title,
.qp-footer .qp-rightBox .qp-title {
  color: #3a5265;
  font-size: 28px;
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 1px solid #3a5265;
}

.qp-footer .qp-rightBox {
  margin-left: 40px;
}

.qp-footer .qp-sitemap {
  padding-top: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.qp-footer .qp-sitemap li {
  color: #3a5265;
  text-align: center;
  width: calc(100% / 3);
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 1.8px;
}

.qp-footer .qp-sitemap li a {
  text-decoration: none;
  color: inherit;
  transition: all 0.5s ease-in-out;
}

.qp-footer .qp-contactList {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  color: #3a5265;
  letter-spacing: 1.2px;
}

.qp-footer .qp-contactList a {
  margin-bottom: 15px;
  text-decoration: none;
  color: inherit;
  transition: all 0.5s ease-in-out;
}

.qp-footer .qp-contactList .qp-socialList a {
  margin-right: 20px;
  text-decoration: none;
}

.qp-footer .qp-contactList .qp-socialList a img {
  max-width: 100%;
  width: 30px;
  height: auto;
  transition: all 0.5s ease-in-out;
}

.qp-footer .qp-copyright {
  background-color: #3a5265;
  color: #fff;
  font-size: 12px;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 1.2px;
}

@media (max-width: 1024px) {
  .qp-footer:before {
    display: none;
  }

  .qp-footer .qp-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .qp-footer .qp-rightBox {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .qp-footer .qp-sitemap {
    margin-top: 40px;
  }

  .qp-footer .qp-sitemap li {
    margin-bottom: 10px;
  }
}

@media (max-width: 640px) {
  .qp-footer .qp-leftBox,
  .qp-footer .qp-rightBox {
    flex-direction: column;
  }

  .qp-footer .qp-rightBox {
    width: 100%;
  }

  .qp-footer .qp-sitemap {
    padding-top: 0;
    margin-top: 20px;
  }

  .qp-footer .qp-contactList {
    padding-top: 0;
    margin-top: 20px;
    align-items: center;
    width: 100%; 
  }
}

@media (min-width: 1181px) {
  .qp-footer .qp-sitemap li:hover a {
    color: #7fc0c1;
  }

  .qp-footer .qp-contactList a:hover {
    color: #7fc0c1;
  }

  .qp-footer .qp-contactList .qp-socialList a:hover img {
    scale: 0.85;
  }
}


/* -----右邊ICON----- */
.qp-sideBtns {
  position: fixed;
  right: 5%;
  bottom: 5%;
  z-index: 99;
}

@media (max-width: 640px) {
  .qp-sideBtns {
    right: 20px;
    bottom: 100px; 
  }
}

.qp-sideBtns .qp-sideSocial {
  transition: all 0.5s ease-in-out;
}

 .qp-sideBtns .qp-sideSocial.open {
  transform: rotate(180deg);
}

.qp-sideBtns .qp-socialList {
  display: none;
}

.qp-sideBtns .qp-socialList a {
  display: block;
  text-align: center;
  margin: 20px 0;
}

.qp-sideBtns li {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #7fc0c1;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  transition: all 0.5s ease-in-out;
  margin: 10px 0;
}

.qp-sideBtns li img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.qp-sideBtns li.qp-toTop {
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
}

.qp-sideBtns li.qp-show {
  opacity: 1;
  pointer-events: auto;
}

/* --------------------------------------- qp樣式 End  --------------------------------------- */

/*# sourceMappingURL=style.css.map */