/**
wap样式
 */
@media screen and (max-width: 769px) {

}

/**
web样式
 */
@media screen and (min-width: 769px) {
    .body-classify {
        margin-top: 27px;
        margin-bottom: 21px;
        display: flex;
    }

    .body-classify .classify-list {
        width: 180px;
        background-color: white;
        margin-right: 20px;
    }

    .body-classify .goods-search {
        flex: 1;
    }

    .classify-group {
        width: 100%;
        overflow: hidden;
    }

    .classify-title {
        height: 44px;
        line-height: 44px;
        font-size: 14px;
        color: #333333;
        text-align: center;
        border-bottom: 1px solid #F3F3F3;
        position: relative;
        cursor: pointer;
    }

    .classify-group[data-style="classify-img"] .classify-title {
        cursor: unset;
    }

    .classify-title:after {
        content: "";
        display: block;
        position: absolute;
        width: 12px;
        height: 12px;
        right: 34px;
        top: 15px;
        background-image: url("/image/icon_arrow_down_gray.png");
        transform: rotate(270deg);
    }

    .classify-group[data-style="classify-img"] .classify-title:after {
        display: none;

    }

    .classify-group.detail .classify-title:after {
        transform: rotate(0deg);
    }

    .classify-img {
        display: none;
        width: 57px;
        height: 57px;
    }

    .classify-item-list {
        background-color: #FCFCFC;
        padding: 0 10px;
        display: none;
    }

    .classify-group[data-style="classify-img"] .classify-item-list {
        background-color: #FFFFFF;
        font-size: 0;
        padding: 11px;
        display: block;
    }

    .classify-group.detail .classify-item-list {
        display: block;
    }

    .classify-item {
        display: block;
        height: 38px;
        text-align: center;
        line-height: 38px;
        font-size: 12px;
        font-weight: 400;
        color: #666666;
        border-bottom-width: 1px;
        border-bottom-style: dashed;
        border-bottom-color: #EEEEEE;
    }

    .classify-item.current {
        color: #E02B2B;;
    }


    .classify-item:hover {
        color: #E02B2B;
    }

    .classify-group[data-style="classify-img"] .classify-item {
        width: 50%;
        height: 86px;
        overflow: hidden;
        display: inline-block;
        border-bottom: 0;
    }


    .classify-group[data-style="classify-img"] .classify-img {
        display: block;
        margin: 0 11px;
    }


    .classify-item:last-child {
        border-bottom: none;
    }


    .goods-search-list {
        background-color: white;
    }
}