@media (max-width: 1400px) {
	.pc {
		display: none !important;
	}

	.mb {
		display: block !important;
	}

	main {
		padding-top: 72px;
	}

	.container {
		width: 100%;
		padding: 0 16px;
	}

	.mobile-mode .header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 72px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 12px;
		z-index: 999;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
		box-sizing: border-box;
	}

	.mobile-mode .logo {
		max-width: 50px;
	}

	.mobile-mode .nav-modal-overlay {
		display: block;
		position: fixed;
		top: 0;
		right: -110vw;
		width: 100vw;
		height: 100vh;
		background-color: rgba(255, 123, 20, 0.6);
		z-index: 10002;
		padding: 24px;
		transition: right 0.3s ease;
		box-sizing: border-box;
		overflow-y: auto;
	}

	.mobile-mode .nav-modal-overlay.active {
		right: 0;
	}

	.mobile-mode .nav-modal {
		display: block;
		position: fixed;
		top: 0;
		right: -110vw;
		width: 80vw;
		height: 100vh;
		background-color: #ffffff;
		z-index: 10003;
		padding: 24px;
		transition: right 0.5s ease;
		box-sizing: border-box;
		overflow-y: auto;
	}

	.mobile-mode .nav-modal.active {
		right: 0;
	}

	/* 增加轉兩圈後，停止的動畫效果 */
	.mobile-mode .nav-modal.active #closeBtn {
		animation-name: spinTwoTimes;
		/* 指定动画名称 */
		animation-duration: 1s;
		/* 动画持续时间，例如1秒完成两圈 */
		animation-timing-function: ease-out;
		/* 动画速度曲线，ease-out让结束更平滑 */
		animation-iteration-count: 1;
		/* 动画播放次数：1次（旋转两圈后停止） */
		animation-fill-mode: forwards;
		/* 动画结束后保持最后一帧的状态（即保持720度旋转） */
	}

	@keyframes spinTwoTimes {
		0% {
			transform: rotate(0deg);
		}

		100% {
			transform: rotate(360deg);
		}
	}


	#nav-modal .service_dropdown {
		display: none;
		padding-left: 16px;
	}

	.mobile-mode .sec-blue-title {
		padding-top: 60px !important;
	}

	.mobile-mode .modal-logo {
		max-width: 50px;
	}

	.mobile-mode .header-btn-icon {
		width: 24px;
		height: 24px;
		position: absolute;
		top: 26px
	}

	.search-icon {
		width: 32px;
		height: 32px;
		top: 50%;
		right: 62px;
		position: absolute;
		transform: translateY(-50%);
	}

	.mobile-mode .nav-list {
		list-style: none;
		padding: 24px 0px 0px 0px;
		flex-wrap: wrap;
	}

	.mobile-mode .nav-list li {
		border-bottom: 1px solid rgba(0, 0, 0, 6%);
	}

	.mobile-mode .nav-list li a {
		text-decoration: none;
		display: block;
		line-height: 24px;
		color: #626262;
		font-size: 15px;
		font-weight: 400;
		padding: 15px 0px;
	}

	.mobile-mode .nav-list li.active>a {
		color: var(--main-color);
	}

	.mobile-mode .nav-list li.active .service-area-a,
	.mobile-mode .nav-list li.active .news-area-a {
		color: var(--main-color);
	}

	.mobile-mode .nav-list li li {
		list-style: none;
	}

	.mobile-mode .nav-list li li a {
		color: #464646;
	}

	.mobile-mode .lan-btns {
		display: flex;
		justify-content: center;
		line-height: 46px;
		color: var(--font-color);
		font-size: 18px;
		letter-spacing: 6px;
	}

	.mobile-mode .lan-btns .lan-btn.active {
		font-weight: bold;
	}

	.mobile-mode .mobile-tooltip,
	.mobile-mode .mobile-newstip {
		display: none;
	}

	/* 当添加.open类时显示二级菜单 */
	.mobile-mode .mobile-tooltip.open,
	.mobile-mode .mobile-newstip.open {
		display: block;
	}

	.mobile-mode #closeBtn {
		position: absolute;
		top: 24px;
		right: 20px;
		color: #333333;
		font-size: 20px;
		cursor: pointer;
	}

	.mobile-mode #pxl-nav-mobile {
		display: block;
		position: absolute;
		top: 50%;
		right: 15px;
		-webkit-transform: translate(0, -50%);
		-khtml-transform: translate(0, -50%);
		-moz-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		-o-transform: translate(0, -50%);
		transform: translate(0, -50%);
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.mobile-mode .pxl-nav-mobile-button {
		/* width: 30px;
		height: 20px; */
		width: 32px;
		height: 32px;
		position: relative;
		cursor: pointer;
	}

	.mobile-mode .pxl-nav-mobile-button img {
		max-width: 100%;
		height: auto;
	}

	.mobile-mode #footerContainer {
		display: none;
	}

	.mobile-mode #mobileFooter {
		display: flex;
		width: 100vw;
		padding: 16px;
		background-color: rgb(22, 23, 26);
		display: flex;
		flex-flow: column;
		align-items: center;
		box-sizing: border-box;
		/* border-top: 1px solid #C6C6C6; */
		position: relative;
		overflow: hidden;
	}

	.mobile-mode #mobileFooter::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: url(../image/footer-shape1.svg);
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		animation: rippleBackground 5s infinite ease-in-out;
	}

	@keyframes rippleBackground {
		0% {
			transform: translate(0, 0);
			scale: 1;
		}

		25% {
			transform: translate(-1px, 1px);
			scale: 1.02;
		}

		50% {
			transform: translate(1px, -1px);
			scale: 1.03;
		}

		75% {
			transform: translate(1px, 1px);
			scale: 1.02;
		}

		100% {
			transform: translate(0, 0);
			scale: 1;
		}
	}

	.mobile-mode #mobileFooter .footer-container {
		z-index: 1;
	}

	.mobile-mode #mobileFooter .logo-big-icon {
		width: 50px;
		margin-bottom: 17px;
	}

	.mobile-mode #mobileFooter .f-detail {
		font-family: var(--font-family);
		font-weight: 400;
		font-size: 11px;
		color: #ffffff;
		line-height: 13px;
		padding-bottom: 10px;
		display: flex;
		flex-wrap: wrap;
		padding-right: 12px;
	}

	.mobile-mode #mobileFooter .f-detail .f-nav {
		/* font-family: PingFang SC, PingFang SC; */
		font-weight: 400;
		font-size: 11px;
		color: #ffffff;
		line-height: 13px;
	}

	.mobile-mode #mobileFooter .f-detail .f-nav {
		color: #ffffff;
		padding-left: 12px;
		padding-right: 12px;
		position: relative;
	}

	.mobile-mode #mobileFooter .f-detail .f-nav a {
		/* cfont-family: PingFang SC, PingFang SC; */
		font-weight: 400;
		font-size: 11px;
		color: #ffffff;
		line-height: 13px;
		padding-bottom: 14px;
		display: inline-block;
		position: relative;
	}

	.mobile-mode #mobileFooter .f-detail .f-nav:not(:last-child)::after {
		content: '';
		position: absolute;
		right: 12px;
		width: 1px;
		height: 11px;
		border-left: 1px solid #ffffff;
		top: 6%;
		right: 0;
	}

	.mobile-mode #mobileFooter #copyright {
		padding-top: 14px;
	}

	.mobile-mode #mobileFooter #copyright a {
		padding-top: 0;
	}

	.mobile-mode #mobileFooter #copyright,
	.mobile-mode #mobileFooter #copyright a {
		/* font-family: PingFang SC, PingFang SC; */
		font-weight: 400;
		font-size: 10px;
		color: #626262;
		line-height: 12px;
		border-top: none;
	}

	.mobile-mode #mobileFooter .social-btns {
		padding-top: 14px;
	}

	.mobile-mode #footerContainer .blue-wrapper .txt-wrapper {
		flex-wrap: wrap;
		width: 100vw;
		box-sizing: border-box;
		padding: 24px;
	}

	.mobile-mode #footerContainer .blue-wrapper .txt-wrapper .item {
		line-height: 32px;
		font-size: 16px;
	}

	.mobile-mode #footerContainer .black-wrapper .txt-wrapper {
		width: 90vw;
		flex-wrap: wrap;
		box-sizing: border-box;
	}

	.mobile-mode #footerContainer .left-container {
		padding-right: 0px;
		flex-flow: column;
		align-items: flex-start;
		border: none;
	}

	.mobile-mode #footerContainer .nav-item-list {
		padding-right: 12px;
	}

	.mobile-mode #footerContainer .right-container {
		padding-top: 32px;
		display: flex;
		justify-content: center;
		width: 100%;
		border: none;
		padding-left: 0px;
	}

	.mobile-mode #footerContainer .nav-list {
		flex-flow: column;
	}

	.mobile-mode #footerContainer .lvl-2 {
		display: none;
	}

	.mobile-mode #footerContainer .contact {
		padding-left: 0px;
	}

	.mobile-mode #footerContainer .blue-wrapper img {
		margin-top: 4px;
	}

	.mobile-mode #footerContainer .black-wrapper {
		font-size: 18px;
	}

	.mobile-mode .btn-wrapper .blue-div,
	.mobile-mode .btn-wrapper .btn-arrow {
		display: none;
	}

	.mobile-mode .btn-wrapper {
		width: auto;
		height: auto;
		background-color: var(--main-color);
		padding: 6px 24px;
		line-height: 25px;
	}

	.mobile-mode .btn-wrapper .btn-txt {
		color: #ffffff;
		font-size: 16px;
		position: relative;
		left: auto;
		top: auto;
		bottom: auto;
	}

	.my-container {
		width: 100%;
	}

	/* footer -start */
	.footer {
		width: 100vw;
	}

	.footer-logo {
		margin-bottom: 6px;
	}

	.footer-logo-title {
		font-size: 18px;
	}

	.footer-logo-subtitle {
		font-size: 16px;
	}

	.footer-column {
		width: 100%;
	}

	.footer-column.contact-us {
		align-items: center;
	}

	.footer-column>p {
		font-size: 14px;
	}

	.footer-app-title {
		text-align: center;
	}

	.footer-app-download {
		margin-top: 0;
	}

	.footer-app-buttons {
		justify-content: center;
	}

	.footer-app-buttons span {
		text-align: center;
	}

	.footer-content {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
	}

	.footer-column .footer-heading {
		text-align: center;
	}

	.footer-column .footer-heading::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.footer-column.quick-links ul {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		gap: 10px;
	}

	.footer-column.core-services ul {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.footer-column.core-services ul li {
		width: 48%;
	}

	.footer-column.core-services ul li:nth-child(2n - 1) {
		text-align: right;
	}

	.hero-cta {
		font-size: 14px;
		width: 160px;
		padding: 8px 16px;
	}

	.footer-heading {
		font-size: 16px;
	}

	.footer-column>ul a {
		font-size: 14px;
	}

	.footer-column>ul li {
		margin-bottom: 8px;
	}

	.footer-column .contact-item a,
	.footer-column .contact-item span {
		font-size: 14px;
	}

	.footer-column .contact-item {
		margin-bottom: 8px;
	}

	.footer-column.contact-us .footer-heading::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.contact-item i {
		line-height: 24px;
	}

	.footer-content {
		margin-bottom: 40px;
	}

	.footer-bottom {
		padding: 12px 0;
	}

	.footer-bottom-content {
		gap: 2px;
	}

	.footer-legal-links a,
	.copyright {
		font-size: 12px;
	}

	/* footer -end */

	/* section標題 -start */
	.section-header {
		margin-bottom: 20px;
	}

	.section-title {
		font-size: 26px;
		margin-bottom: 6px;
	}

	.section-header>p {
		font-size: 15px !important;
		margin-top: 8px !important;
	}

	/* section標題 -end */

	/* 聯繫我們 -start */
	.contact-section {
		min-height: 200px;
	}

	.contact-banner-seciton .contact-title {
		font-size: 28px;
		margin-bottom: 12px;
	}

	.contact-banner-seciton .btn-mirror {
		width: 130px;
		font-size: 14px;
	}

	/* 聯繫我們 -end */

	/* 聯絡我們 - start */
	#contactSection {
		background-attachment: initial !important;
	}

	#contactSection .my-contact {
		padding-left: 40px;
		padding-right: 40px;
	}

	#contactSection .section-sub-title {
		font-size: 14px;
	}

	#contactSection .section-title {
		font-size: 28px;
		margin-bottom: 12px;
	}

	#contactSection .my-contact {
		padding: 36px 20px;
	}

	#contactSection .section-description a {
		width: 222px;
	}

	#contactSection .section-description p {
		color: #ffffff;
		text-align: center;
		padding-left: 0;
		padding-right: 0;
		margin-bottom: 4px;
	}

	#contactSection .contact-item {
		margin-bottom: 0;
	}

	#contactSection .my-container {
		padding: 60px 0;
	}

	#contactSection .section-header {
		margin-bottom: 24px;
	}

	.section-description {
		margin-bottom: 12px;
	}

	/* 聯絡我們 - end */

	/* 子頁banner -start */
	.hero-section {
		height: 200px;
		min-height: 200px;
	}

	.hero-section .hero-content h1 {
		font-size: 26px;
		margin-bottom: 4px;
	}

	.hero-section .hero-content p {
		font-size: 17px;
		margin-bottom: 0;
	}

	/* 子頁banner -end */

	/* 規格與細節 -start */
	.specification-section {
		padding: 40px 0;
	}
	
	#specification .product-item {
		width: auto;
	}

	.product-gallery {
		margin-bottom: 20px;
	}

	.filter-number {
		font-size: 14px;
	}

	.filter-name {
		font-size: 14px;
	}

	.spec-title {
		padding-bottom: 8px;
		margin-bottom: 12px;
	}

	.info-item {
		padding: 8px 0;
	}
	/* 規格與細節 -end */
}