.fuxuan-goods-list{
    padding: var(--padding-top) 0;
    background: rgba(248, 248, 248, 0.97);
}
.fuxuan-goods-list .goods-title{
    color: #000;
    font-family: var(--font--family);
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.fuxuan-goods-list .goods-list{
    margin-top: 27px;
    display: flex;
    gap: 58px;
}
.goods-list .goods-nav{
    width: 382px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.goods-nav .nav-item{
    background: #fff;
}
.nav-item .nav-item-con-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-item .nav-item-con{
    width: 70%;
    padding: 21px 49px;
    color: #000;
    font-family: var(--font--family);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}
.nav-item .showIcon{
    /* display: none; */
    cursor: pointer;
    flex: 1;
    text-align: center;
}
.nav-item .showIcon svg line{
    stroke: #000;
}
.nav-item .icon{
    flex: 1;
    text-align: center;
    cursor: pointer;
}
.goods-nav .nav-item.active .nav-item-con-wrap{
    
    background: var(--primary-color);
}

.goods-nav .nav-item.active .nav-item-con{
    color: #fff;
}
.goods-nav .nav-item.active .showIcon{
    /* display: inline-block; */
    flex: 1;
    text-align: center;
}
.nav-item.active .showIcon svg line,
.goods-nav .nav-item.active .icon svg line{
    stroke: #fff !important ;
}
.goods-nav .nav-item .none{
    display: none;
}
.goods-nav .nav-item .show{
    display: inline-block;
}
.goods-nav .goods-submenu a{
    color: #000;
    font-family: var(--font--family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 21px 49px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.goods-nav .goods-submenu .sub-icon{
    display: none;
}
.goods-nav .goods-submenu .goods-sub-wrap:hover a{
    color: var(--primary-color);
}
.goods-nav .goods-submenu .goods-sub-wrap:hover .sub-icon,
.goods-nav .goods-submenu .goods-sub-wrap.active .sub-icon{
    display: inline-block;
}
.goods-nav .goods-submenu .goods-sub-wrap.active a{
    color: var(--primary-color);
}

.fuxuan-goods-list .goods-list .goods-con{
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}
.goods-con .goods-item img{
    width: 100%;
    aspect-ratio: 505/364;
    object-fit: cover;
    transition: all 0.5s;
}
.goods-con .goods-item .goods-img-wrap{
    overflow: hidden;
}
.goods-con .goods-con-wrap{
    padding: 24px 0;
}
.goods-con .goods-con-wrap .fuxuan-sub-title{
    font-weight: 500;
}
.goods-con .goods-con-wrap .fuxuan-text{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin-top: 11px;
}
.goods-con .goods-item:hover .fuxuan-sub-title{
    color: var(--primary-color);
}
.goods-con .goods-item:hover img{
    transform: scale(1.05);
}

.goods-con #pagesize{
    grid-column: span 2;
}
.goods-con #pagesize ul{
    justify-content: flex-start;
    gap: 17px;
}
.goods-con #pagesize ul li{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.goods-con #pagesize ul li a{
    width: 100%;
    height: 100%;
    color: #050505;
    font-family: var(--font--family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 2px;
    background: #E0E0E0;
    border: none !important;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.goods-con #pagesize ul li:first-child,
.goods-con #pagesize ul li:last-child
{
    width: auto;
}
.goods-con #pagesize ul li:last-child a{
    background: #000;
    color: #fff;
}


@media screen and (max-width: 1280px) {
    .fuxuan-goods-list .goods-list{
        gap: 30px;
    }
    .goods-list .goods-nav{
        width: 300px;
    }
}
@media screen and (max-width: 992px) {
    .fuxuan-goods-list .goods-list{
        flex-direction: column;
    }
    .goods-list .goods-nav{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .fuxuan-goods-list .goods-list .goods-con{
        grid-template-columns: repeat(1,1fr);
    }
    .goods-con #pagesize{
        grid-column: span 1;
    }
}