.callTabs {
    width: 100%;
    padding-bottom: 12px;
    color: #333;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid #E6E6E6;
    display: flex;
    margin-top: 30px;
}

.callTab {
    margin-left: 60px;
    position: relative;
    cursor: pointer;
}

.callTab-active {
    color: #FA6E07;
}

.callTab-active::before {
    content: "";
    width: 100%;
    height: 1.5px;
    background-color:#FA6E07 ;
    position: absolute;
    left: 0;
    bottom: -12.5px;
}

.callTab:nth-child(1) {
    margin-left: 0;
}

/* 商品列表 */
.goodsCallList{
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}

.goodsCallList .goodsItem{

    width: calc(100% / 4);
    box-sizing: border-box;
    padding: 0 12px 50px;

}


/* 商品为空提示图 */
.goodsCallList-not{
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.goodsCallList-not img{
    width: 600px;
    height: auto;
}


/* 分页 */
.goodsPageBox {
    width: 100%;
    display: flex;
    align-items: center;
}

.goodsPageBox .pageLists {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
    margin-right: 4px;
}

.goodsPageBox .pageList {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F0F0F0;
    border-radius: 4px;
    margin-right: 6px;
    cursor: pointer;
}

.goodsPageBox .pagesl {
    font-size: 16px;
    color: #333;
    margin-right: 6px;
}

.goodsPageBox .pageList:hover {
    background-color: #FA6E07;
    color: #fff;
}

.goodsPageBox .pageList-active {
    background-color: #FA6E07;
    color: #fff;
}

.goodsPageBox .pageTot {
    font-weight: 700;
    margin-right: 4px;
}

















