:root {
  --primary-color: #ff3e55;
  --dark-bg: #1a1a1a;
}

body {
  font-family: "微軟正黑體", "Arial", "Microsoft JhengHei";
  background-color: #f8f9fa;
  font-weight: 300 !important;
  color: #222 !important;
}

.chinese_font {
  font-family: "微軟正黑體", "Arial", "Microsoft JhengHei";
  font-size: 15px;
}

/*設定圖片的大小*/
img {
  max-width: 100%;
  max-height: 100%;
}

/* --- 選單logo區基礎 --- */
.navbar {
  padding: 8px 0px;
  transition: 0.3s;
}

/*logo區*/
.navbar-brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 24px;
}

.navbar-brand span {
  color: var(--primary-color);
}

/* --- 自定義漢堡選單轉 X 動畫 --- */
/* --- 自定義圓潤版漢堡選單轉 X 動畫 --- */
.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 核心線條與其圓角設定 */
.burger-icon,
.burger-icon::before,
.burger-icon::after {
  width: 24px;
  height: 3px;
  /* 稍微加粗讓圓角更明顯 */
  background-color: var(--dark-bg);
  display: block;
  transition: all 0.3s ease-in-out;
  position: absolute;
  border-radius: 10px;
  /* 關鍵：讓左右兩邊變成圓頭 */
}

.burger-icon::before {
  content: "";
  top: -8px;
  /* 控制線條間距 */
}

.burger-icon::after {
  content: "";
  bottom: -8px;
  /* 控制線條間距 */
}

/* 點擊展開時變為 X (同時保有圓角) */
.navbar-toggler.open .burger-icon {
  background-color: transparent;
  /* 中間線消失 */
}

.navbar-toggler.open .burger-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar-toggler.open .burger-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* --- 電腦版 Hover 下拉 --- */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    border: none;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
}

/* --- 手機版選單樣式 --- */
@media (max-width: 991px) {
  .navbar-collapse {
    background: white;
    margin: 0 -15px;
    padding: 20px 30px;
  }

  .nav-link {
    border-bottom: 1px solid #f1f1f1;
    padding: 12px 0;
  }
}

.nav-link {
  font-weight: 500;
  color: var(--dark-bg) !important;
  font-size: 1rem;
  /* <--- 在這裡新增或修改這行 */
  /* 調整間距：上下為 10px，左右為 20px */
  padding-left: 20px !important;
  padding-right: 20px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* --- 卡片互動核心樣式 --- */
.item-card {
  display: none;
  margin-bottom: 30px;
  text-decoration: none !important;
  /* 移除超連結底線 */
  color: inherit;
}

.item-card.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

.card-wrapper {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  /* 初始極淺陰影 */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  /* 流暢的貝茲曲線動畫 */
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* 懸停效果：位移 15px 並加上柔和陰影 */
.item-card:hover .card-wrapper {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  /* 懸停時的淺色大陰影 */
}

/* 1. 設定外層容器的比例（例如 16:9 或固定高度） */
.img-placeholder {
  width: 100%;
  height: 250px;
  /* 您可以根據需求設定固定高度，或是使用 aspect-ratio */
  overflow: hidden;
  /* 確保超出部分被裁切 */
  background-color: #f0f0f0;
  /* 圖片載入前的預留色 */
}

/* 2. 讓圖片滿版且不變形 */
.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 關鍵：自動縮放並填滿空間，多餘的會裁切 */
  object-position: center;
  /* 圖片居中對齊 */
  display: block;
}

/* 懸停時稍微放大圖片區域(模擬視覺張力) */
.item-card:hover .img-placeholder {
  background: #e5e5e5;
}

.card-body {
  padding: 10px;
}

.card-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark-bg);
}

.card-text {
  font-size: 0.9rem;
  color: #666;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -----------------產品product_detail.php頁面中，下方特點說明分項的按鈕 start */
.product-tab-2 ul.product-menu {
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1199px) {
  .product-tab-2 ul.product-menu {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.product-tab-2 ul.product-menu li:not(:last-child) {
  padding-right: 10px;
}
@media (max-width: 1199px) {
  .product-tab-2 ul.product-menu li:not(:last-child) {
    padding-right: 10px;
  }
}
.product-tab-2 ul.product-menu li a {
  color: inherit;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
  position: relative;
  padding-bottom: 10px;
}
.product-tab-2 ul.product-menu li a:hover {
  color: #d2a35c;
}
.product-tab-2 ul.product-menu li a.active {
  color: #1d1d1d;
  font-weight: 600;
}
.product-tab-2 ul.product-menu li a.active:before {
  background-color: #1d1d1d;
  height: 3px;
  width: 100%;
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
}
@media (max-width: 991px) {
  .product-tab-2 ul.product-menu li a.active:before {
    content: none;
  }
}

/* 自定義分頁按鈕基礎樣式 */
.custom-tab-btn {
  display: inline-block;
  padding: 10px 10px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 2px; /* 圓角可依需求調整，若要直角則設為 0 */
  transition: all 0.3s ease;
  text-align: center;
  border: none;

  /* 預設狀態：黑底白字 */
  background-color: #555 !important;
  color: #ffffff !important;
}

/* 啟動狀態 (Active)：紅底白字 */
.custom-tab-btn.active {
  background-color: #906435 !important; /* Bootstrap 經典紅色，可改為您的品牌紅 */
  color: #ffffff !important;
}

/* 滑鼠移過 (Hover) 效果 */
.custom-tab-btn:hover {
  background-color: #906435 !important; /* 深紅色 */
  color: #ffffff !important;
}

/* 移除 Bootstrap nav-link 的預設底線與藍色字體 */
.product-menu .nav-link:focus,
.product-menu .nav-link:hover {
  color: #ffffff;
}

/* -----------------產品product_detail.php頁面中，下方特點說明分項的按鈕 end */

/* --- Top Bar 樣式 --- */
.top-bar {
  height: 30px;
  background-color: #333333;
  /* 深灰色底 */
  color: #ffffff;
  /* 白色字 */
  font-size: 13px;
  /* 較小的字體顯得精緻 */
  line-height: 30px;
  z-index: 1050;
  /* 確保在最上層 */
}

.top-bar i {
  color: var(--primary-color);
  /* 圖示使用主色調(紅色) */
}

/* 確保 Navbar 在 sticky 時緊貼最上方 0px */
.sticky-top {
  top: 0;
}

/* 行動版優化：如果你希望手機版也看得到，可以移除 HTML 中的 d-none d-md-block */
@media (max-width: 768px) {
  .top-bar {
    font-size: 11px;
  }
}

/* 讓側邊欄在捲動時固定 */
@media (min-width: 992px) {
  aside {
    position: sticky;
    /* top 的數值 = Navbar 的高度 + 想要留的間距 */
    /* 因為您的 Navbar 加上 Top Bar 大約 80-100px，建議設 90px ~ 100px */
    top: 120px;
    align-self: flex-start;
    /* 這是關鍵：確保 sticky 在 flex 容器中正常運作 */
    height: fit-content;
    /* 確保高度隨內容縮放，不會拉長 */
  }
}

/* footer區的css */

footer {
  background-color: #1a1a1a !important;
  /* 使用與您 body 變數接近的深色 */
}

footer h5 {
  letter-spacing: 1px;
  font-size: 1.1rem;
}

footer .list-unstyled li {
  color: #bbb;
  font-size: 0.95rem;
}

footer .social-icons a {
  transition: color 0.3s ease;
}

footer .social-icons a:hover {
  color: var(--primary-color) !important;
}

/* 讓地址文字與圖示對齊更漂亮 */
footer i {
  width: 20px;
}

/* 回到頂部按鈕樣式  start*/
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #8e6d42;
  /* 米色 */
  color: white;
  /* 白色圖示 */
  border: none;
  border-radius: 50%;
  /* 圓形 */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  /* 初始隱藏 */
  visibility: hidden;
  transition: all 0.4s ease;
  /* 淡入淡出動畫 */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 顯示時的狀態 */
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #b08348;
  /* 懸停時顏色加深 */
  transform: translateY(-5px);
}

.back-to-top i {
  font-size: 18px;
}

/* 回到頂部按鈕樣式  end*/

.breadcrumb-area.with-bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 360px !important;
}

/* === 手機 (寬度小於768px) 時的設定 === */
@media (max-width: 768px) {
  .breadcrumb-area.with-bg {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 250px !important;
  }
}

/*橫線*/
.hr_style {
  border: 1px solid #0e6381 !important;
}

/*網頁一載入時出現全螢幕藍色遮罩的設定 start------------*/

#loading-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #3b7fb0; /* 深藍色，可自行改 */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 1;
  transition: opacity 1.2s ease; /* 淡出速度 */
}

#loading-mask img {
  width: 300px; /* logo 寬度 */
  height: auto;
}

/*網頁一載入時出現全螢幕藍色遮罩的設定 end------------*/

.main_header_bgcolor {
  background-color: #57a2d8 !important;
}

.footer_bgcolor {
  background-color: #3b7fb0 !important;
}

/*電腦畫面選單固定在畫面最上方的設定*/
.meunu_comptuer_set {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  box-shadow: 0 4px 10px rgba(60, 130, 180, 0.3); /*陰影*/
}

/*每頁選單下的第一個div離上方的位置，配合固定會出現的選單的高度*/
.first_div_mt {
  margin-top: 0px;
}

/*主選單文字的大小*/
.main-header .main-nav > ul > li > a {
  display: block;
  padding: 45px 0;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
}

/*第一層下拉選單，且沒再分類的 文字的大小 skudmart-dropdown*/
.main-header .main-nav > ul > li > ul.skudmart-dropdown li a {
  display: block;
  font-size: 14px;
}

/*第一層下拉選單，有再分類的，上方分類文字的大小  megamenu-holder > sku-megamenu*/
.main-header
  .main-nav
  > ul
  > li.megamenu-holder
  .sku-megamenu_wrap
  > ul.sku-megamenu
  > li
  span.title {
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: #1d1d1d;
  padding-bottom: 0px; /*第一層分類與第二層分類的間距*/
  display: block;
}
/*第一層下拉選單，有再分類的，其下一層子分類文字的大小  megamenu-holder > sku-megamenu*/
.main-header
  .main-nav
  > ul
  > li.megamenu-holder
  .sku-megamenu_wrap
  > ul.sku-megamenu
  > li
  a {
  font-size: 15px;
  line-height: 25.2px;
}
/*第一層下拉選單，有再分類的，其下一層子分類的上下間距  megamenu-holder > sku-megamenu*/
.main-header
  .main-nav
  > ul
  > li.megamenu-holder
  .sku-megamenu_wrap
  > ul.sku-megamenu
  > li
  ul
  li:not(:last-child) {
  padding-bottom: 7px;
}

/*----------------------首頁上方輪播區，影片呈現內容的設定 start-------------------------------------------*/
/*<div> 的「背景」本身不能直接用 mp4，可以把影片設為絕對定位 (position: absolute) 並置於 <div> 背後。*/
.video-bg-container {
  position: relative;
  width: 100%;
  height: 100vh; /* 全螢幕高 */
  overflow: hidden;
}

.video-bg-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover; /* 影片填滿區域 */
  z-index: 0;
}

/* === 手機 (寬度小於768px) 時的設定 === */
@media (max-width: 768px) {
  .video-bg-container {
    height: 70vh; /* 高度為螢幕的 70% */
  }

  .video-bg-container video {
    object-fit: contain; /* 顯示完整影片高度 */
    width: auto;
    height: 100%;
  }
}

/*----------------------首頁上方輪播區，影片呈現內容的設定 end -------------------------------------------*/

/*----------------------首頁上方輪播區，pagination 的設定 start -------------------------------------------*/
/*顏色*/
.nav-pagination_wrap .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #fff;
}

.swiper-pagination span.swiper-pagination-bullet {
  width: 13px;
  height: 13px;
}

/* 讓電腦畫面中也顯示 swiper 分頁點 */
.nav-pagination_wrap .swiper-pagination {
  display: block !important;
  position: absolute;
  bottom: 20px; /* 可以調整距離底部的高度 */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
/*----------------------首頁上方輪播區，pagination 的設定 end -------------------------------------------*/

/*----------------------每張圖片 <img> 不論原始比例為何，都固定  , 寬度 100%、高度 300px，而且圖片能自動裁切、填滿、不變形。 -------------------------------------------*/
.single-img img {
  width: 100%;
  /*height: 300px;*/
  object-fit: cover; /* ✅ 讓圖片自動裁切、維持比例填滿 */
  object-position: center; /* 置中顯示圖片 */
  display: block; /* 移除底部空白間隙 */
}

/*----------------------新訊圖片的寬度100%，高度自動 -------------------------------------------*/
.news-img img {
  width: 100%;
  height: auto;
}

/*產品分類頁面左房分類按鈕對齊樣式的設定*/
.product-tab.style-A1 ul.product-menu {
  -webkit-box-pack: left;
  -webkit-justify-content: left;
  -ms-flex-pack: left;
  justify-content: left;
}
.product-tab.style-A1 ul.product-menu li:not(:last-child) {
  padding-right: 10px;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .product-tab.style-A1 ul.product-menu li:not(:last-child) {
    padding-bottom: 10px;
  }
}
.product-tab.style-A1 ul.product-menu li a {
  border: 1px solid #d8d8d8;
  text-transform: uppercase;
  padding: 15px 15px;
  font-size: 14px;
  line-height: 22px;
  display: block;
}
@media (max-width: 479px) {
  .product-tab.style-A1 ul.product-menu li a {
    padding: 10px 15px;
  }
}
.product-tab.style-A1 ul.product-menu li a.active {
  background-color: #1d1d1d;
  border-color: #1d1d1d;
  color: #ffffff;
}
.product-tab.style-A1 ul.product-menu li a:hover {
  background-color: #1d1d1d;
  border-color: #1d1d1d;
  color: #ffffff;
}

/*首頁上方滑動主圖class*/
.main-slider .swiper-slide .inner-slide .top_bg {
  background-image: url("../images/1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 85vh; /*顯示高度*/
}

.top_bg {
  background-repeat: no-repeat;
  background-size: cover;
  height: 85vh; /*顯示高度*/
}
@media (max-width: 1500px) {
  .top_bg {
    height: 580px;
  }
}
@media (max-width: 1199px) {
  .top_bg {
    height: 445px;
  }
}
@media (max-width: 767px) {
  .top_bg {
    height: 270px; /*手機看的高度*/
  }
}

/* -------------------------------------------------------
                   電腦版設定 start
-------------------------------------------------------- */
@media only screen and (min-width: 768px) {
}
/* -------------------------------------------------------
                   電腦版設定 end
-------------------------------------------------------- */

/* -------------------------------------------------------
                   手機版設定 start
-------------------------------------------------------- */
@media only screen and (max-width: 767px) {
}
/* -------------------------------------------------------
                   手機版設定 start
-------------------------------------------------------- */

.stroke_orange {
  text-shadow: 0px 10px 0.02px #ff9500, 9.8px 2.1px 0.02px #ff9500,
    4.2px -9.1px 0.02px #ff9500, -8px -6px 0.02px #ff9500,
    -7.6px 6.5px 0.02px #ff9500, 4.8px 8.8px 0.02px #ff9500,
    9.6px -2.8px 0.02px #ff9500, -0.7px -10px 0.02px #ff9500,
    -9.9px -1.5px 0.02px #ff9500, -3.5px 9.4px 0.02px #ff9500,
    8.4px 5.4px 0.02px #ff9500, 7.1px -7px 0.02px #ff9500,
    -5.4px -8.4px 0.02px #ff9500, -9.4px 3.5px 0.02px #ff9500,
    1.4px 9.9px 0.02px #ff9500, 10px 0.8px 0.02px #ff9500,
    2.9px -9.6px 0.02px #ff9500, -8.7px -4.8px 0.02px #ff9500,
    -6.6px 7.5px 0.02px #ff9500, 5.9px 8px 0.02px #ff9500,
    9.1px -4.1px 0.02px #ff9500, -2.1px -9.8px 0.02px #ff9500,
    -10px -0.1px 0.02px #ff9500, -2.2px 9.8px 0.02px #ff9500,
    9.1px 4.2px 0.02px #ff9500, 6.1px -8px 0.02px #ff9500,
    -6.5px -7.6px 0.02px #ff9500, -8.8px 4.7px 0.02px #ff9500,
    2.7px 9.6px 0.02px #ff9500, 10px -0.6px 0.02px #ff9500,
    1.5px -9.9px 0.02px #ff9500, -9.3px -3.6px 0.02px #ff9500,
    -5.5px 8.4px 0.02px #ff9500, 7px 7.2px 0.02px #ff9500,
    8.5px -5.3px 0.02px #ff9500, -3.4px -9.4px 0.02px #ff9500,
    -9.9px 1.3px 0.02px #ff9500, -0.8px 10px 0.02px #ff9500,
    9.6px 2.9px 0.02px #ff9500, 4.9px -8.7px 0.02px #ff9500,
    -7.5px -6.7px 0.02px #ff9500, -8.1px 5.9px 0.02px #ff9500,
    4px 9.2px 0.02px #ff9500, 9.8px -2px 0.02px #ff9500,
    0.2px -10px 0.02px #ff9500, -9.7px -2.3px 0.02px #ff9500,
    -4.3px 9px 0.02px #ff9500, 7.9px 6.1px 0.02px #ff9500;
}

.stroke_blue {
  text-shadow: 0px 10px 0.02px #0096dc, 9.8px 2.1px 0.02px #0096dc,
    4.2px -9.1px 0.02px #0096dc, -8px -6px 0.02px #0096dc,
    -7.6px 6.5px 0.02px #0096dc, 4.8px 8.8px 0.02px #0096dc,
    9.6px -2.8px 0.02px #0096dc, -0.7px -10px 0.02px #0096dc,
    -9.9px -1.5px 0.02px #0096dc, -3.5px 9.4px 0.02px #0096dc,
    8.4px 5.4px 0.02px #0096dc, 7.1px -7px 0.02px #0096dc,
    -5.4px -8.4px 0.02px #0096dc, -9.4px 3.5px 0.02px #0096dc,
    1.4px 9.9px 0.02px #0096dc, 10px 0.8px 0.02px #0096dc,
    2.9px -9.6px 0.02px #0096dc, -8.7px -4.8px 0.02px #0096dc,
    -6.6px 7.5px 0.02px #0096dc, 5.9px 8px 0.02px #0096dc,
    9.1px -4.1px 0.02px #0096dc, -2.1px -9.8px 0.02px #0096dc,
    -10px -0.1px 0.02px #0096dc, -2.2px 9.8px 0.02px #0096dc,
    9.1px 4.2px 0.02px #0096dc, 6.1px -8px 0.02px #0096dc,
    -6.5px -7.6px 0.02px #0096dc, -8.8px 4.7px 0.02px #0096dc,
    2.7px 9.6px 0.02px #0096dc, 10px -0.6px 0.02px #0096dc,
    1.5px -9.9px 0.02px #0096dc, -9.3px -3.6px 0.02px #0096dc,
    -5.5px 8.4px 0.02px #0096dc, 7px 7.2px 0.02px #0096dc,
    8.5px -5.3px 0.02px #0096dc, -3.4px -9.4px 0.02px #0096dc,
    -9.9px 1.3px 0.02px #0096dc, -0.8px 10px 0.02px #0096dc,
    9.6px 2.9px 0.02px #0096dc, 4.9px -8.7px 0.02px #0096dc,
    -7.5px -6.7px 0.02px #0096dc, -8.1px 5.9px 0.02px #0096dc,
    4px 9.2px 0.02px #0096dc, 9.8px -2px 0.02px #0096dc,
    0.2px -10px 0.02px #0096dc, -9.7px -2.3px 0.02px #0096dc,
    -4.3px 9px 0.02px #0096dc, 7.9px 6.1px 0.02px #0096dc;
}

.stroke_white {
  text-shadow: 0px 10px 0.02px #0096dc, 9.8px 2.1px 0.02px #0096dc,
    4.2px -9.1px 0.02px #0096dc, -8px -6px 0.02px #0096dc,
    -7.6px 6.5px 0.02px #0096dc, 4.8px 8.8px 0.02px #0096dc,
    9.6px -2.8px 0.02px #0096dc, -0.7px -10px 0.02px #0096dc,
    -9.9px -1.5px 0.02px #0096dc, -3.5px 9.4px 0.02px #0096dc,
    8.4px 5.4px 0.02px #0096dc, 7.1px -7px 0.02px #0096dc,
    -5.4px -8.4px 0.02px #0096dc, -9.4px 3.5px 0.02px #0096dc,
    1.4px 9.9px 0.02px #0096dc, 10px 0.8px 0.02px #0096dc,
    2.9px -9.6px 0.02px #0096dc, -8.7px -4.8px 0.02px #0096dc,
    -6.6px 7.5px 0.02px #0096dc, 5.9px 8px 0.02px #0096dc,
    9.1px -4.1px 0.02px #0096dc, -2.1px -9.8px 0.02px #0096dc,
    -10px -0.1px 0.02px #0096dc, -2.2px 9.8px 0.02px #0096dc,
    9.1px 4.2px 0.02px #0096dc, 6.1px -8px 0.02px #0096dc,
    -6.5px -7.6px 0.02px #0096dc, -8.8px 4.7px 0.02px #0096dc,
    2.7px 9.6px 0.02px #0096dc, 10px -0.6px 0.02px #0096dc,
    1.5px -9.9px 0.02px #0096dc, -9.3px -3.6px 0.02px #0096dc,
    -5.5px 8.4px 0.02px #0096dc, 7px 7.2px 0.02px #0096dc,
    8.5px -5.3px 0.02px #0096dc, -3.4px -9.4px 0.02px #0096dc,
    -9.9px 1.3px 0.02px #0096dc, -0.8px 10px 0.02px #0096dc,
    9.6px 2.9px 0.02px #0096dc, 4.9px -8.7px 0.02px #0096dc,
    -7.5px -6.7px 0.02px #0096dc, -8.1px 5.9px 0.02px #0096dc,
    4px 9.2px 0.02px #0096dc, 9.8px -2px 0.02px #0096dc,
    0.2px -10px 0.02px #0096dc, -9.7px -2.3px 0.02px #0096dc,
    -4.3px 9px 0.02px #0096dc, 7.9px 6.1px 0.02px #0096dc;
}

.textborder_title_black {
  -webkit-text-stroke: 1.5px black;
}
.textshadow_title_black {
  text-shadow: 0.1em 0.1em 0.2em black;
}

.textshadow_content_black {
  text-shadow: 0 0 0.2em black, 0 0 0.2em black, 0 0 0.2em black;
}

.textshadow_content_blue {
  text-shadow: 0 0 0.2em #00488b, 0 0 0.2em #00488b, 0 0 0.2em #00488b;
}

.textshadow_content_green {
  text-shadow: 0 0 0.2em #4e6e16, 0 0 0.2em #4e6e16, 0 0 0.2em #4e6e16;
}

.textshadow_content_white {
  text-shadow: 0 0 0.2em #fff, 0 0 0.2em #fff, 0 0 0.2em #fff;
}

.textshadow {
  text-shadow: 0px 0px 10px #111111, 0px 0px 10px #111111;
}

/*.textshadow_white {
text-shadow: 0px 0px 4px #ffffff, 0px 0px 4px #ffffff, 0px 0px 4px #ffffff, 0px 0px 4px #ffffff, 0px 0px 4px #ffffff, 0px 0px 4px #ffffff, 0px 0px 10px #ffffff, 0px 0px 10px #ffffff, 4px 4px 10px #000000;
}
*/
.title_shadow_blue {
  /* 3px 等寬描邊（同色） */
  filter: drop-shadow(0px 0px 2px #0096dc) drop-shadow(2px 0px 0px #0096dc)
    drop-shadow(-2px 0px 0px #0096dc) drop-shadow(0px 2px 0px #0096dc)
    drop-shadow(0px -2px 0px #0096dc);

  /* 原本的光暈 */
  filter: drop-shadow(0 0 2px #0096dc) drop-shadow(0 0 2px #0096dc) f02d00
    drop-shadow(2px 0px 0px #0096dc) drop-shadow(-2px 0px 0px #0096dc)
    drop-shadow(0px 2px 0px #0096dc) drop-shadow(0px -2px 0px #0096dc);
}

.title_shadow_orange {
  /* 2px 等寬描邊（同色） */
  filter: drop-shadow(0px 0px 2px #ff9500) drop-shadow(2px 0px 0px #ff9500)
    drop-shadow(-2px 0px 0px #ff9500) drop-shadow(0px 2px 0px #ff9500)
    drop-shadow(0px -2px 0px #ff9500);

  /* 原本的光暈 */
  filter: drop-shadow(0 0 2px #ff9500) drop-shadow(0 0 2px #ff9500)
    drop-shadow(2px 0px 0px #ff9500) drop-shadow(-2px 0px 0px #ff9500)
    drop-shadow(0px 2px 0px #ff9500) drop-shadow(0px -2px 0px #ff9500);
}

.title_shadow_red {
  /* 2px 等寬描邊（同色） */
  filter: drop-shadow(0px 0px 2px #f02d00) drop-shadow(2px 0px 0px #f02d00)
    drop-shadow(-2px 0px 0px #f02d00) drop-shadow(0px 2px 0px #f02d00)
    drop-shadow(0px -2px 0px #f02d00);

  /* 原本的光暈 */
  filter: drop-shadow(0 0 2px #f02d00) drop-shadow(0 0 2px #f02d00)
    drop-shadow(2px 0px 0px #f02d00) drop-shadow(-2px 0px 0px #f02d00)
    drop-shadow(0px 2px 0px #f02d00) drop-shadow(0px -2px 0px #f02d00);
}

.title_shadow_white {
  /* 2px 等寬描邊（同色） */
  filter: drop-shadow(0px 0px 2px #ffffff) drop-shadow(2px 0px 0px #ffffff)
    drop-shadow(-2px 0px 0px #ffffff) drop-shadow(0px 2px 0px #ffffff)
    drop-shadow(0px -2px 0px #ffffff);

  /* 原本的光暈 */
  filter: drop-shadow(0 0 2px #ffffff) drop-shadow(0 0 2px #ffffff)
    drop-shadow(2px 0px 0px #ffffff) drop-shadow(-2px 0px 0px #ffffff)
    drop-shadow(0px 2px 0px #ffffff) drop-shadow(0px -2px 0px #ffffff);
}

.title_color_blue {
  color: #0096dc !important;
}

.title_color_orange {
  color: #ff9500 !important;
}

.title_color_red {
  color: #f02d00 !important;
}

.title_color_white {
  color: #ffffff !important;
}

.subtitle_shadow_blue {
  /* 3px 等寬描邊（同色） */
  filter: drop-shadow(0px 0px 1px #0096dc) drop-shadow(1px 0px 0px #0096dc)
    drop-shadow(-1px 0px 0px #0096dc) drop-shadow(0px 1px 0px #0096dc)
    drop-shadow(0px -1px 0px #0096dc);

  /* 原本的光暈 */
  filter: drop-shadow(0 0 1px #0096dc) drop-shadow(0 0 1px #0096dc) f02d00
    drop-shadow(1px 0px 0px #0096dc) drop-shadow(-1px 0px 0px #0096dc)
    drop-shadow(0px 1px 0px #0096dc) drop-shadow(0px -1px 0px #0096dc);
}

.subtitle_shadow_orange {
  /* 1px 等寬描邊（同色） */
  filter: drop-shadow(0px 0px 1px #ff9500) drop-shadow(1px 0px 0px #ff9500)
    drop-shadow(-1px 0px 0px #ff9500) drop-shadow(0px 1px 0px #ff9500)
    drop-shadow(0px -1px 0px #ff9500);

  /* 原本的光暈 */
  filter: drop-shadow(0 0 1px #ff9500) drop-shadow(0 0 1px #ff9500)
    drop-shadow(1px 0px 0px #ff9500) drop-shadow(-1px 0px 0px #ff9500)
    drop-shadow(0px 1px 0px #ff9500) drop-shadow(0px -1px 0px #ff9500);
}

.subtitle_shadow_red {
  /* 1px 等寬描邊（同色） */
  filter: drop-shadow(0px 0px 1px #f02d00) drop-shadow(1px 0px 0px #f02d00)
    drop-shadow(-1px 0px 0px #f02d00) drop-shadow(0px 1px 0px #f02d00)
    drop-shadow(0px -1px 0px #f02d00);

  /* 原本的光暈 */
  filter: drop-shadow(0 0 1px #f02d00) drop-shadow(0 0 1px #f02d00)
    drop-shadow(1px 0px 0px #f02d00) drop-shadow(-1px 0px 0px #f02d00)
    drop-shadow(0px 1px 0px #f02d00) drop-shadow(0px -1px 0px #f02d00);
}

.subtitle_shadow_white {
  /* 1px 等寬描邊（同色） */
  filter: drop-shadow(0px 0px 1px #ffffff) drop-shadow(1px 0px 0px #ffffff)
    drop-shadow(-1px 0px 0px #ffffff) drop-shadow(0px 1px 0px #ffffff)
    drop-shadow(0px -1px 0px #ffffff);

  /* 原本的光暈 */
  filter: drop-shadow(0 0 1px #ffffff) drop-shadow(0 0 1px #ffffff)
    drop-shadow(1px 0px 0px #ffffff) drop-shadow(-1px 0px 0px #ffffff)
    drop-shadow(0px 1px 0px #ffffff) drop-shadow(0px -1px 0px #ffffff);
}

.img_border_radius {
  border-radius: 20% 0 20% 0;
}

.img_border_radius_1 {
  border-radius: 400px 400px 0 0;
}

.ul_style_none {
  list-style: none !important;
}

.font_normal {
  font-style: normal !important;
}

.font_12 {
  font-size: 12px !important;
  line-height: 24px;
  font-weight: 200 !important;
}

.font_14 {
  font-size: 14px !important;
  line-height: 24px;
  font-weight: 400 !important;
  letter-spacing: 1px;
}

.font_15 {
  font-size: 15px !important;
  line-height: 26px !important;
}

.font_16 {
  font-size: 16px !important;
  line-height: 24px;
  font-weight: 400 !important;
}

.font_18 {
  font-size: 18px !important;
  line-height: 26px;
  font-weight: 400 !important;
}

.font_20 {
  font-size: 20px !important;
  line-height: 28px;
}

.font_22 {
  font-size: 22px !important;
  line-height: 30px;
  font-weight: 300 !important;
}

.font_24 {
  font-size: 24px !important;
  line-height: 30px;
  font-weight: 500 !important;
}

.font_30 {
  font-size: 30px !important;
  line-height: 30px;
  font-weight: 500 !important;
}

.font_36 {
  font-size: 36px !important;
  line-height: 30px;
  font-weight: 500 !important;
}

.font_42 {
  font-size: 42px !important;
  line-height: 30px;
  font-weight: 800 !important;
}

.font_italic {
  font-style: italic;
}

.font_price {
  color: #f26e3a !important;
  font-size: 16px !important;
  line-height: 30px;
  font-weight: 400 !important;
}

.font_weight_400 {
  font-weight: 400 !important;
}

.font_weight_500 {
  font-weight: 500 !important;
}

.font_weight_600 {
  font-weight: 600 !important;
}

.font_weight_700 {
  font-weight: 700 !important;
}

.color_white {
  color: #ffffff !important;
}

.color_grey {
  color: #555555 !important;
}

.color_lightgrey {
  color: #aaaaaa !important;
}

.color_lightyellow {
  color: #ffeb99 !important;
}

.color_blue {
  color: #007cb0 !important;
}

.color_dark_blue {
  color: #234860 !important;
}

.color_pink {
  color: #e4005b !important;
}

.color_red {
  color: #990000 !important;
}

.color_orange {
  color: #f77a00 !important;
}

.color_lightblue {
  color: #55daf7 !important;
}

.color_yellow {
  color: #efdd34 !important;
}

.color_darkgrey {
  color: #222222 !important;
}

.color_black {
  color: #101010 !important;
}

.color_lightorange {
  color: #ffce58 !important;
}

.color_darkpink {
  color: #cd765d !important;
}

.color_lightpink {
  color: #ffacbb !important;
}

.color_yellowgreen {
  color: #bfdb01 !important;
}

.color_green {
  color: #9bdb01 !important;
}

.color_darkgreen {
  color: #6e970b !important;
}

.color_darkgreen_1 {
  color: #4c6b00 !important;
}

.color_darkorange {
  color: #ad8a2c !important;
}

.color_darkbrown {
  color: #78632b !important;
}

.color_price {
  color: #990000 !important;
  font-size: 20px !important;
}

.color_price_small {
  color: #e16224 !important;
  font-size: 18px !important;
}

.color_price_small_2 {
  color: #ffb20c !important;
  font-size: 14px !important;
}

.color_price_small_grey {
  color: #444444 !important;
  font-size: 16px !important;
}

.color_price_promotion {
  color: #e16224 !important;
  font-size: 20px !important;
  font-style: italic;
}

.color_price_promotion_small {
  color: #e16224 !important;
  font-size: 16px !important;
  font-style: italic;
}

.color_price_promotion_title {
  color: #ff9c00 !important;
  font-size: 20px !important;
}

.bg_white {
  background-color: #f4f3f1 !important;
}

.bg_menu_stick {
  background-color: #57a2d8 !important;
}

.bg_dark_color {
  background-color: #222222 !important;
}

.align_left {
  text-align: left !important;
}

.align_right {
  text-align: right !important;
}

.align_center {
  text-align: center !important;
}

/*區塊內容左右置中*/
.center_block {
  display: flex;
  justify-content: center;
}

/*區塊內容垂直置中*/
.center_block_v {
  display: grid;
  place-items: center; /* 水平 + 垂直置中 */
  height: 80px;
  /*border: 1px solid #ccc;*/
}

.mb_20 {
  margin-bottom: 20px;
}

.margin_top_50 {
  margin-top: 50px;
}

.padding_100 {
  padding: 100px 0;
}

.padding_bottom_20 {
  padding-bottom: 20px;
}

.padding_bottom_30 {
  padding-bottom: 30px;
}

.padding_bottom_40 {
  padding-bottom: 40px;
}

.padding_left_20 {
  padding-left: 20px;
}
.padding_left_40 {
  padding-left: 40px;
}

.padding_left_60 {
  padding-left: 60px;
}

.padding_top_15 {
  padding-top: 15px;
}
.padding_top_20 {
  padding-top: 20px;
}
.padding_top_30 {
  padding-top: 30px;
}
.padding_top_50 {
  padding-top: 50px;
}
.padding_top_-20 {
  padding-top: -20px;
}

.padding_top_-50 {
  padding-top: -50px;
}

.padding_top_120 {
  padding-top: 120px;
}

.line_height_10 {
  line-height: 10px;
}

.line_height_20 {
  line-height: 20px;
}

.line_height_26 {
  line-height: 26px;
}

.line_height_30 {
  line-height: 30px;
}

.line_height_36 {
  line-height: 36px;
}

.line_height_50 {
  line-height: 50px;
}

.zindex_9 {
  z-index: 9;
}

.zindex_9999 {
  z-index: 9999;
}

.bgcolor_lightbrown {
  background: #f5f3f0;
}

.thumb_border {
  border: solid;
  border-width: 1px;
  border-color: #ffffff;
}

.photo_border {
  border: solid;
  border-width: 1px;
  border-color: #90877b;
}

.div_border_light {
  border: solid;
  border-width: 1px;
  border-color: #77b2d7;
  padding: 20px 10px 20px 10px;
}

.radius_5 {
  border-radius: 5px;
}

.radius_10 {
  border-radius: 10px;
}

.radius_50 {
  border-radius: 50px;
}

A.naa:link {
  text-decoration: none !important;
}
A.naa:visited {
  text-decoration: none !important;
}
A.naa:hover {
  text-decoration: none !important;
  font-weight: 700 !important;
}

A.naw:link {
  color: #e97c00 !important;
  text-decoration: none !important;
}
A.naw:visited {
  color: #e97c00 !important;
  text-decoration: none !important;
}
A.naw:hover {
  color: #00bdfc !important;
  text-decoration: underline !important;
  filter: Alpha(Opacity=70, FinishOpacity=70, Style=2);
  filter: alpha(opacity=70); /* IE */
  -moz-opacity: 0.7; /* Moz + FF */
  opacity: 0.7;
}

A.naz:link {
  color: #f9bf37 !important;
  text-decoration: none !important;
}
A.naz:visited {
  color: #f9bf37 !important;
  text-decoration: none !important;
}
A.naz:hover {
  color: #00bdfc !important;
  text-decoration: underline !important;
  left: 2px;
  top: 2px;
  right: -2px;
  bottom: 0px;
  position: relative;
  filter: Alpha(Opacity=70, FinishOpacity=70, Style=2);
  filter: alpha(opacity=70); /* IE */
  -moz-opacity: 0.7; /* Moz + FF */
  opacity: 0.7;
}

A.nax:link {
  color: #fff !important;
  text-decoration: none !important;
}
A.nax:visited {
  color: #fff !important;
  text-decoration: none !important;
}
A.nax:hover {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  box-shadow: 0 0 15px 3px rgba(255, 255, 255, 0.8); /*在四周產生 15px 模糊、3px 擴散、透明度 0.8 的白色光暈。*/
}

A.nay:link {
  color: #222222 !important;
  text-decoration: none !important;
}
A.nay:visited {
  color: #222222 !important;
  text-decoration: none !important;
}
A.nay:hover {
  color: #ec1d66 !important;
  text-decoration: underline !important;
  left: 2px;
  top: 2px;
  right: -2px;
  bottom: 0px;
  position: relative;
}

A.nab:link {
  color: #0074c5 !important;
  text-decoration: none !important;
}
A.nab:visited {
  color: #0074c5 !important;
  text-decoration: none !important;
}
A.nab:hover {
  color: #ec1d66 !important;
  text-decoration: underline !important;
}

A.bread_crumb:link {
  color: #222 !important;
  text-decoration: none !important;
}
A.bread_crumb:visited {
  color: #222 !important;
  text-decoration: none !important;
}
A.bread_crumb:hover {
  color: #f4f3f1 !important;
  text-decoration: none !important;
}
