body{
    background-color: #f7f7f7;
}
.category{
    margin:25px 0 10px 0;
}
.category ul{
    display: flex;
    margin:0 -10px;
    flex-wrap: wrap;
}
.category ul li{
    margin:5px 10px;
}
.category ul li a{
    display: block;
    background-color: #eee;
    height: 36px;
    line-height: 36px;
    padding:0 15px;
    border-radius: 18px;
}
.category ul li a:hover{
    color: var(--theme_active);
}
.category ul li a.on{
    color:#fff;
    background-color: var(--theme_active);
}

.sResult{
    margin:25px 0 10px 0;
}

.goodsList ul{
    display: flex;
    flex-wrap: wrap;
    margin:0 -8px;
}
.goodsList ul li{
    width:20%;
}
.goodsList ul li .box{
    display: block;
    margin:8px;
    padding:10px;
    background-color: #fff;
    border-radius: 3px;
    transition: .3s ease-out; -webkit-transition: .3s ease-out; -moz-transition: .3s ease-out; -o-transition: .3s ease-out;
}
.goodsList ul li .imgbox{
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 243px;
}
.goodsList ul li .imgbox img{
    display: block;
    width:100%;
    max-height: 243px;
}
.goodsList ul li h3{
    font-weight: normal;
    height: 30px;
    line-height: 30px;
    font-size:16px;
    transition: .3s ease-out; -webkit-transition: .3s ease-out; -moz-transition: .3s ease-out; -o-transition: .3s ease-out;
    word-break:break-all;
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.goodsList ul li .box:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.goodsList ul li .box:hover h3{
    color:var(--theme_active);
}
.goodsList ul li .info p{
    word-break:break-all;
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
    opacity: 0.5;
    display: flex;
    align-items: center;
}
.goodsList ul li .info p .iconfont {
    font-size:11px;
}