/* 移动端隐藏二级栏目导航的CSS规则 */
/* 这个文件专门用于在移动端隐藏二级栏目导航，因为现在已经有始终出现的汉堡菜单 */

/* 移动端设备 (最大宽度768px) */
@media (max-width: 768px) {
  /* 隐藏整个二级栏目导航区域 */
  .full-inside-subnav {
    display: none !important;
  }
  
  /* 隐藏面包屑导航 */
  .crumb {
    display: none !important;
  }
  
  /* 隐藏简化的栏目标题区域 */
  .common-clumb-min {
    display: none !important;
  }
}

/* 平板设备 (769px-1023px) */
@media (min-width: 769px) and (max-width: 1023px) {
  /* 在平板上也隐藏二级栏目导航，保持界面简洁 */
  .full-inside-subnav {
    display: none !important;
  }
  
  .crumb {
    display: none !important;
  }
  
  .common-clumb-min {
    display: none !important;
  }
}

/* 桌面设备 (最小宽度1024px) - 保持原有显示 */
@media (min-width: 1024px) {
  /* 在桌面端保持原有的二级栏目导航显示 */
  /* 不添加任何样式，使用layout.css中的原有样式 */
}