   

    .childContent .wrap {
        display: block;
        background: #FFFFFF;
        border-radius: 16px;
        padding: 30px 26px;
    }

    .childContent .banner {
        background-image: url('/gtMall/images/banners/hotbanner.png');
    }
    .childContent .wrap .tabs {
        position: relative;
        height: 44px;
        width: 100%;
        background-color: #F4F6F8;
        border-radius: 8px 8px 0px 0px;
        white-space: nowrap;
        overflow: hidden;
    }

    .tabs .tabsMenu {
       height: 100%;
        padding-right: 50px;
        position: relative;
        width: 100%;
        overflow: hidden;
        transition: transform 0.5s ease;
    }

    .tabs .tabsMenu .tabsMenuList {
        display: flex;
        position: relative;
        left: 0;
    }

    .tabs .tabsMenu .tabsMenuList .tabsItem {
        position: relative;
        display: inline-block;
        line-height: 44px;
        padding: 0 30px;
        font-size: 16px;
        color: #9BA39A;
        cursor: pointer;
    }

    .tabs .tabsMenu .tabsMenuList .tabsItem.active {
        background: #5CAF50;
        border-radius: 8px 8px 0px 0px;
        font-weight: bold;
        font-size: 16px;
        color: #fff;
    }

    .tabs .tabsMenu .tabsMenuList .tabsItem::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        width: 1px;
        height: 16px;
        background: #EBEBEB;
    }

    .tabs .tabsMenu .tabsMenuList .tabsItem.active::after {
        background: transparent;
    }

    .tabs .tabsBtn {
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 44px;
        background: #F4F6F8;
        border-radius: 0px 4px 4px 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0px 4px 4px 0px;
        z-index: 666;
    }

    .tabs .tabsBtn .tabsBtnPrev,
    .tabs .tabsBtn .tabsBtnNext {
        height: 100%;
        width: 25px;
        border: none;
        background-color: transparent;
        display: flex;
        align-items: center;
        justify-self: center;
        cursor: pointer;
        /* display: none; */
    }

    .tabs .tabsBtn .tabsBtnPrev.visible,.tabs .tabsBtn .tabsBtnNext.visible {
        display: block;
    }

    .tabs .tabsBtn .tabsBtnPrev img,
    .tabs .tabsBtn .tabsBtnNext img {
        /* position: absolute; */
        margin-left: 8.5px;
        width: 8px;
        height: 16px;
    }

    .tabs .tabsBtn::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 1px;
        height: 100%;
        background: #E3E6EA;
    }

    .product-box {
        margin-top: 30px;
    }

    .product-box ul {
        width: 100%;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        min-height: 460px;
        overflow-y: auto;
        gap: 17px 24px;
    }

    .product-box ul li {
        position: relative;
        width: 250px;
        padding-bottom: 14px;
        /* height: 440px; */
        border-radius: 8px 8px 0 0;
        overflow: hidden;
    }

    .product-box ul li img {
        width: 100%;
        height: 333px;
        object-fit: cover;
    }

    .product-box ul li .htmprice {
        margin-top: 13px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .product-box ul li .htmprice .price {
        flex: 0 0 auto;
        white-space: nowrap;
        
        font-weight: 400;
        font-size: 18px;
        color: #333333;
    }

    .product-box ul li .htmprice .itemNo {
        
        font-weight: 400;
        font-size: 12px;
        color: #CDCDCD;
    }

    .product-box ul li .htname {
        margin-top: 10px;
        width: 100%;
        
        font-weight: 400;
        font-size: 14px;
        color: #333333;
        line-height: 18px;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .product-box ul li .uploadBtn {
        margin-top: 12px;
        height: 32px;
        width: 100%;
    }
    .product-box ul li .uploadBtn .uploadBtnTxt {
        border: 0;
        height: 100%;
        max-width: 164px;
        line-height: 32px;
        /* padding: 0 12px; */
        background: #23AC38;
        border-radius: 7px;
        font-size: 14px;
        color: #fff;
        font-weight: 400;
        text-align: center;
    }

