@font-face {
  font-family: 'OswaldHeavy';
  src: url('/_fonts/OswaldHeavy.woff2') format('woff2');
  font-display: swap;
}
@font-face {
	font-family: 'syhtNormal';
	src: local('思源黑体 CN Normal');
}

*{
	line-height: normal;
	font-family: 'syhtNormal', sans-serif;
	font-weight: normal;
}

a,a:active,a:focus{
	outline: none;
}
button,button:active,button:focus{
	outline: none;
}
input,input:active,input:focus{
	outline: none;
}

body{
	position: relative;
}

:root {
	--overlay-bg: rgba(0, 0, 0, 0.5);
	--popup-bg: white;
}

body header{
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 11;
	/* background-color: rgba(0, 0, 0, 0.2); */
}
body header.compressed {
	background-color: #fff;
	color: #000;
	transition: all 0.4s ease;
}
body header .headerDiv{
	margin: auto;
	height: 60px;
	max-width: 1820px;
	padding: 0 10px;
	width: 100%;
	color: #fff;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	transition: transform .4s cubic-bezier(.46,.01,.32,1);
}
body header .headerDiv.active{
	transform: translate(-300px);
}

body header .logo, body header nav, body header .wechat, body header .search, body header .lang, body header nav>ul>li{
	display: inline-block;
}

body header a{
	color: #fff;
}

body header.compressed a{
	color: #000;
}

body header .logo a img{
	height: 50px;
}

body header nav{
	font-size: 0.9rem;
	line-height: 1.5rem;
	flex: 1;
}
body header nav>ul{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}
body header nav>ul>li{
	margin: 0 10px;
	position: relative;
}
body header nav>ul>li>a{
	display: flex;
	flex-direction: row;
	height: 60px;
	transition: all 0.3s ease-in-out;
	align-items: center;
	border-bottom: 2px solid #F9F95B00;
	padding: 0 5px;
	font-size: 14px;
}
body header nav>ul>li>a p{
	position: relative;
}
body header nav>ul>li>a p span{
	position: absolute;
	right: -5px;
	bottom: -5px;
	padding: 0 5px;
	border-radius: 7.5px;
	background-color: red;
	color: #fff;
	font-size: 0.625rem;
	display: none;
}
body header nav>ul>li>a i.fa-search{
	font-size: 20px;
}
body header nav>ul>li>a i.fa-shopping-basket{
	font-size: 18px;
}
body header nav>ul>li i{
	margin-left: 5px;
}
body header nav>ul .focus>a{
	border-bottom: 2px solid #fff;
}
body header nav>ul>li>a:hover{
	/* font-size: 0.95rem; */
	border-bottom: 2px solid #fff;
}
body header nav>ul>li .children{
	position: absolute;
	background-color: #fff;
	border-radius: 10px;
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
	display: none;
	overflow: hidden;
	z-index: 2;
}
body header nav>ul>li:hover .children{
	display: block;
}
body header nav>ul>li:hover .children:after{
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	height: 0;
	font-size: 0;
	border-width: 5px;
	border-style: solid;
	border-color: #F9F95B transparent transparent transparent ;
}
body header nav>ul>li .children li{
	font-size: 16px;
	white-space: nowrap;
	color: #333;
	text-align: center;
	padding: 0 10px;
}
body header nav>ul>li .children li:hover{
	background-color: #285BDC;
	color: #fff;
}
body header nav>ul>li .children li:hover a{
	background-color: #285BDC;
	color: #fff;
}
body header nav>ul>li .children li a{
	color: #333;
	font-size: 16px;
	padding: 10px;
	display: block;
}

body header .btns{
	display: flex;
	flex-direction: row;
	align-items: center;
}
body header .wechat{
	width: 98px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	color: #fff;
	font-size: 16px;
	background: #285BDC;
	margin-left: 15px;
	cursor: pointer;
}
body header.compressed .wechat{
	background: #fff;
	color: #0c48ff;
}

body header .search{
	margin-left: 30px;
	width: 1.5rem;
	height: 1.5rem;
	cursor: pointer;
}
body header .search span{
	width: 100%;
	height: 100%;
	font-size: 1.5rem;
	color: #fff;
	transform: rotate(-45deg);
}

body header .lang{
	margin-left: 30px;
	letter-spacing: 2px;
	font-weight: lighter;
}
body header .lang span{
	font-size: 18px;
}
body header .lang a{
	font-size: 16px;
	font-weight: lighter;
}

#pageContainer{
	transition: transform .4s cubic-bezier(.46,.01,.32,1);
}
.pageContainer-active{
	position: relative;
	transform: translateX(-300px);
}

/* 二级导航栏 */
.searchDiv{
    width: 100%;
    background-color: #fffffff5;
    height: 0px;
    position: fixed;
    z-index: 8;
    top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: height 0.3s ease;
}
.searchInputDiv{
    width: 50%;
    text-align: center;
}
.searchInput{
    border: none;
    border-bottom: 1px solid #666;
    font-size: 1rem;
    line-height: 1.3;
    padding: 0 3px;
    width: 75%;
}
.searchButton{
    color: #666;
    font-size: 1.5rem;
    line-height: 1.3;
    cursor: pointer;
}
.searchButton span{
    transform: rotate(-45deg);
}

.dropDownDiv {
	position: fixed;
	z-index: 10;
	top: 100px;
	width: 100%;
	height: 0px;
	left: 0%;
	background-color: rgba(0, 0, 0, 0.4);
	overflow: hidden;
	transition: height 0.3s ease;
}
.dropDownDiv .inner{
	max-width: 1400px;
	margin: 0 auto;
}
.dropDownDiv ul {
	position: relative;
	display: flex;
	height: 100%;
	flex-wrap: wrap;
	flex-direction: row;
	display: none;
	justify-content: space-around;
}
.dropDownDiv ul.active{
	display: flex;
}
.dropDownDiv ul li {
	padding-top: 1rem;
	text-align: center;
	height: 100%;
	border-bottom: 5px solid #F9F95B00;
}
.dropDownDiv ul li:hover {
	border-bottom: 5px solid #F9F95B;
}
.dropDownDiv ul li img {
	width: 90%;
	display: block;
	margin: 0 auto;
}
.dropDownDiv ul li h3 {
	font-weight: normal;
	padding: 1rem;
	font-size: 0.8rem;
	letter-spacing: 1px;
	color: #fff;
}
.dropDownDiv ul li a {
	color: #333;
}

/* ---------------------------------------------------------- */
.footer-container {
    max-width: 1200px;  /* 适配大部分桌面布局 */
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;  /* 适配移动端 */
    justify-content: space-between;
    align-items: flex-start;
}

/* 左侧：Logo + 菜单 */
.footer-left {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}
.footer-logo img {
    width: 140px;
    height: 140px;
}
.footer-menu h3, .footer-contact h3, .footer-newsletter h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #000;
}
.footer-menu ul {
    list-style: none;
}
.footer-menu li {
    margin: 6px 0;
    font-size: 14px;
}
.footer-menu li a, .footer-contact a {
	color: #888;
	font-size: 13px;
}

/* 中间：联系信息 */
.footer-contact {
    margin-top: 0px; 
}

.footer-contact p {
    font-size: 13px;
    line-height: 1.6;
    color: #999;
	margin: 20px 0px;
}
.footer-contact p.p1 strong{
	font-size: 13px;
	font-weight: 600;
	color: #666;
}

/* 右侧：订阅 */
.footer-newsletter {
    margin-top: 0px; 
}
.newsletter-form {
    display: flex;
}
.newsletter-form input {
    width: 200px;
    padding: 10px 12px;
    border: 2px solid #000;
    font-size: 14px;
}
.newsletter-form button {
    padding: 6px 16px;
    border: none;
    background-color: #000; 
	border: 2px solid #000;
	border-left: none;
    color: #fff;
    cursor: pointer;
	font-size: 26px;
    transition: background 0.2s;
}
.newsletter-form button:hover {
    background-color: #fff;
	color: #000;
}

/* 底部：版权 + 支付 + 社交 */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px;
    text-align: center;
}
.footer-bottom .copyright-p {
    font-size: 12px;
    color: #888;
}
.footer-bottom .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}
.footer-bottom .social-icons a {
    font-size: 20px; 
	width: 25px;
	height: 25px;
	line-height: 25px;
}
.footer-bottom .social-icons a.fa-facebook{
	color: #fff;
	background-color: #000;
}
.footer-bottom .social-icons a.fa-instagram{
	font-size: 28px;
	color: #000;
}
.footer-bottom .payment-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 12px 0;
}
.footer-bottom .payment-icons ul.payment-icons-list li {
    font-size: 22px;
    display: inline-block;
    list-style: outside none none;
    margin: 5px 10px 0 0;
}
.footer-bottom .payment-icons ul.payment-icons-list li .payment-icon{
	width: 32px;
}

	
/* ---------------------------------------------------------- */

/* 页面底部 */
footer{
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.footerDiv{
	margin: auto;
	width: 100%;
	max-width: 1420px;
	box-sizing: border-box;
	padding: 100px 10px;
	padding-bottom: 40px;
	margin: 0 auto;
	color: #fff;
}
.footerDiv a{
	color: #fff;
}
.navDiv{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.navDiv .logo{
	width: 20%;
}
.navDiv .logo img{
	width: 80%;
}
.navDiv nav{
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-between;
}
.navDiv nav dl dt{
	font-size: 18px;
	margin-bottom: 5px;
	font-weight: normal;
}
.navDiv nav dl dd{
	padding-top: 10px;
	font-size: 16px;
	font-weight: lighter;
}
.navDiv nav dl dd a{
	font-weight: lighter;
}
.contactDiv{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
}
.contact{
	
}
.contact h3{
	font-size: 1.8125rem;
	padding-bottom: 1.1rem;
	font-weight: 500;
}
.contact ul li{
	font-size: 16px;
	padding-bottom: 0.6rem;
}
.contact ul li i{
	margin-right: 5px;
}
.QRcode{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.QRcode .QRcode-item{
	padding: 0 25px;
	position: relative;
}
.QRcode .QRcode-item:after{
	content: '';
	position: absolute;
	right: 0;
	top: 18px;
	width: 1px;
	height: 38px;
	background-color: #7491C8;
}
.QRcode .QRcode-item:last-child:after{
	display: none;
}
.QRcode .QRcode-item img{
	max-width: 70px;
}
.QRcode .QRcode-item p{
	font-size: 12px;
	text-align: center;
}

.copyright{
	width: 100%;
	text-align: center;
	margin-top: 5rem;
}
.copyright p{
	font-size: 16px;
}

/* 弹窗样式 */
.getQuoteDiv{
	display: none;
	position: fixed;
	top: 0%;
	left: 0%;
	z-index: 101;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 0 10px;
	background-color: rgba(0, 0, 0, 0.6);
}
.getQuoteDiv .getQuoteDiv-inner{
	position: relative;
	max-width: 1040px;
	width: 100%;	
	background-color: var(--popup-bg);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.getQuoteDiv.show {
	display: flex;
}
.getQuoteDiv h3{
	width: 100%;
	height: 54px;
	display: flex;
	align-items: center;
	background-image: url(../_image/web_getquote_windows_03.png);
	font-weight: normal;
	position: relative;
	z-index: 3;
}
.getQuoteDiv h3 i {
	position: absolute;
	right: 45px;
	top: 50%;
	transform: translateY(-50%);
	width: 27px;
	height: 27px;
	cursor: pointer;
	background-image: url(../_image/web_getquote_windows_close_05.png);
	background-repeat: no-repeat;
}
.getQuoteDiv h3 img{
	height: 32px;
	vertical-align: middle;
	margin-left: 45px;
}
.getQuoteDiv h3 span{
	margin: 0.5rem 0 0.5rem 0;
	padding-left: 0.8rem;
	line-height: 1rem;
	color: #fff;
	font-size: 1rem;
	height: 25px;
	line-height: 25px;
	position: relative;
	margin-left: 20px;
	font-size: 16px;
}
.getQuoteDiv h3 span::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background-color: #fff;
}
.windowContent{
	display: flex;
	flex-direction: row;
}
.getQuoteDiv .success .windowContent{
	opacity: 0;
}
.getQuoteDiv .successDiv{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
	flex-direction: column;
	justify-content: center;
	z-index: 2;
}
.getQuoteDiv .success .successDiv{
	display: flex;
}
.windowContent > dt, .windowContent > dd{
	padding-bottom: 30px;
}
.windowContent > dt{
	flex: 5.5;
}
.windowContent > dd{
	flex: 4.5;
	padding-top: 25px;
}
.fengmian {
	position: relative;
}
.fengmian h4{
	color: #0c48ff;
	position: absolute;
	left: 45px;
	top: 20px;
	font-size: 18px;
	font-weight: 600;
}
.contactIntro{
	gap: 10px;
	margin-left: 35px;
}
.windowContent > dt ul{
	margin-top: 20px;
	padding-left: 40px;
}
.windowContent > dt ul li{
	margin-left: -0.35rem;
	padding-bottom: 1.6rem;
	color: #333333;
	font-size: 1.2rem;
	line-height: 1;
	position: relative;
}
.windowContent > dt ul li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0.34rem;
	width: 2px;
	height: 100%;
	background-color: #0c48ff;
	z-index: 1;
}
.windowContent > dt ul li:first-child::before{
	top: 0.5rem;
	height: calc(100% - 0.5rem);
}
.windowContent > dt ul li:last-child::before{
	height: 0.5rem;
}
.windowContent > dt ul li h5{
	display: flex;
	flex-direction: row;
	align-items: center;
	font-size: 18px;
}
.windowContent > dt ul li h5 .icon{
	margin-right: 0.5rem;
	font-size: 9px;
	width: 0.8rem;
	height: 0.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border: 1px solid #0c48ff;
	border-radius: 50%;
	position: relative;
	z-index: 2;
}
.windowContent > dt ul li i{
	color: #0c48ff;
}
.windowContent > dt ul li p{
	margin-left: 1.4rem;
	padding-top: 0.8rem;
	padding-bottom: 1.3rem;
	font-size: 16px;
	color: #646464;
	border-bottom: 1px solid #ccc;
}
.windowContent > dt ul li:last-child p{
	border-bottom: none;
	margin-bottom: 0;
}
.windowContent > dt ul li:last-child{
	padding-bottom: 0.5rem;
}

.contactIntro {
	width: 92%;
	display: flex;
	font-size: 12px;
	line-height: 1.8;
}
.contactIntro dt{
	flex: 7;
}
.contactIntro dt span{
	display: block;
	color: #666;
	padding-bottom: 1.2rem;
}
.contactIntro dd{
	flex: 3;
	padding-top: 0.5rem;
	text-align: center;
}

.windowContent > dd h5{
	font-size: 1rem;
	margin-left: 2rem;
	font-size: 18px;
}
.windowContent > dd ul{
	margin: 0 2rem;
	margin-top: 25px;
}
.windowContent > dd ul li{
	margin-bottom: 25px;
	font-size: 16px;
}
.windowContent > dd ul li p{
	font-size: 16px;
}
.windowContent > dd ul li i{
	color: #f00;
	font-style: normal;
	display: inline-block;
	padding-right: 0.4rem;
}
.windowContent > dd ul li input[type="text"] {
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 100%;
	box-sizing: border-box;
	padding-left: 10px;
	height: 50px;
	line-height: 50px;
	margin-top: 15px;
}
.windowContent > dd .msg-ipt{
	margin: 0 2rem;
}
.windowContent > dd .msg{
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 100%;
	box-sizing: border-box;
	padding-left: 10px;
	height: 50px;
	line-height: 50px;
}
.windowContent > dd ul li input[type="text"]::placeholder {
	color: #ccc;
}
.windowContent > dd ul.checkList li{
	padding-top: 0;
}
.checkList {
	display: flex;
}
.checkList label {
	padding-right: 1.5rem;
}
.windowContent > dd .sub-box{
	margin: 0 2rem;
}
.windowContent > dd .sub-box button {
	display: flex;
	width: 100%;
	height: 58px;
	align-items: center;
	justify-content: center;
	background-color: #285BDC;
	font-size: 26px;
	font-weight: 500;
	margin-top: 25px;
	border-radius: 29px;
	text-align: center;
	color: #fff;
	cursor: pointer;
}
.successDiv{
	max-width: 1420px;
	width: 100%;
	box-sizing: border-box;
	padding: 100px 10px;
	margin: 0 auto;
	text-align: center;
}
.successDiv img{
	max-width: 250px;
	display: block;
	margin: 0 auto;
}
.successDiv h4{
	font-size: 30px;
	color: #285BDC;
}
.successDiv p{
	color: #999;
	font-size: 18px;
	margin-top: 20px;
}
/* 定义基础大小和位置 */
.successDiv .circle-progress {
  width: 60px;
  height: 60px;
  position: relative;
  margin: 0 auto;
  margin-top: 20px;
}
.successDiv .circle-progress span{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 3;
	font-size: 24px;
	color: #285BDC;
}
/* 圆圈的基本样式 */
.successDiv .circle {
  width: 100%;
  height: 100%;
  border-radius: 50%; /* 将正方形变为圆形 */
  background-color: transparent; /* 背景透明 */
  border: 8px solid #D9D9D9; /* 外圈灰色线条 */
  border-left-color: #285BDC; /* 左边蓝色线条作为起始点 */
  animation: spin 2s linear infinite; /* 动画名称、时长、速度曲线、重复次数 */
}
/* 实现旋转动画 */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.mobile-menu {
	width: 30px;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-left: 10px;
}
.mobile-menu span{
	display: block;
	width: 100%;
	height: 3px;
	background: #FFFFFF;
	margin: 3px 0;
	border-radius: 1.5px;
	transition: all .3s linear;
}
.mobile-menu.active span:nth-child(1) {
    transform: rotate(32deg) translateX(2px);
    transform-origin: left;
}
.mobile-menu.active span:nth-child(2) {
	opacity: 0;
}
.mobile-menu.active span:nth-child(3) {
	transform: rotate(-32deg) translateX(2px);
	transform-origin: left;
}

.default-btn{
	background-color: #285BDC;
	color: #fff;
	transition: all .3s linear;
}
.default-btn:hover{
	background-color: #fff;
	color: #285BDC;
}
.default-btn-border{
	background-color: #285BDC;
	color: #fff;
	border: 1px solid #285BDC;
	transition: all .3s linear;
}
.default-btn-border:hover{
	background-color: #fff;
	color: #285BDC;
}

.default-title{
	text-align: center;
}
.default-title h2{
	font-size: 28px;
	color: #333;
	padding-bottom: 20px;
	position: relative;
}
.default-title h2:after{
	content: '';
	position: absolute;
	left: 50%;
	margin-left: -40px;
	bottom: 0;
	width: 80px;
	height: 2px;
	background-color: #d3d3d3;
}
.default-title p{
	margin-top: 20px;
	font-size: 18px;
	line-height: 32px;
}
.default-title-white h2{
	color: #fff;
}
.default-title-white p{
	color: #fff;
}
.default-title-black h2{
	color: #000;
}
.default-title-black p{
	color: #000;
}
.default-title-border-yellow h2{
	color: #fff;
}
.default-title-border-yellow h2:after{
	background-color: #FFFF18;
}

/* akd */
.akd-default-btn1{
	border: 2px solid red;
	background-color: red;
	color: #fff;
	transition: all .3s linear;
	background-image:
	    linear-gradient(to right, #fff, #fff),  /* 左侧背景 */
	    linear-gradient(to left, #fff, #fff);   /* 右侧背景 */
	background-size: 0% 100%, 0% 100%;       /* 初始宽度为0 */
	background-position: left, right;        /* 分别定位到左右两侧 */
	background-repeat: no-repeat;
	transition: all 0.4s ease;
	
}
.akd-default-btn1:hover{
	background-size: 51% 100%, 51% 100%;    /* 悬停时两侧同时扩展到50% */
	color: red;
}

.akd-default-btn2{
	border: 2px solid #000;
	background-color: #fff;
	color: #000;
	transition: all .3s linear;
	background-image:
	    linear-gradient(to right, #000, #000),  /* 左侧背景 */
	    linear-gradient(to left, #000, #000);   /* 右侧背景 */
	background-size: 0% 100%, 0% 100%;       /* 初始宽度为0 */
	background-position: left, right;        /* 分别定位到左右两侧 */
	background-repeat: no-repeat;
	transition: all 0.4s ease;
	
}
.akd-default-btn2:hover{
	background-size: 51% 100%, 51% 100%;    /* 悬停时两侧同时扩展到50% */
	color: #fff;
}
.akd-default-btn3{
	border: 2px solid #ccc;
	background-color: #fff;
	color: #ccc;
	transition: all .3s linear;
	background-image:
	    linear-gradient(to right, #ccc, #ccc),  /* 左侧背景 */
	    linear-gradient(to left, #ccc, #ccc);   /* 右侧背景 */
	background-size: 0% 100%, 0% 100%;       /* 初始宽度为0 */
	background-position: left, right;        /* 分别定位到左右两侧 */
	background-repeat: no-repeat;
	transition: all 0.4s ease;
	cursor: not-allowed;
	
}
.akd-default-btn3:hover{
	background-size: 51% 100%, 51% 100%;    /* 悬停时两侧同时扩展到50% */
	color: #fff;
}

/* --------------------------------------------------------- */
/* 全局搜索 */
.global-mask-search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    display: none; 
    z-index: 9999; 
    margin: 0;
    padding: 0;
}

.global-mask-search .global-mask-search-div {
    width: 100%;
	height: 100%;
    max-width: none; 
    background-color: #fff; 
    border-radius: 0; 
    box-shadow: none; 
    position: relative; 
    padding: 20px;
    box-sizing: border-box; 
}

.global-mask-search .global-mask-search-div .div-btn {
    text-align: right; 
    padding: 10px 15px; 
    background-color: transparent; 
}

.global-mask-search .global-mask-search-div .div-btn .close-btn {
    background-color: transparent;
    border: none; 
    font-size: 40px; 
    cursor: pointer; 
    color: #333; 
    transition: all 0.3s ease;
}

.global-mask-search .global-mask-search-div .div-btn .close-btn:hover {
    color: #f00; 
    transform: scale(1.1);
}

.global-mask-search .global-mask-search-div .div-search {
	position: relative; 
	padding-top: 150px; 
	max-width: 1820px; 
	margin: 0 auto;
}
        
.global-mask-search .global-mask-search-div .div-search input {
	width: 100%; 
	padding-right: 40px; 
	padding: 14px; 
	border-bottom: 2px solid #000; 
	font-size: 18px; 
}

.global-mask-search .global-mask-search-div .div-search input::placeholder {
    color: #333; 
    opacity: 1; 
}

.global-mask-search .global-mask-search-div .div-search #globalSearchIcon {
	position: absolute;
	right: 20px;
	bottom: 15px;
	cursor: pointer;
	font-size: 26px;
	color: #333;
	font-weight: 100;
}

.global-mask-search .global-mask-search-div .div-our-store {
    padding: 15px; 
    max-width: 1820px; 
    margin: 20px auto 0;
}

.global-mask-search .global-mask-search-div .div-our-store p {
    margin-bottom: 15px; 
    font-weight: bold; 
    font-size: 13px;
    color: #666;
}

.global-mask-search .global-mask-search-div .div-our-store ul {
    list-style: none; 
    padding: 0; 
    margin: 0; 
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); 
    gap: 10px;
}

.global-mask-search .global-mask-search-div .div-our-store li {
    cursor: pointer; 
    border-radius: 4px;
}

.global-mask-search .global-mask-search-div .div-our-store li a{
	color: #000;
}


/* --------------------------------------------------------- */

/* 全局视频播放 */
.global-mask-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}

.global-mask-layer .layer-video {
  width: 900px; 
  min-height: 500px; 
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: relative;
  margin: 0 auto; 
}

.global-mask-layer .layer-video .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border: none;
  font-size: 40px;
  color: #333;
  cursor: pointer;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

.global-mask-layer .layer-video .close-btn:hover {
  color: #f00; 
}

.global-mask-layer .layer-video iframe {
  width: 900px !important; 
  height: 500px !important; 
  display: block;
}

/* --------------------------------------------------------- */

/* 视频播放样式 */
.video-container{
	position: relative;
	padding-top: 56.25%;
	background-color: rgba(0, 0, 0, 0.2);
	border-radius: 25px;
	overflow: hidden;
}
.myVideo {
	position: absolute;
	left: 0;
	top: 0;
    width: 100%;
	height: 100%;
    display: block;
}
.playPauseButton {
    position: absolute;
	width: 15%;
	height: 0px;
	padding-bottom: 15%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    /* display: none; */
	color: #fff;
	font-size: 1.5rem;
	border: 2px solid #fff;
    z-index: 1;
	align-items: center;
	justify-content: center;
}
.playPauseButton i{
	position: absolute;
	padding-top: 100%;
	transform: translate(20%, 0);
}
/* 鼠标悬停时显示播放按钮 */
.video-container:hover .playPauseButton {
    display: flex;
}

.default-breadcrumbs{
	width: 100%;
	box-sizing: border-box;
	padding: 0 10px;
}
.default-breadcrumbs a, .default-breadcrumbs span {
	color: #222;
	font-size: 13px;
	padding: 0 7px 0 0;
	display: inline-block;
}
.default-breadcrumbs span {
	font-size: 11px;
}

.cart-container{
	width: 300px;
	right: -300px;
	border-left: 2px solid red;
	will-change: transform;
	position: fixed;
	overflow-y: auto;
	overflow-x: hidden;
	top: 0;
	bottom: 0;
	padding: 0 25px 25px;
	max-width: 95%;
	z-index: 12;
	color: #000;
	background-color: #fff;
	transition: transform .4s cubic-bezier(.46,.01,.32,1);
}
.cart-container.active{
	display: block;
	transform: translate(-300px);
}
.cart-container .drawer__header{
	    display: flex;
	    align-items: center;
	    justify-content: space-between;
	    width: 100%;
}
.cart-container .drawer__header h3{
	margin: 20px 0;
	max-width: calc(100% - 60px);
	font-size: 22px;
}
.cart-container .drawer__header .drawer__close-button{
	cursor: pointer;
}
.cart-container .drawer__header .drawer__close-button .icon{
	position: relative;
	width: 26px;
	height: 26px;
	display: block;
}
.cart-container .drawer__header .drawer__close-button .icon:before{
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	width: 2px;
	height: 100%;
	background-color: #000;
	transform: rotate(-45deg);
}
.cart-container .drawer__header .drawer__close-button .icon:after{
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	width: 2px;
	height: 100%;
	background-color: #000;
	transform: rotate(45deg);
}
.cart-drawer-spacer-line{
	border-bottom: 2px solid red;
	clear: both;
	display: block;
	width: 100%;
	margin-bottom: 25px;
}
.cart-container .cart-list .cart-item{
	margin-bottom: 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.cart-container .cart-list .cart-item a{
	color: #000;
}
.cart-container .cart-list .cart-item .img-box{
	width: 27%;
}
.cart-container .cart-list .cart-item img{
	display: block;
	width: 100%;
}
.cart-container .cart-list .cart-item .thirds{
	width: 62%;
}
.cart-container .cart-list .cart-item .thirds .title{
	display: block;
	color: #000;
	text-decoration: none;
	font-size: 16px;
}
.cart-container .cart-list .cart-item .thirds .price{
	color: #000;
	font-size: 14px;
	margin-top: 5px;
}
.cart-container .cart-list .cart-item .thirds .quantity{
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-top: 5px;
}
.cart-container .cart-list .cart-item .thirds .quantity button{
	font-size: 18px;
	cursor: pointer;
	padding: 0 5px;
}
.cart-container .cart-list .cart-item .thirds .quantity input{
	width: 28px;
	text-align: center;
	font-size: 14px;
	margin: 0 2px;
}
.cart-container .ajaxcart__footer-row{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-top: 50px;
}
.cart-container .ajaxcart__footer-row{
	font-size: 20px;
}
.cart-container  small{
	display: block;
	margin-top: 5px;
	margin-bottom: 20px;
}
.cart-container .checkout-btn{
	display: flex;
	height: 45px;
	align-items: center;
	justify-content: center;
}

/* 自适应样式 */
@media screen and (max-width:1400px){
	body header nav>ul>li{
		margin: 0 5px;
	}
}
@media screen and (max-width:1200px){
	body header .headerDiv{
		height: 60px;
	}
	body header nav>ul>li>a{
		height: 60px;
	}
	body header .logo a img{
		height: 42px;
	}
	body header nav>ul>li{
		margin: 0 2px;
	}
	body header nav>ul>li>a{
		font-size: 14px;
	}
	body header .wechat{
		margin-left: 10px;
		font-size: 14px;
		width: 90px;
		height: 36px;
	}
	body header .search{
		margin-left: 20px;
	}
	body header .lang{
		margin-left: 14px;
	}
	body header .lang span{
		font-size: 16px;
	}
	body header .lang a{
		font-size: 14px;
	}
	body header nav>ul>li .children li{
		font-size: 14px;
	}
	body header nav>ul>li .children li a{
		font-size: 14px;
	}
	
	.navDiv nav dl dt{
		font-size: 16px;
	}
	.navDiv nav dl dd{
		font-size: 14px;
	}
	.contact h3{
		font-size: 26px;
	}
	.contact ul li{
		font-size: 14px;
	}
	.copyright p{
		font-size: 14px;
	}
}
@media screen and (max-width:1080px){
	.getQuoteDiv{
		padding-top: 10px;
	}
	.getQuoteDiv.show {
		display: block;
	}
	.getQuoteDiv .getQuoteDiv-inner{
		height: 100%;
		display: flex;
		flex-direction: column;
	}
	.windowContent{
		flex: 1;
		flex-direction: column;
		overflow-y: scroll;
	}
	.fengmian img{
		width: 100%;
		max-width: none;
	}
}
@media screen and (max-width:1024px){
	body{
		padding-top: 60px;
	}
	body.show-overlay{
		height: 100%;
		overflow: hidden;
	}
	body header{
		background-color: #285BDC;
	}
	body header nav{
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #285BDC;
	}
	body header nav>ul{
		display: block;
	}
	body header nav>ul>li{
		display: inline-block;
		margin: 0 10px;
	}
	body header nav>ul>li:nth-child(4) i{
		display: none;
	}
	body header nav>ul>li>a{
		height: 46px;
	}
	body header nav.active{
		display: block;
	}
	body header .headerDiv{
		height: 60px;
	}
	body header .logo a img{
		height: 34px;
	}
	body header .lang{
		display: none;
	}
	body header .wechat{
		height: 34px;
		background: #fff;
		color: #0c48ff;
	}
	
	.mobile-menu{
		display: flex;
	}
	.searchDiv{
		top: 60px;
	}
	
	.default-title h2{
		font-size: 30px;
	}
	.default-title p{
		font-size: 0.9375rem;
		line-height: 25px;
	}
	.default-title h2:after{
		width: 38px;
		margin-left: -19px;
	}
	
	.footerDiv{
		padding: 80px 10px;
		padding-bottom: 40px;
	}
	.navDiv nav dl{
		width: 25%;
		margin-bottom: 30px;
		box-sizing: border-box;
		padding: 0 5px;
	}
	.contactDiv{
		align-items: flex-start;
	}
}
@media screen and (max-width:768px){
	body header .wechat{
		height: 30px;
		width: 76px;
		font-size: 12px;
	}
	body header .search{
		margin-left: 15px;
	}
	body header .search span{
		font-size: 1.3rem;
	}
	body header .lang{
		margin-left: 4px;
	}
	body header .lang span{
		font-size: 14px;
	}
	body header .lang a{
		font-size: 12px;
	}
	
	.getQuoteDiv h3 img{
		margin-left: 10px;
		height: 20px;
	}
	.getQuoteDiv h3 span{
		font-size: 12px;
	}
	.getQuoteDiv h3 i{
		right: 10px;
	}
	.contactIntro{
		margin-left: 10px;
	}
	.windowContent > dt ul{
		padding-left: 20px;
	}
	.windowContent > dd ul li input[type="text"]{
		height: 40px;
		line-height: 40px;
	}
	.windowContent > dd .msg{
		height: 40px;
		line-height: 40px;
	}
	.windowContent > dd .sub-box button{
		height: 48px;
		font-size: 18px;
	}
	.windowContent > dd h5{
		margin-left: 10px;
	}
	.windowContent > dd ul{
		margin: 0 10px;
		margin-top: 25px;
	}
	.windowContent > dd .msg-ipt{
		margin: 0 10px;
	}
	.windowContent > dd .sub-box{
		margin: 0 10px;
	}
	.windowContent > dd ul li{
		font-size: 12px;
	}
	.windowContent > dd h5{
		font-size: 16px;
	}
	
	.default-title h2{
		font-size: 24px;
		padding-bottom: 10px;
	}
	.default-title p{
		font-size: 12px;
		line-height: 22px;
		margin-top: 10px;
	}
	.default-title h2:after{
		width: 30px;
		margin-left: -15px;
	}
	
	.footerDiv{
		padding: 40px 10px;
	}
	.navDiv .logo{
		width: auto;
	}
	.navDiv .logo img{
		width: auto;
		height: 34px;
	}
	.navDiv{
		display: block;
	}
	.navDiv nav{
		margin-top: 20px;
	}
	.navDiv nav dl{
		margin-bottom: 20px;
	}
	.navDiv nav dl dd{
		padding-top: 10px;
	}
	.copyright{
		margin-top: 40px;
	}
}
@media screen and (max-width:640px){
	.contactDiv{
		display: block;
	}
	.navDiv nav dl{
		width: 33.333%;
	}
	.QRcode{
		margin-top: 20px;
	}
	.QRcode .QRcode-item{
		padding: 0;
		margin-right: 20px;
	}
}
@media screen and (max-width:480px){
	.navDiv nav dl{
		width: 50%;
	}
	.QRcode .QRcode-item img{
		max-width: 68px;
	}
}