/* 产品分类图标样式 */

/* 基础图标样式 */
.category-icon {
    width: 80px;
    height: 80px;
    margin-right: 8px;
    vertical-align: middle;
    border-radius: 8px;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* 小尺寸图标 */
.category-icon-small {
    width: 40px;
    height: 40px;
    margin-right: 6px;
}

/* 中等尺寸图标 */
.category-icon-medium {
    width: 60px;
    height: 60px;
    margin-right: 8px;
}

/* 大尺寸图标 */
.category-icon-large {
    width: 100px;
    height: 100px;
    margin-right: 12px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .category-icon {
        width: 70px;
        height: 70px;
    }
    .category-icon-large {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 992px) {
    .category-icon {
        width: 60px;
        height: 60px;
        margin-right: 6px;
    }
    .category-icon-large {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .category-icon {
        width: 50px;
        height: 50px;
        margin-right: 5px;
    }
    .category-icon-small {
        width: 30px;
        height: 30px;
    }
    .category-icon-large {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .category-icon {
        width: 40px;
        height: 40px;
        margin-right: 4px;
    }
    .category-icon-small {
        width: 25px;
        height: 25px;
    }
    .category-icon-large {
        width: 60px;
        height: 60px;
    }
}

/* 分类链接容器样式 */
.category-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.category-link:hover {
    text-decoration: none;
    color: inherit;
}

/* 分类标题样式 */
.category-title {
    flex: 1;
    margin: 0;
}

/* 特殊场景样式 */
.list-products .catepro li a .category-icon {
    width: 5vw;
    height: 5vw;
    margin-right: 1vw;
    border-radius: 0.5vw;
}

/* 超级菜单中的分类图标 */
.ptype.drop.product .two li h3 a .category-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border-radius: 4px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .ptype.drop.product .two li h3 a .category-icon {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }
}

@media (max-width: 768px) {
    .list-products .catepro li a .category-icon {
        width: 8vw;
        height: 8vw;
        margin-right: 1.5vw;
    }
}

/* 导航菜单中的图标 */
.header .nav .ptype .two > li h3 a .category-icon {
    width: 2.4vw;
    height: 2.4vw;
    margin-right: 0.8vw;
    border-radius: 0.3vw;
}

@media (max-width: 768px) {
    .header .nav .ptype .two > li h3 a .category-icon {
        width: 3vw;
        height: 3vw;
        margin-right: 1vw;
    }
}