@charset "utf-8";
/* CSS Document */

/* 共通 css開始  */
* {
  box-sizing: border-box;
}
:root {
  --main: #7a8c82;
}
html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 100 900; /* 可變字重的範圍，視實際支援範圍調整 */
  src: url("../css/fonts/NotoSansTC-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Urbanist-Light";
  src: url("../css/fonts/Urbanist-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Urbanist-Light", "微軟正黑體";
  line-height: 1.5em;
  margin: 0;
  background-color: #fff;
}

@supports (padding-top: constant(safe-area-inset-top)) {
  body {
    padding: env(safe-area-inset-top) env(safe-area-inset-right)
      env(safe-area-inset-bottom) env(safe-area-inset-left);
  }
}

@media (display-mode: fullscreen) {
  body {
    padding: 0;
    padding-top: 44px;
  }
}

@media (display-mode: standalone) {
  body {
    padding: 0;
  }
}

@supports (padding-top: env(safe-area-inset-top)) {
  body {
    --safe-area-inset-top: env(safe-area-inset-top);
    height: calc(100% + var(--safe-area-inset-top));
  }
}

@media (display-mode: fullscreen) {
  body {
    height: 100%;
  }
}

@media (display-mode: standalone) {
  body {
    height: 100%;
  }
}

label {
  margin-bottom: 0;
}
a {
  text-decoration: none;
  outline: none;
  transition: all 0.3s;
}
a img {
  border: none;
}
img {
  -webkit-user-drag: none;
}
img {
  image-rendering: -moz-crisp-edges; /* Firefox        */
  image-rendering: -o-crisp-edges; /* Opera          */
  image-rendering: -webkit-optimize-contrast; /* Safari         */
  image-rendering: optimize-contrast; /* CSS3 Proposed  */
  -ms-interpolation-mode: nearest-neighbor; /* IE8+           */
}
a:hover,
a:focus {
  text-decoration: none;
}
:focus,
button:focus {
  outline: none;
}
/* Heading styles */
h1,
h2,
h3,
h4,
h5,
h6,
p,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
  padding: 0;
}
/* List style */
ul {
  /* list-style: none; */
  margin-left: 20px;
  padding: 0;
}
/*------------------------------------*\
    Global
\*------------------------------------*/

@media (min-width: 1200px) {
  .container {
    max-width: 1230px;
  }
}
.gs_container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  width: 1530px;
}

@media (max-width: 1640px) {
  .gs_container {
    width: 1140px;
  }
}

@media (max-width: 1199px) {
  .gs_container {
    width: 960px;
  }
}

@media (max-width: 991px) {
  .gs_container {
    width: 720px;
  }
}

@media (max-width: 767px) {
  .gs_container {
    width: 540px;
  }
}

@media (max-width: 575px) {
  .gs_container {
    width: 100%;
  }
}

::-webkit-scrollbar {
  width: 5px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #ddd;
}
::-webkit-scrollbar-thumb {
  background: var(--main);
}
/* ========== 主要按鈕 ========== */
.main_btn {
  /* structure */
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin: 0;
  padding: 10px 14px;
  width: 184px;
  height: 55px;
  /* style */
  font-size: 18px;
  margin-left: auto;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #000;

  outline: none;
  border: 1px solid #000;
  transition: all 0.3s;
}
.main_btn i {
  font-size: 7px;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .main_btn {
    width: 139px;
    height: 41px;
    font-size: 16px;
  }
}
.main_btn:hover {
  color: #fff;
  background-color: #000;
}
/* ========== 圖片比例 ========== */
.outter {
  width: 100%;
}
.image-container {
  width: 100%;
}
.image-container::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}
.image-container.ratio-5-4::before {
  padding-top: 80%;
}
.image-container .image {
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
/* ========== 分頁 ========== */
.gs_pagination {
  width: 100%;
  padding: 10px 0;
  clear: both;
  text-align: center;
  background: none;
  box-shadow: none;
  margin: 0;
  /* margin-top: 50px; */
  /* margin-bottom: 60px; */
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .gs_pagination {
    justify-content: center;
  }
}
@media (max-width: 767px) {
}
.gs_pagination a.pag_btn {
  width: 25px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  border: 1px solid transparent;
  font-size: 18px;
  transition: all 0.2s ease-in-out;
  margin: 0 7px;
}
.gs_pagination strong {
  width: 25px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  border: 1px solid #000;
  background-color: #fff;
  font-size: 18px;
  transition: all 0.2s ease-in-out;
  margin: 0 7px;
  font-weight: normal;
}
.gs_pagination a.pag_btn:hover {
  color: #000;
  border: 1px solid #000;
  background-color: #fff;
}

@media (max-width: 991px) {
  .gs_pagination strong,
  .gs_pagination a.pag_btn {
    font-size: 18px;
  }
}

.gs_pagination a.pag_arrow {
  text-align: center;
  color: #000;
  font-size: 12px;
  margin: 0 15px;
  transition: all 0.5s ease-in-out;
  display: inline-block;
  font-weight: bold;
}
.gs_pagination a.pag_arrow i {
  font-size: 8px;
}
.gs_pagination a.pag_arrow:hover {
  color: #000;
  opacity: 0.7;
}

/* ========== 導航欄漢堡特效 ========== */
.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #000;
  stroke-width: 7;
  stroke-linecap: round;
}
.ham1 .top {
  stroke-dasharray: 40 139;
}
.ham1 .bottom {
  stroke-dasharray: 40 180;
}
.ham1.active .top {
  stroke-dashoffset: -98px;
}
.ham1.active .bottom {
  stroke-dashoffset: -138px;
}
.top_nav_bar {
  display: none;
}
@media (max-width: 991px) {
  .top_nav_bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding-left: 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
  }
  .top_nav_bar.active {
    box-shadow: 0 2px 8px 5px rgba(0, 0, 0, 0.2);
  }
}
.dropdown {
  display: inline-block;
}
.dropdown_control {
  cursor: pointer;
  z-index: 50;
  display: none;
  width: 44px;
}
.dropdown_control.active {
  width: 40px;
}
@media (max-width: 991px) {
  .dropdown_control {
    display: block;
  }
}
/* 行動裝置版選單 */
.head_bar_mobile {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background-color: #fff;
  padding: 45px 0;
  /* box-shadow: inset 0 -5px 20px -5px rgba(0, 0, 0, 0.16); */
  overflow-y: auto;
  overscroll-behavior: none;
  display: none;
}
@media (min-width: 992px) {
  .head_bar_mobile {
    display: none !important;
  }
}
.ham_logo_pic_wrap {
  text-align: center;
}
.nav_item_mobile {
  width: 100%;
  color: #ffffff;
  font-size: 20px;
}

.nav_link_mobile {
  display: block;
  padding: 20px 15px;
  color: #000;
  position: relative;
  font-size: 18px;
}
.nav_item_mobile:last-child .nav_link_mobile {
  border-bottom: none;
}
.nav_link_mobile:hover,
.nav_item_mobile_title.active .nav_link_mobile {
  color: #000;
}
.nav_link_mobile i {
  font-size: 10px;
  color: #000;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.nav_item_mobile_title.active .nav_link_mobile i {
  transform: translateY(-50%) rotate(90deg);
}
.nav_item_classification_mobile_wrap {
  background-color: #f9f9f9;
  /* padding: 0 20px; */
  display: none;
}

.nav_item_classification_mobile_block:last-child
  .nav_item_classification_mobile_link {
  border-bottom: none;
}
.nav_item_classification_mobile_link {
  display: block;
  padding: 20px 0px;
  margin: 0 15px;
  color: #000;
  border-bottom: 1px solid #bcbcbc;
  position: relative;
  font-size: 16px;
}
.nav_item_classification_mobile_link:not([href]) {
  color: #000;
}
.nav_item_classification_mobile_link i {
  font-size: 10px;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.nav_item_classification_mobile.active .nav_item_classification_mobile_link i {
  transform: translateY(-50%) rotate(90deg);
}
.nav_item_classification_mobile:last-child
  .nav_item_classification_mobile_link {
  border-bottom: none;
}
@media (max-width: 991px) {
  .nav_item_classification_mobile_link:not([href]):hover,
  .nav_item_classification_mobile_link:hover {
    color: #000;
  }
}
.nav_item_classification_mobile_2_wrap {
  background-color: var(--main);
  display: none;
}
.nav_item_classification_mobile_2_link {
  display: block;
  color: #fff;
  border-bottom: 1px solid #bcbcbc;
  padding: 20px 0px;
  margin: 0 15px;
  font-size: 16px;
}
.nav_item_classification_mobile_2_link:hover {
  color: #fff;
}
.nav_item_classification_mobile_2:last-child
  .nav_item_classification_mobile_2_link {
  border-bottom: none;
}
/* 行動裝置版icon 按鈕 */
.icon_nav_mobile_wrap {
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.icon_nav_mobile_item {
  min-width: 140px;
}
.icon_nav_mobile_wrap .icon_nav_mobile_item:first-child {
  margin-bottom: 15px;
}
.icon_nav_mobile_link {
  font-size: 20px;
  color: var(--main);
  display: flex;
  align-items: center;
}
.icon_nav_mobile_link i {
  display: inline-block;
  font-size: 30px;
  width: 30px;
  margin: 0 10px;
}
/* HTML 文字編輯器內容 */
.html_ckeditor_content * {
  line-height: 1.6rem;
}
.html_ckeditor_content {
  width: 100%;
  word-break: break-all;
}
.html_ckeditor_content:after {
  content: ""; /* 2. 新增 content，注意需要加上 "" */
  display: block; /* 3. 新增 display，也可以用 table */
  clear: both;
}
.html_ckeditor_content img {
  max-width: 100%;
  height: auto !important;
}
.html_ckeditor_content iframe {
  max-width: 100%;
}
.html_ckeditor_content p {
  z-index: 1;
  margin: 18px 0;
}
.html_ckeditor_content ul,
.html_ckeditor_content ol {
  padding-left: 2rem;
}
/* ========== Banner ========== */
.page_banner {
  position: relative;
  z-index: 2;
}
.page_banner.animation {
  animation-name: ani_fadeIn;
  animation-duration: 2s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
/* 電腦版 */
.page_banner_img {
  width: 100%;
  height: calc(100vw / 1920 * 450);
  object-fit: cover;
}
@media (max-width: 767px) {
  .page_banner_img {
    display: none;
  }
}
/* 手機版 */
.page_banner_img_mobile {
  display: none;
}
@media (max-width: 767px) {
  .page_banner_img_mobile {
    display: block;
    width: 100%;
    height: calc(100vw / 428 * 358);
    object-fit: cover;
  }
}
/* 頁面標題 */
.banner_wrap {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  /* .banner_wrap {
    width: 192px;
    height: 80px;
  } */
}
@media (max-width: 767px) {
  /* .banner_wrap {
    width: 156px;
    height: 65px;
  } */
}
.head_title_decorate {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
  width: 100%;
  max-width: 138px;
}
@media (max-width: 991px) {
  .head_title_decorate {
    max-width: 90px;
  }
}
@media (max-width: 767px) {
  .head_title_decorate {
    max-width: 63px;
  }
}
.banner_title {
  text-align: center;
  font-size: 40px;
  color: #fff;
  margin-bottom: 10px;
}
.banner_title_en {
  font-size: 48px;
  color: #fff;
}
@media (max-width: 991px) {
  .banner_title {
    font-size: 22px;
  }
  .banner_title_en {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .banner_title {
    font-size: 18px;
  }
  .banner_title_en {
    font-size: 20px;
  }
}
/* ===麵包屑=== */
.breadcrumb_wrap {
  padding: 0px 0 71px;
  text-align: right;
  color: #000;
}
.breadcrumb_link {
  font-size: 18px;
  color: #000;
  transition: all 0.3s;
}
.breadcrumb_link:hover,
.breadcrumb_link.active {
  color: var(--main);
}
@media screen and (max-width: 991px) {
  .breadcrumb_wrap {
    padding: 0px 0 45px;
  }
  .breadcrumb_link {
    font-size: 16px;
  }
}
/* ========== 頁面設定 ========== */
.page_wrap {
  padding-top: 20px;
  padding-bottom: 120px;
  position: relative;
  z-index: 0;
  background-color: #fff;
}
.page_line {
  content: "";
  width: 0px;
  height: 25px;
  background-color: var(--main);
  position: absolute;
  top: 182px;
  right: 0;
  transform-origin: right;
  transition: all 0.75s;
}
.page_line.animation {
  width: 256px;
}
@media (max-width: 991px) {
  .page_line {
    width: 0px;
    height: 14px;
    top: 132px;
  }
  .page_line.animation {
    width: 145px;
  }
}
@media (max-width: 767px) {
  .page_wrap {
    padding-top: 15px;
    padding-bottom: 120px;
  }
}

.page_title_block {
  margin-bottom: 85px;
}
.page_title {
  font-size: 24px;
  margin-bottom: 25px;
  color: #464646;
  font-weight: bold;
}
.page_title_en {
  color: #464646;
  font-size: 55px;
}
@media (max-width: 991px) {
  .page_title_block {
    margin-bottom: 45px;
  }
  .page_title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .page_title_en {
    font-size: 28px;
  }
}
.page_title_block.animation {
  animation-name: ani_slideBottom;
  animation-duration: 0.75s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.page_col_2 {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}
@media (max-width: 1200px) {
  .page_col_2 {
    grid-template-columns: 1fr 200px;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .page_col_2 {
    grid-template-columns: 1fr;
    gap: 120px;
  }
}

/* ===其它頁選單=== */
.page_nav_block.animation {
  animation-name: ani_slideBottom;
  animation-duration: 0.75s;
  animation-delay: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.page_nav_list {
  display: flex;
  align-items: center;
  /* flex-wrap: wrap; */
  margin-bottom: 60px;
  background-color: #f9f9f9;
  width: 100%;
  overflow-y: auto;
}
@media (max-width: 991px) {
  .page_nav_list {
    display: none;
  }
}
.page_nav_item {
  position: relative;
}
.page_nav_link {
  flex-shrink: 0;
  display: block;
  padding: 20px 24px;
  height: 67px;
  display: flex;
  align-items: center;
  background-color: transparent;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.page_nav_link:hover::after,
.page_nav_link.active::after {
  display: none;
}
.page_nav_link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  height: 25px;
  width: 1px;
  background-color: #000;
}
.page_nav_link:last-child::after {
  display: none;
}

.page_nav_link:not([href]) {
  color: #000;
}
.page_nav_link i {
  color: #000;
  font-size: 12px;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transition: all 0.3s;
}
.page_nav_link:hover,
.page_nav_link.active {
  background-color: var(--main);
  color: #fff;
}
.page_nav_link:hover i,
.page_nav_link.active i {
  color: #fff;
}
.page_nav_link.active i {
  transform: translateY(-50%) rotate(0deg);
}
.page_nav_link:not([href]):hover {
  color: #fff;
}

.page_nav_text_block {
  text-align: right;
}
.page_nav_text {
  display: inline-block;
  margin-left: auto;
  font-size: 20px;
  color: #777676;
  margin-bottom: 18px;
  transition: all 0.3s;
}
.page_nav_text:hover {
  color: #777676;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .page_nav_text {
    font-size: 16px;
  }
}
.page_nav_list_2_drop {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 4;
  display: none;
}
.page_nav_link_2 {
  background-color: #e8e5e3;
  color: #000;
  height: 52px;
  padding: 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-bottom: 1px solid #8d8d8d;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.page_nav_link_2:last-of-type {
  border-bottom: none;
}
.page_nav_link_2:not([href]) {
  color: #707070;
}
.page_nav_link_2 i {
  font-size: 12px;
}

.page_nav_link_2:hover,
.page_nav_link_2.active {
  color: #fff;
  background-color: #dbc591;
}

.page_nav_list_3_drop {
  position: absolute;
  z-index: 2;
  left: 100%;
  top: 0;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: none;
}

.page_nav_link_3 {
  display: block;
  font-size: 18px;
  padding: 0 20px;
  height: 52px;
  line-height: 52px;
  text-wrap: nowrap;
  color: #000;
}

.page_nav_link_3:hover,
.page_nav_link_3.active {
  color: #fff;
  background-color: #ec938c;
}

/*****************************************************************************/
/*-----------------------------------start-----------------------------------*/
/*****************************************************************************/

/****************************head****************************/
header {
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  header {
  }
}
header.active {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.head_main_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
@media (max-width: 991px) {
  .head_main_wrap {
    justify-content: space-between;
    height: 70px;
  }
}

.head_bottom_wrap {
  padding: 20px 0;
}
@media (max-width: 1199px) {
  .head_bottom_wrap {
    padding: 10px 0;
  }
}
@media (max-width: 991px) {
  .head_bottom_wrap {
    display: none;
  }
}
.header.active .head_bottom_wrap {
  padding: 10px 0;
}
/* head logo */

/* .header.active .head_logo_decorate{
	visibility: hidden;
	opacity: 0;
} */
.head_welcome_link {
}
@media (max-width: 991px) {
  .head_welcome_link {
  }
}
.header.active .head_welcome_link {
  /* margin-top: 10px; */
}

.head_logo_img {
  max-width: 135px;
  width: 100%;
  object-fit: contain;
}
@media (max-width: 1199px) {
  .head_logo_img {
    width: 111px;
  }
}

@media (max-width: 1199px) {
}
/* head選單設定 */
.head_bar_block {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 45px;
}

.head_bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 991px) {
  .head_bar_block {
    position: static;
  }
  .head_bar {
    display: none;
  }
}
.nav_item {
  position: relative;
  transition: all 0.3s;
}

.nav_link {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  padding: 38px 30px 18px;
  color: #000;
  position: relative;
  letter-spacing: 2px;
}
.nav_link i {
  font-size: 10px;
  transform: rotate(90deg);
  color: #000;
}
.nav_link::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 0px;
  background-color: #000;
  transition: all 0.3s;
}
@media (max-width: 1640px) {
  .nav_link {
    padding: 38px 16px 18px;
  }
  .nav_link::after {
    left: 16px;
    right: 16px;
  }
}
@media (max-width: 1199px) {
  .nav_item {
    margin: 0 10px;
  }
  .nav_link {
    font-size: 18px;
    padding: 38px 5px 18px;
  }
  .nav_link::after {
    left: 5px;
    right: 5px;
  }
}
.nav_item:hover .nav_link,
.nav_link.active,
.nav_item:hover .nav_link i,
.nav_link.active i {
  color: var(--main);
}
.nav_item:hover .nav_link::after,
.nav_link.active::after {
  height: 5px;
}

.nav_social_link_wrap {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: 37px;
}
.nav_social_link {
  padding: 40px 0 19px;
  transition: all 0.3s;
}
.nav_social_link i {
  color: #464646;
  font-size: 21px;
}
.nav_social_link:nth-child(3) i {
  font-size: 23.5px;
}
.nav_social_link:hover {
  opacity: 0.7;
}
@media (max-width: 1640px) {
  .nav_social_link_wrap {
    margin-left: 40px;
  }
}
@media (max-width: 1200px) {
  .nav_social_link_wrap {
    margin-left: 16px;
    gap: 8px;
  }
}
@media (max-width: 991px) {
  .nav_social_link_wrap {
    gap: 27px;
    margin-left: 0;
    padding: 50px 15px;
  }
  .nav_social_link {
    padding: 0;
  }
}
/* 電腦版下拉選單 */
.nav_item:hover .nav_item_classification_wrap {
  pointer-events: all;
  opacity: 1;
}
.nav_item_classification_wrap {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.nav_item_classification {
  position: relative;
  border-bottom: 1px solid #bcbcbc;
}
.nav_item_classification:last-child {
  border-bottom: none;
}
.nav_item_classification_link {
  display: block;
  font-size: 18px;
  padding: 18px 40px 18px 20px;
  background-color: var(--main);
  color: #fff;
  /* word-break: break-all; */
  white-space: nowrap;
  position: relative;
  width: 100%;
}
.nav_item_classification_link:not([href]) {
  color: #fff;
}
.nav_item_classification_link i {
  font-size: 10px;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.nav_item_classification:hover .nav_item_classification_link,
.nav_item_classification_link:hover {
  background-color: #f9f9f9;
  color: #000;
}
.nav_item_classification:hover .nav_item_classification_link i,
.nav_item_classification_link:hover i {
  color: #000;
}
.nav_item_classification:hover .nav_item_classification_2_wrap {
  opacity: 1;
  z-index: 1;
}
.nav_item_classification_2_wrap {
  position: absolute;
  top: 0;
  left: 100%;
  /* width: 100%; */
  opacity: 0;
  z-index: -1;
  max-height: 500px;
  overflow: auto;
}
.nav_item_classification_2 {
  border-bottom: 1px solid #bcbcbc;
}
.nav_item_classification_2:last-child {
  border-bottom: none;
}
.nav_item_classification_2_link {
  display: block;
  font-size: 18px;
  padding: 18px 22px;
  background-color: #f9f9f9;
  color: #424242;
  white-space: nowrap;
  /* word-break: break-all; */
}
.nav_item_classification_2_link:hover {
  background-color: var(--main);
  color: #fff;
}
.nav_item_classification_2_link:hover {
}

/* hover 選單 */
.nav_hover_wrap {
  visibility: hidden;
  position: absolute;
  top: 104px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border-radius: 5px;
  width: 160%;
  border: 5px solid #8bbed1;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
}
@media (max-width: 1199px) {
  .nav_hover_wrap {
    top: 84px;
    width: 170%;
  }
}
.nav_hover_link {
  font-size: 18px;
  display: block;
  padding: 0 10px;
  text-align: center;
  color: var(--main);
}
.nav_hover_text {
  display: block;
  padding: 12px;
  border-bottom: 1px solid #a5a5a5;
}
.nav_hover_link:last-child .nav_hover_text {
  border-bottom: 0;
}
.nav_hover_link:hover {
  background-color: #1a80a7;
  color: #ffffff;
}
#has_hover:hover .nav_hover_wrap {
  visibility: visible;
  opacity: 1;
}
/* head icon 按鈕 */
.icon_nav_link {
  font-size: 30px;
  color: var(--main);
  margin-left: 15px;
}
.icon_nav_link:hover {
  color: #8bbed1;
}
.cart_count {
  text-align: center;
  position: absolute;
  top: -7px;
  right: 0;
  width: 23px;
  height: 23px;
  line-height: 23px;
  font-size: 16px;
  border-radius: 50%;
  background-color: #bc1f21;
  color: #ffffff;
  z-index: 1;
}
/* 上方空白區塊(撐高用) */
.head_top_block {
  height: 80px;
}

@media (max-width: 991px) {
  .head_top_block {
    height: 70px;
  }
}
/* 語系按鈕 */
.nav_lang_item {
  position: relative;
  padding: 4px 25px;
}
@media (max-width: 1640px) {
  .nav_lang_item {
    padding: 4px 16px;
  }
}
@media (max-width: 1199px) {
  .nav_lang_item {
    padding: 4px 8px;
  }
}
@media (max-width: 1199px) {
  .nav_lang_item {
    padding: 4px 25px;
  }
}
.nav_lang_item_text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #595757;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s;
}
.nav_lang_item_text:hover {
  color: var(--main);
}
.nav_lang_item i {
  font-size: 12px;
}
.nav_lang_drop_item {
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  z-index: 20;
  background-color: var(--main);
  text-align: center;
  display: none;
}
.nav_lang_drop_item_link {
  display: block;
  color: #000;
  border-bottom: 1px solid #fff;
  padding: 8px 4px;
  transition: all 0.3s;
}
.nav_lang_drop_item_link:last-child {
  border-bottom: none;
}
.nav_lang_drop_item_link:hover {
  color: #fff;
}
/****************************head****************************/

/***************************welcome**************************/
/* ===== 首頁輪播 ===== */
#main_slider_section {
  position: relative;
  z-index: 10;
  margin-bottom: 54px;
}
#main_slider_section_mobile {
  display: none;
  position: relative;
  z-index: 10;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  #main_slider_section {
    display: none;
  }
  #main_slider_section_mobile {
    display: block;
  }
}

/* 電腦版圖片 */
.main_slider_img {
  width: 100%;
  height: calc(100vw / 1920 * 998);
  object-fit: cover;
  transform: scale(1.5);
  transition: all 1.5s;
}
.main_slider_item.active .main_slider_img {
  transform: scale(1);
}
/* 手機版圖片 */
.main_slider_img_mobile {
  width: 100%;
  height: calc(100vw / 428 * 753);
  object-fit: cover;
}
/* 輪播點點設定 */
.main_slider .slick-dots {
  display: flex !important;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 1px;
  /* position: static; */
  width: auto;
  right: 40px;
  bottom: 16%;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .main_slider .slick-dots {
    padding-top: 10px;
    flex-direction: row;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    gap: 4px;
  }
}

.main_slider .slick-dots li {
  margin: 5px;
  width: 12px;
  height: 12px;
}
.main_slider .slick-dots li button {
  width: 12px;
  height: 12px;
}
.main_slider .slick-dots li button:before {
  width: 12px;
  height: 12px;
  font-size: 12px;
  color: #fff;
  transition: all 0.3s;
  opacity: 1;
}
.main_slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.main_slider .slick-dots li.slick-active button:before,
.main_slider .slick-dots li:hover button:before {
  color: var(--main);
}
@media (max-width: 767px) {
  .main_slider .slick-dots li button:before {
  }
}

/* 首頁標題設定 */
.welcome_title_wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 65px;
}

@media (max-width: 991px) {
  .welcome_title_wrap {
    display: block;
    margin-bottom: 30px;
  }
}

.welcome_title_zh {
  font-size: 35px;
  margin-bottom: 40px;
  color: #464646;
  line-height: 1;
  font-weight: bold;
  font-family: "Noto Sans TC";
}
@media (max-width: 767px) {
  .welcome_title_block {
    gap: 5px;
  }
  .welcome_title_zh {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .welcome_title_pic_wrap img {
    width: 27px;
    height: 30px;
  }
}
.welcome_title_en {
  white-space: nowrap;
  font-weight: lighter;
  font-size: 65px;
  color: #464646;
  line-height: 1;
  /* letter-spacing: 4px; */
}
@media (max-width: 1640px) {
  .welcome_title_en {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .welcome_title_en {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .welcome_title_en {
    font-size: 30px;
    /* letter-spacing: normal; */
  }
}
.welcome_subtitle {
  font-size: 24px;
  position: relative;
  padding-left: 30px;
  line-height: 1;
}
@media (max-width: 1200px) {
  .welcome_subtitle {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .welcome_subtitle {
    font-size: 14px;
    padding-left: 14px;
  }
}
.welcome_subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(120deg);
  width: 22px;
  height: 4px;
  background-color: var(--main);
}
@media (max-width: 991px) {
  .welcome_subtitle::before {
    width: 13px;
    height: 2px;
  }
}

/* ========== 首頁服務介紹 ========== */
.welcome_service_section {
  padding: 114px 0 225px;
  position: relative;
  z-index: 5;
}
.welcome_service_top_line {
  /* content: ""; */
  width: 0px;
  height: 25px;
  background-color: var(--main);
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: right;
  transition: all 0.75s;
}
.welcome_service_bottom_line {
  /* content: ""; */
  width: 0;
  height: 25px;
  background-color: var(--main);
  position: absolute;
  bottom: 85px;
  left: 0;
  transition: all 0.75s;
}
.welcome_service_top_line.animation,
.welcome_service_bottom_line.animation {
  width: 256px;
}
.welcome_service_section .welcome_title_wrap.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

@media (max-width: 991px) {
  .welcome_service_section {
    padding: 60px 0 104px;
  }
  .welcome_service_top_line {
    width: 0px;
    height: 14px;
  }
  .welcome_service_bottom_line {
    width: 0px;
    height: 14px;
    bottom: 45px;
  }
  .welcome_service_top_line.animation,
  .welcome_service_bottom_line.animation {
    width: 145px;
  }
  /* .welcome_service_section .welcome_title_wrap.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  } */
}
.welcome_service_list {
  position: relative;
  margin-bottom: 96px;
}
.welcome_service_list .slick-track {
  display: flex;
}
.welcome_service_item {
  position: relative;
  margin: 0 25px;
}
@media (max-width: 991px) {
  .welcome_service_list {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .welcome_service_list .slick-list {
    padding-right: 60px;
  }
  .welcome_service_item {
    margin: 0 25px 0 15px;
  }
}
@media (max-width: 575px) {
  .welcome_service_list {
    margin-bottom: 0;
  }
}
.welcome_service_list.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  /* .welcome_service_list.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  } */
}
.welcome_service_item_img_wrap {
  position: relative;
  overflow: hidden;
}

.welcome_service_item_img_wrap img {
  margin-top: auto;
  width: 100%;
  aspect-ratio: 0.66096;
  object-fit: cover;
  vertical-align: bottom;
  transform-origin: bottom;
  transition: all 0.75s;
}
.welcome_service_item:hover .welcome_service_item_img_wrap img {
  transform: scale(1.1);
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
  .welcome_service_item_img_wrap {
    margin-bottom: 15px;
  }
}
.welcome_service_item:hover .welcome_service_item_content {
  opacity: 1;
}
.welcome_service_item_content {
  position: absolute;
  inset: 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 48px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.75s;
}
.welcome_service_item_content::before {
  content: "";
  position: absolute;
  left: 22px;
  bottom: 25px;
  width: 55px; /* 底邊線長度 */
  height: 55px; /* 左邊線長度 */
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.welcome_service_item_content::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 25px;
  width: 55px; /* 底邊線長度 */
  height: 55px; /* 左邊線長度 */
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
}
.welcome_service_item_title {
  font-size: 22px;
  margin-bottom: 30px;
  color: #fff;
  position: relative;
  transition: all 0.3s;
  /* display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden; */
}
.welcome_service_item.slick-center .welcome_service_item_title {
  opacity: 1;
}
.welcome_service_item_title::before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  background-color: #fff;
  transform-origin: center;
  transition: all 0.75s;
}
.welcome_service_item:hover .welcome_service_item_title::before {
  width: 50px;
}
.welcome_service_item_intro {
  font-size: 18px;
  color: #fff;
}
@media (max-width: 767px) {
  .welcome_service_item_content {
    position: static;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    opacity: 1;
    background-color: unset;
  }
  .welcome_service_item_content::before,
  .welcome_service_item_content::after {
    display: none;
  }
  .welcome_service_item_title {
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-family: "Noto Sans TC";
    font-size: 20px;
    margin-bottom: 15px;
    color: #000;
  }
  .welcome_service_item_title::before {
    display: none;
  }
  .welcome_service_item_intro {
    font-size: 16px;
    color: #000;
    text-align: center;
    margin: 0 auto;
  }
}

.welcome_service_btn_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.welcome_service_list_prev {
  color: #000;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
}
.welcome_service_list_next {
  color: #000;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
}
.welcome_service_list_prev i,
.welcome_service_list_next i {
  font-size: 12px;
}
.welcome_service_list_prev:hover {
  transform: translateX(-5px);
}
.welcome_service_list_next:hover {
  transform: translateX(5px);
}
@media (max-width: 575px) {
  .welcome_service_btn_wrap {
    display: none;
  }
}

.welcome_service_section .welcome_service_btn_wrap.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  /* .welcome_service_section .welcome_service_btn_wrap.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  } */
}

/* ========== 首頁精選作品 ========== */
.welcome_works_section {
  padding: 196px 0 232px;
  position: relative;
  z-index: 5;
  background-color: #f7f7f7;
}
.welcome_works_section .welcome_title_wrap {
  margin-bottom: 128px;
}
.welcome_works_section .welcome_title_wrap.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

@media (max-width: 991px) {
  .welcome_works_section {
    padding: 45px 0;
  }
  .welcome_works_section .welcome_title_wrap {
    margin-bottom: 36px;
  }
  /* .welcome_works_section .welcome_title_wrap.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  } */
}
.welcome_works_list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 270px;
  row-gap: 100px;
}

.welcome_works_item {
  position: relative;
}
.welcome_works_item:nth-child(even) {
  padding-top: 100px;
}
@media (max-width: 1640px) {
  .welcome_works_list {
    column-gap: 200px;
    row-gap: 50px;
  }
}
@media (max-width: 1200px) {
  .welcome_works_list {
    column-gap: 100px;
    row-gap: 25px;
  }
}
@media (max-width: 991px) {
  .welcome_works_list {
  }
}
@media (max-width: 767px) {
  .welcome_works_list {
    column-gap: 50px;
    row-gap: 0px;
  }
  .welcome_works_item:nth-child(even) {
    padding-top: 30px;
  }
}
@media (max-width: 575px) {
  .welcome_works_list {
    grid-template-columns: 1fr;
    row-gap: 25px;
  }
  .welcome_works_item:nth-child(even) {
    padding-top: 0px;
  }
}

.welcome_works_item.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  /* .welcome_works_item.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  } */
}
.welcome_works_item_img_wrap {
  position: relative;
  overflow: hidden;
}
.welcome_works_item_img_wrap::after {
  content: "";
  position: absolute;
  inset: 0 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.75s;
}
.welcome_works_item_img_wrap img {
  width: 100%;
  height: 100%;
  aspect-ratio: 0.66728;
  object-fit: cover;
  transition: all 0.75s;
}
.welcome_works_item:hover .welcome_works_item_img_wrap::after {
  opacity: 1;
}
.welcome_works_item:hover .welcome_works_item_img_wrap img {
  transform: scale(1.1);
}

/* ========首頁最新消息======= */
.welcome_news_section {
  padding: 146px 0 135px;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
.welcome_news_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 47%;
  background-color: #96a29b;
}
@media (max-width: 991px) {
  .welcome_news_section {
    padding: 45px 0 45px;
  }
  .welcome_news_section .welcome_title_wrap {
    margin-bottom: 33px;
  }
}
.welcome_news_section .welcome_title_zh {
  color: #fff;
}
.welcome_news_section .welcome_title_en {
  color: #fff;
}
.welcome_news_section .welcome_subtitle {
  color: #fff;
}
.welcome_news_section .welcome_subtitle::before {
  background-color: #fff;
}
.welcome_news_section .welcome_title_wrap.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  /* .welcome_news_section .welcome_title_wrap.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  } */
}
.welcome_news_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: 28px;
  margin-bottom: 75px;
}

@media (max-width: 1400px) {
  .welcome_news_list {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .welcome_news_list {
    display: none;
  }
}
.welcome_news_list.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  /* .welcome_news_list.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  } */
}
.welcome_news_item_img_wrap {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
}

.welcome_news_item_img_wrap img {
  width: 100%;
  aspect-ratio: 0.7888888;
  object-fit: cover;
  transition: all 0.75s;
}
.welcome_news_item_block:hover .welcome_news_item_img_wrap img {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .welcome_news_item_img_wrap {
    margin-bottom: 14px;
  }
}
.welcome_news_item_nav_block {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #717171;
}
.welcome_news_item_nav {
}
.welcome_news_item_nav span {
  position: relative;
}
.welcome_news_item_nav span::after {
  content: "";
  width: 16px;
  height: 1px;
  background-color: #3e3a3a;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 4px;
}

.welcome_news_item_title {
  font-size: 22px;
  margin-bottom: 12px;
  font-family: "Noto Sans TC";
  color: #464646;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
  font-weight: bold;
}
.welcome_news_item_intro {
  margin-bottom: 12px;
  color: #000;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}
@media (max-width: 767px) {
  .welcome_news_item_title {
    font-size: 20px;
  }
  .welcome_news_item_intro {
    font-size: 14px;
  }
}
.welcome_news_item_tag_block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.welcome_news_item_tag {
  color: var(--main);
  transition: all 0.3s;
}
.welcome_news_item_tag:hover {
  color: var(--main);
  opacity: 0.7;
}

.welcome_news_list_mobile {
  display: none;
}

@media (max-width: 991px) {
  .welcome_news_list_mobile {
    display: block;
    margin-bottom: 52px;
  }
  .welcome_news_list_mobile .slick-list {
    padding-right: 160px;
  }
  .welcome_news_item {
    margin: 0 11px 0 15px;
  }
}
@media (max-width: 575px) {
  .welcome_news_list_mobile .slick-list {
    padding-right: 60px;
  }
}
.welcome_news_section .welcome_news_btn_wrap.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  /* .welcome_news_section .welcome_news_btn_wrap.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  } */
}

/* ========首頁底部圖片======= */
.welcome_bottom_img {
  width: 100%;
  height: calc(100vw / 1920 * 438);
  object-fit: cover;
}
.welcome_bottom_mobile_img {
  display: none;
}
@media (max-width: 767px) {
  .welcome_bottom_img {
    display: none;
  }
  .welcome_bottom_mobile_img {
    display: block;
    width: 100%;
    height: calc(100vw / 428 * 420);
    object-fit: cover;
  }
}
.welcome_bottom_section.animation {
  animation-name: ani_fadeIn;
  animation-duration: 1.5s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
/***************************welcome**************************/

/***************************關於我們**************************/
#about_section {
  padding-top: 21px;
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  #about_section {
    padding-top: 15px;
    padding-bottom: 120px;
  }
}
.about_banner {
  position: relative;
  z-index: 2;
}
/* 電腦版 */
.about_banner_img {
  width: 100%;
  height: calc(100vw / 1920 * 1080);
  object-fit: cover;
}
@media (max-width: 767px) {
  .about_banner_img {
    display: none;
  }
}
/* 手機版 */
.about_banner_img_mobile {
  display: none;
}
@media (max-width: 767px) {
  .about_banner_img_mobile {
    display: block;
    width: 100%;
    height: calc(100vw / 428 * 752);
    object-fit: cover;
  }
}

.about_banner .gs_container {
  position: absolute;
  inset: 0 0;
}

/* 頁面標題 */
.about_banner_wrap {
  position: absolute;
  top: 50%;
  /* left: 36%; */
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 980px;
}
.about_banner_block {
  padding: 57px 150px 77px 160px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1640px) {
  .about_banner_wrap {
    max-width: 800px;
  }
  .about_banner_block {
    padding: 57px 100px 77px 110px;
  }
}
@media (max-width: 1420px) {
  .about_banner_wrap {
    max-width: 600px;
  }
  .about_banner_block {
    padding: 40px 70px 50px 80px;
  }
}
@media (max-width: 1200px) {
  .about_banner_block {
    padding: 30px 40px 40px 50px;
  }
}
@media (max-width: 991px) {
  .about_banner_wrap {
  }
}
@media (max-width: 767px) {
  .about_banner_wrap {
    max-width: 288px;
    right: 0;
    top: 45%;
  }
  .about_banner_block {
    padding: 50px 12px 42px 20px;
  }
}

.about_banner_block.animation {
  animation-name: ani_slideLeft;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.about_banner_content.animation {
  animation-name: ani_fadeIn;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.about_banner_title_en {
  font-size: 55px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 70px;
  text-align: center;
}
.about_banner_intro {
  font-size: 30px;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  overflow: auto;
  max-height: 528px;
}
@media (max-width: 1640px) {
  .about_banner_intro {
    font-size: 28px;
    max-height: 400px;
  }
}
@media (max-width: 1420px) {
  .about_banner_title_en {
    margin-bottom: 40px;
    font-size: 42px;
  }
  .about_banner_intro {
    font-size: 24px;
  }
}
@media (max-width: 1200px) {
  .about_banner_title_en {
    margin-bottom: 40px;
    font-size: 32px;
  }
  .about_banner_intro {
    font-size: 18px;
    max-height: 300px;
  }
}
@media (max-width: 991px) {
  .about_banner_title_en {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .about_banner_title_en {
    font-size: 28px;
  }
  .about_banner_intro {
    font-size: 16px;
    max-height: 390px;
  }
}

/* 關於我們上方區塊 */
.about_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 106px;
  margin-bottom: 234px;
}
@media (max-width: 1200px) {
  .about_list {
    gap: 45px;
  }
}
@media (max-width: 991px) {
  .about_list {
    margin-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .about_list {
    grid-template-columns: 1fr;
  }
}
.about_item_img_wrap {
  margin-bottom: 32px;
  overflow: hidden;
}
.about_item_img_wrap img {
  width: 100%;
  aspect-ratio: 0.67;
  object-fit: cover;
  transition: all 0.75s;
}
.about_item:hover .about_item_img_wrap img {
  transform: scale(1.1);
}
.about_item_title {
  font-size: 28px;
  margin-bottom: 28px;
  color: #464646;
  font-weight: bold;
  font-family: "Noto Sans TC";
}
.about_item_intro {
  font-size: 22px;
  line-height: 1.75;
  max-height: 120px;
  overflow-y: auto;
}
@media (max-width: 991px) {
  .about_item_img_wrap {
    margin-bottom: 15px;
  }
  .about_item_title {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .about_item_intro {
    font-size: 16px;
    max-height: 100%;
  }
}
.about_item_content.animation,
.about_service_item_content.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
/* 關於我們下方區塊 */
.about_service_list {
}
.about_service_item {
  display: grid;
  grid-template-columns: 0.672fr 0.328fr;
  align-items: center;
  gap: 43px;
  margin-bottom: 200px;
}
.about_service_item:last-child {
  margin-bottom: 80px;
}
.about_service_item:nth-child(even) {
  grid-template-columns: 0.328fr 0.672fr;
}
.about_service_item:nth-child(even) .about_service_item_content {
  order: -1;
}
@media (max-width: 991px) {
  .about_service_item {
    gap: 20px;
    margin-bottom: 45px;
  }
  .about_service_item:last-child {
    margin-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .about_service_item {
    display: block;
  }
}
.about_service_item_img_wrap {
  overflow: hidden;
}
.about_service_item_img_wrap img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
  transition: all 0.75s;
}
.about_service_item:hover .about_service_item_img_wrap img {
  transform: scale(1.1);
}
.about_service_item_title {
  font-size: 28px;
  margin-bottom: 52px;
  color: #464646;
  font-weight: bold;
  font-family: "Noto Sans TC";
}
.about_service_item_intro {
  font-size: 22px;
  line-height: 1.75;
  max-height: 200px;
  overflow-y: auto;
}
@media (max-width: 991px) {
  .about_service_item_img_wrap {
    margin-bottom: 15px;
  }
  .about_service_item_title {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .about_service_item_intro {
    font-size: 16px;
    max-height: 100%;
  }
}

/***************************關於我們**************************/
/***************************方案介紹-列表**************************/
.program_banner {
  position: relative;
  z-index: 2;
}
.program_banner.animation {
  animation-name: ani_fadeIn;
  animation-duration: 2s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
/* 電腦版 */
.program_banner_img {
  width: 100%;
  height: calc(100vw / 1920 * 998);
  object-fit: cover;
}
@media (max-width: 767px) {
  .program_banner_img {
    display: none;
  }
}
/* 手機版 */
.program_banner_img_mobile {
  display: none;
}
@media (max-width: 767px) {
  .program_banner_img_mobile {
    display: block;
    width: 100%;
    height: calc(100vw / 428 * 358);
    object-fit: cover;
  }
}

.program_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 95px;
  row-gap: 65px;
  margin-bottom: 120px;
}
@media (max-width: 1200px) {
  .program_list {
    column-gap: 65px;
    row-gap: 45px;
  }
}
@media (max-width: 991px) {
  .program_list {
    margin-bottom: 85px;
  }
}
@media (max-width: 767px) {
  .program_list {
    grid-template-columns: 1fr;
  }
}
.program_item.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.program_item {
  color: #000;
  transition: all 0.3s;
}
.program_item:hover {
  color: var(--main);
}
.program_item:nth-child(2n + 1):not(:first-child) {
  margin-top: -147px;
}
.program_item:nth-child(2) {
  margin-top: 147px;
}
@media (max-width: 1200px) {
  .program_item:nth-child(2n + 1):not(:first-child) {
    margin-top: -80px;
  }
  .program_item:nth-child(2) {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .program_item:nth-child(2n + 1):not(:first-child) {
    margin-top: 0px;
  }
  .program_item:nth-child(2) {
    margin-top: 0px;
  }
}
.program_item_img_wrap {
  margin-bottom: 28px;
  overflow: hidden;
}
.program_item_img_wrap img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  transition: all 0.75s;
}
.program_item:hover .program_item_img_wrap img {
  transform: scale(1.1);
}
.program_item_title {
  font-size: 28px;
  margin-bottom: 28px;
  font-weight: bold;
  font-family: "Noto Sans TC";
  color: #464646;
}
.program_item_intro {
  font-size: 22px;
  line-height: 1.75;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}
@media (max-width: 991px) {
  .program_item_img_wrap {
    margin-bottom: 15px;
  }
  .program_item_title {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .program_item_intro {
    font-size: 16px;
    display: block;
  }
}
/***************************方案介紹-列表**************************/
/***************************方案介紹-內頁**************************/
#program_section {
  padding: 20px 0 0;
}
@media (max-width: 767px) {
  #program_section {
    padding: 15px 0 0;
  }
}
.program_html_ckeditor_content {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .program_html_ckeditor_content {
    padding-bottom: 45px;
  }
}
.program_introduction_list {
  margin: 0px 0 12px;
}

.program_introduction_item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 120px;
}

@media (max-width: 767px) {
  .program_introduction_list {
    margin: 45px 0 120px;
  }
  .program_introduction_item {
    grid-template-columns: 1fr;
    margin-bottom: 45px;
  }
  .program_introduction_item:last-child {
    margin-bottom: 0;
  }
}
.program_introduction_item_img_wrap {
  margin-bottom: 28px;
  overflow: hidden;
}
.program_introduction_item_img_wrap img {
  width: 100%;
  aspect-ratio: 0.7895;
  object-fit: cover;
  transition: all 0.75s;
}
.program_introduction_item:hover .program_introduction_item_img_wrap img {
  transform: scale(1.1);
}
.program_introduction_item_content {
  margin-left: 115px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #212529;
}
.program_introduction_item_title {
  font-size: 45px;
  margin-bottom: 28px;
  line-height: 1.6;
  color: #464646;
  font-weight: bold;
  font-family: "Noto Sans TC";
}
.program_introduction_item_price {
  font-size: 45px;
  margin-bottom: 80px;
  color: #464646;
  font-weight: bold;
  font-family: "Noto Sans TC";
}
@media (max-width: 1200px) {
  .program_introduction_item_content {
    margin-left: 60px;
  }
}
@media (max-width: 991px) {
  .program_introduction_item_img_wrap {
    margin-bottom: 15px;
  }
  .program_introduction_item_title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .program_introduction_item_price {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .program_introduction_item_content {
    display: block;
    margin-left: 0;
  }
}
.program_introduction_item_img_wrap.animation {
  animation-name: ani_fadeIn;
  animation-duration: 1.5s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.program_introduction_item_content.animation {
  animation-name: ani_slideRight;
  animation-duration: 1.5s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
/* 方案介紹qa */
.page_qa_wrap {
  padding: 85px 0 159px;
  background-color: #f7f7f7;
}
.page_qa_title {
  text-align: center;
  font-size: 55px;
  margin-bottom: 108px;
  line-height: 1;
}
@media (max-width: 991px) {
  .page_qa_wrap {
    padding: 45px 0 85px;
  }
  .page_qa_title {
    font-size: 28px;
    margin-bottom: 45px;
  }
}
.page_qa_block {
  display: grid;
  grid-template-columns: 0.439fr 0.561fr;
  gap: 77px;
}
.page_qa_img_wrap {
  overflow: hidden;
}
.page_qa_img_wrap img {
  width: 100%;
  aspect-ratio: 0.9585;
  object-fit: cover;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.75s;
}
.page_qa_img_wrap:hover img {
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .page_qa_block {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .page_qa_block {
    grid-template-columns: 1fr;
  }
}
.page_qa_list {
  /* background-color: #fff; */
}
.page_qa_item_q_block {
  background-color: #f7f7f7;
  padding: 34px 36px 35px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dbdbdb;
  border-radius: 3px;
  cursor: pointer;
}
.page_qa_item_q_block:hover,
.page_qa_item_q_block.active {
  background-color: var(--main);
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.page_qa_item_q_block.active {
  padding: 28px 36px 35px 17px;
}
.page_qa_item_q span {
  display: inline-block;
  font-size: 22px;
  margin-right: 10px;
}
.page_qa_item_q {
  font-size: 20px;
}
.page_qa_item_q_block.active .page_qa_item_q {
  font-size: 24px;
}
.page_qa_item_q_block i {
  font-size: 18px;
  transition: all 0.3s;
}
.page_qa_item_q_block:hover i,
.page_qa_item_q_block.active i {
  transform: rotate(90deg);
}
.page_qa_item_a {
  padding: 16px 76px 48px 78px;
  background-color: #fff;
  display: none;
}
@media (max-width: 991px) {
  .page_qa_item_q_block {
    padding: 34px 32px 34px 13px;
  }
  .page_qa_item_q_block.active {
    padding: 24px 32px 24px 13px;
  }
  .page_qa_item_q span {
    font-size: 20px;
  }
  .page_qa_item_q {
    font-size: 18px;
  }
  .page_qa_item_q_block.active .page_qa_item_q {
    font-size: 18px;
  }
  .page_qa_item_a {
    padding: 16px 40px 32px 64px;
  }
}
.page_qa_wrap.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.page_qa_item.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
/* 方案介紹-預約服務 */

.program_service_wrap {
  position: relative;

  margin-bottom: 120px;
}
.program_service_wrap::before {
  content: "";
  background-color: var(--main);
  position: absolute;
  top: 0;
  bottom: 102px;
  left: 0;
  width: 100%;
  z-index: 0;
}
@media (max-width: 1640px) {
  .program_service_wrap::before {
    bottom: 80px;
  }
}
@media (max-width: 1200px) {
  .program_service_wrap::before {
    bottom: 59px;
  }
}
@media (max-width: 991px) {
  .program_service_wrap {
    padding-top: 50px;
  }
  .program_service_wrap::before {
    bottom: 20%;
  }
}
.program_service_wrap .page_title_block {
  margin-bottom: 60px;
}
.program_service_wrap .page_title {
  margin-bottom: 18px;
}
@media (max-width: 1200px) {
  .program_service_wrap .page_title_block {
    margin-bottom: 45px;
  }
  .program_service_wrap .page_title {
    margin-bottom: 8px;
  }
}

.program_service_block {
  display: flex;
  align-items: center;
  position: relative;
  top: -39px;
}
@media (max-width: 1200px) {
  .program_service_block {
    display: flex;
    align-items: center;
    position: relative;
    top: -20px;
  }
}
@media (max-width: 991px) {
  .program_service_block {
    display: block;
    top: 0px;
  }
}

.program_service_content {
  width: 46%;
  color: #fff;
  padding-right: 8px;
}
.program_service_block .page_title,
.program_service_block .page_title_en {
  color: #fff;
}
.program_service_content_intro {
  max-width: 520px;
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 20px;
  height: 140px;
  overflow: auto;
}
.program_service_content_btn_wrap .main_btn {
  color: #fff;
  border-color: #fff;
  margin: 0 auto 0 0;
}
.program_service_content_btn_wrap .main_btn i {
  color: #fff;
}
.program_service_content_btn_wrap .main_btn:hover {
  background-color: #fff;
  color: var(--main);
}
.program_service_content_btn_wrap .main_btn:hover i {
  color: var(--main);
}
@media (max-width: 1200px) {
  .program_service_content {
    padding-bottom: 10px;
  }
  .program_service_content_intro {
    height: 100px;
  }
  .program_service_content_intro {
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .program_service_content {
    padding-bottom: 0;
    margin-bottom: 45px;
    width: 100%;
  }
  .program_service_content_intro {
    max-width: 100%;
    height: 100%;
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .program_service_content_intro {
    font-size: 16px;
    margin-bottom: 45px;
  }
}

.program_service_slick {
  width: 54%;
  z-index: 1;
}
.program_service_slick_img_wrap {
  overflow: hidden;
}
.program_service_slick_img_wrap img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1.3111;
  transition: all 0.75s;
}
.program_service_slick_img_wrap:hover img {
  transform: scale(1.1);
}
.program_service_slick .slick-dots {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  position: static;
  padding-top: 8px;
  padding-bottom: 4px;
}
.program_service_slick .slick-dots li {
  margin: 0;
  width: 12px;
  height: 12px;
}
.program_service_slick .slick-dots li button {
  width: 12px;
  height: 12px;
}
.program_service_slick .slick-dots li button:before {
  width: 12px;
  height: 12px;
  font-size: 12px;
  color: #d9d9d9;
  transition: all 0.3s;
  opacity: 1;
}
.program_service_slick.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.program_service_slick .slick-dots li.slick-active button:before,
.program_service_slick .slick-dots li:hover button:before {
  color: var(--main);
}
@media (max-width: 991px) {
  .program_service_slick {
    width: 100%;
  }
  .program_service_slick .slick-dots {
    justify-content: center;
  }
}

.program_service_wrap.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
/* 方案介紹-選單 */
.program_nav_wrap {
  background-color: #f7f7f7;
  overflow-x: auto;
}
.program_nav_list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.program_nav_item {
  flex-shrink: 0;
  padding: 35px 0;
  color: #000;
}
.program_nav_item:hover {
  color: var(--main);
}
@media (max-width: 767px) {
  .program_nav_list {
    padding: 0 16px;
  }
}
/***************************方案介紹-內頁**************************/

/***************************作品專區-列表**************************/
.portfolio_list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 96px;
  row-gap: 65px;
  margin-bottom: 85px;
}

@media (max-width: 1200px) {
  .portfolio_list {
    column-gap: 66px;
    row-gap: 45px;
  }
}
@media (max-width: 991px) {
  .portfolio_list {
  }
}
@media (max-width: 767px) {
  .portfolio_list {
    column-gap: 46px;
    row-gap: 0px;
  }
}
@media (max-width: 575px) {
  .portfolio_list {
    grid-template-columns: 1fr;
    row-gap: 45px;
  }
}
.portfolio_item.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.portfolio_item {
  position: relative;
  color: #000;
  transition: all 0.3s;
}
.portfolio_item:hover {
  color: var(--main);
}
.portfolio_item:nth-child(2n + 1):not(:first-child) {
  margin-top: -147px;
}
.portfolio_item:nth-child(2) {
  margin-top: 147px;
}
@media (max-width: 1200px) {
  .portfolio_item:nth-child(2n + 1):not(:first-child) {
    margin-top: -80px;
  }
  .portfolio_item:nth-child(2) {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .portfolio_item:nth-child(2n + 1):not(:first-child) {
    margin-top: 0px;
  }
  .portfolio_item:nth-child(2) {
    margin-top: 0px;
  }
}
.portfolio_item_img_wrap {
  margin-bottom: 32px;
  overflow: hidden;
}
.portfolio_item_img_wrap img {
  width: 100%;
  aspect-ratio: 0.7881;
  object-fit: cover;
  transition: all 0.75s;
}
.portfolio_item:hover .portfolio_item_img_wrap img {
  transform: scale(1.1);
}
.portfolio_item_nav {
  font-size: 20px;
  color: #464646;
  margin-bottom: 4px;
}
.portfolio_item_title {
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: bold;
  font-family: "Noto Sans TC";
  color: #464646;
}
.portfolio_item_intro {
  font-size: 22px;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}
@media (max-width: 991px) {
  .portfolio_item_img_wrap {
    margin-bottom: 15px;
  }
  .portfolio_item_nav {
    font-size: 14px;
  }
  .portfolio_item_title {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .portfolio_item_intro {
    font-size: 16px;
    -webkit-line-clamp: 4;
  }
}
/***************************作品專區-列表**************************/
/***************************作品專區-內頁**************************/
#portfolio_content_section .page_title_block {
  margin-bottom: 45px;
}
#portfolio_content_section .page_nav_text {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #portfolio_content_section .page_nav_text {
    margin-bottom: 15px;
  }
}
.portfolio_content_title {
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: bold;
  font-family: "Noto Sans TC";
  color: #464646;
}
.portfolio_content_intro {
  font-size: 18px;
  margin-bottom: 25px;
}
.portfolio_content_img_list {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 40px;
  row-gap: 45px;
}
.portfolio_content_img_list.animation {
  animation-name: ani_slideBottom;
  animation-duration: 0.75s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.portfolio_content_img_item {
  overflow: hidden;
  cursor: pointer;
}
.portfolio_content_img_item img {
  width: 100%;
  aspect-ratio: 0.7962;
  object-fit: cover;
  transition: all 0.75s;
}
.portfolio_content_img_item:hover img {
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .portfolio_content {
    margin-top: 42px;
  }
  .portfolio_content_img_list {
    column-gap: 22px;
    row-gap: 15px;
  }
}
@media (max-width: 767px) {
  .portfolio_content_title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .portfolio_content_intro {
    font-size: 16px;
    margin-bottom: 45px;
  }
  .portfolio_content_img_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio_content_img_item:hover img {
    transform: scale(1);
  }
}

.portfolio_content_img_slider_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: -10;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: all 0.3s;
}
.portfolio_content_img_slider_main_wrap {
  max-width: 846px;
  margin: 0 auto;
}
.portfolio_content_img_slider_item {
}
.portfolio_content_img_slider_pic_wrap {
  text-align: center;
  margin: 0 78px;
}
.portfolio_content_img_slider_pic_wrap img {
  width: 100%;
  aspect-ratio: 0.7962;
  object-fit: contain;
}
@media (max-width: 767px) {
  .portfolio_content_img_slider_main_wrap {
    max-width: 396px;
  }
  .portfolio_content_img_slider_pic_wrap {
    margin: 0 16px;
  }
}
.portfolio_content_slider_arrow_prev {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 5;
}
.portfolio_content_slider_arrow_prev i,
.portfolio_content_slider_arrow_next i {
  font-size: 7px;
}
.portfolio_content_slider_arrow_next {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 5;
}
@media (max-width: 767px) {
  .portfolio_content_slider_arrow_prev {
    left: calc(50% - 40px);
    top: calc(100% + 28px);
    transform: translate(-50%, 0);
    width: 40px;
    height: 40px;
  }
  .portfolio_content_slider_arrow_next {
    left: calc(50% + 40px);
    top: calc(100% + 28px);
    transform: translate(-50%, 0);
    width: 40px;
    height: 40px;
  }
  .portfolio_content_slider_arrow_prev i,
  .portfolio_content_slider_arrow_next i {
    font-size: 6px;
  }
}
/***************************作品專區-內頁**************************/
/***************************最新消息-列表**************************/

.news_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  column-gap: 27px;
  row-gap: 65px;
  margin-bottom: 65px;
}
.news_item {
}
@media (max-width: 991px) {
  .news_list {
    margin-top: 42px;
  }
}
@media (max-width: 767px) {
  .news_list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 45px;
    margin-bottom: 85px;
  }
}
.news_item_block.animation {
  animation-name: ani_slideBottom;
  animation-duration: 0.75s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.news_item_img_wrap {
  position: relative;
  margin-bottom: 18px;
  overflow: hidden;
}

.news_item_img_wrap img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 0.788888;
  transition: all 0.75s;
}
.news_item:hover .news_item_img_wrap img {
  transform: scale(1.1);
}
.news_item_img_icon {
  position: absolute;
  top: 10px;
  right: 10px;
}
.news_item_img_icon i {
  font-size: 28px;
  color: #696969;
}
@media (max-width: 767px) {
  .news_item_img_wrap {
    margin-bottom: 15px;
  }
  .news_item_img_icon i {
    font-size: 31px;
  }
}
.news_item_nav_block {
  font-size: 16px;
  margin-bottom: 12px;
  color: #717171;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: all 0.3s;
}
.news_item:hover .news_item_nav_block {
  color: var(--main);
}
.news_item_nav span {
  position: relative;
}
.news_item_title {
  font-size: 22px;
  font-family: "Noto Sans TC";
  color: #464646;
  margin-bottom: 12px;
  line-height: 1.4;
  font-weight: bold;
  transition: all 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}
.news_item_intro {
  line-height: 1.75;
  color: #000;
  margin-bottom: 12px;
  transition: all 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}
.news_item:hover .news_item_title,
.news_item:hover .news_item_intro {
  color: var(--main);
}
@media (max-width: 767px) {
  .news_item_nav_block {
    margin-bottom: 15px;
  }
  .news_item:hover .news_item_nav_block {
    color: #717171;
  }
  .news_item_title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .news_item_intro {
    margin-bottom: 15px;
  }
}

.news_list_bottom_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news_list_hashtag {
  display: flex;
  gap: 12px;
}
.news_list_hashtag_item {
  color: var(--main);
}
.news_list_hashtag_item:hover {
  color: var(--main);
  opacity: 0.7;
}
.news_list_date {
  color: #717171;
}

/***************************最新消息-列表**************************/

/***************************最新消息-內頁**************************/
.news_nav_list {
}
.news_search_wrap {
  margin-bottom: 24px;
}
.news_search_input_wrap {
  position: relative;
  max-width: 340px;
}
.news_search_input_wrap input {
  position: relative;
  z-index: 2;
  border-radius: 3px;
  border: 1px solid #b3b3b3;
  background-color: #f9f9f9;
  padding: 11px 17px;
  width: 100%;

  height: 50px;
  font-size: 18px;
}
.news_search_input_wrap i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 17px;
  color: #000000;
  font-size: 20px;
  z-index: 3;
}
@media screen and (max-width: 991px) {
  .news_search_menu_text {
    display: none;
  }
  .news_search_input_wrap {
    max-width: 100%;
  }
}
.news_hashtag_wrap {
  margin-bottom: 30px;
}
.news_hashtag_item {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 3px;
  color: var(--main);
  transition: all 0.3s;
}
.news_hashtag_item:hover {
  color: var(--main);
  opacity: 0.7;
}
.news_nav_top_item {
  padding: 15px 0;
  border-bottom: 1px solid #dbdbdb;
}
.news_nav_top_title {
  max-height: 80px;
  color: #6b6b6b;
  overflow: hidden;
  word-break: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  /* 必須配合 Webkit 內核使用 */
  -webkit-box-orient: vertical;
  /* 設定盒子的方向為垂直 */
  -webkit-line-clamp: 2;
}
.news_nav_top_title:hover {
  color: #6b6b6b;
  opacity: 0.7;
}
.news_nav_title {
  font-size: 18px;
  margin-bottom: 15px;
}

.news_content_title {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  margin-bottom: 35px;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .news_content_title {
    font-size: 32px;
    margin-top: 42px;
  }
}
@media (max-width: 767px) {
  .news_content_title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.news_content_bottom_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.news_content_hashtag {
  display: flex;
  gap: 15px;
  color: var(--main);
}
.news_content_date {
  color: #717171;
}
#news_content_section .back_btn_wrap {
  margin-top: 60px;
}
/***************************最新消息-內頁**************************/
/***************************問題QA**************************/
#qa_section .page_title_block {
  margin-bottom: 45px;
}
.list_qa_wrap {
  margin-bottom: 85px;
}
@media (max-width: 991px) {
  .list_qa_wrap {
    margin-top: 42px;
  }
}
.list_qa_item_q_block {
  background-color: #fff;
  padding: 35px 36px 35px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dbdbdb;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s;
}
.list_qa_item_q_block:hover,
.list_qa_item_q_block.active {
  background-color: var(--main);
  color: #fff;
  border-bottom: 1px solid transparent;
}
.list_qa_item_q_block.active {
  padding: 37px 36px 35px 17px;
}
.list_qa_item_q span {
  display: inline-block;
  font-size: 28px;
  margin-right: 10px;
}
.list_qa_item_q {
  font-size: 24px;
}
.list_qa_item_q_block i {
  font-size: 16px;
  transition: all 0.3s;
}
.list_qa_item_q_block:hover i,
.list_qa_item_q_block.active i {
  transform: rotate(90deg);
}
.list_qa_item_a {
  padding: 16px 76px 48px 78px;
  background-color: #f9f9f9;
  display: none;
}
@media (max-width: 991px) {
  .list_qa_item_q_block {
    padding: 34px 18px 34px 13px;
  }
  .list_qa_item_q_block.active {
    padding: 24px 18px 24px 17px;
  }
  .list_qa_item_q span {
    font-size: 20px;
  }
  .list_qa_item_q {
    font-size: 18px;
  }
  .list_qa_item_q_block.active {
    font-size: 18px;
  }
  .list_qa_item_a {
    padding: 16px 40px 36px 64px;
  }
}
.list_qa_item.animation {
  animation-name: ani_slideBottom;
  animation-duration: 0.75s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
/***************************問題QA**************************/

/***************************聯絡我們**************************/
#contact_section {
  padding-bottom: 52px;
}
.contact_item {
  display: grid;
  grid-template-columns: 0.527fr 0.473fr;
  gap: 63px;
  margin-bottom: 65px;
}
@media (max-width: 991px) {
  #contact_section {
    padding-bottom: 20px;
  }
  .contact_item {
    display: block;
  }
}
.contact_item_img_wrap {
  flex: 1;
  overflow: hidden;
}
@media (max-width: 991px) {
  .contact_item_img_wrap {
    margin-bottom: 15px;
  }
}
.contact_img {
  width: 100%;
  object-fit: contain;
  transition: all 0.75s;
}
.contact_item:hover .contact_img {
  transform: scale(1.1);
}
.contact_item_content_wrap {
  flex: 1;
}
.contact_item_title {
  line-height: 1;
  font-size: 30px;
  margin-bottom: 27px;
  color: #464646;
  font-weight: bold;
  font-family: "Noto Sans TC";
}
.content_item_intro {
  font-size: 20px;
  line-height: 1.6;
  padding-bottom: 50px;
}

@media (max-width: 991px) {
  .contact_item_title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .content_item_intro {
    font-size: 16px;
    padding-bottom: 25px;
  }
}
.contact_item_info_wrap {
  border-top: 1px solid #dbdbdb;
  padding-top: 47px;
  font-size: 20px;
}
@media (max-width: 991px) {
  .contact_item_info_wrap {
    font-size: 18px;
    padding-top: 25px;
  }
}
.contact_item_info_text {
  margin-bottom: 15px;
}
.contact_item_info_text i {
  margin-right: 17px;
  width: 32px;
  text-align: center;
}
@media (max-width: 991px) {
  .contact_item_info_text i {
    margin-right: 12px;
  }
}
.contact_item_info_text .fa-time {
  font-size: 26px;
}
.contact_item_info_text .fa-dadonhi-9 {
  font-size: 24.5px;
}
.contact_item_info_text .fa-map-marker-mdc {
  font-size: 32px;
}
.contact_address_link i {
  font-size: 25px;
  margin-left: 12px;
}
.contact_item_info_text a {
  color: #000000;
}
.contact_item_info_text a:hover {
  color: #000000;
  opacity: 0.7;
}

.contact_item_title.animation {
  animation-name: ani_slideBottom;
  animation-duration: 0.75s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.content_item_intro.animation {
  animation-name: ani_slideBottom;
  animation-duration: 0.75s;
  animation-delay: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.contact_item_info_text.animation {
  animation-name: ani_slideBottom;
  animation-duration: 0.75s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
/***************************聯絡我們**************************/

/* =================表單基本設定-開始================= */
.form_wrap {
  padding: 0 300px;
}
@media (max-width: 1199px) {
  .form_wrap {
    padding: 0 200px;
  }
}
@media (max-width: 991px) {
  .form_wrap {
    padding: 0 100px;
  }
}
@media (max-width: 767px) {
  .form_wrap {
    padding: 0;
  }
}
.form_style {
  background-color: #ffffff;
  padding: 50px;
  border: 1px solid #adbdce;
  border-radius: 15px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .form_style {
    padding: 20px;
  }
}
.input_group_three {
  width: 31%;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .input_group_three {
    width: 100%;
  }
}
.input_group_line {
  width: 23%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .input_group_line {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .input_group_line {
    width: 36%;
  }
}
@media (max-width: 575px) {
  .input_group_line {
    width: 100%;
  }
}
.input_group_two {
  width: 48%;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .input_group_two {
    width: 100%;
  }
}
.input_group_six {
  width: 73%;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .input_group_six {
    width: 65%;
  }
}
@media (max-width: 767px) {
  .input_group_six {
    width: 60%;
  }
}
@media (max-width: 575px) {
  .input_group_six {
    width: 100%;
  }
}
.input_group_double {
  width: 48%;
}
@media (max-width: 575px) {
  .input_group_double {
    width: 100%;
    margin-bottom: 10px;
  }
}
.input_group {
  width: 100%;
  margin-bottom: 15px;
}
/* select 客製 icon 加 wrap */
.select_wrap::after {
  font-family: "Karen";
  font-weight: 900;
  content: "\f0ad";
  color: #194c7e;
  font-size: 20px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  pointer-events: none;
}
.select_style {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 45px;
  font-size: 18px;
  padding-left: 20px;
  color: var(--main);
  background-color: #ffffff;
  border: 1px solid var(--main);
  border-radius: 10px;
}
@media (max-width: 767px) {
  .select_style {
    font-size: 18px;
  }
}
.group_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.input_address_wrap {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .input_address_wrap {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
  }
}
.select_item {
  width: 40%;
}
@media (max-width: 767px) {
  .input_address_wrap .select_item:first-child {
    width: 100%;
    margin-bottom: 15px;
  }
  .input_address_wrap .select_item:nth-child(2) {
    width: 70%;
  }
}
.postal_code {
  width: 100px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 10px;
  font-size: 18px;
  color: #194c7e;
  border: 1px solid var(--main);
}
@media (max-width: 767px) {
  .postal_code {
    width: 25%;
  }
}
.main_btn_wrap {
  text-align: center;
  padding: 15px 0;
}
@media (max-width: 767px) {
  .main_btn_wrap {
    padding: 15px 0;
  }
}

.back_btn_wrap {
  margin-top: 85px;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .back_btn_wrap {
  }
}
.back_btn {
  /* structure */
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0px 15px 0 13px;
  width: 184px;
  height: 55px;
  /* style */
  font-size: 18px;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  outline: none;
  position: relative;
  transition: all 0.3s;
}
.back_btn i {
  font-size: 7px;
}
.back_btn:hover {
  background-color: #000;
  color: #fff;
}
@media (max-width: 767px) {
  .back_btn {
    width: 139px;
    height: 41px;
    padding: 0px 10px 0 13px;
    font-size: 16px;
  }
  .back_btn:hover {
    background-color: #fff;
    color: #000;
  }
}
/* =================表單基本設定-結束================= */

/****************************foot***************************/

.side_nav_wrap {
  position: fixed;
  z-index: 20;
  bottom: 5%;
  right: 0;
  width: 74px;
  transition: all 0.3s;
}
.side_nav_wrap.bottom_active {
  bottom: 150px;
}
@media (max-width: 767px) {
  .side_nav_wrap.bottom_active {
    bottom: 195px;
  }
}
.side_nav_list {
  border-radius: 10px 0 0 10px;
  background-color: #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
}
.side_nav_item {
  display: block;
  padding: 17px 0 12px 0;
  text-align: center;
  border-bottom: 1px solid #c6c6c6;
  color: #000;
  transition: all 0.3s;
}
.side_nav_item:hover {
  color: var(--main);
}
.side_nav_item:last-child {
  border-bottom: none;
}
.side_nav_item_icon {
  margin-bottom: 5px;
}
.side_nav_item_icon i {
  font-size: 30px;
}
.side_nav_item:nth-child(2) .side_nav_item_icon i {
  font-size: 23px;
}
.side_nav_item_title {
  font-size: 14px;
}
#go_top {
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  text-align: center;
  transition: all 0.3s;
}
#go_top.active {
  visibility: visible;
  opacity: 1;
}
#go_top:hover {
  transform: scale(0.9);
}
#go_top i {
  /* display: block; */
  font-size: 13px;
}
#go_top span {
  display: block;
  font-size: 18px;
}
/* .go_top_img {
  width: 125px;
  height: 107px;
  object-fit: contain;
}
@media (max-width: 991px) {
  #go_top.bottom_active {
    bottom: 300px;
  }
}
@media (max-width: 767px) {
  #go_top.bottom_active {
    bottom: 265px;
  }
  .go_top_img {
    width: 108px;
    height: 92px;
  }
} */

.foot_top_wrap {
  background-color: #96a29b;
  padding: 29px 0;
}
@media (max-width: 767px) {
  .foot_top_wrap {
    padding: 37px 0 19px;
  }
}
.foot_main_wrap {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 1699px) {
  .foot_main_wrap {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .foot_main_wrap {
    /* padding: 0 19px; */
  }
}
.foot_left {
  width: 60%;
  display: flex;
  align-items: flex-end;
}
/* @media (max-width: 991px) {
  .foot_left {
    width: 100%;
    justify-content: center;
  }
} */
@media (max-width: 1199px) {
  .foot_left {
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-bottom: 29px;
  }
}
.foot_right {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 1199px) {
  .foot_right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .foot_right {
  }
}
/* 頁底logo */
.foot_logo_wrap {
  padding-right: 70px;
}
@media (max-width: 1640px) {
  .foot_logo_wrap {
    padding-right: 40px;
  }
}
@media (max-width: 1199px) {
  .foot_logo_wrap {
    padding-right: 0;
    margin-bottom: 29px;
  }
}
.foot_logo {
  width: 141px;
  height: 38px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .foot_logo {
    width: 148px;
    height: 40px;
    object-fit: contain;
  }
}

/* copyright設定 */
.foot_copyright {
  width: 100%;
  font-size: 14px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 1199px) {
  .foot_copyright {
    position: relative;
    justify-content: center;
  }
}
@media (max-width: 404px) {
  .foot_copyright {
    font-size: 12px;
  }
}
.foot_copyright a {
  color: #fff;
}
.foot_copyright a:hover {
  color: #fff;
  opacity: 0.7;
}
@media (max-width: 991px) {
  .foot_copyright.desk {
    display: none;
  }
}
.foot_copyright.mobile {
  display: none;
}
@media (max-width: 991px) {
  .foot_copyright.mobile {
    display: flex;
  }
}
/* 社群連結 */
.foot_social_link_wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .foot_social_link_wrap {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .foot_social_link_wrap {
  }
  .foot_social_link_mobile_wrap {
    justify-content: center;
    margin-bottom: 15px;
  }
}
.foot_social_link {
  display: inline-block;
  color: #383737;
  font-size: 22px;
}
.foot_social_link:hover {
  color: #383737;
  opacity: 0.7;
}

@media (max-width: 767px) {
  .foot_social_link {
  }
}
.foot_title {
  font-size: 24px;
  color: #fff;
}
@media (max-width: 991px) {
  .foot_title {
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .foot_title {
    font-size: 20px;
    text-align: center;
  }
}
/* 店家資訊 */
.foot_info_wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .foot_info_wrap {
  }
}
.foot_info_item {
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1640px) {
  .foot_info_item {
    gap: 30px;
  }
}

@media (max-width: 1199px) {
  .foot_info_item {
    margin-top: 0;
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }
}
.info_text {
  font-size: 16px;
  display: flex;
  gap: 14px;
}
.foot_info_item .info_text:last-child {
  margin-bottom: 0;
}

.info_title {
  position: relative;
  color: #fff;
}
.info_title::after {
  content: "";
  border-right: 1px solid #fff;
  position: absolute;
  top: 4px;
  bottom: 4px;
  right: -7px;
}
.foot_info_item a {
  color: #fff;
}
.foot_info_item a:hover {
  opacity: 0.7;
}
.foot_info_item a:not([href]) {
  color: #fff;
}
@media (max-width: 1640px) {
  .info_text {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .info_text {
    font-size: 16px;
  }
}
/* 頁面連結 */
.foot_link_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .foot_link_wrap {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .foot_link_wrap {
    justify-content: start;
  }
}
@media (max-width: 575px) {
  .foot_link_wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
.foot_link_text {
  color: #ffffff;
  font-size: 16px;
  white-space: nowrap;
  padding: 0 6px;
}

.foot_link_text:hover {
  color: #ffffff;
  opacity: 0.7;
}
.foot_link_item {
  display: flex;
}
@media (max-width: 575px) {
  .foot_link_wrap .foot_link_item:first-child {
    margin-bottom: 10px;
  }
}
.foot_link_text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.2px;
  height: 80%;
  background-color: #ffffff;
}
.foot_link_wrap .foot_link_item:last-child .foot_link_text:last-child::after {
  display: none;
}
@media (max-width: 575px) {
  .foot_link_wrap
    .foot_link_item:first-child
    .foot_link_text:last-child::after {
    display: none;
  }
}
/****************************foot***************************/

/* 隱藏reCAPTCHA徽章 */
/* .grecaptcha-badge { visibility: hidden; } */

.grecaptcha_text {
  color: var(--main);
}
.grecaptcha_text a {
  color: var(--main);
  opacity: 0.7;
}
/* ↓ 彈跳視窗 ↓ */
.main_popup_box {
  display: none;
  position: relative;
  width: 80%;
  max-width: 750px;
  z-index: 99999;
}
@media (max-width: 991px) {
  .main_popup_box {
    max-width: 570px;
  }
}
.index_adblock_img {
  width: 100%;
}
.cancel {
  position: absolute;
  top: -17px;
  right: -17px;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #7a8c82;
  color: white;
  font-size: 30px;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
}
/* ↑ 彈跳視窗 ↑ */
