.desctopCatalogMenuWrap {position: fixed;z-index: 99;left: 0;top: 0;width: 100vw;height: 100vh;display: none}
body.show-destop-catalog .desctopCatalogMenuWrap {display: block}

.desctopCatalogMenuBg {position: fixed;z-index: 1;left: 0;top: 0;width: 100vw;height: 100vh;  background: rgba(0,0,0,0.25)}
.desctopCatalogMenuBody {
    position: relative;z-index: 2;background: #fff;width: 1000px;
    margin-left: calc(50vw - 500px);margin-top: 30px;height: calc(100vh - 60px);display: flex; gap: 20px; padding: 0 20px;
    border-radius: 12px;
}
.desctopCatalogMenuRow {
    width: calc(1000px / 3);margin: 20px 0;
    overflow-y: auto;
}


.catalogRow {display: flex;align-items: center;justify-content: space-between;position: relative}
.catalogRow a {
    display: block;padding: 6px 40px 6px 10px;margin: 1px 0;width: 100%;
    color: #222;
    border-radius: 6px;
    font-size: 15px;
    line-height: 16px;
}
.catalogRow.sub a {
    padding: 4px 40px 4px 30px;
}
.catalogRow.active a {background: #f3f1f1}
.catalogRow span {
    width: 26px;height: 26px;position: absolute;right: 0;top: 2px;
    display: flex;align-items: center;justify-content: center;
    color: orange;
}
.catalogRow span svg {
    width: 14px;
    height: 14px;
    fill: orange;
}

.desctopCatalogMenuDynamycRow {display: none}
.desctopCatalogMenuDynamycRow.active {display: block}


.desctopCatalogMenuRow h3 {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
    padding: 0 10px 10px 10px;
    font-size: 17px;
    max-width: 90%;
    font-weight: 500;
}