@media screen and (max-width: 1280px) {
	.pc,
	.my-section.pc {
		display: none !important;
	}

	.mb {
		display: block !important;
	}

	.mobile-mode main {
		margin-top: 72px;
	}

	.my-section {
		padding: 30px 0px;
	}

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

	.mobile-mode .header {
		/* background: linear-gradient(121deg, #ffefd3 0%, #f9ece3 56%, #ffefd3 97%); */
		background: #ffffff;
		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: 46px;
		color: #626262;
		font-size: 15px;
		font-weight: 600;
	}

	.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); */
		background: linear-gradient(121deg, #ffefd3 0%, #f9ece3 56%, #ffefd3 97%);
		display: flex;
		flex-flow: column;
		align-items: center;
		box-sizing: border-box;
		/* border-top: 1px solid #C6C6C6; */
		position: relative;
		overflow: hidden;
	}

	@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: #333333;
		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: #333333;
		line-height: 13px;
	}

	.mobile-mode #mobileFooter .f-detail .f-nav {
		color: #333333;
		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: #333333;
		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 #333333;
		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%;
	}

	#cartModal {
		right: -150%;
	}

	.blue-title {
		/* font-family: PingFang SC, PingFang SC !important; */
		font-weight: 500 !important;
		font-size: 16px !important;
		color: var(--font-color) !important;
		line-height: 19px !important;
		padding-left: 8px !important;
		letter-spacing: 1.5px !important;
		position: relative !important;
		text-stroke: inherit !important;
		-webkit-text-stroke: inherit !important;
		padding-top: 0 !important;
		padding-bottom: 0px !important;
	}

	.blue-title::before {
		content: '' !important;
		width: 3px !important;
		height: 14px !important;
		background-color: var(--main-color) !important;
		position: absolute !important;
		left: 0 !important;
		top: 55% !important;
		transform: translateY(-50%) !important;
	}

	.pc {
		display: none;
	}

	.mobile {
		display: block;
	}

	.search-modal {
		padding: 20px;
		min-width: 80vw;
	}

	.search-modal .search-wrapper .input-wrapper {
		width: auto;
		flex: 1;
	}

	.my-section {
		width: 100%;
		padding: 60px 16px;
	}

	#headerContainer .page-title {
		font-size: 26px;
		top: 50%;
	}

	#headerContainer,
	.elementor-video {
		width: 100%;
	}

	.section-sub-title {
		font-size: 16px;
		line-height: 26px;
		margin-bottom: 8px;
		display: flex;
		justify-content: center;
	}

	.section-title {
		font-size: 26px;
		line-height: 32px;
		margin-bottom: 12px;
		text-align: center;
	}

	.section-desc,
	.section-content p {
		font-size: 16px;
		line-height: 28px;
		color: #646464;
	}

	.my-container .left-wrapper,
	.my-container .right-wrapper {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	#productSwiper {
		height: 150px !important;

	}

	.product-wrapper {
		height: 150px !important;
		margin-bottom: 30px;
	}

	.bubbles {
		height: 150px;
	}

	.layui-carousel-ind ul li {
		width: 6px;
		height: 6px;
	}

	.layui-carousel-ind {
		top: -30px;
	}

	.layui-carousel-ind ul li {
		width: 6px;
		height: 6px;
	}



}