@charset "utf-8";

#header{
	width: 100%;
	top: 0;
	position: fixed;
	z-index: 10;
	left: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	background: #fff;
	border-top: 3px solid #D3B264;
}

#header .headerBox{
	padding-top: 0px;
	width: 100%;
	max-width: 1440px;
	min-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	position: relative;
	height: 82px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 1500px) {
	#header .headerBox{
		width: 96%;
	}
}

#header .logo{
	position: absolute;
	width: 255px;
	height: 65px;
	background: url(../img/head-logo1.png) no-repeat;
	background-size: 220px;
	top: 15px;
	left: 0;
	z-index: 9;
}
#header .logo a{ display: block; height: 60px;}
#header .logo .icon-logo{
	display: none;
}


#header .menu{
	position: relative;
	width: 100%;
	border-top: 1px solid #eee;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
	background: #fff;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#header .menu-con{
	width: 100%;
	max-width: 1440px;
	min-width:1000px;
    margin: 0 auto;
}
#header .menu-con>ul{
	margin: 0px auto;
	display: flex;
	justify-content: center;
}
#header .menu-con>ul>li{
	margin: 0 ;
	padding: 0;
}
#header .menu-con>ul>li>a{
	display: block;
	margin: 0;
	padding-top: 0;
	position: relative;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#header .menu-con>ul>li>a>span.en{
	display: block;
	line-height: 50px;
	color: #000;
	padding: 0 20px;
	overflow: hidden;
	text-align: center;
	font-size: 14px;
	position: relative;
	z-index: 1;
	margin: 0;
	top: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#header .menu-con>ul>li>a>span.en::after{
	content: '';
	display: none;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #D3B264;
	bottom: 0;
	left: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

#header .menu-con>ul>li.active>a>span.en::after{
	display: block;
}
#header .menu-con>ul>li:hover>a>span.en{
	color: #D3B264;
}
#header .menu-con>ul>li.on>a>span.en::after,
#header .menu-con>ul>li:hover>a>span.en::after{
	display: block;
}

/* 二级菜单 */
#header .menu-con>ul>li .navCon{
	position: absolute;
	z-index: 1;
	top: 50px;
	left: 0;
	width: 100%;
}
#header .menu-con>ul>li .navConBg{
	position: absolute;
	z-index: 1;
	height: 0;
	left: -5000px;
	width: 10000px;
	box-shadow: 0 5px 10px rgba(0,0,0,0.05);
	background-color: #fff;
	transition: all 0.4s ease-in-out;
}
#header .menu-con>ul>li .navCon>ul{
	padding: 0 23px;
	position: relative;
	z-index: 2;
	white-space: nowrap;
	height: 0;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	text-align: center;
}

#header .menu-con>ul>li:hover .navCon,
#header .menu-con>ul>li:hover .navConBg,
#header .menu-con>ul>li:hover .navCon>ul{
	height: 360px !important;
	opacity: 1 !important;;
}
#header .menu-con>ul>li:hover .navCon>ul{
	padding-top: 30px;
}

#header .menu-con>ul>li .navCon>ul>li{
	display: inline-block;
	margin: 0 30px;
}
#header .menu-con>ul>li .navCon a{
	font-size: 16px;
	display: block;
	text-align: center;
	padding: 20px 0;
	transition: all 0.3s ease-in-out;
}
#header .menu-con>ul>li .navCon a{
	line-height: 40px;
}
#header .menu-con>ul>li .navCon a .pic img{
	width: 200px;
	height: 200px;
	display: block;
}


#header .search{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid #dddddd;
	background-color: #f8f8f8;
	border-radius: 3px;
}
#header .search input{
	box-sizing: border-box;
	width: 300px;
	height: 40px;
	line-height: 30px;
    padding: 14px 20px;
    font-size: 14px;
	color: #000;
	background-color: #f8f8f8;
}
#header .search input::placeholder{
	color: #000;
    font-size: 14px;
}
#header .search button{
	position: absolute;
	right: 0;
	width: 40px;
	height: 40px;
	background: none;
	cursor: pointer;
}
#header .search button .iconfont {
	font-size: 22px;
}


#header .con{
	position: absolute;
	top: 50%;
	transform: translate(0 , -50%);
	right: 0px;
	z-index: 11;
	display: flex;
}
#header .con .user-box .user{
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 10px;
	margin-right: 30px;
}
#header .con .user-box .user .iconfont{
	font-size: 26px;
}

#header .con .cart a{
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 10px;
}
#header .con .cart .iconfont{
	font-size: 26px;
}


@media screen and (max-width: 768px) {
	body.open{overflow: hidden;}

	#header {
		position: fixed;
		left: 0;
		top: 0;
		z-index: 99;
	}
	#header .headerBox{
		width: 100%;
		max-width: 100%;;
		min-width:100%;;
		margin:0 auto;
		height: 50px;
		position: relative;
		transition: all 0.2s ease-in-out;
	}


	#header .logo{
		position: absolute;
		width: 125px;
		height: 40px;
		background: url(../img/head-logo1.png) no-repeat;
		background-size: 100%;
		top: 10px;
		left: 15px;
		z-index: 9;
		transition: all 0.2s ease-in-out;
	}
	#header.on .logo{
		background: url(../img/head-logo1.png) no-repeat;
		background-size: 100%;
		top:8px;
	}


	#header .menu{
		position: absolute;
		top: 5px;
		right: 5px;
		z-index: 11;
		-webkit-transition: all 0.2s ease-out;
		-moz-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;	
	}



	#header .menu .icon-menu-btn {display: block; width: 40px; z-index: 12; height: 40px;  position: relative;}
				.icon-menu-btn:before, .icon-menu-btn:after { content: ""; display: block; width: 20px; height: 2px; background: #333; border-radius: 4px; position: absolute; left: 0; -webkit-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; }
				.icon-menu-btn:before { top: 11px; left: 10px; box-shadow: 0 8px #333; }
				.icon-menu-btn:after { bottom: 11px;  left: 10px;}
				.icon-menu-btn.open:before { top: 18px; left: 8px; width: 23px; height: 4px; background: #333; -webkit-transform: rotate(225deg); transform: rotate(225deg);  box-shadow: none;}
				.icon-menu-btn.open:after { bottom: 18px; left: 8px; width: 23px; height: 4px; background: #333; -webkit-transform: rotate(135deg); transform: rotate(135deg); }

	#header .menu .menu-con{
		position: fixed;
		z-index: 11;
		right: -100%;
		top: 0;
		min-width: auto;
		width: 100%;
		height: 100%;
		background: #fff;
		padding: 0;
		-webkit-transition: all 0.4s ease-in-out;
		-moz-transition: all 0.4s ease-in-out;
		transition: all 0.4s ease-in-out;	
	}
	#header .menu .menu-con.open{
		right: 0;
		overflow: auto;
	}
	#header .menu .menu-title{
		font-size: 26px;
		font-weight: 200;
		color: #0a1a3e;
		padding: 10px 0 0 20px;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	#header .menu ul{
		margin: 10px 20px;
		border-top: 1px dashed #dbd6d8;
	}
	#header .menu ul li{
		display: block;
		float: none;
		margin: 0;
		position: relative;
		border-bottom: 1px dashed #dbd6d8;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	#header .menu ul li a span.cn{
		position: relative;
		display: block;
		color: #333333;
		font-weight: 200;
		padding: 10px 0;
		line-height: 36px;
		overflow: hidden;
		font-size: 20px;
		margin: 0;
	}
	#header .menu ul li a:hover span.cn{
		color: #df4a7a;
	}
	#header .menu ul li.about a span.cn{
		padding: 20px 0 0 0;
	}
	#header .menu ul li .navCon{
		position: relative;
		z-index: 0;
		top: 0;
		padding: 5px 0 0 0;
		left: 0;
		width: 100%;
		background: #FFF;
		border-radius:0;
		display: block;
		margin: -10px 0 10px;
		height: auto;
		opacity: 1;
		overflow: hidden;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	#header .menu ul li .navCon a{
		font-size: 14px;
		float: left;
		width: 33.3%;
		display: block;
		line-height: 34px;
		color: #666;
		text-align: left;
		transition: all 0.2s ease-in-out;
	}
	#header .menu ul li .navCon a:hover{
		color: #7e308e;
	}

	#header .menu ul li.tel{
		display: none;
		
	}


	
	.window{
		display: none;
		position: fixed;
		z-index: 99;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		background-color: rgba(255, 255, 255, 0.92);
		backdrop-filter: blur(10px);
	}
	.window .close{
		position: absolute;
		z-index: 2;
		right: .4rem;
		top: .4rem;
		border: 2px solid #f1f1f1;
		width: 1.5rem;
		height: 1.5rem;
		border-radius: 100%;
		display: flex;
		align-items: center;
		cursor: pointer;
		justify-content: center;
	}
	.window .close span{
		font-size: 1.2rem;
		color: #333;
		transition: all 0.2s ease-out;
	}
	.window .close:hover span{
		color: #D3B264;
	}

	.window .win-box{
		position: absolute;
		z-index: 1;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.window .win-box .swiper-slide{
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		opacity: 0.6;
		transition: all 0.2s ease-in-out;
	}
	.window .win-box .swiper-slide-active{
		opacity: 1;
	}
	.window .win-box .pic img{
		display: block;
		margin: 0 auto;
		max-width: 100%;
	}
	.window .win-box .t{
		padding: .2rem;
		font-size: .6rem;
		opacity: 0;
		transition: all 0.2s ease-in-out;
		text-transform: capitalize;
	}
	.window .win-box .swiper-slide-active .t{
		opacity: 1;
	}

	.window .swiper-button-prev,
	.window .swiper-button-next{ position: absolute;  width: .6rem;  height: .6rem;  z-index: 1;  left: 0; text-indent: -999em; overflow: hiddcn; top: 50%; margin-top: -70px;  background:url(../img/prev2.svg) no-repeat center center; background-size: .5rem; border-radius: 5px; z-index: 8;  transition: all 0.2s ease-out; opacity: 0.8; display: none;}
	.window .swiper-button-next{ left: auto; right: 0; background-image: url(../img/next2.svg);}
	.window .swiper-button-prev:hover,
	.window .swiper-button-next:hover{opacity: 1;}
	.window .swiper-button-next::after, #module-02 .swiper-button-prev::after{ display: none !important;}
	.window .swiper-pagination-bullet-active{background-color: #D3B264;}


}