.nav-bar .global-original-back,
.nav-bar.has-global-nav-capsule > .nav-home {
  display: none !important;
}

.global-nav-capsule {
  display: inline-flex;
  height: 2rem;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 .125rem;
  border: .0625rem solid rgba(0, 0, 0, .06);
  border-radius: 3.125rem;
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-sizing: border-box;
}

.global-nav-capsule .cap-btn {
  display: flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8b6df6;
  cursor: pointer;
}

.global-nav-capsule .cap-btn i {
  color: inherit;
  font-size: 1.125rem;
  font-style: normal;
  line-height: 1.125rem;
}

.global-nav-capsule .cap-divider {
  display: block;
  width: .0625rem;
  height: 1rem;
  flex: 0 0 .0625rem;
  background: rgba(0, 0, 0, .1);
}

/*
 * 秒杀专区：该页 .nav-bar 是 justify-content:center 的 flex，而且原始返回按钮
 * (.seckill-back) 是绝对定位的，不参与 flex 布局。于是插入的胶囊变成唯一 flex 项、
 * 被推到整个头部正中间，压在「秒杀专区」大标题上。
 * 这里按原始返回按钮的位置（left:1rem、垂直居中）把它钉回左侧。
 */
.seckill-top .nav-bar .global-nav-capsule {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
