@charset "UTF-8";

body{
    background-color: #fff;
}

.Goods{
    width: 1440px;
    margin: 50px auto;
    overflow: hidden;
}
/*产品列表左边分类 --------------------- 产品列表左边分类 --------------------- 产品列表左边分类 ---------------------*/
.Goods .nav{
    width: 330px;
    float: left;
    border: 4px solid #373737;
    padding: 50px 0;
}
.Goods .nav .category{
    /*margin-bottom: 30px;*/
    width: 93.3%;
    margin: 0 auto 30px;
}
.Goods .nav .category.active .caHead h4{
    background-color: #c83232;
    color: #ffffff;
}
.Goods .nav .category .caHead{
    /*width: 280px;*/
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*align-items: center;*/
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}
.Goods .nav .category .caHead h4{
    /*font-size: 28px;*/
    padding-left: 8px;
    -webkit-transition: background-color .5s ease;
    -moz-transition: background-color .5s ease;
    -ms-transition: background-color .5s ease;
    -o-transition: background-color .5s ease;
    transition: background-color .5s ease;
}
.Goods .nav .category .caHead img{
    cursor: pointer;
}
.Goods .nav .category .caContain{
    overflow: hidden;
}
.Goods .nav .category .caContain ul{
    overflow: hidden;
}
.Goods .nav .category .caContain ul li{
    float: left;
    width: 33.33%;
    display: flex;
    align-items: center;
    margin: 20px 0 0;
    color: #9FA0A0;
    cursor: pointer;
    /*font-weight: bold;*/
}
.Goods .nav .category .caContain ul li.active{
    color: #262626;
}
.Goods .nav .category:not(.first) .caContain ul li span{
    margin-left: 10px;
}

.Goods .nav .category:nth-child(1) .caContain ul li{
    width: 100%;
}
.Goods .nav .category.w50 .caContain ul li{
    width: 50%;
}



/*产品列表右边所有产品 ----------------------- 产品列表右边所有产品 -----------------------产品列表右边所有产品 -----------------------*/
.Goods .allGoods{
    margin-left: 350px;
}
.Goods .allGoods ul.class{

    overflow: hidden;
}
.Goods .allGoods ul.class li{
    display: flex;
    align-items: center;
    background-color: #efefef;
    float: left;
    margin: 9px 10px 10px 0;
    /*margin-right: 10px;*/
    padding: 5px 10px;
    border-radius: 3px;
}
.Goods .allGoods ul.class li em{
    margin-left: 10px;
    cursor: pointer;
}
/*---------------------------------------*/
.Goods .allGoods .goodsLi{
    overflow: hidden;
}
.Goods .allGoods .goodsLi a{
    float: left;
    width: calc((100% - ( 20px * 4 )) / 3);
    padding: 30px 28px;
    margin: 20px 10px;
}
.Goods .allGoods .goodsLi a:nth-child(4n){
    /*margin-right: 0;*/
}
.Goods .allGoods .goodsLi a:hover{
    box-shadow: 0 0 10px RGBA(0, 0, 0, .15);
}
.Goods .allGoods .goodsLi a>img {
    display: block;
    width: 100%;
}
.Goods .allGoods .goodsLi a .color{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Goods .allGoods .goodsLi a .color div{
    width: 16px;
    height: 16px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin: 20px 5px 30px;
}
.Goods .allGoods .goodsLi a .color div>img{
    display: block;
    width: 100%;
}
.Goods .allGoods .goodsLi a .color div span{
    display: inline-block;
    width: 50%;
    height: 100%;
}
.Goods .allGoods .goodsLi a .color div span:nth-child(1){
    background-color: #7C7C7C;
}
.Goods .allGoods .goodsLi a .color div span:nth-child(2){
    background-color: #7C7C7C;
}
.Goods .allGoods .goodsLi a h5{
    font-size: 20px;
}
.Goods .allGoods .goodsLi a .cate{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 20px;
    color: #9FA0A0;
}
.Goods .allGoods .goodsLi a>p{
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*---------------------------------------*/
.Goods .allGoods>a{
    display: block;
    width: 150px;
    margin: 30px auto 0;
    text-align: center;
    height: 50px;
    line-height: 50px;
    border: 2px solid #E0E0E0;
}

.Goods .nav-mobile{
    display: none;
}


/*媒体查询 ------------------ 媒体查询 ------------------ 媒体查询 ------------------*/
@media screen and (max-width: 1500px) {
    .Goods{
        width: 1080px;
    }
    .Goods .allGoods ul.class li{
        margin: 9px 10px 3px 0;
    }
    .Goods .allGoods .goodsLi a{
        float: left;
        width: calc((100% - ( 20px * 3 )) / 3);
        padding: 30px 28px;
        margin: 10px 10px;
    }
}
@media screen and (max-width: 1180px) {
    .Goods{
        width: 85%;
    }
    .Goods .nav{
        width: 200px;
        border: 2px solid #373737;
        padding: 30px 0;
    }
    .Goods .nav .category{
        margin-bottom: 20px;
    }
    .Goods .nav .category .caHead {
        width: 100%;
    }
    .Goods .nav .category .caHead img{
        width: 10%;
    }
    .Goods .nav .category .caContain ul li{
        margin: 10px 0 0;
        width: 50%;
    }
    .Goods .nav .category.w50 .caContain ul li{
        width: 100%;
    }
    .Goods .allGoods{
        margin-left: 220px;
    }
    .Goods .allGoods .goodsLi a{
        width: calc((100% - ( 10px * 4 )) / 3);
        padding: 20px 15px;
        margin: 5px 5px;
    }
    .Goods .allGoods .goodsLi a .color div{
        width: 14px;
        height: 14px;
        margin: 15px 5px 18px;
    }
    .Goods .allGoods .goodsLi a h5{
        font-size: 16px;
    }
    .Goods .allGoods .goodsLi a .cate{
        margin:0 auto 15px ;
    }
    .Goods .allGoods .goodsLi a .cate div img{
        width: 38%;
    }
    .Goods .allGoods>a{
        width: 140px;
        height: 45px;
        line-height: 45px;
    }
}
@media screen and (max-width: 900px) {
    .Goods .nav{
        width: 26%;
        border: 2px solid #373737;
        padding: 20% 0;
    }
    .Goods .allGoods{
       margin-left: 29%;
    }
    .Goods .allGoods .goodsLi a h5{
        font-size: 14px;
    }
    .Goods .allGoods .goodsLi a .cate{
        font-size: 10px;
    }
    .Goods .allGoods>a{
        width: 20%;
        height: 4vw;
        line-height: 4vw;
    }
}
@media screen and (max-width: 440px) {
    .Goods{
        width: 100%;
        margin: 0 auto;
    }
    .Goods .nav .category{
        margin-bottom: 0.15rem;
    }
    .Goods .nav .category .caHead{
        padding-bottom: 0.1rem;
    }
    .Goods .nav .category .caHead img{
        width: 0.2rem;
    }
    .Goods .nav .category .caContain ul li{
        margin: 0.2rem 0 0;
        font-size: 10px;
    }
    .Goods .nav .category .caContain ul li>img{
        width: 0.16rem;
    }
    .Goods .nav .category:not(.first) .caContain ul li span{
        margin-left: 0.05rem;
    }
    .Goods .nav .category.w100 .caContain ul li{
        width: 100%;
    }
    .Goods .nav{
        display: none;
    }
    /*手机端功能选择*/
    .Goods .nav-mobile{
        display: block;
        padding: 0 5%;
        background-color: #F7F7F7;
        position: relative;
    }
    .Goods .nav-mobile>div:not(.bom-mask){
        width: 100%;
        overflow: hidden;
    }
    .Goods .nav-mobile .top div{
        /*width: 7.8rem;*/
        width: 100%;
        padding: 0.4rem 0;
        font-size: 0.3rem;
        /*overflow-y: hidden;*/
        overflow-x: auto;
        white-space: nowrap;
        float: left;
    }
    .Goods .nav-mobile .top div span{
        /*float: left;*/
        display: inline-block;
    }
    .Goods .nav-mobile .top div span:not(.last){
        margin-right: 0.5rem;
    }
    .Goods .nav-mobile .top div span.active{
        color: #F8D24F;
        border-bottom: 2px solid #F8D24F;
        padding-bottom: .1rem;
    }
    .Goods .nav-mobile .bom div{
        display: flex;
        justify-content: space-between;
        font-size: 0.24rem;
        color: #0C0509;
        font-weight: bold;
        padding: 0 0 0.28rem;
    }
    .Goods .nav-mobile .bom-mask{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        /*height: 100%;*/
        background-color: rgba(0,0,0,.5);
        z-index: 100;
        display: none;
    }
    .Goods .nav-mobile .bom-mask .bom-mask-li{
        position: absolute;
        width: 80%;
        left: 50%;
        margin-left: -40%;
        top: 5%;
        background-color: #fff;
        border-radius: 0.1rem;
        padding: 0.1rem 0.3rem;
        display: none;
    }
    .Goods .nav-mobile .bom-mask .bom-mask-li h4{
        font-size: 0.3rem;
        padding: 0.1rem 0;
        border-bottom: 1px solid #F7F7F7;
    }
    .Goods .nav-mobile .bom-mask .bom-mask-li ul{
        display: flex;
        flex-flow: row wrap;
        align-items: center;
    }
    .Goods .nav-mobile .bom-mask .bom-mask-li ul li{
        width: 33.33%;
        margin: 0.34rem 0;
        display: flex;
        align-items: center;
    }
    .Goods .nav-mobile .bom-mask .bom-mask-li.single ul li{
        width: 50%;
    }
    .Goods .nav-mobile .bom-mask .bom-mask-li ul li span{
        margin-left: 0.1rem;
    }

    .Goods .allGoods{
        margin-left: 0;
        padding: 0.1rem 5% 0.5rem;
    }
    .Goods .allGoods>h4{
        display: none;
    }
    .Goods .allGoods .goodsLi{
        margin-top: .5rem;
    }
    .Goods .allGoods ul.class li{
        margin: 0.1rem 0.1rem 0 0;
        padding: 0.05rem 0.1rem;
        font-size: 10px;
    }
    .Goods .allGoods ul.class li em{
        margin-left: 0.1rem;
    }
    .Goods .allGoods .goodsLi a{
        width: 50%;
        margin: 0.05rem 0;
        padding: 0.15rem 0.14rem;
    }
    .Goods .allGoods .goodsLi a .color div{
        width: 0.16rem;
        height: 0.16rem;
        margin: 0.2rem 0.05rem 0.3rem;
    }
    .Goods .allGoods .goodsLi a h5{
        font-size: 0.26rem;
    }
    .Goods .allGoods .goodsLi a .cate{
        flex-flow: wrap;
        font-size: 0.2rem;
        margin: 0 auto 0.1rem;
    }
    .Goods .allGoods .goodsLi a>p{
        font-size: 10px;
    }
    .Goods .allGoods>a{
        width: 1.5rem;
        height: 0.5rem;
        line-height: 0.5rem;
        margin: 0.3rem auto 0;
        font-size: 10px;
    }
    .Goods .nav{
        border: 1px solid #373737;
        padding: 2% 0;
    }
}
