:root{
	--font_mickies: "Mickies";
}
@font-face {
    font-family: 'Mickies';
    src: url('MickiesRegular.woff2') format('woff2'),
        url('MickiesRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



body { 
	font-family:"Jost", sans-serif;
	font-size:14px;
	font-weight:400;
}
.wrapper{
	max-width:1200px;
	width:100%;
	margin:0 auto;
}
input, button, textarea{
	font-family:"Jost", sans-serif;
}
.mobile-nav{
	display:none;
}





.search-box{
    height: 0;
    padding: 0 200px;
	overflow:hidden;
	transition:all 0.5s;
}
.search-on{
	height: 80px;
}
.search-box .search-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.search-box .searchform{
    width: calc(100% - 30px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e9e9e9;
    height: 50px;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 50px;
	background:#fff;
}
.search-box .search_input{
    width: calc(100% - 50px);
    height: 48px;
    border: none;
    text-indent: 20px;
    font-size: 14px;
    font-weight: normal;
    font-family: Jost;
    color: #000;
}
.search-box .btn_search{
    width: 50px;
    height: 48px;
    border: none;
    background: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-box .btn_search svg{
    width: 20px;
    height: 20px;
    fill: #203d6a;
	transition:all 0.3s;
}

.search-box .search_close svg{
    width: 20px;
    height: 20px;
    fill: #203d6a;
	transition:all 0.3s;
}
.search-box .search_close:hover svg,
.search-box .btn_search:hover svg{
    fill: #fb6e50;
}
#header_box{
	height:120px;
}
#header_box .header_top{
    height: 40px;
    color: #fff;
    background-color: #fb6e50;
	font-family:var(--font_mickies);
	font-size:18px;
}
#header_box .header_top .top_txt{
	height:40px;
	min-width:200px;
	line-height:40px;
	text-align:center;
}



#header_box .header_mid{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
	padding:0 200px;
}




#header_box .header_left{

	flex: 1 1 0;
}
#header_box .header_nav{
   	padding:0 10px 0 0;
}
#header_box .header_nav .wrapper{
	display: flex;
	position:relative;
	z-index:999;
}

#header_box .header_mid .right_nav_menu,
#header_box .header_nav .nav_menu{
	position:relative;
	height:80px;
}
#header_box .header_mid .right_nav_menu > ul,
#header_box .header_nav .nav_menu > ul{
    display: flex;
    align-items: center;
	justify-content: flex-end;
	width: 100%;
    
}
#header_box .header_mid .right_nav_menu > ul > li,
#header_box .header_nav .nav_menu > ul > li{
	padding:20px 0;
	margin:0 10px;
	position:relative;
	z-index:999;
}
#header_box .header_mid .right_nav_menu > ul > li .menu_link a,
#header_box .header_nav .nav_menu > ul > li .menu_link a{
	display:block;
	height:42px;
	line-height:42px;
	color:#203d6a;
	transition:all 0.3s;
	font-size:18px;
	position:relative;
	padding:0 10px;
	font-weight:bold;
}
#header_box .header_mid .right_nav_menu > ul > li .menu_link a:hover,
#header_box .header_mid .right_nav_menu > ul > li.on .menu_link a,
#header_box .header_nav .nav_menu > ul > li .menu_link a:hover,
#header_box .header_nav .nav_menu > ul > li.on .menu_link a{
	color: #fb6e50;
}

#header_box .header_mid .right_nav_menu > ul > li.on .menu_link a:after,
#header_box .header_mid .right_nav_menu > ul > li .menu_link a:hover:after,
#header_box .header_nav .nav_menu > ul > li.on .menu_link a:after,
#header_box .header_nav .nav_menu > ul > li .menu_link a:hover:after{
	width:100%;
}

#header_box .header_mid .right_nav_menu > ul > li .menu_dropdown,
#header_box .header_nav .nav_menu > ul > li .menu_dropdown{
    position: absolute;
    left: -20px;
    top: 80px;
    background: #fff;
    width: 220px;
	padding:10px 20px 8px;
	transform:translate(0,-20px);
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    text-align: left;
    box-shadow: 0 0 3px 0 rgb(0 0 0 / 10%);
	
}
#header_box .header_mid .right_nav_menu > ul > li .menu_dropdown li,
#header_box .header_nav .nav_menu > ul > li .menu_dropdown li{
    line-height: 24px;
    padding: 5px 0;
}
#header_box .header_mid .right_nav_menu > ul > li .menu_dropdown li a,
#header_box .header_nav .nav_menu > ul > li .menu_dropdown li a{
	display:block;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	color: #222;
	transition:all 0.3s;
}
#header_box .header_mid .right_nav_menu > ul > li .menu_dropdown li a:hover,
#header_box .header_nav .nav_menu > ul > li .menu_dropdown li a:hover{
	color:#fb6e50;
}
#header_box .header_mid .right_nav_menu > ul > li.on .menu_dropdown,
#header_box .header_nav .nav_menu > ul > li.on .menu_dropdown{
	opacity:1;
	visibility:visible;
	transform:none;
}
#header_box .header_mid .right_nav_menu > ul > li.menu2-list2 .menu_dropdown,
#header_box .header_nav .nav_menu > ul > li.menu2-list2 .menu_dropdown{
    width: 500px;
}
#header_box .header_mid .right_nav_menu > ul > li.menu2-list2 ul,
#header_box .header_nav .nav_menu > ul > li.menu2-list2 ul{
	display: grid;
    grid-template-columns: repeat(2,1fr);	
}

#header_box .header_mid .right_nav_menu > ul > li.menu2-list3,
#header_box .header_mid .right_nav_menu > ul > li.menu2-list4,
#header_box .header_nav .nav_menu > ul > li.menu2-list3,
#header_box .header_nav .nav_menu > ul > li.menu2-list4{
	position:inherit;
}
#header_box .header_mid .right_nav_menu > ul > li.menu2-list3 .menu_dropdown,
#header_box .header_mid .right_nav_menu > ul > li.menu2-list4 .menu_dropdown,
#header_box .header_nav .nav_menu > ul > li.menu2-list3 .menu_dropdown,
#header_box .header_nav .nav_menu > ul > li.menu2-list4 .menu_dropdown{
    width: 100%;
	box-sizing:border-box;
	left:0;
    display: flex;
    justify-content: center;
	padding:30px 0;
}
#header_box .header_mid .right_nav_menu > ul > li.menu2-list3 .menu_dropdown ul,
#header_box .header_nav .nav_menu > ul > li.menu2-list3 .menu_dropdown ul{
	display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-column-gap: 100px;
}
#header_box .header_mid .right_nav_menu > ul > li.menu2-list4 .menu_dropdown ul,
#header_box .header_nav .nav_menu > ul > li.menu2-list4 .menu_dropdown ul{
	display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-column-gap: 100px;
}

#header_box .header_center{
	max-width:175px;
}
#header_box .header_mid .logo{
	display: flex;
    align-items: center;
	justify-content:center;
    width: 100%;
}
#header_box .header_mid .logo img{
    max-height: 60px;
}


#header_box .header_mid .header_right{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
	flex: 1 1 0;
	padding-left:10px ;
}
#header_box .header_mid .right_nav_menu{
	height:80px;
	width:calc(100% - 200px);
}
#header_box .header_mid .right_nav_menu > ul{
	justify-content: flex-start;
}

#header_box .mobile-category-icon{
	display:none;
}
#header_box .header_mid .header_right_links{
    display: flex;
    align-items: center;
}
#header_box .header_mid .header_right_links .account-btn,
#header_box .header_mid .header_right_links .search-btn,
#header_box .header_mid .header_right_links .cart_box,
#header_box .header_mid .header_right_links .currency_links{
	display:block;
	padding:0 10px;
}
#header_box .header_mid .header_right_links .account-btn svg,
#header_box .header_mid .header_right_links .search-btn svg,
#header_box .header_mid .header_right_links .cart_box svg,
#header_box .header_mid .header_right_links .currency_links svg{
    width: 20px;
    height: 20px;
    fill: #fb6e50;
	transition:all 0.3s;
}

#header_box .header_mid .header_right_links .search-btn.search-btn-on svg,
#header_box .header_mid .header_right_links .currency_on .currency_links svg,
#header_box .header_mid .header_right_links .account-btn:hover svg,
#header_box .header_mid .header_right_links .search-btn:hover svg,
#header_box .header_mid .header_right_links .cart_box:hover svg,
#header_box .header_mid .header_right_links .currency_links:hover svg{
    fill: #203d6a;
}

#header_box .header_mid .header_right_links .cart_txt{
    position: relative;
}
#header_box .header_mid .header_right_links .cart_txt strong{
    position: absolute;
    top: -8px;
    right: -8px;
    background: #fb5f1f;
    color: #fff;
    padding-right: 0px;
    border: 1px solid;
    border-radius: 50%;
    font-size: 8px;
    min-width: 16px;
    height: 16px;
    line-height: 14px;
    text-align: center;
    display: block;
    font-weight: normal;
}
#header_box .header_mid .currency_box > a{
    justify-content: flex-start;
}
#header_box .header_mid .currency_box{
    position: relative;
    z-index: 9999;
}
#header_box .header_mid .drop_currency{
    position: absolute;
    right: -40px;
    top: 50px;
    color: #666;
    background-color: #fff;
    text-align: left;
    box-shadow: 0 0 15px #6666661a;
    transition: all .3s ease-in-out;
    padding: 20px 25px;
    width: 300px;
	opacity: 0;
    visibility: hidden;
	transform:translate(0,-20px);
    transition: all 0.5s;
    box-sizing: border-box;
}

#header_box .header_mid .drop_currency dl dt{
	text-transform:uppercase;
	letter-spacing: .2px;
	margin-bottom:10px;
}
#header_box .header_mid .drop_currency dl dd{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
#header_box .header_mid .drop_currency dl dd a{
	border: 1px solid rgba(19,19,19,.2);
    background: #fafafa;
    color: #000;
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    padding: 1px 10px;
	margin:0 5px 5px 0;
    opacity: .6;
	transition:all 0.3s;
}
#header_box .header_mid .drop_currency dl dd a:hover{
	opacity: 1;
}
#header_box .header_mid .drop_currency dl dd a.on{
	background:#000;
	color:#fff;
	border-color:#000;
	opacity:1;
}
#header_box .header_mid .currency_on .drop_currency{
	opacity:1;
	visibility:visible;
	transform:none;
}

#header_box .fixed_box{
	transition:all 0.3s;
}
#header_box.posFixed .fixed_box{
	position:fixed;
	left:0;
	top:0;
	width:100%;
	z-index:999;
	background:rgba(255,255,255,.95);
	box-shadow: 0 0 10px rgb(26 26 26 / 15%);
}
#header_box.posFixed .fixed_box .header_top{
	display:none;
}
.search-box.searchFixed{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.9);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    z-index: 9999;
	display:none;
}
.search-box.searchFixed .search-wrapper{
	width:100%;
	
}
.search-on.searchFixed{
	display:block;
}


.index_default{
	width:100% !important;
}

#bottom_box .newsletter_box{
	height:430px;
	background:url(../images/footer_bg1.png) no-repeat scroll center center;
	background-size:cover;
	display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#bottom_box .newsletter_box .newsletter_detail{
    font-size: 16px;
}
#bottom_box .newsletter_box h3{
	font-size: 48px;
	color:#203d6a;
    font-family: var(--font_mickies);
	margin-top:20px;
}
#bottom_box .newsletter_box form{
    margin-top: 70px;
    width: 700px;
    border-bottom: 2px solid #cbc6c3;
    display: flex;
    align-items: center;
    justify-content: center;
}
#bottom_box .newsletter_box .newsletter_txt{
    height: 60px;
    width: calc(100% - 120px);
    background: none;
    border: none;
	text-indent:15px;
}
#bottom_box .newsletter_box .newsletter_btn{
    width: 120px;
    height: 60px;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    color: #203d6a;
    font-family: var(--font_mickies);
    font-size: 24px;
}


#bottom_box .footer_links{
    padding: 80px 200px;
	background:url(../images/footer_bg2.png) no-repeat scroll center center;
	background-size:cover;
}
#bottom_box .footer_links .footer_links_wrapper{
	display: flex;
}
#bottom_box .footer_links dl{
	width:23%;
	box-sizing:border-box;
}
#bottom_box .footer_links dl.quick-links{
	width:18%;
	padding-left:20px;
}
#bottom_box .footer_links dl.contact_us{
	padding-right:30px;
}
#bottom_box .footer_links dl dt{
	font-weight: 600;
    font-size: 16px;
    color: #fff;
	margin-bottom:30px;
	box-sizing:border-box;
}
#bottom_box .footer_links dl dt .help-icon{
	display:none;
}
#bottom_box .footer_links dl dd{
	line-height:30px;
	color: #fff;
}
#bottom_box .footer_links dl.quick-links dd a{
	display:block;
	color: #fff;
	line-height:30px;
	transition:all 0.5s;
}
#bottom_box .footer_links dl.quick-links dd a:hover{
	color:#fb6e50;
}


#bottom_box .footer_links dl.sns_box{
	padding-left:30px;
}
#bottom_box .footer_links dl.sns_box .sns_bottom ul{
    display: flex;
    align-items: center;
    min-height: 38px;
}
#bottom_box .footer_links dl.sns_box .sns_bottom li a{
    display: block;
    color: #fff;
    font-size: 18px;
    transition: all 0.5s;
}
#bottom_box .footer_links dl.sns_box .sns_bottom li a:hover {
    color: #fb6e50;
}

#bottom_box .footer_links dl dd.sns_bottom ul{
    display: flex;
    flex-wrap: wrap;
}
#bottom_box .footer_links dl dd.sns_bottom li{
	margin:0 20px 20px 0;
}
#bottom_box .footer_links dl dd.pay_txt{
	margin-top:20px;
	min-height:30px;
}








#bottom_box .copyright{
    padding: 15px 0;
	line-height:30px;
    text-align: center;
	background-color: #1f1f1f;
	color:#fff;
	border-top:2px solid #545454;
}
#bottom_box .copyright a{
	color:#fff;
}

.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 {
    padding: 0 0 80px;
}

.block_title a,
.block_title{
	margin-bottom:60px;
	color:#fb6e50;
	font-family:var(--font_mickies);
	font-size:48px;
}


.block_items_banner .banner-swiper-pagination,
.block_items_banner .swiper-button-next, 
.block_items_banner .swiper-button-prev{
	display:none;
}

.block_items_imagetext_list ul{
	font-size:inherit;
	display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-row-gap: 30px;
    grid-column-gap: 30px;
}
.block_items_imagetext_list li{
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
}
.block_items_imagetext_list li .imagetext_pic{
	position:relative;
}
.block_items_imagetext_list li .imagetext_pic:before{
	content:'';
	position:absolute;
	left:50%;
	top:50%;
	width:290px;
	height:290px;
	background:rgba(253,182,167,.2);
	border-radius:50%;
	margin:-145px 0 0 -145px;
	transition:all 0.5s;
}
.block_items_imagetext_list li .imagetext_pic{
	max-width:340px;
	padding:20px 0;
}
.block_items_imagetext_list li .imagetext_pic:hover:before{
	transform: scale(1.1);
	background:rgba(253,182,167,1);
}
.block_items_imagetext_list li .imagetext_pic img{
	position:relative;
	z-index:9;
	transition:all 0.5s;
}
.block_items_imagetext_list li .imagetext_pic:hover img{
	transform: scale(.9);
}
.block_items_imagetext_list li .imagetext_content{
	text-align:center;
}
.block_items_imagetext_list li .imagetext_content_title{
	color: #203d6a;
	font-size:36px;
	font-family:var(--font_mickies);
}
.block_items_imagetext_list li .imagetext_content_detail{
	color:#000;
}
.block_image_2 .image-1, 
.block_image_2 .image-2{
	border-radius:20px;
	overflow:hidden;
	margin-right: 30px;
    width: calc(50% - 15px);
}
.block_image_2 .image-2{
	margin-right:0;
}
.block_image_2 .image-1 a, 
.block_image_2 .image-2 a{
	position:relative;
}
.block_image_2 .image-1 a:before, 
.block_image_2 .image-2 a:before{
	content:'';
	
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0,0,0,0));
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff);
	opacity:0;
	visibility:hidden;
	transition:all 0.5s;
}
.block_image_2 .image-1 a:hover:before, 
.block_image_2 .image-2 a:hover:before{
	opacity:.4;
	visibility:visible;
	
}
.block_items_solgan{
	width:100%;
	box-sizing:border-box;
}
.block_items_solgan,
.block_image_full.format0,
.block_image_full,
.block_image_3_full_screen,
.block_items_topic_list,
.block_items_products_rec_full_screen,
.block_items_products_switch_full_screen,
.block_items_products_rec_full_screen,
.block_items_products_tab_full_screen,
.block_image_2_full_screen,
.block_items_imagetext_list{
	max-width:100%;
	padding-left:200px;
	padding-right:200px;
}
.block_items_products_switch .block_rec_ul li,
.block_items_products_rec .block_rec_ul li,
.block_items_products_tab .block_rec_ul li{
	width: calc(25% - 30px);
    margin-right: 40px;
}
.block_items_products_rec .block_rec_ul li:nth-child(4n),
.block_items_products_tab .block_rec_ul li:nth-child(4n) {
    margin-right: 0;
}

.product_list_2020 .common_pro_list1 li .product_img,
.block_items_products_switch .block_rec_ul li .product_img,
.block_items_products_rec .block_rec_ul li .product_img,
.block_items_products_tab .block_rec_ul li .product_img{
	border-radius: 20px;
    overflow: hidden;
}
.product_list_2020 .common_pro_list1 li .discount,
.block_items_products_rec .block_rec_ul li .discount, 
.block_items_products_switch .block_rec_ul li .discount,
.block_items_products_tab .block_rec_ul li .discount,
.product_list_2020 .common_pro_list1 li .newin,
.block_items_products_switch .block_rec_ul li .newin,
.block_items_products_rec .block_rec_ul li .newin,
.block_items_products_tab .block_rec_ul li .newin{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 10px;
    left: 10px;
	font-size:12px;
}
.product_list_2020 .common_pro_list1 li .discount,
.block_items_products_tab .block_rec_ul li .discount,
.block_items_products_rec .block_rec_ul li .discount, 
.block_items_products_switch .block_rec_ul li .discount{
	top: 50px;
    line-height: 1;
    text-align: center;
}
.product_list_2020 .common_pro_list1 li .pic:before,
.block_items_products_switch .block_rec_ul li .pic:before,
.block_items_products_rec .block_rec_ul li .pic:before,
.block_items_products_tab .block_rec_ul li .pic:before{
	content:'';
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0);
	z-index:2;
	transition:all 0.5s;
}
.product_list_2020 .common_pro_list1 li .pic:hover:before,
.block_items_products_switch .block_rec_ul li .pic:hover:before,
.block_items_products_rec .block_rec_ul li .pic:hover:before,
.block_items_products_tab .block_rec_ul li .pic:hover:before{
	background:rgba(0,0,0,.2);
}
.product_list_2020 .common_pro_list1 li .pic img,
.block_items_products_switch .block_rec_ul li .pic img,
.block_items_products_rec .block_rec_ul li .pic img,
.block_items_products_tab .block_rec_ul li .pic img{
	transition:all 0.5s;
}
.product_list_2020 .common_pro_list1 li .pic:hover img,
.block_items_products_switch .block_rec_ul li .pic:hover img,
.block_items_products_rec .block_rec_ul li .pic:hover img,
.block_items_products_tab .block_rec_ul li .pic:hover img{
	transform:scale(1.1);
}
.product_list_2020 .common_pro_list1 li .name,
.block_items_products_switch .block_rec_ul li .name,
.block_items_products_rec .block_rec_ul li .name,
.block_items_products_tab .block_rec_ul li .name{
	text-align:left;
	font-size:24px;
	color:#000;
	line-height:1.5;
	font-family:var(--font_mickies);
	font-weight:500;
	transition:all 0.3s;
}
.product_list_2020 .common_pro_list1 li .name:hover,
.block_items_products_switch .block_rec_ul li .name:hover,
.block_items_products_rec .block_rec_ul li .name:hover,
.block_items_products_tab .block_rec_ul li .name:hover{
	text-decoration:none;
	color:#fb6e50;
}
.product_list_2020 .common_pro_list1 li .pro_content,
.block_items_products_switch .block_rec_ul li .pro_content,
.block_items_products_rec .block_rec_ul li .pro_content,
.block_items_products_tab .block_rec_ul li .pro_content{
	text-align:left;
}
.product_list_2020 .common_pro_list1 li .price,
.block_items_products_switch .block_rec_ul li .price,
.block_items_products_rec .block_rec_ul li .price,
.block_items_products_tab .block_rec_ul li .price{
	font-weight:600;
}


.block_items_products_tab .block_title a{
	font-size: 24px;
    color: #000;
	margin:0 50px;
	font-weight:500;
	transition:all 0.5s;
}

.block_items_products_tab .block_title a:hover, 
.block_items_products_tab .block_title a.on{
	border-color:#fb6e50;
}


.block_items_products_switch .block_rec_list{
	position:relative;
	overflow:hidden;
}
.block_items_blog{
    max-width: 100%;
    width: 100%;
    padding: 0 200px;
}
.block_items_blog .news-box li{
	border:none;
	position:relative;
}
.block_items_blog .news-box .pic{
	border-radius:20px;
	overflow:hidden;
}
.block_items_blog .news-box .pic:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0,0,0,0));
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.block_items_blog .news-box .pic:hover:before {
    opacity: .4;
    visibility: visible;
}

.block_items_blog .news-box .news-time{
    position: absolute;
    left: 10px;
    top: 10px;
    height: 48px;
    line-height: 48px;
    background: #fb6e50;
    color: #fff;
    padding: 0 15px;
    border-radius: 10px;
    z-index: 9;
}
.block_items_blog .news-box .text{
	padding:0;
}
.block_items_blog .news-box .news-tit{
	font-size:30px;
	font-family:var(--font_mickies);
	font-weight:normal;
	transition:all 0.5s;
}
.block_items_blog .news-box .news-tit:hover{
	color:#fb6e50;
}
.block_items_blog .news-box .news-detail{
	line-height:1.8;
	-webkit-line-clamp: 3;
}
.block_items_blog .news-box .news-btn{
    background: none;
    padding: 0;
    margin: 10px 0 0;
    color: #fb6e50;
    font-size: 24px;
	font-family:var(--font_mickies);
	transition:all 0.5s;
}
.block_items_blog .news-box .news-btn:hover{
	color:#203d6a;
	opacity:1;
}
.block_newsletter_content .block_newsletter_title{
	font-size:16px;
	line-height:1;
}
.block_newsletter_content .block_newsletter_detail{
	font-size:48px;
	color:#203d6a;
	line-height:1;
	font-family:var(--font_mickies);
}


/*一排3个*/
.block_items_products_rec_3 .block_rec_ul li{
	width: calc(33.3333% - 14px);
	margin-right: 21px;
}
.block_items_products_rec_3 .block_rec_ul li:nth-child(4n){
	margin-right: 21px;
}
.block_items_products_rec_3 .block_rec_ul li:nth-child(3n){
	margin-right: 0;
}


/*一排5个*/
.block_items_products_rec_5 .block_rec_ul li{
	width: calc(20% - 16px);
	margin-right: 20px;
}
.block_items_products_rec_5 .block_rec_ul li:nth-child(4n){
	margin-right: 20px;
}
.block_items_products_rec_5 .block_rec_ul li:nth-child(5n){
	margin-right: 0;
}
/*一排6个*/
.block_items_products_rec_6 .block_rec_ul li{
	width: calc(16.6666666% - 15px);
	margin-right: 18px;
}
.block_items_products_rec_6 .block_rec_ul li:nth-child(4n){
	margin-right: 18px;
}
.block_items_products_rec_6 .block_rec_ul li:nth-child(6n){
	margin-right: 0;
}
/*一排3个*/
.block_items_products_tab_3 .block_rec_ul li{
	width: calc(33.3333% - 14px);
	margin-right: 21px;
}
.block_items_products_tab_3 .block_rec_ul li:nth-child(4n){
	margin-right: 21px;
}
.block_items_products_tab_3 .block_rec_ul li:nth-child(3n){
	margin-right: 0;
}


/*一排5个*/
.block_items_products_tab_5 .block_rec_ul li{
	width: calc(20% - 16px);
	margin-right: 20px;
}
.block_items_products_tab_5 .block_rec_ul li:nth-child(4n){
	margin-right: 20px;
}
.block_items_products_tab_5 .block_rec_ul li:nth-child(5n){
	margin-right: 0;
}
/*一排6个*/
.block_items_products_tab_6 .block_rec_ul li{
	width: calc(16.6666666% - 15px);
	margin-right: 18px;
}
.block_items_products_tab_6 .block_rec_ul li:nth-child(4n){
	margin-right: 18px;
}
.block_items_products_tab_6 .block_rec_ul li:nth-child(6n){
	margin-right: 0;
}











@media screen and (max-width: 1600px){
	.block_items_solgan,
	.block_image_full.format0,
	.block_image_full,
	.block_image_3_full_screen,
	.block_items_topic_list, 
	.block_items_products_rec_full_screen, 
	.block_items_products_switch_full_screen, 
	.block_items_products_rec_full_screen, 
	.block_items_products_tab_full_screen, 
	.block_image_2_full_screen, 
	.block_items_imagetext_list,
	.block_items_blog,
	#bottom_box .footer_links{
		padding-left:150px;
		padding-right:150px;
	}
}
@media screen and (max-width: 1280px){
	.block_items_solgan,
	.block_image_full.format0,
	.block_image_full,
	.block_image_3_full_screen,
	.block_items_topic_list, 
	.block_items_products_rec_full_screen, 
	.block_items_products_switch_full_screen, 
	.block_items_products_rec_full_screen, 
	.block_items_products_tab_full_screen, 
	.block_image_2_full_screen, 
	.block_items_imagetext_list,
	.block_items_blog,
	#bottom_box .footer_links{
		padding-left:100px;
		padding-right:100px;
	}
}
 




@media screen and (max-width: 1200px){
	.block_items_solgan,
	.block_image_full.format0,
	.block_image_full,
	.block_image_3_full_screen,
	.search-box,
	.block_items_topic_list, 
	.block_items_products_rec_full_screen, 
	.block_items_products_switch_full_screen, 
	.block_items_products_rec_full_screen, 
	.block_items_products_tab_full_screen, 
	.block_image_2_full_screen, 
	.block_items_imagetext_list,
	.block_items_blog,
	#bottom_box .footer_links{
		padding-left:50px;
		padding-right:50px;
	}
	.block_items_products_tab .block_title a{
		margin:0 20px;
	}
	.index_default{
		padding:0 !important;
	}
}
@media screen and (max-width: 1024px){
	

	.block_items_products_rec .block_rec_ul li, 
	.block_items_products_tab .block_rec_ul li{
		width: calc(33.3333% - 20px);
		margin-right: 20px;
	}
	.block_items_products_rec .block_rec_ul li:nth-child(4n), 
	.block_items_products_tab .block_rec_ul li:nth-child(4n){
		margin-right: 20px;
	}
	.block_items_products_rec .block_rec_ul li:nth-child(3n), 
	.block_items_products_tab .block_rec_ul li:nth-child(3n){
		margin-right: 0;
	}
	.block_items_imagetext_img .imagetext_pic{
		height:400px;
	}
	.block_items_imagetext_img .imagetext_pic img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	#header_box .header_mid .right_nav_menu,
	#header_box .header_left{
		display:none;
	}
	#header_box .header_mid{
		padding: 0 50px;
	}
	#header_box .header_mid .header_right{
		flex: none;
		padding: 0;
	}
	#header_box .mobile-category-icon{
		display:block;
	}
	#header_box .mobile-category-icon a{
		display: flex;
		align-items: center;
	}
	#header_box .mobile-category-icon .cate-icon{
		display: block;
		position: relative;
		width: 20px;
		height: 12px;
		z-index: 9;
		padding: 10px;
	}
	#header_box .mobile-category-icon .cate-icon span{
		position: absolute;
		top: 16px;
		left: 10px;
		width: 20px;
		height: 2px;
		background: #fb6e50;
		display: inline-block;
		transition: .25s ease-in-out;
	}
	#header_box .mobile-category-icon .cate-icon:before,
	#header_box .mobile-category-icon .cate-icon:after{
		content: '';
		position: absolute;
		top: 10px;
		left: 10px;
		width: 20px;
		height: 2px;
		background: #fb6e50;
		display: inline-block;
		transition: .5s ease-in-out;
	}
	#header_box .mobile-category-icon .cate-icon:after {
		top: 22px;
	}
	#header_box .mobile-category-icon a.on .cate-icon:before,
	#header_box .mobile-category-icon a.on .cate-icon:after{
		transform:translate(-3px,0);
	}

	
	
	.mobile-nav{
		display: flex;
		justify-content: flex-end;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,.7);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s;
		z-index: 99999;
	}
	.mobile-nav-on{
		opacity:1;
		visibility:visible;
	}
	.mobile-nav .mobile-nav-close svg{
		fill: #000;
		width: 16px;
    	height: 16px;
	}
	
	.mobile-nav .mobile-nav-pop{
		width: 320px;
		background: #fff;
		transform:translate(100%,0);
		transition: all 0.3s;
	}
	.mobile-nav-on .mobile-nav-pop{
		transform:none;
	}
	.mobile-nav .mobile-nav-title{
		height: 50px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		border-bottom:1px solid rgba(129,129,129,.2);
		padding: 0 20px;
	}
	.mobile-nav .mobile-nav-title a{
		font-size:14px;
	}

	
	
	
	
	.mobile-nav .mobile-nav-content{
		height: calc(100vh - 56px);
		overflow-y: auto;
		background: #fff;
	}
	.mobile-nav .menu-list > ul > li{
		
	}
	.mobile-nav .menu-list > ul > li .menu_link{
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-right:10px;
		border-bottom:1px solid rgba(129,129,129,.2);
	}
	.mobile-nav .menu-list > ul > li .menu_link a{
		width:calc(100% - 50px);
		height: 50px;
		padding: 0 20px;
		display: flex;
		align-items: center;
		font-size:13px;
	}
	.mobile-nav .menu-list > ul > li .menu_link .mobile-icon{
		position:relative;
		width:50px;
		height:50px;
	}
	.mobile-nav .menu-list > ul > li .menu_link .mobile-icon:before,
	.mobile-nav .menu-list > ul > li .menu_link .mobile-icon:after{
		display: block;
		position: absolute;
		content: "";
		z-index: 10;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%,-50%) rotate(-90deg);
		transform: translate(-50%,-50%) rotate(-90deg);
		background-color: #222;
		transition: transform .35s ease-in-out,opacity .35s ease-in-out,-webkit-transform .35s ease-in-out;
	}
	.mobile-nav .menu-list > ul > li .menu_link .mobile-icon:before {
		width: 12px;
		height: 1px;
		opacity: 1;
	}
	.mobile-nav .menu-list > ul > li .menu_link .mobile-icon:after {
		width: 1px;
		height: 12px;
	}
	.mobile-nav .menu-list .menu_dropdown{
		padding-left:20px;
		display:none;
	}
	.mobile-nav .menu-list .menu_dropdown a{
		height: 50px;
		line-height: 50px;
		padding: 0;
		display: block;
		font-size: 13px;
		border-bottom: 1px solid rgba(129,129,129,.2);
		color: #878787;
	}
	.mobile-nav .menu-list > ul > li.on .menu_link a{
		color:#fb6e50;
	}
	.mobile-nav .menu-list > ul > li.on .menu_link .mobile-icon:before{
		display:none;
	}

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

	#bottom_box .footer_links dl.newsletter_box{
		width: 100%;
		padding:0;
	}
	#bottom_box .footer_links dl.newsletter_box dd{
		max-width:450px;
	}	
	#bottom_box .footer_links{
		padding: 50px 30px;
		flex-wrap: wrap;
	}
	#bottom_box .footer_links dl.newsletter_box{
		border-bottom: 1px solid #eee;
	}
	#bottom_box .footer_links dl.contact_us{
		width: 100%;
		padding: 0;
		margin: 30px 0 0;
	}
	#bottom_box .footer_links dl.quick-links {
		width: 100%;
		padding: 12px 0;
		border-bottom: 1px solid #eee;
	}
	#bottom_box .footer_links dl.quick-links dt{
		margin:0;
		font-size:14px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	#bottom_box .footer_links dl.quick-links dd{
		margin:15px 0 0;
		display:none;
	}
	#bottom_box .footer_links dl dt .help-icon{
		display:block;
	}
	#bottom_box .footer_links dl dt .help-icon svg{
		width: 20px;
    	height: 20px;
		transition:all 0.3s;
	}
	#bottom_box .footer_links dl dt .help-icon.on svg{
		transform:rotate(-180deg);
	}
	.block_items_solgan,
	.block_image_full.format0,
	.block_image_full,
	.block_image_3_full_screen,
	.search-box,
	#header_box .header_mid,
	.block_items_topic_list, 
	.block_items_products_rec_full_screen, 
	.block_items_products_switch_full_screen, 
	.block_items_products_rec_full_screen, 
	.block_items_products_tab_full_screen, 
	.block_image_2_full_screen, 
	.block_items_imagetext_list, 
	.block_items_blog,
	#bottom_box .footer_links{
		padding-left:30px;
		padding-right:30px;
	}
	.block_items_products_rec .block_rec_ul li, 
	.block_items_products_tab .block_rec_ul li{
		width: calc(50% - 10px);
    	margin-right: 20px;
	}
	.block_items_products_rec .block_rec_ul li:nth-child(3n), 
	.block_items_products_tab .block_rec_ul li:nth-child(3n){
		margin-right: 20px;
	}
	.block_items_products_rec .block_rec_ul li:nth-child(2n), 
	.block_items_products_tab .block_rec_ul li:nth-child(2n){
		margin-right: 0;
	}
	.block_items_imagetext_list li .imagetext_pic:before{
		width:100%;
		height:100%;
		margin:0;
		transform:translate(-50%,-50%);
	}
	.block_items_imagetext_list li .imagetext_pic:hover:before{
		transform:translate(-50%,-50%) scale(1.1);
	}
	#bottom_box .footer_links .footer_links_wrapper{
		flex-direction: column;
	}
	#bottom_box .footer_links dl.quick-links{
		border:none;
	}
	#bottom_box .footer_links dl.quick-links dd{
		display:block;
	}
	#bottom_box .footer_links dl.sns_box{
		width: 100%;
		padding: 0;
		margin: 50px 0 0;
	}

}
@media screen and (max-width: 767px){
	.block_items{
		padding:0 0 50px;
	}
	.block_title a, .block_title{
		font-size:30px
	}
	.block_items_solgan,
	.block_image_full.format0,
	.block_image_full,
	.block_image_3_full_screen,
	.search-box,
	#header_box .header_mid,
	.block_items_topic_list, 
	.block_items_products_rec_full_screen, 
	.block_items_products_switch_full_screen, 
	.block_items_products_rec_full_screen, 
	.block_items_products_tab_full_screen, 
	.block_image_2_full_screen, 
	.block_items_imagetext_list, 
	.block_items_blog,
	#bottom_box .footer_links{
		padding-left:15px;
		padding-right:15px;
	}
	.block_items_imagetext_list{
		padding-left:50px;
		padding-right:50px;
	}
	#header_box .header_mid .header_right_links .account-btn{
		display:none;
	}
	.mobile-nav .menu-list > ul > li .menu_link a.account-btn svg{
		width:20px;
		height:20px;
		margin-right:5px;
	}
	.block_items_imagetext_list ul{
		display:block;
	}
	.block_items_imagetext_list li{
		margin-bottom:50px;
	}
	.block_items_imagetext_list li:last-child{
		margin:0;
	}
	.block_items_products_tab .block_rec_ul{
		padding:0;
	}
	.block_items_products_tab .block_rec_ul li{
		width: 80%;
	}
	.block_items_blog .news-box .news-time{
		height:40px;
		line-height:40px;
	}
	
	#header_box .header_mid{
		height:60px;
	}
	#header_box{
		height:100px;
	}
	#header_box .header_mid .logo img{
		max-height:45px;
	}
	#bottom_box .newsletter_box{
		padding:0 15px;
	}
	
	.wrapper,
	#bottom_box .copyright,
	#header_box .header_mid{
		padding:0 15px;
	}
	#bottom_box .newsletter_box .newsletter_btn{
		width: 140px;
		padding: 0;
	}
	#bottom_box .newsletter_box .newsletter_txt{
		width: calc(100% - 144px);
	}
	#bottom_box .newsletter_box .wrapper{
		padding:50px 15px;
	}
	#bottom_box .newsletter_box form{
		width:100%;
	}
	#bottom_box .footer_links{
		padding:50px 15px;
	}
	#bottom_box .footer_links dl{
		width:100%;
	}
	#bottom_box .footer_bom{
		padding:20px 0;
	}
	#bottom_box .footer_links dl.newsletter_box dd p{
		margin:0 0 10px;
	}
	#bottom_box .footer_links dl dt{
		margin:0 0 20px;
	}
	.product_list_2020 .common_pro_list1 li{
		width:100%;
		margin-right:0;
	}
	.block_items_imagetext_img .imagetext_pic{
		height:260px;
	}
	
	#bottom_box .footer_links dl.contact_us{
		margin-top:0;
	}
	
	
	
	
	
}







































