html,body,input,textarea,select,button{
	font-family: Hind, Helvetica, sans-serif; 
}

/*pc端*/
.main{
	overflow:hidden;
	width:100%;
}
#header_box{
	height:50px;
}
#header_box .header_fixed{
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:50px;
	background:#fff;
	box-shadow:0 0 5px rgba(0,0,0,.2);
	z-index:9999;
}
#header_box .header_wapper{
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	justify-content: space-between;
	max-width:1200px;
	width:100%;
	margin:0 auto;
	height:50px;
}
#header_box .logo{
	width:200px;
}
#header_box .logo a{}
#header_box .logo a img{
	max-height:30px;
	max-width:200px;
}

#header_box .header_right{
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	flex-direction: row-reverse;
	width:200px;
	padding: 0;
}
#header_box .currency_box{
	width:30px;
	height:30px;
	position:relative;
	text-align:center;
	margin-left:10px;
	z-index:999;
}
#header_box .currency_txt{}
#header_box .currency_txt .currency_icon{}
#header_box .currency_txt .currency_icon svg{
	fill:#000;
	width:18px;
	height:30px;
}
#header_box .drop_currency{
	position:absolute;
	right:0;
	top:40px;
	width:200px;
	padding:20px 0 20px 20px;
	text-align:left;
	background:#fff;
	display:none;
	box-shadow:0px 0px 10px rgba(0, 0, 0, 0.08);
	box-sizing:border-box;
}
#header_box .drop_currency a{
	color:#000;
}
#header_box .drop_currency a:hover{
	color:#2879fe;
}

#header_box .login_link{
	margin-left:10px;
}
#header_box .login_link > a{
	display:inline-block;
	height:30px;
	width:30px;
	color:#000;
	text-align:center;
}
#header_box .login_link > a > svg{
	fill:#000;
	width:18px;
	height:30px;
}
#header_box .login_link > a:hover svg{
	fill:#2879fe;
}
#header_box .search_icon{}
#header_box .search_icon a{
	display:block;
	width:30px;
	height:30px;
	text-align:center;
}
#header_box .search_icon a svg{
	width:18px;
	height:30px;
	fill:#000;
}
#header_box .search_icon a:hover svg{
	fill:#2879fe;
}





#header_box .cart_box{
	margin-left:10px;
} 
#header_box .cart_txt{}
#header_box .cart_box a{
	display:block;
	width:30px;
	height:30px;
	text-align:center;
	position:relative;
}
#header_box .cart_box a svg{
	width:18px;
	height:30px;
	fill:#000;
}
#header_box .cart_box a span{
	position:absolute;
	right:-2px;
	top:-2px;
	width:16px;
	height:16px;
	line-height:16px;
	border-radius:50%;
	background:#2879fe;
	color:#fff;
	font-size:12px;
}
#header_box .cart_box a:hover svg{
	fill:#2879fe;
}

#header_box .nav_wapper{
	width:calc(100% - 400px);
}
#header_box .nav_box{
	width:100%;
	border: 0;	
}
#header_box .nav_box > .nav{
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	height:30px;
}
#header_box .nav_box > .nav > li{
	position:relative;
}
#header_box .nav_box > .nav > li > .cate_menu{
	height:30px;
}
#header_box .nav_box > .nav > li > .cate_menu a{
	display:inline-block;
	color:#fff;
	height:30px;
	line-height:30px;
	font-size:14px;
    color: #333;
	padding:0 15px;
	transition:all 0.25s ease 0s;
}
#header_box .nav_box > .nav > li a:hover,
#header_box .nav_box > .nav > li.on a{
	color: #2879fe;
}

#header_box .nav_box > .nav > li > .cate_menu .down_icon{
	display: none;
    height: 40px;
    vertical-align: top;
    margin-left: 5px;
}
#header_box .nav_box > .nav > li > .cate_menu .down_icon svg{
	fill: #fff;
    width: 14px;
    height: 40px;
    vertical-align: top;
}

#header_box .nav_box > .nav > li .sub_nav{
	position: absolute;
    left: 0;
    top: 30px;
    width: 260px;
    padding: 20px 0 20px 20px;
    display: none;
    box-sizing: border-box;
    z-index: 99;
    background: #fff;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
}
#header_box .nav_box > .nav > li .sub_nav a{
	display:block;
	height:30px;
	line-height:30px;
	color:#888;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
	transition:all 0.25s ease 0s;
}
#header_box .nav_box > .nav > li .sub_nav a:hover{
	color:#2879fe;
}
#header_box .nav_box > .nav > li:hover .sub_nav,
#header_box .nav_box > .nav > li.on .sub_nav{
	display:block;
}

.pop_search{
	position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: #fff;
   
    opacity: 0;
    visibility: hidden;
	box-shadow:0 0 5px rgba(0,0,0,.5);
    transition: all 0.3s;
    z-index: 500000;
}
.pop_search_on{
	height:120px;
	 padding: 50px 0;
	visibility:visible;
	opacity:1;
}
.pop_search .search{
	width: 100%;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 0;
    box-sizing: border-box;
}

.pop_search .searchform{
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 60px;
    border-bottom: 1px solid #eceaea;
}
.pop_search .search_input{
	width: calc(100% - 60px);
    height: 60px;
    background: none;
    color: #808080;
    font-size: 30px;
    border: 0;
    font-weight: normal;
    box-sizing: border-box;
}
.pop_search .btn_search{
	width: 60px;
    height: 60px;
    border: 0;
    text-align: right;
    cursor: pointer;
    background: none;
	padding:0;
}
.pop_search .btn_search svg{
	height: 60px;
    width: 24px;
    fill: #000;
}
.pop_search .search_close{
	height: 40px;
    line-height: 40px;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    width: 100%;
    text-align: right;
}
.pop_search .search_close svg{
    width: 20px;
    height: 20px;
    fill: #000;
}

.index_default{
	width:100% !important;
}




#bottom_box{
	background:#f7f8fa;
}
#bottom_box .bottom_top{
	height:60px;
	background:#b704eb;
	color:#fff;
}
#bottom_box .bottom_wapper{
	max-width:1200px;
	width:100%;
	margin:0 auto;
}
#bottom_box .bottom_top .bottom_wapper{
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content:space-between;
	height:60px;
}
#bottom_box .bottom_top h3{
	width:300px;
	font-size:16px;
	color:#fff;
	text-transform:uppercase;
	font-weight:normal;
	position:relative;
}
#bottom_box .bottom_top form{
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	width:calc(100% - 600px);
}

#bottom_box .newsletter_txt{
	width: calc(100% - 100px);
    height: 40px;
	line-height:16px;
    background: none;
    color: #333;
    border-radius: 5px 0 0 5px;
    text-indent: 10px;
    font-weight: normal;
    box-sizing: border-box;
	background:#fff;
	border:0;
}
#bottom_box .newsletter_btn{
	width: 100px;
    height: 40px;
    border: 0;
    background: #2879fe;
    text-align: center;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
	color:#fff;
}
#bottom_box .shartto{
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	min-height:34px;
	width:300px;
	justify-content: flex-end;
}
#bottom_box .shartto li{
	margin:5px 0 5px 15px;
}
#bottom_box .shartto li a{
	display: block;
    color: #fff;
    font-size: 18px;
    text-align: center;
    transition: all 0.3s;
}
#bottom_box .shartto li a:hover{
	color:#000;
}

#bottom_box .link{
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	padding: 50px 0;
}
#bottom_box .link dl{
	width:25%;
	box-sizing:border-box;
}
#bottom_box .link dt{
	margin-bottom:15px;
	font-size:16px;
	color:#000;
	text-transform:uppercase;
	position:relative;
}

#bottom_box .link dd{}
#bottom_box .link dd > a{
	color:#888;
	line-height:30px;
	display:block;
	transition:all 0.3s;
}
#bottom_box .link dd > a:hover{
	color:#2879fe;
}






#bottom_box .footer_bom{
	background:#fff;
	padding:20px 0;
}
#bottom_box .footer_bom .bottom_wapper{
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
	
}
#bottom_box .footer_bom_left{
	text-align:left;
	width:50%;
}
#bottom_box .payment_con{
	min-height:20px;
}
#bottom_box .payment_con img{
	max-width:100%;
}
#bottom_box .footer_bom_right{
	text-align:right;
	width:50%;
}
#bottom_box .copyright{
	min-height:30px;
	line-height:30px;
	color:#888;
}





.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;
}







.mobile-navside{
	display: block;
    width: 100%;
    height: 100%;
    overflow-y: auto;
	position: fixed;
	left:0;
	top:0;
    z-index: 99999; 
    background: rgba(0,0,0,.3);
	opacity:0;
	visibility:hidden;
	transition: all 0.3s;
}
.mobile-navside-on{
	
	opacity:1;
	visibility:visible;
}
.mobile-navside .mobile-nav{
	position:relative;
	background: #fff;
    width: 270px;
	height:100%;
	padding:0 0 30px;
	box-sizing:border-box;
	overflow:auto;
	transform:translate(-100%,0);
	transition: all 0.3s;
}
.mobile-navside-on .mobile-nav{
	transform:translate(0,0);
}
.mobile-navside .mobile-nav .mobile-nav-close{
	height:50px;
	line-height:50px;
	border-bottom:1px solid #e9e7e7;
	color:#2879fe;
	padding:0 15px;
	cursor:pointer;
}
.mobile-navside .mobile-nav .mobile-nav-close svg{
	vertical-align:top;
	height:48px;
	width:16px;
	fill:#2879fe;
}
.mobile-navside .mobile-nav .mobile-nav__middle{
	padding:15px;
}

.mobile-navside .mobile-currency_box{
	margin-top:10px;
	width:calc(100% - 20px);
	margin-left:10px;
	height:40px;
	border:1px solid #e6e6e6;
	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;
}
.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 .mobile-nav__middle > ul > li{}
.mobile-navside .mobile-nav__middle .cate_menu{
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	height:40px;
	line-height:40px;
}
.mobile-navside .mobile-nav__middle .cate_menu a{
	display:block;
	width:calc(100% - 40px);
	color:#191919;
	box-sizing:border-box;
}
.mobile-navside .mobile-nav__middle .cate_menu .down_icon{
	width:40px;
	height:40px;
	text-align:center;
}
.mobile-navside .mobile-nav__middle .cate_menu .down_icon svg{
	width:16px;
	height:40px;
	fill:#191919;
	transition:all 0.3s;
	transform:rotate(-90deg);
}
.mobile-navside .mobile-nav__middle li.on .cate_menu .down_icon svg{
	transform:none ;
}

.mobile-navside .mobile-nav__middle .sub_nav{
	display:none;
}
.mobile-navside .mobile-nav__middle .sub_nav li a{
	display:block;
	line-height:34px;
	color:#191919;
	padding-left:10px;
}





#bottom_box .dl_icon,
.mobile_nav_icon{
	display:none;
}

/*积木块修改*/
.block_items_imagetext .imagetext_pic{
	background-attachment:fixed !important;
}
.block_items_category_list .block_category_content .category-name{
	transition:all 0.3s;
}
.block_items_category_list .block_category_content li .category-name:hover{
	background:rgba(183, 4, 235, 0.9);
}
.block_items_banner .swiper-button-next, 
.block_items_banner .swiper-button-prev,
.block_items_banner:hover .swiper-button-next, 
.block_items_banner:hover .swiper-button-prev{
	background:none;
	transform:none;
}
.block_items_banner .swiper-button-next svg, 
.block_items_banner .swiper-button-prev svg,
.block_items_banner:hover .swiper-button-next svg, 
.block_items_banner:hover .swiper-button-prev svg{
	fill:#fff;
}
.block_items_banner .swiper-button-next svg:hover, 
.block_items_banner .swiper-button-prev svg:hover{
	fill:#000;
}










/*响应式*/
@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;
	}
}
@media screen and (max-width:1024px){
	#header_box .nav_wapper{
		display:none;
	}
	#header_box .logo{
		width:100%;
		padding:15px 0;
	}
	#header_box .header_wapper{
		flex-direction: column-reverse;
		height: auto;
		text-align: center;
		padding:0;
	}
	#header_box .header_right{
		width:100%;
		position:relative;
		padding:10px 50px;
		box-sizing:border-box;
		border-bottom:1px solid #e9e7e7;
	}
	.mobile_nav_icon{
		display:block;
		width:30px;
		height:30px;
		text-align:center;
		position:absolute;
		left:50px;
		top:10px;
	}
	.mobile_nav_icon svg{
		height:30px;
		width:18px;
		fill:#000;
	}
	.pop_search_on{
		padding: 50px;
		box-sizing: border-box;
		height: 220px;
	}
	#header_box .logo{
		position: absolute;
		left: 100px;
		top: 0;
		height: 50px;
		padding: 10px 0;
		box-sizing: border-box;
		width: 200px;
		text-align: left;
	}
	
}
@media screen and (max-width:768px){
	#bottom_box .bottom_wapper,,
	#header_box .header_wapper{
		padding:0 30px;
	}
	#bottom_box .bottom_top{
		height:auto;
		background:none;
		color:#000;
	}
	#bottom_box .bottom_wapper{
		height:auto;
		padding:0 100px;
	}
	#bottom_box .link dt,
	#bottom_box .bottom_top h3{
		position: relative;
		width: 100%;
		height: 40px;
		line-height:40px;
		border-bottom: 1px solid #eee;
		margin:15px 0 0;
		color:#191919;
	}
	#bottom_box .dl_icon{
		display:block;
		position: absolute;
		right: 0;
		top: 0;
	}
	#bottom_box .dl_icon svg{
		height:40px;
		width:16px;
		fill:#333;
	}
	#bottom_box .dl_icon .reduce_icon{
		display:none;
	}
	#bottom_box .bottom_top.on form,
	#bottom_box .bottom_top.on .shartto{
		display: -webkit-flex;
    	display: flex;
	}
	#bottom_box .bottom_top .bottom_wapper{
		height:auto;
	}
	#bottom_box .bottom_top.on .dl_icon .reduce_icon,
	#bottom_box .link dl.on dd,
	#bottom_box .link dl.on .dl_icon .reduce_icon{
		display:block;
	}
	#bottom_box .bottom_top.on .dl_icon .plus_icon,
	#bottom_box .link dl.on .dl_icon .plus_icon{
		display:none;
	}
	
	
	#bottom_box .bottom_top form{
		width: 100%;
    	padding: 15px 0;
		display:none;
	}
	#bottom_box .newsletter_txt,
	#bottom_box .newsletter_btn{
		width:100%;
		border-radius:5px;
	}
	#bottom_box .newsletter_btn{
		margin-top:10px;
	}
	#bottom_box .shartto{
		width: 100%;
    	justify-content: flex-start;
		display:none;
	}
	#bottom_box .shartto li{
		margin:5px 15px 5px 0;
	}
	#bottom_box .shartto li a{
		color:#191919;
	}
	#bottom_box .link{
		padding:0 0 30px;
	}
	#bottom_box .link dl{
		width:100%;
	}
	#bottom_box .link dd{
		display:none;
		padding:10px 0;
	}
	#bottom_box .footer_bom_left,
	#bottom_box .footer_bom_right{
		width:100%;
		text-align:center;
	}
	
	.block_items_imagetext .imagetext_pic{
	    background-attachment: inherit !important;
	}
	
}
@media screen and (max-width:767px){
	#bottom_box .bottom_wapper{
		padding:0 15px;
	}
	#header_box .header_right{
		padding:10px 0;
	}
	.mobile_nav_icon{
		position: relative;
		top: auto;
		left: auto;
		width: 20%;
	}
	#header_box .currency_box,
	#header_box .login_link,
	#header_box .cart_box,
	#header_box .search_icon{
		width:20%;
		margin:0;
		text-align:center;
	}
	#header_box .cart_box a{
		display:inline-block;
	}
	#header_box .search_icon a{
		width:100%;
	}
	.mobile_nav_icon svg{
		width:16px;
	}
	#header_box{
		height:101px;
	}
	#header_box .header_fixed{
		height:auto;
	}
	#header_box .logo{
		position: relative;
		width: 100%;
		left: auto;
		text-align: center;
	}
	#header_box .header_wapper{
		 flex-direction: column;
	}
}





































