
.category-children-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 10px;
}

.category-children-list-item {
    padding-top: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
    font-size: 0.65rem;
}

main .content .category-menu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}


main .category-title {
    border-left: 5px solid red;
    padding-left: 15px;
    line-height: 35px;
    border-bottom: 1px solid #C0C4CC;
    font-weight: bolder;
    clear: both;
    font-size: 0.85rem;
}

main .category-min {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 0.75rem !important;
    overflow: hidden; /*超出部分隐藏*/
    white-space: nowrap; /*禁止换行*/
    text-overflow: ellipsis; /*省略号*/
    padding-left: 1.2rem;
}

@media (max-width: 610px) {

    .category-children-list {
        display: flex;
        flex-direction: column;
    }

    .category-children-list-item {
        padding-bottom: 0 !important;
    }

    .category-children-list-item {
        width: 100% !important;
    }
}






