* {
	margin: 0;
	padding: 0;
}


.body{
	padding-top: 0.8rem;
	padding-bottom: 1.4rem;
}
.btn_hd{
	width: 100%;
	border-bottom: 0.01rem solid #E5E5E5;
	padding-bottom: 0.15rem;
	display: flex;
	justify-content: space-evenly;
	margin-bottom: 0.3rem;
}
.btn_hd .btn_li{
	font-family: AlibabaPuHuiTi-Regular;
	font-size: 0.4rem;
	color: #666666;
	line-height: 0.56rem;
	position: relative;
	cursor: pointer;
}
.btn_hd .btn_li.act{
	font-family: AlibabaPuHuiTi-Medium;
	color: #234529;
}
.btn_hd .btn_li::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 0.01rem;
	background: #234529;
	left: 0;
	bottom: -0.15rem;
	display: none;
}
.btn_hd .btn_li.act::before{
	display: block;
}










.item_li{
	display: none;
}
.item_li.on{
	display: block;
}
.item_li .item_body{
	font-family: AlibabaPuHuiTi-Regular;
	font-size: 0.16rem;
	color: #333333;
	line-height: 0.3rem;
}
.item_li .item_list{
	display: flex;
	flex-wrap: wrap;
}
.item_list .list_li{
	width: 4.8rem;
	height: 4.28rem;
	background: #FFFFFF;
	margin-top: 0.4rem;
	margin-right: 0.4rem;
	border-bottom: 0.01rem solid #c1c1c1;
}
.item_list .list_li:nth-child(3n){
	margin-right: 0;
}
.item_list .list_li .list_img{
	width: 100%;
	height: 3.6rem;
	overflow: hidden;
}
.item_list .list_li .list_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition:all .5s;
	-moz-transition:all .5s;
	-webkit-transition:all .5s;
	-o-transition:all .5s;
}
.item_list .list_li .list_txt{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.2rem;
	box-sizing: border-box;
}
.item_list .list_li .list_txt .list_title{
	width: 4rem;
	font-family: AlibabaPuHuiTi-Regular;
	font-size: 0.18rem;
	color: #333333;
	line-height: 0.25rem;
}
.item_list .list_li .list_txt i{
	width: 0.25rem;
	height: 0.25rem;
	background: #70AD02 url(../img/chanpin_more3.png) center no-repeat;
	border-radius: 0.17rem;
	display: none;
}
.item_list .list_li:hover{
	border-bottom: 0.01rem solid #234529;
	box-shadow: 0rem 0rem 0.09rem 0.01rem rgba(209,153,24,0.4);
}
.item_list .list_li:hover .list_img img{
	transform:scale(1.05);
}
.item_list .list_li:hover .list_txt i{
	display: block;
}






/* 弹窗 */
.pop {
	width: 100%;
	height: 100%;
	position: fixed;
	background: rgba(0, 0, 0, .5);
	top: 0;
	z-index: 9999;
	justify-content: center;
	align-items: center;
	display: none;
}

.pop .pop_body {
	width: 14rem;
	max-height: 5.8rem;
	background: #FCFBFA;
	padding: 0.8rem;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
}

.pop .pop_body .colse {
	position: absolute;
	width: 0.2rem;
	height: 0.2rem;
	top: 0.35rem;
	right: 0.35rem;
	cursor: pointer;
}

.pop .pop_body .colse img {
	max-width: 100%;
	max-height: 100%;
}

.pop .pop_body .pop_div {
	display: flex;
	justify-content: space-between;
}

.pop .pop_body .pop_div .pop_img {
	width: 5.6rem;
	height: 100%;
	margin-right: 0.6rem;
}

.pop .pop_body .pop_div .pop_img img {
	width: 100%;
	max-height: 100%;
}

.pop .pop_body .pop_div .pop_txt {
	width: 6.2rem;
}

.pop .pop_body .pop_div .pop_txt .pop_title {
	width: 100%;
	font-family: AlibabaPuHuiTi-SemiBold;
	font-size: 0.28rem;
	color: #333333;
	padding-bottom: 0.2rem;
	margin-bottom: 0.41rem;
	border-bottom: 0.01rem solid #D6D6D6;
	position: relative;
}
.pop .pop_body .pop_div .pop_txt .pop_title::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 1.04rem;
	height: 0.02rem;
	background: #234529;
}
.pop .pop_body .pop_div .pop_txt .pop_content,
.pop .pop_body .pop_div .pop_txt .pop_content p{
	font-family: AlibabaPuHuiTi-Regular;
	font-size: 0.16rem;
	color: #333333;
	line-height: 0.3rem;
}

.pop .pop_body .pop_div .pop_txt .pop_content b,
.pop .pop_body .pop_div .pop_txt .pop_content strong{
	font-weight: bold;
}

