.products-layout {
    display: flex;
}

.product-categories {
    width: 35%; /* 左侧分类占25% */
    padding: 20px;
    /*background-color: #f5f5f5;*/ /* 背景色 */
    background-color: #15aedc;
    color: #f0ffff;
    border-right: 1px solid #ddd; /* 右边框 */
}

.product-categories h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.product-categories ul {
    list-style-type: none; /* 去掉默认的列表样式 */
    padding: 0;
}

.product-categories li {
    padding: 10px 0;
    cursor: pointer; /* 鼠标悬停时显示为手型 */
    transition: color 0.3s;
}

.product-categories li:hover {
    /*color: #1e50ae;*/ /* 悬停时颜色变化 */
    font-weight:800;
}

.product-list {
    width: 100%; /* 右侧产品展示占75% */
     
}

.product-categories ul ul {
    padding-left: 25px; /* 二级分类缩进 */
}

.product-categories ul ul li {
    padding: 5px 0; /* 二级分类项的间距 */
}

/* 移动端样式 */
@media screen and (max-width: 768px) {
    .products-layout {
        flex-direction: column; /* 垂直排列 */
    }

    .product-categories {
        width: 100%; /* 左侧分类占满宽度 */
        border-right: none; /* 移除右边框 */
        margin-bottom: 20px; /* 添加底部间距 */
    }

    .product-list {
        width: 100%; /* 右侧产品展示占满宽度 */
    }
}
