/* 面包屑 */
.categoryBreads{
	display: flex;
	margin-top: 32px;
}
.categoryBreads .breadName{
	font-size: 14px;
	color: #999999;
	min-width: 50px;
}
.categoryBreads .breadName .selectedCate{
	font-size: 14px;
	color: #999999;
	display: flex;
	position: relative;
	align-items: center;
	cursor: pointer;
	justify-content: space-between;
}
.categoryBreads .breadName .subListCates{
	position: absolute;
	height: 0px;
	width: 100px;
	overflow-y: auto;
	text-align: center;
	transform: translateX(-30px);
	border: 0px solid #ddd;
	box-sizing: border-box;
}
.categoryBreads .breadName .subListCates.selected{
	height: 200px;
	border: 1px solid #ddd;
}
.categoryBreads .breadName .subListCates .subListCates_item{
	color: #333;
	border-bottom: 1px solid #333;
	background-color: #fff;
	height: 40px;
	line-height: 40px;
}
.categoryBreads .breadName .subListCates .subListCates_item:last-child{
	border-bottom: 0px;
}

.categoryBreads .breadName:after{
	content:'/';
	color:#999;
	width: 30px;
	text-align: center;
	display: inline-block;
}
.categoryBreads .breadName:last-child:after{
	content:'';
}

.productTitle{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 24px;
}
.productTitle .name{
	color: #333333;
	font-size: 24px;
}
.productTitle .totoalResult{
	font-size: 14px;
	color: #999999;
}

.productContent{
	display: grid;
	grid-template-columns: 337px 1fr;
	margin-top: 32px;
	padding-bottom: 100px;
	gap: 1.5rem;
	align-items: start;
}
.productContent .menuItem{
    cursor: pointer;
}
.productContent .menuItem.active .menuChildList .listItem{
    height: 64px;
    line-height: 64px;
    display: block;
    display: flex;
    align-items: center;
}

.menuHead{
	color: #fff;
	height: 40px;
	line-height: 40px;
	font-size: 16px;
	background-color: #3B4656;
	padding: 0 24px;
}
.menuChildList .listItem{
	height: 0px;
	line-height: 0px;
	background-color: #F8F8F8;
	padding: 0 24px;
	display: none;
}
.menuChildList .listItem label{
	cursor: pointer;
	margin-left: 8px;
	line-height: 20px;
	height: 20px;
}

.productList .productItem .productItem_img{
	background-color: white;
	aspect-ratio: 1/1;
	position: relative;
}
.productList .productItem .productItem_img .isInsure{
    position:absolute;
    top: 16px;
    right: 16px;
}
.productList .productItem .productItem_img .isInsure:hover .showInsureTxt{
    display: block;
}
.productList .productItem .productItem_img .showInsureTxt{
    position: absolute;
    padding: 12px;
    background: #3B4656;
    font-size: 14px;
    color: #fff;
    text-wrap: nowrap;
    z-index: 9;
    border-radius: 4px;
    transform: translateX(-50%);
    top: 30px;
    display: none;
}
.productList .productItem .productItem_img .showInsureTxt:after{
    content: "";
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid #3B4656; /* 三角形颜色 */
    position: absolute;
    top: -14px;
    left: 50%;
}
.productList .productItem .productItem_img .isInsure img{
    width: 17px;
    height: 100%;
}
.productList .productItem .productItem_img img{
    width: 100%;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}
.productList{
	display: flex;
	gap: 16px;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 16px;
}
.productList .productItem{
	padding: 0 10px 24px 10px;
	max-width: 245px;
	width: 245px;
	box-sizing: border-box;
}
.productList .productItem  .productName,.productList .productItem .guige{
	font-size: 16px;
	color: #333;
	overflow: hidden; 
	white-space: nowrap; 
	text-overflow: ellipsis;
}
.productList .productItem  .productName{
	margin-top: 8px;
}
.productList .productItem .price{
	color: #F42F54;
	font-size: 20px;
	font-weight: 800;
	font-family: CamphorPro;
}

@media(max-width:992px){
    .menuList{
        display: none;
    }
    .productContent{
        display: flex;
        gap: 0;
    }
    .productList{
        gap: 0;
    }
    .productList .productItem{
        width: 50%;
    }
}
