.goods-list-box {
    background-color: #f5f5f5;
    font-size: 14px;
}
.content {
    background-color: #f5f5f5;
    padding-bottom: 42px;
}
/*商品列表*/
.goods {
    width: 100%;
    background-color: #fff;
    padding: 0 38px 35px;
    box-sizing: border-box;
}
.goods-cargetory {
    height: 77px;
    border-bottom: 1px dotted #e5e5e5;
    align-items: center;
}
.goods-cargetory span,
.goods-sort span.sort-title{
    color: #999;
    margin-right: 28px;
    width: 42px;
    display: inline-block;
}
.goods-cargetory .option {
    flex: 1;
}
.goods-cargetory .option a {
    padding:5px 10px;
    color: #333;
    display: inline-block;
    margin-bottom: 10px;
}

/*排序*/
.goods-sort {
    height: 67px;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
}
.goods-sort .option span {
    color: #333;
}
.goods-sort .option span.cuurent{
    color: #ff284b;
}
.sales-sort {
    margin: 0 60px;
}
.goods-sort .option i {
    width: 0;
    height: 0;
    border: 4px solid transparent;
}
.goods-sort .option i.mt {
    border-bottom: 4px solid #999;
    position: absolute;
    top: 1px;
    right: -8px;
}

.goods-sort .option i.mb {
    position: absolute;
    border-top: 4px solid #999;
    bottom: -2px;
    right: -8px;
}
.goods-sort .option i.mt-current {
    border-bottom-color: #ff284b;
}
.goods-sort .option i.mb-current {
    border-top-color: #ff284b;
}
.price-sort {
    margin-right: 18px;
}
.goods-sort .option .sales-sort,
.goods-sort .option .price-sort {
    position: relative;
}
.price-range input {
    width: 76px;
    height: 28px;
    line-height: 28px;
    border: 1px solid #e5e5e5;
    padding-left: 8px;
    color: #999;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*商品列表*/
.goods-list {
    padding: 28px 0 32px;
    margin-right: -17px;
    flex-wrap: wrap;
}
.goods-list .goods-list-item {
    padding: 10px;
    width: 268px;
    margin-right: 17px;
    margin-bottom: 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.goods-list .goods-list-item:hover {
    box-shadow: 0px 0px 6px rgba(138, 138, 138, 0.4);
}
.goods-list .goods-list-item .price-block {
    margin-top: 12px;
    color: #666;
    font-size: 14px;
}
.goods-list .goods-list-item .price-block .price {
    font-weight: 700;
    font-size: 18px;
}
.goods-list .goods-list-item .original-price {
    text-decoration: line-through;
    margin-left: 5px;
}
.goods-list .goods-list-item p{
    margin: 8px 0 12px 0;
    line-height: 20px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    font-size: 14px;
    color: #666;
}
.goods-list .sold {
    color: #666;
    font-size: 12px;
}
.goods-list .sold-num {
    color: #c91835;
}
.img {
    position: relative;
}