/* ===================================================================

base
banner
marquee
intro
news
product
special
album
footer
breadcrumb
contact
aside
list
pagination + nodata
history
link
RWD

=================================================================== */

/* ===================================================================
base
=================================================================== */
/* ---------- font-size ---------- */
:root {
	--fs-100: 100px; /*section eng title*/
	--fs-80: 80px; /*swiper-pagination span:first-child*/
	--fs-72: 72px; /*special txt red num*/
	--fs-52: 52px; /*banner title*/
	--fs-42: 42px; /*section zh-title*/
	--fs-36: 36px; /*swiper-pagination normal + marquee title*/
	--fs-32: 32px; /*special normal txt*/
	--fs-28: 28px; /*item title*/
	--fs-24: 24px; /*footer title + intro h1 + marquee txt*/
	--fs-20: 20px; /*banner h6 + carousel arrow button*/
	--fs-18: 18px; /*item eng title*/
}

.one-row {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.two-row {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.three-row {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.four-row {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

/* ---------- body line ---------- */
.body-line div {
	width: 1px;
	background-color: rgb(228 228 228 / 60%);;
}

/* ---------- btn ---------- */
.btn-base {
	position: relative;
	overflow: hidden;
	padding: 16px 48px;
	background-color: var(--cnvs-secondarycolor);
	color: var(--cnvs-white);
	display: inline-block;
	transform: skew(calc(-1 * var(--cnvs-btn-skew)));
	margin: 0 8px;
}

.btn-base span {
	display: inline-block;
	transform: skew(var(--cnvs-btn-skew));
}

.btn-base::before {
	content: '';
	width: 51%;
	height: 100%;
	position: absolute;
	top: -100%;
	left: 0;
	background-color: var(--cnvs-themecolor);
	z-index: -1;
	transition: .3s ease;
}

.btn-base::after {
	content: '';
	width: 51%;
	height: 100%;
	position: absolute;
	bottom: -100%;
	right: 0;
	background-color: var(--cnvs-themecolor);
	z-index: -1;
	transition: .3s ease;
}

.btn-base:hover {
	color: var(--cnvs-white);
}

.btn-base:hover::before {
	top: 0;
	transition: .3s ease;
}

.btn-base:hover::after {
	bottom: 0;
	transition: .3s ease;
}

.section-title .eng-title {
	display: block;
	font-size: var(--fs-100);
	color: #B8B8B8;
}

.section-title .zh-title {
	display: block;
	font-size: var(--fs-42);
	color: var(--cnvs-secondarycolor);
}


/* ===================================================================
banner
=================================================================== */
/* ---------- txt ---------- */
#slider {
	width: 100%;
  aspect-ratio: 1920 / 1080;
}

#slider h6 {
	font-size: var(--fs-20);
	line-height: 1.75;
}

#slider h3 {
	font-size: var(--fs-52);
	line-height: 1.35;
}

#slider .lead {
	margin-top: 36px;
}

#slider .btn-base {
	margin-top: 60px;
}

#slider .btn-base {
	background-color: var(--cnvs-white);
	color: var(--cnvs-textcolor);
}

#slider .btn-base:hover {
	color: var(--cnvs-white);
}

/* ---------- pagination ---------- */

#slider .swiper-tools {
	right: 145px;
	bottom: 80px;
	z-index: 99;
}

#slider .swiper-pagination {
	position: static;
	font-size: var(--fs-36);
	line-height: 1;
	color: #B7B7B7;
	margin-bottom: 36px;
}

#slider .swiper-pagination span:first-child {
	color: var(--cnvs-white);
	font-size: var(--fs-80);
}

#slider .swiper-pagination span:hover {
	background-color: transparent !important;
}

#slider .swiper-pagination span {
	width: auto;
	height: auto;
}

#slider .swiper-pagination span:first-child {
	margin: 0 24px 0 0;
}

#slider .swiper-pagination span:last-child {
	margin: 0 0 0 24px;
}

#slider .swiper-pagination span {
	border: none;
}

/* ---------- nav ---------- */
#slider div[class*=swiper-button-] {
	position: static;
	width: auto;
	height: auto;
	margin-top: 0;
	font-size: 30px;
	color: #d5d5d5;
	transition: .3s ease;
}

#slider div[class*=swiper-button-]::after {
	opacity: 0;
}

#slider .swiper-button-prev {
	margin-right: 120px;
}

#slider div[class*=swiper-button-]:hover,
#slider div[class*=swiper-button-]:active {
	color: var(--cnvs-white);
}

#slider div[class*=swiper-button-] span {
	font-size: var(--fs-20);
	line-height: 1.75;
}


/* ===================================================================
marquee
=================================================================== */
.marquee-section .section-title {
	font-size: var(--fs-36);
}


/* ===================================================================
intro
=================================================================== */
.intro-section .deco-bg {
	width: 800px;
	right: 3px;
	top: calc(-1*(50% + 108px));
}

.intro-section .section-title {
	transform: translateX(-235px);
}

.intro-section .img-wrap {
	padding-right: 90px;
	margin: 0 0 50px 0;
}

.intro-section .img-wrap::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 80px;
	width: 300px;
	height: 350px;
	background-color: var(--cnvs-thirdcolor);
	transform: skew(-5deg);
	z-index: -1;
}

.intro-section .img-wrap img {
	width: 100%;
	height: calc(100% - 50px);
	aspect-ratio: 900 / 1052;
	object-fit: cover;
	object-position: right top;
}

.intro-section h1,
.intro-section h3 {
	font-size: var(--fs-24);
}

/* ---------- intro-section2 ---------- */
.intro-section2 .small-title::after {
	content: '';
	display: inline-block;
	width: 2px;
	height: 20px;
	margin-left: 16px;
	background-color: var(--cnvs-thirdcolor);
	transform: skew(calc(-1 * var(--cnvs-btn-skew)));
}

.intro-section2 .left-txt p {
	padding: 40px 36px;
	text-align: justify;
}

.intro-section2 .left-txt p::before,
.intro-section2 .left-txt p::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: calc(100% - 40px);
	background-color: var(--cnvs-white);
}

.intro-section2 .left-txt p::before {
	left: -1px;
}

.intro-section2 .left-txt p::after {
	right: -1px;
}

/* ---------- cert-wrap ---------- */
.cert-wrap h3 {
	font-size: var(--fs-24);
}

.cert-wrap img {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


/* ===================================================================
news
=================================================================== */
/* ---------- info ---------- */
.news-item .info {
	line-height: 1.3;
}

.news-item .info a:hover,
.news-item .info a:active {
	color: var(--cnvs-secondarycolor) !important;
}

aside .hot-wrap .news-item .info {
	font-size: 14px;
}

/* ---------- img ---------- */
.news-item .img-wrap img,
.list-wrap .news-item .img-wrap img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
}

/* ---------- title ---------- */
.news-item article h3,
.list-wrap .news-item h3,
.list-wrap .news-item h1 {
	font-size: var(--fs-28);
}

.news-item article:hover h3 a,
.list-wrap .news-item h3 a:hover {
	color: var(--cnvs-secondarycolor) !important;
}

/* ---------- carousel ---------- */
.news-carousel.owl-carousel {
	margin-top: calc(-1 * (10.4% - 5.1%)); /*使用.news-carousel.owl-carousel .owl-stage的padding計算*/
}

.news-carousel.owl-carousel .owl-stage {
	display: flex;
	padding: 10.4% 4px 5.1% 4px; /*與.news-carousel.owl-carousel的mt有關*/
}

.news-carousel.owl-carousel .owl-item .news-item {
	height: 100%;
}

/*pagination*/
.news-carousel.owl-carousel .owl-dots {
	display: none;
}

/* center */
.news-carousel.owl-carousel .owl-item.active.center .img-wrap {
	transform: scale(1.3);
	overflow: hidden;
}

.news-carousel.owl-carousel .owl-item.active.center .img-wrap img,
aside .hot-wrap .img-wrap img,
.list-wrap .news-item .img-wrap img {
	transition: 1s ease;
}

.news-carousel.owl-carousel .owl-item.active.center .img-wrap:hover img,
aside .hot-wrap .img-wrap:hover img,
.list-wrap .news-item .img-wrap:hover img {
	transform: scale(1.15);
}

.news-carousel.owl-carousel .owl-item.active.center .img-wrap::before,
aside .hot-wrap .img-wrap::before,
.list-wrap .news-item .img-wrap::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 0%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
	transform: skew(calc(-1 * var(--cnvs-btn-skew))) translateX(-50%);
	z-index: 1;
	transition: 1s ease;
}

.news-carousel.owl-carousel .owl-item.active.center .img-wrap:hover::before,
aside .hot-wrap .img-wrap:hover::before,
.list-wrap .news-item .img-wrap:hover::before {
	width: 200%;
}

.news-carousel.owl-carousel .owl-item.center .news-item .txt-wrap {
	width: 71%; /*與.news-carousel.owl-carousel .owl-item.active:not(.center) .img-wrap的left計算*/
	position: absolute;
	top: -30%;
	left: calc(-1 * (100% - 5px));
	z-index: 3;
}

.news-carousel.owl-carousel .owl-item.center .news-item .btn-base {
	position: absolute;
	bottom: calc(50% - 80px);
	right: calc(-1 * (100% - 150px));
	z-index: 3;
	transform: skew(calc(-1* var(--cnvs-btn-skew))) translateY(50%);
}

/* active */
.news-carousel.owl-carousel .owl-item.active:not(.center) {
	pointer-events: none;
}

.news-carousel.owl-carousel .owl-item.active:not(.center) .img-wrap {
	transform: scale(0.55);
	position: absolute;
}

.news-carousel.owl-carousel .owl-item.active:not(.center) .img-wrap {
	bottom: -28%;
	left: -29%; /*與.news-carousel.owl-carousel .owl-item.center .news-item .txt-wrap的width有關*/
}

.owl-carousel .owl-item.center + .owl-item.active .img-wrap {
	left: 1%;
	bottom: auto;
	right: -30%;
	top: -60%;
}

/* normal */
.news-carousel.owl-carousel .owl-item:not(.active) .news-item {
	opacity: 0;
}

.news-carousel.owl-carousel .owl-item:not(.center) .news-item .txt-wrap {
	display: none;
}

.news-carousel.owl-carousel .owl-item:not(.center) .news-item .btn-base {
	display: none;
}

/* nav */
.news-carousel.owl-carousel .owl-nav [class*=owl-] {
	border: none;
	border-radius: 0;
	color: #B7B7B7;
	background-color: transparent;
	display: flex;
	align-items: center;
	font-size: var(--fs-20);
	left: -40px;
	transform: translateX(-100%);
}
.news-carousel.owl-carousel .owl-nav .owl-next {
	left: auto;
	right: -40px;
	transform: translateX(100%);
}

.news-carousel.owl-carousel .owl-nav [class*=owl-] i {
	font-size: 30px;
	transition: .3s ease;
}

.news-carousel.owl-carousel .owl-nav [class*=owl-]:hover i,
.news-carousel.owl-carousel .owl-nav [class*=owl-]:active i {
	color: var(--cnvs-textcolor);
}

/* ---------- hot ---------- */
aside .hot-wrap .news-item:not(:last-child) {
	margin-bottom: 32px;
}

aside .hot-wrap .news-item h3 {
	font-size: var(--fs-18);
}

/* ---------- list ---------- */
.list-wrap .news-item {
	position: relative;
}

.list-wrap2 .news-item:nth-child(even) > div {
	flex-direction: row-reverse;
}

.list-wrap .news-item::after {
	content: '';
	width: calc(100% - 24px);
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 12px;
	background-color: var(--bs-border-color);
}

.list-wrap .news-item:not(:last-child) {
	margin-bottom: 16px;
}

.list-wrap .news-item:nth-child(odd) .row div:nth-child(2) {
	order: 1;
}

.list-wrap .news-item .btn-base {
	padding: 10px 36px;
}

.list-wrap article p:last-child {
	margin-bottom: 0;
}

/* ---------- share ---------- */
.share-wrap a {
	width: 30px;
	height: 30px;
	font-size: 22px;
}

.share-wrap a:last-child {
	font-size: 20px;
}

.share-wrap a:last-child::before {
	transform: translateX(1px);
}

/* ===================================================================
product
=================================================================== */
.product-section .decoimg-right {
	top: -15%;
}

.product-section .decoimg-left {
	top: -5.6%;
}

.product-section .more-btn:hover {
	background-color: #972222;
}

.product-section .more-btn span:last-child:after {
	content: '';
	width: 0%;
	height: 1px;
	background-color: var(--cnvs-white);
	position: absolute;
	bottom: 0;
	left: 0;
	transition:.5s ease;
}

.product-section .more-btn:hover span:last-child:after {
	width: 100%;
	transition: .5s ease;
}

/* ---------- img ---------- */
.product_item .img-wrap,
.list-wrap .product-item .img-wrap {
	aspect-ratio: 1 / 1;
}

.product_item .img-wrap img,
.list-wrap .product-item .img-wrap img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
}

.product_item .img-wrap::before {
	content: '';
	position: absolute;
	left: 0;
	width: 230%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	transform: skew(calc(-1 * var(--cnvs-btn-skew))) translateX(-50%);
	transition: 1s ease;
	z-index: 1;
}

.product_item:hover .img-wrap::before {
	width: 0%;
	left: -100%;
	transition: 1s ease;
}

.product_item .img-wrap img {
	transition: 1s ease;
}

.product_item:hover .img-wrap img {
	transform: scale(1.15);
}

/* ---------- txt ---------- */
.product_item .txt-wrap {
	transition: .5s ease;
}

.product_item:hover .txt-wrap {
	opacity: 0;
	transition: .5s ease;
}

.product_item .eng-title {
	font-size: var(--fs-18);
	text-align: center;
}

.product_item .zh-title,
.list-wrap .product-item h3,
.list-wrap .product-item h1 {
	font-size: var(--fs-28);
}

.list-wrap .product-item:hover h3 {
	color: var(--cnvs-secondarycolor) !important;
}

.product_item .zh-title::before,
.list-wrap .product-item .zh-title::before {
	content: '';
	display: block;
	margin: 16px auto;
	width: 1px;
	height: 25px;
	background-color: var(--cnvs-white);
	transform: skew(-40deg);
}

.list-wrap .product-item .zh-title::before {
	margin: 10px auto;
	height: 18px;
}

/* ---------- list ---------- */
.list-wrap .product-item .img-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 0%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	transform: skew(calc(-1* var(--cnvs-btn-skew))) translateX(-50%);
	z-index: 1;
	transition: 1s ease;
}

.list-wrap .product-item:hover .img-wrap::after {
	width: 200%;
}

.list-wrap .product-item .img-wrap img {
	transition: 1s ease;
}

.list-wrap .product-item:hover .img-wrap img {
	transform: scale(1.15);
}

.list-wrap .product-item .product-cate {
	pointer-events: none;
	opacity: 0;
	transition: 1s ease;
}

.list-wrap .product-item:hover .img-wrap ~ .product-cate {
	opacity: 1;
	transition: 1s ease;
}

.list-wrap .product-item .eng-title,
.list-wrap .product-item .zh-title {
	font-size: var(--fs-18);
}

/* img */
.list-wrap .productSwiper2 [class*=swiper-button-] {
	width: 42px;
	height: 42px;
	color: var(--cnvs-white);
	opacity: 0;
	transition: .3s ease;
}

.list-wrap .productSwiper2:hover [class*=swiper-button-] {
	opacity: 1;
}

.list-wrap .productSwiper2 [class*=swiper-button-]:after {
	display: none;
}

.list-wrap .productSwiper2 .swiper-button-next {
	border-radius: 4px 0 0 4px;
	right: 20px;
}

.list-wrap .productSwiper2 .swiper-button-prev {
	border-radius: 0 4px 4px 0;
	left: 20px;
}

.list-wrap .productSwiper2 i {
	font-size: var(--fs-20);
}

.list-wrap .productSwiper .swiper-slide {
	cursor: pointer;
}

.list-wrap .productSwiper .swiper-slide:not(.swiper-slide-thumb-active)::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(2px);
}


/* ===================================================================
special
=================================================================== */
.special-wrap .parallax-wrap {
	background-clip: text;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 90% center;
	color: rgba(255, 255, 255, 0);
	background-attachment: fixed;
}

.special-wrap .parallax-content {
	font-size: 300px;
}

.special-wrap .txt-wrap {
	font-size: var(--fs-32);
}

.special-wrap .txt-wrap .num {
	font-size: var(--fs-72);
}


/* ===================================================================
album
=================================================================== */
.album-section .section-title {
	margin-bottom: 120px;
}

.album-section .info-wrap {
	border-top: 1px solid #DDD;
}

.album-section h3,
.list-wrap .album-item h3,
.list-wrap .album-item h1 {
	font-size: var(--fs-28);
}

.album-section h3 a:hover,
.album-section h3 a:active,
.album-section h3 ~ a:hover,
.album-section h3 ~ a:active,
.list-wrap .album-item h3 a:hover,
.list-wrap .album-item h3 a:active {
	color: var(--cnvs-secondarycolor) !important;
}

.album-section .info-wrap:hover ~ div h3 a,
.list-wrap .album-item h3 ~ a:hover,
.list-wrap .album-item a:hover {
	color: var(--cnvs-secondarycolor) !important;
}

/* ---------- albumSwiper pagination ---------- */
.album-section .albumSwiper .swiper-pagination {
	font-size: var(--fs-36);
	line-height: 1;
	color: #B7B7B7;
}

.album-section .albumSwiper .swiper-pagination span:first-child {
	color: var(--cnvs-textcolor);
	font-size: var(--fs-80);
	font-weight: 500;
	margin: 0;
	margin-right: 24px;
}

.album-section .albumSwiper .swiper-pagination span:last-child {
	margin-left: 24px;
}

.album-section .albumSwiper .swiper-pagination span {
	width: auto;
	height: auto;
}

/* ---------- albumSwiper2 pagination ---------- */
.album-section .albumSwiper2 .swiper-pagination span {
	border-radius: 0;
	margin: 0;
}

.album-section .albumSwiper2 .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background-color: var(--cnvs-themecolor);
}

/* ---------- albumSwiper2 nav ---------- */
.album-section .albumSwiper2 .swiper-controller {
	width: 86.5%;
}

.album-section .albumSwiper2 .nav-line {
	width: 1px;
	height: 30px;
	background-color: #B7B7B7;
}

.album-section .albumSwiper2 [class*=swiper-button-] {
	position: static;
	width: auto;
	height: auto;
	font-size: var(--fs-20);
	color: #B7B7B7;
	transition: .3s ease;
}

.album-section .albumSwiper2 [class*=swiper-button-]:hover,
.album-section .albumSwiper2 [class*=swiper-button-]:active {
	color: var(--cnvs-textcolor);
}

.album-section .albumSwiper2 [class*=swiper-button-]::after {
	display: none;
}

.album-section .albumSwiper2 [class*=swiper-button-] i {
	font-size: 30px;
}

/* ---------- albumSwiper2 img ---------- */
.album-img-container {
	margin-left: calc(100% - 64%); /*使用.album-img-container .album-img-wrap的數值計算*/
}

.album-img-container .album-img-wrap {
	width: 64%; /*與album-img-container的ml相關*/
}

.album-section .albumSwiper2 .img-wrap,
.list-wrap .album-item .img-wrap {
	aspect-ratio: 1920 / 1070;
}

.album-section .albumSwiper2 .img-wrap img,
.list-wrap .album-item .img-wrap img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
}

.album-section .albumSwiper2 .img-wrap::before,
.list-wrap .album-item .img-wrap::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 0%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
	transform: skew(calc(-1 * var(--cnvs-btn-skew))) translateX(-50%);
	z-index: 1;
	transition: 1s ease;
}

.album-section .albumSwiper2 .img-wrap:hover::before,
.list-wrap .album-item .img-wrap:hover::before {
	width: 200%;
}

.album-section .albumSwiper2 .img-wrap img,
.list-wrap .album-item .img-wrap img {
	transition: 1s ease;
}

.album-section .albumSwiper2 .img-wrap:hover img,
.list-wrap .album-item .img-wrap:hover img {
	transform: scale(1.15);
	transition: 1s ease;
}

/* ---------- list ---------- */
.list-wrap .album-item .info-wrap {
	border-top: 1px solid #DDD;
}

.list-wrap .album-item .grid-container [data-lightbox="gallery-item"] {
	display: block;
	position: relative;
}

.list-wrap .album-item .grid-container [data-lightbox="gallery-item"]::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,0.3);
	width: 100%;
	height: 0%;
	z-index: 1;
	transition: .5s ease;
}

.list-wrap .album-item .grid-container [data-lightbox="gallery-item"]:hover::before {
	height: 100%;
	transition: .5s ease;
}

.list-wrap .album-item .grid-container img {
	transition: .5s ease;
}

.list-wrap .album-item .grid-container [data-lightbox="gallery-item"]:hover img {
	transform: scale(1.15);
}

.list-wrap .album-item .grid-container h4 {
	line-height: 1.75;
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 30%, transparent 100%);
	color: #fff;
	padding: 12px 4px;
}

/* ===================================================================
footer
=================================================================== */
#footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(176, 51, 51, .97);
	z-index: -1;
}

#footer h4 {
	font-size: var(--fs-24);
}

#footer li {
	display: flex;
}

#footer a {
	color: var(--cnvs-white);
}

#footer .sitemap ul:nth-child(2) li:not(:last-child),
#footer .sitemap ul:last-child li:not(:last-child) {
	margin-right: 48px;
}

#footer .copyrights a {
	color: #B7B7B7 !important;
}

#footer a:hover,
#footer a:active {
	color: var(--cnvs-secondarycolor) !important;
}

#footer .sns-wrap a:not(:last-child) {
	margin-right: 16px;
}

/* ---------- float ---------- */
.float-sns-wrap {
	z-index: 599;
	right: 30px;
	bottom: calc(85px + 8px);
}

/* ===================================================================
breadcrumb
=================================================================== */
.breadcrumb::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .container {
	margin-top: 79px;
}

.breadcrumb .section-title {
	line-height: 1.5;
}

.breadcrumb .section-title .eng-title {
	font-size: 120px;
	font-weight: 600;
	color: transparent;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
	left: 50px;
}

.breadcrumb ul li:not(:last-child):after {
	content: '•';
	display: inline-block;
	margin: 0 8px;
}


/* ===================================================================
contact
=================================================================== */
/* ---------- info ---------- */
.contact-info {
	margin-bottom: -16px;
}

.contact-info li > * {
	background-color: #f7f7f7;
	word-break: break-word;
}

.contact-info li a:hover,
.contact-info li a:active {
	transform: translateY(-4px);
}

.contact-info i {
	font-size: var(--fs-32);
}

/* ---------- form ---------- */
.contact-form {
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.contact-link {
	color: var(--cnvs-themecolor);
}

.contact-link:hover,
.contact-link:active {
	color: var(--cnvs-secondarycolor);
}

/* ---------- sending ---------- */
.sending {
	top: 100%;
}

/* ---------- img ---------- */
.contact-deco-img {
	bottom: 100%;
	width: 45%;
}

/* ---------- map ---------- */
.contact-map iframe {
	height: 450px;
}


/* ===================================================================
aside
=================================================================== */
aside {
	position: sticky;
	top: calc(79px + 24px);
}

/* ---------- search ---------- */
aside form button {
	width: 40px;
	height: 40px;
	transition: .3s ease;
	color: var(--cnvs-white);
	background-color: var(--cnvs-themecolor);
}

aside form button:hover {
	background-color: var(--cnvs-secondarycolor);
}

/* ---------- title ---------- */
aside h5 {
	font-size: var(--fs-24);
}

/* ---------- cate ---------- */
aside .cate-wrap,
aside .hot-wrap {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	padding: 24px;
}

aside .cate-wrap li:not(:last-child) {
	padding-bottom: 8px;
}

aside .cate-wrap:not(.cate-sub-wrap) li.active a {
	color: var(--cnvs-themecolor);
	background-color: rgba(var(--cnvs-themecolor-rgb), 0.1);
}

aside .cate-wrap a {
	transform: skew(calc(-1 * var(--cnvs-btn-skew)));
}

aside .cate-wrap a span {
	display: block;
	transform: skew(var(--cnvs-btn-skew));
}

aside .cate-wrap .toggle-header {
	transform: skew(calc(-1 * var(--cnvs-btn-skew)));
}

aside .cate-wrap .toggle-header a {
	transform: none;
}

aside .cate-wrap .toggle-header .toggle-icon {
	transform: skew(var(--cnvs-btn-skew));
}

aside .cate-wrap .toggle-header a:hover,
aside .cate-wrap .toggle-header a:active {
	background-color: transparent;
}


aside .cate-wrap li.toggle:hover .toggle-header,
aside .cate-wrap li.active.toggle .toggle-header,
aside .cate-wrap li .toggle:hover,
aside .cate-wrap a:hover,
aside .cate-wrap a:active {
	color: var(--cnvs-themecolor);
	background-color: rgba(var(--cnvs-themecolor-rgb), 0.1);
}

aside .cate-wrap li.toggle:hover .toggle-header a {
	color: var(--cnvs-themecolor);
}

/* ---------- cate-sub ---------- */
aside .cate-sub-wrap li .toggle-content a {
	color: var(--cnvs-textcolor);
	background-color: transparent;
}

aside .cate-sub-wrap li.active .toggle-content a:hover,
aside .cate-sub-wrap li.active .toggle-content a:active,
aside .cate-sub-wrap .toggle-content a:hover,
aside .cate-sub-wrap .toggle-content a:active {
	color: var(--cnvs-themecolor);
}

/* accordion-button */
aside .cate-sub-wrap .accordion-button {
	transform: skew(calc(-1 * var(--cnvs-btn-skew)));
}

aside .cate-sub-wrap .accordion-button > *,
aside .cate-sub-wrap .accordion-button::after {
	transform: skew(var(--cnvs-btn-skew));
}

aside .cate-sub-wrap .accordion-button::after {
	content: "\f229";
	font-family: bootstrap-icons !important;
	display: flex;
	align-items: center;
	justify-content: center;
}

aside .cate-sub-wrap .no-sub .accordion-button::after {
	display: none;
}

aside .cate-sub-wrap .accordion-item:hover .accordion-button,
aside .cate-sub-wrap .accordion-item.active .accordion-button {
	background-color: rgba(var(--cnvs-themecolor-rgb), 0.1);
}

aside .cate-sub-wrap .accordion-item:hover .accordion-button > *,
aside .cate-sub-wrap .accordion-item:hover .accordion-button::after,
aside .cate-sub-wrap .accordion-item.active .accordion-button,
aside .cate-sub-wrap .accordion-item.active .accordion-button a {
	color: var(--cnvs-themecolor);
}

aside .cate-sub-wrap .accordion-button:not(.collapsed)::after {
	transform: skew(var(--cnvs-btn-skew)) var(--bs-accordion-btn-icon-transform);
}

/* accordion-collapse */
aside .cate-sub-wrap .toggle-content a:hover {
	color: var(--cnvs-themecolor);
}

aside .cate-sub-wrap .toggle-content a {
	border-bottom: 1px dashed var(--bs-border-color);
}

/* ===================================================================
list
=================================================================== */
.list-wrap {
	padding-left: 80px;
}

/* ===================================================================
pagination + nodata
=================================================================== */
.no-data {
	transform: skew(calc(-1 * var(--cnvs-btn-skew)));
	border: 1px solid var(--cnvs-secondarycolor);
}

.no-data span {
	transform: skew(var(--cnvs-btn-skew));
}


/* ===================================================================
history
=================================================================== */
#about_page .tp_area.two .grid_box { 
	grid-template-columns: 70% 30%; 
}
#about_page .tp_area.two .grid_box .grid_left { 
	padding-right: 3vw; color: var(--cnvs-themecolor); 
}
#about_page .tp_area.milestone .container:before {
	content: ''; position: absolute; top: 0; left: 50%; margin-left: -1px; width: 2px; height: 100%; z-index: 1;
	background: linear-gradient(to bottom, rgb(248,249,250) 0%, var(--cnvs-themecolor) 10%, var(--cnvs-themecolor) 100%);
}

#tp_timeline {
	padding: 0;
	margin: 0; 
}
#tp_timeline .timeline-block {
	width: calc(50% + 8px);
	display: flex;
	justify-content: space-between;
	clear: both;
	position: relative;
}
#tp_timeline li:nth-child(odd)  {
	float: right;
}
#tp_timeline li:nth-child(even) {
	float: left;
	text-align: right;
}
#tp_timeline li:nth-child(even) .marker {
	position: absolute;
	right: 0;
}
.timeline-block .marker { 
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid #fff; 
	background: var(--cnvs-themecolor);
	margin-top: calc(1em + .3vw);
	z-index: 9;
}
.timeline-content {
	width: 95%;
	padding: 0 15px;
}
.timeline-content .tp_title {
	color: var(--cnvs-themecolor);
	margin-top: 5px;
	margin-bottom: 5px;
	font-size: var(--fs-36);
}
@media screen and (max-width: 767px) {
	#about_page .tp_area.milestone h2 {
		text-align: center;
	}
	#about_page .tp_area.milestone .container:before {
		left: initial;
		width: 2px;
		margin-left: 7px;
	}
	#tp_timeline .timeline-block {
		width: 100%;
	}
	#tp_timeline li {
		padding-bottom: 30px;
	}
	#tp_timeline li:nth-child(odd), #tp_timeline li:nth-child(even) {
		float: none;
		text-align: left;
	}
	#tp_timeline li:nth-child(even) .marker {
		position: relative;
		left: auto;
	}
	#tp_timeline .marker {
		margin-top: .8em;
	}
}


/* ===================================================================
link
=================================================================== */
.link-wrap .img-wrap {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.link-wrap li a.item-wrap .img-wrap::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 0%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	transform: skew(calc(-1* var(--cnvs-btn-skew))) translateX(-50%);
	z-index: 1;
	transition: 1s ease;
}

.link-wrap li a.item-wrap:hover .img-wrap::before {
	width: 200%;
}

.link-wrap li a.item-wrap .img-wrap img {
	transition: 1s ease;
}

.link-wrap .item-wrap h3 {
	font-size: var(--fs-24);
}

.link-wrap li a.item-wrap:hover h3 {
	color: var(--cnvs-themecolor);
}

.link-wrap h1 {
	font-size: var(--fs-28);
}


/* ===================================================================
RWD
=================================================================== */
@media (min-width:768px) {
	.three-md-row {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
  }

  .four-md-row {
		overflow: hidden;
		display: -webkit-box;
		text-overflow: ellipsis;
		-webkit-line-clamp: 4;
		-webkit-box-orient: vertical;
		word-break: break-all;
	}
}

@media (min-width:1400px) {
  .three-xxl-row {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
  }
}

@media (min-width:1600px) {
	.col-xxxl-11 {
		flex: 0 0 auto;
		width: 91.66666667%;
	}
}

@media (max-width:1699px) {
	.news-carousel.owl-carousel .owl-nav [class*=owl-] {
		left: 8px;
	}

	.news-carousel.owl-carousel .owl-nav .owl-next {
		right: 8px;
	}
}

@media (max-width:1599px) {
	/* ---------- banner ---------- */
	#slider .swiper-tools {
		right: 48px;
		bottom: 48px;
	}

	#slider .lead {
		margin-top: 24px;
	}

	#slider .btn-base {
		margin-top: 48px;
	}

	/* ---------- intro ---------- */
	.intro-section .img-wrap {
		padding-right: 35px;
	}

	.intro-section .img-wrap::after {
		right: 35px;
	}

	/* ---------- news ---------- */
	.news-carousel.owl-carousel .owl-item.center .news-item .btn-base {
		right: calc(-1 * (100% - 86px));
	}

	.news-carousel.owl-carousel .owl-nav [class*=owl-] {
		left: 65px;
	}

	.news-carousel.owl-carousel .owl-nav .owl-next {
		left: auto;
		right: 65px;
	}

	.news-carousel.owl-carousel .owl-nav [class*=owl-] {
		top: calc(50% + 30px);
	}

	/* ---------- album ---------- */
	.album-section .albumSwiper2 .swiper-controller {
		width: 90.5%;
	}

	/* ---------- footer ---------- */
	#footer .sitemap ul:nth-child(2) li:not(:last-child),
	#footer .sitemap ul:last-child li:not(:last-child) {
		margin-right: 36px;
	}
}

@media (max-width:1499px) {
	/* ---------- news ---------- */
	.news-carousel.owl-carousel .owl-nav [class*=owl-] {
		left: 55px;
	}

	.news-carousel.owl-carousel .owl-nav .owl-next {
		left: auto;
		right: 55px;
	}

	.news-carousel.owl-carousel .owl-nav [class*=owl-] {
		top: calc(50% + 30px);
	}
}

@media (max-width:1399px) {
	/* ---------- base ---------- */
	:root {
		--fs-100: 90px; /*section eng title*/
		--cnvs-header-height-sm: 42px;
	}

	.btn-base {
		padding: 14px 42px;
	}

	/* ---------- header ---------- */
	.is-expanded-menu .style-3 .menu-container > .menu-item > .menu-link {
		margin: 10px 0;
	}

	.is-expanded-menu .menu-container > .menu-item:not(:first-child) {
		margin-left: 8px;
	}

	.is-expanded-menu .menu-link {
		--cnvs-primary-menu-padding-x: 12px;
	}

	/* ---------- banner ---------- */
	#slider .btn-base {
		margin-top: 36px;
	}

	.slider-element .container > .row {
		margin-top: 66px;
	}

	#slider .swiper-pagination span:first-child {
		margin: 0 18px 0 0;
	}


	#slider .swiper-pagination span:last-child {
		margin: 0 0 0 18px;
	}

	#slider .swiper-button-prev {
		margin-right: 80px;
	}

	/* ---------- intro ---------- */
	.intro-section {
		overflow-x: visible;
	}

	.intro-section .section-title {
		transform: translateX(-202px);
	}

	.intro-section .img-wrap {
		position: absolute !important;
		padding-right: 0;
		left: 0;
	}

	.intro-section .img-wrap::after {
		right: 0;
	}

	.intro-section .img-wrap img {
		object-fit: contain;
	}

	/* ---------- news ---------- */
	.news-carousel.owl-carousel .owl-item.active:not(.center) .img-wrap {
		bottom: -34%;
	}

	.owl-carousel .owl-item.center + .owl-item.active .img-wrap {
		bottom: auto;
	}

	.news-carousel.owl-carousel .owl-item.center .news-item .btn-base {
		right: calc(-1 * (100% - 60px));
	}
	
	.list-wrap .news-item:not(:last-child) {
		margin-bottom: 24px;
	}

	/* ---------- product ---------- */
	.product-section .decoimg-right  {
		width: 470px;
		top: -10%;
	}
	
	.product-section .decoimg-left  {
		width: 280px;
		top: -0.1%;
	}

	/* ---------- special ---------- */
	.special-wrap .parallax-content {
		font-size: 250px;
	}

	/* ---------- album ---------- */
	.album-section .albumSwiper .swiper-pagination span:first-child {
		margin-right: 18px;
	}

	.album-section .albumSwiper .swiper-pagination span:last-child {
		margin-left: 18px;
	}

	/* ---------- list ---------- */
	.list-wrap {
		padding-left: 60px;
	}
}

@media (max-width:1199px) {
	/* ---------- base ---------- */
	:root {
		--fs-100: 80px; /*section eng title*/
		--fs-52: 48px;  /*banner title*/
		--cnvs-section-margin: 80px;
		--cnvs-header-height: 48px;
	}

	/* ---------- header ---------- */
	#header-wrap {
		padding: 12px 0;
		background-color: rgb(80, 80, 80);
	}

	.is-expanded-menu .menu-link {
		--cnvs-primary-menu-padding-x: 8px
	}

	.menu-container {
		padding-top: 16px;
	}

	/* ---------- banner ---------- */
	#slider .lead {
		margin-top: 16px;
	}

	#slider .btn-base {
		margin-top: 24px;
	}

	#slider .swiper-tools {
		right: 32px;
		bottom: 32px;
	}

	#slider .swiper-pagination span:first-child {
		margin: 0 8px 0 0;
	}

	#slider .swiper-pagination span:last-child {
		margin: 0 0 0 8px;
	}

	#slider .swiper-button-prev {
		margin-right: 48px;
	}

	/* ---------- intro ---------- */
	/* intro-section2 */
	.intro-section2 .left-txt {
		padding-bottom: 0;
	}

	/* ---------- new ---------- */
	.news-carousel.owl-carousel .owl-item.active:not(.center) .img-wrap {
		transform: scale(0.45);
	}
	
	.news-carousel.owl-carousel .owl-item.center .news-item .btn-base {
		right: calc(-1 * (100% - 6px));
	}

	.news-carousel.owl-carousel .owl-item.active:not(.center) .img-wrap {
		left: -39%;
		bottom: -45%;
	}

	.owl-carousel .owl-item.center + .owl-item.active .img-wrap {
		right: -38%;
		left: -1%;
		bottom: auto;
	}

	/* ---------- special ---------- */
	.special-wrap .parallax-content {
		font-size: 200px;
	}

	/* ---------- album ---------- */
	.album-section .section-title {
		margin-bottom: 48px;
	}

	.album-section .albumSwiper .swiper-pagination span:first-child {
		margin-right: 8px;
	}

	.album-section .albumSwiper .swiper-pagination span:last-child {
		margin-left: 8px;
	}

	.album-section .albumSwiper2 .swiper-controller {
		width: 98%;
	}

	/* ---------- list ---------- */
	.list-wrap {
		padding-left: 24px;
	}
}

@media (max-width:991px) {
	/* ---------- base ---------- */
	:root {
		--fs-80: 70px; /*swiper-pagination span:first-childe*/
		--fs-72: 65px; /*special txt red num*/
		--fs-52: 44px; /*section eng title*/
		--fs-42: 38px; /*section zh-title*/
		--fs-36: 34px; /*swiper-pagination normal + marquee title*/
		--fs-32: 30px; /*special normal txt*/
		--fs-28: 26px; /*item title*/
		--fs-24: 22px; /*footer title + intro h1 + marquee txt*/
		--fs-20: 18px; /*banner h6 + carousel arrow button*/
		--cnvs-header-height: 48px;
	}

	.btn-base {
		padding: 12px 36px;
	}

	/* ---------- banner ---------- */
	.slider-element .container > .row {
		margin-top: 0;
	}

	#slider .lead {
		margin-top: 8px;
	}

	#slider .btn-base {
		margin-top: 16px;
	}

	#slider .swiper-tools {
		right: 12px;
		bottom: 24px;
	}

	/* ---------- intro ---------- */
	.intro-section .section-title {
		transform: translateX(0);
	}

	.intro-section .section {
		padding-top: 0;
		margin-top: -28%;
	}

	.intro-section .section-title .zh-title {
		color: var(--cnvs-white);
	}

	.intro-section .img-wrap {
		position: relative !important;
		left: auto;
	}

	.intro-section .img-wrap::after {
		bottom: -8px;
		right: -14px;
	}

	.intro-section .img-wrap img {
		width: 76%;
		height: 500px;
		object-fit: cover;
	}

	/* ---------- intro-section2 ---------- */
	.intro-section2 .left-txt,
	.intro-section2 .right-txt {
		margin-top: 0;
		padding-top: 80px;
	}

	.intro-section2 .right-txt {
		padding: 48px 0;
	}

	/* ---------- news ---------- */
	.news-carousel.owl-carousel {
		margin-top: 0;
		margin-bottom: -40px;
	}
	
	.news-carousel.owl-carousel .owl-stage {
		display: block;
		padding: 0 4px 0 ;
	}

	.news-carousel.owl-carousel .owl-item.active:not(.center) .img-wrap,
	.news-carousel.owl-carousel .owl-item.active.center .img-wrap {
		transform: scale(1);
	}
	
	.owl-carousel .owl-item.center + .owl-item.active .img-wrap {
		position: static;
	}

	.news-carousel.owl-carousel .owl-nav [class*=owl-] {
		top: calc(50% + -27px);
	}

	/* center */
	.news-carousel.owl-carousel .owl-item.active.center {
		left: -4%;
	}

	.news-carousel.owl-carousel .owl-item.active.center .news-item {
		display: flex;
		flex-direction: column-reverse;
	}

	.news-carousel.owl-carousel .owl-item.center .news-item .txt-wrap {
		position: static;
		width: 118.4%;
		margin-top: calc(30% + 24px);
		margin-left: -12px;
	}

	.news-carousel.owl-carousel .owl-item.active.center .img-wrap {
		transform: scale(1.3) translateY(40px);
	}

	.news-carousel.owl-carousel .owl-item.center .news-item .btn-base {
		right: calc(-1 * (100% - 60px));
		bottom: calc(50% - 38px);
	}
	
	/* active */
	.news-carousel.owl-carousel .owl-item.active:not(.center) {
		transform: scale(0.7);
		right: 2.9%;
	}

	/* ---------- product ---------- */
	.product-section .decoimg-right {
		top: -7%;
	}

	/* ---------- album ---------- */
	.album-img-container {
		position: static !important;
		transform: none !important;
		max-width: 720px;
		--bs-gutter-x: 1.5rem;
		--bs-gutter-y: 0;
		width: 100%;
		padding-right: calc(var(--bs-gutter-x)* 0.5) !important;
		padding-left: calc(var(--bs-gutter-x)* 0.5) !important;
		margin-right: auto;
		margin-left: auto;
	}

	.album-section .section-title {
		margin-bottom: 24px;
	}

	.album-section .albumSwiper {
		padding-top: 48px; /*與.album-section .albumSwiper .swiper-pagination的top有關*/
	}

	.album-section .albumSwiper .swiper-pagination {
		position: absolute !important;
		width: fit-content;
		top: calc(0px + 48px); /*使用.album-section .albumSwiper的pt計算*/
	}

	.album-img-container .album-img-wrap {
		width: 100%;
	}

	.album-section .albumSwiper h3 {
		margin-left: calc(125px + 48px);
	}

	/* ---------- breadcrumb ---------- */
	.breadcrumb .container {
		margin-top: 0;
	}

	.breadcrumb {
		height: 27vh;
	}

	.breadcrumb .section-title .eng-title {
		font-size: 100px;
		left: 20px;
	}

	/* ---------- contact ---------- */
	.contact-map iframe {
		height: 300px;
	}

	/* ---------- list ---------- */
	.list-wrap {
		padding-left: 0;
	}
}

@media (max-width:767px) {
	/* ---------- base ---------- */
	:root {
		--cnvs-header-height: 36px;
	}

	/* ---------- banner ---------- */
	#slider .btn-base {
		padding: 8px 20px;
	}

	#slider .swiper-tools {
		bottom: 12px;
	}

	#slider .swiper-button-prev {
		margin-right: 10px;
	}

	#slider div[class*=swiper-button-] {
		font-size: 24px;
	}

	/* ---------- marquee ---------- */
	.marquee-section .txt-wrap {
		border: none !important;
	}

	/* ---------- intro ---------- */
	.intro-section .img-wrap::after {
		bottom: -15px;
	}

	.intro-section .img-wrap img {
		width: 74%;
		height: 440px;
	}

	/* intro-section2 */
	.intro-section2 .left-txt p {
		padding: 36px;
	}

	/* ---------- news ---------- */
	.news-carousel.owl-carousel {
		margin-bottom: 0;
	}

	.news-carousel.owl-carousel .owl-item.center .news-item .txt-wrap {
		margin-top: calc(30% + 45px);
	}

	.news-carousel.owl-carousel .owl-item.center .news-item .btn-base {
		right: -100%;
	}

	/* list */
	.list-wrap .news-item {
		margin-bottom: 24px;
	}	
	
	.list-wrap .news-item {
		border-bottom: 0;
	}

	.list-wrap .news-item:nth-child(odd) .row div:nth-child(2) {
		order: 0;
	}

	.list-wrap .row > .news-item .row > div:nth-child(2) {
		order: -1;
	}

	/* ---------- product ---------- */
	.product-section .decoimg-right {
		width: 340px;
	}

	/* ---------- special ---------- */
	.special-wrap .parallax-content {
		font-size: 150px;
	}

	/* ---------- album ---------- */
	.album-img-container {
		max-width: 540px;
	}
}


@media (max-width:575px) {
	/* ---------- base ---------- */
	:root {
		--fs-100: 54px; /*section eng title*/
		--fs-72: 52px; /*special txt red num*/
		--fs-52: 38px; /*banner title*/
		--fs-42: 32px; /*section zh-title*/
		--fs-32: 24px; /*special normal txt*/
		--fs-28: 22px; /*item title*/
		--fs-24: 20px; /*footer title + intro h1 + marquee txt*/
		--cnvs-header-height: 30px;
		--cnvs-section-margin: 60px;
	}

	.btn-base {
		padding: 8px 24px;
		font-size: 15px;
	}

	.cert-wrap.gx-5 {
		--bs-gutter-x: 24px
	}


	/* ---------- header ---------- */
	#header-wrap {
		padding: 8px 0;
	}

	.header-misc {
		margin-left: 8px;
	}

	#top-search a {
		width: 30px;
		height: 30px;
	}

	/* ---------- banner ---------- */
	#slider h6 {
		font-size: 16px;
	}

	#slider .lead {
		display: none;
	}

	#slider .btn-base {
		padding: 4px 12px;
	}

	/*pagination*/
	#slider .swiper-tools {
		right: 50%;
		transform: translateX(50%);
	}

	#slider .swiper-pagination {
		margin-bottom: 0;
	}

	#slider .swiper-pagination span {
		width: 8px;
		height: 8px;
		border: 1px solid var(--cnvs-white);
	}

	#slider .swiper-pagination,
	#slider .swiper-pagination span:first-child {
		font-size: 12px;
	}

	#slider .swiper-pagination span:first-child,
	#slider .swiper-pagination span:last-child {
		margin: 0 5px;
	}

	#slider .swiper-pagination span:hover {
		background-color: var(--cnvs-white);
	}

	/* ---------- marquee ---------- */
	.ticker-wrap .ticker .ticker-item {
		font-size: 18px;
	}

	/* ---------- intro ---------- */
	.intro-section .section {
		margin-top: -20%;
	}

	.intro-section .section-title .zh-title {
		color: var(--cnvs-secondarycolor);
	}

	.intro-section .img-wrap img {
		width: 100%;
		height: 400px;
	}

	.intro-section .img-wrap::after {
		width: 280px;
		right: 4px;
		bottom: -5px;
	}

	/* intro-section2 */
	.intro-section2 .left-txt,
	.intro-section2 .right-txt {
		margin-top: 0;
	}

	.intro-section2 .left-txt {
		padding-top: 60px;
	}
	
	.intro-section2 .left-txt p {
		padding: 24px;
	}

	/* ---------- news ---------- */
	.news-carousel.owl-carousel .owl-stage {
		padding: 0;
	}

	.news-carousel.owl-carousel .owl-item.active.center,
	.news-carousel.owl-carousel .owl-item.center .news-item .btn-base {
		position: static;
	}

	.news-carousel.owl-carousel .owl-item.active.center .img-wrap,
	.news-carousel.owl-carousel .owl-item.active.center .img-wrap:hover img {
		transform: scale(1);
	}

	.news-carousel.owl-carousel .owl-item.center .news-item .txt-wrap {
		margin-top: 24px;
		margin-left: 0;
		width: 100%;
	}

	.news-carousel.owl-carousel .owl-item.center .news-item .btn-base {
		width: fit-content;
		transform: skew(calc(-1* var(--cnvs-btn-skew))) translateX(-4px);
		margin-left: auto;
	}

	.news-carousel.owl-carousel .owl-nav {
		display: none;
	}

	.news-carousel.owl-carousel .owl-dots {
		display: block;
	}

	/* ---------- product ---------- */
	.product-section .decoimg-right {
		top: -2%;
	}

	/* ---------- special ---------- */
	.special-wrap .parallax-wrap {
		background-position: 60% center;
	}

	.special-wrap .parallax-content {
		font-size: 85px;
	}

	/* ---------- album ---------- */
	.album-img-container {
		max-width: 100%;
	}

	.album-section .albumSwiper {
		padding-top: 32px;
	}

	.album-section .albumSwiper2 [class*=swiper-button-] i {
		font-size: 20px;
	}

	.album-section .albumSwiper h3 {
		margin-left: 0;
	}

	.album-section .albumSwiper .swiper-pagination,
	.album-section .albumSwiper2 [class*=swiper-button-] span {
		display: none !important;
	}

	.album-section .albumSwiper2 .nav-line {
		height: 20px;
	}

	/* ---------- footer ---------- */
	.divider img {
		width: 120px;
	}

	#footer .sitemap ul:nth-child(2) li:not(:last-child),
	#footer .sitemap ul:last-child li:not(:last-child) {
		margin-right: 24px;
		width: calc(100% / 4 - 24px);
	}

	.stretched #gotoTop,
	.float-sns-wrap {
		right: 20px;
	}

	/* ---------- contact ---------- */
	.contact-form {
		padding: 36px 30px !important;
	}

	.form-check-input {
		transform: translateY(6px);
	}

	/* ---------- aside ---------- */
	aside .cate-wrap,
	aside .hot-wrap {
		padding: 20px;
	}
}

@media (max-width:429px) {
	/* ---------- banner ---------- */
	#slider h3 {
		font-size: 28px;
	}

	#slider h6,
	#slider .btn-base {
		font-size: 14px;
	}

	/* ---------- intro ---------- */
	.intro-section .img-wrap img {
		height: 320px;
	}

	.intro-section .img-wrap::after {
		bottom: -40px;
	}

	.intro-section .section-title .zh-title {
		color: var(--cnvs-white);
	}

	/* ---------- footer ---------- */
	#footer .sitemap ul:nth-child(2) li:not(:last-child),
	#footer .sitemap ul:last-child li:not(:last-child) {
		margin-right: 24px;
		width: calc(100% / 2 - 24px);
	}

	/* ---------- contact ---------- */
	.contact-form {
		padding: 32px 24px !important;
	}

	/* ---------- aside ---------- */
	aside form button {
		width: 36px;
		height: 36px;
	}

	/* ---------- pagination + nodata ---------- */
	.page-link {
		width: 36px;
		height: 36px;
	}

	/* ---------- product ---------- */
	.nav {
		--bs-nav-link-padding-x: 12px;
	}
}