html,body,input,textarea,select,button{
	font-family: 'Garamond';
}


/*pc端*/
#header_box{}
#header_box .header_wapper{
	width:100%;
	max-width:1200px;
	margin:0 auto;
	position:relative;
}
#header_box .header_top{
	height:40px;
	
}
#header_box .header_top_fixed{
	position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
}
#header_box .header_top .header_wapper{
	display:-webkit-flex;
	display:flex;
	flex-wrap: wrap;
	align-items:center;
	justify-content: space-between;
}
#header_box .top_search{
	padding:5px;
}
#header_box .top_search form{
	display:-webkit-flex;
	display:flex;
	flex-wrap: wrap;
	border:1px solid #dfdfdf;
	border-radius:3px;
	height:30px;
	width:280px;
	box-sizing:border-box;
}
#header_box .top_search form .btn_search{
	width:30px;
	height:28px;
	background:none;
	border:0;
	box-sizing:border-box;
}
#header_box .top_search form .btn_search svg{
	width:16px;
	height:28px;
	fill:#dfdfdf;
}
#header_box .top_search form .search_input{
	border:0;
	background:none;
	width:calc(100% - 30px);
	height:28px;
	line-height:16px;
	color:#999;
}
#header_box .header_right{
	display:-webkit-flex;
	display:flex;
	flex-wrap: wrap;
	flex-direction:row-reverse;
	align-items:center;
}

#header_box .cart_box{
	margin-left:20px;
}
#header_box .cart_txt{

}
#header_box .cart_txt a{
	display:block;
	position:relative;
	height:40px;
	line-height:40px;
	color:#9f9f9f;
}
#header_box .cart_txt a svg{
	height: 40px;
    width: 18px;
    fill: #9f9f9f;
	vertical-align:top
}
#header_box .cart_txt a:hover{
	color:#000;
}
#header_box .cart_txt a:hover svg{
	fill:#000;
}
#header_box .login_link{
	margin-left:20px;
}
#header_box .login_link a{
	display:block;
	height:40px;
	line-height:40px;
	color:#9f9f9f;
}
#header_box .login_link a svg{
	height:40px;
	width:18px;
	fill: #9f9f9f; 
	vertical-align:top;
}
#header_box .login_link a:hover{
	color:#000;
}
#header_box .login_link a:hover svg{
	fill:#000;
}

#header_box .currency_box{
	position:relative;
}
#header_box .currency_txt{
	position:relative;
	height:40px;
	line-height:40px;
	color:#9f9f9f;
	cursor:pointer;
}

#header_box .currency_txt svg{
	height: 40px;
    fill: #9f9f9f;
    width: 18px;
	vertical-align:top;
}
#header_box .drop_currency{
	background-color: #fff;
    border: 1px solid #eeeeee;
    top: 40px;
    padding: 11px 0px;
    position: absolute;
	left:-14px;
    display: none;
    min-height: 92px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 4;
    text-align: left;
    list-style: none;
	display:none;
	width:120px;
}
#header_box .drop_currency a{
	display:block;
	line-height: 24px;
	padding:0 15px;
	color:#333;
}
#header_box .drop_currency a:hover{
	text-decoration:underline;
}



#header_box .logo{
	width: 100%;
    text-align: center;
    margin: 30px 0 0;
}
#header_box .logo a {
	display:inline-block;
}
#header_box .logo a img{
	max-width:200px;
	max-height:50px;
}



#header_box .nav_box{
	margin-top:20px;
	border-top: double #d3d3d3;
    border-bottom: double #d3d3d3;
	margin-bottom:20px;
}
#header_box .nav_box .nav{
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	justify-content:center;
}
#header_box .nav_box .nav > li{
	position:relative;
	margin-right:30px;	
}
#header_box .nav_box .nav > li > .cate_menu > a{
	line-height:50px;
	color:#003163;
	font-size:16px;
}
#header_box .nav_box .nav > li > .cate_menu > span{
	display:inline-block;
	height: 50px;
	width: 14px;
	margin-left:5px;
    vertical-align: top;
}
#header_box .nav_box .nav > li > .cate_menu svg{
	height: 50px;
	width: 14px;
    fill:#003163;
}
#header_box .nav_box .nav > li.on > .cate_menu > a,
#header_box .nav_box .nav > li > .cate_menu > a:hover{
	color:#dba932;
}
#header_box .nav_box .nav > li.on > .cate_menu svg{
	fill:#dba932;
}
#header_box .nav_box .sub_nav{
	position: absolute;
    top: 50px;
    left: 0;
    z-index: 9;
    background: #fff;
    width: 200px;
    padding: 10px;
	opacity:0;
	visibility:hidden;
	transition:all 0.1s;
	border-top:1px solid #d3d3d3;
	padding-bottom:10px;
}
#header_box .nav_box .sub_nav:after{
	content:'';
	position:absolute;
	bottom:2px;
	left:2px;
	width:calc(100% - 4px);
	height:5px;
	background:#808080;
	border-radius:5px;
	
}
#header_box .nav_box .sub_nav ul{} 
#header_box .nav_box .sub_nav ul li{}
#header_box .nav_box .sub_nav ul li a{
	display: block;
    height: 34px;
    line-height: 34px;
	color:#003163;  
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
	transition:all 0.3s;
}
#header_box .nav_box .sub_nav ul li a:hover{
	color:#9f9f9f; 
}
#header_box .nav_box .nav > li.on .sub_nav{
	opacity:1;
	visibility:visible;
}
.posFixed{
	padding-bottom:50px;
}



#header_box.posFixed .nav_wapper{
	position:fixed;
	left:0;
	top:0;
	z-index:4900000;
	width:100%;
}

.index_default{
	width:100% !important;
}

#bottom_box{
	padding-bottom:50px;
}
#bottom_box .bottom_wapper{
	width:100%;
	max-width:1200px;
	margin:0 auto;
}
#bottom_box .newletterform{
	padding:50px 0;
	border-top:1px dashed #d3d3d3;
	text-align:center;
}
#bottom_box .newletterform h3{
	font-size:24px;
	margin-bottom:30px;
	font-weight:normal;
}
#bottom_box .newletterform form{
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content:center;
}

#bottom_box .newsletter_txt{
	width:50%;
	height:44px;
	line-height:44px;
	border:none;
	border: 1px solid #dfdfdf;
	background:none;
	box-sizing:border-box;
	width:310px;
	text-indent:10px;
	color:#999;
	border-radius:3px;
}
#bottom_box .newsletter_btn {
	display:inline-block; 
	background:#ffebbb;
	padding:0 30px;
	height:44px;
	line-height:44px;
	border: 0;
	margin-left:10px;
	transition:all 0.3s;
	text-transform:uppercase;
	color:#000;
	border-radius:3px;
}
#bottom_box .newsletter_btn:hover{
	background:#333;
	color:#fff;
	cursor:pointer;
}
#bottom_box .link{
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	border-top:1px dashed #d3d3d3;
	padding: 30px 0;
}
#bottom_box .link dl{
	width:25%;
}
#bottom_box .link dt{
	margin-bottom:20px;
	font-size:18px;
}
#bottom_box .link dd{}
#bottom_box .link dd > a{
	color:#777;
	line-height:24px;
	display:block;
	transition:all 0.3s;
}
#bottom_box .link dd > a:hover{
	color:#333;
}
#bottom_box .link dd .shartto{
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	min-height:24px;
}
#bottom_box .link dd .shartto li{
	margin-right:15px;
}
#bottom_box .link dd .shartto a{
	color:#333;
	font-size:24px;
}
#bottom_box .copyright{
	text-align:center;
	min-height:24px;
}

.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;
}
.block_items_detail{
	max-width:100%;
}

.block_items_imagetext_1 .imagetext-content{
	background:#fdf5f2;
}
.block_items_imagetext_1 .imagetext_content_wapper{
	padding: 0 30px !important;
    text-align: center;
	
}
.block_items_imagetext_1 .imagetext_content_wapper .block_title{
	text-align: center;
}


#header_box .mobile_nav{
	margin-top: 20px;
    border-top: double #d3d3d3;
    border-bottom: double #d3d3d3;
    margin-bottom: 20px;
	display:none;
}
#header_box .mobile-currency_box{
	display:none;
}
.block_items_banner .block_banner_content h4{
	width: 700px;
    margin: 0 auto;
}
.block_items_banner .block_banner_content p{
	height: 40px;
    line-height: 40px;
    background: #ffebbb;
    border-radius: 4px;
    display: inline-block;
    padding: 0 30px;
    color: #000;
    font-weight: normal;
    font-size: 16px;
    text-transform: uppercase;
	
}
.block_items_banner .block_banner_content p:hover{
	background:#f3f3f3;
}

.block_items_blog .news-box li{
	border:0;
}
.block_items_blog .news-box .text{
	padding:0;
	margin-top:20px;
}
.block_items_blog .news-box .news-tit{
	font-size:24px;
	color:#003163;
	font-weight:normal;
}



/*多颜色主题*/
/*红色*/
.global_style_orange .block_items_blog .news-box .news-tit,
.global_style_red #header_box .mobile_nav li a,
.global_style_red #header_box .mobile_nav_icon,
.global_style_red #header_box .nav_box .sub_nav ul li a,
.global_style_red #header_box .nav_box .nav > li > .cate_menu > a{
	color:#ed4040;
}
.global_style_red #header_box .mobile_nav_icon svg,
.global_style_red #header_box .mobile_nav li .down_icon svg,
.global_style_red #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#ed4040;
}
/*橙色*/
.global_style_orange .block_items_blog .news-box .news-tit,
.global_style_orange #header_box .mobile_nav li a,
.global_style_orange #header_box .mobile_nav_icon,
.global_style_orange #header_box .nav_box .sub_nav ul li a,
.global_style_orange #header_box .nav_box .nav > li > .cate_menu > a{
	color:#ff8542;
}
.global_style_orange #header_box .mobile_nav_icon svg,
.global_style_orange #header_box .mobile_nav li .down_icon svg,
.global_style_orange #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#ff8542;
}
/*绿色*/
.global_style_green .block_items_blog .news-box .news-tit,
.global_style_green #header_box .mobile_nav li a,
.global_style_green #header_box .mobile_nav_icon,
.global_style_green #header_box .nav_box .sub_nav ul li a,
.global_style_green #header_box .nav_box .nav > li > .cate_menu > a{
	color:#089b32;
}
.global_style_green #header_box .mobile_nav_icon svg,
.global_style_green #header_box .mobile_nav li .down_icon svg,
.global_style_green #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#089b32;
}
/*蓝色*/
.global_style_blue .block_items_blog .news-box .news-tit,
.global_style_blue #header_box .mobile_nav li a,
.global_style_blue #header_box .mobile_nav_icon,
.global_style_blue #header_box .nav_box .sub_nav ul li a,
.global_style_blue #header_box .nav_box .nav > li > .cate_menu > a{
	color:#428fff;
}
.global_style_blue #header_box .mobile_nav_icon svg,
.global_style_blue #header_box .mobile_nav li .down_icon svg,
.global_style_blue #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#428fff;
}
/*紫色*/
.global_style_purple .block_items_blog .news-box .news-tit,
.global_style_purple #header_box .mobile_nav li a,
.global_style_purple #header_box .mobile_nav_icon,
.global_style_purple #header_box .nav_box .sub_nav ul li a,
.global_style_purple #header_box .nav_box .nav > li > .cate_menu > a{
	color:#c942ff;
}
.global_style_purple #header_box .mobile_nav_icon svg,
.global_style_purple #header_box .mobile_nav li .down_icon svg,
.global_style_purple #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#c942ff;
}
/*粉色*/
.global_style_pink .block_items_blog .news-box .news-tit,
.global_style_pink #header_box .mobile_nav li a,
.global_style_pink #header_box .mobile_nav_icon,
.global_style_pink #header_box .nav_box .sub_nav ul li a,
.global_style_pink #header_box .nav_box .nav > li > .cate_menu > a{
	color:#fb6cb1;
}
.global_style_pink #header_box .mobile_nav_icon svg,
.global_style_pink #header_box .mobile_nav li .down_icon svg,
.global_style_pink #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#fb6cb1;
}
/*黑色*/
.global_style_black .block_items_blog .news-box .news-tit,
.global_style_black #header_box .mobile_nav li a,
.global_style_black #header_box .mobile_nav_icon,
.global_style_black #header_box .nav_box .sub_nav ul li a,
.global_style_black #header_box .nav_box .nav > li > .cate_menu > a{
	color:#000;
}
.global_style_black #header_box .mobile_nav_icon svg,
.global_style_black #header_box .mobile_nav li .down_icon svg,
.global_style_black #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#000;
}
/*黄色*/
.global_style_yellow .block_items_blog .news-box .news-tit,
.global_style_yellow #header_box .mobile_nav li a,
.global_style_yellow #header_box .mobile_nav_icon,
.global_style_yellow #header_box .nav_box .sub_nav ul li a,
.global_style_yellow #header_box .nav_box .nav > li > .cate_menu > a{
	color:#fbd540;
}
.global_style_yellow #header_box .mobile_nav_icon svg,
.global_style_yellow #header_box .mobile_nav li .down_icon svg,
.global_style_yellow #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#fbd540;
}
/*橙黄色*/
.global_style_orange_yellow .block_items_blog .news-box .news-tit,
.global_style_orange_yellow #header_box .mobile_nav li a,
.global_style_orange_yellow #header_box .mobile_nav_icon,
.global_style_orange_yellow #header_box .nav_box .sub_nav ul li a,
.global_style_orange_yellow #header_box .nav_box .nav > li > .cate_menu > a{
	color:#fe9a04;
}
.global_style_orange_yellow #header_box .mobile_nav_icon svg,
.global_style_orange_yellow #header_box .mobile_nav li .down_icon svg,
.global_style_orange_yellow #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#fe9a04;
}
/*洋红色*/
.global_style_magenta .block_items_blog .news-box .news-tit,
.global_style_magenta #header_box .mobile_nav li a,
.global_style_magenta #header_box .mobile_nav_icon,
.global_style_magenta #header_box .nav_box .sub_nav ul li a,
.global_style_magenta #header_box .nav_box .nav > li > .cate_menu > a{
	color:#fa039c;
}
.global_style_magenta #header_box .mobile_nav_icon svg,
.global_style_magenta #header_box .mobile_nav li .down_icon svg,
.global_style_magenta #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#fa039c;
}
/*浅褐色*/
.global_style_light_brown .block_items_blog .news-box .news-tit,
.global_style_light_brown #header_box .mobile_nav li a,
.global_style_light_brown #header_box .mobile_nav_icon,
.global_style_light_brown #header_box .nav_box .sub_nav ul li a,
.global_style_light_brown #header_box .nav_box .nav > li > .cate_menu > a{
	color:#6b473c;
}
.global_style_light_brown #header_box .mobile_nav_icon svg,
.global_style_light_brown #header_box .mobile_nav li .down_icon svg,
.global_style_light_brown #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#6b473c;
}
/*褐色*/
.global_style_brown .block_items_blog .news-box .news-tit,
.global_style_brown #header_box .mobile_nav li a,
.global_style_brown #header_box .mobile_nav_icon,
.global_style_brown #header_box .nav_box .sub_nav ul li a,
.global_style_brown #header_box .nav_box .nav > li > .cate_menu > a{
	color:#843900;
}
.global_style_brown #header_box .mobile_nav_icon svg,
.global_style_brown #header_box .mobile_nav li .down_icon svg,
.global_style_brown #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#843900;
}
/*棕绿色*/
.global_style_brown_green .block_items_blog .news-box .news-tit,
.global_style_brown_green #header_box .mobile_nav li a,
.global_style_brown_green #header_box .mobile_nav_icon,
.global_style_brown_green #header_box .nav_box .sub_nav ul li a,
.global_style_brown_green #header_box .nav_box .nav > li > .cate_menu > a{
	color:#666400;
}
.global_style_brown_green #header_box .mobile_nav_icon svg,
.global_style_brown_green #header_box .mobile_nav li .down_icon svg,
.global_style_brown_green #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#666400;
}
/*浅绿色*/
.global_style_light_green .block_items_blog .news-box .news-tit,
.global_style_light_green #header_box .mobile_nav li a,
.global_style_light_green #header_box .mobile_nav_icon,
.global_style_light_green #header_box .nav_box .sub_nav ul li a,
.global_style_light_green #header_box .nav_box .nav > li > .cate_menu > a{
	color:#b2d235;
}
.global_style_light_green #header_box .mobile_nav_icon svg,
.global_style_light_green #header_box .mobile_nav li .down_icon svg,
.global_style_light_green #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#b2d235;
}
/*深绿色*/
.global_style_dark_green .block_items_blog .news-box .news-tit,
.global_style_dark_green #header_box .mobile_nav li a,
.global_style_dark_green #header_box .mobile_nav_icon,
.global_style_dark_green #header_box .nav_box .sub_nav ul li a,
.global_style_dark_green #header_box .nav_box .nav > li > .cate_menu > a{
	color:#029834;
}
.global_style_dark_green #header_box .mobile_nav_icon svg,
.global_style_dark_green #header_box .mobile_nav li .down_icon svg,
.global_style_dark_green #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#029834;
}
/*浅蓝色*/
.global_style_light_blue .block_items_blog .news-box .news-tit,
.global_style_light_blue #header_box .mobile_nav li a,
.global_style_light_blue #header_box .mobile_nav_icon,
.global_style_light_blue #header_box .nav_box .sub_nav ul li a,
.global_style_light_blue #header_box .nav_box .nav > li > .cate_menu > a{
	color:#2c6dff;
}
.global_style_light_blue #header_box .mobile_nav_icon svg,
.global_style_light_blue #header_box .mobile_nav li .down_icon svg,
.global_style_light_blue #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#2c6dff;
}
/*深蓝色*/
.global_style_dark_blue .block_items_blog .news-box .news-tit,
.global_style_dark_blue #header_box .mobile_nav li a,
.global_style_dark_blue #header_box .mobile_nav_icon,
.global_style_dark_blue #header_box .nav_box .sub_nav ul li a,
.global_style_dark_blue #header_box .nav_box .nav > li > .cate_menu > a{
	color:#32339f;
}
.global_style_dark_blue #header_box .mobile_nav_icon svg,
.global_style_dark_blue #header_box .mobile_nav li .down_icon svg,
.global_style_dark_blue #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#32339f;
}

/*浅紫色*/
.global_style_light_purple .block_items_blog .news-box .news-tit,
.global_style_light_purple #header_box .mobile_nav li a,
.global_style_light_purple #header_box .mobile_nav_icon,
.global_style_light_purple #header_box .nav_box .sub_nav ul li a,
.global_style_light_purple #header_box .nav_box .nav > li > .cate_menu > a{
	color:#d27fff;
}
.global_style_light_purple #header_box .mobile_nav_icon svg,
.global_style_light_purple #header_box .mobile_nav li .down_icon svg,
.global_style_light_purple #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#d27fff;
}
/*深紫色*/
.global_style_dark_purple .block_items_blog .news-box .news-tit,
.global_style_dark_purple #header_box .mobile_nav li a,
.global_style_dark_purple #header_box .mobile_nav_icon,
.global_style_dark_purple #header_box .nav_box .sub_nav ul li a,
.global_style_dark_purple #header_box .nav_box .nav > li > .cate_menu > a{
	color:#b600ff;
}
.global_style_dark_purple #header_box .mobile_nav_icon svg,
.global_style_dark_purple #header_box .mobile_nav li .down_icon svg,
.global_style_dark_purple #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#b600ff;
}
/*青色*/
.global_style_cyan .block_items_blog .news-box .news-tit,
.global_style_cyan #header_box .mobile_nav li a,
.global_style_cyan #header_box .mobile_nav_icon,
.global_style_cyan #header_box .nav_box .sub_nav ul li a,
.global_style_cyan #header_box .nav_box .nav > li > .cate_menu > a{
	color:#009ad6;
}
.global_style_cyan #header_box .mobile_nav_icon svg,
.global_style_cyan #header_box .mobile_nav li .down_icon svg,
.global_style_cyan #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#009ad6;
}
/*青绿色*/
.global_style_cyan_green .block_items_blog .news-box .news-tit,
.global_style_cyan_green #header_box .mobile_nav li a,
.global_style_cyan_green #header_box .mobile_nav_icon,
.global_style_cyan_green #header_box .nav_box .sub_nav ul li a,
.global_style_cyan_green #header_box .nav_box .nav > li > .cate_menu > a{
	color:#00ae9d;
}
.global_style_cyan_green #header_box .mobile_nav_icon svg,
.global_style_cyan_green #header_box .mobile_nav li .down_icon svg,
.global_style_cyan_green #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#00ae9d;
}
/*青蓝色*/
.global_style_cyan_blue .block_items_blog .news-box .news-tit,
.global_style_cyan_blue #header_box .mobile_nav li a,
.global_style_cyan_blue #header_box .mobile_nav_icon,
.global_style_cyan_blue #header_box .nav_box .sub_nav ul li a,
.global_style_cyan_blue #header_box .nav_box .nav > li > .cate_menu > a{
	color:#102b6a;
}
.global_style_cyan_blue #header_box .mobile_nav_icon svg,
.global_style_cyan_blue #header_box .mobile_nav li .down_icon svg,
.global_style_cyan_blue #header_box .nav_box .nav > li > .cate_menu svg{
	fill:#102b6a;
}









/*响应式*/
@media screen and (max-width:1200px){
	#header_box .nav_box,
	#bottom_box .bottom_wapper,
	#header_box .header_wapper{
		padding: 0 50px;
    	box-sizing: border-box;
	}

}
@media screen and (max-width:1023px){
	#header_box .nav_box,
	#bottom_box .bottom_wapper,
	#header_box .header_wapper{
		padding: 0 30px;
    	box-sizing: border-box;
	}
	#bottom_box .newsletter_txt{
		width:calc(75% - 220px);
	}
	
}
@media screen and (max-width:768px){
	#header_box .header_top{
		height:80px;
	}
	#header_box .header_top .header_wapper{
		height:auto;
		flex-direction:column;
	}
	#header_box .nav_box{
		display:none;
	}
	#header_box .mobile_nav{
		display:block;
		padding:0 30px;
	}
	#header_box .mobile_nav .nav{
		display:none;
	}
	#header_box .mobile_nav_icon{
		height:50px;
		line-height:50px;
		width:80px;
		color:#003163;
		text-transform:uppercase;
	}
	#header_box .mobile_nav_icon svg{
		height:50px;
		width:24px;
		fill:#003163;
		vertical-align:top;
		margin-right:5px;
	}
	#header_box .mobile_nav li{
		line-height:44px;
	}
	#header_box .mobile_nav li a{
		color:#003163;
		font-size:16px;
		display:inline-block;
		vertical-align:top;
		margin-right:3px;
	}
	#header_box .mobile_nav li .down_icon{
		display:inline-block;
		vertical-align:top;
		width:40px;
		height:40px;
		text-align:center;
		box-sizing: border-box;
    	padding-top: 15px;
	}
	#header_box .mobile_nav li .down_icon svg{
		height:16px;
		width:16px;
		fill:#003163;
		transform:rotate(-90deg);
	}
	#header_box .mobile_nav li .sub_nav{
		padding-left:30px;
		display:none;
	}
	#header_box .mobile_nav_on .nav{
		max-height:1000px;
	}
}
@media screen and (max-width:767px){
	#header_box .nav_box,
	#bottom_box .bottom_wapper,
	#header_box .header_wapper{
		padding: 0 ;
    	box-sizing: border-box;
	}
	#header_box .logo{
		max-width: 100%;
    	text-align: center;
		padding:10px 0;
		margin-top:15px;
	}
	#header_box .logo a img{
		max-height: 30px;
    	max-width: 100%;
	}

	#header_box .header_wapper{
		height:auto;
	}
	#header_box .nav_wapper{
		display:none;
	}
	#header_box .header_right .currency_box{
		display:none;
	}
	#header_box .header_right .mobile_nav_icon{
		display:block;
	}
	#header_box .mobile-currency_box{
		display:block;
		position:relative;
	}
	#header_box .mobile-currency_box select{
		height:40px;
		border:none;
		appearance: none;
		-moz-appearance: none;
		-webkit-appearance: none;
		outline: none;
		padding: 0 20px 0 0;
		color:#9f9f9f;
		    position: relative;
		z-index: 9;
		background: none;
	}
	#header_box .mobile-currency_box svg {
		position: absolute;
		right: 0;
		top: 0;
		height: 40px;
		width: 16px;
		fill: :#9f9f9f;
	}
	
	
	
	
	#bottom_box{
		padding:0 15px 50px;
	}
	#bottom_box .newletterform label{
		width:100%;
	}
	#bottom_box .newsletter_txt{
		width:100%;
	}
	#bottom_box .newsletter_btn{
		margin:10px 0 0;
	}
	#bottom_box .newletterform label{
		width: 100%;
    	margin: 0 0 15px;
	}
	#bottom_box .link dl {
		width: 100%;
		padding: 0 0 20px;
	}
	#bottom_box .link dt{
		padding-top:20px;
	}
	#bottom_box .link{
		padding:10px 0 30px;
	}
	#bottom_box .copyright{
		padding: 30px 0 0;
    	border-top: 1px solid #d3d3d3;
	}
	
	.block_items_imagetext_1 .block_single_products_right .imagetext_content_wapper{
		padding:0 15px 30px;
	}
	
}





































