
.lg-dev-modes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 16px 0 0;          /* 与工作首页「输入框→能力包行」的 16px 节奏一致 */
}
.lg-dev-mode {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 18px;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #fff;
  font-family: "PingFang SC", -apple-system, BlinkMacSystemFont, "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.75);
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
}
.lg-dev-mode:hover {
  background: #fafafa;
  border-color: rgba(0, 0, 0, 0.18);
  color: rgba(0, 0, 0, 0.88);
}
.lg-dev-mode__ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: rgba(0, 0, 0, 0.55);
  flex: 0 0 auto;
  transition: color .15s;
}
.lg-dev-mode__ic svg { width: 17px; height: 17px; }

/* 需求调整：不再展示紫色选中态，选中项与普通胶囊保持一致外观 */
.lg-dev-mode.is-active {
  border-color: rgba(0, 0, 0, 0.10);
  color: rgba(0, 0, 0, 0.75);
  background: #fff;
  box-shadow: none;
}
.lg-dev-mode.is-active .lg-dev-mode__ic { color: rgba(0, 0, 0, 0.55); }
.lg-dev-mode.is-active::after { content: none; }
  