.tabbar{
    display: flex;
    justify-content: center; 
    margin: 20px 0;
}
.taBox{
    margin: 10px 6px 14px;
    padding: 8px 20px;
    border: 1px solid #E9E3E3;
    border-radius: 4px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    cursor: pointer;
    color: #4B4947;
}
.taBactive{
    margin: 10px 6px 14px;
    padding: 8px 20px;
    border: 1px solid #E5301B;
    border-radius: 4px;
    cursor: pointer;
    font-family: Microsoft YaHei;
    font-weight: bold;
    background: #E53030;
    position: relative;
}
.taBactive a{
    color: white;
}
.taBox p{
    display: none;
}

.taBactive p{
    display: block;
    position: absolute;
    bottom: -24px;
    left: 36px;
}
.imgInfo{
    width: 15px;
    height: 15px;
}
.oc-list{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
}
.oc-item{
    flex-shrink: 0;
    display: block;
    width: 280px;
    height: 140px;
    background: #FFFFFF;
    border: 2px solid #FAD6D1;
    border-radius: 5px;
    overflow: hidden;
    transition: all .5s;
    margin-right: 25px;
    margin-bottom: 18px;
}

.oc-list li:nth-child(4n) .oc-item{
    margin-right: 0;
}

.oc-item:hover{
    border: 2px solid #E5301B;
    box-shadow: 0px 4px 15px 0px rgba(254,164,153,0.6);
}

.oc-item:hover img{
    transform: scale(1.2);
}

.oc-item img{
    width: 100%;
    height: 100%;
    transition: all .5s;
}