:root {
      --radius: 10px;
      --shadow: 0 4px 20px rgba(0,0,0,.08);
    }
/* 轮播图 */
    .carousel-item img {
      height: 320px;
      object-fit: cover;
      width: 100%;
    }

    /* 主栏卡片 */
    .main-card {
      background: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 0;
      margin-bottom: 25px;
      overflow: hidden;
    }

    /* 横幅容器 */
    .banner-box {
      position: relative;
      height: 100px;
    }
    .banner-img {
      width: 100%;
      height: 100px;
      object-fit: cover;
    }
    /* 一级类目：左上角 + 特殊圆角 + 可点击 */
    .cat1-label {
      position: absolute;
      left: 15px;
      top: 15px;
      background: rgba(255,255,255,.9);
      color: var(--b2b-blue);
      padding: 6px 14px;
      font-weight: 600;
      font-size: 15px;
      border-radius: 20px 4px 20px 4px;
      transition: .2s;
    }
    .cat1-label:hover {
      background: #fff;
      color: var(--b2b-orange);
    }

    /* 二级区块 */
    .cat2-box {
      display: flex;
      gap: 15px;
      padding: 15px;
      border-bottom: 1px solid #f0f0f0;
      align-items: center; /* 上下居中 */
    }
    .cat2-box:last-child {
      border-bottom: 0;
    }
    .cat2-img {
      width: 90px;
      height: 90px;
      object-fit: cover;
      border-radius: 6px;
      flex-shrink: 0;
    }
    .cat2-info {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center; /* 上下居中 */
      gap: 8px 0;
    }
    /* 二三级混排：每行5列 + 行间距 */
    .name-row {
      row-gap: 10px; /* 上下行间距 */
    }
    .name-row a {
      font-size: 14px;
      color: #555;
      white-space: nowrap;
    }
    .name-row a:hover {
      color: var(--b2b-orange);
    }
    /* 第一个二级：主题色+粗体 */
    .name-row a:first-child {
      color: var(--b2b-blue);
      font-weight: 600;
    }

    /* 右侧栏 */
    .right-card {
      background: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 20px;
      margin-bottom: 25px;
    }
    .right-tit {
      font-size: 16px;
      font-weight: 600;
      color: var(--b2b-blue);
      margin-bottom: 12px;
      border-left: 4px solid var(--b2b-orange);
      padding-left: 8px;
    }
    .right-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .right-list li {
      padding: 6px 0;
      border-bottom: 1px solid #f0f0f0;
      font-size: 13px;
    }
    .right-list li:last-child {
      border-bottom: 0;
    }
    .right-list a {
      color: var(--b2b-gray);
    }
    .right-list a:hover {
      color: var(--b2b-orange);
    }
    .right-ad {
      width: 100%;
      border-radius: var(--radius);
      margin-top: 15px;
    }