html,body,input,textarea,select,button{
	font-family:"Avenir Next";
}


/*pc端*/
#header_box{
	background:#c3b68e;
	height:80px;
}
#header_box .header_wapper{
	width:100%;
	max-width:1200px;
	margin:0 auto;
	display:-webkit-flex;
	display:flex;
	flex-wrap: wrap;
	align-items:center;
	position:relative;
    justify-content: space-between;
	padding:10px 0;
}

#header_box .header_rt{
	margin: 0 10px;
    box-sizing: border-box;
}

.pop_search{
	position:fixed;
	left:0;
	top:0;
	height:100%;
	width:100%;
	background:rgba(0,0,0,0.3);
	display:none;
	z-index:1000000;
}
.pop_search .search{
	margin-top:150px;
	display:flex;
	display: -webkit-flex;
	flex-wrap:wrap;
	background:#fff;
	width:730px;
	position:absolute;
	left:50%;
	top:0;
	transform:translate(-50%,0);
}
.pop_search form{
	display:flex;
	display: -webkit-flex;
	flex-wrap:wrap;
	width:calc(100% - 50px);
	border:none;
	box-sizing:border-box;
}
.pop_search .search_input{
	width: calc(100% - 60px);
    border: 0;
    line-height: 60px;
}
.pop_search .btn_search{
	width: 60px;
    height: 60px;
    border: 0;
    background: 0;
}
.pop_search .btn_search svg{
	width: 25px;
    height: 30px;
    fill: #333;
}
.pop_search .search_close{
	padding:0 10px;
	cursor:pointer;
}
.pop_search .search_close svg{
	width: 30px;
    height: 60px;
    fill: #333;
}



#header_box .logo{
	width:100%;
	max-width:200px;
}
#header_box .logo a {
	display:block;
}
#header_box .logo a img{
	max-width:145px;
	max-height:60px;
}
#header_box .header_rt .rt_top{
	text-align:right;
	margin-bottom:10px;
	font-size:0;
    display: flex;
}
#header_box .header_rt .rt_top>div{
	padding:10px 0;
}
#header_box .header_right{
	width:100%;
	max-width:calc(100% - 200px);
	display:-webkit-flex;
	display:flex;
	flex-wrap: wrap;
	flex-direction:row-reverse;
	align-items:center;
}

#header_box .cart_box{
	display:inline-block;
}
#header_box .cart_txt{

}
#header_box .cart_txt a{
	display:block;
	position:relative;
	height:40px;
	display: flex;
	align-items: center;
	color:#000;
}
#header_box .cart_txt a svg{
	height: 40px;
    width: 29px;
    fill: #fff;
}
#header_box .cart_txt a strong{
    line-height: 40px;
    text-align: center;
    font-size: 14px;
	color:#fff;
	margin-right:3px;
}


 




#header_box .search_icon{
	display:block;
	height:40px;
	margin-left:15px;
	cursor:pointer;
}
#header_box .search_icon svg{
	height:40px;
	width:24px;
	fill: #fff;
}

#header_box .currency_box{
	display:inline-block;
	vertical-align:top;
	margin:0 5px;
}
#header_box .currency_txt{
	position:relative;
	color:#f55423;
}
#header_box .currency_txt select{
	height:40px;
	border:0;
	appearance:none;
  	-moz-appearance:none;
  	-webkit-appearance:none;
  	outline:none;
    background: none;
	opacity:0;
	position:relative;
	cursor:pointer;
	z-index:10;
	padding:0 10px;
}
#header_box .currency_txt select option {
	padding:3px 5px;
}
#header_box .currency_txt svg{
	height: 40px;
    position: absolute;
	top:0;
    left: 50%;
    fill: #fff;
    width: 22px;
	transform:translateX(-50%);
}

#header_box .login_link{
	display:inline-block;
	vertical-align:top;
}
#header_box .login_link a{
	display:block;
	height:40px;
	line-height:40px;
	color:#fff;
	font-size:13px;
	text-transform:uppercase;
}
#header_box .login_link a svg{
	width:20px;
	height:40px;
	fill:#fff;
}





#header_box .nav_wapper{
	height:60px;
	display: flex;
	-webkit-box-flex: 1 1 auto;
    -moz-box-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
#header_box .nav_box{
	width:100%;
	max-width:1200px;
	margin:0 auto;
}
#header_box .nav{
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	justify-content: center;
}
#header_box .nav > li{
	position:relative;
	margin-right:30px;	
}
#header_box .nav > li > .cate_menu > a{
	line-height:60px;
	color:#fff;
	letter-spacing:1px;
	font-size:14px;
}
#header_box .nav > li > .cate_menu > span{
	height: 44px;
	width: 14px;
	margin-left:5px;
}
#header_box .nav > li > .cate_menu svg{
	height: 44px;
	width: 14px;
    fill:#fff;
	margin-bottom:-18px;
}
#header_box .sub_nav{
	position: absolute;
    top: 60px;
    right: 0;
    z-index: 9;
    background: #fff;
    width: 200px;
    padding: 10px;
	opacity:0;
	visibility:hidden;
	transition:all 0.1s;
}
#header_box .sub_nav ul{} 
#header_box .sub_nav ul li{}
#header_box .sub_nav ul li a{
	display: block;
    height: 34px;
    line-height: 34px;
	color:#777;  
	transition:all 0.3s;
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
#header_box .sub_nav ul li a:hover{
	color:#000; 
}
#header_box .nav > li.on .sub_nav{
	opacity:1;
	visibility:visible;
}
#header_box.posFixed{
	position:fixed;
	left:0;
	top:0;
	z-index:999;
	width:100%;
}



#bottom_box{
	background:#cabe9b;
	padding:30px 0 0;
}
#bottom_box img{
	max-width:100%;
}
#bottom_box .bottom_top{
	display: flex;
	background:#ededed;
    margin-bottom: 45px;
	padding:15px 0;
}
#bottom_box .bottom_top .row{
	display: flex;
    flex-wrap: wrap;
}
#bottom_box .newletterform{
	margin-bottom:15px;
}
#bottom_box .newletterform form{
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	align-items:center;
}
#bottom_box .newsletter_txt{
	width:74%;
	height:45px;
	padding:15px 25px 15px 15px;
	border:1px solid #dfdfdf;
	background: #fff;
	box-sizing:border-box;
}
#bottom_box .newsletter_btn {
	display:inline-block;
	background:#546a3a;
	padding:0 12px;
	border-radius:3px;
	height:45px;
	line-height:45px;
	border:none;
	color:#fff;
	margin-left:2%;
	transition:all 0.3s;
	text-transform:uppercase;
	width:23%;
	box-sizing:border-box;
}
#bottom_box .newsletter_btn:hover{
	background:#333;
	color:#fff;
	cursor:pointer;
}
#bottom_box .shartto{
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	min-height:24px;
	align-items: center;
}
#bottom_box .shartto li{
	margin-left:12px;
}
#bottom_box .shartto a{
	color:#fff;
	font-size:16px;
	height:32px;
	width:32px;
	display:block;
	line-height:32px;
	text-align:center;
}

#bottom_box .bottom_wapper{
	width:100%;
	max-width:1200px;
	margin:0 auto;
}
#bottom_box .link{
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	width:100%;
}
#bottom_box .link dl{
	width:25%;
	padding:0 10px;
	box-sizing:border-box;
}
#bottom_box .link dt{
	margin-bottom:15px;
	font-size:14px;
	font-weight:600;
	color:#fff;
	line-height:24px;
	text-transform:uppercase;
}
#bottom_box .link dd{
	padding-bottom:5px;
}
#bottom_box .link dd > a{
	color:#fff;
	line-height:24px;
	display:block;
	font-size:12px;
	transition:all 0.3s;
}
#bottom_box .link dd > a:hover{
	color:#fff;
}

#bottom_box .bottom_footer{
    display: flex;
	border-top:1px solid rgba(255,255,255,0.3);
	margin-top:30px;
	padding:30px 0 20px;
}
#bottom_box .copyright{
	min-height:24px;
	width:50%;
	color:#fff;
}
#bottom_box .payment{
	width:50%;
	text-align:right;
	min-height:30px;
}
.mini_detail {
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:99999;
	display:none;
}
.mini_detail .mini_detail_bg {
	position:fixed;
	left:0;
	top:0;
	background:rgba(0,0,0,.5);
	width:100%;
	height:100%;
	z-index:-1;
}
#mini_detail {
	position:fixed;
	top:50%;
	-webkit-transform:translate(0,-50%);
	-moz-transform:translate(0,-50%);
	-ms-transform:translate(0,-50%);
	-o-transform:translate(0,-50%);
	transform:translate(0,-50%);
	left:0;
	right:0;
	margin:auto;
	width:960px;
	position:relative;
}
#mini_detail .icon-iconfontclose {
	position:absolute;
	right:10px;
	top:10px;
	font-size:30px;
	background:none;
	color:#333;
	cursor:pointer;
}



.index_default{ width:100% !important;}




/*wap端*/
#header_box .mobile_nav_icon,
#header_box .pc_none{
	display:none;
}
#header_box .mobile_nav_icon svg{
	height: 40px;
    width: 30px;
    fill: #fff;
	display: inline-block;
    vertical-align: middle;
}
#header_box .mobile_nav_icon span{
	font-weight:bold;
	color:#fff;
	font-size:18px;
    display: inline-block;
    vertical-align: middle;
}
.mobile-navside{
	display: block;
    width: 100%;
    height: 100%;
    overflow-y: auto;
	position: fixed;
    z-index: 99999999; 
    background: #fff;
	opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.mobile-navside-on{
	opacity: 1;
    visibility: visible;
}
.mobile-navside .mobile-nav{
	padding: 15px;
	position:relative;
}
.mobile-navside .mobile-currency_box{
	height:40px;
	border:1px solid #333;
	display:inline-block;
	position:relative;
}
.mobile-navside .mobile-currency_box select{
	height: 40px;
    padding: 0 30px 0 10px;
    border: 0;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    background: none;
	position:relative;
	z-index:1;
}
.mobile-navside .mobile-currency_box svg{
	position: absolute;
    right: 5px;
    top: 0;
    height: 40px;
    width: 20px;
    fill: #333;
}
.mobile-navside .no-nav{
	width:30px;
	height:40px;
	position:absolute;
	right:15px;
	top:15px;
}
.mobile-navside .no-nav svg{
	width:30px;
	height:40px;
	fill:#333;
}
.mobile-navside .wap_search_box{
	margin-top:15px;
}
.mobile-navside .wap_search_box form{
	height:50px;
	background:#e5e5e5;
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
}
.mobile-navside .wap_search_box .search_input{
	width:calc(100% - 50px);
	border:none;
	background:none;
	line-height:16px;
	text-indent:10px;
}
.mobile-navside .wap_search_box .btn_search{
	width:50px;
	height:50px;
	background:none;
	border:none;
	
}
.mobile-navside .wap_search_box .btn_search svg{
	width: 26px;
    height: 50px;
	fill:#333;
}
.mobile-navside .mobile-nav__middle > ul > li{
	border-bottom:1px solid #bfbfbf;
}
.mobile-navside .mobile-nav__middle .cate_menu{
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	height:34px;
	line-height:34px;
	padding:13px 0;
}
.mobile-navside .mobile-nav__middle .cate_menu a{
	display:block;
	width:calc(100% - 80px);
	color:#333;
	font-size:16px;
}
.mobile-navside .mobile-nav__middle .cate_menu .down_icon{
	width:79px;
	height:34px;
	text-align:center;
	border-left:1px solid #bfbfbf;
}
.mobile-navside .mobile-nav__middle .cate_menu .down_icon svg{
	width:16px;
	height:34px;
	fill:#333;
	transition:all 0.3s;
}
.mobile-navside .mobile-nav__middle .cate_menu .down_icon.on svg{
	transform:rotate(-180deg);
}

.mobile-navside .mobile-nav__middle .sub_nav{
	display:none;
}
.mobile-navside .mobile-nav__middle .sub_nav li a{
	padding-left:20px;
	display:block;
	line-height:50px;
	font-size:16px;
	color:#333;
}


/*响应式*/
@media screen and (max-width:1280px){ 
	#header_box .cart #minicartlist{
		height:calc(100% - 100px);
	}
	#header_box .buy_pro{
		max-height: calc(100% - 150px);
    	overflow: auto;
	}
}
@media screen and (max-width:1200px){
	#header_box .nav_box{
    	box-sizing: border-box;
	}

}
@media screen and (max-width:1024px){
	#header_box .header_wapper{
		padding:0;
	}
	#header_box .nav_box,
	#header_box .login_link,
	#header_box .search_icon,
	#header_box .currency_box{
		display:none;
	}
	#header_box .mobile_nav_icon,
	#header_box .pc_none{
		display:block;
	}
	#header_box .nav_wapper {
    -webkit-box-flex: initial;
    -moz-box-flex: initial;
    -webkit-flex: initial;
    -ms-flex: initial;
    flex: initial;
}

@media screen and (max-width:768px){}
@media screen and (max-width:767px){

	#header_box .header_wapper{
		height:auto;
		display: flex;
		width:92%;
		box-sizing:border-box;
	}
	#header_box .logo{
		max-width: 100%;
    	text-align: center;
		padding:10px 0;
		width:auto;
	}
	#header_box .logo a img{
		max-height: 40px;
    	max-width: 100%;
	}
	#header_box .header_right{
		max-width: 100%;
		position: relative;
		height: 50px;
		background: #fdf5f2;
		padding:0 15px;
	}
	
	
	
	#header_box .cart_box{
		margin-left:20px;
	}
	#bottom_box{
		padding:0 15px 50px;
	}
	#bottom_box .bottom_top{
		margin:0 -15px;
	}
	

	#bottom_box .link{
		width:100%;
	}
	#bottom_box .link dl {
		width: 50%;
	}
	#bottom_box .link dt{
		padding-top:20px;
	}
	#bottom_box .link{
		padding:10px 0 0;
	}
	#bottom_box .bottom_footer{
	    flex-wrap: wrap;
		text-align:center;
	}
	#bottom_box .copyright,
	#bottom_box .payment{
		width:100%;
		text-align:center;
	}
	#bottom_box .copyright{
		padding-bottom:15px;
	}
	
	#header_box .pop_search{
		top: 55px;
		height: 50px;
		width: 100%;
	}
	#header_box .pop_search .search_input{
		background:none;
	}
}


@media screen and (max-width:480px){
	#bottom_box .bottom_top h4,
	#bottom_box .newletterform,
	#bottom_box .shartto,
	#bottom_box .link dl{
		width:100%;
	}
	#bottom_box .bottom_top h4{
		text-align:center;
	}
	#bottom_box .newletterform{
		padding-bottom:15px;
	}
	#bottom_box .shartto{
		justify-content: center;
	}
}


































