* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "微軟正黑體";
  scroll-behavior: smooth;
}

body {
  padding-top: 197.75px;
  position: relative;
}
@media screen and (max-width: 991px) {
  body {
    padding-top: 80px;
  }
}

.admin_body {
  padding-top: 100px;
}

a {
  text-decoration: none;
  outline: none;
}
/* a:hover {
  text-decoration: none;
  outline: none;
  color: #000;
} */
input,
select,
textarea {
  outline: none;
  /* IOS初始化 */
  border-radius: 0px;
  color: #232323;
}
/* 移除 input type="number" 的箭頭按鈕 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
}
select {
  appearance: none;
  background: url("../img/right.png") no-repeat right 12px top 50%;
}
.gs_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 1250px) {
  .gs_container {
    max-width: 1080px;
  }
}
@media screen and (max-width: 1180px) {
  .gs_container {
    max-width: 960px;
  }
}
@media screen and (max-width: 991px) {
  .gs_container {
    max-width: 740px;
  }
}
@media screen and (max-width: 767px) {
  .gs_container {
    max-width: 540px;
  }
}

/* 編輯器CSS */
.page_html_editor {
  word-break: break-all;
  line-height: 1.6;
  color: #232323;
}
.page_html_editor:after {
  content: ""; /* 2. 新增 content，注意需要加上 "" */
  display: block; /* 3. 新增 display，也可以用 table */
  clear: both;
}
.page_html_editor img {
  max-width: 100%;
  height: auto !important;
}
.page_html_editor iframe {
  max-width: 100%;
  width: 100%;
  height: 30vw;
}
@media screen and (max-width: 1200px) {
  .page_html_editor iframe {
    height: 40vw;
  }
}
@media screen and (max-width: 991px) {
  .page_html_editor iframe {
    height: 50vw;
  }
}
.page_html_editor_full_page {
  padding-top: 30px;
}

ul,
ol {
  margin-left: 0;
  padding-left: 24px;
}

/* sweetalert2 樣式修改 */
.swal2-icon.swal2-info {
  border-color: #232323 !important;
  color: #232323 !important;
}

.swal2-styled.swal2-confirm {
  background-color: #232323 !important;
  color: #fff !important;
}

.result_null {
  text-align: center;
  font-size: 18px;
  margin: 40px 20px 80px;
}

a {
  text-decoration: none;
}

.upload_img_remind {
  margin-bottom: 12px;
  color: #b92900;
}

.header_wrap {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background-color: #fff;
}

.logo {
  display: block;
  margin: 15px auto 0px;
  width: 82px;
  transition: width 0.3s, margin 0.3s;
}
.logo img {
  width: 100%;
}
.logo_img_mobile {
  display: none;
}
.header_wrap.active .logo {
  margin: 4px auto;
  width: 72px;
}
.header_navbar_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.header_navbar_link {
  padding: 8px 10px 20px;
  height: 100%;
  color: #000;
  font-size: 18px;
  border-bottom: 4px solid transparent;
  transition: color 0.3s, border 0.3s, padding 0.3s;
  position: relative;
  text-align: center;
}
.header_wrap.active .header_navbar_link {
  padding: 4px 10px 10px;
  font-size: 18px;
}
.header_navbar_link_hover_text {
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.header_navbar_link.active .header_navbar_link_hover_text,
.header_navbar_link:hover .header_navbar_link_hover_text {
  opacity: 1;
}
/* .header_navbar_link:hover,
.header_navbar_link.active {
  color: #888888;
  border-bottom: 4px solid #888888;
} */
.header_navbar_btn {
  display: block;

  cursor: pointer;
}
.header_navbar_drop {
  display: none;
  position: absolute;
  top: 106%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 0 8px;
  border-bottom: 1px solid #b78e3c;
}
.header_navbar_drop_link {
  display: block;
  width: 156px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-bottom: 1px solid #c4c4c4;
  color: #232323;
  transition: color 0.3s;
  font-size: 22px;
}
.header_navbar_drop_link:last-child {
  border-bottom: none;
}
.header_navbar_drop_link:hover {
  color: #888888;
}
.header_user_cart_wrap {
  display: flex;
  align-items: center;
  height: 71px;
  gap: 27px;
  margin-bottom: 4px;
  position: relative;
}
.header_wrap.active .header_user_cart_wrap {
  height: 48px;
}
.header_user_btn,
.header_cart_btn {
  font-size: 27px;
  color: #000;
  cursor: pointer;
  transition: opacity 0.3s;
}
.header_user_btn:hover,
.header_cart_btn:hover {
  opacity: 0.7;
}
.burger,
.header_navbar_list_mobile_wrap {
  display: none;
}
@media screen and (max-width: 1250px) {
  .header_navbar_list {
    gap: 20px;
  }
}
@media screen and (max-width: 1180px) {
  .header_navbar_list {
    gap: 8px;
  }
  .header_navbar_link_hover_text {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .header_wrap .gs_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
  }
  .logo {
    display: block;
    margin: 0;
    width: 47.76px;
    transition: width 0.3s, margin 0.3s;
  }
  .logo_img_pc {
    display: none;
  }
  .logo_img_mobile {
    display: block;
  }
  .header_navbar_list {
    display: none;
  }

  .burger,
  .header_navbar_list_mobile_wrap {
    display: block;
  }

  .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;
  }
  .ham path {
    stroke: #231815;
  }
  .hamRotate.active {
    transform: rotate(45deg);
  }
  .hamRotate180.active {
    transform: rotate(180deg);
  }
  .line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #45b8bd;
    stroke-width: 5.5;
    /* 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;
  }

  .header_navbar_list_mobile_wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - 80px);
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    overflow-y: auto;
  }
  .header_navbar_list_mobile {
    box-shadow: 0px 10px 10px -7px rgba(0, 0, 0, 0.4) inset;
    background-color: #fff;
    padding: 20px 30px 40px;
  }
  .header_navbar_list_mobile_link {
    display: block;
    padding: 15px 0;
    text-align: center;
    color: #232323;
    font-size: 18px;
  }
  .header_navbar_list_mobile_link_text {
    position: relative;
    display: inline-block;
  }
  .header_navbar_list_mobile_link.active i {
    transform: translateY(-50%) rotate(90deg);
  }
  .header_navbar_list_mobile_link_text i {
    font-size: 14px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    transition: transform 0.3s;
  }
  .header_navbar_drop_mobile {
    display: none;
  }
  .header_navbar_drop_mobile_link {
    display: block;
    text-align: center;
    padding: 8px 0;
    color: #888888;
  }
  .header_navbar_drop_mobile_link i {
    font-size: 14px;
  }
  .header_navbar_drop_mobile_link_text {
    position: relative;
    display: inline-block;
  }
  .header_navbar_drop_mobile_link.active_dot
    .header_navbar_drop_mobile_link_text:after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #888888;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
  }
  .header_navbar_drop_mobile_link_text_p {
    position: relative;
    display: inline-block;
  }
  .header_navbar_drop_mobile_link_text_p i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    transition: transform 0.3s;
  }
  .header_navbar_drop_mobile_link.active i {
    transform: translateY(-50%) rotate(90deg);
  }
  .header_navbar_drop_mobile_link:first-child {
    border-top: 1px solid #c4c4c4;
  }
  .header_navbar_drop_mobile_link:last-child {
    border-bottom: 1px solid #c4c4c4;
  }
  .header_navbar_drop_two_mobile {
    display: none;
  }
  .header_navbar_drop_two_mobile_link {
    display: block;
    text-align: center;
    background-color: #f3f3f3;
    padding: 8px 0;
    color: #232323;
  }
  .header_navbar_drop_two_mobile_link:first-child {
    padding: 16px 0 8px;
  }
  .header_navbar_drop_two_mobile_link:last-child {
    padding: 8px 0 16px;
  }
  .header_user_cart_wrap {
    justify-content: center;
    gap: 12px;
  }

  .header_user_btn,
  .header_cart_btn {
    font-size: 40px;
  }
}

/* 管理頁Header */
.header_admin_wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 20;
  background-color: #fff;
}
.header_admin_wrap .gs_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header_admin_user_btn_wrap {
  position: relative;
}
.header_admin_user_btn {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.header_admin_user_btn:hover {
  opacity: 0.7;
}
.header_admin_user_name {
  font-size: 24px;
}
.header_admin_user_btn i {
  font-size: 33px;
}
.header_admin_drop {
  position: absolute;
  top: 130%;
  left: 0;
  right: 0;
  background-color: #fff;
  font-size: 20px;
  padding: 10px 0;
  text-align: center;
  border-bottom: 1px solid #b78e3c;
  display: none;
}
.header_admin_drop_link {
  display: block;
  color: #232323;
  transition: opacity 0.3s;
}
.header_admin_drop_link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 991px) {
  .admin_logo img {
    width: 250px;
  }
  .header_admin_user_name {
    font-size: 18px;
  }
  .header_admin_user_btn i {
    font-size: 24px;
  }
}
@media screen and (max-width: 400px) {
  .admin_logo img {
    width: 200px;
  }
}
/* 管理頁Header */
.footer_wrap {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16);
}
.footer_main_wrap {
  padding: 12px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 36px;
}

.footer_logo_contact_wrap {
  display: flex;
  align-items: flex-end;
  gap: 30px;
}
.footer_logo_img_mobile {
  display: none;
}
.footer_contact_title {
  font-size: 20px;
  margin-bottom: 20px;
}
.footer_contact:nth-child(2) {
  margin-bottom: 10px;
}

.footer_contact_link {
  color: #000;
  transition: opacity 0.3s;
}

.footer_numbers {
  text-align: right;
  margin-bottom: 10px;
}
.footer_link_wrap {
  display: flex;
  justify-content: flex-end;
  gap: 0px;
  flex-wrap: wrap;
  row-gap: 8px;
}
.footer_link {
  color: #000;
  position: relative;
  transition: opacity 0.3s;
  padding: 0px 12px;
  border-right: 1px solid #000;
  line-height: 1.2;
}
.footer_link:last-child {
  border-right: none;
  padding: 0 0 0 12px;
}
.footer_link:hover {
  opacity: 0.7;
}

.footer_link:last-child:after {
  display: none;
}

.footer_contact_link:hover {
  opacity: 0.7;
}

.footer_copyright {
  background-color: #232323;
  text-align: right;
  padding: 4px 0;
  color: #fff;
}
.footer_designed_link {
  color: #fff;
  transition: opacity 0.3s;
}
.footer_designed_link:hover {
  opacity: 0.7;
}

.fixed_list_wrap {
  position: fixed;
  right: 50px;
  bottom: 140px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}
.fixed_link {
  width: 54px;
  height: 54px;
  color: #232323;
  transition: opacity 0.3s;
  position: relative;
}
.fixed_link i {
  font-size: 54px;
}
.fixed_link::after {
  content: "";
  position: absolute;
  inset: 2px 2px;
  background-color: #fff;
  border-radius: 50%;
  z-index: -1;
}
.fixed_link:hover {
  opacity: 0.7;
}
.fixed_top {
  transition: opacity 0.3s;
  cursor: pointer;
  display: none;
}
.fixed_top:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1300px) {
  .footer_main_wrap {
    row-gap: 20px;
  }
}

@media screen and (max-width: 1200px) {
  .footer_logo_contact_wrap {
    width: 50%;
  }
  .footer_link_numbers_wrap {
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .footer_main_wrap {
    align-items: flex-start;
    gap: 4px;
    flex-direction: column;
    padding: 24px 0 16px;
  }
  .footer_logo_img_pc {
    display: none;
  }
  .footer_logo_img_mobile {
    display: block;
  }

  .footer_logo_contact_wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }
  .footer_contact_title {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .footer_contact {
    font-size: 14px;
  }
  .footer_contact:nth-child(2) {
    margin-bottom: 4px;
  }
  .footer_link_numbers_wrap {
    width: 100%;
  }
  .footer_numbers {
    text-align-last: left;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .footer_link_wrap {
    justify-content: flex-start;

    flex-wrap: wrap;
    font-size: 14px;
  }
  .footer_link_pc {
    display: none;
  }
  .footer_link_mobile {
    display: block;
  }
  .footer_link {
    padding: 0 10px;
    text-align: center;
  }
  .footer_link:nth-child(3) {
    border-left: 1px solid #000;
  }
  .footer_link:last-child {
    padding: 0 10px;
    border-right: 1px solid #000;
  }
  .footer_copyright {
    font-size: 12px;
    text-align: left;
  }

  .fixed_list_wrap {
    right: 15px;
    bottom: 75px;
    gap: 8px;
  }
  .fixed_link {
    width: 45px;
    height: 45px;
  }
  .fixed_link i {
    font-size: 45px;
  }
  .fixed_top img {
    width: 45px;
  }
}
@media screen and (max-width: 767px) {
  .footer_link_wrap {
    font-size: 12px;
  }
  .footer_link {
    padding: 0 4px;
  }
}

/* 首頁橫幅 */
.banner_img {
  width: 100%;
  height: calc(100vw / 1840 * 900);
}
.banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner_slick {
  padding: 0 40px;
}
.banner_slick_mobile {
  display: none;
}
.banner_slick .slick-dots {
  width: 20px;
  z-index: 1;
  right: 67px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.banner_slick .slick-dots li {
  width: 16px;
  height: 16px;
}
.banner_slick .slick-dots li button:before {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 1;
  background-color: #fff;
  left: 0%;
  border-radius: 50%;
  transition: background-color 0.3s;
}
.banner_slick .slick-dots li.slick-active button:before {
  background-color: #232323;
  opacity: 1;
}
.banner_slick .slick-dots li:hover button:before {
  background-color: #232323;
}
@media screen and (max-width: 991px) {
  .banner_slick {
    padding: 0 15px;
  }
  .banner_slick .slick-dots {
    right: 32px;
  }
}
@media screen and (max-width: 768px) {
  .banner_slick {
    padding: 0 15px;
  }
  .banner_slick.slick-slider {
    margin-bottom: 0;
  }
  .banner_slick_pc {
    display: none;
  }
  .banner_slick_mobile {
    display: block;
  }
}

/* 首頁橫幅 */

/* 首頁介紹 */
.index_intro_cake_bg {
  /* background: url("../img/index_cake_bg.png") no-repeat center center/cover; */
  /* height: calc(100vw / 1840 * 1228); */
  text-align: center;
  padding: 48px 0;
  margin: 40px;
}

.index_intro_cake_card_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
}
.index_intro_cake_card {
  max-width: 285px;
  margin: 0 auto;
}
.index_intro_cake_card:first-child,
.index_intro_cake_card:last-child {
  padding-top: 92px;
}
.index_intro_cake_card_header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 25px;
  font-weight: bold;
  color: #b92900;
}
.index_intro_cake_card_body {
  font-size: 20px;
  font-weight: bold;
  color: #a57419;
  position: relative;
}
.index_intro_cake_card_body:after {
  content: "";
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background-color: #a57419;
}
.index_intro_cake_card:first-child .index_intro_cake_card_body::after {
  transform: rotate(-45deg);
  top: 100%;
  left: 70%;
  height: 90px;
}
.index_intro_cake_card:last-child .index_intro_cake_card_body::after {
  transform: rotate(45deg);
  top: 100%;
  left: 30%;
  height: 90px;
}

.index_intro_cake_img {
  position: relative;
  top: -40px;
  text-align: center;
}
.index_intro_cake_img img {
  width: calc(100vw / 1920 * 640);
  min-width: 400px;
}

.index_intro_cake_card_1.animation {
  animation-name: ani_slideBottom;
  animation-duration: 0.7s;
  animation-delay: 0.7s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.index_intro_cake_card_2.animation {
  animation-name: ani_slideBottom;
  animation-duration: 0.7s;
  animation-delay: 1.05s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.index_intro_cake_card_3.animation {
  animation-name: ani_slideBottom;
  animation-duration: 0.7s;
  animation-delay: 1.4s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.index_intro_cake_img.animation {
  animation-name: ani_slideBottom;
  animation-duration: 0.7s;
  animation-delay: 0.35s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media screen and (max-width: 991px) {
  .index_intro_cake_bg {
    padding: 24px 0;
    margin: 20px 15px;
  }
  .index_intro_cake_card_wrap {
    grid-template-columns: 1fr;
    justify-content: center;
    margin-bottom: 20px;
  }
  .index_intro_cake_card {
    max-width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }
  .index_intro_cake_card:first-child,
  .index_intro_cake_card:last-child {
    padding-top: 0;
  }

  .index_intro_cake_card_header {
    display: flex;
    justify-content: flex-start;
    gap: 4px;
    font-size: 22px;
    font-weight: bold;
    color: #b92900;
  }
  .index_intro_cake_card_header img {
    width: 48px;
  }
  .index_intro_cake_card_body {
    font-size: 18px;
    text-align-last: left;
  }
  .index_intro_cake_card_body:after {
    display: none;
  }
  .index_intro_cake_img {
    position: static;
  }
  .index_intro_cake_img img {
    width: calc(100vw / 991 * 400);
    min-width: 250px;
  }

  .index_intro_cake_card_1.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
  .index_intro_cake_card_2.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
  .index_intro_cake_card_3.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
  .index_intro_cake_img.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}
/* 首頁介紹 */

/* 首頁關於我們 */
.index_about_bg {
  /* height: 929px; */
  height: calc(100vw / 1840 * 895);
  padding: 120px 0px;
  margin: 0 40px 40px;
  position: relative;
}
.index_about_bg_pc,
.index_about_bg_mobile {
  position: absolute;
  inset: 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index_about_bg_mobile {
  display: none;
}

.index_about_title_img {
  margin-bottom: 90px;
}

.index_more_btn {
  display: inline-block;
  padding: 14px 58px;
  color: #fff;
  background-color: #232323;
  border: 1px solid transparent;
  font-size: 18px;
  transition: background-color 0.3s, border 0.3s, color 0.3s;
}
.index_more_btn:hover {
  background-color: #fff;
  border: 1px solid #232323;
  color: #232323;
}

.index_about_title_img.animation {
  animation-name: ani_slideBottom;
  animation-duration: 0.7s;
  animation-delay: 0.7s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.index_about_more_btn.animation {
  animation-name: ani_slideBottom;
  animation-duration: 0.7s;
  animation-delay: 1.05s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

@media screen and (max-width: 991px) {
  .index_about_bg {
    height: calc(100vw / 1840 * 1120);
    padding: 60px 0px;
    margin: 0 15px 20px;
  }

  .index_about_title_img {
    margin-bottom: 45px;
  }
  .index_about_title_img img {
    width: 350px;
  }
  .index_more_btn {
    padding: 8px 40px;
    font-size: 18px;
  }

  .index_about_title_img.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
  .index_about_more_btn.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}

@media screen and (max-width: 767px) {
  .index_about_bg {
    height: calc(100vw / 767 * 800);
  }
  .index_about_bg_pc {
    display: none;
  }
  .index_about_bg_mobile {
    display: block;
  }
}
@media screen and (max-width: 450px) {
  .index_about_bg {
    padding: 20px 0px;
  }
  .index_about_title_img img {
    width: 100%;
  }
}
/* 首頁關於我們 */

/* 首頁商品 */
.index_product_wrap {
  margin: 0 40px 40px;
}
.index_product_card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.index_product_card_img {
  aspect-ratio: 1.5;
}
.index_product_card_img img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}
.index_product_card_body {
  display: grid;
  place-content: center;
  text-align: center;
}
.index_product_card_body_title_en {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 22px;
}
.index_product_card_body_title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 90px;
}
.index_product_card:last-child .index_product_card_body {
  order: -1;
}
.index_product_card_img_1.animation {
  animation-name: ani_slideLeft;
  animation-duration: 0.7s;
  animation-delay: 0.35s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.index_product_card_body_1.animation {
  animation-name: ani_fadeIn;
  animation-duration: 0.7s;
  animation-delay: 0.7s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.index_product_card_img_2.animation {
  animation-name: ani_slideRight;
  animation-duration: 0.7s;
  animation-delay: 0.35s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.index_product_card_body_2.animation {
  animation-name: ani_fadeIn;
  animation-duration: 0.7s;
  animation-delay: 0.7s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media screen and (max-width: 991px) {
  .index_product_wrap {
    margin: 0 15px 20px;
  }

  .index_product_card_body {
    margin: 16px 0;
  }
  .index_product_card_body_title_en {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .index_product_card_body_title {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .index_product_card_img_1.animation {
    animation-name: ani_slideLeft_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
  .index_product_card_body_1.animation {
    animation-name: ani_fadeIn_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
  .index_product_card_img_2.animation {
    animation-name: ani_slideRight_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
  .index_product_card_body_2.animation {
    animation-name: ani_fadeIn_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}
@media screen and (max-width: 767px) {
  .index_product_card {
    grid-template-columns: 1fr;
  }
  .index_product_card:first-child {
    margin-bottom: 20px;
  }
  .index_product_card_img {
    margin-bottom: 8px;
  }
  .index_product_card:last-child .index_product_card_body {
    order: 1;
  }
  .index_product_card_body_title {
    margin-bottom: 20px;
  }
}
/* 首頁商品 */

/* 首頁門市資訊 */
.index_inform_warp {
  /* background: url("../img/index_inform.png") no-repeat center center/cover; */
  /* height: 929px; */
  /* height: calc(100vw / 1840 * 929); */
  padding: 120px 0px;
  margin: 0 40px 40px;
  position: relative;
}

.index_inform_img {
  position: absolute;
  inset: 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index_inform_img_mobile {
  display: none;
}
.index_inform_warp::after {
  content: "";
  position: absolute;
  inset: 0 0;
  /* background-color: rgba(0, 0, 0, 0.2); */
  z-index: 0;
}
.index_inform_warp .gs_container {
  position: relative;

  z-index: 1;
}
.index_inform_title_wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}
.index_inform_title_en {
  font-size: 40px;
  color: #fff;
}
.index_inform_title {
  font-size: 30px;
  color: #fff;
}

.index_inform_card_wrap {
  display: inline-block;
  max-height: 502px;
  margin-bottom: 40px;
  overflow-y: auto;
}
.index_inform_card_wrap::-webkit-scrollbar {
  width: 3px;
}
.index_inform_card_wrap::-webkit-scrollbar-track {
  border-radius: 5px;
  background: #ddd;
}
.index_inform_card_wrap::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #787878;
}
.index_inform_card {
  padding: 34px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  width: 100%;
  color: #232323;
  margin-bottom: 32px;
}
.index_inform_card:last-child {
  margin-bottom: 0;
}
.index_inform_header {
  font-size: 22px;
  font-weight: bold;
  border-left: 4px solid #232323;
  padding: 2px 0 2px 16px;
  margin-bottom: 32px;
}
.index_inform_body_contact {
  display: flex;
  font-size: 20px;
  margin-bottom: 10px;
}
.index_inform_body_contact_title {
  flex-shrink: 0;
}

.index_inform_body_contact:last-child {
  margin-bottom: 0;
}
.index_inform_body_contact_link {
  color: #232323;
  transition: opacity 0.3s;
}
.index_inform_body_contact_link:hover {
  opacity: 0.7;
}
.index_inform_title_wrap.animation {
  animation-name: ani_fadeIn;
  animation-duration: 0.7s;
  animation-delay: 0.35s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.index_inform_card.animation {
  animation-name: ani_slideBottom;
  animation-duration: 0.7s;
  animation-delay: 0.7s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.index_inform_more_btn.animation {
  animation-name: ani_fadeIn;
  animation-duration: 0.7s;
  animation-delay: 1.4s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

@media screen and (max-width: 991px) {
  .index_inform_warp {
    padding: 60px 0px;
    margin: 0 15px 20px;
    position: relative;
  }
  .index_inform_title_wrap {
    margin-bottom: 20px;
  }
  .index_inform_title_en {
    font-size: 28px;
    color: #fff;
  }
  .index_inform_title {
    font-size: 24px;
    color: #fff;
  }

  .index_inform_card_wrap {
    display: inline-block;
    max-height: 346px;
  }
  .index_inform_card {
    padding: 20px;
    /* width: 100%; */
    margin-bottom: 20px;
  }

  .index_inform_header {
    font-size: 18px;
    border-left: 4px solid #232323;
    padding: 2px 0 2px 8px;
    margin-bottom: 16px;
  }
  .index_inform_body_contact {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .index_inform_title_wrap.animation {
    animation-name: ani_fadeIn_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
  .index_inform_card.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }

  .index_inform_more_btn.animation {
    animation-name: ani_fadeIn_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}
@media screen and (max-width: 767px) {
  .index_inform_img_pc {
    display: none;
  }
  .index_inform_img_mobile {
    display: block;
  }
}
/* 首頁門市資訊 */

/* 其它頁橫幅 */
.other_banner_wrap {
  width: 100%;
  height: calc(100vw / 1920 * 480);
  overflow: hidden;
}
.other_banner_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.other_banner_wrap_mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .other_banner_wrap_pc {
    display: none;
  }
  .other_banner_wrap_mobile {
    display: block;
  }
  .other_banner_wrap {
    height: calc(100vw / 767 * 350);
  }
}
/* 其它頁橫幅 */

/* 關於我們 */
.about_wrap {
  padding: 48px 0 175px;
}
.heading_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.heading_en {
  font-size: 30px;
}
.breadcrumb_link {
  font-size: 18px;
  color: #000;
  transition: color 0.3s;
}
.breadcrumb_link:hover,
.breadcrumb_link.active {
  color: #888888;
}

.gs_col_2 {
  display: grid;
  /* grid-template-columns: 0.16fr 0.84fr; */
  grid-template-columns: calc(16% - 39px) calc(84% - 39px);
  gap: 78px;
}

.menu_list {
  border-top: 2px solid #000;
  padding: 10px 0;
}
.menu_list_link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 20px;
  color: #000;
  transition: color 0.3s;
  position: relative;
}
.menu_list_link_dot {
  width: 5px;
  height: 5px;
  background-color: #888888;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}
.menu_list_link:hover,
.menu_list_link.active {
  color: #888888;
}
.menu_list_link:hover .menu_list_link_dot,
.menu_list_link.active .menu_list_link_dot {
  opacity: 1;
}
@media screen and (max-width: 1250px) {
  .gs_col_2 {
    grid-template-columns: calc(16% - 25px) calc(84% - 25px);
    gap: 50px;
  }
}
@media screen and (max-width: 991px) {
  .gs_col_2 {
    grid-template-columns: 100%;
  }
  .heading_en {
    font-size: 28px;
    position: relative;
  }
  .heading_en::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 155px;
    height: 2px;
    background-color: #000;
  }
  .breadcrumb_link {
    font-size: 14px;
  }
  .menu_list {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .heading_wrap {
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }
  .breadcrumb {
    order: -1;
    align-self: flex-end;
  }
  .heading_en {
    font-size: 24px;
  }
  .heading_en::after {
    width: 120px;
  }
}
/* 關於我們 */

/* 最新消息 */
.news_list_wrap {
  padding: 32px 0 106px;
}

.gs_col_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 50px;
  column-gap: 32px;
  margin-bottom: 90px;
}
.news_list_card_img {
  aspect-ratio: 1;
  position: relative;
  margin-bottom: 12px;
}
.news_list_card_img:after {
  content: "MORE";
  position: absolute;
  inset: 0 0;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  display: grid;
  place-content: center;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.news_list_card:hover .news_list_card_img::after {
  opacity: 1;
}
.news_list_card_img img {
  width: 100%;
  vertical-align: middle;
}
.news_list_card_title {
  font-size: 20px;
  color: #232323;
  margin-bottom: 20px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}
.news_list_card_content {
  font-size: 18px;
  color: #888888;
  margin-bottom: 22px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}
.news_list_card_date {
  font-size: 18px;
  color: #535353;
}

.page_list {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 90px; */
}
.page_list_link {
  color: #000;
  padding: 2px 6px;
  font-size: 18px;
  transition: color 0.3s;
}
.page_list_link i {
  font-size: 28px;
}
.page_list_link:hover,
.page_list_link.active {
  color: #888888;
}
.page_list_link_number {
  position: relative;
}
.page_list_link_number:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #888888;
  opacity: 0;
  transition: opacity 0.3s;
}
.page_list_link_number:hover::after,
.page_list_link_number.active::after {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .news_list_wrap {
    padding: 20px 0 54px;
  }
  .gs_col_3 {
    row-gap: 25px;
    column-gap: 15px;
    margin-bottom: 45px;
  }
  .news_list_card_title {
    font-size: 18px;

    margin-bottom: 10px;
  }
  .news_list_card_content {
    font-size: 16px;

    margin-bottom: 12px;
  }
  .news_list_card_date {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .gs_col_3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* 最新消息 */

/* 最新消息內頁 */
.news_content_title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 16px;
}
.news_content_date {
  text-align: right;
  font-size: 20px;
  color: #707070;
  margin-bottom: 32px;
}

.news_content_html_editor {
  margin-bottom: 80px;
}

.back_link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #000;
  font-size: 20px;
  cursor: pointer;
}
.back_link i {
  font-size: 30px;
  padding-right: 12px;
  transition: transform 0.3s;
}
.back_link:hover i {
  transform: translateX(-5px);
}
@media screen and (max-width: 991px) {
  .news_content_title {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .news_content_date {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .news_content_html_editor {
    margin-bottom: 40px;
  }
}
/* 最新消息內頁 */

/* 購物商城 */
.mall_navi_list {
  border-top: 2px solid #000;
  padding: 13px 0;
}
.mall_navi_list_link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  font-size: 20px;
  color: #000;
  transition: color 0.3s;
  cursor: pointer;
  position: relative;
}
.mall_navi_list_link_dot {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  background-color: #888888;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}
.mall_navi_list_link:hover,
.mall_navi_list_link.active {
  color: #888888;
}
.mall_navi_list_link:hover .mall_navi_list_link_dot,
.mall_navi_list_link.active .mall_navi_list_link_dot {
  opacity: 1;
}
.mall_navi_list_drop {
  background-color: #f3f3f3;
  padding: 7px 0;
  display: none;
}
.mall_navi_list_drop_link {
  display: block;
  padding: 7px 15px;
  color: #232323;
  font-size: 18px;
  transition: color 0.3s;
}
.mall_navi_list_drop_link:hover,
.mall_navi_list_drop_link.active {
  color: #888888;
}

.mall_list_card {
  text-align: center;
  color: #000;
}
.mall_list_card_img {
  aspect-ratio: 1;
  margin-bottom: 15px;
  position: relative;
}
.mall_list_card_img::before {
  content: "";
  background: url("../img/mall_cart.svg") no-repeat center center/contain;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 71px;
  height: 71px;
  opacity: 0;
  transition: opacity 0.3s;
  transition-delay: 0.1s;
}
.mall_list_card_img::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.45);
  width: 25%;
  height: 25%;
  opacity: 0;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition-delay: opacity 0.3s;
}
.mall_list_card:hover .mall_list_card_img::before {
  opacity: 1;
}
.mall_list_card:hover .mall_list_card_img::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.mall_list_card_img img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  object-fit: cover;
}
.mall_list_card_title {
  font-size: 20px;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}
.mall_list_card_price {
  font-size: 20px;
  color: #232323;
}
@media screen and (max-width: 991px) {
  .mall_navi_list {
    display: none;
  }
  .mall_list_card_title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .mall_list_card_price {
    font-size: 16px;
  }
}
/* 購物商城 */

/* 購物商城內頁 */

.mall_content_col_2 {
  display: flex;
  /* grid-template-columns: 43% 57%; */
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 53px;
  margin-bottom: 70px;
  border-bottom: 1px solid #c4c4c4;
}
.mall_content_img_wrap {
  width: 44%;
}
.mall_content_img {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 16px;
}
.mall_content_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mall_content_img_multi {
  margin: 0 -12px;
}
.mall_content_img_multi_single {
  padding: 0 12px;
  height: 122px;
}
.mall_content_img_multi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
  cursor: pointer;
}
.mall_content_img_multi img:hover {
  opacity: 0.7;
}

.mall_content_box {
  width: 60%;
  display: flex;
  flex-direction: column;
}
.mall_content_title {
  font-size: 28px;
  margin-bottom: 30px;
}
.mall_content_remark {
  font-size: 18px;
  color: #e52222;
  margin-bottom: 30px;
}
.mall_content_spec {
  font-size: 20px;
  color: #535353;
  margin-bottom: 24px;
  max-height: 163px;
  overflow-x: hidden;
  overflow-y: auto;
}
.mall_content_spec::-webkit-scrollbar {
  width: 3px;
}
.mall_content_spec::-webkit-scrollbar-track {
  border-radius: 5px;
  background: #ddd;
}
.mall_content_spec::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #787878;
}
@media screen and (max-width: 1250px) {
  .mall_content_spec {
    max-height: 110px;
  }
}
.mall_content_num_discount_select {
  width: 100%;
  border: 1px solid #888888;
  height: 41.44px;
  padding: 8px 12px;
  color: #c4c4c4;
  margin-bottom: 36px;
}

.mall_content_num_price_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
.mall_content_select_wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mall_content_select_wrap label {
  font-size: 18px;
}
.mall_content_select_wrap select {
  width: 159px;
  height: 38.81px;
  border: 1px solid #888888;
  color: #c4c4c4;
  /* font-size: 18px; */
  text-align: center;
  text-align-last: center;
  padding-left: 4px;
}

.mall_content_price {
  font-size: 30px;
}
.mall_content_btn_wrap {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.mall_content_btn {
  height: 53px;
  line-height: 53px;
  text-align: center;
  font-size: 18px;
  border: 1px solid #000;
  color: #f8f8f8;
  cursor: pointer;
  background-color: #000;
  transition: background-color 0.3s, color 0.3s;
}
.mall_content_btn:hover {
  background-color: #f8f8f8;
  color: #000;
}
.mall_content_html_editor {
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .mall_content_col_2 {
    flex-direction: column;
    padding-bottom: 32px;
    margin-bottom: 40px;
  }
  .mall_content_img_wrap {
    width: 100%;
  }
  .mall_content_img {
    margin-bottom: 8px;
  }
  .mall_content_img_multi {
    margin: 0 -8px;
  }
  .mall_content_img_multi_single {
    padding: 0 8px;
    height: 122px;
  }

  .mall_content_box {
    width: 100%;
  }

  .mall_content_title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .mall_content_remark {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .mall_content_spec {
    font-size: 16px;
    margin-bottom: 12px;
    max-height: 100%;
  }
  .mall_content_num_discount_select {
    height: 41.44px;
    padding: 8px 12px;
    margin-bottom: 16px;
  }

  .mall_content_num_price_wrap {
    margin-bottom: 16px;
  }
  .mall_content_select_wrap {
    gap: 8px;
  }
  .mall_content_select_wrap label {
    font-size: 16px;
  }
  .mall_content_select_wrap select {
    width: 159px;
    height: 38.81px;

    /* font-size: 16px; */
  }

  .mall_content_html_editor {
    margin-bottom: 20px;
  }
  .mall_content_price {
    font-size: 24px;
  }
  .mall_content_btn {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .mall_content_num_price_wrap {
    flex-direction: column;
  }
  .mall_content_select_wrap {
    width: 100%;
  }
  .mall_content_select_wrap label {
    flex-shrink: 0;
  }
  .mall_content_select_wrap select {
    width: 100%;
  }
  .mall_content_price {
    margin-top: 16px;
    align-self: flex-end;
  }
}
/* 購物商城內頁 */

/* 購物商城彌月小卡內頁 */
.heading_wrap_mall_card {
  justify-content: flex-end;
}
.mall_card_content_img_wrap {
  width: 60%;
  /* display: block; */
}
.mall_card_content_img_box {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.mall_card_content_img_box img {
  /* width: 100%;
  height: 100%; */
  max-width: 100%;
  object-fit: contain;
  vertical-align: bottom;
}
.mall_card_content_img {
  display: none;
}
.mall_card_content_img_wrap textarea {
  display: none;
}
/* 彌月小卡1 */
.mall_card_content_img1_input_wrap {
  position: absolute;
  inset: 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 7% 12% 0% 7%;
}

.mall_card_content_img_upload_box {
  position: relative;
  padding: 5%;
}
.mall_card_content_img_upload_box img {
  position: absolute;
  top: 11%;
  left: 5%;
  right: 5%;
  aspect-ratio: 1;
  border-radius: 50%;
  max-height: 272px;
  /* width: 100%; */
  z-index: -1;
  object-fit: cover;
}
.mall_card_content_img_upload_btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18%;
  z-index: 1;
  cursor: pointer;
}

.mall_card_content_file {
  position: absolute;
  inset: 0 0;
  appearance: none;
  opacity: 0;
  z-index: 5;
  cursor: pointer;
}
.mall_content_crop_wrap {
  display: none;
}
.mall_content_crop {
  margin: 12px auto 0;
  height: 40px;
  line-height: 40px;
  width: 120px;
  text-align: center;
  font-size: 18px;
  border: 1px solid #000;
  color: #f8f8f8;
  cursor: pointer;
  background-color: #000;
  transition: background-color 0.3s, color 0.3s;
}
.mall_content_crop:hover {
  background-color: #f8f8f8;
  color: #000;
}

.mall_content_popup_bg {
  position: fixed;
  inset: 0 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 49;
  display: none;
}
.mall_content_popup_box {
  width: 100%;
  max-width: 500px;
  background-color: #fff;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  text-align: center;
  display: none;
}

.mall_content_popup_cancel {
  text-align: right;
  cursor: pointer;
  padding-right: 8px;
  transition: all 0.3s;
}
.mall_content_popup_cancel:hover {
  opacity: 0.5;
}
.mall_content_popup_btn {
  height: 40px;
  line-height: 40px;
  width: 120px;
  text-align: center;
  font-size: 18px;
  border: 1px solid #000;
  color: #f8f8f8;
  cursor: pointer;
  background-color: #000;
  margin-bottom: 16px;
  transition: background-color 0.3s, color 0.3s;
}
.mall_content_popup_btn:hover {
  background-color: #f8f8f8;
  color: #000;
}

.mall_content_popup_title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.mall_card_content_img_input_text {
  position: relative;
  margin: 45% 0% 0% 8%;
  /* height: 100%; */
  /* overflow: hidden; */
}

.mall_card_content_img_birthday_text1 {
  position: absolute;
  right: 7%;
  top: -20.5%;
  font-size: 22px;
  font-weight: bold;
  width: 52%;
  color: #fff;
  outline: none;
  /* overflow-y: scroll; */
}
.mall_card_contenteditable {
  outline: none;
  overflow-y: scroll;
}

.mall_card_contenteditable1 {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;

  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: bold;
}
.mall_card_contenteditable::-webkit-scrollbar {
  width: 3px;
}
.mall_card_contenteditable::-webkit-scrollbar-track {
  border-radius: 5px;
  /* background: #ddd; */
}
.mall_card_contenteditable::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #787878;
}

.mall_card_content_input_remind {
  width: 114px;
  height: 36px;
  font-size: 18px;
  text-align: center;
  line-height: 36px;
  border: 1px solid #fff;
  color: #fff;
  box-shadow: 0 0 0px 5px rgba(0, 0, 0, 0.76);
  background-color: rgba(0, 0, 0, 0.76);
  border-radius: 5px;
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  top: 70%;
}

.mall_card_content_img_upload_btn {
  width: 126px;
  height: 52px;
  font-size: 22px;
  text-align: center;
  line-height: 52px;
  border: 1px solid #fff;
  color: #fff;
  box-shadow: 0 0 0px 5px rgba(0, 0, 0, 0.76);
  background-color: rgba(0, 0, 0, 0.76);
  border-radius: 5px;
}
@media screen and (max-width: 1120px) {
  .mall_card_content_img_birthday_text1 {
    font-size: 18px;
  }
  .mall_card_contenteditable1 {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .mall_card_contenteditable1 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .mall_card_content_img_birthday_text {
    font-size: 14px;
  }
  .mall_card_contenteditable1 {
    font-size: 14px;
  }

  .mall_card_content_input_remind {
    width: 76px;
    height: 28px;
    font-size: 16px;
    line-height: 28px;
  }
  .mall_card_content_img_upload_btn {
    width: 80px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
  }
}
@media screen and (max-width: 476px) {
  .mall_card_content_img_input_family_wrap {
    gap: 0px;
  }
  .mall_card_content_img_birthday_text {
    font-size: 12px;
  }
  .mall_card_contenteditable1 {
    font-size: 12px;
  }
}
/* 彌月小卡2 */
.mall_card_content_img2_input_wrap {
  position: absolute;
  inset: 0 0;
  display: grid;
  grid-template-columns: 1fr;
}
.mall_card_content_img2_upload_box {
  position: relative;
}
.mall_card_content_img2_upload_box img {
  position: absolute;
  top: 20.5%;
  left: 15%;
  right: 15%;
  aspect-ratio: 1;
  height: 364px;
  transform: rotate(-4deg) translate(12px, 16px);
  z-index: -1;
  object-fit: cover;
}
.mall_card_content_img2_upload_btn {
  bottom: 0;
}
.mall_card_content_img2_input_text {
  margin: 0 14% 18% 14%;
}

.mall_card_content_img2_birthday_text {
  position: absolute;
  right: 0%;
  top: 20%;
  width: 40%;
  color: #5d5f8a;
  font-size: 28px;
  z-index: 1;
  outline: none;
}

.mall_card_contenteditable2 {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  font-size: 28px;
  color: #5d5f8a;
  height: 74.5%;
  padding: 0 14%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .mall_card_content_img2_birthday_text {
    font-size: 24px;
  }
  .mall_card_contenteditable2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 576px) {
  .mall_card_content_img2_input_family_wrap {
    gap: 16px;
  }
  .mall_card_contenteditable2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 476px) {
  .mall_card_content_img2_input_wrap {
    overflow: hidden;
  }
  .mall_card_content_img2_upload_box img {
    top: 6.5%;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-height: 360px;
  }

  .mall_card_content_img2_birthday_text {
    font-size: 16px;
  }
  .mall_card_contenteditable2 {
    font-size: 16px;
  }
}
/* 彌月小卡3 */
.mall_card_content_img3_input_wrap {
  position: absolute;
  inset: 9% 6%;
  display: grid;
  grid-template-columns: 0.44fr 0.56fr;
}
.mall_card_content_img3_upload_box {
  position: relative;
}
.mall_card_content_img3_upload_box img {
  position: absolute;
  inset: 0 0;
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
  z-index: -1;
}
.mall_card_content_img3_upload_btn {
  bottom: 0;
}
.mall_card_content_img3_input_text {
  margin: 0 9% 3% 9%;
}

.mall_card_content_img3_birthday_text {
  position: absolute;
  right: -5%;
  top: 84%;
  width: 32%;
  color: #f4ab9a;
  font-size: 26px;
  line-height: 1;
  z-index: 0;
  outline: none;
}

.mall_card_contenteditable3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15%;
  height: 55%;
  font-size: 18px;
  color: #f4ab9a;
  padding: 0 14% 0 0;
  text-align: center;
  line-height: 1.1;
}

@media screen and (max-width: 1180px) {
  .mall_card_contenteditable3 {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .mall_card_contenteditable3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .mall_card_content_img3_birthday_text {
    font-size: 19px;
  }
  .mall_card_contenteditable3 {
    font-size: 14px;
  }
}
@media screen and (max-width: 525px) {
  .mall_card_content_img3_birthday_text {
    font-size: 14px;
  }
  .mall_card_contenteditable3 {
    font-size: 12px;
  }
}
@media screen and (max-width: 476px) {
  .mall_card_contenteditable3 {
    font-size: 10px;
  }
}
/* 彌月小卡4 */
.mall_card_content_img4_input_wrap {
  position: absolute;
  top: 30%;
  bottom: 9%;
  left: 5%;
  right: 5%;

  display: grid;
  grid-template-columns: 1fr;
}
.mall_card_content_img4_upload_box {
  position: relative;
  padding-bottom: 16%;
}
.mall_card_content_img4_upload_box img {
  position: absolute;
  inset: 0 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;

  z-index: -1;
}
.mall_card_content_img4_upload_btn {
  bottom: 10%;
}
.mall_card_content_img4_input_text {
  margin: 0 9% 0% 0%;
}

.mall_card_content_img4_birthday_text {
  position: absolute;
  right: 0%;
  top: 22.5%;
  width: 32%;
  color: #fff;

  outline: none;
  font-size: 26px;
  line-height: 1;
  z-index: 0;
}

.mall_card_contenteditable4 {
  position: absolute;
  top: 17%;
  left: 0;
  font-size: 26px;
  color: #db80b2;
  width: 58%;
  height: 100%;
  text-align: left;
  background-color: transparent;
  line-height: 1.2;
}
.mall_card_contenteditable4_name {
  position: absolute;
  top: 52%;
  right: -12px;
  font-size: 26px;
  color: #db80b2;
  width: 34%;
  height: 50%;
  text-align: center;
  background-color: transparent;
  line-height: 1.2;
}
/* .mall_card_content_img4_input_text textarea {
  position: absolute;
  top: 20%;
  left: 0;
  font-size: 22px;
  color: #db80b2;
  width: 58%;
  height: 100%;
  text-align: left;
  background-color: transparent;
  line-height: 1;
}
.mall_card_content_img4_input_family_wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 47px;
  position: absolute;
  left: 88%;
  top: 55%;
  width: 12%;
}
.mall_card_content_img4_input_family_wrap input {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  background-color: transparent;
  border: none;
  color: #db80b2;
} */
@media screen and (max-width: 1200px) {
  .mall_card_contenteditable4 {
    font-size: 24px;
  }
  .mall_card_contenteditable4_name {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .mall_card_content_img4_birthday_text {
    font-size: 24px;
  }

  .mall_card_content_img4_input_family_wrap {
    gap: 44px;
    top: 54%;
  }
}
@media screen and (max-width: 576px) {
  .mall_card_contenteditable4 {
    font-size: 18px;
  }
  .mall_card_contenteditable4_name {
    font-size: 18px;
  }
}
@media screen and (max-width: 520px) {
  .mall_card_content_img4_birthday_text {
    font-size: 18px;
  }
}
@media screen and (max-width: 476px) {
  .mall_card_content_img4_input_family_wrap {
    gap: 24px;
  }
  .mall_card_contenteditable4 {
    font-size: 16px;
  }
  .mall_card_contenteditable4_name {
    font-size: 16px;
  }
}
@media screen and (max-width: 400px) {
  .mall_card_content_img4_birthday_text {
    font-size: 16px;
  }
  .mall_card_contenteditable4 {
    font-size: 14px;
  }
  .mall_card_contenteditable4_name {
    font-size: 14px;
  }
}

.mall_card_content_qty {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
}
.mall_card_content_qty input {
  width: calc(100% - 78px);
  height: 39px;
  border: 1px solid #888888;
  text-align: center;
  font-size: 18px;
}
.mall_card_content_reduce,
.mall_card_content_add {
  width: 39px;
  height: 39px;
  background-color: #000;
  color: #fff;
  border: 1px solid #000;

  cursor: pointer;
  transition: opacity 0.3s;
}
.mall_card_content_reduce i {
  font-size: 39px;
}
.mall_card_content_add i {
  font-size: 24px;
}
.mall_card_content_reduce:hover,
.mall_card_content_add:hover {
  opacity: 0.7;
}

.mall_card_content_box {
  width: 40%;
}
@media screen and (max-width: 991px) {
  .mall_card_content_img_wrap {
    width: 100%;
  }
  .mall_card_content_box {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .mall_card_content_qty {
    width: 100%;
  }
}
/* 購物商城彌月小卡內頁 */

/* 試吃未登入頁面 */
.taste_wrap {
  padding: 50px 0 180px;
}

.breadcrumb_wrap {
  text-align: right;
  margin-bottom: 35px;
}

.taste_heading {
  font-size: 40px;
  margin-bottom: 72px;
  color: #232323;
}

.page_html_editor_taste {
  margin-bottom: 40px;
}

.taste_product_col_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 50px;
  column-gap: 40px;
  margin-bottom: 90px;
}

.taste_product_list_card {
  text-align: center;
}
.taste_product_list_card_cursor {
  cursor: pointer;
}
.taste_product_list_card_img {
  margin-bottom: 15px;
  aspect-ratio: 1;
}
.taste_product_list_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.taste_product_list_card_title {
  font-size: 20px;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.taste_product_list_card_title input {
  width: 20px;
  height: 20px;
  accent-color: #232323;
}
.taste_product_list_card_price {
  font-size: 20px;
  color: #232323;
}

.taste_login_notify_wrap {
  background: url("../img/taste_bg.png") no-repeat center center/cover;
  padding: 60px 0;
  margin-top: 160px;
}
.taste_login_notify_box {
  width: 100%;
  max-width: 900px;
  background-color: #fff;
  padding: 49px 0 58px;
  text-align: center;
  margin: 0 auto;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.taste_login_notify_box_logo {
  margin-bottom: 32px;
}
.taste_login_notify_box_logo img {
  width: 215px;
}
.taste_login_notify_box_text {
  font-size: 30px;
  color: #232323;
  margin-bottom: 40px;
}
.login_link {
  display: inline-block;
  width: 135px;
  height: 51px;
  line-height: 51px;
  font-size: 18px;
  background-color: #232323;
  color: #fff;
  border: 1px solid #232323;
  transition: background-color 0.3s, color 0.3s;
  text-align: center;
}
.login_link:hover {
  background-color: #fff;
  color: #232323;
}

@media screen and (max-width: 991px) {
  .taste_wrap {
    padding: 25px 0 90px;
  }

  .breadcrumb_wrap {
    margin-bottom: 20px;
  }
  .taste_heading {
    font-size: 28px;
    margin-bottom: 36px;
  }

  .taste_product_col_3 {
    row-gap: 25px;
    column-gap: 15px;
  }

  .taste_product_list_card_title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .taste_product_list_card_price {
    font-size: 16px;
  }

  .taste_login_notify_wrap {
    padding: 60px 0;
    margin-top: 80px;
  }
  .taste_login_notify_box {
    max-width: 500px;
    padding: 49px 0 58px;
  }
  .taste_login_notify_box_logo {
    margin-bottom: 16px;
  }
  .taste_login_notify_box_logo img {
    width: 200px;
  }
  .taste_login_notify_box_text {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .login_link {
    height: 42px;
    line-height: 42px;
  }
}

@media screen and (max-width: 767px) {
  .taste_product_col_3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .breadcrumb_wrap {
    align-self: flex-end;
  }
  .taste_login_notify_box {
    max-width: 340px;
    padding: 32px 0 42px;
  }
  .taste_login_notify_box_logo img {
    width: 150px;
  }
}

@media screen and (max-width: 410px) {
  .taste_login_notify_box {
    max-width: 300px;
    padding: 32px 0 42px;
  }
}
/* 試吃未登入頁面 */

/* 試吃表單 */
.taste_form_wrap {
  background: url("../img/taste_bg.png") no-repeat center center/cover;
  padding: 154px 60px 116px;
  margin-top: 160px;
}
.taste_form {
  width: 100%;
  max-width: 900px;
  background-color: #fff;
  padding: 53px 130px 103px;
  margin: 0 auto;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 991px) {
  .taste_form_wrap {
    padding: 77px 30px 58px;
    margin-top: 80px;
  }
  .taste_form {
    max-width: 600px;
    background-color: #fff;
    padding: 28px 30px 51px;
  }
}

@media screen and (max-width: 767px) {
  .taste_form_wrap {
    padding: 77px 20px 58px;
    margin-top: 80px;
  }
}

.taste_form_heading {
  font-size: 30px;
  margin-bottom: 42px;
}
.taste_col_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 27px;
  margin-bottom: 36px;
}
.taste_input > label {
  display: inline-block;
  font-size: 18px;
  margin-bottom: 16px;
  color: #707070;
}
.taste_input > input {
  width: 100%;
  height: 38px;
  padding: 8px;
  color: #232323;
  font-size: 18px;
  border: 1px solid #888888;
}
.taste_delivery_method_wrap {
  display: none;
}
.taste_remark {
  margin-bottom: 15px;
}
.taste_remark_text {
  font-size: 18px;
  color: #888888;
  margin-bottom: 15px;
}

.taste_img_title {
  font-size: 18px;
  margin-bottom: 15px;
}
.taste_img_box {
  height: 260px;
  border: 1px solid #888888;
  position: relative;
  cursor: pointer;
}
.taste_img_box img {
  position: absolute;
  inset: 0 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#input-file-now {
  position: absolute;
  inset: 0 0;
  opacity: 0;
}

.taste_img_upload_btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  text-align: center;

  transition: background-color 0.3s, color 0.3s;
}
.taste_img:hover .taste_img_upload_btn {
  background-color: #fff;
  color: #000;
}

.taste_title {
  font-size: 24px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #232323;
  color: #535353;
}
.taste_price_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.taste_price_text {
  font-size: 18px;
  color: #232323;
}
.taste_price {
  font-size: 22px;
  color: #4d4d4d;
}

.taste_pay_method_wrap {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}
.taste_input_radio {
  display: flex;
  align-items: center;
  gap: 8px;
}
.taste_input_radio input {
  width: 16px;
  height: 16px;
  accent-color: #535353;
}
.taste_input_radio label {
  font-size: 18px;
}

.taste_input_radio_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.taste_input_radio_wrap input {
  width: 16px;
  height: 16px;
  accent-color: #535353;
}
.taste_input_radio_wrap label {
  font-size: 18px;
}

.taste_same_member_data {
  padding: 0px 0 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}
.taste_same_member_data input {
  width: 16px;
  height: 16px;
  accent-color: #232323;
}

.cart_code_city_area_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
}
.cart_city_area_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
}
.cart_town_code {
  max-width: 100px;
  text-align: center;
}

.taste_code_city_area_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.taste_select,
.taste_input {
  margin-bottom: 20px;
}
.taste_select label,
.taste_input_title,
.taste_textarea label,
.taste_input label,
.taste_code_city_area_title {
  display: inline-block;
  font-size: 18px;
  color: #232323;
  margin-bottom: 15px;
}
.taste_select select {
  width: 100%;
  border: 1px solid #888888;
  color: #232323;
  height: 38px;
  font-size: 18px;
  padding: 6px;
}
.taste_input_wrap input {
  width: 100%;
  border: 1px solid #888888;
  color: #232323;
  height: 38px;
  font-size: 18px;
  padding: 6px;
}
.taste_time_wrap {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
  margin-bottom: 54px;
}
.taste_time_wrap input {
  height: 38px;
  border: 1px solid #888888;
  padding: 8px;
  font-size: 18px;
}
.taste_time_input_radio_wrap {
  display: flex;
  gap: 20px;
}
.taste_textarea {
  margin-top: 60px;
}
.taste_textarea textarea {
  width: 100%;
  border: 1px solid #888888;
  resize: none;
  font-size: 18px;
  height: 199px;
  padding: 4px;
}

.taste_submit_wrap {
  margin-top: 50px;
  text-align: center;
}

.taste_submit {
  display: inline-block;
  width: 132px;
  height: 51px;
  line-height: 51px;
  font-size: 18px;
  background-color: #232323;
  color: #fff;
  border: 1px solid #232323;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.taste_submit:hover {
  background-color: #fff;
  color: #232323;
}
@media screen and (max-width: 991px) {
  .taste_form_heading {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .taste_col_2 {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 18px;
  }
  .taste_input > label {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .taste_input > input {
    font-size: 16px;
  }

  .taste_remark {
    margin-bottom: 16px;
  }
  .taste_remark_text {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .taste_img_title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .taste_title {
    font-size: 18px;
    padding-bottom: 8px;
    margin-bottom: 15px;
  }
  .taste_price_wrap {
    margin-bottom: 20px;
  }
  .taste_price_text {
    font-size: 16px;
    color: #232323;
  }
  .taste_price {
    font-size: 18px;
    color: #4d4d4d;
  }

  .taste_pay_method_wrap {
    margin-bottom: 20px;
  }

  .taste_input_radio label {
    font-size: 16px;
  }

  .taste_input_radio_wrap {
    margin-bottom: 16px;
  }

  .taste_input_radio_wrap label {
    font-size: 16px;
  }

  .taste_select {
    margin-bottom: 16px;
  }
  .taste_select label,
  .taste_input_title,
  .taste_textarea label {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .taste_select select {
    font-size: 16px;
    padding: 6px;
  }
  .taste_time_wrap {
    gap: 20px;
    margin-bottom: 32px;
  }
  .taste_time_wrap input {
    padding: 8px;
    font-size: 16px;
  }

  .taste_textarea {
    margin-top: 30px;
  }

  .taste_submit_wrap {
    margin-top: 32px;
  }
}
@media screen and (max-width: 450px) {
  .taste_time_wrap {
    grid-template-columns: 1fr;
  }
  .taste_code_city_area_wrap {
    gap: 8px;
  }
}
/* 試吃表單 */

/* 試吃表單送出後頁面 */
.taste_processing_wrap {
  padding: 52px 0 260px;
}
.taste_heading_processing {
  text-align: center;
}
.taste_processing_box {
  max-width: 766px;
  margin: 0 auto;
  padding: 107px 0 80px;
  background-color: #fff;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.taste_processing_box_text {
  line-height: 2.3;
  font-size: 20px;
  color: #232323;
  margin-bottom: 67px;
}
.taste_processing_box_text_link {
  font-size: 22px;
  color: #b78e3c;
  transition: opacity 0.3s;
}

@media screen and (max-width: 991px) {
  .taste_processing_wrap {
    padding: 28px 0 130px;
  }
  .taste_processing_box_text {
    font-size: 18px;
  }
  .taste_processing_box_text_link {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .taste_processing_box {
    padding: 54px 0 40px;
  }
  .taste_processing_box_text {
    margin-bottom: 32px;
  }
}
/* 試吃表單送出後頁面 */

/* 門市據點 */
.heading_en_line {
  position: relative;
  margin-bottom: 10px;
}
.heading_en_line::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 155px;
  height: 2px;
  background-color: #000;
}

.store_col_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 34px;
  row-gap: 44px;
  padding-top: 30px;
  margin-bottom: 100px;
}
.store_card {
  padding: 34px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  width: 100%;
  color: #232323;
}
.store_card_card:nth-child(3) {
  margin-bottom: 40px;
}
.store_card_header {
  font-size: 22px;
  font-weight: bold;
  border-left: 4px solid #232323;
  padding: 2px 0 2px 16px;
  margin-bottom: 32px;
}
.store_card_body_contact {
  /* display: flex; */
  font-size: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 991px) {
  .store_col_2 {
    grid-template-columns: 1fr;
    row-gap: 20px;
    padding-top: 20px;
    margin-bottom: 50px;
  }
  .store_card {
    padding: 20px;
    width: 100%;
  }

  .store_card_header {
    font-size: 18px;
    border-left: 4px solid #232323;
    padding: 2px 0 2px 8px;
    margin-bottom: 16px;
  }
  .store_card_body_contact {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 767px) {
  .heading_en_line::after {
    width: 120px;
  }
}
/* 門市據點 */

/* 作品集 */
.collection_list_wrap {
  position: relative;
}
.collection_single {
  position: relative;
  height: calc(100vw / 1920 * 1100);
}
.collection_single::before {
  content: "";
  background-color: transparent;
  position: absolute;
  inset: 0 0;
  transition: background-color 1s;
}
.collection_single:hover::before {
  background-color: rgba(0, 0, 0, 0.5);
}
/* .collection_single img {
  width: 100%;
  height: 100%;
  max-height: 1100px;
  object-fit: cover;
} */
.collection_single_content {
  position: absolute;
  inset: 0 0;
  padding: 0 8.5%;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-direction: column;
  text-align: center;
  margin: 20px;
  border: 1px solid transparent;
  transition: border 0.3s;
}
.collection_single:hover .collection_single_content {
  border: 1px solid #fff;
}
/* .collection_single_content::before,
.collection_single_content:after {
  content: "";
  position: absolute;
  background: transparent;
  z-index: 2;
  width: 0%;
  height: 0%;
  opacity: 0;
}
.collection_single_content::before {
  top: 0;
  right: 0;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transition: width 0.15s 0.5s ease-out, height 0.15s 0.35s linear,
    opacity 0s 0.7s;
}
.collection_single_content:after {
  bottom: 0;
  left: 0px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transition: width 0.15s 0.15s linear, height 0.15s ease-in, opacity 0s 0.35s;
}
.collection_single:hover .collection_single_content::before,
.collection_single:hover .collection_single_content:after {
  width: 100%;
  height: 99.9%;
  opacity: 1;
}
.collection_single:hover .collection_single_content::before {
  transition: width 0.15s ease-in, height 0.15s 0.15s linear, opacity 0s;
}
.collection_single:hover .collection_single_content::after {
  transition: width 0.15s 0.25s linear, height 0.15s 0.35 linear,
    opacity 0s 0.5s;
} */

.collection_single_title {
  font-size: 30px;
  color: #fff;
  position: relative;
  opacity: 0;
  transition: opacity 0.3s;
  transition-delay: 0.3s;
}
.collection_single:hover .collection_single_title {
  opacity: 1;
}
.collection_single_title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 50px;
  height: 2px;
  border-radius: 20px;
  background-color: #fff;
}
.collection_single_more {
  width: 200px;
  height: 62px;
  border: 1px solid #fff;
  line-height: 62px;
  color: #fff;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s;
  transition-delay: 0.5s;
}
.collection_single:hover .collection_single_more {
  opacity: 1;
}
.collection_left,
.collection_right {
  width: 72px;
  height: 72px;
  border: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s;
  cursor: pointer;
}
.collection_left:hover,
.collection_right:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.collection_left {
  left: 40px;
}
.collection_right {
  right: 40px;
}
.collection_left i,
.collection_right i {
  font-size: 24px;
  color: #fff;
}
@media screen and (max-width: 1180px) {
  .collection_single_title {
    font-size: 20px;
  }
  .collection_single_more {
    width: 120px;
    height: 52px;
    line-height: 52px;
  }
}
@media screen and (max-width: 991px) {
  .collection_single {
    height: calc(100vw / 991 * 1000);
  }
}
@media screen and (max-width: 767px) {
  .collection_single {
    height: calc(100vw / 767 * 1000);
  }
  .collection_single::before {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .collection_single_content {
    border: 1px solid #fff;
  }
  .collection_single_title,
  .collection_single_more {
    opacity: 1;
  }
  .collection_left,
  .collection_right {
    width: 50px;
    height: 50px;
  }
  .collection_left {
    left: 15px;
  }
  .collection_right {
    right: 15px;
  }
}
@media screen and (max-width: 567px) {
  .collection_single {
    height: calc(100vw / 567 * 880);
  }
}

/* 作品集 */

/* 作品集內頁 */
.collection_content_wrap {
  padding: 45px 0 120px;
}
.heading_no_line {
  font-size: 30px;
}

.collection_content_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 50px;
  column-gap: 32px;
}
.collection_content_list_single {
  cursor: pointer;
}
.collection_content_list_single_img {
  aspect-ratio: 1;
  margin-bottom: 15px;
  position: relative;
}
.collection_content_list_single_img::before {
  content: "";
  background: url("../img/collection_content_icon.svg") no-repeat center
    center/contain;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 71px;
  height: 71px;
  opacity: 0;
  transition: opacity 0.3s;
  transition-delay: 0.1s;
}
.collection_content_list_single_img::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.45);
  width: 25%;
  height: 25%;
  opacity: 0;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition-delay: opacity 0.3s;
}
.collection_content_list_single:hover
  .collection_content_list_single_img::before {
  opacity: 1;
}
.collection_content_list_single:hover
  .collection_content_list_single_img::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.collection_content_list_single_img img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  object-fit: cover;
}
.collection_content_list_single_title {
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .heading_no_line {
    font-size: 24px;
  }
  .collection_content_list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 25px;
    column-gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .collection_content_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.collection_content_slick_wrap {
  position: fixed;
  inset: 0 0;
  padding-top: 10%;

  background-color: rgba(0, 0, 0, 0.6);
  /* z-index: 30; */

  z-index: -10;
  opacity: 0;
  transition: opacity 0.3s;
}
.collection_content_slick_wrap.active {
  z-index: 30;
  opacity: 1;
}
.collection_content_slick_wrap .gs_container {
  position: relative;
}

.collection_content_slick_box {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.collection_content_img img {
  width: 100%;
  height: 100%;
  max-width: 600px;
  max-height: 600px;
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0 auto;
}

.collection_content_left,
.collection_content_right {
  width: 72px;
  height: 72px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s;
  cursor: pointer;
}
.collection_content_left:hover,
.collection_content_right:hover {
  opacity: 0.7;
}
.collection_content_left {
  left: 0px;
}
.collection_content_right {
  right: 0px;
}
.collection_content_left i,
.collection_content_right i {
  font-size: 24px;
  color: #fff;
}

.collection_content_cross {
  position: absolute;
  top: -80px;
  right: 0;
  width: 46px;
  height: 46px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
  cursor: pointer;
}
.collection_content_cross:hover {
  opacity: 0.7;
}
.collection_content_cross i {
  font-size: 20px;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .collection_content_slick_wrap {
    padding-top: 18%;
  }

  /* .collection_content_slick_box{
    max-width: 400px;
  }
  .collection_content_img img {
    max-width: 400px;
    max-height: 400px;
  } */
  .collection_content_left,
  .collection_content_right {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  /* .collection_content_slick_box{
    max-width: 360px;
  }
  .collection_content_img img {
    max-width: 360px;
    max-height: 360px;
  }

  .collection_content_cross{
    width: 36px;
    height: 36px;

  } */

  .collection_content_left,
  .collection_content_right {
    top: 105%;
    transform: translateY(0);
  }
  .collection_content_left {
    left: 15px;
  }
  .collection_content_right {
    right: 15px;
  }
}
@media screen and (max-width: 991px) {
  .collection_content_slick_wrap {
    padding-top: 25%;
  }
}
/* 作品集內頁 */

/* QA頁面 */
.qa_list {
  margin-bottom: 50px;
}
.qa_question_wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 22px 20px 26px;
  border-bottom: 1px solid #c4c4c4;
  color: #232323;
  position: relative;
  cursor: pointer;
  transition: border-bottom 0.3s, color 0.3s;
}
.qa_question_wrap.active {
  border-bottom: 1px solid transparent;
  color: #888888;
}
.qa_question_wrap:hover {
  color: #888888;
}
.qa_question_wrap i {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 15px;
  color: #232323;
  transition: transform 0.3s;
}
.qa_question_wrap.active i {
  transform: translateY(-50%) rotate(0deg);
}
.qa_question {
  font-size: 24px;
  position: relative;
}
.qa_question::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 23px;
  background-color: #000;
  transition: background-color 0.3s;
}
.qa_question_wrap.active .qa_question::after,
.qa_question_wrap:hover .qa_question::after {
  background-color: #888888;
}
.qa_question_title {
  font-size: 22px;
}

.qa_answer_box {
  display: none;
}
.qa_answer_wrap {
  background-color: #f3f3f3;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 28px 18px 46px;
}
.qa_answer {
  font-size: 24px;
  color: #535353;
}
.qa_answer_content {
  font-size: 20px;
  color: #535353;
}
@media screen and (max-width: 991px) {
  .qa_list {
    margin-bottom: 25px;
  }
  .qa_question {
    font-size: 22px;
  }
  .qa_question_title {
    font-size: 20px;
  }
  .qa_answer {
    font-size: 22px;
  }
  .qa_answer_content {
    font-size: 18px;
  }
}
/* QA頁面 */

/* 聯絡我們 */
.contact_col_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.contact_form {
  padding: 30px 40px 48px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.contact_input_wrap {
  margin-bottom: 22px;
}
.contact_input_wrap label,
.contact_textarea_wrap label {
  display: inline-block;
  font-size: 20px;
  margin-bottom: 12px;
  color: #232323;
}
.contact_input_wrap input {
  width: 100%;
  height: 48px;
  border: 1px solid #888888;
  padding: 8px;
  font-size: 18px;
}
.contact_textarea_wrap {
  margin-bottom: 38px;
}
.contact_textarea_wrap textarea {
  resize: none;
  width: 100%;
  height: 220px;
  border: 1px solid #888888;
  padding: 8px;
  font-size: 18px;
}

.contact_robot_submit_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact_submit_btn {
  display: inline-block;
  width: 132px;
  height: 51px;
  line-height: 51px;
  font-size: 18px;
  background-color: #232323;
  color: #fff;
  border: 1px solid #232323;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.contact_submit_btn:hover {
  background-color: #fff;
  color: #232323;
}
@media screen and (max-width: 1200px) {
  .contact_robot_submit_wrap {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 991px) {
  .contact_col_2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact_input_wrap {
    margin-bottom: 16px;
  }
  .contact_input_wrap label,
  .contact_textarea_wrap label {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
/* 聯絡我們 */

/* 會員登入 */
.member_login_form {
  max-width: 766px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 2px solid #f3f3f3;
  padding: 67px 123px 94px;
  margin: 0 auto;
}
.member_input_wrap {
  margin-bottom: 24px;
}
.member_input_wrap label,
.member_code_city_area_title {
  display: inline-block;
  font-size: 20px;
  margin-bottom: 8px;
}
.member_input_wrap input {
  width: 100%;
  height: 45px;
  border: 1px solid #888888;
  padding: 8px 20px;
  font-size: 16px;
}

.forget_password {
  margin: -12px 0 24px;
  text-align: right;
}
.forget_password_link {
  font-size: 18px;
  color: #888888;
  transition: color 0.3s;
}
.forget_password_link:hover {
  color: #232323;
}

.member_login_robot > div {
  margin: 0 auto;
}
.member_submit_btn {
  display: block;
  margin-top: 30px;
  height: 53px;
  width: 100%;
  text-align: center;
  line-height: 53px;
  font-size: 18px;
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.member_submit_btn:hover {
  background-color: #fff;
  color: #000;
}
.or {
  font-size: 18px;
  margin: 30px 0 20px;
  text-align: center;
  position: relative;
}
.or::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 55%;
  transform: translateY(-50%);
  border: 1px solid #707070;
}
.or::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  right: 0;
  transform: translateY(-50%);
  border: 1px solid #707070;
}

.member_line_btn {
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #00b900;
  border: 1px solid #00b900;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.member_line_btn:hover {
  background-color: #fff;
  color: #00b900;
}
.member_line_btn i {
  font-size: 24px;
}
@media screen and (max-width: 991px) {
  .member_login_form {
    max-width: 766px;
    padding: 40px 60px 50px;
  }
  .member_input_wrap {
    margin-bottom: 12px;
  }
  .member_input_wrap label {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .forget_password {
    margin: -8px 0 24px;
  }

  .or {
    font-size: 18px;
    margin: 15px 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .member_login_form {
    max-width: 766px;
    padding: 40px 15px 50px;
  }
  .member_input_wrap input {
    padding: 8px 12px;
  }
}
/* 會員登入 */

/* 會員註冊 */
.member_register_robot {
  margin: 54px 0 24px;
}
.member_register_robot > div {
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .member_register_robot {
    margin: 30px 0 0px;
  }
}
/* 會員註冊 */

/* 會員註冊完成頁 */
.member_register_result_box {
  text-align: center;
}
.member_register_result_logo {
  margin-bottom: 30px;
}
.member_register_result_QR {
  width: 250px;
  height: 250px;
  margin: 0 auto 28px;
}
.member_register_result_QR img {
  width: 100%;
  height: 100%;
}
.member_register_result_text {
  font-size: 18px;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .member_register_result_logo {
    margin-bottom: 24px;
  }
  .member_register_result_QR {
    margin: 0 auto 20px;
  }
  .member_register_result_text {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .member_register_result_text {
    margin-bottom: 20px;
  }
}
/* 會員註冊完成頁 */

/* 會員資料 */
.member_data_form {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 2px solid #f3f3f3;
  padding: 67px 123px 94px;
  margin: 0 auto;
}
.member_line_bind_btn {
  margin-bottom: 45px;
}
.member_line_bind_already {
  cursor: auto;
}
.member_line_bind_already:hover {
  background-color: #00b900;
  color: #fff;
}
.member_modify_wrap {
  text-align: center;
}

.member_code_city_area_wrap {
  display: grid;
  grid-template-columns: 0.425fr 0.425fr 0.15fr;
  gap: 28px;
}

.member_code_city_area_title {
  display: inline-block;
  font-size: 20px;
  margin-bottom: 8px;
}

.member_select_wrap select {
  width: 100%;
  height: 45px;
  border: 1px solid #888888;
  padding: 8px 20px;
  font-size: 16px;
}
.member_town_code {
  text-align: center;
}

.member_modify_btn {
  margin-top: 30px;
  height: 58px;
  width: 210px;
  font-size: 18px;
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.member_modify_btn:hover {
  background-color: #fff;
  color: #000;
}
@media screen and (max-width: 991px) {
  .member_data_form {
    padding: 40px 60px 50px;
  }

  .member_code_city_area_title {
    font-size: 16px;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 768px) {
  .member_data_form {
    padding: 40px 15px 50px;
  }
  .member_code_city_area_wrap {
    grid-template-columns: 0.4fr 0.4fr 0.2fr;
    gap: 8px;
  }
  .member_select_wrap select {
    padding: 8px 12px;
  }
}
/* 會員資料 */

/* 歷史訂單 */
.member_order_list {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 2px solid #f3f3f3;
  padding: 36px 47px 58px;
  margin: 0 auto;
}
.member_order_list_header {
  display: grid;
  grid-template-columns: 0.19fr 0.24fr 0.19fr 0.19fr 0.19fr 136px;
  border-bottom: 1px solid #888888;
  padding: 0 0 15px 15px;
}

.member_order_list_header_text {
  text-align: center;
  font-size: 20px;
  color: #232323;
}
.member_order_list_header_text:first-child {
  text-align: left;
}
.member_order_list_body {
  margin-bottom: 54px;
}
.member_order_list_body_single {
  display: grid;
  grid-template-columns: 0.19fr 0.24fr 0.19fr 0.19fr 0.19fr 136px;
  padding: 20px 0 20px 15px;
  border-bottom: 1px solid #888888;
}

.member_order_list_body_single_text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.member_order_list_body_single_text:first-child {
  justify-content: flex-start;
}
.member_order_list_body_single_title {
  font-size: 18px;
  display: none;
}
.color_red {
  color: #e52222;
}
.member_order_list_body_single_btn {
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #232323;
  color: #fff;
  border: 1px solid #232323;
  transition: background-color 0.3s, color 0.3s;
}
.member_order_list_body_single_btn:hover {
  background-color: #fff;
  color: #232323;
}
@media screen and (max-width: 1180px) {
  .member_order_list_header {
    display: none;
  }
  .member_order_list_body_single {
    padding: 20px 15px;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .member_order_list_body_single_text {
    justify-content: flex-start;
  }
  .member_order_list_body_single_title {
    display: block;
  }
  .member_order_list_body_single_btn {
    width: 136px;
    margin-left: auto;
  }
}
@media screen and (max-width: 991px) {
  .member_order_list {
    padding: 18px 15px 28px;
  }
  .member_order_list_body_single_text {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
}
/* 歷史訂單 */

/* 歷史訂單內頁 */
.member_order_content {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 2px solid #f3f3f3;
  padding: 36px 47px 58px;
  margin: 0 auto 50px;
}
.member_order_content_header {
  display: grid;
  grid-template-columns: 0.7fr repeat(3, 1fr) 0.6fr;
  padding: 0 15px 15px 15px;
  border-bottom: 1px solid #888888;
}
.member_order_content_header_text {
  font-size: 20px;
  text-align: center;
}
.member_order_content_header_text:first-child {
  text-align-last: left;
}
.member_order_content_body_single {
  display: grid;
  grid-template-columns: 0.7fr repeat(3, 1fr) 0.6fr;
  padding: 20px 15px;
  border-bottom: 1px solid #888888;
}

.member_order_content_body_single_text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.member_order_content_body_single_text:first-child {
  justify-content: flex-start;
}
.member_order_content_body_single_title {
  font-size: 18px;
  display: none;
}
.member_order_content_text_wrap {
  margin: 35px 0;
  padding: 0 15px;
}
.member_order_content_text {
  display: flex;
  margin-bottom: 15px;
  font-size: 20px;
  word-break: break-all;
}
.member_order_content_title {
  flex-shrink: 0;
}
.member_order_content_text:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .member_order_content {
    padding: 18px 15px 28px;
    margin: 0 auto 25px;
  }
  .member_order_content_header {
    display: none;
  }
  .member_order_content_body_single {
    padding: 20px 15px;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .member_order_content_body_single_text {
    justify-content: flex-start;
    font-size: 16px;
  }
  .member_order_content_body_single_title {
    display: block;
  }
  .member_order_content_text_wrap {
    margin: 20px 0;
  }
  .member_order_content_text {
    grid-template-columns: 90px 1fr;
    margin-bottom: 8px;
    font-size: 18px;
  }
}

.member_order_content_heading {
  font-size: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #888888;
  color: #4d4d4d;
}
.member_order_content_items_header {
  display: grid;
  grid-template-columns: 1fr 0.3fr 0.3fr;
  padding: 8px 0;
  border-bottom: 1px solid #888888;
}
.member_order_content_items_header_text {
  font-size: 20px;
  text-align: right;
}
.member_order_content_items_header_text:first-child,
.member_order_content_items_total_text:first-child {
  grid-column: 2 / 3;
}
.member_order_content_items_header_text:last-child,
.member_order_content_items_total_text:last-child {
  grid-column: 3 / 4;
  color: #4d4d4d;
}
.member_order_content_items_body {
  padding: 10px 0;
  border-bottom: 1px solid #888888;
}
.member_order_content_items_body_single {
  padding: 10px 0;
  display: grid;
  grid-template-columns: 1fr 0.3fr 0.3fr;
}
.member_order_content_items_body_text {
  font-size: 20px;
  color: #4d4d4d;
}
.member_order_content_items_body_text:nth-child(2),
.member_order_content_items_body_text:last-child,
.member_order_content_items_fare_text:nth-child(2),
.member_order_content_items_fare_text:last-child {
  text-align: right;
  color: #232323;
}
.member_order_content_items_body_text_mobile,
.member_order_content_items_fare_text_mobile {
  display: none;
}
.member_order_content_items_fare {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr 0.3fr 0.3fr;
  border-bottom: 1px solid #888888;
}
.member_order_content_items_fare_text {
  font-size: 20px;
  color: #4d4d4d;
}
.member_order_content_items_total {
  padding: 20px 0 0;
  display: grid;
  grid-template-columns: 1fr 0.3fr 0.3fr;
  color: #4d4d4d;
}
.member_order_content_items_total_text {
  font-size: 22px;
  text-align: right;
}
@media screen and (max-width: 1180px) {
  .member_order_content_items_header,
  .member_order_content_items_body_single,
  .member_order_content_items_fare,
  .member_order_content_items_total {
    grid-template-columns: 1fr 0.4fr 0.4fr;
  }
}
@media screen and (max-width: 991px) {
  .member_order_content_heading {
    font-size: 20px;
    padding-bottom: 12px;
  }
  .member_order_content_items_header_text {
    font-size: 18px;
  }
  .member_order_content_items_body {
    padding: 6px 0;
  }
  .member_order_content_items_body_single {
    padding: 6px 0;
  }
  .member_order_content_items_body_text {
    font-size: 18px;
  }
  .member_order_content_items_fare {
    padding: 12px 0;
  }
  .member_order_content_items_fare_text {
    font-size: 18px;
  }
  .member_order_content_items_total {
    padding: 12px 0 0;
  }
  .member_order_content_items_total_text {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .member_order_content_items_header,
  .member_order_content_items_body_single,
  .member_order_content_items_fare,
  .member_order_content_items_total {
    grid-template-columns: 0.5fr 0.5fr;
  }

  .member_order_content_items_header_text:first-child {
    grid-column: 2 / 3;
  }
  .member_order_content_items_header_text:last-child {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    text-align: left;
  }
  .member_order_content_items_body_text_mobile,
  .member_order_content_items_fare_text_mobile {
    display: inline-block;
  }
  .member_order_content_items_body_text:first-child {
    grid-column: span 2;
  }
  .member_order_content_items_body_text:nth-child(2) {
    text-align: left;
    margin-left: 20px;
  }

  .member_order_content_items_fare_text:first-child {
    grid-column: span 2;
  }
  .member_order_content_items_fare_text:nth-child(2) {
    text-align: left;
    margin-left: 20px;
  }

  .member_order_content_items_total_text:first-child {
    text-align: left;
    grid-column: 1 / 2;
  }
  .member_order_content_items_total_text:last-child {
    grid-column: auto;
  }
}

.member_order_content_store {
  font-size: 24px;
  margin: 24px 0 16px;
  color: #4d4d4d;
}
.member_order_content_store_time {
  font-size: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid #888888;
  color: #4d4d4d;
}
.member_order_content_pick_up_header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 12px 10px 14px 0;
  border-bottom: 1px solid #888888;
  color: #4d4d4d;
}
.member_order_content_pick_up_header_text {
  text-align: center;
  font-size: 20px;
  color: #4d4d4d;
}
.member_order_content_pick_up_header_text:first-child,
.member_order_content_pick_up_body_single_text:first-child {
  text-align-last: left;
}
.member_order_content_pick_up_header_text:last-child {
  text-align: right;
}
.member_order_content_pick_up_body_single {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 12px 10px 14px 0;
  border-bottom: 1px solid #888888;
  color: #4d4d4d;
}
.member_order_content_pick_up_body_single_text {
  font-size: 18px;
  text-align: center;
}
.member_order_content_pick_up_body_single_text:last-child {
  width: 168px;
  justify-self: flex-end;
}

.member_order_content_pick_up_body_single_title {
  display: none;
  font-size: 18px;
}
@media screen and (max-width: 991px) {
  .member_order_content_store {
    font-size: 20px;
    margin: 12px 0 8px;
  }
  .member_order_content_store_time {
    font-size: 18px;
    padding-bottom: 16px;
  }
  .member_order_content_pick_up_header {
    display: none;
  }
  .member_order_content_pick_up_body_single {
    grid-template-columns: 1fr;
  }

  .member_order_content_pick_up_body_single_text {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 8px;
  }
  .member_order_content_pick_up_body_single_text:last-child {
    width: 100%;
    justify-self: flex-start;
    margin-bottom: 0;
  }
  .member_order_content_pick_up_body_single_title {
    display: block;
  }
}

.member_order_content_delivery_title {
  font-size: 24px;
  padding: 22px 0 28px;
  border-bottom: 1px solid #888888;
  color: #4d4d4d;
}
.member_order_content_delivery_people {
  padding: 28px 0;
  border-bottom: 1px solid #888888;
}

.member_order_content_delivery_people_text {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  margin-bottom: 12px;
  color: #4d4d4d;
}
.member_order_content_delivery_people_title {
  font-size: 18px;
  flex-shrink: 0;
}
.member_order_content_delivery_people_text:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .member_order_content_delivery_title {
    font-size: 20px;
    padding: 12px 0 18px;
  }
  .member_order_content_delivery_people {
    padding: 16px 0;
  }
  .member_order_content_delivery_people_text {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
/* 歷史訂單內頁 */

/* 自取訂單 */
.color_grey {
  color: #888888;
}
/* 自取訂單 */

/* 自取訂單內頁 */
.member_pick_up_order_content_header {
  grid-template-columns: repeat(4, 1fr);
}
.member_pick_up_order_content_body {
  margin-bottom: 50px;
}
.member_pick_up_order_content_header_text {
  text-align: right;
}
.member_pick_up_order_content_body_single {
  grid-template-columns: repeat(4, 1fr);
}
.member_pick_up_order_content_body_single_text {
  justify-content: flex-end;
}

/* .member_pick_up_order_content_pick_up_header,
.member_pick_up_order_content_pick_up_body_single{
  padding: 12px 15px 14px;
} */
@media screen and (max-width: 991px) {
  .member_pick_up_order_content_header {
    grid-template-columns: 1fr;
  }
  .member_pick_up_order_content_body {
    margin-bottom: 32px;
  }
  .member_pick_up_order_content_body_single {
    grid-template-columns: 1fr;
  }
  .member_pick_up_order_content_body_single_text {
    justify-content: flex-start;
  }
}

.member_order_write_off_title {
  font-size: 18px;
  padding: 28px 0 14px;
}
.member_order_write_off_input_wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}
.member_order_write_off_input_wrap input {
  width: calc(100% - 145px);
  font-size: 18px;
  padding: 4px;
  height: 38px;
  border: 1px solid #888888;
}
.member_order_write_off_submit {
  width: 121px;
  height: 48px;
  background-color: #232323;
  border: 1px solid #232323;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.member_order_write_off_submit:hover {
  background-color: #fff;
  color: #232323;
}
@media screen and (max-width: 768px) {
  .member_order_write_off_input_wrap {
    gap: 12px;
  }
  .member_order_write_off_input_wrap input {
    width: calc(100% - 99px);
  }
  .member_order_write_off_submit {
    width: 86px;
    height: 48px;
    font-size: 18px;
  }
}
/* 自取訂單內頁 */

/* 宅配訂單 */
.member_delivery_order_list_header {
  grid-template-columns: 0.24fr 0.28fr 0.24fr 0.24fr 136px;
}
.member_delivery_order_list_body_single {
  grid-template-columns: 0.24fr 0.28fr 0.24fr 0.24fr 136px;
}
@media screen and (max-width: 1180px) {
  .member_delivery_order_list_header {
    grid-template-columns: 1fr;
  }
  .member_delivery_order_list_body_single {
    grid-template-columns: 1fr;
  }
}
/* 宅配訂單 */

/* 預約查詢 */
.member_reserve_inquiry_box {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 2px solid #f3f3f3;
  padding: 50px 120px 68px;
  margin: 0 auto 50px;
}
.member_reserve_inquiry_text {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #888888;
  font-size: 18px;
  color: #232323;
}
.member_reserve_inquiry_text:nth-child(3) {
  border-bottom: none;
  padding: 15px 0 0;
}

.member_reserve_inquiry_img_wrap {
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.member_reserve_inquiry_img_title {
  font-size: 18px;
  margin-bottom: 18px;
}
.member_reserve_inquiry_img img {
  width: 100%;
  aspect-ratio: 1.17;
}
.member_reserve_inquiry_heading {
  margin-top: 45px;
  font-size: 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid #888888;
  color: #535353;
}
.member_reserve_inquiry_money_text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  margin-top: 28px;
  color: #232323;
}
.member_reserve_inquiry_money {
  font-size: 22px;
  color: #4d4d4d;
}
.member_reserve_inquiry_content {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.member_reserve_inquiry_content_text {
  display: flex;
  font-size: 18px;
  color: #232323;
}
.member_reserve_inquiry_content_title {
  flex-shrink: 0;
}
.member_reserve_inquire_pay_btn_wrap {
  margin-top: 70px;
  text-align: center;
}
.member_reserve_inquire_pay_btn {
  display: inline-block;
  font-size: 18px;
  width: 160px;
  height: 50px;
  line-height: 50px;
  background-color: #232323;
  border: 1px solid #232323;
  color: #fff;
  transition: background-color 0.3s, color 0.3s;
}
.member_reserve_inquire_pay_btn:hover {
  background-color: #fff;
  color: #232323;
}

@media screen and (max-width: 991px) {
  .member_reserve_inquiry_box {
    padding: 25px 30px 32px;
    margin: 0 auto 25px;
  }
  .member_reserve_inquiry_text {
    padding: 8px 0;
  }
  .member_reserve_inquiry_text:nth-child(3) {
    padding: 8px 0 0;
  }

  .member_reserve_inquiry_img_wrap {
    margin: 20px 0 0;
    gap: 20px;
  }
  .member_reserve_inquiry_img_title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .member_reserve_inquiry_heading {
    margin-top: 28px;
    font-size: 20px;
    padding-bottom: 8px;
  }

  .member_reserve_inquiry_money_text {
    margin-top: 20px;
  }

  .member_reserve_inquiry_content {
    margin-top: 8px;
    gap: 8px;
  }

  .member_reserve_inquire_pay_btn_wrap {
    margin-top: 35px;
  }
}
@media screen and (max-width: 768px) {
  .member_reserve_inquiry_img_wrap {
    grid-template-columns: 1fr;
  }
}
/* 預約查詢 */

/* 購物車 */
.cart_box {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 2px solid #f3f3f3;
  padding: 62px 90px 82px;
  margin: 0 auto 50px;
}
.process {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 50px;
  position: relative;
}
.process_name {
  color: #232323;
  font-size: 22px;
  position: relative;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process_name::before {
  content: "1.";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
}
.process_name:nth-child(3)::before {
  content: "2.";
}
.process_name:last-child::before {
  content: "3.";
}
.process_line {
  flex-grow: 1;
  height: 1px;
  background-color: #c4c4c4;
}
@media screen and (max-width: 991px) {
  .cart_box {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #f3f3f3;
    padding: 32px 30px 52px;
    margin: 0 auto 50px;
  }
  .process {
    gap: 12px;
    max-width: 520px;
    padding-top: 70px;
  }
  .process_line {
    flex-grow: 0;
    height: 1px;
    width: 20px;
    background-color: #c4c4c4;
  }
  .process_name {
    font-size: 18px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .cart_box {
    padding: 32px 15px 52px;
  }
  .process {
    gap: 4px;
  }
  .process_name {
    word-wrap: break-word;
    width: 33%;
    align-items: flex-start;
    padding-top: 10px;
  }
}
.discount_method_wrap {
  margin: 80px 0;
  text-align: center;
}
.discount_method_text {
  font-size: 20px;
  margin-bottom: 28px;
}
.discount_method_btn {
  display: inline-block;
  width: 178px;
  height: 50px;
  line-height: 50px;
  background-color: #232323;
  color: #fff;
  border: 1px solid #232323;
  transition: background-color 0.3s, color 0.3s;
}
.discount_method_btn:hover {
  background-color: #fff;
  color: #232323;
}
@media screen and (max-width: 991px) {
  .discount_method_wrap {
    margin: 50px 0;
  }
  .discount_method_text {
    font-size: 18px;
    margin-bottom: 28px;
  }
}

.cart_form_header {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 0.3fr;
  padding-bottom: 15px;
  border-bottom: 1px solid #707070;
}
.cart_form_header_text {
  font-size: 20px;
  text-align: center;
}
.cart_form_header_text:first-child {
  text-align-last: left;
}
.cart_form_body {
  border-bottom: 1px solid #707070;
}
.cart_form_body_single {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 0.3fr;
  border-bottom: 1px solid #c4c4c4;
  padding: 26px 0;
}
.cart_form_body_single:last-child {
  border-bottom: none;
}
.cart_form_body_text {
  font-size: 18px;
  text-align: center;
}
.cart_form_body_text:first-child {
  text-align: left;
}
.cart_form_body_mobile_title {
  display: none;
}
.cart_form_body_qty {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.cart_form_body_qty_title_mobile {
  display: none;
}
.cart_form_body_qty input {
  width: 52px;
  height: 24px;
  border: 1px solid #888888;
  text-align: center;
  font-size: 18px;
}
.cart_form_body_qty .cart_quantity_readonly {
  border: none;
}
.cart_reduce,
.cart_add {
  width: 24px;
  height: 24px;
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  transition: opacity 0.3s;
}
.cart_reduce:hover,
.cart_add:hover {
  opacity: 0.7;
}
.cart_form_body_delete {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #4d4d4d;
  cursor: pointer;
  transition: color 0.3s;
}
.cart_form_body_delete:hover {
  color: #e52222;
}
@media screen and (max-width: 767px) {
  .cart_form_header {
    display: none;
  }

  .cart_form_body {
    border-top: 1px solid #707070;
  }
  .cart_form_body_single {
    grid-template-columns: 0.7fr 0.3fr;
    position: relative;
    padding: 20px 15px;
    column-gap: 20px;
  }

  .cart_form_body_qty {
    grid-column: span 2;
    margin-bottom: 8px;
    margin: 15px 0 30px;
    display: flex;
    justify-content: flex-start;
  }
  .cart_form_body_qty_title_mobile {
    display: block;

    flex-shrink: 0;
  }
  .cart_form_body_qty input {
    width: calc(100% - 144px);
    height: 45px;
  }
  .cart_reduce,
  .cart_add {
    width: 45px;
    height: 45px;
  }
  .cart_form_body_text {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
  }
  .cart_form_body_text:nth-child(2) {
    justify-content: flex-end;
    align-items: flex-start;
  }
  .cart_form_body_mobile_title {
    display: block;
    flex-shrink: 0;
  }
  .cart_form_body_delete {
    position: absolute;
    bottom: 20px;
    right: 15px;
    /* transform: translateY(-50%); */
  }
}

.cart_form_total_data_wrap {
  padding: 28px 0 25px;
  border-bottom: 1px solid #232323;
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.83fr;
}
.cart_form_total_data_num_box {
  grid-column: 2/3;
}
.cart_form_total_data_num_wrap {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  margin-bottom: 12px;
}
.cart_form_total_data_num_wrap:last-child {
  margin-bottom: 0;
}
.cart_form_total_data_num_title {
  font-size: 20px;
  color: #232323;
}
.cart_form_total_data_num {
  text-align: right;
  font-size: 20px;
  color: #232323;
}

.cart_form_address_num_wrap {
}
.cart_form_total_pick_up {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2px;
  padding-right: 20px;
  margin-bottom: 12px;
  font-size: 22px;
  color: #232323;
}
.cart_form_total_pick_up input {
  width: 82px;
  height: 27px;
  text-align: center;
  font-size: 20px;
  border: 1px solid #888888;
}
@media screen and (max-width: 1250px) {
  .cart_form_total_data_num {
  }
  .cart_form_total_pick_up input {
    width: 60px;
  }
}
@media screen and (max-width: 991px) {
  .cart_form_total_data_wrap {
    grid-template-columns: 1fr;
  }
  .cart_form_total_data_num_box {
    grid-column: auto;
    margin-bottom: 20px;
  }
  .cart_form_total_data_num_wrap {
    grid-template-columns: 1fr 0.3fr;
    max-width: 350px;
    margin-left: auto;
  }
  .cart_form_total_data_num_title {
    grid-column: auto;
    font-size: 18px;
  }
  .cart_form_total_data_num {
    font-size: 18px;
    text-align: right;
  }
  .cart_form_total_pick_up {
    font-size: 18px;
    padding-right: 0;
  }
}

.cart_form_total_price_wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin: 12px 0 80px;
}
.cart_form_total_price_title {
  color: #232323;
  font-size: 24px;
  text-align: right;
}
.cart_form_total_price_title_remark {
  font-size: 18px;
  color: #e52222;
}
.cart_form_total_price_text {
  font-size: 24px;
  color: #232323;
  text-align: right;
}

.cart_submit_btn_wrap {
  text-align: center;
}
.cart_submit_btn {
  background-color: #232323;
  color: #fff;
  width: 178px;
  height: 52px;
  border: 1px solid #232323;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  font-size: 18px;
}
.cart_submit_btn:hover {
  background-color: #fff;
  color: #232323;
}
@media screen and (max-width: 767px) {
  .cart_form_total_price_title {
    font-size: 20px;
  }
  .cart_form_total_price_text {
    font-size: 20px;
  }
}
/* 購物車 */

/* 購物車第2頁 */
.cart_two_form {
  margin-top: 94px;
}
.cart_heading {
  font-size: 24px;
  color: #535353;
  padding-bottom: 20px;
  border-bottom: 1px solid #707070;
}
.cart_pick_up_wrap {
  margin-bottom: 20px;
}

.cart_store_time_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-bottom: 28px;
}
.cart_pick_up_select_wrap label,
.cart_pick_up_input_wrap label {
  display: inline-block;
  font-size: 22px;
  color: #232323;
  margin: 20px 0;
}
.cart_pick_up_select_wrap select,
.cart_pick_up_input_wrap input {
  width: 100%;
  height: 38px;
  border: 1px solid #888888;
  padding: 4px 12px;
  font-size: 18px;
}

.cart_pick_up_label_block {
  display: flex;
  align-items: center;
}
.cart_pick_up_label_block label {
  flex-shrink: 0;
}
.cart_pick_up_label_remark,
.cart_pick_up_label_nav_remark {
  color: red;
}
.cart_pick_up_input_block {
  display: flex;
  gap: 20px;
}
.cart_two_form_header,
.cart_two_form_body_single {
  grid-template-columns: 0.8fr 0.6fr 1fr 1fr;
}
.cart_two_form_header_text:nth-child(2) {
  grid-column: 3/4;
}
.cart2_remind {
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .cart_store_time_wrap {
    grid-template-columns: 1fr;
    gap: 0px;
    margin-bottom: 28px;
  }
  .cart_pick_up_select_wrap label,
  .cart_pick_up_input_wrap label {
    font-size: 20px;
    margin: 8px 0;
  }

  .cart_pick_up_input_block {
    gap: 8px;
  }

  .cart_two_form_body_single {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.cart_heading_delivery {
  margin-top: 80px;
}
.cart_delivery_wrap {
  margin-bottom: 60px;
}
.cart_delivery_title {
  font-size: 22px;
  padding: 20px 0;
  border-bottom: 1px solid #707070;
  margin-bottom: 15px;
}

.cart_same_member_data {
  padding: 28px 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}
.cart_same_member_data_invoice {
  padding: 0px 0 12px;
}
.cart_same_member_data input {
  width: 16px;
  height: 16px;
  accent-color: #232323;
}
.cart_name_mobile_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
}
.cart_invoice_uniform_wrap {
  display: none;
}
.cart_input_wrap label,
.cart_code_city_area_title,
.cart_date_title,
.cart_textarea_wrap label {
  display: inline-block;
  font-size: 18px;
  margin: 20px 0 12px;
  color: #4d4d4d;
}
.cart_input_wrap input,
.cart_select_wrap select {
  width: 100%;
  height: 45px;
  border: 1px solid #707070;
  padding: 4px 12px;
  font-size: 18px;
}
.cart_textarea_wrap textarea {
  resize: none;
  width: 100%;
  height: 200px;
  border: 1px solid #707070;
  padding: 8px 12px;
  font-size: 18px;
  margin-bottom: 100px;
}
.cart_code_city_area_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
}
.cart_city_area_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
}
.cart_town_code {
  max-width: 100px;
  text-align: center;
}

.cart_date_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
}

.cart_time_input_radio_wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart_input_radio {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cart_input_radio label {
  font-size: 18px;
  color: #4d4d4d;
}
.cart_input_radio input {
  accent-color: #232323;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 767px) {
  .cart_heading_delivery {
    margin-top: 40px;
  }
  .cart_delivery_title {
    font-size: 20px;
    padding: 12px 0;
    margin-bottom: 0px;
    border: none;
  }
  .cart2_form_body_qty input {
    width: calc(100% - 90px);
  }
  .cart_same_member_data {
    padding: 12px 0;

    font-size: 18px;
  }
  .cart_name_mobile_wrap {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .cart_input_wrap label,
  .cart_code_city_area_title,
  .cart_date_title,
  .cart_textarea_wrap label {
    margin: 12px 0 8px;
  }
  .cart_input_wrap input,
  .cart_select_wrap select {
    width: 100%;
    height: 45px;
    border: 1px solid #707070;
    padding: 4px 12px;
    font-size: 18px;
  }
  .cart_textarea_wrap textarea {
    resize: none;
    width: 100%;
    height: 200px;
    border: 1px solid #707070;
    padding: 8px 12px;
    font-size: 18px;
    margin-bottom: 100px;
  }
  .cart_code_city_area_wrap {
    grid-template-columns: 1fr 0.4fr;
    gap: 8px;
  }
  .cart_city_area_wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .cart_town_code {
    max-width: 100%;
  }

  .cart_date_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .cart_time_input_radio_wrap {
    display: flex;
    align-items: center;
    gap: 4px;
  }
}
@media screen and (max-width: 410px) {
  .cart_date_wrap {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.cart_total_wrap {
  max-width: 680px;
  margin-left: auto;
  margin-bottom: 80px;
}

.cart_items_header {
  display: grid;
  grid-template-columns: 1fr 0.5fr 0.5fr;
  padding: 8px 0;
  border-bottom: 1px solid #888888;
}
.cart_items_header_text {
  font-size: 20px;
  text-align: right;
}
/* .cart_items_total_text_mobile {
  display: none;
} */
.cart_items_header_text:first-child,
.cart_items_total_text:first-child {
  grid-column: 2 / 3;
}
.cart_items_header_text:last-child,
.cart_items_total_text:last-child {
  grid-column: 3 / 4;
  color: #4d4d4d;
}
.cart_items_body {
  padding: 10px 0;
  border-bottom: 1px solid #888888;
}
.cart_items_body_single {
  padding: 10px 0;
  display: grid;
  grid-template-columns: 1fr 0.5fr 0.5fr;
}
.cart_items_body_text {
  font-size: 20px;
  color: #4d4d4d;
}
.cart_items_body_text_mobile,
.cart_items_fare_text_mobile {
  display: none;
}
.cart_items_body_text:nth-child(2),
.cart_items_body_text:last-child,
.cart_items_fare_text:nth-child(2),
.cart_items_fare_text:last-child {
  text-align: right;
  color: #232323;
}

.cart_items_fare {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr 0.5fr 0.5fr;
  border-bottom: 1px solid #888888;
}

.cart_items_fare_text {
  font-size: 20px;
  color: #4d4d4d;
}
.cart_items_total {
  padding: 20px 0 0;
  display: grid;
  grid-template-columns: 1fr 0.5fr 0.5fr;
  color: #4d4d4d;
}
.cart_items_total_text {
  font-size: 22px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .cart_items_header {
    grid-template-columns: 0.5fr 0.5fr;
  }
  .cart_items_header_text {
    font-size: 18px;
  }
  .cart_items_header_text:first-child {
    grid-column: 2 / 3;
  }
  .cart_items_header_text:last-child {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    text-align: left;
  }
  .cart_items_body_single {
    grid-template-columns: 0.5fr 0.5fr;
    row-gap: 10px;
  }
  .cart_items_body_text_mobile,
  .cart_items_fare_text_mobile {
    display: inline-block;
  }
  .cart_items_body_text:first-child {
    grid-column: span 2;
  }
  .cart_items_body_text:nth-child(2) {
    text-align: left;
    margin-left: 20px;
  }
  .cart_items_fare {
    grid-template-columns: 0.5fr 0.5fr;
  }
  .cart_items_fare_text:first-child {
    grid-column: span 2;
  }
  .cart_items_fare_text:nth-child(2) {
    text-align: left;
    margin-left: 20px;
  }
  .cart_items_total {
    grid-template-columns: 0.5fr 0.5fr;
  }
  .cart_items_total_text:first-child {
    text-align: left;
    grid-column: 1 / 2;
  }
  .cart_items_total_text:last-child {
    grid-column: auto;
  }
  /* .cart_items_total_text_mobile {
    display: block;
    text-align-last: left;
  }
  .cart_items_total_text_pc {
    display: none;
  } */
}

.cart_orderer_data_wrap {
  margin-bottom: 50px;
}

.cart_payment_method_wrap {
  display: flex;
  gap: 40px;
  margin: 40px 0 50px;
}

.cart_invoice_type_wrap {
  display: flex;
  gap: 40px;
  row-gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0 20px;
}
/* 購物車2 */

/* 彌月小卡購物車 */
.cart_card_receive_wrap {
  padding-bottom: 32px;
  margin-bottom: 52px;
  border-bottom: 1px solid #232323;
}
.cart_card_delivery_title {
  border-bottom: none;
}

.cart_card_form_total_price_wrap {
  margin: 12px 0;
}
/* 彌月小卡購物車 */

/* 管理員訂單 */
.admin_order_list_wrap {
  padding: 70px 0 170px;
}
.admin_order_heading {
  font-size: 30px;
  margin-bottom: 50px;
  color: #4d4d4d;
  text-align: center;
}

.admin_order_box {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 2px solid #f3f3f3;
  padding: 60px 100px 85px;
  margin: 0 auto;
}
.admin_pick_up_store {
  font-size: 22px;
  color: #4d4d4d;
  margin-bottom: 30px;
}

.admin_input_col_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}
.admin_input_wrap label,
.admin_date_title {
  display: inline-block;
  margin: 20px 0 12px;
  font-size: 18px;
  color: #4d4d4d;
}
.admin_input_wrap input {
  padding: 4px 12px;
  width: 100%;
  font-size: 18px;
  border: 1px solid #888888;
  height: 34px;
}
.admin_date_input_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  position: relative;
}
.admin_date_input_wrap::before {
  content: "~";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #4d4d4d;
}
.admin_inquire_btn_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 55px 0 100px;
}
.admin_inquire_btn {
  border: 1px solid #232323;
  color: #232323;
  background-color: #fff;
  width: 125px;
  height: 49px;
  text-align: center;
  line-height: 49px;
  font-size: 18px;
  transition: background-color 0.3s, color 0.3s;
}
.admin_inquire_btn:hover {
  background-color: #232323;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .admin_order_list_wrap {
    padding: 35px 0 85px;
  }
  .admin_order_heading {
    /* font-size: 30px; */
    margin-bottom: 30px;
  }
  .admin_order_box {
    padding: 18px 15px 28px;
  }
  .admin_pick_up_store {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .admin_input_col_2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .admin_date_input_wrap {
    gap: 20px;
  }
  .admin_input_wrap input {
    font-size: 16px;
  }
  .admin_inquire_btn_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0 50px;
  }
}

.admin_order_list_header {
  display: grid;
  grid-template-columns: 0.25fr 0.28fr 0.25fr 0.25fr 136px;
  border-bottom: 1px solid #888888;
  padding: 0 0 15px 15px;
}

.admin_order_list_header_text {
  text-align: center;
  font-size: 20px;
  color: #232323;
}
.admin_order_list_header_text:first-child {
  text-align: left;
}
.admin_order_list_body {
  margin-bottom: 54px;
}
.admin_order_list_body_single {
  display: grid;
  grid-template-columns: 0.25fr 0.28fr 0.25fr 0.25fr 136px;
  padding: 20px 0 20px 15px;
  border-bottom: 1px solid #888888;
}

.admin_order_list_body_single_text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.admin_order_list_body_single_text:first-child {
  justify-content: flex-start;
}
.admin_order_list_body_single_title {
  font-size: 18px;
  display: none;
}
.color_red {
  color: #e52222;
}
.admin_order_list_body_single_btn {
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #232323;
  color: #fff;
  border: 1px solid #232323;
  transition: background-color 0.3s, color 0.3s;
}
.admin_order_list_body_single_btn:hover {
  background-color: #fff;
  color: #232323;
}
@media screen and (max-width: 1180px) {
  .admin_order_list_header {
    display: none;
  }
  .admin_order_list_body_single {
    padding: 20px 15px;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .admin_order_list_body_single_text {
    justify-content: flex-start;
  }
  .admin_order_list_body_single_title {
    display: block;
  }
  .admin_order_list_body_single_btn {
    width: 136px;
    margin-left: auto;
  }
}
@media screen and (max-width: 991px) {
  .admin_order_list_body_single_text {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
}
/* 管理員訂單 */

/* 管理員訂單內容 */
.admin_order_content_box {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 2px solid #f3f3f3;
  margin: 0 auto 50px;
  padding: 20px 32px 50px;
}
.admin_order_content_header {
  display: grid;
  grid-template-columns: 0.25fr 0.28fr 0.25fr 0.25fr;
  border-bottom: 1px solid #888888;
  padding: 0 15px 15px;
}

.admin_order_content_header_text {
  text-align: center;
  font-size: 20px;
  color: #232323;
}
.admin_order_content_header_text:first-child {
  text-align: left;
}
.admin_order_content_header_text:last-child {
  text-align: right;
}
.admin_order_content_body_single {
  display: grid;
  grid-template-columns: 0.25fr 0.28fr 0.25fr 0.25fr;
  padding: 32px 15px;
  border-bottom: 1px solid #888888;
}

.admin_order_content_body_single_text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.admin_order_content_body_single_text:first-child {
  justify-content: flex-start;
}
.admin_order_content_body_single_text:last-child {
  justify-content: flex-end;
}
.admin_order_content_body_single_title {
  font-size: 18px;
  display: none;
}
.admin_order_content_body_single_btn {
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #232323;
  color: #fff;
  border: 1px solid #232323;
  transition: background-color 0.3s, color 0.3s;
}
.admin_order_content_body_single_btn:hover {
  background-color: #fff;
  color: #232323;
}
@media screen and (max-width: 991px) {
  .admin_order_content_box {
    margin: 0 auto 25px;
    padding: 12px 15px 25px;
  }
  .admin_order_content_header {
    display: none;
  }
  .admin_order_content_body_single {
    grid-template-columns: 1fr;
    padding: 12px 15px;
  }
  .admin_order_content_body_single_title {
    display: block;
  }
  .admin_order_content_body_single_text {
    justify-content: flex-start;
    margin-bottom: 4px;
  }
  .admin_order_content_body_single_text:last-child {
    justify-content: flex-start;
  }
}

.admin_order_content_heading {
  font-size: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #888888;
  color: #4d4d4d;
}
.admin_order_items_list_header {
  display: grid;
  grid-template-columns: 0.5fr 0.25fr 0.25fr;
  border-bottom: 1px solid #888888;
  padding: 14px 0;
  text-align: right;
  font-size: 18px;
  color: #4d4d4d;
}
.admin_order_items_list_header_text:first-child {
  text-align-last: left;
}

.admin_order_items_list_body_single {
  display: grid;
  grid-template-columns: 0.5fr 0.25fr 0.25fr;
  padding: 9px 0;
}
.admin_order_items_list_body {
  border-bottom: 1px solid #888888;
  color: #232323;
  padding: 4px 0;
}
.admin_order_items_list_body_single_text {
  text-align: right;
  font-size: 18px;
}
.admin_order_items_list_body_single_text:first-child {
  color: #4d4d4d;
  text-align-last: left;
}
.admin_order_items_list_body_single_title {
  display: none;
}

.admin_order_total {
  display: grid;
  grid-template-columns: 0.5fr 0.25fr 0.25fr;
  margin-top: 12px;
  font-size: 20px;
  margin-bottom: 32px;
}
.admin_order_total_first {
  margin-bottom: 8px;
}
.admin_order_total_text {
  text-align: right;
}
.admin_order_total_text:first-child {
  grid-column: 2/3;
}

.admin_orderer_data_wrap {
  margin: 20px 0 50px;
}
.admin_order_data_text {
  display: flex;
  width: 100%;
  word-break: break-all;
  margin-bottom: 15px;
  font-size: 18px;
}
.admin_order_data_text_title {
  flex-shrink: 0;
}
.admin_payment_invoice_wrap {
  padding: 20px 0 20px;
}
@media screen and (max-width: 991px) {
  .admin_order_content_heading {
    font-size: 20px;
    padding-bottom: 12px;
  }
  .admin_order_total {
    font-size: 18px;
  }
}
/* 管理員訂單內容 */
