@charset "utf-8";
/* CSS Document */

/* 共通 css開始  */
* {
  box-sizing: border-box;
}

:root {
  --main: #b19a6f;
}

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 {
  /* structure */
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin: 0;
  padding: 10px 0;
  width: 130px;

  /* style */
  font-size: 18px;
  text-align: center;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #000;
  background-color: transparent;
  border: none;
  border-radius: 27px;
  outline: none;
  transition: all 0.3s;
}

@media (max-width: 767px) {
  .main_btn {}
}

.main_btn:hover {
  opacity: 0.7;
}

/* ========== 圖片比例 ========== */
.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: 50px; */
  height: 24px;
  /* border-radius: 50%; */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  /* background-color: #b8b8b8; */
  /* border: 1px solid transparent; */
  border-bottom: 2px solid transparent;
  font-size: 18px;
  transition: all 0.2s ease-in-out;
  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: 50px; */
  height: 24px;
  /* border-radius: 50%; */
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--main);
  /* border: 1px solid var(--main); */
  /* background-color: var(--main); */
  border-bottom: 2px solid var(--main);
  font-size: 18px;
  transition: all 0.2s ease-in-out;
  margin: 0 10px;
  padding: 0 4px;
  font-weight: normal;
}

.gs_pagination a.pag_btn:hover {
  color: var(--main);
  border-color: var(--main);
}

@media (max-width: 991px) {

  .gs_pagination strong,
  .gs_pagination a.pag_btn {
    font-size: 16px;
    margin: 0 10px;
  }
}

@media (max-width: 400px) {

  .gs_pagination strong,
  .gs_pagination a.pag_btn {
    margin: 0 8px;
  }
}

.gs_pagination a.pag_arrow {
  text-align: center;
  color: var(--main);
  margin: 0 12px;
  transition: all 0.5s ease-in-out;
  display: inline-block;
  font-weight: bold;
}

.gs_pagination a.pag_arrow i {
  font-size: 27px;
}

.gs_pagination a.pag_arrow:hover {
  color: #b8b8b8;
}

@media (max-width: 991px) {
  .gs_pagination a.pag_arrow {
    margin: 0 10px;
  }

  .gs_pagination a.pag_arrow i {
    font-size: 22px;
  }
}

@media (max-width: 400px) {
  .gs_pagination a.pag_arrow {
    margin: 0 8px;
  }
}

/* ========== 導航欄漢堡特效 ========== */
.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hamRotate.active {
  transform: rotate(45deg);
}

.hamRotate180.active {
  transform: rotate(180deg);
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #000;
  stroke-width: 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: 73px;
  right: 18px;
  z-index: 100;
  width: 100%;
  max-width: 220px;
  max-height: calc(100vh - 73px);
  background-color: #fffbfb;
  overflow-y: auto;
  overscroll-behavior: none;
  display: none;
}

@media (min-width: 992px) {
  .head_bar_mobile {
    display: none !important;
  }
}

.ham_logo_pic_wrap {
  text-align: center;
}

.nav_item_mobile {
  width: 100%;
  color: #ffffff;
  font-size: 20px;
}

.nav_item_mobile:last-of-type {
  border-bottom: none;
}

.nav_link_mobile {
  display: block;
  padding: 16px 30px;
  text-align: center;
  color: #000;
  position: relative;
  font-size: 18px;
}

.nav_item_mobile:last-child .nav_item_mobile_title {
  border-bottom: none;
}

.nav_item_mobile_title {
  border-bottom: 1px solid #939393;
}

.nav_item_mobile_title.active {
  background-color: #6b6363;
  border-color: #fff;
}

.nav_link_mobile:hover {
  color: #000;
}

.nav_item_mobile_title.active .nav_link_mobile {
  color: #fff;
}

.nav_link_mobile i {
  font-size: 13px;
  color: var(--main);
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  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: #6b6363;
  /* 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: 14px 0px;
  margin: 0 20px;
  color: #fff;
  border-bottom: 1px solid #939393;
  position: relative;
  text-align: center;
  font-size: 16px;
}

.nav_item_classification_mobile_link:not([href]) {
  color: #fff;
}

.nav_item_classification_mobile_link i {
  font-size: 13px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: var(--main);
  transition: all 0.3s;
}

.nav_item_classification_mobile.active .nav_item_classification_mobile_link i {
  transform: translateY(-50%) rotate(90deg);
}

.nav_item_classification_mobile:last-child .nav_item_classification_mobile_link {
  border-bottom: none;
}

@media (max-width: 991px) {

  .nav_item_classification_mobile_link:not([href]):hover,
  .nav_item_classification_mobile_link:hover,
  .nav_item_classification_mobile.active .nav_item_classification_mobile_link {
    color: var(--main);
  }
}

.nav_item_classification_mobile_2_wrap {
  background-color: #d0e1fa;
  display: none;
  border-bottom: 1px solid #b6c6d9;
}

.nav_item_classification_mobile_2_link {
  display: block;
  color: #000;
  border-bottom: 1px dashed #b6c6d9;
  padding: 20px 15px;
  text-align: center;
  font-size: 16px;
}

.nav_item_classification_mobile_2_link:hover {
  color: #000;
}

.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;
}

/* 行動裝置會員中心 下拉選單 */

/* 行動裝置版選單 */
.head_member_bar_mobile {
  position: absolute;
  top: 73px;
  right: 0px;
  z-index: 80;
  width: 100%;
  max-width: 220px;
  max-height: calc(100vh - 73px);
  background-color: #6b6363;
  overflow-y: auto;
  overscroll-behavior: none;
  display: none;
}

@media (min-width: 992px) {
  .head_member_bar_mobile {
    /* display: none !important; */
  }
}

.member_nav_item_mobile_head {
  padding: 16px 0 17px;
  border-bottom: 1px solid #fff;
  text-align: center;
  font-size: 20px;
  color: #fff;
  position: relative;
}

.member_nav_item_mobile_head i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}

.member_nav_item_mobile {
  width: 100%;
  color: #ffffff;
  font-size: 20px;
  padding: 0 20px;
}

.member_nav_item_mobile:last-of-type {
  border-bottom: none;
}

.member_nav_link_mobile {
  display: block;
  padding: 16px 30px;
  text-align: center;
  color: #fff;
  position: relative;
  font-size: 18px;
}

.member_nav_item_mobile:last-child .member_nav_item_mobile_title {
  border-bottom: none;
}

.member_nav_item_mobile_title {
  border-bottom: 1px solid #939393;
}

.member_nav_link_mobile:hover {
  color: #fff;
}

.member_nav_item_mobile_title.active .member_nav_link_mobile {
  color: #b19a6f;
}

.member_nav_link_mobile i {
  font-size: 13px;
  color: var(--main);
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.member_nav_item_mobile_title.active .member_nav_link_mobile i {
  transform: translateY(-50%) rotate(90deg);
  color: #fff;
}

/* 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 * 302);
}

@media (max-width: 767px) {
  .page_banner {
    height: calc(100vw / 428 * 180);
  }
}

.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: 65px;
}

.breadcrumb_list {
  text-align: right;
  color: #9a9595;
}

.breadcrumb_link {
  font-size: 18px;
  color: #9a9595;
  transition: all 0.3s;
}

.breadcrumb_link:hover,
.breadcrumb_link.active {
  color: var(--main);
}

@media screen and (max-width: 991px) {
  .breadcrumb_wrap {
    margin-bottom: 60px;
  }

  .breadcrumb_list {
    padding: 5px 0;
  }

  .breadcrumb_link {
    /* font-size: 16px; */
  }
}

@media screen and (max-width: 767px) {
  .breadcrumb_link {
    /* font-size: 14px; */
  }
}

/* ========== 頁面設定 ========== */
.page_wrap {
  padding-top: 27px;
  padding-bottom: 120px;
  position: relative;
}

.page_wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0px;
  right: 0;
  z-index: -1;
  width: 40%;
  background: linear-gradient(to right, #fff, #6b6363);
  opacity: 0.1;
}

@media (max-width: 767px) {
  .page_wrap {
    padding-top: 15px;
    padding-bottom: 140px;
  }
}

.main_title_wrap {
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .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;
}

.page_col_2 {
  display: grid;
  grid-template-columns: 250px calc(100% - 300px);
  gap: 50px;
}

@media (max-width: 1199px) {}

@media (max-width: 991px) {
  .page_col_2 {
    grid-template-columns: 100%;
    gap: 0;
  }
}

/* ===其它頁選單=== */
.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;
}

.page_nav_link {
  flex-shrink: 0;
  padding: 18px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-bottom: 1px solid #939393;
  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 .page_nav_link_single_icon {
  color: #fff;
}

.page_nav_link:hover,
.page_nav_link.active,
.page_nav_link.active_single {
  background-color: #6b6363;
  color: #fff;
  border-color: var(--main);
}

.page_nav_link:hover i,
.page_nav_link.active i,
.page_nav_link.active_single i {
  color: #fff;
}

.page_nav_link.active i {
  transform: rotate(90deg);
}

.page_nav_link:not([href]):hover {
  color: #fff;
}

.page_nav_text {
  font-size: 20px;
  color: #be5c44;
  margin-bottom: 35px;
  font-weight: bold;
}

@media (max-width: 991px) {
  .page_nav_text {
    display: none;
  }
}

.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 #757b82;
  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;
}

/*****************************************************************************/
/*-----------------------------------start-----------------------------------*/
/*****************************************************************************/

/****************************head****************************/
header {
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all 0.3s;
}

.header_main_block {
  position: relative;
}

@media (max-width: 991px) {
  header {}

  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: 80px;
}

@media (max-width: 991px) {
  .head_main_wrap {
    justify-content: space-between;
    height: 73px;
  }
}

.head_bottom_wrap {
  padding: 20px 0;
}

@media (max-width: 1199px) {
  .head_bottom_wrap {
    padding: 10px 0;
  }
}

@media (max-width: 991px) {
  .head_bottom_wrap {
    display: none;
  }
}

.header.active .head_bottom_wrap {
  padding: 10px 0;
}

/* head logo */

/* .header.active .head_logo_decorate{
	visibility: hidden;
	opacity: 0;
} */
.head_welcome_link {}

@media (max-width: 991px) {
  .head_welcome_link {}
}

.header.active .head_welcome_link {
  /* margin-top: 10px; */
}

.head_logo_img {
  max-width: 218px;
  width: 100%;
  object-fit: contain;
}

@media (max-width: 1199px) {}

@media (max-width: 991px) {}

/* head選單設定 */
.head_bar_block {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
}

.head_bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}

@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: 4px;
  font-size: 20px;
  padding: 0px 20px;
  margin: 0 25px;
  height: 100%;
  color: #000;
  position: relative;
  letter-spacing: 2px;
}

.nav_link i {
  font-size: 10px;
  transform: rotate(90deg);
  color: #000;
}

.nav_link::before {
  content: "";
  position: absolute;

  left: calc(100% + 25px);
  top: 50%;
  transform: translateY(-50%);

  width: 1px;
  height: 16px;
  background-color: #000;
  transition: all 0.3s;
}

.nav_item:last-of-type .nav_link::before {
  display: none;
}

.nav_link::after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0;
  height: 0px;
  background-color: var(--main);
  transition: all 0.3s;
}

@media (max-width: 1640px) {
  .nav_link {
    padding: 0px 12px;
    margin: 0 15px;
    font-size: 18px;
  }

  .nav_link::before {
    left: calc(100% + 15px);
  }
}

@media (max-width: 1199px) {
  .nav_item {
    margin: 0 5px;
  }

  .nav_link {
    font-size: 18px;
    padding: 0px 5px;
    margin: 0 10px;
  }

  .nav_link::before {
    left: calc(100% + 10px);
  }
}

.nav_item:hover .nav_link,
.nav_link.active,
.nav_item:hover .nav_link i,
.nav_link.active i {
  color: var(--main);
}

.nav_item:hover .nav_link::after,
.nav_link.active::after {
  height: 7px;
}

/* 導覽列購物車會員區塊 */
.nav_cart_member_block {
  background-color: #716a6a;
  display: flex;
  /* align-items: center; */
  height: 100%;
  /* position: relative; */
}

.nav_cart_block {
  display: flex;
  align-items: center;
  padding: 0 28px;
  background-color: #716a6a;
  position: relative;
  transition: all 0.3s;
}


.nav_cart_block:hover {
  opacity: 0.7;
}

.nav_cart_number {
  background-color: #c8161d;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  position: absolute;
  top: 25%;
  right: 18%;
}

.nav_cart_block>img {
  width: 100%;
  max-width: 23px;
  object-fit: contain;
}

.nav_cart_block>img,
.nav_member_img_wrap>img {
  display: block;
  width: 26px;
  /* 或直接固定寬度 */
  height: auto;
}

.nav_car_text {
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 8px;
  white-space: nowrap;
}

.nav_member_img_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  background-color: #716a6a;
  transition: all 0.3s;
  gap: 5px;
  min-width: 60px;
  position: relative;
}

@media (max-width: 991px) {
.nav_member_img_wrap {
  flex-direction: row;
}
}

.nav_member_img_wrap:hover {
  opacity: 0.7;
}

.nav_member_img_wrap>img {
  width: 100%;
  max-width: 26px;
  object-fit: contain;
}

.nav_cart_member_block_mobile {
  display: none;
}

@media (max-width: 1199px) {
  .nav_cart_block {
    padding: 0 20px;
  }

  .nav_member_img_wrap {
    padding: 0 20px;
  }
}

@media (max-width: 991px) {
  .nav_cart_member_block_pc {
    display: none;
  }

  .nav_cart_member_block_mobile {
    display: flex;
    justify-content: flex-end;
    /* position: fixed; */
    top: 73px;
    left: 0;
    right: 0;
    background-color: #716a6a;
    height: 39px;
  }

  .nav_cart_block {
    padding: 0 5px;
  }

  .nav_member_img_wrap {
    padding: 0 7px;
    padding-right: 15px;
  }

  .nav_cart_number {
        top: -4px;
        right: -12px;
  }
}

.nav_cart_member_block_mobile .nav_cart_icon_wrap {
    margin-right: 9px;
}

.nav_cart_block,
.nav_member_img_wrap {
    display: flex;
    align-items: center;
    gap: 6px; 
}

.nav_cart_icon_wrap {
    position: relative;
    display: inline-block;
}

.nav_cart_label,
.nav_member_label {
    font-size: 16px; 
    color: #fff; 
    white-space: nowrap; 
}



/* head上方文字區塊 */
.head_top_list {
  position: relative;
  min-height: 45px;

  width: 100%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  /* margin-top: 80px; */
  transition: background-color 0.5s;
}

@media (max-width: 991px) {
  .head_top_list {
    /* margin-top: 112px; */
  }
}

.head_top_item {
  width: 100%;
  height: 100%;
  min-height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: absolute;
}

.head_top_item.active {
  /* position: static; */
}

/* 標題單獨控制，不要直接在 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;
  gap: 27px;
  margin-left: 37px;
}

.nav_social_link {
  padding: 40px 0 19px;
  transition: all 0.3s;
}

.nav_social_link i {
  color: #464646;
  font-size: 21px;
}

.nav_social_link:nth-child(3) i {
  font-size: 23.5px;
}

.nav_social_link:hover {
  opacity: 0.7;
}

@media (max-width: 1640px) {
  .nav_social_link_wrap {
    margin-left: 40px;
  }
}

@media (max-width: 1200px) {
  .nav_social_link_wrap {
    margin-left: 16px;
    gap: 8px;
  }
}

@media (max-width: 991px) {
  .nav_social_link_wrap {
    gap: 27px;
    margin-left: 0;
    padding: 50px 15px;
  }

  .nav_social_link {
    padding: 0;
  }
}

/* 電腦版下拉選單 */
.nav_item:hover .nav_item_classification_wrap {
  pointer-events: all;
  opacity: 1;
}

.nav_item_classification_wrap {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.nav_item_classification {
  position: relative;
  border-bottom: 1px solid #bcbcbc;
}

.nav_item_classification:last-child {
  border-bottom: none;
}

.nav_item_classification_link {
  display: block;
  font-size: 18px;
  padding: 18px 40px 18px 20px;
  background-color: var(--main);
  color: #fff;
  /* word-break: break-all; */
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.nav_item_classification_link:not([href]) {
  color: #fff;
}

.nav_item_classification_link i {
  font-size: 10px;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.nav_item_classification:hover .nav_item_classification_link,
.nav_item_classification_link:hover {
  background-color: #f9f9f9;
  color: #000;
}

.nav_item_classification:hover .nav_item_classification_link i,
.nav_item_classification_link:hover i {
  color: #000;
}

.nav_item_classification:hover .nav_item_classification_2_wrap {
  opacity: 1;
  z-index: 1;
}

.nav_item_classification_2_wrap {
  position: absolute;
  top: 0;
  left: 100%;
  /* width: 100%; */
  opacity: 0;
  z-index: -1;
  max-height: 500px;
  overflow: auto;
}

.nav_item_classification_2 {
  border-bottom: 1px solid #bcbcbc;
}

.nav_item_classification_2:last-child {
  border-bottom: none;
}

.nav_item_classification_2_link {
  display: block;
  font-size: 18px;
  padding: 18px 22px;
  background-color: #f9f9f9;
  color: #424242;
  white-space: nowrap;
  /* word-break: break-all; */
}

.nav_item_classification_2_link:hover {
  background-color: var(--main);
  color: #fff;
}

.nav_item_classification_2_link:hover {}

/* hover 選單 */
.nav_hover_wrap {
  visibility: hidden;
  position: absolute;
  top: 104px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border-radius: 5px;
  width: 160%;
  border: 5px solid #8bbed1;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .nav_hover_wrap {
    top: 84px;
    width: 170%;
  }
}

.nav_hover_link {
  font-size: 18px;
  display: block;
  padding: 0 10px;
  text-align: center;
  color: var(--main);
}

.nav_hover_text {
  display: block;
  padding: 12px;
  border-bottom: 1px solid #a5a5a5;
}

.nav_hover_link:last-child .nav_hover_text {
  border-bottom: 0;
}

.nav_hover_link:hover {
  background-color: #1a80a7;
  color: #ffffff;
}

#has_hover:hover .nav_hover_wrap {
  visibility: visible;
  opacity: 1;
}

/* head icon 按鈕 */
.icon_nav_link {
  font-size: 30px;
  color: var(--main);
  margin-left: 15px;
}

.icon_nav_link:hover {
  color: #8bbed1;
}

/* 上方空白區塊(撐高用) */
.head_top_block {
  height: 125px;
}

@media (max-width: 991px) {
  .head_top_block {
    height: 157px;
  }
}

/* 語系按鈕 */
.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 * 655);
  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 * 228);
  object-fit: cover;
}

/* 輪播點點設定 */
.main_slider .slick-dots {
  display: flex !important;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
  bottom: 19px;
  padding-right: 30px;
}

@media (max-width: 991px) {}

@media (max-width: 767px) {
  .main_slider .slick-dots {
    position: static;
    padding-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: #777777;
  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: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 45px;
}

@media (max-width: 767px) {
  .welcome_title_wrap {
    margin-bottom: 47px;
  }
}

.welcome_title_zh {
  font-size: 32px;
  color: #31190b;
  position: relative;
}

@media (max-width: 767px) {
  .welcome_title_zh {}
}

.welcome_title_zh::after {
  content: "";
  position: absolute;
  right: -22.5px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 27px;
  background-color: #939393;
}

.welcome_title_en {
  white-space: nowrap;
  font-size: 32px;
  color: #be5c44;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .welcome_title_en {}
}

.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;
  padding: 129px 0 188px;
}

@media (max-width: 767px) {
  .welcome_top_section {
    padding: 37px 0 60px;
  }
}

.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(2, 1fr);
  column-gap: 14px;
}

@media (max-width: 767px) {
  .welcome_top_list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
}


.welcome_top_item {
  width: 100%;
}

.welcome_top_item>img {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .welcome_top_list {
    column-gap: 4px;
  }
}

.welcome_top_list.animation {
  animation-name: ani_slideBottom;
  animation-duration: 0.5s;
  animation-delay: 0;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #ddd;
}

::-webkit-scrollbar-thumb {
  background: var(--main);
}

/* ========== 微信彈跳視窗 ========== */
.wechat_popup_box {
  display: none;
  position: fixed !important;
  width: 100%;
  max-width: 500px;
  height: 200px;
  background-color: #fff;
  z-index: 99999;
}

.wechat_popup_cancel {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;

  background-color: #fff;
  border: 1px solid #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  color: #575a5d;
  font-size: 17px;
  border-radius: 50%;
  cursor: pointer;

  transition: all 0.3s;
}

.wechat_popup_cancel:hover {
  color: #575a5d;
  border-color: #575a5d;
}

.wechat_popup_cancel i {
  font-weight: bolder;
  font-size: 12px;
}

.wechat_popup_content {
  padding: 50px 30px 20px;
  text-align: center;
}

.wechat_popup_title {
  font-size: 18px;
}

.wechat_popup_text {
  font-size: 50px;
  line-height: 1;
}

/* ========== 微信彈跳視窗 ========== */

/* ========== 首頁彈跳視窗 ========== */
.main_popup_box {
  display: none;
  position: relative;
  width: 80%;
  max-width: 750px;
  z-index: 99999;
}

@media (max-width: 991px) {
  .main_popup_box {
    max-width: 570px;
  }
}

.index_adblock_img {
  width: 100%;
}

.cancel {
  position: absolute;
  top: -17px;
  right: -17px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;

  background-color: #6b6363;
  border: 2px solid #fff;
  color: white;
  font-size: 17px;
  border-radius: 50%;
  cursor: pointer;

  transition: all 0.3s;
}

.cancel:hover {
  background-color: #fff;
  color: #6b6363;
}

.cancel i {
  font-weight: bolder;
}

/* ========== 首頁彈跳視窗 ========== */

/* ========== 首頁購物商城 ========== */
.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_shop_wrap .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_shop_wrap .welcome_btn_wrap.animation {
    animation: none;
  }
}

.welcome_shop_wrap {
  overflow: hidden;
  padding: 0 0 50px;
}

@media (max-width: 767px) {
  .welcome_shop_wrap {
    padding: 0 0 30px;
  }
}

/*  */
.product_shop_wrap .welcome_title_wrap {
  margin-bottom: 10px;
}

/*  */
.welcome_shop_more {
  margin-top: 80px;
}

.welcome_product_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 77px;
  row-gap: 74px;
}

@media (max-width: 991px) {
  .welcome_product_list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 47px;
  }
}

.welcome_product_item {}

.welcome_product_item:hover .product_item_pic_bg {
  opacity: 0;
}

.welcome_product_item:hover .product_item_pic_bg_hover {
  opacity: 1;
}

/* ========== 首頁影片專區 ========== */
.welcome_video_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_video_list.animation {
    animation: none;
  }
}

.welcome_shop_wrap .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_shop_wrap .welcome_btn_wrap.animation {
    animation: none;
  }
}

.welcome_video_section {
  padding: 0;
}

@media (max-width: 767px) {
  .welcome_video_section {
    padding: 0;
  }
}

.welcome_video_section .welcome_title_wrap {
  margin-bottom: 74px;
}

@media (max-width: 767px) {
  .welcome_video_section .welcome_title_wrap {
    margin-bottom: 21px;
  }
}

.welcome_video_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 38px;
  row-gap: 65px;
  margin-bottom: 85px;
}

@media (max-width: 991px) {
  .welcome_video_list {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
    padding: 0 27px;
  }
}

.welcome_video_item {}

.welcome_video_item_iframe_wrap {
  aspect-ratio: 1.778225;
  margin-bottom: 20px;
}

.welcome_video_item_iframe_wrap iframe {
  width: 100%;
  height: 100%;
}

.welcome_video_item_title {
  font-size: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}

@media (max-width: 767px) {
  .welcome_video_item_iframe_wrap {
    margin-bottom: 14px;
  }

  .welcome_video_item_title {}
}

/* ========== 首頁關於我們 ========== */
.welcome_about_section {
  padding: 448px 0 0px;
  position: relative;
  overflow: hidden;
}

.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: 135px 0 0px;
  }
}

.welcome_about_top_left_img {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 20%;
  min-height: 200px;
  height: calc(100vw / 1920 * 339);
}

@media (max-width: 767px) {
  .welcome_about_top_left_img {
    top: 0;
    left: -12%;
  }
}

.welcome_about_top_right_img {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  min-height: 600px;
  height: calc(100vw / 1920 * 924);
}

@media (max-width: 767px) {
  .welcome_about_top_right_img {
    top: 30%;
    right: -10px;
    min-height: 400px;
  }
}

.welcome_about_content_wrap {
  width: 60%;
  padding-bottom: 209px;
}

.welcome_about_section .welcome_title_wrap {
  justify-content: flex-start;
  margin-bottom: 47px;
}

@media (max-width: 1640px) {
  .welcome_about_content_wrap {
    padding-bottom: 150px;
  }
}

@media (max-width: 1199px) {
  .welcome_about_content_wrap {
    padding-bottom: 80px;
  }
}

@media (max-width: 991px) {
  .welcome_about_content_wrap {
    width: 100%;
    padding-bottom: 31px;
  }

  .welcome_about_section .welcome_title_wrap {
    justify-content: center;
    margin-bottom: 21px;
  }
}

.welcome_about_intro {
  font-size: 20px;
  color: #000;
  margin-bottom: 77px;
  max-height: 240px;
  line-height: 1.5;
  overflow-y: auto;
}

@media (max-width: 767px) {
  .welcome_about_intro {
    font-size: 18px;
    margin-bottom: 21px;
    max-height: 100%;
  }
}

.welcome_about_section .more_btn {
  justify-content: flex-end;
}

.welcome_about_img_wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  z-index: -1;
  border-radius: 10px 0 0 10px;
  aspect-ratio: 1.208103;
  overflow: hidden;
}

.welcome_about_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .welcome_about_img_wrap {
    position: static;

    transform: translateY(0);
    width: 55%;
    min-width: 250px;
    border-radius: 0;
    margin: 0 0 0 auto;
    /* aspect-ratio: 0; */
  }
}

.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;
  }
}

/* ========== 首頁生產品質認證 x 產品安全認證 ========== */
.welcome_certification_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_certification_list.animation {
    animation: none;
  }
}

.welcome_certification_section {
  padding-top: 263px;
  padding-bottom: 254px;
  position: relative;
}

.welcome_certification_section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0px;
  right: 0;
  z-index: -1;
  width: 40%;
  background: linear-gradient(to right, #fff, #6b6363);
  opacity: 0.1;
}

@media (max-width: 1640px) {
  .welcome_certification_section {
    padding-top: 200px;
  }
}

@media (max-width: 991px) {
  .welcome_certification_section {
    padding-top: 116px;
    padding-bottom: 118px;
  }
}

.welcome_certification_left_bottom_img {
  position: absolute;
  z-index: -1;
  left: -5%;
  bottom: 0;
  min-height: 200px;
  height: calc(100vw / 1920 * 267);
}

@media (max-width: 767px) {
  .welcome_certification_left_bottom_img {
    display: none;
  }
}

.welcome_certification_section .welcome_title_wrap {
  margin-bottom: 44px;
}

@media (max-width: 991px) {
  .welcome_certification_section .welcome_title_wrap {
    margin-bottom: 50px;
    flex-direction: column;
  }

  .welcome_certification_section .welcome_title_zh {
    margin-bottom: 8px;
    font-size: 25px;
  }

  .welcome_certification_section .welcome_title_en {
    font-size: 25px;
  }

  .welcome_certification_section .welcome_title_zh::after {
    display: none;
  }
}

.welcome_certification_list {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 120px;
}

@media (max-width: 991px) {
  .welcome_certification_list {
    column-gap: 25px;
  }
}

.welcome_certification_item {}

.welcome_certification_item_img_wrap {}

.welcome_certification_item:first-of-type .welcome_certification_item_img_wrap {
  max-width: 180px;
}

.welcome_certification_item:nth-child(2) .welcome_certification_item_img_wrap {
  max-width: 242px;
}

.welcome_certification_item:last-of-type .welcome_certification_item_img_wrap {
  max-width: 172px;
}

.welcome_certification_item_img_wrap img {
  width: 100%;
  object-fit: contain;
}

@media (max-width: 991px) {
  .welcome_certification_item:first-of-type .welcome_certification_item_img_wrap {
    max-width: 93px;
  }

  .welcome_certification_item:nth-child(2) .welcome_certification_item_img_wrap {
    max-width: 127px;
  }

  .welcome_certification_item:last-of-type .welcome_certification_item_img_wrap {
    max-width: 83px;
  }
}

/* ========首頁健康分享======= */
.welcome_health_section {
  padding: 0 0 72px;
  position: relative;
  z-index: 0;
}

.welcome_health_section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0px;
  right: 0;
  z-index: -1;
  width: 40%;
  background: linear-gradient(to right, #fff, #6b6363);
  opacity: 0.1;
}

@media (max-width: 991px) {
  .welcome_health_section {
    padding: 0 0 60px;
  }
}

.welcome_health_section .welcome_title_wrap {
  margin-bottom: 85px;
  justify-content: flex-start;
}

@media (max-width: 991px) {
  .welcome_health_section .welcome_title_wrap {
    justify-content: center;
    margin-bottom: 21px;
  }
}

.welcome_health_list {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  margin-bottom: 72px;
}

@media (max-width: 991px) {
  .welcome_health_list {
    display: block;
    margin-bottom: 45px;
  }
}

.welcome_health_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_health_list.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}

.welcome_health_item {
  padding-bottom: 33px;
  margin-bottom: 33px;
  border-bottom: 1px solid #dedede;
  display: flex;
  row-gap: 20px;
  column-gap: 23px;
}

.welcome_health_item:first-of-type {
  border-bottom: none;
  grid-row: 1 / 4;
  flex-direction: column;
  border-right: 1px solid #dedede;
  margin-bottom: 0;
  padding-bottom: 0;
  margin-right: 46px;
  padding-right: 46px;
}

.welcome_health_item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

@media (max-width: 991px) {
  .welcome_health_item {
    padding-bottom: 0;
    margin-bottom: 22px;
    border-bottom: none;
    row-gap: 10px;
    column-gap: 12px;
  }

  .welcome_health_item:first-of-type {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.welcome_health_item_img_wrap {
  flex-shrink: 0;
  max-height: 190px;
  height: 100%;
  margin-bottom: 0px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  aspect-ratio: 1;
}

.welcome_health_item:first-of-type .welcome_health_item_img_wrap {
  max-height: 100%;
  height: auto;
  width: 100%;
}

.welcome_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;
}

.welcome_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;
}

.welcome_health_item:hover .welcome_health_item_img_wrap::before {
  opacity: 1;
}

.welcome_health_item:hover .welcome_health_item_img_wrap::after {
  opacity: 0.7;
}

.welcome_health_item_img_wrap img {
  width: 100%;
  height: 100%;
  /* aspect-ratio: 1; */
  object-fit: cover;
  transition: all 0.75s;
}

@media (max-width: 991px) {
  .welcome_health_item_img_wrap {
    max-height: 110px;
    margin-bottom: 0px;
  }

  .welcome_health_item:hover .welcome_health_item_img_wrap::before {
    opacity: 0;
  }

  .welcome_health_item:hover .welcome_health_item_img_wrap::after {
    opacity: 0;
  }
}

.welcome_health_item_content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 6px 0;
}

.welcome_health_item_nav {
  color: #be5c44;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 32px;
}

.welcome_health_item:first-of-type .welcome_health_item_nav {
  font-size: 22px;
  margin-bottom: 20px;
}

.welcome_health_item_title {
  font-size: 22px;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}

.welcome_health_item:first-of-type .welcome_health_item_title {
  margin-bottom: 40px;
}

.welcome_health_item_more {
  margin-top: auto;
  font-size: 18px;
  text-align: right;
  color: #000;
}

@media (max-width: 767px) {
  .welcome_health_item_nav {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .welcome_health_item:first-of-type .welcome_health_item_nav {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .welcome_health_item_title {
    font-size: 20px;
    display: block;
  }

  .welcome_health_item:first-of-type .welcome_health_item_title {
    margin-bottom: 10px;
  }

  .welcome_health_item_more {
    font-size: 16px;
  }
}

.welcome_health_section .more_btn {
  justify-content: flex-end;
}

/***************************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: 20px;
  display: flex;
  justify-content: center;
}

@media (max-width: 767px) {
  .back_btn_wrap {
    margin-top: 65px;
  }
}

.back_btn {
  /* structure */
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  margin: 0;
  padding: 10px 0;
  width: 110px;
  /* style */
  font-size: 18px;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #000;
  outline: none;
  transition: all 0.3s;
}

.back_btn:hover {
  color: #000;
  opacity: 0.7;
}

.back_btn img {
  width: 100%;
  max-width: 49px;
  object-fit: contain;
}

/***************************最新消息-內頁**************************/

/***************************品牌加盟-列表**************************/
.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;
}

/***************************品牌加盟-內頁**************************/

/****************************購物商城****************************/
@media (max-width: 991px) {
  #product_section .breadcrumb_wrap {
    margin-bottom: 15px;
  }
}

.product_search_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 45px;
}

.product_search_input_wrap {
  position: relative;
}

.product_search_input_wrap input {
  position: relative;
  z-index: 2;
  border: 1px solid #a8a8a8;
  border-radius: 50px;
  padding: 11px 35px 11px 25px;
  width: 292px;
  height: 45px;
  font-size: 18px;
}

.product_search_input_wrap input::placeholder {
  color: #c4c4c4;
}

.product_search_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 7px;
  width: 34px;
  height: 34px;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s;
}

.product_search_btn:hover {
  opacity: 0.7;
}

.product_search_btn i {
  color: #000;
  font-weight: lighter;
  font-size: 19px;
}

.product_search_btn img {
  width: 100%;
  max-width: 22px;
  object-fit: contain;
}

@media screen and (max-width: 991px) {
  .product_search_wrap {
    margin-bottom: 73px;
  }
}

/* 商城列表 */
.product_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 77px;
  row-gap: 74px;
  margin-bottom: 120px;
}

@media (max-width: 991px) {
  .product_list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 54px;
    margin-bottom: 50px;
  }
}

.product_item_pic_wrap {
  position: relative;
  margin-bottom: 20px;
}

.product_item_pic_bg {
  position: absolute;
  z-index: -1;
  inset: 0 0;
  opacity: 1;
  transition: all 0.3s;
}

.product_item_pic_bg_hover {
  position: absolute;
  z-index: -1;
  inset: 0 0;
  opacity: 0;
  transition: all 0.3s;
}

.product_item:hover .product_item_pic_bg {
  opacity: 0;
}

.product_item:hover .product_item_pic_bg_hover {
  opacity: 1;
}

.product_item_pic_wrap img {
  width: 100%;
  object-fit: contain;
  aspect-ratio: 0.98364;
}

@media (max-width: 767px) {
  .product_item_pic_wrap {
    margin-bottom: 15px;
  }
}

.product_item_title {
  font-size: 20px;
  color: #31190b;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}

@media (max-width: 767px) {
  .product_item_title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.product_price_wrap {
  font-size: 20px;
  display: flex;
}

@media (max-width: 1199px) {
  .product_price_wrap {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .product_price_wrap {
    font-size: 18px;
  }
}

.line_through {
  text-decoration: line-through;
}

.product_item_price {
  font-weight: bold;
  color: #cf2323;
  margin-right: 10px;
}

.original_price {
  color: #b3b3b3;
}

@media (max-width: 767px) {
  .original_price {
    font-size: 15px;
  }
}

/****************************購物商城****************************/

/****************************購物商城-內頁****************************/
/* 商品圖片區塊 */
.product_content_wrap {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  flex-wrap: wrap;
  column-gap: 100px;
  padding-bottom: 65px;
  /* margin-bottom: 65px; */
  border-bottom: 1px solid #dedede;
}

@media (max-width: 1199px) {
  .product_content_wrap {
    /* grid-template-columns: 1fr; */
  grid-template-columns: 0.55fr 0.45fr;
    column-gap: 70px;
  }
}

@media (max-width: 967px) {
  .product_content_wrap {
    grid-template-columns: 1fr;
    row-gap: 10px;
    padding-bottom: 70px;
    /* margin-bottom: 70px; */
  }
}

.product_pic_wap {
  width: 100%;

}

@media (max-width: 767px) {
  .product_pic_wap {}
}

.product_big_pic {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  min-width: 150px;
  width: 100%;

}

@media (max-width: 767px) {
  .product_big_pic {}
}

.product_content_pic_bg {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: -1;
  object-fit: contain;
}

.product_content_pic {
  width: 100%;
  height: 100%;
  aspect-ratio: 0.9840425;
  /* object-fit: contain; */
}

.product_small_pie_out_wrap {
  padding: 0 25px;
  overflow: hidden;
}

.product_small_pic_wrap {
  margin: 0 -10px;
}

.product_small_pic {
  cursor: pointer;
  padding: 0 10px;
}

@media (max-width: 767px) {
  .product_small_pic_wrap {
    margin: 0 -10px;
  }

  .product_small_pic {
    cursor: pointer;
    padding: 0 5px;
  }
}

.product_prev_btn,
.product_next_btn {
  width: 25px;
  height: 100%;
  border: 1px solid var(--main);
  display: flex !important;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  background-color: #ffffff;
  color: var(--main);
  cursor: pointer;
  z-index: 90;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.3s;
  z-index: 1;
}

.product_prev_btn:hover,
.product_next_btn:hover {
  background-color: var(--main);
  color: #ffffff;
}

@media (max-width: 991px) {

  .product_prev_btn:hover,
  .product_next_btn:hover {
    background-color: #ffffff;
    color: var(--main);
  }
}

.product_prev_btn {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  left: -15px;
}

.product_next_btn {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  right: -15px;
}

/* 商品資訊區塊 */
.product_info_wrap {}

@media (max-width: 767px) {
  .product_info_wrap {}
}

.product_content_name {
  width: 100%;
  font-size: 22px;
  color: #31190b;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dedede;
}

@media (max-width: 767px) {}

.product_content_intro {
  max-height: 267px;
  overflow: auto;
  padding-bottom: 23px;
  font-size: 20px;
}

.product_content_intro::-webkit-scrollbar {
  width: 5px;
}

.product_content_intro::-webkit-scrollbar-track {
  background: #ddd;
}

.product_content_intro::-webkit-scrollbar-thumb {
  background: #666;
}

@media (max-width: 1199px) {
  .product_content_intro {
    max-height: 138px;
  }
}

@media (max-width: 767px) {
  .product_content_intro {
    max-height: 100%;
    margin-bottom: 0;
    padding-bottom: 56px;
  }
}

.product_radio_title {
  font-size: 20px;
  margin-bottom: 10px;
}

.product_radio_list {
  display: flex;
  column-gap: 30px;
  row-gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.product_radio_label {
  padding: 10px 25px;
  border: 1px solid #6b6363;
  border-radius: 5px;
  background-color: #fff;
  color: #6b6363;
  font-size: 18px;
}

input[name="specification"] {
  display: none;
}

input[name="specification"]:checked+.product_radio_label {
  background-color: #6b6363;
  color: #fff;
}

.product_col_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 37px;
}

@media (max-width: 575px) {
  .product_radio_list {}

  .product_col_2 {}
}

.product_content_price {
  margin-top: auto;
  text-align: end;
}

@media (max-width: 767px) {
  .product_content_price {
    font-size: 22px;
    height: auto;
    width: auto;
    justify-content: flex-start;
  }
}

.product_content_price span {}

.content_original_price {
  font-size: 20px;
  color: #b3b3b3;
  margin-bottom: 14px;
}

.content_discount_price {
  font-size: 24px;
  font-weight: bold;
  color: #cf2323;
}

.quantity_input_block {
  max-width: 262px;
}

.product_label {
  font-size: 20px;
  color: #000;
  margin-bottom: 10px;
}

/* 數量 + - 設定 */
.quantity_wrap {
  display: flex;
  border: 1px solid #a8a8a8;
  border-radius: 3px;
  overflow: hidden;
}

.quantity_btn {
  cursor: pointer;
  background-color: #fff;
  border: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #000;
  transition: all 0.3s;
}

.quantity_btn:hover {
  color: #fefdfb;
  background-color: #a8a8a8;
}

.quantity_input {
  font-size: 18px;
  color: #000;
  border: 0;
  border-left: 1px solid #a8a8a8;
  border-right: 1px solid #a8a8a8;
  text-align: center;
  border-radius: 0;
  width: calc(100% - 80px);
}

.product_btn_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
  column-gap: 37px;
}

@media (max-width: 575px) {
  .product_btn_wrap {}
}

.go_add_car {
  /* structure */
  display: block;
  margin: 0;
  padding: 10px 0;

  /* 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: 1px solid #6b6363;
  outline: none;
  transition: all 0.3s;
}

.go_add_car:hover {
  color: #6b6363;
  background-color: #ffffff;
}

.go_add_car:last-of-type {
  background-color: #c8161d;
  border-color: #c8161d;
}

.go_add_car:last-of-type:hover {
  background-color: #ffffff;
  color: #c8161d;
}

@media (max-width: 1199px) {
  .go_add_car {}
}

@media (max-width: 767px) {
  .go_add_car:hover {
    color: #fff;
    background-color: #6b6363;
  }

  .go_add_car:last-of-type:hover {
    background-color: #c8161d;
    color: #fff;
  }
}

@media (max-width: 575px) {
  .go_add_car {}
}

.sold_out_btn {
  /* structure */
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 13px 0;
  width: 100%;

  /* style */
  font-size: 20px;
  /* font-weight: bold; */
  text-align: center;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #ffffff;
  background-color: #c4c4c4;
  border-radius: 10px;
  border: 1px solid #c4c4c4;
  outline: none;
  transition: all 0.3s;
}
.slider_outter{
  /* display: flex; */
  width: 100%;
  position: relative;
  /* overflow: visible; */
}
.product_slider .welcome_product_item{
  padding: 0 10px;
}

.product-prev,
.product-next {
  position: absolute;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 40px;
  /* height: 40px; */
  aspect-ratio: 0.7;
  top: 40%;
  /* bottom: 0px; */
  z-index: 10;
}

.product-prev img,
.product-next img{
  display: block;
  width: 100%;
  height: 100%;
}

.product-next {
  right: 20px;
}

.product-prev {
  left: 5px;
}



/****************************購物商城-內頁****************************/

/****************************健康分享-列表****************************/
@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;
  width: 100%;
  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 {
  scroll-margin-top: 100px;
  /* 導覽列高度 */
  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 {
  scroll-margin-top: 100px;
  /* 導覽列高度 */
}

.health_article2_item_title {
  font-size: 20px;
  margin-bottom: 10px;
}

.health_article2_item_content {
  padding-left: 27px;
  font-size: 18px;
}

@media (max-width: 767px) {
  .health_article_item {
    scroll-margin-top: 140px;
    /* 導覽列高度 */
  }

  .health_article2_item {
    scroll-margin-top: 140px;
    /* 導覽列高度 */
  }
}

/****************************健康分享-內容****************************/

/****************************影音專區-列表****************************/
#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;
  }
}

.main_btn_wrap {
  text-align: center;
  padding: 25px 0;
}

@media (max-width: 767px) {
  .main_btn_wrap {}
}

/* =================表單基本設定-結束================= */

/* =================會員頁面表單設定-開始================= */
.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_wrap {
  align-self: center;
}

.member_order_item_p_name {
  height: auto;
  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;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}

.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;
}
.select_item_credit_card,
.select_item_receipt_time{
  margin-top: 15px;
  width: 100%;
}

/* 取貨方式 */
.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;
  }
}

.cart_discount_btn_remove {
    background-color: #c0392b;
    border-color: #c0392b;
    color: #fff;
}
/* 訂單完成 */
.order_complete_wrap{
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 20px;
}
.order_complete_wrap .thank_text{
}
.order_complete_content {
  
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 37px;
  width: 720px;
  margin: 30px auto;
}
@media (max-width: 767px) {
.order_complete_content {
  width: 100%;
}
}
/***************************購物車**************************/

/***************************聯絡我們**************************/
@media (max-width: 991px) {
  #contact_section {
    padding-bottom: 67px;
  }

  #contact_section .breadcrumb_wrap {
    margin-bottom: 38px;
  }
}

.contact_title {
  margin-bottom: 53px;
  font-size: 18px;
}

@media (max-width: 991px) {
  .contact_title {
    margin-bottom: 15px;
  }
}

.contact_col_2 {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  column-gap: 86px;
}

@media (max-width: 1199px) {
  .contact_col_2 {
    column-gap: 40px;
  }
}

@media (max-width: 991px) {
  .contact_col_2 {
    grid-template-columns: 1fr;
    row-gap: 128px;
  }
}

.contact_form {}

.contact_label_block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
}

.contact_input_label {
  display: block;
  margin-bottom: 30px;
}

.contact_input_title {
  font-size: 20px;
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .contact_label_block {
    display: block;
  }

  .contact_input_label {
    margin-bottom: 15px;
  }

  .contact_input_title {
    font-size: 18px;
    margin-bottom: 5px;
  }
}

/* 聯絡我們輸入樣式 */
.contact_input {
  font-size: 16px;
  padding: 0 16px;
  width: 100%;
  height: 45px;
  border-radius: 3px;
  background-color: #fafafa;
  border: 1px solid #939393;
  transition: all 0.3s;
}

@media (max-width: 767px) {
  .contact_input {}
}

input::placeholder,
.contact_textarea::placeholder {
  color: #b3b3b3;
  opacity: 0.5;
}

.contact_textarea {
  font-size: 16px;
  padding: 15px 16px;
  width: 100%;
  border-radius: 3px;
  background-color: #fafafa;
  border: 1px solid #939393;
  resize: none;
  height: 168px;
  transition: all 0.3s;
}

@media (max-width: 767px) {
  .contact_textarea {
    font-size: 16px;
  }
}

.contact_submit_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 54px;
  margin-top: 38px;
}

@media (max-width: 1199px) {
  .contact_submit_block {
    flex-direction: column;
  }

  .contact_submit_block .main_btn {
    align-self: flex-end;
  }
}

#contact_map_section {
  padding: 0;
}

.contact_map_wrap {
  height: 417px;
  width: 100%;
}

.contact_map_wrap iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .contact_map_wrap iframe {}

  .contact_map_wrap {
    padding-bottom: 120px;
  }
}

@media (max-width: 767px) {
  .contact_map_wrap {
    height: 418px;
    padding: 0 15px 120px;
  }
}

/***************************聯絡我們**************************/

/****************************foot***************************/
.side_nav_wrap {
  position: fixed;
  z-index: 20;
  bottom: 87px;
  right: 72px;
  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;
  transition: all 0.3s;
}

.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_list {
    margin-bottom: 10px;
  }

  .side_nav_item {
    width: 65px;
    height: 65px;
    margin-bottom: 10px;
  }
}

@media (max-width: 400px) {
  .side_nav_item {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
}

.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;
    margin-bottom: 10px;
  }
}

@media (max-width: 400px) {
  .side_switch_btn_wrap {
    width: 50px;
    height: 50px;
  }
}

#go_top {
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  color: #fff;
  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; */
  font-size: 13px;
}

#go_top span {
  display: block;
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 767px) {
  #go_top {
    width: 65px;
    height: 65px;
  }
}

@media (max-width: 400px) {
  #go_top {
    width: 50px;
    height: 50px;
  }
}

footer {
  position: relative;
  z-index: 10;
}

.foot_top_wrap {
  padding: 100px 0 15px;
  position: relative;
}

.foot_top_wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0px;
  right: 0;
  z-index: -1;
  width: 40%;
  background: linear-gradient(to right, #fff, #6b6363);
  opacity: 0.1;
}

@media (max-width: 991px) {
  .foot_top_wrap {
    padding: 16px 0 5px;
  }
}

.foot_left_img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  min-height: 264px;
  height: calc(100vw / 1920 * 264);
  object-fit: contain;
  pointer-events: none;
}

.foot_right_img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  min-height: 249px;
  height: calc(100vw / 1920 * 249);
  object-fit: contain;
}

.foot_left_img_mobile {
  display: none;
}

@media (max-width: 991px) {
  .foot_left_img {
    min-height: 100%;
    height: auto;
    width: 100%;
    bottom: 50%;
  }

  .foot_right_img {
    display: none;
  }
}

@media (max-width: 575px) {
  .foot_left_img_mobile {
    display: block;
    bottom: 40%;
  }

  .foot_left_img_pc {
    display: none;
  }
}

.foot_main_wrap {
  /* display: flex;
  align-items: flex-end;
  flex-wrap: wrap; */
}

@media (max-width: 1699px) {
  .foot_main_wrap {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .foot_main_wrap {
    /* padding: 0 19px; */
  }
}

.foot_left {
  display: flex;
}

@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;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .foot_right {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .foot_right {}
}

/* 頁底logo */
.foot_logo_wrap {
  padding-right: 65px;
}

@media (max-width: 1640px) {
  .foot_logo_wrap {
    padding-right: 40px;
  }
}

@media (max-width: 991px) {
  .foot_logo_wrap {
    padding-right: 0;
    margin-bottom: 20px;
  }
}

.foot_logo {
  max-width: 164px;
  width: 100%;
  object-fit: contain;
}

@media (max-width: 991px) {
  .foot_logo {
    max-width: 164px;
  }
}

/* copyright設定 */
.foot_copyright_wrap {
  background-color: #000;
  padding: 9px 0 10px;
}

.foot_copyright {
  width: 100%;
  font-size: 14px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
}

.foot_copyright_uniform {
  font-size: 16px;
  margin-right: 4px;
}

@media (max-width: 991px) {
  .foot_copyright {
    font-size: 14px;
    position: relative;
  }

  .foot_copyright_uniform {
    display: none;
  }
}

@media (max-width: 767px) {
  .foot_copyright_wrap {
    padding: 19px 0 24px;
  }
}

@media (max-width: 575px) {
  .foot_copyright {
    font-size: 12px;
  }
}

.foot_copyright a {
  color: #fff;
}

.foot_copyright a:hover {
  color: #fff;
  opacity: 0.7;
}

@media (max-width: 991px) {
  .foot_copyright.desk {
    display: none;
  }
}

.foot_copyright.mobile {
  display: none;
}

@media (max-width: 991px) {
  .foot_copyright.mobile {
    display: flex;
  }
}

/* 社群連結 */
.foot_social_link_wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 17px;
  margin-bottom: 15px;
}

.foot_social_link_wrap img {
  display: block;
  width: 100px;
  aspect-ratio: 1;
}

@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-direction: column;
  row-gap: 10px;
}

.foot_info_wrap:last-of-type {
  padding-left: 98px;
}

@media (max-width: 991px) {
  .foot_info_wrap:last-of-type {
    padding-top: 20px;
    padding-left: 0px;
  }
}

@media (max-width: 767px) {
  .foot_info_wrap {
    row-gap: 7px;
  }
}

.foot_info_item {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .foot_info_item {
    justify-content: flex-start;
  }
}

.info_text {
  font-size: 16px;
  display: flex;
}

.foot_info_item .info_text:last-child {
  margin-bottom: 0;
}

.info_title {
  flex-shrink: 0;
  position: relative;
  color: #000;
}

.foot_info_item a {
  color: #000;
}

.foot_info_item a:hover {
  opacity: 0.7;
}

.foot_info_item a:not([href]) {
  color: #000;
}

/* 頁面連結 */
.foot_link_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .foot_link_wrap {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .foot_link_wrap {
    justify-content: start;
  }
}

@media (max-width: 575px) {
  .foot_link_wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

.foot_link_text {
  color: #ffffff;
  font-size: 16px;
  white-space: nowrap;
  padding: 0 6px;
}

.foot_link_text:hover {
  color: #ffffff;
  opacity: 0.7;
}

.foot_link_item {
  display: flex;
}

@media (max-width: 575px) {
  .foot_link_wrap .foot_link_item:first-child {
    margin-bottom: 10px;
  }
}

.foot_link_text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.2px;
  height: 80%;
  background-color: #ffffff;
}

.foot_link_wrap .foot_link_item:last-child .foot_link_text:last-child::after {
  display: none;
}

@media (max-width: 575px) {
  .foot_link_wrap .foot_link_item:first-child .foot_link_text:last-child::after {
    display: none;
  }
}

.foot_social_link.line img,
.foot_social_link.wechat img
 {
    width: 26px;
    /* height: 20px; */
}
.foot_social_link.wechat img
 {
    width: 26px;
    /* height: 20px; */
}

/****************************foot***************************/

/* 隱藏reCAPTCHA徽章 */
/* .grecaptcha-badge { visibility: hidden; } */

.grecaptcha_text {
  color: var(--main);
}

.grecaptcha_text a {
  color: var(--main);
  opacity: 0.7;
}

/* 其他 */
