@charset "utf-8";
/* CSS Document */

/* 共通 css開始  */
* {
  box-sizing: border-box;
}
:root {
  --main: #7d6252;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "微軟正黑體";
  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: 1430px;
}

@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%;
  }
}
/* ========== 主要按鈕 ========== */
.main_btn_wrap {
  display: flex;
  justify-content: center;
}
.main_btn {
  /* structure */
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  margin: 0;
  padding: 13px 0;
  width: 210px;

  /* style */
  font-size: 18px;
  text-align: center;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #fff;
  background-color: #8592a2;
  border: 1px solid #8592a2;
  border-radius: 27px;
  outline: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .main_btn {
  }
}
.main_btn:hover {
  background-color: #fff;
  color: #8592a2;
}

.main_btn.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .main_btn.animation {
    animation: none;
  }
}
/* ========== 圖片比例 ========== */
.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: contain;
  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: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #8592a2;
  background-color: #fff;
  border: 1px solid #8592a2;
  font-size: 18px;
  margin: 0 10px;
  padding: 0 4px;
  /* font-weight: bold; */
  position: relative;
}
/* .gs_pagination a.pag_btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 19px;
  height: 1px;
  background-color: var(--main);
  opacity: 0;
  transition: all 0.2s ease-in-out;
} */
.gs_pagination strong {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #8592a2;
  border: 1px solid #8592a2;
  font-size: 18px;
  margin: 0 10px;
  padding: 0 4px;
  font-weight: normal;
}
.gs_pagination a.pag_btn:hover {
  color: #fff;
  background-color: #8592a2;
}
@media (max-width: 991px) {
  .gs_pagination strong,
  .gs_pagination a.pag_btn {
  }
}
@media (max-width: 400px) {
  .gs_pagination strong,
  .gs_pagination a.pag_btn {
  }
}
.gs_pagination a.pag_arrow {
  text-align: center;
  color: #8592a2;
  margin: 0 10px;
  transition: all 0.5s ease-in-out;
  display: inline-block;
  font-weight: bold;
}
.gs_pagination a.pag_arrow i {
  font-size: 17px;
}
.gs_pagination a.pag_arrow:hover {
  color: #b8b8b8;
}
.pag_arrow_left i {
  transform: scale(-1);
}
@media (max-width: 991px) {
  .gs_pagination a.pag_arrow {
  }
  .gs_pagination a.pag_arrow i {
  }
}
@media (max-width: 400px) {
  .gs_pagination a.pag_arrow {
  }
}
/* ========== 導航欄漢堡特效 ========== */
.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: #fff;
  stroke-width: 2;
  /* 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: 48px;
  left: 0;
  z-index: 100;
  width: 100%;
  height: calc(100vh - 48px);
  background-color: #fff;
  overflow-y: auto;
  overscroll-behavior: none;
  display: none;
}
@media (min-width: 992px) {
  .head_bar_mobile {
    display: none !important;
  }
}
.head_bar_mobile .gs_container {
  padding: 0;
}
.ham_logo_pic_wrap {
  text-align: center;
}
.nav_item_mobile {
  width: 100%;
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
}
.nav_item_mobile:last-of-type {
  /* border-bottom: none; */
}
.nav_link_mobile {
  display: flex;
  align-items: center;
  padding: 26px 30px;
  color: var(--main);
  position: relative;
  font-size: 22px;
}

.nav_item_mobile:last-child .nav_item_mobile_title {
  border-bottom: none;
}
.nav_link_mobile::before {
  content: "";
  display: inline-block;
  height: 25px;
  width: 1px;
  background-color: var(--main);
  margin-right: 13px;
}
.nav_item_mobile_title {
  border-bottom: 1px solid #b29787;
}
.nav_item_mobile_title.active {
  background-color: #6b6363;
}
.nav_item_mobile_title.active .nav_link_mobile::before {
  background-color: #fff;
}
.nav_link_mobile:hover {
  color: var(--main);
}
.nav_item_mobile_title.active .nav_link_mobile {
  color: #fff;
  background-color: #b29787;
}
.nav_link_mobile i {
  font-size: 13px;
  color: var(--main);
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-50%) rotate(90deg);
  transition: all 0.3s;
}
.nav_item_mobile_title.active .nav_link_mobile i {
  transform: translateY(-50%) rotate(90deg);
  color: #fff;
}
.nav_item_classification_mobile_wrap {
  background-color: #fff;
  /* padding: 0 20px; */
  display: none;
}
/* .nav_item_mobile_title.active + .nav_item_classification_mobile_wrap {
	background-color: #6B6363;

} */
.nav_item_classification_mobile_block:last-child
  .nav_item_classification_mobile_link {
  border-bottom: none;
}
.nav_item_classification_mobile_link {
  display: block;
  padding: 16px 44px;
  color: var(--main);
  border-bottom: 1px solid #b29787;
  position: relative;
  font-size: 20px;
  font-weight: bold;
}
.nav_item_classification_mobile_link:not([href]) {
  color: var(--main);
}
.nav_item_classification_mobile_link i {
  font-size: 28px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #b29787;
  transition: all 0.3s;
}
.nav_item_classification_mobile_link .fa-minus {
  opacity: 0;
}
.nav_item_classification_mobile.active
  .nav_item_classification_mobile_link
  .fa-add {
  opacity: 0;
}
.nav_item_classification_mobile.active
  .nav_item_classification_mobile_link
  .fa-minus {
  opacity: 1;
  color: #fff;
}

.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,
  .nav_item_classification_mobile.active {
    color: var(--main);
  }
  .nav_item_classification_mobile.active .nav_item_classification_mobile_link {
    background-color: #8592a2;
    border-color: #8592a2;
    color: #fff;
  }
}
.nav_item_classification_mobile_2_wrap {
  background-color: #fff;
  display: none;
  border-bottom: 1px solid #b29787;
}
.nav_item_classification_mobile_2_link {
  display: flex;
  align-items: center;
  color: var(--main);
  /* border-bottom: 1px dashed #B29787; */
  border-bottom: 1px dashed transparent;
  border-image: repeating-linear-gradient(
      to right,
      #b29787 0,
      #b29787 10px,
      transparent 10px,
      transparent 20px
    )
    1;
  padding: 16px 0;
  font-size: 16px;
  font-weight: bold;
  margin-left: 44px;
}
.nav_item_classification_mobile_2_link::before {
  content: "";
  background-color: #8592a2;
  width: 0;
  height: 6px;
  border-radius: 50%;
  margin-right: 0px;
  transition: all 0.3s;
}
.nav_item_classification_mobile_2.active
  .nav_item_classification_mobile_2_link::before {
  width: 6px;
  margin-right: 10px;
}

.nav_item_classification_mobile_2_link:hover {
  color: var(--main);
}
.nav_item_classification_mobile_2.active
  .nav_item_classification_mobile_2_link {
  color: #8592a2;
}
.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;
  height: calc(100vw / 1920 * 427);
}
@media (max-width: 767px) {
  .page_banner {
    height: calc(100vw / 428 * 113);
  }
}
.page_banner .gs_container {
  height: 100%;
}
.page_banner.animation {
  animation-name: ani_fadeIn;
  animation-duration: 2s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.page_banner_title_wrap {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  row-gap: 8px;
}
.page_banner_title_en {
  font-size: 30px;
  color: #fff;
  line-height: 1;
}
.page_banner_title {
  font-size: 30px;
  color: #fff;
  margin-right: 32px;
  position: relative;
}
.page_banner_title::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  height: 27px;
  width: 2px;
  border-radius: 20px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .page_banner_title_en {
    font-size: 25px;
  }
  .page_banner_title {
    font-size: 25px;
  }
}

/* 電腦版 */
.page_banner_img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0;
  object-fit: cover;
  z-index: -1;
}
@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: 100%;
    position: absolute;
    inset: 0 0;
    z-index: -1;
    object-fit: cover;
  }
}
/* ===麵包屑=== */
.breadcrumb_wrap {
  margin-bottom: 54px;
}

.breadcrumb_list {
  text-align: right;
  color: #aaaaaa;
}
.breadcrumb_link {
  font-size: 18px;
  color: #aaaaaa;
  transition: all 0.3s;
}
.breadcrumb_link:hover,
.breadcrumb_link.active {
  color: #b29787;
}
@media screen and (max-width: 991px) {
  .breadcrumb_wrap {
    margin-bottom: 45px;
  }
  .breadcrumb_list {
    padding: 5px 0;
  }
  .breadcrumb_link {
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb_link {
    font-size: 12px;
  }
}
/* ========== 頁面設定 ========== */
.page_wrap {
  padding-top: 30px;
  padding-bottom: 120px;
  position: relative;
}
@media (max-width: 767px) {
  .page_wrap {
    padding-top: 5px;
    padding-bottom: 188px;
  }
}

.page_top_bg {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 60%;
  object-fit: cover;
  object-position: top center;
}
.page_top_mobile_bg {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  display: none;
}
.page_bottom_bg {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  height: 42%;
  width: 100%;
  object-fit: cover;
  object-position: bottom center;
}
.page_bottom_mobile_bg {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  object-fit: cover;
  object-position: bottom center;
  display: none;
}
.main_title_wrap {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .page_top_bg {
    display: none;
  }
  .page_top_mobile_bg {
    display: block;
  }
  .page_bottom_bg {
    display: none;
  }
  .page_bottom_mobile_bg {
    display: block;
  }
  .main_title_wrap {
    margin-bottom: 30px;
  }
}
.main_title {
  font-size: 24px;
  font-weight: bold;
  color: #0554ad;
}
@media (max-width: 767px) {
  .main_title {
    font-size: 22px;
  }
}
.main_title_img {
  width: 155px;
  height: 30px;
  object-fit: contain;
  position: absolute;
  top: 7px;
  right: -50px;
  z-index: -1;
}

/* 成家服務 */
.other_page_wrap {
}
.other_page_wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  background-color: #736258;
}
.other_page_bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  width: 100%;
  height: 100%;

  object-fit: cover;
}
.other_page_wrap .page_title_wrap {
  align-items: flex-end;
  column-gap: 20px;
  margin-bottom: 85px;
}
.other_page_wrap .page_title_block {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .other_page_wrap .page_title_wrap {
    margin-bottom: 40px;
    align-items: center;
  }
  .other_page_wrap .page_title_block {
    margin-bottom: 0;
  }
}
.other_page_wrap .page_title {
  color: #fff;
}
.other_page_wrap .page_title_en {
  color: #fff;
}
.other_page_wrap .breadcrumb_list {
  color: #fff;
}
.other_page_wrap .breadcrumb_link {
  color: #fff;
}
.other_page_wrap .breadcrumb_link:hover,
.other_page_wrap .breadcrumb_link.active {
  color: #fff;
  opacity: 0.7;
}

.page_col_2 {
  display: grid;
  grid-template-columns: 247px calc(100% - 325px);
  gap: 78px;
}
@media (max-width: 1199px) {
  .page_col_2 {
    display: grid;
    grid-template-columns: 247px calc(100% - 287px);
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .page_col_2 {
    grid-template-columns: 100%;
    gap: 0;
  }
}

.other_page_col_2 {
  display: grid;
  grid-template-columns: 223px calc(100% - 334px);
  gap: 111px;
}
@media (max-width: 1199px) {
  .other_page_col_2 {
    display: grid;
    grid-template-columns: 223px calc(100% - 283px);
    gap: 60px;
  }
}
@media (max-width: 991px) {
  .other_page_col_2 {
    grid-template-columns: 100%;
    gap: 0;
  }
}

.page_title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page_title_block {
  margin-bottom: 46px;
}
.page_title {
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--main);
  font-weight: bold;
}
.page_title_en {
  color: #cfc3bc;
  font-size: 36px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .page_title_block {
    margin-bottom: 36px;
  }
  .page_title {
    font-size: 24px;
    margin-bottom: 4px;
  }
  .page_title_en {
    font-size: 15px;
  }
}

/* ===頁面選單=== */
.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: block;
  width: 100%;
  overflow-y: auto;
}
@media (max-width: 991px) {
  .page_nav_list {
    display: none;
  }
}
.page_nav_item {
  position: relative;
  border-bottom: 1px solid #c9c9c9;
}
.page_nav_item:first-of-type {
  border-top: 1px solid #c9c9c9;
}
.page_nav_link {
  flex-shrink: 0;
  padding: 10px 16px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: #fff; */

  overflow: hidden;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.page_nav_link:not([href]) {
  color: #000;
}
.page_nav_link i {
  color: #000;
  font-size: 13px;
  transition: all 0.3s;
}

.page_nav_link i {
  font-size: 28px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #8592a2;
  transition: all 0.3s;
}
.page_nav_link .fa-minus {
  opacity: 0;
}
.page_nav_link.active .fa-add {
  opacity: 0;
}
.page_nav_link.active .fa-minus {
  opacity: 1;
  color: #fff;
}

.page_nav_link .page_nav_link_single_icon {
  color: #fff;
}
.page_nav_link:hover,
.page_nav_link.active,
.page_nav_link.active_single {
  background-color: #8592a2;
  color: #fff;
  border-radius: 5px;
}
.page_nav_link:hover i,
.page_nav_link.active i,
.page_nav_link.active_single i {
  color: #fff;
}
.page_nav_link:not([href]):hover {
  color: #fff;
}

.page_nav_text {
  font-size: 22px;
  color: var(--main);
  margin-bottom: 35px;
  font-weight: bold;
}
@media (max-width: 991px) {
  .page_nav_text {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

.page_nav_list_2_drop {
  /* position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 4; */
  display: none;
  padding: 0 27px 0 32px;
}
.page_nav_link.active + .page_nav_list_2_drop {
  display: block;
}
.page_nav_link_2 {
  color: #000;
  height: 64px;
  padding: 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;

  border-bottom: 1px dashed transparent;
  border-image: repeating-linear-gradient(
      to right,
      #c9c9c9 0,
      #c9c9c9 10px,
      transparent 10px,
      transparent 20px
    )
    1;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
.page_nav_link_2:last-of-type {
  border-bottom: none;
}
.page_nav_link_2:not([href]) {
  color: var(--main);
}
.page_nav_link_2 i {
  font-size: 12px;
}

.page_nav_link_2:hover,
.page_nav_link_2.active {
  color: var(--main);
}

.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;
}

/* ===其它頁面選單=== */
.other_page_nav_scroll {
  width: 100%;
}

/* 🎨 SimpleBar 自訂 scrollbar */
.simplebar-scrollbar::before {
  background: #fff !important;
  opacity: 1;
  border-radius: 5px;

  top: 4px !important;
  bottom: 4px !important;
}

.simplebar-track.simplebar-horizontal {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  height: 12px;
}

.simplebar-scrollbar.simplebar-visible::before {
  opacity: 1 !important;
}
.other_page_nav_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  column-gap: 32px;
  row-gap: 27px;
  width: 100%;
  /* overflow-x: auto; */
  padding-bottom: 32px;
  position: relative;
}

/* .other_page_nav_list::-webkit-scrollbar {
  width: 5px;
  height: 12px;
}
.other_page_nav_list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50px;
}
.other_page_nav_list::-webkit-scrollbar-thumb {
  background: #fff;
  height: 4px;
  border-radius: 50px;
} */

.other_page_nav_mobile_list {
  display: none;
}
@media (max-width: 991px) {
  .other_page_nav_pc_list {
    display: none;
  }
  .other_page_nav_mobile_container {
    margin-bottom: 32px;
  }
  .other_page_nav_mobile_list {
    display: flex;
    flex-direction: row;
    column-gap: 8px;
    padding-bottom: 20px;
    overflow-x: auto;
  }
  .other_page_nav_mobile_list::-webkit-scrollbar {
    display: none;
  }
  .other_page_nav_mobile_list .other_page_nav_item {
    width: auto;
  }
}
@media (max-width: 575px) {
  .other_page_nav_mobile_container {
    padding-right: 0;
  }
}
.other_page_nav_item {
  flex-shrink: 0;
  width: 100%;
  position: relative;
}
.other_page_nav_link {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: transparent;
  border: 1px solid #fff;
  overflow: hidden;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.other_page_nav_link:not([href]) {
  color: #fff;
}
.other_page_nav_link i {
  color: #000;
  font-size: 13px;
  transition: all 0.3s;
}

.other_page_nav_link i {
  font-size: 28px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #8592a2;
  transition: all 0.3s;
}

.other_page_nav_link .other_page_nav_link_single_icon {
  color: #fff;
}
.other_page_nav_link:hover,
.other_page_nav_link.active,
.other_page_nav_link.active_single {
  background-color: #fff;
  color: var(--main);
}
.other_page_nav_link:hover i,
.other_page_nav_link.active i,
.other_page_nav_link.active_single i {
  color: #fff;
}
.other_page_nav_link:not([href]):hover {
  color: #fff;
}
@media (max-width: 991px) {
  .other_page_nav_link {
    padding: 13px 50px;
    font-size: 18px;
  }
  .other_page_nav_link:hover {
    background-color: transparent;
    color: #fff;
  }
  .other_page_nav_link.active_single:hover {
    background-color: #fff;
    color: var(--main);
  }
}
/*****************************************************************************/
/*-----------------------------------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 {
    background-color: var(--main);
  }
  header .gs_container {
    position: relative;
  }
}
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: 77px;
}
.head_main_mobile_wrap {
  display: none;
}
@media (max-width: 991px) {
  .head_main_wrap {
    justify-content: space-between;
    height: 48px;
  }
  .head_main_pc_wrap {
    display: none;
  }
  .head_main_mobile_wrap {
    display: flex;
  }
}

.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 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 474px;
  background-color: var(--main);
  height: 100%;
}
@media (max-width: 1899px) {
  .head_welcome_link {
    width: 350px;
  }
}
@media (max-width: 1640px) {
  .head_welcome_link {
    width: 300px;
  }
}
@media (max-width: 1399px) {
  .head_welcome_link {
    width: 250px;
  }
}
@media (max-width: 1199px) {
  .head_welcome_link {
    width: 220px;
  }
}
@media (max-width: 991px) {
  .head_welcome_link {
    justify-content: flex-start;
  }
}
.header.active .head_welcome_link {
  /* margin-top: 10px; */
}

.head_logo_img {
  max-width: 302px;
  width: 100%;
  object-fit: contain;
}
@media (max-width: 1640px) {
  .head_logo_img {
    max-width: 240px;
  }
}
@media (max-width: 1399px) {
  .head_logo_img {
    max-width: 200px;
  }
}
@media (max-width: 1199px) {
}
@media (max-width: 991px) {
  .head_logo_img {
    max-width: 184px;
  }
}

/* head選單設定 */
.head_bar_block {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.head_bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  padding: 0 5px;
}
@media (max-width: 1199px) {
  .head_bar_block {
    column-gap: 0px;
  }
}
@media (max-width: 991px) {
  .head_bar_block {
    position: static;
  }
  .head_bar {
    display: none;
  }
}
.nav_item {
  position: relative;
  height: 100%;
  transition: all 0.3s;
}
.nav_link {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  padding: 0px 40px;
  height: 100%;
  color: #000;
  position: relative;
  letter-spacing: 2px;
  transition: all 0.3s;
}

.nav_link i {
  font-size: 10px;
  transform: rotate(90deg);
  color: #000;
}
.nav_link::before {
  content: "";
  width: 1px;
  height: 25px;
  background-color: var(--main);
  transition: all 0.3s;
}

@media (max-width: 1640px) {
  .nav_link {
    font-size: 18px;
    padding: 0 30px;
  }
}

@media (max-width: 1399px) {
  .nav_link {
    padding: 0 20px;
  }
}
@media (max-width: 1199px) {
  .nav_link {
    font-size: 16px;
    padding: 0px 12px;
  }
}
.nav_item:hover .nav_link,
.nav_link.active {
  background-color: #b29787;
}
.nav_item:hover .nav_link,
.nav_link.active,
.nav_item:hover .nav_link i,
.nav_link.active i {
  color: #fff;
}
.nav_item:hover .nav_link::before,
.nav_link.active::before,
.nav_item:hover .nav_link::before,
.nav_link.active::before {
  background-color: #fff;
}

/* 標題單獨控制，不要直接在 active 狀態就顯示 */
.head_top_item_title {
  opacity: 0;
  transition: opacity 0.5s;
}
/* 新增一個 class 專門讓文字延遲出現 */
.head_top_item.active .head_top_item_title {
  opacity: 1;
}
/* 導覽列社群連結 */
.nav_social_link_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 73px;
  background-color: var(--main);
  height: 100%;
  width: 474px;
}
.nav_social_link {
  cursor: pointer;
  transition: all 0.3s;
}
.nav_social_link i {
  color: #fff;
  font-size: 35px;
}
.nav_social_link img {
  height: 35px;
  object-fit: contain;
}
.nav_social_link:hover {
  opacity: 0.7;
}
@media (max-width: 1899px) {
  .nav_social_link_wrap {
    gap: 40px;
    width: 350px;
  }
}
@media (max-width: 1640px) {
  .nav_social_link_wrap {
    gap: 35px;
    width: 300px;
  }

  .nav_social_link i {
    font-size: 25px;
  }
  .nav_social_link img {
    height: 25px;
  }
}
@media (max-width: 1399px) {
  .nav_social_link_wrap {
    width: 250px;
    gap: 25px;
  }
}
@media (max-width: 1199px) {
  .nav_social_link_wrap {
    width: 220px;
  }
}
@media (max-width: 991px) {
  .nav_social_link_wrap {
    border-bottom: 1px solid #b29787;
    background-color: #fff;
    width: 100%;
    height: 78px;
    gap: 63px;
  }
  .nav_social_link i {
    color: var(--main);
    font-size: 35px;
  }
  .nav_social_link img {
    height: 35px;
  }
}
/* 電腦版下拉選單 */
.nav_item:hover .nav_item_classification_wrap {
  pointer-events: all;
  opacity: 1;
}
.nav_item_classification_wrap {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
}
.nav_item_classification {
  position: relative;
  border: 2px solid #b29787;
  border-top: 1px solid #b29787;
}
.nav_item_classification:first-of-type {
  border-top: 2px solid #b29787;
}
.nav_item_classification_link {
  display: block;
  font-size: 18px;
  padding: 28px 5px;
  background-color: #fff;
  color: #736258;
  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: #b29787;
  color: #fff;
}
.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;
}

/* 上方空白區塊(撐高用) */
.head_top_block {
  height: 77px;
}

@media (max-width: 991px) {
  .head_top_block {
    height: 48px;
  }
}

/* 語系按鈕 */
.nav_lang_item {
  position: relative;
  /* position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%); */
  background: linear-gradient(to right, var(--main), #207eef);
  padding: 14px 41px;
  border-radius: 50px 0 0 50px;
}
.nav_lang_item.active {
  border-radius: 0px;
}
@media (max-width: 1199px) {
  .nav_lang_item:lang(jp) {
    padding: 14px 12px 14px 20px;
  }
}
@media (max-width: 991px) {
  .nav_lang_item {
    border-radius: 50px;
    padding: 5px 14px;
  }
  .nav_lang_item:lang(jp) {
    padding: 5px 14px;
  }
  .nav_lang_item.active {
    border-radius: 0;
  }
}
.nav_lang_item_text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s;
}
.nav_lang_item_text:hover {
  color: 0;
  opacity: 0.7;
}
.lang_img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.lang_down_img {
  width: 9px;
  height: 5px;
  object-fit: contain;
}
@media (max-width: 991px) {
  .nav_lang_item_text {
    font-size: 14px;
    gap: 4px;
  }
  .lang_img {
    width: 12px;
    height: 12px;
  }
  .lang_down_img {
    width: 6px;
    height: 3px;
  }
}
.nav_lang_drop_item {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 30;
  background: linear-gradient(to right, var(--main), #207eef);
  text-align: center;
  display: none;
}
.nav_lang_drop_item_link {
  display: block;
  color: #fff;
  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;
  opacity: 0.7;
}
@media (max-width: 991px) {
  .nav_lang_drop_item_link {
    font-size: 14px;
    padding: 5px 4px;
  }
}
/****************************head****************************/

/***************************welcome**************************/
/* ===== 首頁輪播 ===== */
#main_slider_section_mobile {
  display: none;
}
@media (max-width: 767px) {
  #main_slider_section {
    display: none;
  }
  #main_slider_section_mobile {
    display: block;
  }
}
/* 電腦版圖片 */
.main_slider_img {
  width: 100%;
  height: calc(100vw / 1920 * 936);
  object-fit: cover;
}
.main_slider_word_block {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 10%;
  bottom: 14%;
  z-index: 10;
  overflow: auto;
  height: calc(100% - 24%);
  display: flex;
}

.main_slider_word {
  font-weight: bold;
  font-size: 48px;
  color: #fff;
  line-height: 1.2;
  width: 100%;
  margin: auto 0;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1640px) {
  .main_slider_word {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .main_slider_word_block {
    /* padding: 0 15px; */
    left: 30px;
    right: 30px;
    top: 40px;
    bottom: 40px;
    height: calc(100% - 80px);
  }
  .main_slider_word {
    font-size: 24px;
    width: 100%;
    margin: auto 0 0;
    padding-bottom: 4px;
  }
  .main_slider_secondary_word {
    font-size: 18px;
  }
}

/* 手機版圖片 */
.main_slider_img_mobile {
  width: 100%;
  height: calc(100vw / 428 * 156);
  object-fit: cover;
}
/* 輪播點點設定 */
.main_slider .slick-dots {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  bottom: 15%;
  right: 60px;

  width: 21px;
  row-gap: 40px;
}
.main_slider_number {
  color: #fff;
  font-size: 18px;
  position: relative;
}
.main_slider_number::after {
  content: "";
  width: 1px;
  height: 30px;
  background-color: #fff;
  position: absolute;
  top: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%);
}
.main_slider .slick-dots li:last-of-type .main_slider_number::after {
  display: none;
}
@media (max-width: 991px) {
  .main_slider .slick-dots {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .main_slider .slick-dots {
    position: static;
    margin-right: 0;
    padding-top: 8px;
  }
}
.main_slider .slick-dots li {
  /* width: 13px;
  height: 13px; */
}
.main_slider .slick-dots li button {
  /* width: 13px;
  height: 13px; */
  padding: 0;
}
.main_slider .slick-dots li button:before {
  font-size: 13px;
  /* width: 13px;
  height: 13px; */
  color: #000;
  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);
}

/* 首頁標題設定 */
.welcome_title_wrap {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 45px;
}
@media (max-width: 767px) {
  .welcome_title_wrap {
    margin-bottom: 20px;
  }
}

.welcome_title_zh {
  font-size: 30px;
  color: var(--main);
  position: relative;
  margin-bottom: 10px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .welcome_title_zh {
  }
}

.welcome_title_en {
  white-space: nowrap;
  font-size: 70px;
  color: #cfc3bc;
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 991px) {
  .welcome_title_en {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.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_title_wrap.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}
/* ========== 首頁上方資訊 ========== */
.welcome_top_section {
  position: relative;
  top: -60.5px;
  /* z-index: -1; */
}
@media (max-width: 991px) {
  .welcome_top_section {
    top: -38px;
  }
}
@media (max-width: 767px) {
  .welcome_top_section {
    top: 0;
  }
  .welcome_top_section .gs_container {
    padding: 0;
    width: 100%;
  }
}
/* .welcome_top_left_img {
  position: absolute;
  z-index: -1;
  left: -7%;
  top: -20%;
  min-height: 150px;
  height: calc(100vw / 1920 * 267);
}
@media (max-width: 767px) {
  .welcome_top_left_img {
    display: none;
  }
} */

.welcome_top_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #8592a2;
  padding: 27px 0 36px;
  border-radius: 5px;
}

.welcome_top_item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
  position: relative;
}
.welcome_top_item::after {
  content: "";
  width: 1px;
  height: 48px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
}
.welcome_top_item:last-of-type::after {
  display: none;
}
.welcome_top_item_img_wrap > img {
  width: 100%;
  object-fit: contain;
}
.welcome_top_item_title {
  color: #fff;
  font-weight: bold;
  font-size: 22px;
}

@media (max-width: 991px) {
  .welcome_top_list {
    padding: 9px 0 8px;
  }
  .welcome_top_item {
    flex-direction: column;
  }
  .welcome_top_item::after {
    height: 58px;
  }
  .welcome_top_item_img_wrap {
    margin-bottom: 5px;
  }
  .welcome_top_item:first-of-type .welcome_top_item_img_wrap {
    width: 53px;
  }
  .welcome_top_item:nth-child(2) .welcome_top_item_img_wrap {
    width: 54px;
  }
  .welcome_top_item:last-of-type .welcome_top_item_img_wrap {
    width: 52px;
  }
  .welcome_top_item_title {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .welcome_top_list {
    border-radius: 0;
  }
}
.welcome_top_list.animation {
  animation-name: ani_slideBottom;
  animation-duration: 0.5s;
  animation-delay: 0;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .welcome_top_list.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0;
    animation-delay: 0;
  }
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #ddd;
}
::-webkit-scrollbar-thumb {
  background: var(--main);
}

/* ========首頁熱門商品======= */
.welcome_hot_product_section {
  padding: 90px 0 143px;
  position: relative;
  /* z-index: -1; */
}

@media (max-width: 991px) {
  .welcome_hot_product_section {
    padding: 40px 0 98px;
  }
}
.welcome_hot_product_bg {
  position: absolute;
  inset: -121px 0 0;
  width: 100%;
  height: calc(100% + 121px);
  object-fit: cover;
  z-index: -1;
}
.welcome_hot_product_mobile_bg {
  position: absolute;
  inset: 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  display: none;
}
@media (max-width: 991px) {
  .welcome_hot_product_bg {
    inset: -78px 0 0;
    height: calc(100% + 78px);
  }
}
@media (max-width: 767px) {
  .welcome_hot_product_bg {
    display: none;
  }
  .welcome_hot_product_mobile_bg {
    display: block;
  }
}

/* .welcome_hot_product_section .welcome_title_wrap {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .welcome_hot_product_section .welcome_title_wrap {
    margin-bottom: 10px;
  }
} */
.welcome_hot_product_section .welcome_title_en_pc {
  text-align: right;
}
.welcome_hot_product_section .welcome_title_en_mobile {
  display: none;
}

.welcome_hot_product_intro {
  font-size: 20px;
  color: #515151;
}
@media (max-width: 991px) {
  .welcome_hot_product_section .welcome_title_en_pc {
    display: none;
  }
  .welcome_hot_product_section .welcome_title_en_mobile {
    display: block;
  }

  .welcome_hot_product_intro {
    font-size: 16px;
  }
}
.welcome_title_en_pc.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_title_en_pc.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}
.welcome_hot_product_btn_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.welcome_hot_product_list_prev {
  color: #fff;
  cursor: pointer;
  width: 48px;
  height: 48px;
  background-color: #b29787;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.welcome_hot_product_list_next {
  color: #fff;
  cursor: pointer;
  width: 48px;
  height: 48px;
  background-color: #b29787;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.welcome_hot_product_list_prev i,
.welcome_hot_product_list_next i {
  font-size: 15px;
}
.welcome_hot_product_list_prev i {
  transform: rotate(180deg);
}
.welcome_hot_product_list_prev:hover {
  transform: translateX(-5px);
}
.welcome_hot_product_list_next:hover {
  transform: translateX(5px);
}
.welcome_hot_product_btn_wrap_mobile {
  display: none;
}
@media (max-width: 991px) {
  .welcome_hot_product_btn_wrap {
  }
  .welcome_hot_product_btn_wrap_pc {
    display: none;
  }
  .welcome_hot_product_btn_wrap_mobile {
    display: flex;
  }
}

@media (max-width: 767px) {
  .welcome_hot_product_list_container {
    padding: 0;
    width: 100%;
  }
}
.welcome_hot_product_list {
  margin: 0 -15px 67px;
}
@media (max-width: 991px) {
  .welcome_hot_product_list {
    margin: 0 -12px 52px;
    margin-bottom: 26px;
  }
}
@media (max-width: 767px) {
  .welcome_hot_product_list {
    margin: 0 0px 52px;
  }
}
.welcome_hot_product_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_hot_product_list.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}

.welcome_hot_product_item {
  margin: 0 15px;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
}
@media (max-width: 991px) {
  .welcome_hot_product_item {
    margin: 0 7px;
  }
}
.welcome_hot_product_item_img_wrap {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.welcome_hot_product_item_img_wrap img {
  width: 100%;
  aspect-ratio: 1.047737;
  object-fit: cover;
  transition: all 0.75s;
}
.welcome_hot_product_item:hover .welcome_hot_product_item_img_wrap img {
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .welcome_hot_product_item_img_wrap {
  }
  .welcome_hot_product_item:hover .welcome_hot_product_item_img_wrap img {
    transform: scale(1);
  }
}
.welcome_hot_product_item_content {
  padding: 20px 0;
}
.welcome_hot_product_item_title {
  font-size: 24px;
  color: #515151;
  font-weight: bold;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}
.welcome_hot_product_item:hover .welcome_hot_product_item_title {
  color: #8592a2;
}
@media (max-width: 767px) {
  .welcome_hot_product_item_content {
    padding: 11px 0 13px;
  }
  .welcome_hot_product_item_title {
    font-size: 16px;
  }
  .welcome_hot_product_item:hover .welcome_hot_product_item_title {
    color: #515151;
  }
}

.welcome_hot_product_section .welcome_hot_product_btn_wrap.animation {
  animation-name: ani_slideBottom_stop;
  animation-duration: 0s;
  animation-delay: 0s;
}

/* ========== 首頁熱門商品 ========== */
.welcome_product_list.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0.35s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .welcome_product_list.animation {
    animation: none;
  }
}
.welcome_product_section .welcome_btn_wrap.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0.7s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .welcome_product_section .welcome_btn_wrap.animation {
    animation: none;
  }
}
.welcome_product_section {
  /* overflow: hidden; */
  padding: 152px 0 368px;
  position: relative;
}
@media (max-width: 991px) {
  .welcome_product_section {
    padding: 74px 0 207px;
  }
}

.welcome_product_top_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  /* height: calc(100vw / 1920 * 524); */
  aspect-ratio: 3.66412;
  object-fit: cover;
  object-position: center center;
  z-index: -1;
}
.welcome_product_top_mobile_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* min-height: 50%; */
  aspect-ratio: 1.033816;
  object-fit: cover;
  z-index: -1;
  display: none;
}
.welcome_product_bottom_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  object-fit: cover;
  z-index: -2;
}
@media (max-width: 767px) {
  .welcome_product_top_bg {
    display: none;
  }
  .welcome_product_top_mobile_bg {
    display: block;
  }
  .welcome_product_bottom_bg {
    height: 50%;
  }
}
@media (max-width: 767px) {
}

.welcome_product_section .welcome_title_wrap {
  display: block;
}
.welcome_product_section .welcome_title_zh {
  color: #fff;
}
.welcome_product_section .welcome_title_en {
  color: #fff;
}

.welcome_product_btn_wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}
.welcome_product_list_prev {
  color: #fff;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.welcome_product_list_next {
  color: #fff;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.welcome_product_list_prev i,
.welcome_product_list_next i {
  font-size: 15px;
}
.welcome_product_list_prev i {
  transform: rotate(180deg);
}
.welcome_product_list_prev:hover {
  transform: translateX(-5px);
}
.welcome_product_list_next:hover {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .welcome_product_btn_wrap {
  }

  .welcome_product_btn_wrap_mobile .welcome_product_list_prev {
    display: flex;
  }
  .welcome_product_btn_wrap_mobile .welcome_product_list_next {
    display: flex;
  }
}
@media (max-width: 991px) {
  .welcome_product_btn_wrap {
    justify-content: center;
    margin-top: 110px;
  }
}
.welcome_product_list {
  margin: 0 -14px 120px;
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
  .welcome_product_list_container {
    width: 100%;
    padding: 0;
  }
  .welcome_product_list {
    margin: 0 0 73px;
  }
}
.welcome_product_item {
  margin: 0 14px;
}

.welcome_product_item:hover .product_item_pic_wrap img {
  transform: scale(1.1);
}

.welcome_product_item .product_item_pic_wrap {

}
@media (max-width: 991px) {
  .welcome_product_item {
    margin: 0 6px;
  }
  .welcome_product_item:hover .product_item_pic_wrap img {
    transform: scale(1);
  }
}
/* ========== 首頁關於我們 ========== */
.welcome_about_section {
  padding: 0 0 572px;
  position: relative;
}
.welcome_about_wrap {
  position: relative;
  z-index: 0;
}
/* @media (max-width: 1640px) {
  .welcome_about_section {
    padding: 350px 0 0px;
  }
}
@media (max-width: 1340px) {
  .welcome_about_section {
    padding: 200px 0 0px;
  }
}
@media (max-width: 1199px) {
  .welcome_about_section {
    padding: 150px 0 0px;
  }
} */
@media (max-width: 991px) {
  .welcome_about_section {
    padding: 0px 0 357px;
  }
}
.welcome_about_section::before {
  content: "";
  background: linear-gradient(to bottom, #97867c 50%, transparent);
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
}
.welcome_about_section::after {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0 0;
  background-color: #97867c;
}
.welcome_about_bottom_bg {
  position: absolute;
  z-index: -2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  object-fit: cover;
  /* min-height: 200px; */
  /* height: calc(100vw / 1920 * 339); */
}
@media (max-width: 767px) {
  .welcome_about_bottom_bg {
  }
}

.welcome_about_img_box {
  margin-bottom: -5%;
  height: calc(100vw / 1920 * 496);
}
.welcome_about_img_wrap {
  position: relative;
  top: -50%;
  height: 100%;
}
.welcome_about_img_wrap img {
  border-radius: 5px 100px 5px 100px;
  aspect-ratio: 2.82258;

  width: 100%;
  height: 100%;
  object-fit: cover;
}
.welcome_about_img_mobile {
  display: none;
}
@media (max-width: 991px) {
  .welcome_about_img_box {
    margin-bottom: -10%;
  }
  .welcome_about_img_wrap img {
    border-radius: 5px 55px 5px 55px;
  }
}
@media (max-width: 767px) {
  .welcome_about_img_wrap img {
    aspect-ratio: 1.675;
  }
  .welcome_about_img_pc {
    display: none;
  }
  .welcome_about_img_mobile {
    display: block;
  }
}
@media (max-width: 575px) {
  .welcome_about_img_box {
    margin-bottom: -20%;
    height: calc(100vw / 402 * 240);
  }
}

.welcome_about_content_wrap {
  display: flex;
}
.welcome_about_section .welcome_title_wrap {
  display: block;
  margin-bottom: 0;
  flex-shrink: 0;
}
.welcome_about_section .welcome_title_block {
  margin-bottom: 68px;
}
.welcome_about_section .welcome_title_zh {
  color: #fff;
}

@media (max-width: 991px) {
  .welcome_about_content_wrap {
  }
}
@media (max-width: 767px) {
  .welcome_about_content_wrap {
    display: block;
    margin-bottom: 64px;
  }
  .welcome_about_section .welcome_title_block {
    margin-bottom: 38px;
  }
}
.welcome_about_intro {
  font-size: 20px;
  color: #fff;
  margin-top: 56px;
  max-height: 240px;
  line-height: 1.5;
  overflow-y: auto;
  margin-left: 56px;
  padding-left: 56px;
  border-left: 1px solid #fff;
}

@media (max-width: 767px) {
  .welcome_about_intro {
    font-size: 18px;
    max-height: 100%;
    margin-left: 0;
    margin-top: 0;
    padding-left: 19px;
  }
}

.welcome_about_btn_wrap .main_btn {
  background-color: #fff;
  color: #b29787;
  border: none;
}
.welcome_about_btn_wrap .main_btn:hover {
  background-color: #b29787;
  color: #fff;
}
.welcome_about_btn_mobile_wrap {
  display: none;
}
@media (max-width: 767px) {
  .welcome_about_btn_wrap .main_btn:hover {
    background-color: #fff;
    color: #b29787;
  }
  .welcome_about_btn_pc_wrap {
    display: none;
  }
  .welcome_about_btn_mobile_wrap {
    display: flex;
    justify-content: center;
  }
}

.welcome_about_content_block.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.welcome_about_img_wrap img.animation {
  animation-name: ani_slideRight;
  animation-duration: 1s;
  animation-delay: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .welcome_about_content_block.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
  .welcome_about_img_wrap img.animation {
    animation-name: ani_slideRight_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}

/***************************welcome**************************/

/***************************關於我們**************************/
/* 底圖 */
.about_back_img_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about_back_img_wrap {
    display: none;
  }
}
.about_back_img_wrap img {
  position: absolute;
  opacity: 0.2;
  width: 35vw;
}
.about_back_img_wrap img:nth-child(1) {
  top: 3%;
  left: -10%;
}
.about_back_img_wrap img:nth-child(2) {
  top: 25%;
  right: -5%;
}
.about_back_img_wrap img:nth-child(3) {
  top: 45%;
  left: 1%;
}
.about_back_img_wrap img:nth-child(4) {
  top: 60%;
  right: -5%;
}
/* 關於我們上方區塊 */
.about_top_wrap {
  display: flex;
  margin-bottom: 150px;
}
@media (max-width: 991px) {
  .about_top_wrap {
    margin-bottom: 70px;
  }
}
.about_introduction_pic_wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .about_introduction_pic_wrap {
    width: 100%;
  }
}
.about_introduction_img {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .about_introduction_img {
    width: 465px;
    height: 310px;
  }
}
@media (max-width: 991px) {
  .about_introduction_img {
    width: 100%;
    height: 460px;
  }
}
@media (max-width: 767px) {
  .about_introduction_img {
    height: 340px;
  }
}
@media (max-width: 575px) {
  .about_introduction_img {
    height: calc((100vw - 30px) / 600 * 400);
  }
}
.about_introduction_content_wrap {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .about_introduction_content_wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 15px;
    /* transform: translateY(-50%); */
  }
}
.about_introduction_title {
  text-align: center;
  margin-bottom: 200px;
}
.about_introduction_title.mobile {
  display: none;
}
@media (max-width: 991px) {
  .about_introduction_title.mobile {
    display: block;
    margin-bottom: 20px;
  }
  .about_introduction_title.desk {
    display: none;
  }
}
.about_introduction_title_pic_wrap {
  display: inline-block;
}
@media (max-width: 991px) {
  .about_introduction_title_pic_wrap {
    display: block;
    text-align: start;
  }
}
.about_introduction_title_pic_wrap img {
  width: 200px;
  height: 40px;
  object-fit: contain;
}
.about_introduction_title_en {
  font-size: 36px;
  font-weight: bold;
  color: #e1b15c;
  position: absolute;
  top: -20px;
  left: -5px;
  z-index: 1;
  opacity: 0.5;
}
@media (max-width: 991px) {
  .about_introduction_title_en {
    display: inline-block;
    position: static;
    top: auto;
    left: auto;
    opacity: 1;
  }
}
.about_introduction_title_zh {
  font-size: 24px;
  font-weight: bold;
  color: #0554ad;
  position: absolute;
  bottom: -3px;
  left: -65px;
}
@media (max-width: 991px) {
  .about_introduction_title_zh {
    display: inline-block;
    position: static;
    bottom: auto;
    left: auto;
  }
}
.about_introduction_text {
  font-weight: bold;
  line-height: 2;
  margin-top: 50px;
  padding: 40px 30px;
  position: absolute;
  width: 125%;
  right: 0;
  color: var(--main);
  z-index: 2;
}
@media (max-width: 1199px) {
  .about_introduction_text {
    width: 135%;
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .about_introduction_text {
    margin-top: 0;
    position: relative;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .about_introduction_text {
    padding: 15px;
  }
}
.about_introduction_text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
  opacity: 0.8;
  border-radius: 20px;
}
.content_text {
  max-height: 150px;
  overflow: auto;
}
@media (max-width: 991px) {
  .content_text {
    max-height: none;
  }
}
/* 關於我們中間區塊 */
.about_child_item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  .about_child_item {
    margin-bottom: 70px;
  }
}
.about_middle_wrap .about_child_item:nth-child(even) .about_child_pic_wrap {
  order: -1;
}
@media (max-width: 991px) {
  .about_middle_wrap .about_child_item:nth-child(even) .about_child_pic_wrap {
    order: 1;
  }
  .about_middle_wrap .about_child_item:nth-child(odd) .about_child_pic_wrap {
    text-align: end;
  }
}
.about_child_content_wrap {
  width: 50%;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .about_child_content_wrap {
    width: 100%;
    margin-bottom: 20px;
  }
}
.about_child_content {
  padding-right: 50px;
}
@media (max-width: 1199px) {
  .about_child_content {
    padding-right: 10px;
  }
}
.about_middle_wrap .about_child_item:nth-child(even) .about_child_content {
  padding-right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 125%;
  padding: 40px 30px;
  z-index: 2;
}
@media (max-width: 1199px) {
  .about_middle_wrap .about_child_item:nth-child(even) .about_child_content {
    width: 135%;
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .about_middle_wrap .about_child_item:nth-child(even) .about_child_content {
    position: static;
    top: auto;
    transform: translateY(0);
    right: auto;
    width: auto;
    padding: 0;
  }
}
.about_middle_wrap
  .about_child_item:nth-child(even)
  .about_child_content::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: -1;
  opacity: 0.8;
  border-radius: 20px;
}
.about_child_title {
  color: #e1b15c;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.about_child_text {
  color: var(--main);
  font-weight: bold;
  line-height: 2;
}
.about_child_pic_wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .about_child_pic_wrap {
    width: 100%;
  }
}
.about_child_img {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  box-shadow: 20px 20px rgba(56, 105, 154, 0.45);
}
.about_middle_wrap .about_child_item:nth-child(even) .about_child_img {
  box-shadow: -20px 20px rgba(56, 105, 154, 0.45);
}
@media (max-width: 1199px) {
  .about_child_img {
    width: 465px;
    height: 310px;
  }
}
@media (max-width: 767px) {
  .about_child_img {
    width: 330px;
    height: 220px;
  }
}
/* 關於我們下方區塊 */
.about_bottom_wrap {
  padding-top: 150px;
  background-image: url("../img/about_bottom_background.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: -255px;
  margin-top: -100px;
}
@media (max-width: 1199px) {
  .about_bottom_wrap {
    margin-bottom: -220px;
  }
}
@media (max-width: 991px) {
  .about_bottom_wrap {
    padding-top: 50px;
    margin-top: -50px;
  }
}
@media (max-width: 767px) {
  .about_bottom_wrap {
    margin-bottom: -100px;
  }
}
.about_bottom_content_wrap {
  width: 60%;
  z-index: 1;
  margin-bottom: 85px;
}
@media (max-width: 1199px) {
  .about_bottom_content_wrap {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .about_bottom_content_wrap {
    width: 100%;
    margin-bottom: 30px;
  }
}
.about_bottom_text {
  padding: 40px;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  color: #194c7e;
}
@media (max-width: 991px) {
  .about_bottom_text {
    margin-bottom: 25px;
  }
}
.about_bottom_text::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  opacity: 0.7;
  border-radius: 20px;
  z-index: -1;
}
.about_bottom_btn_wrap {
  padding-left: 160px;
  position: absolute;
  bottom: -50px;
  left: 0;
}
@media (max-width: 991px) {
  .about_bottom_btn_wrap {
    padding-left: 0;
    position: static;
    bottom: auto;
    left: auto;
    text-align: center;
  }
}
.about_bottom_btn_wrap span {
  padding: 4px;
  border: 1px solid #1a80a7;
  display: inline-block;
}
.about_bottom_btn {
  /* structure */
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 20px 0;
  width: 265px;

  /* style */
  font-size: 22px;
  text-align: center;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #ffffff;
  background-color: #1a80a7;
  outline: none;
  transition: all 0.3s;
}
.about_bottom_btn:hover {
  color: #ffffff;
  background-color: #194c7e;
}
.about_mountain_pic_wrap {
  text-align: end;
  padding-right: 230px;
}
@media (max-width: 1199px) {
  .about_mountain_pic_wrap {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .about_mountain_img {
    width: 60vw;
  }
}

/* 食物圖片 */
.about_bottom_img {
  position: absolute;
  bottom: -60px;
  right: -175px;
}
@media (max-width: 991px) {
  .about_bottom_img {
    display: none;
  }
}
/* 海鷗 */
.seagull_left {
  position: absolute;
  top: 25%;
  left: 10%;
}
.seagull_middle {
  position: absolute;
  top: 60%;
  left: 45%;
}
.seagull_right {
  position: absolute;
  top: 40%;
  right: 10%;
}
/***************************關於我們**************************/

/***************************最新消息-列表**************************/
.news_item_card {
  overflow: hidden;
  display: block;
  border-radius: 15px;
  background-color: #ffffff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .news_item_card {
    margin-bottom: 30px;
  }
}
.news_hover {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  background-color: var(--main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
  z-index: 1;
}
@media (max-width: 767px) {
  .news_hover {
    display: none;
  }
}
.news_item_card:hover .news_hover {
  bottom: 50%;
  transform: translate(-50%, 50%);
  opacity: 1;
}
.news_hover_img {
  width: 90px;
  height: 65.08px;
  object-fit: contain;
  transition: all 0.3s;
}
.news_item_content_wrap {
  padding: 12px;
  color: var(--main);
}
.news_item_title {
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #a5a5a5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .news_item_title {
    height: 45px;
    font-size: 18px;
    margin-bottom: 5px;
    padding-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
  }
}
.news_item_intro {
  font-size: 18px;
  margin-bottom: 10px;
  height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news_item_intro {
    height: 73px;
    -webkit-line-clamp: 3;
  }
}
.news_item_date {
  font-size: 16px;
}
/***************************最新消息-列表**************************/

/***************************最新消息-內頁**************************/
.news_decorate_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news_decorate_wrap {
    display: none;
  }
}
.news_decorate_wrap img {
  opacity: 0.2;
  width: 30vw;
  position: absolute;
}
.news_decorate_wrap img:nth-child(1) {
  top: -100px;
  right: -240px;
}
.news_decorate_wrap img:nth-child(2) {
  bottom: -110px;
  left: -220px;
}
.news_content_date {
  font-size: 18px;
  color: var(--main);
  margin-bottom: 10px;
}
.news_content_title {
  font-size: 20px;
  color: var(--main);
  margin-bottom: 35px;
  padding-bottom: 10px;
  border-bottom: 1px solid #a5a5a5;
}
.news_content_title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 60px;
  height: 5px;
  background-color: var(--main);
}

.back_btn_wrap {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .back_btn_wrap {
    margin-top: 64px;
  }
}
.back_btn {
  /* structure */
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  margin: 0;
  padding: 10px 0;
  width: 181px;
  height: 51px;
  /* style */
  font-size: 18px;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #fff;
  background-color: #8592a2;
  border: 1px solid #8592a2;
  border-radius: 50px;
  outline: none;
  transition: all 0.3s;
}
.back_btn:hover {
  color: #8592a2;
  background-color: #fff;
}
@media (max-width: 767px) {
  .back_btn:hover {
    color: #fff;
    background-color: #8592a2;
  }
}
/***************************最新消息-內頁**************************/

/***************************品牌加盟-列表**************************/
.join_item_wrap {
  padding: 20px;
  margin-bottom: 60px;
  display: block;
}
@media (max-width: 767px) {
  .join_item_wrap {
    padding: 0;
  }
}
.join_hover_back {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--main);
  transition: ease-out 0.4s;
}
.join_item_wrap:hover .join_hover_back {
  width: 80%;
}
@media (max-width: 991px) {
  .join_item_wrap:hover .join_hover_back {
    width: 0;
  }
}
.join_item {
  display: flex;
  flex-wrap: wrap;
}
.join_content_wrap {
  color: #1a80a7;
  width: 50%;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .join_content_wrap {
    width: 100%;
  }
}
.join_item_wrap:hover .join_content_wrap {
  color: #fefdfb;
}
@media (max-width: 991px) {
  .join_item_wrap:hover .join_content_wrap {
    color: #1a80a7;
  }
}
.join_title {
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid #dedede;
}
@media (max-width: 991px) {
  .join_title {
    font-size: 25px;
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.join_content {
  margin-bottom: 40px;
  height: 120px;
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .join_content {
    height: 96px;
    -webkit-line-clamp: 4;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .join_content {
    height: 72px;
    -webkit-line-clamp: 3;
    margin-bottom: 10px;
  }
}

.more_btn_wrap.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .more_btn_wrap.animation {
    animation: none;
  }
}
.more_btn_wrap {
}
.more_btn {
  /* structure */
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  vertical-align: middle;
  margin: 0;
  padding: 10px 0;

  /* style */
  font-size: 18px;
  text-align: center;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #000;

  outline: none;
  transition: all 0.4s;
}
.more_btn img {
  width: 100%;
  max-width: 49px;
  object-fit: contain;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .more_btn {
    justify-content: flex-end;
  }
}
.more_btn:hover {
  color: #000;
  opacity: 0.7;
}
.join_item_wrap:hover .more_btn {
  color: var(--main);
  background-color: #fefdfb;
}
@media (max-width: 991px) {
  .join_item_wrap:hover .more_btn {
    color: #fefdfb;
    background-color: var(--main);
  }
}
.join_pic_wrap {
  width: 50%;
  text-align: end;
}
@media (max-width: 767px) {
  .join_pic_wrap {
    order: -1;
    width: 100%;
    padding: 17px 0;
    margin-bottom: 10px;
  }
}
.join_img {
  width: 450px;
  height: 275px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .join_img {
    width: 392.73px;
    height: 240px;
  }
}
@media (max-width: 991px) {
  .join_img {
    width: 294.55px;
    height: 180px;
  }
}
@media (max-width: 767px) {
  .join_img {
    width: 100%;
    height: 308.13px;
  }
}
@media (max-width: 575px) {
  .join_img {
    width: 100%;
    height: calc((100vw - 30px) / 450 * 275);
  }
}
/***************************品牌加盟-列表**************************/

/***************************品牌加盟-內頁**************************/
.join_html_edit {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .join_html_edit {
    margin-bottom: 80px;
  }
}
/* 加盟介紹 */
.join_in_main_content_wrap {
  margin-bottom: 100px;
}
@media (max-width: 1199px) {
  .join_in_main_content_wrap {
    margin-bottom: 40px;
  }
}
.join_in_content_wrap {
  padding-right: 55px;
}
@media (max-width: 1199px) {
  .join_in_content_wrap {
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .join_in_content_wrap {
    padding-right: 0;
  }
}
.join_in_title_wrap {
  width: 280px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .join_in_title_wrap {
    margin-bottom: 20px;
  }
}
.join_in_big_title {
  font-size: 35px;
  font-weight: bold;
  color: var(--main);
}
@media (max-width: 1199px) {
  .join_in_big_title {
    font-size: 28px;
  }
}
.join_in_title_img {
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: -1;
}
.join_title_info {
  text-align: end;
  font-size: 22px;
  font-weight: bold;
  color: #e1b15c;
}
@media (max-width: 1199px) {
  .join_title_info {
    font-size: 20px;
  }
}
.join_in_content_text {
  font-size: 20px;
  line-height: 1.3;
  color: #194c7e;
  max-height: 180px;
  overflow: auto;
}
@media (max-width: 1199px) {
  .join_in_content_text {
    max-height: 150px;
  }
}
@media (max-width: 991px) {
  .join_in_content_text {
    max-height: none;
    overflow: visible;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .join_in_content_text {
    font-size: 18px;
  }
}
.join_in_pic_wrap {
  display: flex;
  justify-content: center;
}
.join_in_img {
  width: 580px;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .join_in_img {
    width: 465px;
    height: 240px;
  }
}
@media (max-width: 991px) {
  .join_in_img {
    width: 100%;
    height: 355px;
  }
}
@media (max-width: 767px) {
  .join_in_img {
    width: 100%;
    height: 263px;
  }
}
@media (max-width: 575px) {
  .join_in_img {
    width: 100%;
    height: calc((100vw - 15px) / 580 * 300);
  }
}
/* 產品輪播 */
.join_product_wrap {
  padding-bottom: 200px;
  margin-bottom: 120px;
}
@media (max-width: 1640px) {
  .join_product_wrap {
    padding-bottom: 150px;
  }
}
@media (max-width: 1199px) {
  .join_product_wrap {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .join_product_wrap {
    margin-bottom: 60px;
  }
}
.join_product_decorate_desk {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.join_product_decorate_mobile {
  display: none;
  width: 100%;
  height: 270px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1199px) {
  .join_product_decorate_desk {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .join_product_decorate_desk {
    display: none;
  }
  .join_product_decorate_mobile {
    display: block;
  }
}
.join_product_slick {
  margin: 0 -15px;
}
.join_product_prev_btn,
.join_product_next_btn {
  cursor: pointer;
  width: 35px;
  height: 35px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: #fefdfb;
  position: absolute;
  bottom: -80px;
  z-index: 1;
  transition: all 0.3s;
}
@media (max-width: 1199px) {
  .join_product_prev_btn,
  .join_product_next_btn {
    bottom: -60px;
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .join_product_prev_btn,
  .join_product_next_btn {
    font-size: 25px;
  }
}
.join_product_prev_btn:hover,
.join_product_next_btn:hover {
  opacity: 0.7;
}
@media (max-width: 991px) {
  .join_product_prev_btn:hover,
  .join_product_next_btn:hover {
    opacity: 1;
  }
}
.join_product_prev_btn {
  left: 45%;
}
.join_product_next_btn {
  right: 45%;
}
@media (max-width: 991px) {
  .join_product_prev_btn {
    left: 35%;
  }
  .join_product_next_btn {
    right: 35%;
  }
}
.join_product_card {
  padding: 0 15px;
}
.join_product_item {
  display: block;
  border-radius: 15px;
  overflow: hidden;
}
.join_product_item:hover .image {
  transform: scale(1.2);
}
.join_product_name_wrap {
  padding: 20px;
  background-color: #194c7e;
}
.join_product_name {
  color: #ffffff;
  font-size: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}
/* 媒體報導 */
.join_report_slick {
  margin-bottom: 150px;
}
@media (max-width: 1199px) {
  .join_report_slick {
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .join_report_slick {
    margin-bottom: 80px;
  }
}
.join_report_slick .news_item_card {
  margin-bottom: 10px;
}
.join_report_slick .welcome_news_prev_btn {
  left: 35%;
}
.join_report_slick .welcome_news_next_btn {
  right: 35%;
}
/* 加盟規格 */
.join_specification_wrap {
  margin-bottom: 120px;
  height: 575px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .join_specification_wrap {
    height: 800px;
    margin-bottom: 60px;
  }
}
.join_specification_block {
  color: #fefdfb;
  height: 445px;
  z-index: 2;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .join_specification_block {
    height: auto;
    padding: 40px 15px;
  }
}
.join_specification_block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.6;
  z-index: -1;
}
.join_row {
  height: 100%;
}
.specification_wrap {
  height: 100%;
  border-right: 2px solid #fefdfb;
}
@media (max-width: 767px) {
  .specification_wrap {
    height: auto;
    border-right: 0;
    border-bottom: 1px solid #fefdfb;
  }
}
.join_specification_icon_wrap {
  display: flex;
  flex-wrap: wrap;
}
.join_specification_icon_item {
  width: 33.333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 35px;
}
.join_specification_icon {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .join_specification_icon img {
    transform: scale(0.8);
  }
}
@media (max-width: 767px) {
  .join_specification_icon img {
    transform: scale(0.9);
  }
}
.join_specification_text {
  font-size: 20px;
}
@media (max-width: 991px) {
  .join_specification_text {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .join_specification_text {
    font-size: 20px;
  }
}
.condition_wrap {
  height: 100%;
}
@media (max-width: 767px) {
  .condition_wrap {
    padding-top: 30px;
  }
}
.condition_content_wrap {
  padding-left: 20px;
  padding-right: 80px;
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .condition_content_wrap {
    padding-left: 15px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .condition_content_wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.join_specification_title_wrap {
  text-align: center;
  padding-top: 40px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .join_specification_title_wrap {
    margin-bottom: 40px;
    padding-top: 0;
  }
}
.join_specification_title {
  font-size: 24px;
  font-weight: bold;
  color: #fefdfb;
}
@media (max-width: 767px) {
  .join_specification_title {
    font-size: 22px;
  }
}
.join_specification_title_img {
  width: 155px;
  height: 30px;
  object-fit: contain;
  position: absolute;
  top: 7px;
  right: -50px;
  z-index: 1;
}
/* 加盟流程背景裝飾 */
.join_process_img_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.join_process_img_wrap img {
  width: 30vw;
  position: absolute;
  opacity: 0.2;
}
.join_process_img_wrap img:nth-child(1) {
  top: 0;
  right: -100px;
}
.join_process_img_wrap img:nth-child(2) {
  bottom: 0;
  left: -100px;
}
/* 加盟表單 */
/* 右邊海鷗 */
.join_seagull1 {
  position: absolute;
  top: 15%;
  left: 5%;
  z-index: 1;
}
/* 左邊海鷗 */
.join_seagull2 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  z-index: 1;
}
@media (max-width: 1199px) {
  .join_seagull1,
  .join_seagull2 {
    display: none;
  }
}
.join_form_title_wrap {
  text-align: center;
  padding-top: 40px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .join_form_title_wrap {
    margin-bottom: 40px;
    padding-top: 10px;
  }
}
.join_form_title {
  font-size: 24px;
  font-weight: bold;
  color: var(--main);
  z-index: 2;
}
@media (max-width: 767px) {
  .join_form_title {
    font-size: 22px;
  }
}
.join_form_title_img {
  width: 155px;
  height: 30px;
  object-fit: contain;
  position: absolute;
  top: 7px;
  right: -50px;
  z-index: -1;
}
.join_form_wrap {
  background-color: #d2f0ff;
  padding-bottom: 200px;
  margin-bottom: -260px;
}
@media (max-width: 767px) {
  .join_form_wrap {
    padding-top: 20px;
    padding-bottom: 100px;
    margin-bottom: -100px;
  }
}
.form_decorate {
  width: 100%;
}
@media (max-width: 767px) {
  .form_decorate {
    display: none;
  }
}
.join_input_wrap {
  display: flex;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .join_input_wrap {
    flex-direction: column;
  }
}
.join_input_label {
  font-size: 20px;
  color: var(--main);
  margin-right: 20px;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .join_input_label {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.join_input_group {
  width: 50%;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .join_input_group {
    width: 60%;
  }
}
@media (max-width: 991px) {
  .join_input_group {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .join_input_group {
    width: 100%;
  }
}
.open_store_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.open_store_select_wrap {
  width: 45%;
}
@media (max-width: 767px) {
  .open_store_select_wrap {
    width: 100%;
    margin-bottom: 20px;
  }
}
.open_radio_wrap {
  width: 50%;
  display: flex;
}
@media (max-width: 767px) {
  .open_radio_wrap {
    width: 100%;
  }
}
.check_radio_wrap {
  height: 100%;
  display: flex;
  align-items: center;
}
/***************************品牌加盟-內頁**************************/

/****************************品牌介紹****************************/
#about_section .page_title_wrap {
  align-items: center;
  column-gap: 80px;
  margin-bottom: 65px;
}

#about_section .page_title_nav_block {
  width: calc(80% - 80px);
}
#about_section .page_title_block {
  margin-bottom: 47px;
}
#about_section .other_page_nav_scroll {
  width: 100%;
  position: relative;
  z-index: 1;
}

#about_section .other_page_nav_scroll::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  height: 100%;
  width: 130px;
  background: linear-gradient(
    to right,
    rgba(160, 148, 140, 0),
    rgb(160, 148, 140)
  );
  pointer-events: none;
}
#about_section .other_page_nav_list {
  flex-direction: row;
}

#about_section .other_page_nav_item {
  width: auto;
}
.about_logo {
  flex-shrink: 0;
  max-width: 312px;
  width: 20%;
  position: relative;
  z-index: 1;
}
.about_logo img {
  width: 100%;
  object-fit: contain;
}
@media (max-width: 1199px) {
  .about_logo {
    max-width: 200px;
  }
}
@media (max-width: 991px) {
  #about_section .page_title_nav_block {
    width: auto;
  }
  #about_section .page_title_wrap {
    margin-bottom: 40px;
    column-gap: 20px;
  }
  #about_section .page_title_block {
    margin-bottom: 0;
  }
  .about_logo {
    width: 100%;
    max-width: 75px;
  }
}
.about_content {
  border-radius: 5px;
  background-color: #fff;
  padding: 40px 55px 69px;
  position: relative;
  z-index: 0;
}
.other_page_content_bg {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
}
.other_page_content_mobile_bg {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
  display: none;
}
.about_title_wrap {
  text-align: center;
}
.about_title {
  display: inline-block;
  color: #515151;
  border-top: 1px solid var(--main);
  border-bottom: 1px solid var(--main);
  padding: 12px 25px 10px;
  font-size: 20px;
  margin-bottom: 42px;
}
@media (max-width: 991px) {
  .about_content {
    padding: 20px 20px 36px;
  }
  .other_page_content_bg {
    display: none;
  }
  .other_page_content_mobile_bg {
    display: block;
  }
  .about_title {
    display: block;
    padding: 16px 15px;
    margin-bottom: 24px;
    color: #736258;
  }
}

.other_page_wrap .back_btn {
  background-color: #fff;
  color: #736258;
  border: none;
}
.other_page_wrap .back_btn:hover {
  background-color: #736258;
  color: #fff;
}
@media (max-width: 991px) {
  .other_page_wrap .back_btn:hover {
    background-color: #fff;
    color: #736258;
  }
}
/****************************品牌介紹****************************/

/****************************產品介紹****************************/

#product_section .page_title_block {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  #product_section .page_title_wrap {
    margin-bottom: 28px;
  }
}
.product_search_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 15px;
}

.product_search_input_wrap {
  position: relative;
  width: 355px;
}
.product_search_input_wrap input {
  position: relative;
  z-index: 2;
  border: 1px solid #c9c9c9;
  background-color: #fff;
  border-radius: 20px;
  padding: 11px 17px;
  width: 100%;
  height: 41px;
  font-size: 18px;
}
.product_search_input_wrap input::placeholder {
  color: #969696;
}
.product_search_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  width: 32px;
  height: 32px;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #8592a2;
  border-radius: 50px;
}
.product_search_btn i {
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 991px) {
  .product_search_wrap {
    display: block;
    width: 192px;
    margin-bottom: 0;
  }

  .product_search_input_wrap {
    max-width: 100%;
  }
  .product_search_input_wrap input {
    font-size: 16px;
    height: 28px;
    padding: 4px 12px;
  }
  .product_search_btn {
    width: 18px;
    height: 18px;
  }
  .product_search_btn i {
    font-size: 8px;
  }
}
@media screen and (max-width: 767px) {
  .product_search_input_wrap input {
    font-size: 14px;
  }
}
/* 商城列表 */
.product_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 35px;
  row-gap: 40px;
  margin-bottom: 88px;
}
@media (max-width: 991px) {
  .product_list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 14px;
    margin-bottom: 64px;
  }
}
.product_item {
  background-color: #fff;
  border: 1px solid #c9c9c9;
  border-radius: 3px;
}
.product_item_pic_wrap {
  position: relative;
  border: 6px solid transparent;
  background-color: #fff;
  border-radius: 3px;
  overflow: hidden;
}

.product_item_pic_wrap img {
  width: 100%;
  height: 100%;
  aspect-ratio: 335 / 290;
  object-fit: contain;
  transition: all 0.75s;
}
.product_item:hover .product_item_pic_wrap img {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .product_item_pic_wrap {
    border-width: 3px;
  }
  .product_item_pic_wrap {
  }
  .product_item:hover .product_item_pic_wrap img {
    transform: scale(1);
  }
}
.product_item_hardness {
  display: flex;
  align-items: center;
  column-gap: 3px;
  color: var(--main);
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  left: 12px;
  bottom: 14px;
  /* padding-left: 12px;
  padding-bottom: 14px; */
}
.star-rating {
  position: relative;
  display: inline-block;
  font-size: 0;
}

.star {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: none;
}
.star svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* 空心邊框 */
.star path {
  stroke: #7d6252;
  stroke-width: 2;
  fill: none;
}

/* 填滿區塊 */
.star .fill {
  fill: #7d6252;
  clip-path: inset(0 100% 0 0);
  /* 預設 0% */
  transition: clip-path 0.3s;
}
@media (max-width: 767px) {
  .product_item_hardness {
    font-size: 12px;
    left: 4px;
    bottom: 5px;
  }
  .star {
    width: 8px;
    height: 8px;
  }
}
.product_item_content {
  padding: 25px 10px;
  text-align: center;
}
.product_item_title {
  font-size: 22px;
  color: #515151;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
  transition: all 0.3s;
}
.product_item:hover .product_item_title {
  color: var(--main);
}
@media (max-width: 991px) {
  .product_item_content {
    padding: 14px 10px 12px;
  }
  .product_item_title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .product_item_title {
    font-size: 14px;
  }
}
/****************************產品介紹****************************/

/****************************產品介紹-內頁****************************/

.product_content_box {
}
.product_content_col_2 {
  display: flex;
  column-gap: 40px;
  margin-bottom: 87px;
}
@media (max-width: 991px) {
  .product_content_box {
  }
  .product_content_col_2 {
    display: block;
    margin-bottom: 32px;
  }
}
.product_content_img_block {
  width: calc(54% - 40px);
}
.product_content_img_wrap {
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 16px;
  background-color: #fff;
  border: 6px solid transparent;
  transition: all 0.3s;
  position: relative;
}
.product_content_img {
  width: 100%;
  height: 100%;
  aspect-ratio: 335 / 290;
  object-fit: contain;
  transition: all 0.75s;
}
@media (max-width: 991px) {
  .product_content_img_wrap {
    border-width: 4px;
    margin-bottom: 14px;
  }
  .product_content_img_block {
    width: 100%;
  }
}
.product_content_hardness {
  display: flex;
  align-items: center;
  column-gap: 3px;
  color: var(--main);
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  left: 32px;
  bottom: 32px;
  /* padding-left: 12px;
  padding-bottom: 14px; */
}
@media (max-width: 1199px) {
  .product_content_hardness {
    left: 24px;
    bottom: 20px;
  }
}
@media (max-width: 767px) {
  .product_content_hardness {
    /* font-size: 15px; */
    left: 20px;
    bottom: 16px;
  }
  .product_content_hardness .star {
    width: 18px;
    height: 18px;
  }
}
.product_small_pic_wrap {
  margin: 0 22px;
}
.product_small_pic {
  cursor: pointer;
  width: 100%;
  margin: 0 6px;
  border-radius: 5px;
  border: 1px solid #c9c9c9;
  overflow: hidden;
}
.product_small_pic_img {
  width: 100%;
  object-fit: contain;
  aspect-ratio: 335 / 290;
}

@media (max-width: 767px) {
  .product_small_pic_wrap {
    margin: 0 20px;
  }
  .product_small_pic {
    cursor: pointer;
    margin: 0 4.5px;
  }
}
.product_prev_btn,
.product_next_btn {
  /* width: 12px; */
  height: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  color: #b29787;
  cursor: pointer;
  z-index: 90;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.3s;
  z-index: 1;
}
.product_prev_btn {
  left: 0;
}
.product_next_btn {
  right: 0;
}
.product_prev_btn:hover,
.product_next_btn:hover {
  opacity: 0.7;
}
.product_prev_btn i {
  font-size: 19px;
  transform: scale(-1);
}
.product_next_btn i {
  font-size: 19px;
}
@media (max-width: 991px) {
  .product_prev_btn:hover,
  .product_next_btn:hover {
    color: #b29787;
    opacity: 1;
  }
  .product_prev_btn i {
    font-size: 14px;
  }
  .product_next_btn i {
    font-size: 14px;
  }
}
.product_prev_btn {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  left: -17px;
}
.product_next_btn {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  right: -17px;
}

.product_prev_btn img,
.product_next_btn img {
  width: 11px;
  object-fit: contain;
}

.product_content_block {
  width: 46%;
  display: flex;
  flex-direction: column;
  padding-top: 65px;
}
@media (max-width: 1640px) {
  .product_content_block {
    padding-top: 24px;
  }
}
.product_content_title {
  font-size: 28px;
  color: #000;
  font-weight: bold;
  border-bottom: 1px solid #c9c9c9;
  padding-bottom: 15px;
  margin-bottom: 30px;
  line-height: 1.2;
}
.product_content_intro {
  font-size: 20px;
  max-height: 300px;
  overflow-y: auto;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .product_content_block {
    width: 100%;
  }
  .product_content_title {
    font-size: 20px;
    padding-bottom: 14px;
    margin-bottom: 23px;
  }
  .product_content_intro {
    font-size: 16px;
    max-height: 100%;
  }
}
/****************************產品介紹-內頁****************************/

/****************************品牌出發點****************************/

.brand_text {
  display: flex;
  align-items: center;
  column-gap: 16px;
  font-size: 36px;
  color: #fff;
  line-height: 1;
}
.brand_text::before {
  content: "";
  display: inline-block;
  height: 30px;
  width: 1px;
  background-color: #fff;
}
@media (max-width: 991px) {
  .brand_text {
    font-size: 15px;
    column-gap: 8px;
  }
  .brand_text::before {
    height: 12px;
  }
}
.brand_content {
  border-radius: 5px;
  background-color: #fff;
  padding: 40px 55px 69px;
  position: relative;
  z-index: 0;
}
.brand_title_wrap {
  text-align: center;
}
.brand_title {
  display: inline-block;
  color: #515151;
  border-top: 1px solid var(--main);
  border-bottom: 1px solid var(--main);
  padding: 12px 25px 10px;
  font-size: 20px;
  margin-bottom: 42px;
}
@media (max-width: 991px) {
  .brand_content {
    padding: 20px 20px 36px;
  }
  .brand_title {
    display: block;
    padding: 16px 15px;
    margin-bottom: 24px;
    color: #736258;
  }
}

/****************************品牌出發點****************************/

/****************************作品集****************************/
.portfolio_text {
  display: flex;
  align-items: center;
  column-gap: 16px;
  font-size: 36px;
  color: #fff;
  line-height: 1;
}
.portfolio_text::before {
  content: "";
  display: inline-block;
  height: 30px;
  width: 1px;
  background-color: #fff;
}
@media (max-width: 991px) {
  .portfolio_text {
    font-size: 15px;
    column-gap: 8px;
  }
  .portfolio_text::before {
    height: 12px;
  }
}
.portfolio_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 54px;
  margin-bottom: 88px;
}
@media (max-width: 991px) {
  .portfolio_list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 8px;
    row-gap: 16px;
    margin-bottom: 64px;
  }
}

.portfolio_item {
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
}
@media (max-width: 991px) {
  .portfolio_item {
  }
}
.portfolio_item_img_wrap {
  position: relative;
  z-index: 0;
  aspect-ratio: 440 / 424.14;
  overflow: hidden;
}
.portfolio_item_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.75s;
}
.portfolio_item:hover .portfolio_item_img_wrap img {
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .portfolio_item_img_wrap {
  }

  .portfolio_item:hover .portfolio_item_img_wrap img {
    transform: scale(1);
  }
}
.portfolio_item_content {
  padding: 20px 0;
}
.portfolio_item_title {
  font-size: 22px;
  padding: 0 15px;
  color: #515151;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}
.portfolio_item:hover .portfolio_item_title {
  color: #8592a2;
}
@media (max-width: 767px) {
  .portfolio_item_content {
    padding: 10px 0;
  }
  .portfolio_item_title {
    font-size: 16px;
    padding: 0 5px;
  }
  .portfolio_item:hover .portfolio_item_title {
    color: #515151;
  }
}
/****************************作品集****************************/
/****************************作品集內容頁****************************/

.portfolio_content {
  border-radius: 5px;
  background-color: #fff;
  padding: 40px 55px 69px;
  position: relative;
  z-index: 0;
}
.portfolio_title_wrap {
  text-align: center;
}
.portfolio_title {
  display: inline-block;
  color: #515151;
  border-top: 1px solid var(--main);
  border-bottom: 1px solid var(--main);
  padding: 12px 25px 10px;
  font-size: 20px;
  margin-bottom: 42px;
}
@media (max-width: 991px) {
  .portfolio_content {
    padding: 20px 20px 36px;
  }
  .portfolio_title {
    display: block;
    padding: 16px 15px;
    margin-bottom: 24px;
    color: #736258;
  }
}
/****************************作品集內容頁****************************/

/****************************常見問題****************************/
#qa_section .other_page_nav_link {
  background-color: #cfc3bc;
  color: #fff;
}

#qa_section .other_page_nav_link:not([href]) {
  color: #fff;
}
#qa_section .other_page_nav_link .other_page_nav_link_single_icon {
  color: #fff;
}
#qa_section .other_page_nav_link:hover,
#qa_section .other_page_nav_link.active,
#qa_section .other_page_nav_link.active_single {
  background-color: var(--main);
  color: #fff;
}
#qa_section .other_page_nav_link:hover i,
#qa_section .other_page_nav_link.active i,
#qa_section .other_page_nav_link.active_single i {
  color: #fff;
}

.qa_nav_text {
  grid-column: 2/3;
  color: var(--main);
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  column-gap: 12px;
  margin-bottom: 32px;
}
.qa_nav_text span {
  flex-shrink: 0;
}
.qa_nav_text::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--main);
}
@media (max-width: 991px) {
  .qa_nav_text {
    grid-column: auto;
  }
}
.list_qa_wrap {
  margin-bottom: 85px;
}
@media (max-width: 991px) {
  .list_qa_wrap {
    margin-bottom: 60px;
  }
}
.list_qa_item_q_block {
  background-color: #b29787;
  color: #fff;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  margin-bottom: 16px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s;
}
.list_qa_item_q_block:hover,
.list_qa_item_q_block.active {
  background-color: #fff;
  color: var(--main);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.list_qa_item_q_block.active {
  padding: 25px 24px;
}
.list_qa_item_q span {
  display: inline-block;
  line-height: 1;
  font-size: 36px;
  margin-right: 26px;
}
.list_qa_item_q {
  display: flex;
  align-items: center;

  font-size: 20px;
}
.list_qa_item_q_block i {
  font-size: 16px;
  color: #fff;
  transition: all 0.3s;
}
.list_qa_item_q_block:hover i,
.list_qa_item_q_block.active i {
  color: var(--main);
  transform: rotate(90deg);
}
.list_qa_item_a {
  padding: 10px 40px 53px 20px;
  display: flex;
}
.list_qa_item_a > span {
  display: inline-block;
  color: #b29787;
  line-height: 1;
  font-size: 36px;
  margin-right: 26px;
}
@media (max-width: 991px) {
  .list_qa_item_q_block {
    padding: 20px 23px;
  }

  .list_qa_item_q span {
    font-size: 20px;
  }
  .list_qa_item_q {
    font-size: 18px;
  }

  .list_qa_item_a {
    padding: 8px 24px 40px;
    display: block;
  }
  .list_qa_item_a > span {
    margin-right: 0;
    margin-bottom: 18px;
  }
}

/****************************常見問題****************************/

/****************************健康分享-列表****************************/
@media (max-width: 991px) {
  #health_section .breadcrumb_wrap {
    margin-bottom: 15px;
  }

  #health_section .product_search_wrap {
    margin-bottom: 26px;
  }
}
.health_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 38px;
  row-gap: 65px;
  margin-bottom: 75px;
}
@media (max-width: 991px) {
  .health_list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .health_list {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }
}
.health_item {
}
@media (max-width: 575px) {
  .health_item {
    display: flex;
    column-gap: 12px;
  }
}
.health_item_img_wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 0;
  margin-bottom: 19px;
}
.health_item_img_wrap::before {
  content: "MORE";
  width: 86px;
  height: 86px;
  border-radius: 5px;
  border: 1px solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  opacity: 0;
  transition: all 0.3s;
}
.health_item_img_wrap::after {
  content: "";
  position: absolute;
  inset: 0 0;
  background: #1b1b1b;
  opacity: 0.55;
  z-index: 0;
  opacity: 0;
  transition: all 0.3s;
}
.health_item:hover .health_item_img_wrap::before {
  opacity: 1;
}
.health_item:hover .health_item_img_wrap::after {
  opacity: 0.7;
}
.health_item_img_wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: all 0.75s;
}
@media (max-width: 991px) {
  .health_item:hover .health_item_img_wrap::before {
    opacity: 0;
  }
  .health_item:hover .health_item_img_wrap::after {
    opacity: 0;
  }
}
@media (max-width: 575px) {
  .health_item_img_wrap {
    margin-bottom: 0;
    max-width: 105px;
  }
}
.health_item_content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.health_item_nav {
  color: #be5c44;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 19px;
}
.health_item_title {
  font-size: 20px;
  color: #000;
  margin-bottom: 29px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}
.health_item_more {
  margin-top: auto;
  font-size: 16px;
  text-align: right;
  color: #000;
}
@media (max-width: 767px) {
  .health_item_nav {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .health_item:first-of-type .health_item_nav {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .health_item_title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .health_item_more {
    font-size: 16px;
  }
}
/****************************健康分享-列表****************************/

/****************************健康分享-內容****************************/
.health_content_title {
  font-size: 22px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dedede;
}
@media (max-width: 767px) {
  .health_content_title {
    padding-bottom: 15px;
  }
}

.health_article_nav_wrap {
  padding: 24px 12px 35px;
  background-color: #ac9a9a;
  max-width: 365px;
  margin-bottom: 54px;
}
.health_article_nav_title {
  font-size: 22px;
  color: #31190b;
  margin-bottom: 16px;
}

.health_article_nav_item {
  padding: 0 14px;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  column-gap: 9px;
  margin-bottom: 10px;
  transition: all 0.3s;
}

.health_article_nav_item:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #fff;
}
.health_article_nav_item::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #fff;
}
.health_article_nav2_item {
  padding: 0 44px;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  column-gap: 6px;
  margin-bottom: 10px;
  transition: all 0.3s;
}
.health_article_nav2_item:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #fff;
}

.health_article_item {
  margin-bottom: 50px;
}
.health_article1_item_title {
  font-size: 22px;
  margin-bottom: 20px;
}
.health_article1_item_content {
  font-size: 18px;
}
.health_article2_list {
  padding-left: 19px;
}
.health_article2_item_title {
  font-size: 20px;
  margin-bottom: 10px;
}
.health_article2_item_content {
  padding-left: 27px;
  font-size: 18px;
}
/****************************健康分享-內容****************************/

/****************************影音專區-列表****************************/
#video_section .breadcrumb_wrap {
  margin-bottom: 305px;
}
@media (max-width: 991px) {
  #video_section .breadcrumb_wrap {
    margin-bottom: 60px;
  }
}
.video_list {
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .video_list {
    margin-bottom: 50px;
  }
}
.video_item {
  padding: 0 100px;
  border-bottom: 1px solid #dedede;
  margin-bottom: 150px;
}
.video_item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
.video_item_iframe_wrap {
  aspect-ratio: 1.778225;
  margin-bottom: 50px;
}
.video_item_iframe_wrap iframe {
  width: 100%;
  height: 100%;
}
.video_item_title {
  font-size: 25px;
  padding-bottom: 50px;

  /* display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden; */
}
@media (max-width: 991px) {
  .video_item {
    padding: 0;
    border-bottom: none;
    margin-bottom: 30px;
  }
  .video_item_iframe_wrap {
    margin-bottom: 15px;
  }
  .video_item_content_wrap {
    padding: 0 10px;
  }
  .video_item_title {
    font-size: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dedede;
  }
  .video_item:last-of-type .video_item_title {
    border-bottom: none;
  }
}
/****************************影音專區-列表****************************/

/* =================表單基本設定-開始================= */
.form_wrap {
  max-width: 680px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .form_wrap {
  }
}
@media (max-width: 991px) {
  .form_wrap {
  }
}
@media (max-width: 767px) {
  .form_wrap {
  }
}
.form_style {
  background-color: #ffffff;
  padding: 44px 65px;
  border: 1px solid #cacaca;
  border-radius: 15px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.member_data_form_style {
  box-shadow: none;
  border-radius: 0;
}
@media (max-width: 767px) {
  .form_style {
    padding: 42px 25px 38px;
  }
}
.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_col_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 25px;
}
.input_group {
  width: 100%;
  margin-bottom: 15px;
}
/* select 客製 icon 加 wrap */
.select_wrap {
  position: relative;
}
.select_wrap::after {
  content: "";
  background: url("../img/select_img.png") center center/contain no-repeat;
  width: 11px;
  height: 6px;
  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: 40px;
  font-size: 18px;
  /* padding-left: 20px; */
  padding: 4px 10px;
  color: #000;
  border-radius: 5px;
  border: 1px solid #939393;
  background-color: #f8f8f8;
}
@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;
  column-gap: 25px;
}
@media (max-width: 767px) {
  .input_address_wrap {
    margin-bottom: 30px;
    /* flex-wrap: wrap; */
  }
}
.select_item {
  width: 40%;
}
@media (max-width: 767px) {
  .input_address_wrap .select_item:first-child {
  }
}
.postal_code {
  flex-shrink: 0;
  width: 100px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  color: #000;
}
@media (max-width: 767px) {
  .postal_code {
    width: 32px;
  }
}
/* =================表單基本設定-結束================= */

/* =================會員頁面表單設定-開始================= */
.member_form_title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 42px;
}
.member_recaptcha_wrap {
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .member_recaptcha_wrap {
    margin-bottom: 30px;
  }
}
.g_recaptcha_wrapper {
  display: flex;
  justify-content: center;
}
/* =================會員頁面表單設定-結束================= */

/* =================表單樣式設定-開始================= */
.input_label {
  color: #000;
  font-size: 20px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .input_label {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .input_label {
    font-size: 18px;
  }
}
.input_style {
  font-size: 18px;
  padding: 4px 10px;
  width: 100%;
  height: 45px;
  border-radius: 5px;
  border: 1px solid #939393;
  background-color: #f8f8f8;
  transition: all 0.3s;
}
.input_style::placeholder {
  color: #8d8d8d;
}
@media (max-width: 767px) {
  .input_style {
    font-size: 16px;
  }
}
.readonly {
  color: #a5a5a5;
  background-color: #ececec;
}
.radio_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 40px;
}
.radio_item {
  margin-right: 25px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .radio_item {
    margin-right: 20px;
  }
}
.radio_style {
  /* width: 17px;
  height: 17px; */
  /* margin-right: 10px; */
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
/* 自訂外圈 */
.radio_style + .radio_label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid #000; /* 外圈黑色 */
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  box-sizing: border-box;
}

/* 勾選後的內圈 */
.radio_style:checked + .radio_label::before {
  background: radial-gradient(circle, #c00 7px, transparent 8px);
}

.radio_label {
  font-size: 18px;
  color: #000000;
  margin: 0;
  display: flex;
  align-items: center;
}
.radio_label a {
  color: #003fc8;

  text-decoration: underline;
  text-underline-offset: 3px; /* 底線與字的距離 */
  transition: all 0.3s;
}
.radio_label a:hover {
  text-decoration: none;
}
.main_recaptcha_wrap {
  padding-top: 25px;
}
@media (max-width: 767px) {
  .main_recaptcha_wrap {
  }
}
#or_text {
  text-align: center;
  font-size: 20px;
  color: #888;
  position: relative;
}
@media (max-width: 767px) {
  #or_text {
    padding: 5px 0;
  }
}
#or_text::after,
#or_text::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background-color: #888;
}
#or_text::after {
  left: 0;
}
#or_text::before {
  right: 0;
}

/* 有icon的input */
.icon_input_group {
  border-radius: 10px;
  border: 1px solid var(--main);
  display: flex;
  overflow: hidden;
}
.icon_input_wrap {
  text-align: center;
  line-height: 50px;
  width: 55px;
  height: 50px;
  background-color: #d2f0ff;
  color: #194c7e;
  font-size: 20px;
  border-right: 1px solid var(--main);
}
.icon_input_style {
  font-size: 18px;
  padding-left: 10px;
  width: calc(100% - 55px);
  height: 50px;
  border: 0;
}
/* =================表單樣式設定-結束================= */

/***************************會員登入**************************/
.forget_pwd_wrap {
  text-align: end;
  margin-bottom: 45px;
}
.forget_btn {
  font-size: 18px;
  color: #003fc8;
}
.forget_btn i {
  margin-right: 5px;
}
.forget_btn:hover {
  color: #003fc8;
  opacity: 0.7;
}

.member_login_captcha_warp {
  margin-bottom: 10px;
}

.line_login_btn {
  /* structure */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  margin: 0;
  padding: 8px 0;
  width: 100%;

  /* style */
  font-size: 18px;
  /* font-weight: bold; */
  text-align: center;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #ffffff;
  background-color: #05c654;
  border-radius: 5px;
  border: 2px solid #05c654;
  outline: none;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .line_login_btn {
    padding: 10px 0;
  }
}
.line_login_btn i {
  font-size: 23px;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .line_login_btn i {
    font-size: 23px;
  }
}
.line_login_btn:hover {
  color: #05c654;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .line_login_btn:hover {
    color: #fff;
    background-color: #05c654;
  }
}
.login_remark {
  font-size: 18px;
  text-align: center;
  margin-top: 5px;
  color: #848484;
}
@media (max-width: 767px) {
  .login_remark {
  }
}
.login_remark a {
  margin-left: 10px;
  color: #003fc8;
  /* text-decoration: underline; */
}
.member_btn {
  /* structure */
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 8px 0;
  width: 100%;

  /* style */
  font-size: 18px;
  /* font-weight: bold; */
  text-align: center;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #ffffff;
  background-color: #6b6363;
  border-radius: 5px;
  border: 2px solid #6b6363;
  outline: none;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .member_btn {
  }
}
.member_btn:hover {
  color: #6b6363;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .member_btn:hover {
    color: #fff;
    background-color: #6b6363;
  }
}
/***************************會員登入**************************/

/***************************會員註冊**************************/
.verify_block {
  display: flex;
  align-items: center;
  column-gap: 23px;
}

.verify_btn {
  flex-shrink: 0;
  width: 135px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background-color: #c8161d;
  border: 1px solid #c8161d;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}
.verify_btn:hover {
  background-color: #fff;
  color: #c8161d;
}
@media (max-width: 767px) {
  .verify_block {
    column-gap: 6px;
  }
  .verify_btn {
    width: 69px;
  }
  .verify_btn:hover {
    background-color: #c8161d;
    color: #fff;
  }
}
/***************************會員註冊**************************/

/***************************忘記密碼**************************/
.member_forget_captcha_wrap {
  margin: 35px 0 10px;
}
/***************************忘記密碼**************************/
/* ======會員中心基本設定====== */
.member_list_mobile {
  display: none;
}
@media (max-width: 991px) {
  .member_list_desk {
    display: none;
  }
  .member_list_mobile {
    display: block;
  }
}
.member_list_title_warp {
  display: flex;
  column-gap: 4px;
  padding: 12px 0;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  font-size: 20px;
  color: #000;
  text-align: center;
}
@media (max-width: 767px) {
  .member_list_title_warp {
    font-size: 14px;
  }
}
.member_list_item {
  display: flex;
  column-gap: 4px;
  font-size: 18px;
  color: #000;
  padding: 20px 0;
  border-bottom: 1px solid #dedede;
  text-align: center;
  transition: all 0.3s;
}
.member_list_item:hover {
  opacity: 0.5;
  color: #000;
}
@media (max-width: 767px) {
  .member_list_item {
    font-size: 14px;
  }
}
.list_cell {
  flex: 1;
}
.list_cell2 {
  flex: 0.5;
}
.list_cell_text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_item_mobile {
  padding: 30px 0;
  border-bottom: 1px solid #dedede;
}
.item_text_wrap {
  display: flex;
}
.item_text_mobile {
  width: 50%;
}
.item_text {
  color: var(--main);
  font-size: 20px;
  margin-bottom: 15px;
}
.item_text span:first-child {
  margin-right: 20px;
}
.member_order_item_mobile_payment_block {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.member_order_list_btn_wrap {
  max-width: 83px;
}
.member_list_btn_wrap {
  text-align: center;
}
.member_list_btn {
  display: block;
  color: #ffffff;
  background-color: #c8161d;
  border: 1px solid #c8161d;
  border-radius: 5px;
  font-size: 16px;
  padding: 10px 0;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .member_order_list_btn_wrap {
    width: 65px;
  }
  .member_list_btn {
    padding: 5px 0;
    font-size: 14px;
    margin: auto;
  }
}
.member_list_btn:hover {
  color: #c8161d;
  background-color: #ffffff;
}

/* ======會員中心基本設定====== */

/***************************會員中心**************************/
#member_data_section .form_style {
  padding: 38px 58px 60px;
}
@media (max-width: 767px) {
  #member_data_section .form_style {
    padding: 37px 20px 60px;
  }
}
#member_data_section input,
#member_data_section select {
  background-color: #fff;
}
#member_data_section .main_btn_wrap {
  margin-top: 50px;
  padding-bottom: 0;
}

.line_bind_wrap {
  margin-bottom: 30px;
}
.line_bind_btn {
  /* structure */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  margin: 0;
  padding: 12px 0;
  width: 100%;

  /* style */
  font-size: 18px;
  /* font-weight: bold; */
  text-align: center;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #ffffff;
  background-color: #05c654;
  border-radius: 5px;
  border: 2px solid #05c654;
  outline: none;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .line_bind_btn {
    padding: 10px 0;
  }
}
.line_bind_btn i {
  font-size: 34px;
  margin-right: 18px;
}
@media (max-width: 767px) {
  .line_bind_btn i {
    font-size: 23px;
  }
}
.line_bind_btn:hover {
  color: #05c654;
  background-color: #ffffff;
}
/***************************會員中心**************************/

/***************************歷史訂單-列表**************************/
.member_order_item_p_name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}

.member_order_item_mobile_p_name {
  text-align: left;
  margin-bottom: 8px;
}
.member_order_item_mobile_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/***************************歷史訂單-列表**************************/

/***************************歷史訂單**************************/

.member_order_item {
  min-height: 85px;
  margin-bottom: 45px;
}

@media (max-width: 767px) {
  #member_order_content_section .breadcrumb_wrap {
    margin-bottom: 0;
  }
  .member_order_item {
  }
}
.detail_information_desk {
}
.detail_information_mobile {
  display: none;
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--main);
}
@media (max-width: 767px) {
  /* .detail_information_desk {
    display: none;
  }
  .detail_information_mobile {
    display: block;
  } */
}
.member_detail_text {
  margin-bottom: 15px;
}
.member_detail_text span {
  margin-right: 20px;
}
.member_detail_item {
  display: flex;
  padding: 40px 0;
  font-size: 18px;
  color: #000;
  background-color: #f8f8f8;
}
.order_list_title {
  color: #000;
  font-size: 20px;
  padding-top: 10px;
  padding-bottom: 12px;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 767px) {
  .order_list_title {
    font-size: 14px;
  }
  .member_detail_item {
    font-size: 14px;
  }
}
.order_list_title::after {
  content: "";
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translate(-50%);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #fefdfb;
}
@media (max-width: 767px) {
  .order_list_title::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translate(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fefdfb;
  }
}
.order_title_desk {
  display: flex;
}
.order_title_mobile {
  display: none;
}
@media (max-width: 767px) {
  /* .order_title_desk {
    display: none;
  }
  .order_title_mobile {
    display: block;
  } */
}
.order_item {
  display: flex;
  flex-wrap: wrap;
  padding: 25px 0;
  border-bottom: 1px solid #c4c4c4;
  color: #000;
  font-size: 20px;
  position: relative;
}
.order_pic_wrap {
  overflow: hidden;
  position: relative;
  max-width: 166px;
  width: 100%;
}

.order_pic_bg {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: contain;
}

.order_pic_block {
  width: 60%;
  display: flex;
  align-items: center;
}
.order_block {
  width: 40%;
  display: flex;
}
@media (max-width: 767px) {
  .order_item {
    padding: 35px 0;
    font-size: 14px;
  }
  .order_pic_wrap {
    max-width: 80px;
  }
  .order_item .order_block:first-child {
    margin-bottom: 15px;
  }
  .order_item .order_block:last-child {
  }
  .order_item .order_block:last-child .list_cell {
    margin-bottom: 5px;
  }
}
.order_product_wrap {
  width: 100%;
  padding: 0 20px 0 40px;
}
@media (max-width: 767px) {
  .order_product_wrap {
    padding: 0 10px;
  }
}
.order_product_wrap .order_product_text:first-child {
  margin-bottom: 10px;
}
.order_product_text {
  display: flex;
}
@media (max-width: 991px) {
  .order_product_text {
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .order_product_text {
    padding-left: 0;
  }
}
.order_product_text span:first-child {
  display: inline-block;
  width: 55px;
}
.order_product_spec_text span {
  color: #8d8d8d;
}
.order_product_text span:last-child {
  display: inline-block;
  width: calc(100% - 55px);
}
.order_detail_text_wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .order_detail_text_wrap {
    /* display: block; */
  }
  .order_detail_text {
    /* padding-left: 20%; */
    display: flex;
    justify-content: space-between;
  }
}
.detail_title_mobile {
  display: none;
}
@media (max-width: 767px) {
  .detail_title_mobile {
    display: inline-block;
    /* margin-right: 20px; */
    width: 75px;
  }
}
/* 價錢區塊 */
.order_detail_price {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .order_detail_price {
    height: auto;
    display: block;
  }
}
.order_price_text_wrap {
  margin: 60px 0;
}
@media (max-width: 767px) {
  .order_price_text_wrap {
    margin: 25px 0;
  }
}
.order_price_text_item {
  margin-left: auto;
  width: 40%;
  font-size: 22px;
  color: #000;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-end;
}
.order_price_text_item > div {
  flex-shrink: 0;
  flex: 1;
  text-align: right;
  margin-right: 15%;
}
.order_price_text_wrap .order_price_text_item:last-child {
  color: #c80707;
}
@media (max-width: 1199px) {
  .order_price_text_item > div {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .order_price_text_item {
    font-size: 14px;
    width: 40%;
  }
}
@media (max-width: 400px) {
  .order_price_text_item {
    width: 50%;
  }
}
.order_price_text_item span {
  margin-left: 10px;
  font-size: 20px;
}

.order_content_title_wrap {
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  padding: 10px 0 12px;
  text-align: center;
  margin-bottom: 45px;
}
.order_content_title {
  font-size: 20px;
}
@media (max-width: 767px) {
  .order_content_title {
    font-size: 18px;
  }
}

.order_info_text {
  font-size: 20px;
  margin-bottom: 15px;
  color: #000000;
  display: flex;
}
@media (max-width: 767px) {
  .order_info_text {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.order_info_text span {
  color: #000;
  display: inline-block;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .order_info_text span {
  }
}
.order_show_text {
  display: inline;
}
/* 手機版訂單標題 */
.mobile_order_title {
  display: none;
}
@media (max-width: 991px) {
  .mobile_order_title {
    font-size: 18px;
    display: block;
    width: 55px;
  }
  .mobile_order_name {
    width: calc(100% - 55px);
  }
}
.order_product_name {
  font-size: 18px;
  width: calc(100% - 50px);
}

.member_order_content_btn_wrap {
  border-top: 1px solid #dedede;
  padding-top: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.member_order_content_btn_wrap.center {
  justify-content: center;
}
.member_order_content_btn {
  display: block;
  color: #ffffff;
  background-color: #c8161d;
  border: 1px solid #c8161d;
  border-radius: 5px;
  font-size: 16px;
  padding: 10px 0;
  width: 168px;
  text-align: center;
}

@media (max-width: 767px) {
  .member_order_content_btn_wrap {
    padding-top: 80px;
  }
  .member_order_content_btn {
    width: 150px;
    padding: 8px 0;
  }
}
.member_order_content_btn:hover {
  color: #c8161d;
  background-color: #ffffff;
}

/***************************歷史訂單**************************/

/***************************修改密碼**************************/
#member_password_update_section .member_btn {
  border-color: #c8161d;
  background-color: #c8161d;
}
#member_password_update_section .member_btn:hover {
  color: #c8161d;
  background-color: #fff;
}
/***************************修改密碼**************************/
/***************************購物車**************************/
.cart_list_title {
  color: #fff;
  font-size: 20px;
  padding: 11px 0;
  background-color: #ac9a9a;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 767px) {
  .cart_list_title {
    font-size: 14px;
  }
}
.cart_title_wrap_desk {
  display: flex;
}
.cart_title_wrap_mobile {
  display: none;
}
@media (max-width: 991px) {
  .cart_title_wrap_desk {
    display: none;
  }
  .cart_title_wrap_mobile {
    display: block;
    text-align: left;
    padding: 0 18px;
  }
}

.cart_item {
  display: flex;
  flex-wrap: wrap;
  padding: 25px 0;
  border-bottom: 1px solid #c4c4c4;
  color: #000;
  font-size: 20px;
  position: relative;
}
.cart_pic_wrap {
  overflow: hidden;
  position: relative;
  max-width: 166px;
  width: 100%;
}
.cart_pic_bg {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: contain;
}
.cart_pic_wrap .outter {
}
.cart_pic_block {
  width: 60%;
  display: flex;
  align-items: center;
}
.cart_block {
  width: 40%;
  display: flex;
}
@media (max-width: 991px) {
  .cart_item {
    padding: 53px 0 29px;
  }
  .cart_pic_wrap {
    max-width: 143px;
  }
}
@media (max-width: 767px) {
  .cart_item {
    font-size: 14px;
  }

  .cart_item .cart_block:first-child {
    margin-bottom: 15px;
  }
  .cart_item .cart_block:last-child {
  }
  .cart_item .cart_block:last-child .list_cell {
    margin-bottom: 5px;
  }
}

.cart_number_block {
  width: 45px;
  margin: 0 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cart_number_block {
    margin: 0;
    color: #31190b;
  }
}
.cart_block_left {
  width: 50%;
  display: flex;
}
@media (max-width: 991px) {
  .cart_block_left {
    width: 100%;
  }
}
.cart_product_wrap {
  display: flex;
}
.cart_product_left {
  width: 40%;
}
@media (max-width: 991px) {
  .cart_product_left {
    width: 40%;
  }
}
.cart_product_right {
  width: 60%;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cart_product_right {
    padding-left: 10px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}
.cart_product_name {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cart_product_name {
    height: auto;
    justify-content: flex-start;
    font-size: 18px;
  }
}
.cart_product_name.mobile_block {
  display: none;
}
@media (max-width: 991px) {
  .cart_product_name.mobile_block {
    display: flex;
  }
  .mobile_none {
    display: none;
  }
}
.cart_product_spec {
  color: #8d8d8d;
}
@media (max-width: 991px) {
  .cart_product_spec {
    font-size: 15px;
  }
}
.cart_block_right {
  width: 50%;
  display: flex;
}
.mobile_show_text {
  display: none;
}
@media (max-width: 991px) {
  .cart_block_right {
    width: 100%;
    flex-direction: column;
    margin-top: -20px;
  }
  .cart_block_right .list_cell:nth-child(2) {
    order: -1;
  }
  .cart_block_right .list_cell_text {
    /* justify-content: space-between; */
    justify-content: flex-end;
    margin-bottom: 15px;
    height: auto;
    width: 50%;
    margin-left: auto;
    font-size: 20px;
  }
  .mobile_show_text {
    display: block;
  }
}

.cart_quantity_wrap {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart_quantity_wrap .quantity_wrap {
  max-width: 186px;
}
@media (max-width: 991px) {
  .cart_quantity_wrap {
    height: auto;
    justify-content: flex-end;
  }
  .cart_quantity_wrap .quantity_wrap {
    max-width: 133px;
  }
}
.cart_quantity_wrap .quantity_btn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart_quantity_wrap .quantity_input {
  width: calc(100% - 80px);
  height: 40px;
}
@media (max-width: 991px) {
  .cart_quantity_wrap .quantity_input {
    width: calc(100% - 62px);
    height: 31px;
  }
  .cart_quantity_wrap .quantity_btn {
    width: 31px;
    height: 31px;
  }
}
.trash_wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
@media (max-width: 991px) {
  .trash_wrap_mobile {
    position: absolute;
    top: 0;
    right: 0;
  }
}
.trash_style {
  cursor: pointer;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 10px;
  color: #231815;
  transition: all 0.3s;
}
.trash_style i {
  font-weight: bolder;
}
.trash_style:hover {
  color: #c70101;
}
@media (max-width: 991px) {
  .trash_style i {
    font-size: 17px;
  }
}

.order_info_form {
  padding-top: 30px;
}
.cart_wrap {
  margin-bottom: 50px;
}

.cart_discount_wrap {
  display: flex;
  align-items: center;

  margin: 0 51px 58px 79px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.cart_discount_wrap .input_style {
  height: 40px;
  background-color: #fff;
  border: 1px solid #6b6363;
  border-radius: 0;
  font-size: 22px;
}
.cart_discount_btn {
  width: 180px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ac9a9a;
  border: 1px solid #ac9a9a;

  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s;
}
.cart_discount_btn:hover {
  background-color: #fff;
  color: #ac9a9a;
}
@media (max-width: 767px) {
  .cart_discount_wrap {
    margin: 0 0 60px;
  }
  .cart_discount_wrap .input_style {
    font-size: 16px;
  }
  .cart_discount_btn {
    font-size: 16px;
  }
  .cart_discount_btn:hover {
    background-color: #ac9a9a;
    color: #fff;
  }
}

/* 總金額資料 */
.cart_price_text_wrap {
  margin: 60px 51px 60px 0;
}
@media (max-width: 767px) {
  .cart_price_text_wrap {
    margin: 25px 17px 25px 0;
  }
}
.cart_price_text_item {
  margin-left: auto;
  width: 100%;
  font-size: 22px;
  color: #000;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-end;
}
.cart_price_text_item > div {
  flex-shrink: 0;
  text-align: right;
}
.cart_price_text_item > div:last-of-type {
  min-width: 220px;
}
.cart_price_text_wrap .cart_price_text_item:last-child {
  color: #c80707;
}

@media (max-width: 767px) {
  .cart_price_text_item {
  }
  .cart_price_text_item > div:last-of-type {
    min-width: 200px;
  }
}
@media (max-width: 400px) {
  .cart_price_text_item {
  }
}

/* 購物車訂單資訊 */
.cart_title {
  padding: 13px 15px;
  background-color: #ac9a9a;
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin-bottom: 45px;
}

.cart_info_list {
  margin-bottom: 50px;
}
.cart_info_list .input_address_wrap {
  justify-content: flex-start;
}
.cart_info_list input,
.cart_info_list select {
  background-color: #fff;
}
.cart_info_list textarea {
  height: 173px;
}
.cart_same_info_wrap {
  margin-bottom: 35px;
}

/* 取貨方式 */
.cart_select_store {
  font-size: 18px;
  width: 186px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #6b6363;
  border: 1px solid #6b6363;
  border-radius: 5px;
  color: #fff;
  margin: 25px 0 15px;
  transition: all 0.3s;
}
.cart_submit_btn:hover {
  background-color: #fff;
  color: #c8161d;
}
@media (max-width: 767px) {
  .cart_submit_btn:hover {
    background-color: #c8161d;
    color: #fff;
  }
}
/* 確認結帳 */
.cart_submit_btn_wrap {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 45px;
}

.cart_submit_btn {
  font-size: 18px;
  width: 290px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c8161d;
  border: 1px solid #c8161d;
  border-radius: 5px;
  color: #fff;
  transition: all 0.3s;
}
.cart_submit_btn:hover {
  background-color: #fff;
  color: #c8161d;
}
@media (max-width: 767px) {
  .cart_submit_btn:hover {
    background-color: #c8161d;
    color: #fff;
  }
}
/***************************購物車**************************/

/***************************聯絡我們**************************/
#contact_section {
}
.contact_wrap {
}
.contact_wrap .html_ckeditor_content {
  margin-bottom: 53px;
}

.contact_box {
  background-color: #fff;
  border: 1px solid #b29787;
  border-radius: 5px;
  overflow: hidden;
}
.contact_form_title {
  font-size: 24px;
  font-weight: bold;
  padding: 20px 0;
  text-align: center;
  background-color: #b29787;
  color: #fff;
}

.contact_form {
  padding: 40px 35px 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 86px;
}
@media (max-width: 991px) {
  .contact_form {
    padding: 32px 15px 30px;
    display: block;
  }
}

.contact_input_label {
  display: block;
  margin-bottom: 32px;
}

.contact_input_title {
  font-size: 22px;
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
}
@media (max-width: 767px) {
  .contact_input_title {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .contact_input_label {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
/* 聯絡我們輸入樣式 */
.contact_input {
  font-size: 20px;
  padding: 0 16px;
  width: 100%;
  height: 58px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #c9c9c9;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .contact_input {
    /* font-size: 16px; */
  }
}
input::placeholder,
.contact_textarea::placeholder {
  color: #aaa;
  opacity: 0.5;
}
.contact_textarea {
  font-size: 20px;
  padding: 15px 16px;
  width: 100%;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #c9c9c9;
  resize: none;
  height: 288px;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .contact_textarea {
    /* font-size: 16px; */
  }
}

.contact_submit_block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.contact_submit_block .main_btn {
  width: 164px;
}
@media (max-width: 1199px) {
  .contact_submit_block {
    margin-top: 30px;
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .contact_submit_block {
    margin-top: 16px;
    align-items: center;
  }
}
.contact_btn_wrap {
  text-align: center;
}
@media (max-width: 1199px) {
  .contact_btn_wrap {
    margin-top: 20px;
  }
}
.contact_btn {
  /* structure */
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 15px 0;
  width: 250px;

  /* style */
  font-size: 20px;
  /* font-weight: bold; */
  text-align: center;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #ffffff;
  background-color: var(--main);
  border-radius: 60px;
  border: 2px solid var(--main);
  outline: none;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .contact_btn {
    padding: 10px 0;
    width: 150px;
  }
}
.contact_btn:hover {
  color: var(--main);
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .contact_info_wrap {
    margin-bottom: 50px;
  }
}
.contact_map_wrap {
  margin-top: 76px;
}
.contact_map_wrap iframe {
  width: 100%;
  transform: translateY(28px);
  height: 512px;
  margin-top: -28px;
}
@media (max-width: 991px) {
  .contact_map_wrap iframe {
    transform: translateY(38px);
    margin-top: -38px;
  }
}
@media (max-width: 767px) {
  .contact_map_wrap {
    margin-top: 38px;
  }
  .contact_map_wrap iframe {
    transform: translateY(16px);
    margin-top: -16px;
    max-height: 246px;
  }
}
/***************************聯絡我們**************************/

/****************************foot***************************/
.side_nav_wrap {
  position: fixed;
  z-index: 20;
  bottom: 91px;
  right: 71px;
  transition: all 0.3s;
}
.side_nav_wrap.bottom_active {
  bottom: 150px;
}
@media (max-width: 767px) {
  .side_nav_wrap {
    right: 15px;
    bottom: 50px;
  }
  .side_nav_wrap.bottom_active {
    bottom: 170px;
  }
}
.side_nav_list {
  margin-bottom: 12px;
  display: none;
}
.side_nav_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  color: #fff;
  border-radius: 50%;
  margin-bottom: 15px;
}
.side_nav_item img {
  width: 100%;
  height: 100%;
}
.side_nav_item:hover {
  color: #fff;
  transform: scale(0.9);
}

.side_nav_item_title {
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .side_nav_item {
    width: 65px;
    height: 65px;
  }
}
.side_switch_btn_wrap {
  width: 75px;
  height: 75px;
  margin-bottom: 11px;
}
.side_switch_btn_wrap img {
  width: 100%;
  height: 100%;
}
.side_nav_btn_close {
  display: none;
}
@media (max-width: 767px) {
  .side_switch_btn_wrap {
    width: 65px;
    height: 65px;
  }
}

#go_top {
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  background-color: #b29787;
  transition: all 0.3s;
}
.go_top_img {
  width: 100%;
  object-fit: contain;
}
#go_top.active {
  visibility: visible;
  opacity: 1;
}
#go_top:hover {
  transform: scale(0.9);
}
#go_top i {
  /* display: block; */
  transform: rotate(-90deg);
  font-size: 13px;
  animation: go_top_icon_ani 2s infinite linear;
}
@keyframes go_top_icon_ani {
  0% {
    transform: translateY(0px) rotate(-90deg);
  }
  50% {
    transform: translateY(-2.5px) rotate(-90deg);
  }
  100% {
    transform: translateY(0) rotate(-90deg);
  }
}
#go_top span {
  display: block;
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 767px) {
  #go_top {
    width: 65px;
    height: 65px;
  }
}

footer {
  position: relative;
  z-index: 10;
}

.foot_top_wrap {
  padding: 28px 0 27px;
  position: relative;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.15);
  border-bottom: 10px solid #b29787;
}
.foot_main_wrap {
  display: flex;
  align-items: center;
  /* flex-wrap: wrap; */
}
@media (max-width: 991px) {
  .foot_top_wrap {
    padding: 16px 0 0;
    border-bottom: 8px solid #b29787;
  }
  .foot_main_wrap {
    display: block;
  }
}
@media (max-width: 767px) {
  .foot_main_wrap {
    /* padding: 0 19px; */
  }
}
.foot_left {
  display: flex;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .foot_left {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;

    margin-bottom: 13px;
  }
}

.foot_right {
  display: flex;
  flex-direction: column;

  /* align-items: flex-end; */
  /* justify-content: center; */
}
@media (max-width: 991px) {
  .foot_right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .foot_right {
  }
}
/* 頁底logo */
.foot_logo_wrap {
  padding-right: 40px;
}

@media (max-width: 991px) {
  .foot_logo_wrap {
    padding-right: 0;
    margin-bottom: 14px;
  }
}

.foot_logo {
  max-width: 280px;
  width: 100%;
  object-fit: contain;
}

@media (max-width: 991px) {
  .foot_logo {
    max-width: 217px;
  }
}

/* copyright設定 */
.foot_copyright_wrap {
}
.foot_copyright {
  width: 100%;
  font-size: 14px;
  color: #8592a2;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .foot_copyright {
    font-size: 14px;
    position: relative;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .foot_copyright_wrap {
    padding: 19px 0 24px;
  }
}
@media (max-width: 575px) {
  .foot_copyright {
    font-size: 10px;
  }
}
.foot_copyright a {
  color: #8592a2;
}
.foot_copyright a:hover {
  color: #8592a2;
  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: 17px;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .foot_social_link_wrap {
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .foot_social_link_mobile_wrap {
  }
}
.foot_social_link {
  display: inline-block;
  color: #000;
  font-size: 24px;
}
.foot_social_link:hover {
  color: #000;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .foot_social_link {
  }
}
.foot_nav_list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 20px;
}
.foot_nav_item {
  font-size: 18px;
  color: #000;
  transition: all 0.3s;
}
.foot_nav_item:hover {
  color: #000;
  opacity: 0.7;
}
@media (max-width: 991px) {
  .foot_nav_list {
    column-gap: 15px;
  }
}
@media (max-width: 767px) {
  .foot_nav_list {
    justify-content: center;
  }
}
@media (max-width: 400px) {
  .foot_nav_list {
    column-gap: 10px;
  }
  .foot_nav_item {
    font-size: 16px;
  }
}
/* 店家資訊 */
.foot_info_wrap {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
}

@media (max-width: 991px) {
  .foot_info_wrap {
    flex-direction: column;
    row-gap: 4px;
    margin-bottom: 4px;
  }
}
@media (max-width: 767px) {
  .foot_info_wrap {
  }
}
.foot_info_item {
  display: flex;
  align-items: center;
  position: relative;
}
.foot_info_item::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  height: 15px;
  width: 1px;
  background-color: #8592a2;
}
.foot_info_item:first-of-type:before {
  display: none;
}
@media (max-width: 991px) {
  .foot_info_item {
    margin-left: 9px;
  }
  .foot_info_item::before {
    left: -8px;
  }
  .foot_info_item:first-of-type:before {
    display: block;
  }
}

.info_text {
  font-size: 18px;
  display: flex;
}

.info_title {
  flex-shrink: 0;
  position: relative;
  color: #8592a2;
  margin-right: 4px;
}
.foot_info_item a {
  color: #8592a2;
}
.foot_info_item a:hover {
  opacity: 0.7;
}
.foot_info_item a:not([href]) {
  color: #8592a2;
}
/* 頁面連結 */
.foot_link_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .info_text {
    font-size: 16px;
  }
  .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;
}
