/* 動畫 */

@keyframes float {
  0%,
  to {
    transform: translateY(5px);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes dash {
  0%,
  to {
    stroke-dashoffset: 700;
  }

  50% {
    stroke-dashoffset: 0;
  }
}

@keyframes dash2 {
  0%,
  to {
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dashoffset: 1200;
  }
}

@keyframes dash3 {
  0%,
  to {
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dashoffset: 700;
  }
}

@keyframes shake {
  0%,
  to {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-5deg);
  }
}

@keyframes shake2 {
  0%,
  to {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(10deg);
  }
}

.red1 {
  stroke-dasharray: 700;
  animation: dash 10s infinite;
  animation-fill-mode: forwards;
}

.red2 {
  stroke-dasharray: 1200;
  animation: dash2 15s infinite;
  animation-delay: 10s;
  animation-fill-mode: forwards;
}

.red3 {
  stroke-dasharray: 700;
  animation: dash3 10s infinite;
  animation-delay: 5s;
  animation-fill-mode: forwards;
}

.sw_anime {
  animation: shake 5s infinite;
}

.sw_anime2 {
  animation: shake2 5s infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* 通用 */

.body_bg {
  background-image: url('../images/拜拜-節氣-底圖.jpg');
  background-position: center;
  background-size: 100%;
}

.banner_area {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  height: 250px;
  justify-content: center;
  align-items: center;
}

.banner_title {
  font-size: 45px;
  text-align: center;
  font-family: LXGW WenKai Mono TC;
  font-weight: 700;
  letter-spacing: 1.7px;
  color: white;
}

.pagination {
  padding: 30px 0;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.pagination ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.pagination a {
  display: inline-block;
  padding: 10px 18px;
  color: #222;
  font-size: 15px;
}

.p12 a:first-of-type,
.p12 a:last-of-type,
.p12 .is-active {
  background-color: #95000c;
  color: #fff;
}

/* 首頁 */

:root {
  --swiper-navigation-size: 20px;
  --swiper-theme-color: #95000c;
}

.festival_box {
  width: 226px;
  position: relative;
  aspect-ratio: 283 / 150;
  box-sizing: border-box;
  margin: 0px auto 20px auto;
}

.festival_box2 {
  width: 226px;
  position: relative;
  aspect-ratio: 283 / 185;
  box-sizing: border-box;
  margin: 0px auto 20px auto;
}

.festival_text {
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding-left: 15px;
  z-index: 3;
  font-weight: 700;
}

.festival_text2 {
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  z-index: 3;
  font-weight: 700;
  padding-bottom: 10px;
}

.fes_title {
  font-size: 22px;
  color: #4a4a4a;
}

.fes_day {
  color: #dac98f;
}

.festival_text.active {
  color: white !important;
}

.festival_text.active .fes_day {
  color: white !important;
}

.festival_text2.active {
  color: white !important;
}

.festival_text2.active .fes_day {
  color: white !important;
}

.festival_img {
  transition: 0.5s ease;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.festival_img.active {
  opacity: 1;
}

.fes_detail_box {
  position: fixed;
  right: 0px;
  top: 0px;
  height: 100vh;
  z-index: 999;
  background-color: white;
  transition: 0.5s ease;
  transform: translateX(750px);
  background-image: url('../images/bg02-改.png');
  background-position: center;
  background-size: contain;
}

.fes_detail_box.open {
  transform: translateX(0px);
}

.god_detail_box {
  position: fixed;
  right: 0px;
  top: 0px;
  height: 100vh;
  z-index: 999;
  background-color: white;
  transition: 0.5s ease;
  transform: translateX(750px);
  background-image: url('../images/bg02-改.png');
  background-position: center;
  background-size: contain;
}

.god_detail_box.open {
  transform: translateX(0px);
}

.transfer-button {
    position: relative;
    min-width: 100px;
    padding: 0px 15px;
    line-height: 46px;
    margin-right: 66px;
    display: inline-block;
    text-align: center;
    height: 50px;
    color: #dac98f;
    border: 2px solid #d8bd4a;
    box-sizing: border-box;
    font-weight: 700;
    font-size: 14px;
    transition: 0.5s ease;
}

.transfer-button.active,
.transfer-button:hover {
  background: #d8bd4a;
  color: white;
}

.transfer-button.active::before,
.transfer-button:hover::before {
  width: -webkit-calc(100% - 10px);
  width: calc(100% - 10px);
  height: -webkit-calc(100% - 10px);
  height: calc(100% - 10px);
  border: solid 2px white;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.transfer-button::before {
  width: -webkit-calc(100% - 10px);
  width: calc(100% - 10px);
  height: -webkit-calc(100% - 10px);
  height: calc(100% - 10px);
  border: solid 2px #d8bd4a;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.transfer-button:not(:first-child)::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: #d8bd4a;
  top: 25px;
  left: -55px;
  bottom: 0;
  right: 0;
}
.info_float_sortbox {
  width: 750px;
  height: auto;
  display: flex;
  flex-direction: row;
  color: #4a4a4a;
  box-sizing: border-box;
  padding: 50px 0px 50px 0px;
  position: relative;
}

.fes_float_textsort,
.fes_float_textsort2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  width: fit-content;
}

.info_float_leftbox {
  display: flex;
  width: 250px;
  height: auto;
  flex-direction: column;
  line-height: 1;
  color: #95000c;
}

.info_float_leftbox2 {
  display: flex;
  width: 250px;
  height: auto;
  flex-direction: column;
  line-height: 1;
  color: #95000c;
  padding: 0 30px;
  box-sizing: border-box;
}

.info_float_leftbox2 img {
  width: 100%;
}

.info_godrwd_pc {
  display: flex;
  flex-direction: column;
}

.info_godrwd_mob {
  display: none;
  flex-direction: column;
}

.info_float_rightbox {
  width: 500px;
  height: auto;
  display: flex;
  flex-direction: column;
}

.info_float_scrollarea {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 340px);
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  opacity: 0;
  transition: 0.5s ease;
}

.info_float_scrollarea.active {
  opacity: 1;
}

.info_float_scrollarea2 {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 260px);
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.info_elesort_col {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.info_elesort_row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.info_res_sort {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
  box-sizing: border-box;
  margin-bottom: 35px;
  font-size: 15px;
  font-weight: 600;
  margin-right: 30px;
}

.info_res_img {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 3px;
}

.elemb_35 {
  margin-bottom: 35px;
}

.elemb_10 {
  margin-bottom: 10px;
}

.info_eletitle {
  font-size: 18px;
  font-weight: 600;
  margin-right: 10px;
  width: 80px;
  margin-bottom: 20px;
  font-weight: 700;
}

.info_eletext {
  color: #6a6a6a;
  font-weight: 600;
  max-width: 450px;
}

.info_eletext2 {
  display: flex;
  flex-direction: column;
  color: #6a6a6a;
  box-sizing: border-box;
  font-weight: 600;
  font-size: 15px;
  max-width: 450px;
  line-height: 25px;
}

.info_li_sortbox {
  display: flex;
  flex-direction: column;
  color: #6a6a6a;
  font-size: 16px;
  font-weight: 600;
  max-width: 450px;
}

.info_li_ele {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}

.fes_float_textbox {
  display: flex;
  flex-direction: column;
  width: auto;
  text-align: right;
  margin-right: 75px;
  font-weight: 500;
  align-items: flex-end;
}

.fes_float_title {
  font-size: 64px;
  margin-bottom: 20px;
  font-weight: 700;
}

.fes_float_title2 {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 35px;
  font-weight: 700;
}

.fes_float_text {
  font-size: 24px;
  margin-bottom: 20px;
}

.god_float_title {
  font-size: 30px;
  font-weight: 700;
  color: #95000c;
}

.god_float_title2 {
  font-weight: 500;
  margin-bottom: 35px;
  color: #95000c;
}

.fes_float_text2 {
  font-size: 18px;
}

#fes_xmark {
  position: fixed;
  right: 20px;
  color: black;
  top: 20px;
  font-size: 25px;
}

#god_xmark {
  position: fixed;
  right: 20px;
  color: black;
  top: 20px;
  font-size: 25px;
}

.Calendar_fixbox {
  display: flex;
  position: fixed;
  background-color: white;
  height: auto;
  z-index: 100;
  left: 20px;
  top: 100px;
  flex-direction: row;
  border: 2px solid;
  background-color: #dfd1b4;
}

.Calendar_span {
  width: 50%;
  height: auto;
  writing-mode: vertical-lr;
  padding: 10px 5px 10px 5px;
  font-weight: 500;
}

.sw_anime_box {
  width: 100%;
  height: auto;
  position: relative;
  margin: 0 auto;
  display: flex;
  z-index: 3;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1920px;
}

.sw_anime_girl {
  z-index: 2;
  position: absolute;
  bottom: -14.7%;
  left: 10%;
  width: 18%;
}

.sw_anime_boy {
  z-index: 2;
  position: absolute;
  bottom: -13.3%;
  right: 10%;
  width: 21%;
}

.svg_box {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1;
  text-align: center;
  opacity: 0.4;
}

.swiper_pc {
  width: 100%;
  height: auto;
  margin: 0 auto;
  max-width: 1920px;
}

.swiper_goods {
  width: 100%;
  height: auto;
  padding: 0 10px;
  max-width: 1600px;
  box-sizing: border-box;
}

.swiper-pagination-bullet-active {
  background: #e0bd63;
}

.swiper_pc .swiper-slide {
  display: flex;
  height: auto;
}

.goods_area .swiper-button-next,
.goods_area .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 20px);
  background-color: white;
  border-radius: 99%;
  width: 40px;
  height: 40px;
  margin-left: 5px;
}

.goods_area .swiper-button-prev,
.goods_area .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 20px);
  background-color: white;
  border-radius: 99%;
  width: 40px;
  height: 40px;
}

.goods_area .swiper-button-next:after {
  content: 'next';
  margin-left: 2px;
}

.swiper-button-prev:after {
  content: 'prev';
  margin-right: 2px;
}

.index_mainarea {
  /* background-color: #e0bd63; */
  padding: 20px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 1920px;
  margin: 0 auto;
}

.index_title {
  font-size: 35px;
  margin: 50px 0px;
  font-family: LXGW WenKai Mono TC;
  font-weight: 700;
  letter-spacing: 6px;
  color: #95000c;
  z-index: 2;
  padding: 5px 20px;
  border-radius: 20px;
}

.index_godsort {
  display: grid;
  width: 95%;
  justify-content: center;
  max-width: 1620px;
  grid-template-columns: repeat(auto-fill, 400px);
}

.index_fessort {
  display: grid;
  max-width: 1600px;
  grid-template-columns: repeat(auto-fill, 266px);
  width: 85%;
  justify-content: center;
}

.godbox_ele {
  width: 400px;
  aspect-ratio: 1 / 0.6;
  box-sizing: border-box;
  padding: 0 20px;
  margin: 0 0px 20px 0px;
  z-index: 2;
  display: flex;
}

.godbox_area {
  border: 2px solid;
  border-color: black;
  overflow: hidden;
  position: relative;
  background-color: #95000c;
  width: 100%;
  height: 100%;
  display: block;
}

.anime-float {
  animation: float 3s ease-in-out infinite;
}

.wimg_anime {
  transition: 0.5s ease;
}

a.godbox_area:hover .wimg_anime {
  left: 100px;
}

a.godbox_area:hover {
  border-color: #95000c;
}

a.godbox_area:hover .god_title {
  background-color: white;
  color: black;
}

.god_pic {
  width: 200px;
  height: auto;
  position: absolute;
  top: 0px;
  z-index: 2;
  left: 80px;
}

.god_wimg {
  width: 200px;
  height: auto;
  position: absolute;
  top: 0px;
  left: 80px;
  filter: brightness(0) invert(1);
  z-index: 1;
}

.god_title {
  position: absolute;
  writing-mode: vertical-lr;
  background-color: black;
  color: white;
  top: 0px;
  right: 15px;
  font-size: 20px;
  padding: 5px 0px;
  letter-spacing: 5px;
  transition: 0.5s ease;
}

.goods_area {
  position: relative;
  margin-bottom: 20px;
  width: auto;
}

.goods_ele {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: black;
  font-size: 16px;
  background-color: #f7f7f7;
  width: 100%;
  padding: 20px;
}

.goods_img {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 260px;
  margin-bottom: 10px;
}

.goods_price {
  color: #95000c;
  font-weight: 500;
  font-size: 15px;
  flex: 1;
  display: inline-flex;
  align-items: center;
}

.ori_price {
  color: #00000;
  font-weight: 500;
}

.goods_cartbtn {
  padding: 5px 20px;
  background-color: #95000c;
  color: white;
  font-size: 15px;
  margin-top: auto;
  overflow: hidden;
  position: relative;
}

.media_news_sort {
  width: 100%;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  max-width: 1620px;
  margin-bottom: 50px;
}

.index_mainarea .media_news_ele {
  display: flex;
  flex-direction: column;
  width: 25%;
  box-sizing: border-box;
  padding: 0 20px;
  z-index: 2;
}

.media_news_box {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

.media_news_img {
  width: 100%;
  aspect-ratio: 1 / 0.6;
  background-size: cover;
  background-position: center;
  background-image: url('images/goods2.jpg');
}

.media_text_sort {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 15px 10px;
  flex: 1;
}

.media_title {
  margin-bottom: 10px;
  font-size: 16px;
  text-align: left;
}

.media_btn {
  margin-left: auto;
  padding: 5px 10px;
  color: white;
  background-color: #95000c;
  font-size: 15px;
  margin-top: auto;
}

/* .media_area .editor_rightbox a{
  padding: 10px 0px;
  border-top: 1px solid #cccccc;
  font-size: 18px;
  font-family: Noto Serif TC;
  font-weight: 500;
} */

/* 編輯器 */

.editor_box {
  width: 95%;
  max-width: 1350px;
  display: flex;
  flex-direction: row;
  /* min-height: 700px; */
  justify-content: center;
  margin: 70px auto 50px auto;
}

.editor_leftbox {
  width: 75%;
  border-right: 1px solid white;
  box-sizing: border-box;
  padding: 10px;
  font-size: 18px;
}

.editor_leftbox li{
  
     list-style: inherit;

}

.editor_rightbox {
  width: 25%;
  box-sizing: border-box;
  padding: 10px;
  display: flex;
  flex-direction: column;
  font-size: 17px;
}

.editor_rightbox a {
  padding: 15px 0px;
  border-top: 1px solid #cccccc;
  font-size: 18px;
  font-family: Noto Serif TC;
  font-weight: 500;
}

/* 產品頁面 */

.SaveTemp {
  border: 1px solid #95000c;
  color: #95000c;
  width: fit-content;
  padding: 0 10px;
  margin-bottom: 5px;
  font-size: 14px;
}

.SaveTemp_ii {
  margin-bottom: 10px;
  border: 1px solid #95000c;
  color: #95000c;
  width: fit-content;
  padding: 0 10px;
}

.product_box {
  width: 95%;
  max-width: 1350px;
  display: flex;
  flex-direction: row;
  min-height: 700px;
  justify-content: center;
  margin: 50px auto 50px auto;
}

.product_leftbox {
  width: 22%;
  box-sizing: border-box;
  padding: 10px;
  display: flex;
  flex-direction: column;
  font-size: 17px;
}

.product_rightbox {
  width: 78%;
  border-right: 1px solid white;
  box-sizing: border-box;
  padding: 10px;
  font-size: 18px;
}

/* .product_leftbox a {
  padding: 15px 0px;  
  font-size: 18px;
  font-family: Noto Serif TC;
  font-weight: 600;
} */

.product_sortbox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.product_outspace {
  width: 33.3%;
  box-sizing: border-box;
  padding: 0 10px;
  margin-bottom: 20px;
}

.product_rightbox .goods_ele {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: black;
  font-size: 16px;
  background-color: #f7f7f7;
  width: 100%;
  height: 100%;
}

.product_rightbox .goods_img {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1 / 0.8;
  margin-bottom: 10px;
  height: fit-content;
  background-color:white;
}

.mob_pmenu {
  display: none;
  flex-direction: row;
  align-items: center;
  margin: 0px 0px 20px 10px;
  font-family: Noto Serif TC;
  font-weight: 500;
}

.left_secmenu {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  padding-left: 20px;
}

.left_title {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.mob_menu_box .left_title {
  border-bottom: none;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 0px;
}

.left_elebox {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  padding-right: 30px;
  margin-bottom: 10px;
}

.pt_lnum {
  border: 1px solid #999;
  height: fit-content;
  margin-left: auto;
  color: #777;
  font-size: 12px;
  border-radius: 20px;
  text-align: center;
  font-weight: 600;
  padding: 2px 10px 2px 11px;
  transition: 0.5s ease;
}

.pt_la {
  width: inherit;
}

.pt_lum {
  font-size: 18px;
  font-family: Noto Serif TC;
  font-weight: 600;
  width: inherit;
}

.pt_la:hover ~ .pt_lnum {
  background-color: #95000c;
  color: white;
  border-color: #95000c;
}

.pt_la.active ~ .pt_lnum {
  background-color: #95000c;
  color: white;
  border-color: #95000c;
}

.child_btn {
  position: absolute;
  right: 0px;
  background-color: #eee;
  height: fit-content;
  border-radius: 99%;
  aspect-ratio: 1;
  width: 25px;
  text-align: center;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* 媒體報導 */

.editor_leftbox .media_news_sort {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1620px;
  margin-bottom: 0px;
  justify-content: normal;
}

.editor_leftbox .media_news_ele {
  display: flex;
  flex-direction: column;
  width: 33.3%;
  box-sizing: border-box;
  padding: 0 20px;
  z-index: 2;
  margin-bottom: 20px;
}

.editor_leftbox .media_news_ele .media_news_box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-color: transparent;
  border: 1px solid #e2e2e2;
  height: 100%;
}

.editor_leftbox .media_text_sort {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 15px 10px;
  flex: 1;
}

.editor_leftbox .media_btn {
  margin-top: auto;
}

/* 商品內容 */

.pii_allbox {
  width: 95%;
  max-width: 1350px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 50px auto 50px auto;
}

.pii_Larea {
  width: 600px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}

.pii_Rarea {
  width: 650px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0 10px;
}

.pii_road {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-bottom: 10px;
  color: #777;
  font-size: 15px;
}

.pii_road a.active {
  color: #333;
}

.pii_Rtitle {
  font-size: 25px;
  font-weight: 700;
  font-family: LXGW WenKai Mono TC;
  margin-bottom: 10px;
}

.pii_Rprice {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 10px;
  color: #95000c;
}

.pii_RText {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 10px;
}

.pii_RG_sort {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}

.pii_RG_title {
  color: white;
  background-color: #95000c;
  padding: 10px;
  box-sizing: border-box;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

.pii_RG_box {
  width: 50%;
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  padding: 10px;
}

.RG_box_img {
  width: 80px;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: fit-content;
  background-color: #f7f7f7;
}

.RG_box_textsort {
  width: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  box-sizing: border-box;
}

.RG_box_numbtn {
  width: 125px;
  border: 1px solid #ccc;
  height: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: auto;
}

.RG_box_numsub {
  width: 31px;
  height: 100%;
  border-right: 1px solid #ccc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding-bottom: 3px;
  box-sizing: border-box;
  background-color: #f6f6f6;
}

.RG_box_numplus {
  width: 31px;
  height: 100%;
  border-left: 1px solid #ccc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-sizing: border-box;
  background-color: #f6f6f6;
}

.RG_box_numipt {
  width: 63px;
  height: 100%;
  border: none;
  text-align: center;
}

.pii_Rarea_cartsort {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.pii_Rarea_cart {
  background-color: #95000c;
  padding: 0px 32px;
  width: fit-content;
  color: white;
  height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.pii_goods_area {
  display: flex;
  flex-direction: column;
  width: 95%;
  max-width: 1270px;
  margin: 0 auto;
}

.pii_goods_area .goods_img {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1 / 0.8;
  margin-bottom: 10px;
  height: auto;
}

.pii_goods_area .goods_area {
  margin-bottom: 0px;
}

.slick_big {
  width: 100%;
  aspect-ratio: 1;
}

.slick_small {
}
.slick-slide {
  margin: 0 5px;
}

.custom_goods_btn {
}

.custom_goods_sort {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-top: none;
  max-height: 301px;
  overflow-y: scroll;
  height: auto;
}

.pii_title {
  width: fit-content;
  text-align: center;
  margin: 0 auto 30px auto;
  font-size: 22px;
  padding-bottom: 10px;
  position: relative;
}

.pii_title::before {
  position: absolute;
  content: '';
  bottom: 0px;
  width: 70px;
  height: 3px;
  background-color: #95000c;
  left: 11px;
}

.pii_bottom_area {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ddd;
  box-sizing: border-box;
  padding: 30px 0px 38px 0px;
}

.pii_bottom_sort {
  display: flex;
  flex-direction: column;
  width: 95%;
  max-width: 1250px;
  margin: 0 auto;
}

/* 節氣總覽 */

.FA_sort {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  margin: 0 auto;
}

.FA_Lmenu {
  width: 250px;
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: white;
  overflow-y: scroll;
  border: 1px solid #95010d;
  box-sizing: border-box;
  -ms-overflow-style: none;
  scrollbar-width: none;
  color: #4a4a4a;
}

.FA_Lmenu_title {
  font-size: 18px;
  font-weight: 500;
  padding: 12px 10px;
  background-color: #95010d;
  color: white;
  position: sticky;
  top: 0px;
}

.FA_Lmenu_sort {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.FA_Lmenu_sort a {
  width: 100%;
  padding: 8px 10px;
  box-sizing: border-box;
  border-bottom: 1px solid #95010d;
}

.FA_Lmenu_sort a.active {
  color: #95010d;
  font-weight: 500;
}

.FA_Rarea_sort {
  width: 1350px;
  height: auto;
  display: flex;
  flex-direction: row;
  color: #4a4a4a;
  box-sizing: border-box;
  padding: 50px 0px 50px 0px;
  position: relative;
  max-width: calc(100% - 250px);
}

.FA_imgbox {
  display: flex;
  width: calc(100% - 620px);
  height: auto;
  flex-direction: column;
  line-height: 1;
  color: #95000c;
  align-items: center;
}

.FA_Fix_effect {
  position: fixed;
  top: 180px;
}

.circle_pos {
  width: 385px;
  max-width: 90%;
  aspect-ratio: 1;
  border-radius: 99%;
  border: 4px solid #95000c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.circle_pos::before {
  width: calc(100% - 20px);
  aspect-ratio: 1;
  border-radius: 99%;
  position: absolute;
  content: '';
  border: 2px dotted #95000c;
  top: 8px;
  animation: spin 20s linear infinite;
}

/* .circle_pos::after{
            width:calc(100% + 20px);
            aspect-ratio: 1;
            border-radius: 99%;
            position: absolute;
            content:"";
            border:1px solid;
} */

.circle_text1 {
  font-size: 30px;
  font-weight: 600;
}

.circle_text_sort {
  margin: 20px 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.circle_text2 {
  font-size: 80px;
  font-weight: 400;
  font-family: Oswald, sans-serif;
  letter-spacing: 8px;
}

.circle_text3 {
  font-size: 55px;
  margin: 0 5px;
}

.circle_text4 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}

.circle_text5 {
  font-size: 25px;
  font-weight: 500;
}

.FA_info_sort {
  width: 620px;
  height: auto;
  display: flex;
  flex-direction: column;
}

.FA_css_sort1 {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.FA_css_sort2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  color: #6a6a6a;
  width: 100%;
  max-width: 490px;
}

.FA_css_sort3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
  box-sizing: border-box;
  margin-bottom: 35px;
  font-size: 15px;
  font-weight: 600;
  margin-right: 30px;
}

.FA_css_sort4 {
  display: flex;
  flex-direction: column;
  color: #6a6a6a;
  box-sizing: border-box;
  font-weight: 600;
  font-size: 15px;
  max-width: 490px;
  line-height: 25px;
}

.FA_css_sort5 {
  display: flex;
  flex-direction: column;
  height: auto;
}

.FA_pb01 {
  padding-bottom: 35px;
}

.FA_mg01 {
  margin-bottom: 35px;
}

.FA_mg02 {
  margin-bottom: 10px;
}

.FA_info_title {
  font-size: 18px;
  margin-right: 10px;
  width: 120px;
  margin-bottom: 20px;
  font-weight: 700;
}

.FA_transfer_sort {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  font-weight: 600;
  max-width: 490px;
}

.ch_area {
  display: flex;
  flex-direction: column;
  height: auto;
}

@media (max-width: 1400px) {
  .editor_leftbox .media_news_ele {
    width: 50%;
  }
}

@media (max-width: 1200px) {
  .pii_RG_box {
    width: 100%;
  }
}

@media (max-width: 1000px) {
  .editor_box {
    flex-direction: column;
  }
  .editor_leftbox {
    width: 100%;
  }

  .editor_rightbox {
    width: 100%;
  }

  .product_box {
    flex-direction: column;
  }
  .product_rightbox {
    width: 100%;
  }
  .mob_pmenu {
    display: flex;
  }
  .product_leftbox {
    display: none;
  }

  .pii_allbox {
    flex-direction: column;
  }

  .pii_Larea {
    width: 100%;
    margin-bottom: 30px;
  }

  .pii_Rarea {
    width: 100%;
  }

  .pii_RG_box {
    width: 50%;
  }
}

@media (max-width: 900px) {
  .media_area.editor_box {
    flex-direction: column;
  }
  .media_area .editor_leftbox {
    width: 100%;
  }

  .media_area .editor_rightbox {
    width: 100%;
  }
}

@media (max-width: 768px) {

  .Calendar_fixbox{
    display:none;
  }

  .banner_title {
    font-size: 30px;
  }

  .pagination a {
    padding: 8px 10px;
    font-size: 15px;
  }

  .product_outspace {
    width: 50%;
  }

  .info_li_sortbox {
    width: 100%;
  }

  .info_li_sortbox {
    width: 100%;
  }

  .info_eletext2 {
    width: 100%;
  }

  .info_eletext {
    max-width: 100%;
  }

  .god_detail_box {
    width: 100%;
  }

  .info_float_leftbox2 {
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    margin-bottom: 20px;
  }

  .info_godrwd_mob {
    display: flex;
    margin: auto;
  }

  .info_godrwd_pc {
    display: none;
  }

  .info_float_leftbox2 img {
    width: 170px;
    /* max-width:55%; */
  }

  .god_float_title {
    margin-bottom: 10px;
  }

  .fes_detail_box {
    width: 100%;
  }
  .info_float_sortbox {
    width: 100%;
    flex-direction: column;
    padding: 20px 20px 20px 20px;
  }

  .info_float_leftbox {
    width: 100%;
  }

  .fes_float_textbox {
    flex-direction: row;
    margin-right: 0px;
    flex-wrap: wrap;
  }

  .fes_float_title {
    font-size: 40px;
    margin-bottom: 10px;
    margin-right: 0px;
    text-align: left;
  }

  .fes_float_text {
    margin-bottom: 10px;
    text-align: left;
    line-height: 40px;
  }

  .transfer-button {
    width: 70px;
    margin-right: 40px;
  }

  .transfer-button:last-child {
    margin-right: 0px;
  }

  .transfer-button:not(:first-child)::after {
    width: 20px;
    left: -31px;
  }

  .info_float_scrollarea {
    height: calc(100vh - 301px);
  }

  .info_res_sort {
    width: 45px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 25px;
  }

  .info_float_rightbox {
    max-width: 100%;
    width: 100%;
  }

  .info_float_scrollarea2 {
    height: calc(100vh - 368px);
  }

  .fes_float_textsort {
    margin-right: 10px;
  }

  .fes_float_title2 {
    margin-bottom: 20px;
  }

  .fes_float_text2 {
    margin-bottom: 20px;
  }

  .info_eletitle {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .editor_leftbox .media_news_ele {
    width: 100%;
  }
}

@media (max-width: 550px) {
  .pii_RG_box {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .product_outspace {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .transfer-button:not(:first-child)::after {
    display: none;
  }

  .transfer-button {
    margin-right: 20px;
  }

  .info_float_leftbox2 img {
    width: 130px;
  }
  .info_float_scrollarea2 {
    height: calc(100vh - 308px);
  }

  .index_godsort {
    grid-template-columns: repeat(auto-fill, 300px);
  }
  .godbox_ele {
    width: 300px;
  }

  .god_pic {
    width: 140px;
    left: 20px;
  }

  .god_wimg {
    width: 140px;
    left: 20px;
  }

  a.godbox_area:hover .wimg_anime {
    left: 40px;
  }
}

@media (max-width: 325px) {
  .pii_Rarea_cartsort {
    flex-direction: column;
    align-items: normal;
  }

  .RG_box_numbtn {
    margin-bottom: 10px;
  }

  .pii_Rarea_cart {
    margin-left: 0px;
  }
}
.fes_row{
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #d8bd4a;
}

.index_news_view_container{
	display: none;
	position: fixed;
    left: 0px;
    top: 0px;
    width: 100vw;
    height: 100vh;
	z-index:999;
}
.index_news_view_box{
	position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;

    justify-content: center;
    align-items: center;
}
.index_news_view_data{
    width: 85%;
    max-width: 800px;

    border-radius: 5px;
    background: #fff;
    position: relative;
}
.index_news_view_box .title{
    font-size: 22px;
    background: #d8bd4a;
    padding: 5px;
    text-align: center;
    color: white;
    margin-top: 30px;
}
.index_news_view_btn, .bid_info_window_btn{
	position: absolute;
    right: -10px;
    top: -15px;
    color: #ffffff;
    font-size: 24px;
    background: #d8bd4a;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}
.index_news_view_data .text_box{
    padding: 20px 10px;
    max-height: 60vh;
    overflow: auto;
    margin: 20px 0px;
}
.index_news_view_data .form-check{
	width:90%;
	text-align:center;
	margin-bottom: 20px;
}
.bg_colse{
    position: absolute;
    top: 0px;
    left: 0px;
	background: #0000004f;
	width:100%;
	height:100%;
}
.index_news_view_row{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;	
}
.index_news_view_row .text_title{
    font-size: 28px;
    font-weight: 900;	
}
.index_news_view_row .text_box > input[type="number"]{
    height: 40px;
    border: solid 2px #000000;	
}
.index_news_view_down_btn_box{
    display: flex;
    justify-content: flex-end;
    margin-top: 25px;	
}