.haiwode-goods-list{
    padding: var(--gap-80) 0 var(--component-gap);
}
.haiwode-goods-list .haiwode-goods-list-wrap{
    display: flex;
    gap: var(--gap-90);
}
.haiwode-goods-left{
    width: 320px;
}
.goods-nav .goods-nav-item .goods-nav-item-wrap{
    display: flex;
    justify-content: space-between;
}
.goods-nav-item .goods-nav-text{
    color: #111;
    font-family: var(--font-medium-family);
    font-size: var(--font-24);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.goods-nav-item .goods-nav-checkbox{
    margin-top: var(--gap-30);
    display: flex;
    flex-direction: column;
    gap: var(--gap-30);
}
.goods-nav-checkbox .goods-nav-checkbox-item{
    display: flex;
    gap: 24px;
    align-items: center;
}
.goods-nav-checkbox input[type=checkbox]{
    width: 24px;
    height: 24px;
    accent-color: var(--second-color);
}
.goods-nav-checkbox .goods-nav-checkbox-item label{
    color: #333;
    font-family: var(--font-text-family);
    font-size: var(--font-18);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.goods-nav .goods-nav-line{
    width: 100%;
    height: 1px;
    background: #EFEFEF;
    margin: var(--gap-40) 0;
}


.haiwode-goods-right{
    flex: 1;
}
.haiwode-goods-right .goods-list-wrap{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    row-gap: 50px;
    column-gap: 40px;
}
.haiwode-goods-right .goods-item{
    position: relative;
}
.goods-item .goods-img{
    border-radius: 10px;
    background: #F8F8F8;
    padding: 30px;
    position: relative;
}
.goods-img .swiper-slide{
    width: 100% !important;
    /* height: auto;
    min-height: 318px; */
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.goods-img .swiper-slide a{
    display: inline-block;
    width: 100%;
    height: 100%;
}
.goods-img .swiper-slide img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.goods-img .goods-swiper-prev,
.goods-img .goods-swiper-next{
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(0, 51, 101, 0.10);
    background: #FFF;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 9;
    display: none;
}
.goods-item .goods-img:hover .goods-swiper-prev,
.goods-item .goods-img:hover .goods-swiper-next{
    display: flex;
}
.goods-img .goods-swiper-prev{
    left: 10px;
}
.goods-img .goods-swiper-next{
    right: 10px;
}
.goods-img .swiper-button-disabled{
    background: #ccc !important;
}
.goods-item .goods-title{
    color: #333;
    font-family: var(--font-semiBold-family);
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 600;
    line-height: 1.5; /* 150% */
    margin-top: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.goods-item .goods-desc{
    color: #666;
    font-family: var(--font-text-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    margin-top: 25px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    width: 80%;
}
.goods-item .goods-btn{
    padding: 14px 11px;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    display: none;
}
.goods-item:hover .goods-btn{
    display: inline-flex;
}

.haiwode-goods-list #pagesize{
    margin: 100px 0 0;
}
.haiwode-goods-list #pagesize ul{
    gap: 16px;
}
.haiwode-goods-list #pagesize ul li a{
    border-radius: 4px;
    border: 1px solid #BDC2CC;
    background: #FFF;
    color: #333;
    text-align: center;
    font-family: var(--font-medium-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; /* 100% */
}
.haiwode-goods-list #pagesize ul li a.active{
    border: 1px solid var(--primary-color);
    background: #FFF;
    color: var(--primary-color);
}

@media screen and (max-width: 1500px) {
    .haiwode-goods-left{
        width: 260px;
    }
    .haiwode-goods-right .goods-list-wrap{
        column-gap: 20px;
    }
}
@media screen and (max-width: 1200px) {
    .haiwode-goods-right .goods-list-wrap{
        grid-template-columns: repeat(2,1fr);
    }
    .goods-item .goods-img{
        padding: 20px;
    }
    .haiwode-goods-list #pagesize{
        margin: 50px 0 0;
    }
}
@media screen and (max-width: 992px) {
    .haiwode-goods-left{
        width: 200px;
    }
}
@media screen and (max-width: 768px) {
    .haiwode-goods-list .haiwode-goods-list-wrap{
        flex-direction: column;
    }
    .haiwode-goods-left{
        width: 100%;
    }
    .haiwode-goods-right .goods-list-wrap{
        grid-template-columns: repeat(1,1fr);
    }
    .haiwode-goods-list #pagesize{
        margin: 30px 0 0;
    }
}