
  .tbj-size-card,
  .tbj-size-card * {
    box-sizing: border-box;
  }

  /* 外层容器：控制卡片与页面边缘的留白 */
  .tbj-size-card {
    width: 100%;
    margin: 14px 0 18px;
    padding: 0 14px;
    font-family: Arial, Helvetica, sans-serif;
  }

  .tbj-size-card-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;

    width: 100%;
    min-height: 86px;
    padding: 16px 17px;
    overflow: hidden;

    background:
      radial-gradient(
        circle at 92% 0%,
        rgba(222, 20, 36, 0.12),
        transparent 40%
      ),
      #f4f1e9;

    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 15px;
    color: #111111;
    text-decoration: none !important;

    box-shadow:
      0 7px 20px rgba(17, 17, 17, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);

    transition:
      transform 0.22s ease,
      box-shadow 0.22s ease,
      border-color 0.22s ease;
  }

  /* 左侧红色品牌线 */
  .tbj-size-card-link::before {
    content: "";
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 0;
    width: 4px;

    border-radius: 0 5px 5px 0;
    background: #de1424;
  }

  .tbj-size-card-link:hover {
    transform: translateY(-2px);
    border-color: rgba(222, 20, 36, 0.45);

    box-shadow:
      0 11px 26px rgba(17, 17, 17, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }

  /* 左侧尺码图标 */
  .tbj-size-card-icon {
    position: relative;
    z-index: 2;

    display: flex;
    flex: 0 0 49px;
    align-items: center;
    justify-content: center;

    width: 49px;
    height: 49px;

    background: #111111;
    border-radius: 50%;
    color: #ffffff;

    box-shadow: 0 6px 15px rgba(17, 17, 17, 0.2);

    transition:
      transform 0.22s ease,
      background 0.22s ease;
  }

  .tbj-size-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .tbj-size-card-link:hover .tbj-size-card-icon {
    transform: scale(1.06) rotate(-3deg);
    background: #de1424;
  }

  /* 中间文字区域 */
  .tbj-size-card-content {
    position: relative;
    z-index: 2;

    display: block;
    min-width: 0;
    flex: 1;
  }

  .tbj-size-card-label {
    display: flex;
    align-items: center;
    gap: 6px;

    margin-bottom: 5px;
    color: #de1424;

    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1.3px;
    text-transform: uppercase;
  }

  .tbj-size-card-label::before {
    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: #de1424;
    box-shadow: 0 0 0 3px rgba(222, 20, 36, 0.1);
  }

  .tbj-size-card-title {
    display: block;
    margin-bottom: 4px;

    color: #111111;
    font-size: 17px;
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: -0.25px;
  }

  .tbj-size-card-description {
    display: block;

    color: #64615b;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
  }

  /* 右侧箭头按钮 */
  .tbj-size-card-arrow {
    position: relative;
    z-index: 2;

    display: flex;
    flex: 0 0 37px;
    align-items: center;
    justify-content: center;

    width: 37px;
    height: 37px;

    background: #de1424;
    border-radius: 50%;
    color: #ffffff;

    font-size: 19px;
    font-weight: 700;

    box-shadow: 0 5px 13px rgba(222, 20, 36, 0.24);

    transition:
      transform 0.22s ease,
      background 0.22s ease;
  }

  .tbj-size-card-link:hover .tbj-size-card-arrow {
    transform: translateX(3px);
    background: #111111;
  }

  .tbj-size-card-link:focus-visible {
    outline: 3px solid rgba(222, 20, 36, 0.45);
    outline-offset: 3px;
  }

  /* 手机端适配 */
  @media (max-width: 767px) {
    .tbj-size-card {
      margin: 12px 0 16px;
      padding: 0 12px;
    }

    .tbj-size-card-link {
      gap: 11px;
      min-height: 78px;
      padding: 14px 13px;
      border-radius: 13px;
    }

    .tbj-size-card-link::before {
      top: 13px;
      bottom: 13px;
      width: 3px;
    }

    .tbj-size-card-icon {
      flex-basis: 43px;
      width: 43px;
      height: 43px;
    }

    .tbj-size-card-icon svg {
      width: 21px;
      height: 21px;
    }

    .tbj-size-card-label {
      margin-bottom: 4px;
      font-size: 9px;
      letter-spacing: 1.1px;
    }

    .tbj-size-card-title {
      margin-bottom: 3px;
      font-size: 15px;
    }

    .tbj-size-card-description {
      font-size: 11px;
    }

    .tbj-size-card-arrow {
      flex-basis: 33px;
      width: 33px;
      height: 33px;
      font-size: 17px;
    }
  }

  /* 极窄手机屏幕 */
  @media (max-width: 360px) {
    .tbj-size-card {
      padding: 0 10px;
    }

    .tbj-size-card-link {
      gap: 9px;
      padding: 13px 11px;
    }

    .tbj-size-card-icon {
      flex-basis: 39px;
      width: 39px;
      height: 39px;
    }

    .tbj-size-card-title {
      font-size: 14px;
    }

    .tbj-size-card-description {
      font-size: 10px;
    }

    .tbj-size-card-arrow {
      flex-basis: 30px;
      width: 30px;
      height: 30px;
    }
  }
