/* =================================================================
   Custom CSS 總目錄 (Table of Contents)
   
   01. 字體與全域設定 (Web Fonts & Global Settings)
   02. 頂部橫幅與 Top Bar (Promo Banner & Top Bar)
   03. 標題與背景 (Page Titles & Backgrounds)
   04. 頁首與主選單排版 (Header & Navigation - Flexbox)
   05. 商品與圖片展示 (Products & Images)
   06. 購物車樣式 (Cart Styles)
   07. UI 元件 (Buttons, Feature Box, Timeline, Mega Menu)
   08. 表單與輸入框 (Forms, Validation & Inputs)
   09. Email 訂單信件覆蓋樣式 (Email Template Overrides)
================================================================= */

/* =======================================================
   01. 字體與全域設定 (Web Fonts & Global Settings)
======================================================= */
@media all {
  @font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    src: url("https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrJJnedA.woff") format("woff"),
      url("https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrJJnecg.woff2") format("woff2");
  }

  @font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    src: url("https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9Z1JlEw.woff") format("woff"),
      url("https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9Z1JlFQ.woff2") format("woff2");
  }

  @font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    src: url("https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLEj6Z1JlEw.woff") format("woff"),
      url("https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLEj6Z1JlFQ.woff2") format("woff2");
  }
}

.mask {
  display: none;
  background-color: #111;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  position: fixed;
}

.font-mid {
  font-size: 1.6rem;
}

a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
}

/* =======================================================
   02. 頂部橫幅與 Top Bar (Promo Banner & Top Bar)
======================================================= */
/* 頂部促銷橫幅 */
.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ff9800;
  /* 若需要漸層可改回 linear-gradient(90deg, #ff6a00, #ee0979); */
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 30px;
  font-weight: bold;
  z-index: 9999;
  transition: top 0.5s ease-in-out;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#promoText {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .promo-banner {
    font-size: 20px;
    padding: 8px 10px;
  }

  #top-bar {
    --cnvs-topbar-height: 30px;
    --cnvs-topbar-font-size: 0.65rem;
    --cnvs-topbar-submenu-padding: 0.2rem;
  }
}

/* =======================================================
   03. 標題與背景 (Page Titles & Backgrounds)
======================================================= */
.page-title-bg {
  background: linear-gradient(to bottom, #dfd085 0%, #ddc57a 50%, #dbb76f 100%);
}

.page-title-content span {
  font-size: 1.5rem;
}

.breadcrumb-item {
  font-size: 1rem;
}

/* 點狀背景特效 */
.dotted-bg {
  --cnvs-dotted-opacity: 0.7;
  --cnvs-dotted-top: 0;
  --cnvs-dotted-right: 0;
  --cnvs-dotted-left: auto;
  --cnvs-dotted-size: 190px;
}

.dotted-bg.pos-left {
  --cnvs-dotted-right: auto;
  --cnvs-dotted-left: 0;
}

.dotted-bg:before {
  content: "";
  position: absolute;
  display: block;
  top: var(--cnvs-dotted-top);
  left: var(--cnvs-dotted-left);
  right: var(--cnvs-dotted-right);
  width: var(--cnvs-dotted-size);
  height: var(--cnvs-dotted-size);
  background-size: 20px 20px;
  background-position: center;
  transform: translate(30px, -30px);
  background-image: radial-gradient(rgba(var(--cnvs-themecolor-rgb), var(--cnvs-dotted-opacity)) 25%, transparent 25%);
  z-index: auto;
}

/* 促銷大圖背景 */
.promo-img {
  background-image: url(../images/banner1.png), linear-gradient(to bottom, #dfd085 0%, #ddc57a 50%, #dbb76f 100%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .promo-img {
    background-image: url(../images/banner1920.png), linear-gradient(to bottom, #dfd085 0%, #ddc57a 50%, #dbb76f 100%);
  }
}

@media (max-width: 764px) {
  .promo-img {
    background-image: linear-gradient(to bottom, #dfd085 0%, #ddc57a 50%, #dbb76f 100%);
  }
}

/* =======================================================
   04. 頁首與主選單排版 (Header & Navigation - Flexbox)
======================================================= */
/* 消除重整時的「內縮再展開」動畫 */
body #header,
body #header-wrap,
body #header .container,
body #header .container-fluid,
body #header .header-row,
body #header #logo,
body #header #logo a,
body #header #logo img,
body #header .primary-menu,
body #header .menu-container,
body #header .header-misc,
body #header .header-misc-icon {
  transition: none !important;
  animation: none !important;
}

/* 大於 1025px (桌面版) 排版 */
@media (min-width: 1025px) {
  body #header .primary-menu-trigger {
    display: none !important;
  }

  body #header .header-row,
  body #header.is-expanded-menu .header-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
  }

  body #header #logo,
  body #header.is-expanded-menu #logo {
    flex: 0 0 auto !important;
    order: 1 !important;
    margin-right: 15px !important;
    display: flex !important;
    align-items: center !important;
  }

  body #header .primary-menu,
  body #header.is-expanded-menu .primary-menu {
    flex: 1 1 auto !important;
    order: 2 !important;
    display: flex !important;
    width: 100% !important;
  }

  body #header .primary-menu .menu-container,
  body #header.is-expanded-menu .primary-menu .menu-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body #header .primary-menu .menu-container>.menu-item:first-child,
  body #header.is-expanded-menu .primary-menu .menu-container>.menu-item:first-child {
    margin-left: auto !important;
  }

  body #header .primary-menu .menu-container>.menu-item {
    float: none !important;
    display: block !important;
  }

  body #header .primary-menu .menu-container>.menu-item>.menu-link {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
  }

  /* 終極 FOUC 殺手 */
  body #header .primary-menu .menu-item:not(:hover):not(.sfHover)>.sub-menu-container {
    display: none !important;
  }

  body #header .header-misc,
  body #header.is-expanded-menu .header-misc {
    flex: 0 0 auto !important;
    order: 3 !important;
    display: flex !important;
    margin-left: 20px !important;
    align-items: stretch !important;
  }

  body #header .header-misc-icon {
    display: flex !important;
    align-items: center !important;
    height: auto !important;
  }
}

/* 寬敞舒適模式 (1400px+) */
@media (min-width: 1400px) {
  body #header #logo img {
    max-width: 200px !important;
  }

  body #header .primary-menu .menu-link {
    padding-left: 5px !important;
    padding-right: 5px !important;
    font-size: 16px !important;
  }

  body #header .header-misc-icon {
    width: 70px !important;
    min-width: 50px !important;
  }
}

/* 適度收縮模式 (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  body #header #logo img {
    max-width: 150px !important;
  }

  body #header .primary-menu .menu-link {
    padding-left: 6px !important;
    padding-right: 6px !important;
    font-size: 13px !important;
    letter-spacing: -0.2px !important;
  }

  body #header .header-misc-icon {
    width: 55px !important;
    min-width: 45px !important;
  }
}

/* 極限死亡區間 (1025px - 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
  body #header #logo img {
    max-width: 110px !important;
  }

  body #header .primary-menu .menu-link {
    padding-left: 3px !important;
    padding-right: 3px !important;
    font-size: 11px !important;
    letter-spacing: -0.5px !important;
  }

  body #header .header-misc-icon {
    width: 35px !important;
    min-width: 35px !important;
  }
}

/* 手機/平版 Hamburger 模式 (1024px 以下) */
@media (max-width: 1024px) {

  body #header #logo,
  body #header.is-expanded-menu #logo {
    margin-right: auto !important;
  }

  body #header .header-misc,
  body #header.is-expanded-menu .header-misc {
    margin-left: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  body #header .primary-menu-trigger {
    margin-left: 15px !important;
    display: flex !important;
    align-items: center !important;
  }
}

@media (max-width: 932px) {
  #header-wrap #logo img {
    height: var(--cnvs-header-height-sm);
  }
}

/* =======================================================
   05. 商品與圖片展示 (Products & Images)
======================================================= */
.slider-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: block;
}

.descript img,
.entry-content img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* Typo fixed */
}

/* 商品大圖 */
.my-product-image {
  width: 100%;
  height: 300px;
  border: 1px solid #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
}

.my-product-image img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

/* 項目/入口圖片 */
.my-entry-image {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
}

.my-entry-image img {
  width: 100%;
  height: 100%;
  max-height: 230px;
  object-fit: contain;
}

/* 圖片 RWD 調整 */
@media (max-width: 764px) {
  .mt-2-md {
    margin-top: 2.5rem !important;
  }

  .my-product-image,
  .my-product-image img {
    height: 250px;
    border: none;
  }
}

@media screen and (max-width: 500px) {
  .my-entry-image {
    height: 150px;
  }

  .my-entry-image img {
    max-height: 110px;
  }

  .oem-icon {
    width: 100px;
    margin-left: 0px;
  }

  .btn-group {
    width: 50px;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .oem-icon {
    width: 120px;
    margin-left: -5px;
  }
}

/* 圖片徽章 (Badge) */
.badge {
  top: 5px;
  left: 5px;
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 100;
}

.badge img {
  width: 100%;
  height: 100%;
  padding: 0px;
}

.badge+.badge {
  top: 40px;
  left: 5px;
}

.badge+.badge+.badge {
  top: 70px;
  left: 5px;
}

.badge+.badge+.badge+.badge {
  top: 100px;
  left: 5px;
}

@media (max-width: 500px) {
  .badge {
    width: 55px;
    height: 55px;
  }
}

/* 產品彈窗字體調整 */
@media screen and (max-width: 900px) {
  .mfp-title {
    right: -8%;
    bottom: -20px;
    transform: translateX(-50%);
    width: auto;
    text-align: center;
    line-height: 1.65;
    padding: 0px;
    backdrop-filter: blur(0.4em);
    font-size: 0.9rem;
  }
}

/* =======================================================
   06. 購物車樣式 (Cart Styles)
======================================================= */
/* 結帳頁表格內的圖片 */
.cart-item-img {
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 右側滑出購物車項目 */
[data-id='pools'] .cart_item {
  border-bottom: 0px solid rgba(0, 0, 0, 0.1) !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  margin-bottom: 0 !important;
  display: flex !important;
}

[data-id='pools'] .cart_item:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

[data-id='pools'] .cart_item .cart_info {
  padding-left: 12px !important;
}

[data-id='pools'] .cart_item .cart_info p a {
  color: #000 !important;
  text-decoration: none !important;
  transition: color 0.2s ease-in-out;
}

[data-id='pools'] .cart_item .cart_info p a:hover {
  color: var(--cnvs-link-color) !important;
}

[data-id='pools'] .cart_item .product-image:hover {
  opacity: 0.8;
}

/* 購物車活動標籤 */
.product-active li span {
  white-space: nowrap;
  display: inline-block;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .cart-item-img {
    width: 180px;
  }

  [data-id='cart-info'] tfoot .button {
    display: block !important;
    width: 100% !important;
    margin: 10px 0 !important;
    text-align: center !important;
    float: none !important;
  }


  [data-id='cart-info'] tfoot .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /*標題字體放大*/
  .cart_sidebar h4,
  .col-12 h4 {
    font-size: 24px !important;
    font-weight: bold !important;
    margin-top: 30px !important;
    margin-bottom: 20px !important;
    border-bottom: 2px solid #eee;

    padding-bottom: 10px;
  }

  /*底部按鈕優化 */
  form#shippingform input[type="submit"].button {
    width: calc(100% - 30px) !important;
    margin: 20px auto 40px auto !important;
    display: block !important;
    font-size: 20px !important;
    height: 55px !important;

  }


  form#shippingform .col-md-12.col-12.form-group {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-bottom: 50px !important;

  }

  .table-bordered> :not(caption)>*>* {
    border-width: 0;
  }

  .table> :not(caption)>*>* {

    border-bottom-width: 0;

  }

}

/* 結帳預覽頁 (Final Review) 手機版精修 */
@media screen and (max-width: 768px) {

  #content h4 {
    font-size: 24px !important;
    font-weight: bold !important;
    text-align: left !important;
    margin-top: 30px !important;
    margin-bottom: 20px !important;
    color: #333;
  }

  /* 商品圖片 */
  .cart_infoitem .product_thumb img {
    width: 180px !important;
    max-width: 180px !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto 10px auto !important;
  }

  /* 讓表格列變成垂直排列，並文字置中 */
  .cart_infoitem thead {
    display: none !important;
  }

  /* 隱藏表頭 */

  .cart_infoitem tbody tr td {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    border: none !important;
    padding: 8px 0 !important;
  }

  /* 價格與總額字體放大並變色 */
  .cart_infoitem .product_total,
  .cart_infoitem .product_total span,
  .cart_infoitem .product_total label {
    font-size: 24px !important;
    color: #dbb76f !important;
    font-weight: bold !important;
  }

  /* 下方金額統計區 (Subtotal / Discount / Total) 置中 */
  .cart_result {
    margin-top: 20px !important;
  }

  .cart_result tr td {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 15px 10px !important;
  }

  .cart_result tr td[style*="text-align: right"] {
    text-align: center !important;
    font-size: 22px !important;
    font-weight: bold;
    border-top: none !important;
  }

  .cart_result .total,
  .cart_result .total label {
    font-size: 28px !important;
    color: #000 !important;
  }

  /* 底部結帳按鈕 (AliPay / PayPal) */
  .checkout,
  #AliPay {
    width: 100% !important;
    margin: 10px 0 !important;
    height: 55px !important;
    font-size: 20px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }


  #content .col-lg-6 .row .col-lg-6 {
    width: 100% !important;
    padding: 5px 15px !important;
  }
}

/* =======================================================
   07. UI 元件 (Buttons, Feature Box, Timeline, Mega Menu)
======================================================= */
/* Mega Menu */
.mega-menu-custom {
  padding: 1rem;
  margin: 0 auto;
  width: 100%;
}

.mega-menu-custom h5 a {
  color: #323232;
  margin-top: 0;
}

.mega-menu-custom h5 a:hover,
.mega-menu-custom li a:hover {
  color: #e8ca8b;
}

.mega-menu-custom li a {
  color: #5d5d5d;
}

.mega-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 1rem;
}

.mega-menu__link {
  display: block;
  padding: 0.2rem 0;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 40em) {
  .mega-menu-custom {
    display: flex;
    flex-flow: row wrap;
  }

  .mega-menu__block {
    margin: 0 1rem 0 0;
  }

  .mega-menu__list {
    column-count: 1;
    column-gap: 10px;
    margin-bottom: 0;
  }

  .mega-menu__list--multi-column {
    column-count: 3;
  }

  .mega-menu__link {
    display: inline-block;
    margin: 0 2.5rem 0 0;
  }
}

/* 按鈕樣式 */
.click-btn {
  display: flex;
  width: 100%;
  height: 50px;
  justify-content: center;
  align-items: center;
  margin: 0rem;
  line-height: 35px;
  border: 1px solid;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  transition: all 0.35s;
  box-sizing: border-box;
}

.btn-style904 {
  position: relative;
  background-color: #dcbb72;
  border-color: #dcbb72;
  color: #fff;
  overflow: hidden;
}

.btn-style904 span {
  position: relative;
  left: -0.5em;
  transition: all 0.25s;
}

.btn-style904::before,
.btn-style904::after {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  padding-top: 6px;
  background-color: #b79c61;
  transition: all 0.25s;
  color: #fff;
}

.btn-style904::before {
  width: 25px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "FontAwesome";
  font-size: 10px;
  font-weight: bold;
  text-indent: 5px;
  border-radius: 50% 0 0 50%;
  z-index: 1;
}

.btn-style904::after {
  width: 100%;
  transform: translate(100%, 0);
  content: attr(data-hover);
  text-align: left;
  text-indent: 8px;
}

.btn-style904:hover {
  border-color: #b79c61;
}

.btn-style904:hover span {
  left: -100%;
}

.btn-style904:hover::before,
.btn-style904:hover::after {
  right: 80%;
}

/* 特色方塊 (Feature Box) */
.feature-box.media-box.fbox-bg {
  transform: scale(1);
  box-shadow: 0 1px 1px 0 rgba(10, 16, 34, 0.2);
  transition: all 200ms ease;
  border-radius: 5px;
}

.feature-box.media-box.fbox-bg:hover {
  box-shadow: 0 10px 30px -5px rgba(10, 16, 34, 0.2);
  transform: scale(1.05);
}

.feature-box h3 {
  font-size: 17px;
}

.feature-box h3 span.subtitle {
  font-size: 14px;
}

/* 時間軸 (Timeline) */
.timeline {
  list-style: none;
}

.timeline>li {
  margin-bottom: 60px;
}

@media (min-width: 640px) {
  .timeline>li {
    overflow: hidden;
    margin: 0;
    position: relative;
  }

  .timeline-date {
    width: 110px;
    float: left;
    margin-top: 20px;
  }

  .timeline-content {
    width: 75%;
    float: left;
    border-left: 3px #e5e5d1 solid;
    padding-left: 30px;
  }

  .timeline-content:before {
    content: "";
    width: 12px;
    height: 12px;
    background: #dbb76f;
    position: absolute;
    left: 106px;
    top: 24px;
    border-radius: 100%;
  }
}

/* Footer Icons */
.footericon li {
  list-style: none;
  display: inline;
  margin-right: 5px;
}

/* =======================================================
   08. 表單與輸入框 (Forms, Validation & Inputs)
======================================================= */
/* 唯讀狀態 */
input[readonly],
textarea[readonly] {
  color: black !important;
  cursor: default;
  background-color: threedface !important;
}

/* Captcha */
.outcaptcha .incaptcha,
.outcaptcha button {
  position: relative;
}

.outcaptcha .incaptcha img,
.outcaptcha button {
  position: absolute;
  bottom: 0;
}

/* 密碼顯示切換 */
.input-block {
  position: relative;
}

.input-block .password-show {
  position: absolute;
  top: 40px;
  right: 20px;
  cursor: pointer;
  color: #333;
  z-index: 99999;
}

.input-block .password-show.active {
  color: #e7302a;
}

/* 表單錯誤驗證 (Validation) */
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}

.has-error .form-control {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}

.has-error .form-control-feedback {
  color: #a94442;
}

/* 購買數量增減框 */
.purchasenumber {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.purchasenumber .number input {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  text-align: center;
  border: 1px solid #efefef;
  color: #323232;
}

/* =======================================================
   09. Email 訂單信件覆蓋樣式 (Email Template Overrides)
======================================================= */
.pc-gmail-fix {
  display: none !important;
}

.body .pc-project-body {
  background-color: transparent !important;
}

@media (min-width: 621px) {
  .pc-lg-hide {
    display: none;
  }

  .pc-lg-bg-img-hide {
    background-image: none !important;
  }
}

@media (max-width: 620px) {
  .pc-project-body {
    min-width: 0px !important;
  }

  .pc-project-container {
    width: 100% !important;
  }

  .pc-sm-hide {
    display: none !important;
  }

  .pc-sm-bg-img-hide {
    background-image: none !important;
  }

  /* Spacing & Utilities */
  .pc-w620-itemsSpacings-0-20 {
    padding: 10px 0 !important;
  }

  .pc-w620-itemsSpacings-0-30 {
    padding: 15px 0 !important;
  }

  .pc-w620-itemsSpacings-0-16 {
    padding: 8px 0 !important;
  }

  .pc-w620-itemsSpacings-0-4 {
    padding: 2px 0 !important;
  }

  .pc-w620-itemsSpacings-6-0 {
    padding: 0 3px !important;
  }

  .pc-w620-itemsSpacings-0-0 {
    padding: 0 !important;
  }

  table.pc-w620-spacing-0-0-24-0 {
    margin: 0 0 5px 0 !important;
  }

  td.pc-w620-spacing-0-0-24-0,
  th.pc-w620-spacing-0-0-24-0 {
    padding: 0 0 5px 0 !important;
    margin: 0 !important;
  }

  table.pc-w620-spacing-0-0-0-0 {
    margin: 0 !important;
  }

  td.pc-w620-spacing-0-0-0-0,
  th.pc-w620-spacing-0-0-0-0 {
    padding: 0 !important;
    margin: 0 !important;
  }

  table.pc-w620-spacing-0-0-34-0 {
    margin: 0 0 34px 0 !important;
  }

  td.pc-w620-spacing-0-0-34-0,
  th.pc-w620-spacing-0-0-34-0 {
    padding: 0 0 34px 0 !important;
    margin: 0 !important;
  }

  table.pc-w620-spacing-0-0-20-0 {
    margin: 0 0 20px 0 !important;
  }

  td.pc-w620-spacing-0-0-20-0,
  th.pc-w620-spacing-0-0-20-0 {
    padding: 0 0 20px 0 !important;
    margin: 0 !important;
  }

  table.pc-w620-spacing-0-16-20-0 {
    margin: 0 16px 20px 0 !important;
  }

  td.pc-w620-spacing-0-16-20-0,
  th.pc-w620-spacing-0-16-20-0 {
    padding: 0 16px 20px 0 !important;
    margin: 0 !important;
  }

  table.pc-w620-spacing-0-0-14-0 {
    margin: 0 0 14px 0 !important;
  }

  td.pc-w620-spacing-0-0-14-0,
  th.pc-w620-spacing-0-0-14-0 {
    padding: 0 0 14px 0 !important;
    margin: 0 !important;
  }

  table.pc-w620-spacing-10-0-0-0 {
    margin: 10px 0 0 0 !important;
  }

  td.pc-w620-spacing-10-0-0-0,
  th.pc-w620-spacing-10-0-0-0 {
    padding: 10px 0 0 0 !important;
    margin: 0 !important;
  }

  /* Padding */
  .pc-w620-padding-0-0-0-0 {
    padding: 0 !important;
  }

  .pc-w620-padding-40-24-40-24 {
    padding: 40px 24px !important;
  }

  .pc-w620-padding-24-0-0-0 {
    padding: 24px 0 0 0 !important;
  }

  .pc-w620-padding-0-6-0-6 {
    padding: 0 6px !important;
  }

  .pc-w620-padding-30-0-30-0 {
    padding: 30px 0 !important;
  }

  .pc-w620-padding-28-32-24-16 {
    padding: 28px 32px 24px 16px !important;
  }

  .pc-w620-padding-18-32-24-16 {
    padding: 18px 32px 24px 16px !important;
  }

  .pc-w620-padding-32-24-32-24 {
    padding: 32px 24px !important;
  }

  .pc-w620-padding-16-24-16-24 {
    padding: 16px 24px !important;
  }

  .pc-w620-padding-32-0-4-0 {
    padding: 32px 0 4px 0 !important;
  }

  .pc-w620-padding-12-12-12-12 {
    padding: 12px !important;
  }

  .pc-w620-padding-24-24-24-24 {
    padding: 24px !important;
  }

  /* Alignment */
  .pc-w620-valign-middle {
    vertical-align: middle !important;
  }

  td.pc-w620-halign-center,
  th.pc-w620-halign-center {
    text-align: center !important;
  }

  table.pc-w620-halign-center,
  img.pc-w620-halign-center {
    float: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  div.pc-w620-align-center,
  th.pc-w620-align-center,
  a.pc-w620-align-center,
  td.pc-w620-align-center {
    text-align: center !important;
    text-align-last: center !important;
  }

  table.pc-w620-align-center,
  img.pc-w620-align-center {
    float: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  td.pc-w620-halign-left,
  th.pc-w620-halign-left {
    text-align: left !important;
  }

  table.pc-w620-halign-left,
  img.pc-w620-halign-left,
  table.pc-w620-textAlign-left,
  img.pc-w620-textAlign-left {
    float: none !important;
    margin-right: auto !important;
    margin-left: 0 !important;
  }

  div.pc-w620-textAlign-left,
  th.pc-w620-textAlign-left,
  a.pc-w620-textAlign-left,
  td.pc-w620-textAlign-left {
    text-align: left !important;
    text-align-last: left !important;
  }

  td.pc-w620-halign-right,
  th.pc-w620-halign-right {
    text-align: right !important;
  }

  table.pc-w620-halign-right,
  img.pc-w620-halign-right,
  table.pc-w620-align-right,
  img.pc-w620-align-right {
    float: none !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  div.pc-w620-align-right,
  th.pc-w620-align-right,
  a.pc-w620-align-right,
  td.pc-w620-align-right {
    text-align: right !important;
    text-align-last: right !important;
  }

  /* Dimensions */
  .pc-w620-width-136 {
    width: 136px !important;
  }

  .pc-w620-width-200 {
    width: 200px !important;
  }

  .pc-w620-width-38 {
    width: 38px !important;
  }

  .pc-w620-width-60 {
    width: 60px !important;
  }

  .pc-w620-width-64 {
    width: 64px !important;
  }

  .pc-w620-width-auto {
    width: auto !important;
  }

  .pc-w620-width-fill {
    width: 100% !important;
  }

  .pc-w620-height-auto {
    height: auto !important;
  }

  .pc-w620-height-2 {
    height: 2px !important;
  }

  .pc-w620-height-64 {
    height: 64px !important;
  }

  /* Typography */
  .pc-w620-fontSize-40px {
    font-size: 40px !important;
  }

  .pc-w620-fontSize-24px {
    font-size: 24px !important;
  }

  .pc-w620-fontSize-16px,
  .pc-w620-fontSize-16 {
    font-size: 16px !important;
  }

  .pc-w620-fontSize-14px {
    font-size: 14px !important;
  }

  .pc-w620-lineHeight-40 {
    line-height: 40px !important;
  }

  .pc-w620-lineHeight-28 {
    line-height: 28px !important;
  }

  .pc-w620-lineHeight-26 {
    line-height: 26px !important;
  }

  .pc-w620-lineHeight-20 {
    line-height: 20px !important;
  }

  .pc-w620-lineHeight-140pc {
    line-height: 140% !important;
  }

  /* Radiuses */
  .pc-w620-radius-10-10-10-10 {
    border-radius: 10px !important;
  }

  /* Grid Collapsing */
  .pc-w620-view-vertical,
  .pc-w620-view-vertical>tbody,
  .pc-w620-view-vertical>tbody>tr,
  .pc-w620-view-vertical>tbody>tr>th,
  .pc-w620-view-vertical>tr,
  .pc-w620-view-vertical>tr>th {
    display: inline-block;
    width: 100% !important;
  }

  .pc-w620-gridCollapsed-1>tbody,
  .pc-w620-gridCollapsed-1>tbody>tr,
  .pc-w620-gridCollapsed-1>tr {
    display: inline-block !important;
  }

  .pc-w620-gridCollapsed-1.pc-width-fill>tbody,
  .pc-w620-gridCollapsed-1.pc-width-fill>tbody>tr,
  .pc-w620-gridCollapsed-1.pc-width-fill>tr,
  .pc-w620-gridCollapsed-1.pc-w620-width-fill>tbody,
  .pc-w620-gridCollapsed-1.pc-w620-width-fill>tbody>tr,
  .pc-w620-gridCollapsed-1.pc-w620-width-fill>tr {
    width: 100% !important;
  }

  .pc-w620-gridCollapsed-1>tbody>tr>td,
  .pc-w620-gridCollapsed-1>tr>td {
    display: block !important;
    width: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
  }

  .pc-w620-gridCollapsed-1.pc-width-fill>tbody>tr>td,
  .pc-w620-gridCollapsed-1.pc-width-fill>tr>td,
  .pc-w620-gridCollapsed-1.pc-w620-width-fill>tbody>tr>td,
  .pc-w620-gridCollapsed-1.pc-w620-width-fill>tr>td {
    width: 100% !important;
  }

  .pc-w620-gridCollapsed-1>tbody>.pc-grid-tr-first>.pc-grid-td-first,
  .pc-w620-gridCollapsed-1>.pc-grid-tr-first>.pc-grid-td-first,
  .pc-w620-gridCollapsed-0>tbody>.pc-grid-tr-first>td,
  .pc-w620-gridCollapsed-0>.pc-grid-tr-first>td {
    padding-top: 0 !important;
  }

  .pc-w620-gridCollapsed-1>tbody>.pc-grid-tr-last>.pc-grid-td-last,
  .pc-w620-gridCollapsed-1>.pc-grid-tr-last>.pc-grid-td-last,
  .pc-w620-gridCollapsed-0>tbody>.pc-grid-tr-last>td,
  .pc-w620-gridCollapsed-0>.pc-grid-tr-last>td {
    padding-bottom: 0 !important;
  }

  .pc-w620-gridCollapsed-0>tbody>tr>.pc-grid-td-first,
  .pc-w620-gridCollapsed-0>tr>.pc-grid-td-first {
    padding-left: 0 !important;
  }

  .pc-w620-gridCollapsed-0>tbody>tr>.pc-grid-td-last,
  .pc-w620-gridCollapsed-0>tr>.pc-grid-td-last {
    padding-right: 0 !important;
  }

  /* Table Collapsing */
  .pc-w620-tableCollapsed-1>tbody,
  .pc-w620-tableCollapsed-1>tbody>tr,
  .pc-w620-tableCollapsed-1>tr {
    display: block !important;
  }

  .pc-w620-tableCollapsed-1.pc-width-fill>tbody,
  .pc-w620-tableCollapsed-1.pc-width-fill>tbody>tr,
  .pc-w620-tableCollapsed-1.pc-width-fill>tr,
  .pc-w620-tableCollapsed-1.pc-w620-width-fill>tbody,
  .pc-w620-tableCollapsed-1.pc-w620-width-fill>tbody>tr,
  .pc-w620-tableCollapsed-1.pc-w620-width-fill>tr {
    width: 100% !important;
  }

  .pc-w620-tableCollapsed-1>tbody>tr>td,
  .pc-w620-tableCollapsed-1>tr>td {
    display: block !important;
    width: auto !important;
  }

  .pc-w620-tableCollapsed-1.pc-width-fill>tbody>tr>td,
  .pc-w620-tableCollapsed-1.pc-width-fill>tr>td,
  .pc-w620-tableCollapsed-1.pc-w620-width-fill>tbody>tr>td,
  .pc-w620-tableCollapsed-1.pc-w620-width-fill>tr>td {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}


/* =======================================================
   Archive (舊的備用程式碼 / 註解保留區)
======================================================= */
/* .shape-gray { width: 208px; height: 208px; filter: grayscale(100%); }
.shape-gray img { width: 100%; height: 100%; object-fit: contain; }

.m-top { padding: 15px; margin: 20px 0; border: 1px solid #eee; border-left-width: 5px; border-radius: 3px; border-left-color: #f0ad4e; }
.m-tip { user-select: none; border: 4px solid #ccc; color: #999; opacity: 0.8; margin: 160px auto; border-radius: 4px; width: 60%; padding: 40px 0; text-align: center; font-size: 16px; }
.m-sidebar { position: fixed; top: 0; right: 0; background: #000; z-index: 2000; width: 35px; height: 100%; font-size: 12px; color: #fff; }
.u-flyer { display: block; width: 50px; height: 50px; border-radius: 50px; position: fixed; z-index: 9999; }
#msg { position: fixed; top: 300px; right: 35px; z-index: 10000; width: 1px; height: 52px; line-height: 52px; font-size: 20px; text-align: center; color: #fff; background: #360; display: none; }
*/