html,body,input,textarea,select,button{
	font-family: 'Barlow', sans-serif;
	font-size:16px;
}


/*pc端*/
.main{
	overflow:hidden;
	width:100%;
}
#header_box{}
#header_box .header_top{
	height:38px;
	background:#11101d;
}
#header_box .hearder_fixed{
	position:fixed;
	left:0;
	top:0;
	z-index:50000;
	width:100%;
	background:#fff;
}

#header_box .header_wapper{
	display:-webkit-flex;
	display:flex;
	flex-wrap: wrap;
	align-items:center;
	justify-content: space-between;
	box-sizing:border-box;
	max-width: 1200px;
    width: 100%;
	margin:0 auto;
}
#header_box .header_top_left{
	height:38px;
	width:50%;
	line-height:38px;
	color:#fff;
}

#header_box .header_top_right{
	display:-webkit-flex;
	display:flex;
	flex-wrap: wrap;
	align-items:center;
	flex-direction: row-reverse;
}
#header_box .header_mid{
	position:relative;
}

#header_box .search_icon{
	position:relative;
	border-left: 1px solid #22202e;
}
#header_box .search_icon a{
	display:block;
	width:46px;
	height:38px;
	text-align:center;
	background:#31303c;
}
#header_box .search_icon .search_close{
	display:none;
}
#header_box .search_icon a svg{
	height: 38px;
    width: 20px;
    fill: #fff;
}

#header_box .pop_search{
	position: absolute;
    right: 0;
    top: 38px;
    background: #fff;
    width: 400px;
    height: 0;
	overflow:hidden;
	transition:all 0.3s;
    z-index: 9999;
}
#header_box .pop_search_on{
	height:50px;
	opacity:1;
	visibility:visible;
}
#header_box .pop_search .search{
	
}
#header_box .pop_search .search form{
	width: 100%;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 50px;
    box-sizing: border-box;
}
#header_box .pop_search .search .search_input{
	border: 0;
    width: calc(100% - 50px);
    color: #606060;
    height: 50px;
    background: #ebebeb;
    text-indent: 10px;
    font-size: 16px;
}
#header_box .pop_search .search .btn_search{
	width: 50px;
    height: 50px;
    border: 0;
	padding:0;
    background: #fa6161;
    text-align: center;
}
#header_box .pop_search .search .btn_search svg{
	fill: #fff;
    width: 20px;
    height: 50px;
}







#header_box .cart_box{
	padding-right:10px;
	border-left:1px solid #22202e;
}
#header_box .cart_txt{
	width:60px;
	text-align:center;
}
#header_box .cart_txt a{
	display:block;
	position:relative;
	height:38px;
	line-height:38px;
	color:#9f9f9f;
}
#header_box .cart_txt a svg{
	height: 38px;
    width: 20px;
    fill: #fff;
}
#header_box .cart_txt a span{
	background: #31303c;
    position: absolute;
    height: 17px;
    width: 17px;
    border-radius: 50%;
    text-align: center;
    line-height: 17px;
    color: #fff;
    font-size: 12px;
    top: -1px;
    right: 10px;
}



#header_box .login-box{
	padding: 0 30px;
	border-left:1px solid #22202e;
}
#header_box .login-box a{
	display: block;
    height: 38px;
    line-height: 38px;
    color: #fff;
	
}
#header_box .login-box a svg{
	height: 38px;
    width: 20px;
    fill: #fff;
    vertical-align: top;
    margin-right: 5px;
}

#header_box .currency_box{
	padding-right: 20px;
}
#header_box .currency_txt{
	position:relative;
}
#header_box .currency_txt select{
	height:20px;
	background: none;
    border: 0;
    color: #fff;
    padding-right: 20px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
	position:relative;
	z-index:99;
}
#header_box .currency_txt svg{
	position: absolute;
    right: 0;
    top: 0;
	height:20px;
}
#header_box .currency_txt option{
	color:#333;
}

#header_box .logo{
	width: 20%;
    text-align: left;
	position: relative;
    z-index: 9; 
}
#header_box .logo a {
	display:inline-block;
}
#header_box .logo a img{
	max-width:100%;
	max-height:30px;
}



#header_box .nav_wapper{
    max-width: 80%;
}
#header_box .nav_box{
	width: 100%;
}
#header_box .nav_box .nav{
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
}
#header_box .nav_box .nav > li{
	position:relative;
	padding:0 15px;	
	z-index:999
}
#header_box .nav_box .nav > li > .cate_menu > a{
	line-height:100px;
	color:#333;
	position:relative;
	font-weight:bold;
}

#header_box .nav_box .nav > li > .cate_menu > span{
	display:inline-block;
	height: 100px;
	width: 14px;
	margin-left:5px;
    vertical-align: top;
}
#header_box .nav_box .nav > li > .cate_menu svg{
	height: 100px;
	width: 12px;
    fill:#333;
}
#header_box .nav_box .nav > li.on > .cate_menu > a,
#header_box .nav_box .nav > li > .cate_menu > a:hover{
	color:#fa6161;
}
#header_box .nav_box .nav > li.on > .cate_menu svg{
	fill:#fa6161;
}
#header_box .nav_box .sub_nav{
	position: absolute;
    top: 100px;
    left: 0;
    z-index: 9;
    background: #fff;
    width: 200px;
	opacity:0;
	visibility:hidden;
	transition:all 0.3s;
}
#header_box .nav_box li.on .sub_nav{
	opacity:1;
	visibility:visible;
}
#header_box .nav_box .sub_nav ul{} 
#header_box .nav_box .sub_nav ul li{
	border-bottom:1px solid #ddd;
}
#header_box .nav_box .sub_nav ul li a{
	display: block;
    height: 46px;
    line-height: 46px;
	color:#515151; 
	padding:0 15px; 
	text-transform:uppercase;
	font-weight:bold;
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
	transition:all 0.3s;
}
#header_box .nav_box .sub_nav ul li a:hover{
	color:#fa6161;
}
#header_box .nav_box .nav > li.on .sub_nav{
	opacity:1;
	visibility:visible;
}
.posFixed{
	padding-bottom:50px;
}

.index_default{
	width:100% !important;
}

#bottom_box{
	background: #100e1c;
}
#bottom_box .bottom_wapper{
	width:100%;
	max-width:1200px;
	margin:0 auto;
}
#bottom_box .newsletter .bottom_wapper{
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	justify-content: space-between;
}
#bottom_box .newsletter{
	background:#4a76b4;
	padding: 70px 0;
}
#bottom_box .newsletter h3{
	font-weight:normal;
	font-size:30px;
	color:#fff;
}
#bottom_box .newsletter form{
	width:630px;
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	height:55px;
	box-sizing:border-box;
}
#bottom_box .newsletter_txt{
	height:55px;
	line-height:16px;
	border:none;
	background:#fff;
	width:calc(100% - 150px);
	text-indent:10px;
	color:#000;
	box-sizing:border-box;
}
#bottom_box .newsletter_btn{
	display:inline-block; 
	background:#fa6161;
	padding:0;
	height:55px;
	line-height:55px;
	width:150px;
	border: 0;
	color:#fff;
	transition:all 0.3s;
	text-align:center;
	cursor:pointer;
	font-size:16px;
	text-transform:uppercase;
}
#bottom_box .newsletter_btn svg{
	fill:#999;
	height:36px;
	width:20px;
	transition:all 0.3s;
}
#bottom_box .newsletter_btn:hover svg{
	fill:#333;
}

#bottom_box .link{
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	padding: 70px 0;
}
#bottom_box .link dl{
	width:25%;
}
#bottom_box .link dt{
	margin-bottom:20px;
	font-size:18px;
	color:#fff;
}
#bottom_box .link dd{}
#bottom_box .link dd > a{
	color:#918f9d;
	line-height:34px;
	display:block;
	transition:all 0.3s;
}
#bottom_box .link dd > a:hover{
	color:#fff;
}

#bottom_box .shartto{
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	min-height:34px;
}
#bottom_box .shartto li{
	margin:0 10px 10px 0;
}
#bottom_box .shartto li a{
	display:block;
	width:33px;
	height:33px;
	line-height:33px;
	background:#272535;
	font-size:18px;
	color:#707070;
	text-align:center;
	transition:all 0.3s;
}
#bottom_box .shartto li a:hover{
	background:#fff;
	color:#333;
}




#bottom_box .footer_bom{
	border-top:1px solid #23212f;
	padding:30px 0;
}

#bottom_box .copyright{
	min-height:24px;
	text-align:center;
	color:#918f9d;
}




.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_banner .swiper-button-next, 
.block_items_banner .swiper-button-prev{
	border-radius:50%;
	background:rgba(255,255,255,.3);
	transform: none;
}
.block_items_banner .swiper-button-next svg, 
.block_items_banner .swiper-button-prev svg{
	fill:#fff;
}
.block_items_banner:hover .swiper-button-next, 
.block_items_banner:hover .swiper-button-prev{
	opacity: 1;
    transform: none;
    background: rgba(255,255,255,.5);
}
.block_items_banner:hover .swiper-button-next svg, 
.block_items_banner:hover .swiper-button-prev svg{
	fill:#fff;
}
.block_items_banner .swiper-pagination-bullet{
	background:#bbc1c7;
	width:13px;
	height:13px;
}
.block_items_banner .swiper-pagination-bullet-active{
	background:#fa6161;
}
.block_items_banner .banner-swiper-pagination{
	bottom:20px;
}




.mobile-navside{
	display:none;
}
.mobile-navside .mobile_nav_icon{
	height:80px;
	width:60px;
	text-align:center;
}
.mobile-navside .mobile_nav_icon svg{
	height: 80px;
    width: 20px;
	fill:#333;
}
.mobile-navside .mobile_nav_icon .mobile_nav_close{
	display:none;
}
.mobile-navside .mobile-nav{
	position:absolute;
	top:80px;
	right:0;
	background: #fa6161;
    width: 100%;
	box-sizing:border-box;
	z-index:999;
	transition: all 0.3s;
	display:none;
}
.mobile-navside .mobile-nav > ul > li{
	border-bottom:1px solid #fcb0b0;
}
.mobile-navside .mobile-nav .cate_menu{
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	height:55px;
	line-height:55px;
	padding:0 0 0 30px;
}
.mobile-navside .mobile-nav .cate_menu a{
	display:block;
	width:calc(100% - 55px);
	color:#fff;
	font-size:16px;
	font-weight:bold;
	box-sizing:border-box;
}
.mobile-navside .mobile-nav .cate_menu .down_icon{
	width:55px;
	height:55px;
	text-align:center;
	border-left:1px solid #fcb0b0;
	box-sizing:border-box;
}
.mobile-navside .mobile-nav .cate_menu .down_icon svg{
	width:18px;
	height:55px;
	fill:#fff;
	transition:all 0.3s;
}
.mobile-navside .mobile-nav li.on .cate_menu .down_icon svg{
	transform:rotate(-180deg);
}

.mobile-navside .mobile-nav .sub_nav{
	display:none;
}
.mobile-navside .mobile-nav .sub_nav li{
	border-top:1px solid #fcb0b0;
}
.mobile-navside .mobile-nav .sub_nav li a{
	display:block;
	line-height:55px;
	font-size:16px;
	color:#fff;
	padding-left:50px;
	font-weight:bold;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}



/*响应式*/
@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){
	#bottom_box .bottom_wapper,
	#header_box .header_wapper{
		padding:0 50px;
		box-sizing:border-box;
	}
	#header_box .header_top_left{
		width:auto;
	}
	#header_box .header_top{
		height:auto;
	}
	#header_box .header_top .header_wapper{
		flex-direction: column;
	}
}
@media screen and (max-width:1023px){
	
}
@media screen and (max-width:768px){
	#bottom_box .bottom_wapper,
	#header_box .header_wapper{
		padding:0 30px;
		box-sizing:border-box;
	}
	#header_box .nav_wapper{
		display:none;
	}
	.mobile-navside{
		display:block;
	}
	.mobile-navside .mobile_nav_on .mobile_nav_close{
		display:block;
	}
	.mobile-navside .mobile_nav_on .mobile_nav_svg{
		display:none;
	}
	#bottom_box .newsletter h3{
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}
	#bottom_box .newsletter form{
		width:100%;
	}
	
}
@media screen and (max-width:767px){
	#header_box .header_top_left{
		height:auto;
		line-height:20px;
		padding:10px 0;
	}
	#bottom_box .bottom_wapper, 
	#header_box .header_wapper{
		padding:0 15px;
	}
	#header_box .logo{
		width:auto;
	}
	#header_box .header_top .header_wapper{
		padding:0;
	}
	#header_box .header_top_left{
		padding:10px 15px;
		text-align:center;
	}
	#header_box .header_top_right{
		width:100%;
	}
	#header_box .search_icon,
	#header_box .cart_box,
	#header_box .login-box,
	#header_box .currency_box{
		width:25%;
		box-sizing:border-box;
		text-align:center;
	}
	#header_box .search_icon a{
		width:100%;
	}
	#header_box .cart_txt{
		margin:0 auto;
	}
	#header_box .login-box a svg{
		margin:0;
	}
	#header_box .currency_box{
		padding:0;
	}
	#header_box .currency_txt{
		display:inline-block;
	}
	#header_box .login-box a{
		font-size:0;
	}
	#header_box .search_icon a{
		background:none;
		width:100%;
	}
	#bottom_box .link dl{
		width:100%;
		margin-top:40px;
	}
	#bottom_box .link{
		padding:40px 0;
	}
	#bottom_box .newsletter{
		padding:40px 0;
	}
	#bottom_box .newsletter h3{
		text-align:left;
		font-size:18px;
	}
	#bottom_box .newsletter form{
		height:auto;
	}
	#bottom_box .newsletter_txt{
		width:100%;
	}
	#bottom_box .newsletter_btn{
		width:100%;
		margin-top:15px;
	}
	#header_box .pop_search{
		width:100vw;
		z-index:999;
	}
}





































