*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 12px;

	background-color: #f9f9f9;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
}

/* Tabs container */


.b-title {

    max-width: 1140px;
    margin: auto;
    margin-top: 70px;
width: 100%;
    padding: 0 20px;
}
.b-bu {

    max-width: 1140px;
    margin: auto;
 
width: 100%;
    padding: 0 20px;
}
.b-title ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 8px;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 0px;
    unicode-bidi: isolate;
}

.b-title ul li {
    display: inline-block;
    margin: 0;
    list-style: none;
    font-size: clamp(20px, 4vw, 30px);
color: #b3a482;
   margin-right: 20px;
}
.b-title ul li a{
    font-size: clamp(16px, 3.2vw, 25px);
color: #a59d8c;

    text-decoration: underline;
}
.r-tabs {
position: relative;
    background-color: #b3a482;
    border-top: 1px solid #b3a482;
    border-right: 1px solid #b3a482;
    border-left: 1px solid #b3a482;
    border-bottom: 1px solid #b3a482;
    border-radius: 1px;
    max-width: 1200px;
    margin: auto;
    margin-top: 20px;
width: 100%;
}



/* Floating pin labels over hero image */
.pic--pins {
	position: relative;
}
.pic-pin {
	position: absolute;
	transform: translate(-50%, -50%);
	background-color: #a99a76;
	color: #fff;
	padding: 8px 18px;
	border-radius: 999px;
	font-size: clamp(11px, 1.4vw, 14px);
	font-weight: bold;
	white-space: nowrap;
	text-decoration: none;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
	transition: background-color 0.2s ease;
}
.pic-pin:hover,
.pic-pin:focus-visible {
	background-color: #8a7c58;
}

/* 相關產品：三欄系統比較卡片 */
.system-compare {
	display: flex;
	border: 1px solid #e4e1da;
	background-color: #faf9f7;
	margin-top: 6px;
}
.system-compare__col {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	padding: 22px 18px;
	border-right: 1px solid #e4e1da;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.system-compare__col:last-child {
	border-right: none;
}
.system-compare__watermark {
	position: absolute;
	top: -6px;
	right: -4px;
	font-size: 64px;
	font-weight: 900;
	line-height: 1;
	color: rgba(74, 71, 62, 0.06);
	writing-mode: vertical-rl;
	pointer-events: none;
	user-select: none;
}
.system-compare__icon {
	width: 26px;
	height: 26px;
	margin-bottom: 34px;
	border: 1px solid #726e63;
}
.system-compare__icon--dashed {
	border-style: dashed;
}
.system-compare__icon--dots {
	border: none;
	background-image: radial-gradient(#726e63 1.5px, transparent 1.5px);
	background-size: 6px 6px;
	background-position: 0 0;
	width: 30px;
}
.system-compare__title {
	font-weight: bold;
	color: #4a473e;
	font-size: 14px;
	margin-bottom: 8px;
}
.system-compare__desc {
	font-size: 12px;
	line-height: 1.7;
	color: #726e63;
}

/* pic */
.tab {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 24px;
    height: auto;
    padding: 20px;
}
/* jquery.responsiveTabs.js 切換分頁時用 .show()/.hide()，
   會在「目前作用中」的那個分頁上直接寫入 inline style
   "display: block"，其優先權比一般 class 選擇器高，
   會把上面的 flex 版面蓋掉，導致圖片跟文字變成上下堆疊。
   這裡只針對「作用中」(r-tabs-state-active) 的分頁強制蓋回 flex，
   避免影響其他分頁原本該被隱藏 (display: none) 的狀態。 */
.tab.r-tabs-panel.r-tabs-state-active {
    display: flex !important;
}
.pic {
    flex: 1 1 380px;
    max-width: 500px;
}
.pic img {
    width: 100%;
    height: auto;
    display: block;
}
.text {
    flex: 1 1 380px;
    width: auto;
    max-height: 500px;
    margin: 0;
    overflow-y: auto;
}
.text h2 {
    font-size: clamp(20px, 3vw, 26px);
    margin-bottom: 10px;
}
.text h3 {
    font-size: clamp(14px, 2.2vw, 17px);
    line-height: 1.5;
    margin: 14px 0 8px;
}
.text ol {
    padding-left: 20px;
}
.text ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}
/* pic */
/* Tab element */
.r-tabs .r-tabs-nav .r-tabs-tab {
	position: relative;
	background-color: #b3a482;
}

/* Tab anchor */
.r-tabs .r-tabs-nav .r-tabs-anchor {
	display: inline-block;
	padding: 10px 12px;

	text-decoration: none;
	text-shadow: 0 1px rgba(0, 0, 0, 0.4);
	font-size: 14px;
	font-weight: bold;
	color: #fff;
}

/* Disabled tab */
.r-tabs .r-tabs-nav .r-tabs-state-disabled {
	opacity: 0.5;
}

/* Active state tab anchor */
.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
	color: #b3a482;
	text-shadow: none;

	background-color: white;

	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
}

/* Tab panel */
.r-tabs .r-tabs-panel {
	background-color: white;

	border-bottom: 4px solid white;

	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;

}

/* Accordion anchor */
.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
	display: block;
	padding: 10px;

	background-color: #b3a482;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	text-shadow: 0 1px rgba(0, 0, 0, 0.4);
	font-size: 14px;

	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
}

/* Active accordion anchor */
.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
	background-color: #fff;
	color: #b3a482;
	text-shadow: none;
}

/* Disabled accordion button */
.r-tabs .r-tabs-accordion-title.r-tabs-state-disabled {
	opacity: 0.5;
}

/* Buttons */
button {
	display:inline-block;
	margin-top: 10px;
	margin-right: 10px;
	padding: 10px 20px;
	line-height: 100%;

	color: #fff;
	font-size: 14px;
	text-align: center;
	text-shadow: 0 1px rgba(0, 0, 0, 0.3);
	vertical-align: middle;
	font-weight: bold;
	
	border: 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #b3a482;
	box-shadow: 0px 0px 0px 0px #00ab94;
	    border-radius: 50px;
	cursor: pointer;
}

/* Info bar */
.info {
	display:inline-block;
	margin-top: 10px;
	margin-right: 10px;
	padding: 10px 20px;
	width: 300px;
	line-height: 100%;

	font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
	font-size: 14px;
	color: #b3a482;
	border: 2px solid #00ab94;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #fff;

	cursor: pointer;
} 


.b-bu {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.b01,
.b02,
.b03 {
    position: static;
}

/* ============================
   RWD
   768px 與 responsive-tabs.css
   切換手風琴選單的斷點一致
   ============================ */
@media only screen and (max-width: 768px) {
	.b-title {
		margin-top: 40px;
	}

	.tab {
		flex-direction: column;
		padding: 15px;
		gap: 16px;
	}

	.pic,
	.text {
		flex: 1 1 auto;
		max-width: 100%;
		width: 100%;
	}

	.text {
		max-height: none;
		overflow-y: visible;
	}

	.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
		font-size: 15px;
		padding: 12px 14px;
	}

	.b-bu {
		justify-content: center;
	}

	button {
		flex: 1 1 auto;
		min-width: 120px;
	}

	.system-compare {
		flex-direction: column;
	}
	.system-compare__col {
		border-right: none;
		border-bottom: 1px solid #e4e1da;
	}
	.system-compare__col:last-child {
		border-bottom: none;
	}
	.system-compare__watermark {
		font-size: 48px;
	}
}

@media only screen and (max-width: 480px) {
	.b-title {
		margin-top: 28px;
	}

	.b-title ul li {
		margin-right: 12px;
	}

	.tab {
		padding: 12px;
	}

	.text h2 {
		font-size: 19px;
	}

	.text h3 {
		font-size: 14px;
	}

	.b-bu {
		flex-direction: column;
	}

	button {
		width: 100%;
		margin-right: 0;
	}
}


































:root {
    --ink: #4a473e;
    --title: #a3925f;
    --title-hover: #786a3f;
    --desc: #726e63;
    --line: #e4e1da;
    --tint: rgba(163, 146, 95, 0.06);
  }

  * {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    padding: 40px 20px;
    background: #fff;
    font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei",
      -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
  }

  .product-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 900px;
    border-top: 1px solid var(--line);
  }

  .product-item {
    border-bottom: 1px solid var(--line);
  }

  .product-item__link {
    display: flex;
    align-items: flex-start;
    gap: clamp(16px, 3vw, 28px);
    padding: clamp(16px, 3vw, 26px) clamp(4px, 1.5vw, 12px);
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease;
  }

  .product-item__link:hover,
  .product-item__link:focus-visible {
    background-color: var(--tint);
  }

  .product-item__link:focus-visible {
    outline: 2px solid var(--title);
    outline-offset: -2px;
  }

  .product-item__thumb {
    flex: 0 0 clamp(56px, 12vw, 96px);
    width: clamp(56px, 12vw, 96px);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .product-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .product-item__link:hover .product-item__thumb img,
  .product-item__link:focus-visible .product-item__thumb img {
    transform: scale(1.1);
  }

  .product-item__divider {
    flex: 0 0 1px;
    align-self: stretch;
    background: var(--line);
  }

  .product-item__body {
    flex: 1 1 auto;
    min-width: 0;
    padding-top: 2px;
    transition: transform 0.35s ease;
  }

  .product-item__link:hover .product-item__body,
  .product-item__link:focus-visible .product-item__body {
    transform: translateX(6px);
  }

  .product-item__title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(16px, 2.2vw, 20px);
    font-weight: 700;
    color: var(--title);
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
    transition: color 0.3s ease;
  }

  .product-item__link:hover .product-item__title,
  .product-item__link:focus-visible .product-item__title {
    color: var(--title-hover);
    text-decoration-thickness: 2px;
  }

  .product-item__arrow {
    display: inline-block;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .product-item__link:hover .product-item__arrow,
  .product-item__link:focus-visible .product-item__arrow {
    opacity: 1;
    transform: translateX(0);
  }

  .product-item__desc {
    display: block;
    margin-top: 8px;
    font-size: clamp(13px, 1.6vw, 15px);
    line-height: 1.75;
    color: var(--desc);
  }

  @media (max-width: 480px) {
    .product-item__divider {
      display: none;
    }

    .product-item__link {
      gap: 14px;
    }

    .product-item__title {
      font-size: 15px;
    }

    .product-item__desc {
      font-size: 13px;
      line-height: 1.65;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .product-item__link,
    .product-item__thumb img,
    .product-item__body,
    .product-item__title,
    .product-item__arrow {
      transition: none;
    }
  }


.pic-pin2 {
background-color: #a99a76;
    color: #fff;
    padding: 8px 18px;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease;
    width: 100%;
    display: block;
    text-align: center;
}
