@charset "UTF-8";
/* =========================================================================

==base
==header
==banner
==quick link
==news
==footer
==breadcrumb + pagination
==privacy
==invest
==team
==faq
==link
==download
==search result
==RWD

========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+TC:wght@100..900&display=swap');

/* =========================================================================
==base
========================================================================= */
:root {
	--fs-BNTitle: 48px;
	--fs-BNTxt: 20px;
	--fs-sectionTitleEn: 48px;
	--fs-sectionTitle: 36px;
	--fs-infoTitle: 24px;
	--fs-sidebarTitle: 26px;
	--fs-itemTitle: 20px;
	--fs-footerTitle: 20px;
	--fs-headerNav: 20px;
	--fs-normal: 16px;
	--fs-small: 14px;

	--section: 80px;
	--header-height: 62px;
	--cnvs-slider-caption-width: 780px;

	--cnvs-themecolor: #6B4C3B;
	--cnvs-themecolor-rgb: 107, 76, 59;
	--cnvs-sub: #A27E63;
	--cnvs-point: #C89B7B;
	--cnvs-bglight: #F6F4F2;
	--cnvs-border: #DADADA
}

/* ================= wow 初始隱藏 ================= */
.wow {
	visibility: hidden;
}

/* CKEditor 編輯區不會跑 WOW.js；避免 .wow、animate 類造成區塊隱藏或透明度為 0 */
body.cke_editable .wow,
.cke_editable .wow {
	visibility: visible !important;
	opacity: 1 !important;
	-webkit-animation: none !important;
	animation: none !important;
	-webkit-transform: none !important;
	transform: none !important;
}

/* 只有在頁面重整且不在頂部時，才強制顯示 header */
body.page-reloaded #header-wrap .wow {
	visibility: visible !important;
	opacity: 1;
}

/* ================= base ================= */
body,
.form-control {
	word-break: break-word;
	letter-spacing: 1px;
	line-height: 1.75;
	font-weight: 400;
	font-family: "Noto Sans TC", sans-serif;
	color: var(--cnvs-black);
	font-size: var(--fs-normal);
}

.form-control::placeholder {
	color: var(--cnvs-contrast-600);
}

p:last-child,
ul:last-child,
ol:last-child,
li:last-child,
form:last-child,
.form-control:last-child {
	margin-bottom: 0;
}

a {
	color: var(--cnvs-black);
	transition: .3s ease;
}

a:hover {
	color: var(--cnvs-point);
}

button {
	transition: .3s ease;
}

/* ================= ellipsis ================= */
.one-row { 
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.two-row { 
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.three-row { 
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

/* ==================== btn ==================== */
.btn-base {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--cnvs-white);
	background-color: var(--cnvs-point);
	font-weight: 400;
	padding: 16px 56px;
	border-radius: 6px 50px 50px 6px;
	transition: .3s ease;
}

.btn-base:hover {
	color: var(--cnvs-white);
	background-color: var(--cnvs-sub);
}

.btn-back {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--cnvs-themecolor);
	font-weight: 400;
	padding: 8px 36px;
	border: 1px solid var(--cnvs-themecolor);
	border-radius: 50px;
	transition: .3s ease;
}

.btn-back:hover {
	background-color: var(--cnvs-point);
	border-color: var(--cnvs-point);
	color: var(--cnvs-white);
}

/* ==================== title ==================== */
.section-title {
	color: var(--cnvs-black);
	line-height: 1.5;
	margin-bottom: 48px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.section-title::after {
	content: '';
	display: block;
	width: 50px;
	height: 2px;
	background-color: var(--cnvs-sub);
	margin-top: 16px;
}

.section-title .ch {
	font-size: var(--fs-sectionTitle);
	font-weight: 700;
}

.section-title .en {
	color: rgba(162, 126, 99, 0.40);
	font-family: Inter;
	font-size: var(--fs-sectionTitleEn);
	font-weight: 900;
	line-height: 1;
}

.item-title,
.item-title a {
	font-size: var(--fs-itemTitle);
	color: var(--cnvs-black);
	line-height: 1.5;
	font-weight: 500;
}

.item-title a:hover,
.item-title a:active {
	color: var(--cnvs-sub);
}

.footer-title {
	color: #C2A38E;
	font-size: var(--fs-footerTitle);
	font-weight: 600;
	line-height: 1.5;
	padding-bottom: 16px;
	border-bottom: 1px solid #C2A38E;
}

.sidebar-title {
	font-size: var(--fs-sidebarTitle);
	line-height: 1.5;
	font-weight: 600;
	color: var(--cnvs-themecolor);
	border-bottom: 1px solid var(--cnvs-point);
	padding-bottom: 8px;
	margin-bottom: 24px;
}

.info-title {
	font-size: var(--fs-infoTitle);
}

/* ==================== other ==================== */
.section {
	background-color: transparent;
	padding: var(--section) 0;
	margin: 0;
}

.fs-small {
	font-size: var(--fs-small);
}

.fs-18 {
	font-size: 18px;
}

.color-sub {
	color: var(--cnvs-sub) !important;
}

.font-inter {
	font-family: "Inter", sans-serif;
}

.h-color:hover,
.h-color:active {
	color: var(--cnvs-themecolor) !important;
}

.h-color-point:hover,
.h-color-point:active {
	color: var(--cnvs-point) !important;
}

.bg-sub {
	background-color: var(--cnvs-sub) !important;
}

.bg-bglight {
	background-color: var(--cnvs-bglight) !important;
}

/* =========================================================================
==header
========================================================================= */
.header-wrap-clone {
	height: var(--header-height);
}

.is-expanded-menu .sticky-header #header-wrap {
	background-color:transparent;
}

.is-expanded-menu .sticky-header #header-wrap > div {
	background-color: var(--cnvs-sub);
}

/* ==================== logo ==================== */
#logo {
	padding: 14px 0 16px;
}

.logo-default {
	width: 420px;
}

/* ==================== ham icon ==================== */
.cnvs-hamburger {
	--cnvs-hamburger-size: 22px;
	--cnvs-hamburger-offset: calc(-1 * calc(calc(var(--cnvs-hamburger-size) - calc(var(--cnvs-hamburger-width) * 2)) * .43));
}

.cnvs-hamburger .cnvs-hamburger-inner {
	background-color: var(--cnvs-themecolor);
}

/* ==================== top-icons ==================== */
.top-icons-wrap a {
	font-size: var(--fs-headerNav);
	max-width: 28px;
	overflow: hidden;
	white-space: nowrap;
	transition: 0.8s ease;
}

.top-icons-wrap a span {
	max-width: 0;
	opacity: 0;
	overflow: hidden;
	transition: 0.4s ease;
}

.top-icons-wrap a:hover {
	max-width: 300px;
	transition: 0.8s ease;
}

.top-icons-wrap a:hover span {
	max-width: 200px;
	opacity: 1;
	transition: 0.4s ease;
}

/* ==================== search ==================== */
.header-misc form {
	margin-left: 36px;
}

.search-input input {
	width: 230px;
	font-size: var(--fs-headerNav);
	border: 1px solid var(--cnvs-themecolor);
	background-color: var(--cnvs-bglight);
	padding-right: 60px;
}

.search-input button {
	font-size: 20px;
	color: var(--cnvs-themecolor);
}

.search-input button:hover,
.search-input button:active {
	color: var(--cnvs-point);
}

/* ==================== mobile search bar ==================== */
.mobile-search-bar {
	top: 100%;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.4s ease, opacity 0.3s ease;
}

.mobile-search-bar.active {
	max-height: 200px;
	opacity: 1;
	z-index: 2;
}

/* ==================== nav ==================== */
#header-wrap {
	background-color: transparent;
	border: 0;
}

#header-wrap > div {
	background-color: rgba(162, 126, 99, 0.80);

	animation-name: myAnimation;
  animation-duration: 1s;
}

@keyframes myAnimation {
  from {
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
	}
  to {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}
}

.menu-link {
	font-size: var(--fs-headerNav);
	font-weight: 400;
	line-height: 1.5;
	padding: 16px;
	color: var(--cnvs-white);
	transition: .3s ease !important;
}

.menu-item:hover > .menu-link {
	background-color: var(--cnvs-point);
	color: var(--cnvs-white);
}

.is-expanded-menu .menu-item.active > .menu-link {
	background-color: var(--cnvs-point);
	color: var(--cnvs-white);
}

.is-expanded-menu .sub-menu-container .menu-item > .menu-link {
	font-size: var(--fs-headerNav);
	font-weight: 400;
	line-height: 1.5;
}

/* =========================================================================
==banner
========================================================================= */
.without-header {
	margin-top: calc(var(--header-height) * -1);
}

#slider {
	aspect-ratio: 2000 / 750;
}

.slider-caption {
	margin-top: var(--header-height);
	height: calc(100% - var(--header-height));
}

.swiper-slide-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.45);
	width: 100%;
	height: 100%;
}

.banner-title {
	font-size: var(--fs-BNTitle);
	line-height: 1.35;
	font-weight: 600;
}

.banner-txt {
	font-size: var(--fs-BNTxt) !important;
}

/* ==================== arrow ==================== */
#slider [class*="slider-arrow-"] {
	background-color: rgba(200, 155, 123, 0.6);
	height: 80px;
	width: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: .3s ease;
}

#slider [class*="slider-arrow-"]:hover {
	background-color: var(--cnvs-point) !important;
}

#slider:hover [class*="slider-arrow-"] {
	opacity: 1;
}

#slider [class*="slider-arrow-"] i {
	font-size: 22px;
	height: auto;
	width: auto;
}

#slider .slider-arrow-left {
	border-radius: 0 8px 8px 0;
}

#slider .slider-arrow-right {
	border-radius: 8px 0 0 8px;
}

/* =========================================================================
==quick link
========================================================================= */
.quicklink-wrap {
	border-right: 1px solid var(--cnvs-white);
}

.quicklink-wrap .item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px;
	background-color: #A69182;
	border-left: 1px solid var(--cnvs-white);
}

.quicklink-wrap .owl-item:nth-child(even) .item {
	background-color: #8B796C;
}

.quicklink-wrap .item:hover {
	background-color: var(--cnvs-sub) !important;
}

.quicklink-wrap .item > div {
	transition: .3s ease;
}

.quicklink-wrap .item:hover > div {
	transform: translateY(-5px);
}

.quicklink-wrap .item img {
	width: 40px;
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

.quicklink-wrap .item .item-title {
	font-weight: 600;
}

/* ==================== owl-carousel ==================== */
.owl-carousel {
	--cnvs-owl-nav-sizes: 48px;
	--cnvs-owl-nav-bg: var(--cnvs-point);
}

.owl-carousel .owl-nav [class*=owl-] {
	color: var(--cnvs-white);
	background-color: var(--cnvs-themecolor);
	border: 2px solid var(--cnvs-white);
}

/* =========================================================================
==news
========================================================================= */
.section.index {
	padding: 90px 0 120px;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: auto 100%;
	z-index: 0;
}

.section.index::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(255,255,255,0.6) 15%, transparent 100%);
	z-index: -1;
}

/* ==================== index list ==================== */
.news-list-wrap {
	padding: 48px 60px;
	border-radius: 20px;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
}

.news-list-wrap .tabs-nav a {
	border-radius: 3px;
	border: 1px solid var(--cnvs-sub);
	color: var(--cnvs-sub);
	font-size: var(--fs-headerNav);
	line-height: 1.5;
	flex-shrink: 0;
}

.news-list-wrap .tabs-nav a:hover {
	color: var(--cnvs-white);
	background-color: var(--cnvs-sub);
}

.news-list-wrap .tabs-nav a.active {
	color: var(--cnvs-white);
	background-color: var(--cnvs-themecolor);
	border-color: var(--cnvs-themecolor);
}

/* ==================== tag ==================== */
.news-tag {
	display: inline-block;
	line-height: 1.3;
	padding: 8px 16px;
	font-size: var(--fs-small);
	color: var(--cnvs-white);
	background-color: var(--cnvs-point);
	border-radius: 20px;
}

.news-tag:hover {
	color: var(--cnvs-white);
	background-color: var(--cnvs-sub);
}

/* ==================== item ==================== */
.news-item {
	display: flex;
	align-items: center;
	gap: 24px;
	border-bottom: 1px solid var(--cnvs-border);
	transition: .3s ease;
}

.news-item:hover {
	background-color: rgba(200, 155, 123, 0.30) !important;
}

/* ==================== index list scroll ==================== */
#index-news .wrap {
  width: fit-content;
}

#index-news .wrap i {
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  padding: 5px 12px;
  cursor: pointer;
  color: var(--cnvs-themecolor);
  display: none;
}

#index-news .wrap .right-btn {
  right: -40px;
  left: auto;
}

#index-news .tabs-nav {
  overflow-x: scroll;
  flex-wrap: nowrap;
  user-select: none;
  scroll-behavior: smooth;
}

.tab-menu.dragging,
#index-news .tabs-nav.dragging {
  scroll-behavior: unset;
  cursor: grab;
}

#index-news .tabs-nav::-webkit-scrollbar {
  display: none;
}

/* ==================== list page ==================== */
.sidebar-wrap {
	background-color: var(--cnvs-bglight);
	margin-right: 22px;
	height: 100%;
	border-right: 1px solid var(--cnvs-border);
}

.sidebar-wrap > div {
	top: calc(var(--header-height) - var(--section) / 2);
}

.sidebar-menu li.active .toggle-header a {
	background-color: transparent !important;
}

.sidebar-menu li.active .toggle-header span {
	color: var(--cnvs-white);
}

.toggle-header {
	transition: .3s ease;
}

.sidebar-menu li a:hover,
.toggle-header:hover {
	background-color: var(--cnvs-point);
	color: var(--cnvs-white);
}

.sidebar-menu li.active a,
.sidebar-menu li.active .toggle-header {
	background-color: var(--cnvs-themecolor);
	color: var(--cnvs-white);
}

.sidebar-menu li .toggle-content a,
.sidebar-menu li.active .toggle-content a {
	background-color: transparent;
	color: var(--cnvs-black);
}

.sidebar-menu li .toggle-content a:hover span,
.sidebar-menu li .toggle-content li a:hover i,
.sidebar-menu li.active .toggle-content a:hover,
.sidebar-menu li.active .toggle-content a:hover span {
	color: var(--cnvs-themecolor);
}

.sidebar-menu li .toggle-header a:hover {
	background-color: transparent;
}

.toggle-header > * {
	transition: .3s ease;
}

.toggle-header:hover > *,
.sidebar-menu li.active .toggle-header:hover > * {
	color: var(--cnvs-white);
}

.sidebar-menu li.active a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 100%;
	width: 0;
	height: 0;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;
	border-left: 22px solid var(--cnvs-themecolor);
}

.sidebar-menu li.active .toggle-content a::after {
	display: none;
}

.sidebar-menu li.active span {
	color: var(--cnvs-white);
}

.sidebar-menu li.active .toggle-content span {
	color: var(--cnvs-black);
}

.sidebar-menu li.active .toggle-content li.active i,
.sidebar-menu li.active .toggle-content li.active span {
	color: var(--cnvs-sub);
}

.sidebar-menu span::before {
	content: '';
	flex-shrink: 0;
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: var(--cnvs-black);
	transition: .3s ease;
}

.sidebar-menu .toggle-content span::before {
	display: none;
}

.sidebar-menu li.active span::before,
.sidebar-menu li.active .toggle-header span::before,
.sidebar-menu li a:hover span::before {
	background-color: var(--cnvs-white);
}

.sidebar-menu li .toggle-header:hover a span::before {
	background-color: var(--cnvs-white);
}

.func-bar {
	padding: 10px 24px;
	background-color: rgb(162 126 99 / 40%);
}

.news-page-list .news-item:nth-child(even) {
	background-color: var(--cnvs-bglight);
}

.func-bar .search-input button {
	font-size: 18px;
}

.func-bar .search-input input {
	padding-right: 52px;
}

/* ==================== info page ==================== */
.info-tag {
	padding-left: calc(16px + 6px);
}

.info-tag::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--cnvs-themecolor);
}

.share-wrap ul {
	transform: translateY(2px);
}

.share-wrap li a {
	font-size: 24px;
}

.share-wrap li:last-child a {
	font-size: 18px;
}

.point-table table {
  width: 100%;
}

.point-table table thead {
  background-color: #907057;
}

.point-table table thead td {
  padding: 8px 24px;
  min-width: 82px;
}

.point-table table tbody td a,
.point-table table tbody td > div {
  padding: 12px 24px;
	display: block;
}

.point-table table thead td {
	color: var(--cnvs-white);
	font-weight: 500;
	text-align: center;
}

.point-table table thead td:first-child {
	text-align: left;
}

.point-table table tbody td[data-title="下載"] {
	width: 120px;
}

.point-table table tbody td {
  border-bottom: 1px solid rgba(var(--cnvs-themecolor-rgb), 0.5);
	text-align: center;
	padding: 0;
}

.point-table table tbody tr:nth-child(even) {
	background-color: var(--cnvs-bglight);
}

.point-table table tbody tr:hover {
  background-color: rgba(200, 155, 123, 0.30) !important;
}

.point-table table tbody td:first-child {
	text-align: left;
}

.point-table table tbody td[data-title="日期"] {
	white-space: nowrap;
}

.point-table table tbody td a i {
	color: var(--cnvs-sub);
}

/* =========================================================================
==footer
========================================================================= */
#footer ::selection {
	background-color: var(--cnvs-point);
	color: var(--cnvs-white);
}

#footer .copyright {
	background-color: #967863;
}

.footer-logo {
	width: 300px;
}

.footer-widgets-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 36px;
}

.footer-widgets-wrap > div:nth-child(1),
.footer-widgets-wrap > div:nth-child(2) {
	width: calc(100% / 3 - 36px);
}

.footer-widgets-wrap > div:nth-child(4) {
	flex-grow: 1;
	flex-shrink: 0;
}

.dark#footer .footer-widgets-wrap a {
	color: var(--cnvs-bglight);
}

.dark#footer .footer-widgets-wrap a:hover {
	color: var(--cnvs-point);
}

#gotoTop {
	--cnvs-gotoTop-size: 48px;
	line-height: calc(var(--cnvs-gotoTop-size) - 4px);
	border: 2px solid transparent;
}

#gotoTop:hover {
	background-color: var(--cnvs-sub);
	border-color: var(--cnvs-white);
}

/* =========================================================================
==breadcrumb + pagination
========================================================================= */
.breadcrumb-wrap {
	--breadcrumb-padding: 120px;
	padding: calc(var(--breadcrumb-padding) + var(--header-height)) 0 calc(var(--breadcrumb-padding) / 3);
}

.breadcrumb-title {
	font-size: var(--fs-sectionTitle);
	line-height: 1.5;
	font-weight: 600;
	letter-spacing: 1px;
	margin-right: 48px;
}

.php_breadcrumb li:not(:last-child)::after {
	content: "\f285";
	font-family: bootstrap-icons !important;
	line-height: 1;
	display: inline-block;
	margin: 0 12px;
	color: var(--cnvs-sub);
	transform: translateY(1px);
	font-size: var(--fs-small);
}

.breadcrumb-h1 {
	font-size: var(--cnvs-normal);
	font-weight: 400;
	color: var(--cnvs-themecolor);
	margin-bottom: 0;
}

/* ==================== pagination ==================== */
.pagination {
	gap: 2px;
}

.page-link {
	width: 40px;
	height: 40px;
	font-family: var(--ff-quicksand);
	padding: 0;
	margin: 4px;
	border-color: transparent;
	color: var(--cnvs-txt);
	white-space: nowrap;
}

.page-link:hover {
	background-color: var(--cnvs-themecolor);
}

.page-item.disabled .page-link {
	color: rgba(var(--cnvs-themecolor-rgb), 0.5);
	background-color: var(--cnvs-white);
	border-color: rgba(var(--cnvs-themecolor-rgb), 0.5) !important;
}

.page-item.active .page-link::before {
	content: '';
	width: 48px;
	height: 48px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid var(--cnvs-themecolor);
	border-radius: 50%;
}

.page-link.arrow {
	font-size: 22px;
	color: var(--cnvs-themecolor);
	background-color: var(--cnvs-white);
	border: 1px solid transparent;
}

.page-item.disabled .page-link {
	border-color: transparent !important;
}

.page-link.arrow:hover {
	color: var(--cnvs-themecolor);
	border-color: var(--cnvs-themecolor);
}

/* =========================================================================
==privacy
========================================================================= */
.privacy-wrap .fbox-icon i {
	line-height: 3.8rem;
}

/* =========================================================================
==invest
========================================================================= */
.invest_content-panel {
  position: relative;
  border: 2px solid var(--cnvs-border);
  /* padding: 16px 24px; */
  border-radius: 0 0 0 25px;
  word-break: break-word;
}

.invest_content-panel+.invest_content-panel {
  margin-top: 24px;
}

.invest_content-panel .panel-heading a {
  display: flex;
	align-items: flex-start;
  font-size: var(--fs-itemTitle);
  font-weight: 600;
  line-height: 1.5;
  position: relative;
	padding: 16px 24px;
}

.invest_content-panel .panel-heading a > div {
	transform: translateY(-2px);
}

.invest_content-panel .panel-heading a h3 {
	transition: .3s ease;
}

.invest_content-panel .panel-heading a:hover h3 {
	color: var(--cnvs-point);
}

/* .invest_content-panel .panel-heading a .unit {
  font-size: 15px;
  color: var(--bs-secondary);
} */

.invest_content-panel .panel-heading a[aria-expanded="false"] i:first-child {
  display: inline-block;
}

.invest_content-panel .panel-heading a[aria-expanded="true"] i:first-child {
  display: none;
}

.invest_content-panel .panel-heading a[aria-expanded="false"] i.fa-minus {
  display: none;
}

.invest_content-panel .panel-heading a[aria-expanded="true"] i.fa-minus {
  display: inline-block;
}

.invest_content-panel .invest_content .panel-body {
  position: relative;
  display: block;
  padding: 0 30px 16px;
}

/* .invest-scroll-section .point-table table tbody td {
  white-space: nowrap;
}

.invest-link:hover,
.invest-link:active {
  opacity: 0.75;
  color: var(--cnvs-link-color);
}

.invest-link i {
  font-size: 14px;
}

.table-long-data {
  text-align: left !important;
} */

.quote-content {
	padding: 0 0 0 24px;
	border-left: 4px solid var(--cnvs-sub);
}

.chapter-wrap li span:first-child {
	width: 70px;
}

/* =========================================================================
==team
========================================================================= */
.spe-content {
	background-color: rgba(200, 155, 123, 0.20);
	border-bottom: 3px solid var(--cnvs-sub);
	padding: 12px 24px;
	margin-bottom: 32px !important;
}

/* =========================================================================
==faq
========================================================================= */
.faq-wrap .toggle-active .toggle-closed {
	display: block;
	transform: rotate(45deg);
	opacity: 1;
}

.faq-wrap .toggle-header {
	background-color: var(--cnvs-bglight);
	padding: 16px 24px;
	border-left: 4px solid var(--cnvs-sub);
}

.faq-wrap .toggle-header:hover {
	background-color: rgba(200, 155, 123, 0.30) !important;
}

.faq-wrap .toggle-header:hover > * {
	color: var(--cnvs-black);
}

.faq-wrap .toggle-title .num {
	transform: translateY(1.5px);
}

/* =========================================================================
==link
========================================================================= */
.link-wrap .item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--cnvs-bglight);
	padding: 16px 24px;
	border-left: 4px solid var(--cnvs-sub);
}

.link-wrap .item:hover {
	background: rgba(200, 155, 123, 0.30);
}

.link-wrap .item i {
	color: var(--cnvs-sub);
}

/* =========================================================================
==download
========================================================================= */
.meeting-table table tbody tr:hover {
	background-color: var(--cnvs-white) !important;
}

.meeting-table table tbody tr:nth-child(even):hover {
	background-color: var(--cnvs-bglight) !important;
}

.meeting-table table tbody td a:hover {
	background-color: rgba(200, 155, 123, 0.30) !important;
}

/* =========================================================================
==search resultD
========================================================================= */
.search-resul-tabs a {
	border-radius: 3px;
	border: 1px solid var(--cnvs-sub);
	color: var(--cnvs-sub);
	font-size: var(--fs-headerNav);
	line-height: 1.5;
	flex-shrink: 0;
}

.search-resul-tabs a:hover {
	background-color: var(--cnvs-sub);
	color: var(--cnvs-white);
}

.search-resul-tabs a.active {
	background-color: var(--cnvs-themecolor);
	color: var(--cnvs-white);
	border-color: var(--cnvs-themecolor);
}

/* =========================================================================
==RWD
========================================================================= */
@media (max-width: 1399px) {
	:root {
		--fs-BNTitle: 44px;
		--fs-headerNav: 18px;

		--header-height: 60px;
	}

	.btn-base {
		padding: 16px 50px;
	}

	/* ==================== header ==================== */
	.logo-default {
		width: 360px;
	}

	.menu-link {
		padding: 16px 11px;
	}

	.menu-link img {
		width: 18px;
	}

	/* ==================== quick link ==================== */
	.quicklink-wrap .item {
		padding: 40px;
	}

	/* ==================== news ==================== */
	.news-list-wrap {
		padding: 48px;
	}
}

@media (max-width: 1199px) {
	:root {
		--fs-headerNav: 16px;
		--fs-itemTitle: 18px;
	}

	.btn-base {
		padding: 14px 44px;
	}

	.section-title {
		gap: 4px;
		margin-bottom: 36px;
	}

	/* ==================== header ==================== */	
	#header {
		position: sticky;
		top: 0;
		z-index: 100;
		border-bottom: 1px solid var(--cnvs-border);
	}

	.logo-default {
		width: 300px;
	}

	body:not(.is-expanded-menu) #header:not(.sticky-header) .mobile-menu-off-canvas .menu-container {
		background-color: var(--cnvs-sub);
	}

	body:not(.is-expanded-menu) #header:not(.sticky-header) .mobile-menu-off-canvas .menu-container::-webkit-scrollbar {
		display: none;
	}

	.menu-item:last-child {
		border-bottom: var(--cnvs-primary-menu-submenu-border);
	}

	.sub-menu-container .menu-item:last-child {
		border-bottom: 0;
	}

	.menu-item .sub-menu-trigger {
		margin-top: 1px;
		color: var(--cnvs-white);
	}

	.menu-link {
		padding: 12px;
		color: var(--cnvs-white);
	}

	.menu-item:hover > .menu-link {
		background-color: transparent;
	}

	.menu-item.active > .menu-link {
		background-color: var(--cnvs-point);
	}
	
	.menu-item.current > .menu-link {
		color: var(--cnvs-white);
		background-color: var(--cnvs-point);
	}

	.sub-menu-container .menu-item.current > .menu-link {
		background-color: transparent;
	}

	.sub-menu-container {
		padding-left: 32px;
	}

	.sub-menu-container .menu-item > .menu-link {
		font-size: var(--fs-headerNav);
		font-weight: 400;
		color: var(--cnvs-white);
	}

	.primary-menu .mobile-btn {
		gap: 12px;
	}

	.primary-menu .mobile-btn a {
		padding: 8px 12px;
	}

	.primary-menu .mobile-btn a:hover {
		background-color: var(--cnvs-point);
		border-color: var(--cnvs-point) !important;
	}

	/* ==================== banner ==================== */
	.without-header {
		margin-top: 0;
	}

	.slider-caption {
		margin-top: 0;
		height: 100%;
	}

	/* ==================== quick link ==================== */
	.quicklink-wrap {
		width: calc(100% - 48px);
		margin-left: calc(48px / 2);
	}

	.quicklink-wrap .item {
		height: 160px;
	}

	/* ==================== news ==================== */
	.section.index {
		padding: 60px 0 80px;
	}

	.sidebar-wrap > div {
    top: calc(var(--header-height) - var(--section) / 10);
	}

	/* ==================== footer ==================== */
	.footer-logo {
		width: 280px;
	}

	.footer-widgets-wrap > div:nth-child(1) {
		width: calc(100% / 3 - 36px);
		flex-grow: 1;
    flex-shrink: 0;
	}

	.footer-widgets-wrap > div:nth-child(4) {
		width: calc(100% / 3.5 - 36px);
	}

	/* ==================== breadcrumb + pagination ==================== */
	.breadcrumb-wrap {
    --breadcrumb-padding: 56px;
	}
}

@media (max-width: 991px) {
	.wow {
		animation-name: none !important;
		visibility: visible !important;
		opacity: 1;
	}

	:root {
		--fs-BNTitle: 40px;
		--fs-BNTxt: 18px;
		--fs-sectionTitleEn: 40px;
		--fs-sectionTitle: 32px;
		--fs-infoTitle: 22px;
		--fs-sidebarTitle: 22px;

		--section: 60px;
	}

	/* ==================== banner ==================== */
	#slider {
		display: none !important;
	}

	.banner-wrap-mobile {
		aspect-ratio: 12 / 10;
	}

	/* ==================== quick link ==================== */
	.owl-carousel {
    --cnvs-owl-nav-sizes: 42px;
	}

	.quicklink-wrap {
		width: calc(100% - var(--cnvs-owl-nav-sizes));
		margin-left: calc(var(--cnvs-owl-nav-sizes) / 2);
	}

	.quicklink-wrap .item {
		height: 150px;
		padding: 24px;
	}

	/* ==================== news ==================== */
	.news-list-wrap {
		padding: 48px 36px;
	}

	.news-item {
		gap: 16px;
	}

	.news-item:hover {
		background-color: transparent;
	}

	.sidebar-wrap {
		margin-right: 0;
		border: 0;
		background-color: transparent;
	}

	.sidebar-main {
		background-color: var(--cnvs-bglight);
		padding: 16px 0 12px;
		border-bottom: 3px solid var(--cnvs-themecolor);
	}

	.sidebar-menu li.active a::after {
		display: none;
	}

	.sidebar-wrap .section {
		padding-bottom: 0;
	}

	/* ===== sidebar 展開收合功能 ===== */
	.sidebar-title {
		cursor: pointer;
		user-select: none;
		margin-bottom: 0;
		border: 0;
		padding: 0 24px;
	}

	.sidebar-title i {
		transition: transform 0.3s ease;
	}

	.sidebar-title.active i {
		transform: rotate(180deg);
	}

	.sidebar-menu {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease;
	}

	.sidebar-menu:before {
		content: '';
		display: block;
		width: 100%;
		height: 12px;
		background-color: transparent;
	}

	.sidebar-menu.active {
		max-height: 1000px;
	}

	.sidebar-menu li a {
		padding-left: 30px;
		padding-right: 30px;
	}

	/* ==================== footer ==================== */
	.footer-widgets-wrap > div:nth-child(1) {
		width: 100%;
	}

	.footer-widgets-wrap > div:nth-child(2),
	.footer-widgets-wrap > div:nth-child(3) {
		width: calc(100% / 2 - 36px);
	}

	.copyright {
		font-size: var(--fs-small);
	}

	#gotoTop {
    --cnvs-gotoTop-size: 44px;
		--cnvs-gotoTop-position-boxed-right: 20px;
	}

	/* ==================== breadcrumb + pagination ==================== */
	.breadcrumb-wrap {
		--breadcrumb-padding: 36px;
	}

	.pagination {
		gap: 0px;
	}

	/* ==================== privacy ==================== */
	.privacy-wrap .feature-box {
		--cnvs-featured-box-icon: 3.5rem;
	}

	.privacy-wrap .fbox-icon i {
		font-size: 24px;
		line-height: 50px;
	}
}

@media (max-width: 767px) {
	/* ==================== header ==================== */
	#logo {
    padding: 10px 0 14px;
	}

	.logo-default {
		width: 260px;
	}

	/* ==================== news ==================== */
	.news-list-wrap {
		padding: 40px 30px;
	}
	
	.news-item {
		gap: 8px;
		align-items: flex-start;
	}

	.news-tag {
		padding: 4px 10px;
	}
	
	#index-news .wrap {
		width: fit-content;
		max-width: calc(100% - 56px);
		left: 28px;
		/* margin: auto; */
	}

	.sidebar-main {
		padding: 12px 0px 8px;
	}

	.sidebar-title {
		padding: 0 16px;
	}

	.sidebar-title img {
		width: 18px;
	}

	.func-bar {
    padding: 8px 16px;
	}

	.point-table table {
		border: 1px solid var(--cnvs-sub);	
	}

	.point-table .mobile-title {
		background-color: var(--cnvs-sub);
		color: var(--cnvs-white);
		padding: 8px 16px;
		font-weight: 500;
	}

	.point-table table thead {
    display: none;
  }

  .point-table table tr+tr {
    border-top: 3px solid var(--cnvs-themecolor);
  }

  .point-table table td {
    display: flex;
		justify-content: space-between;
		align-items: flex-start;
    text-align: right;
  }

	.point-table table tbody td a,
	.point-table table tbody td > div,
	.point-table table td:before {
    padding: 8px 16px;
		text-align: right;
	}

	.point-table table tbody td:last-child {
    text-align: right;
	}

  .point-table table td:before {
    content: attr(data-title) "： ";
		flex-shrink: 0;
		font-weight: 500;
		color: var(--cnvs-themecolor);
  }

	/* ==================== footer ==================== */
	.footer-widgets-wrap > div:nth-child(2),
	.footer-widgets-wrap > div:nth-child(3) {
		width: 100%;
	}

	/* ==================== breadcrumb + pagination ==================== */
	.breadcrumb-wrap {
		--breadcrumb-padding: 24px;
	}

	.page-link {
		width: 32px;
		height: 32px;
	}

	.page-item.active .page-link::before {
		width: 40px;
		height: 40px;
	}

	/* ==================== invest ==================== */
	.invest_content-panel .invest_content .panel-body {
		padding: 0 16px 16px;
	}

	.point-table table tbody td[data-title="下載"] {
		width: auto;
	}

	.invest_content-panel .point-table table thead td,
	.invest_content-panel .point-table table tbody td a {
		/* padding: 8px 4px 8px 24px; */
		text-align: right;
	}

	/* .invest_content-panel .point-table table td a,
	.invest_content-panel .point-table table td:before {
		padding: 8px 24px 8px 4px;
	} */

	.invest_content-panel+.invest_content-panel {
		margin-top: 16px;
	}

	.quote-content {
		padding: 0 0 0 16px;
	}

	/* ==================== search result ==================== */
	.search-resul-tabs a {
		width: calc(50% - 8px);
		text-align: center;
	}
}

@media (max-width: 575px) {
	:root {
		--fs-BNTitle: 28px;
		--fs-sectionTitle: 28px;
		--fs-sectionTitleEn: 34px;
		--fs-infoTitle: 18px;
		--fs-sidebarTitle: 18px;
		--fs-itemTitle: 17px;
		--fs-small: 13px;

		--section: 48px;
		--cnvs-canvas-slider-dots-size: 8px;
	}

	.btn-base {
		padding: 8px 22px;
		font-size: 15px;
	}

	.btn-back {
    font-size: 15px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	/* ==================== header ==================== */
	.logo-default {
		width: 210px;
	}

	.mobile-search-btn {
		font-size: 18px;
	}

	.cnvs-hamburger {
		--cnvs-hamburger-size: 20px;
	}

	/* ==================== quick link ==================== */
	.owl-carousel {
		--cnvs-owl-nav-sizes: 36px;
	}

	.quicklink-wrap .item {
		height: 135px;
	}

	.quicklink-wrap .item img {
		width: 32px;
	}

	.quicklink-wrap .item .item-title {
		font-weight: 400;
		font-size: var(--fs-normal);
	}

	/* ==================== news ==================== */
	.section.index {
		padding: 48px 0 60px;
	}

	.news-list-wrap {
		padding: 36px 24px;
	}

	.section-title::after {
		margin-top: 12px;
		width: 46px;
	}

	.sidebar-title img {
		width: 16px;
	}

	.search-warp,
	.func-bar .search-input input {
		width: 100%;
	}

	/* ==================== footer ==================== */
	.footer-logo {
		width: 230px;
	}

	.copyright {
		font-size: 14px;
	}

	#gotoTop {
		--cnvs-gotoTop-position-boxed-right: 16px;
	}

	/* ==================== breadcrumb + pagination ==================== */
	.breadcrumb-wrap,
	.breadcrumb-h1 {
		font-size: 14px;
	}

	.breadcrumb-wrap {
		--breadcrumb-padding: 14px;
		padding: calc(var(--breadcrumb-padding) + 36px) 0 calc(var(--breadcrumb-padding));
	}

	.pagination {
		margin-top: 32px;
	}

	.page-link {
		width: 28px;
		height: 28px;
		font-size: 14px;
  }
	
	.page-item.active .page-link::before {
		width: 36px;
		height: 36px;
  }

	/* ==================== privacy ==================== */
	.privacy-wrap .feature-box {
		--cnvs-featured-box-icon: 3rem;
	}

	.privacy-wrap .fbox-icon i {
		font-size: 22px;
		line-height: 42px;
	}

	.privacy-wrap .fbox-content {
		padding-left: 6px;
	}

	/* ==================== invest ==================== */
	/* .invest_content-panel {
		padding: 12px 18px;
	} */

	.invest_content-panel .panel-heading a {
		padding: 12px 18px;
	}

	.invest_content-panel .panel-heading a > div {
		transform: translateY(-1px);
	}

	/* ==================== faq ==================== */
	.faq-wrap .toggle-header {
		padding: 12px 16px;
	}
}