/* ============================================================
   零售电商导航栏 · 北京明汉科技
   覆盖/扩展原 common.css 中的 .nav-* 样式
   ============================================================ */

/* 导航条整体：米白底 + 细底边 */
.nav-shadow {
  background: var(--mh-bg-card);
  box-shadow: 0 1px 0 var(--mh-line), 0 2px 12px rgba(107, 68, 35, 0.04);
}
.nav-header {
  padding: 0 20px !important;
  height: 76px;
}

/* 左侧 logo + 一级菜单：强制单行，修复中等宽度（≈1280–1366）下 flex-wrap:wrap
   导致菜单折行到 logo 下方、logo 顶部被裁切、菜单溢出 76px 头部的问题。
   common.css 给 .nav-left 设了 flex-wrap:wrap 且 logo 带 50px 右margin，空间不足即折行。 */
.nav-header .nav-left {
  flex-wrap: nowrap;
  flex: 0 1 auto;
  min-width: 0;
}
.nav-header .nav-left .nav-icon {
  flex: 0 0 auto;
}
.nav-header .nav-left .nav-icon img {
  margin-right: 18px; /* 覆盖 common.css 的 50px，回收横向空间 */
}
.nav-header .nav-left .nav-menu {
  flex: 0 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
}

/* logo 区 */
.nav-icon img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* 一级菜单项 */
.nav-menu .nav-item {
  font-size: 15px;
  font-weight: 500;
  color: var(--mh-text-1);
  padding: 0 16px;          /* 22→16，回收横向空间，避免中等宽度折行 */
  white-space: nowrap;      /* 菜单文字不折行 */
  line-height: 76px;
  cursor: pointer;
  position: relative;
  transition: color var(--mh-dur) var(--mh-ease);
  /* 移除 common.css 残留的透明占位边框；激活下划线统一由下方 ::after 渲染，避免出现两根线 */
  border-bottom: none;
}
.nav-menu .nav-item:hover {
  color: var(--mh-primary) !important;
  /* 覆盖 common.css 中 :hover 的 border-bottom（橙红 #FF6739），仅保留 ::after 下划线 */
  border-bottom: none;
}
.nav-menu .nav-item:hover::after,
.nav-menu a:hover .nav-item::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 2px;
  background: var(--mh-primary);
  border-radius: 2px;
}

/* 右侧操作区 */
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* 搜索框 */
.nav-search {
  display: flex;
  align-items: center;
  width: 220px;
  height: 38px;
  background: var(--mh-bg-soft);
  border: 1px solid var(--mh-line);
  border-radius: var(--mh-radius-pill);
  padding: 0 4px 0 16px;
  transition: all var(--mh-dur) var(--mh-ease);
}
.nav-search:focus-within {
  border-color: var(--mh-primary);
  background: var(--mh-bg-card);
  box-shadow: 0 0 0 3px rgba(107, 68, 35, 0.08);
}
.nav-search input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  color: var(--mh-text-1);
  height: 100%;
}
.nav-search input::placeholder {
  color: var(--mh-text-3);
}
.nav-search-btn {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  color: var(--mh-text-3);
  cursor: pointer;
  font-size: 16px;
  transition: all var(--mh-dur) var(--mh-ease);
}
.nav-search-btn:hover {
  color: var(--mh-primary);
}

/* 购物车图标 + 角标（视觉对齐用户中心 topMenu 购物车） */
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #8692b0; /* 紫灰，与 cart.svg 一致 */
}
.nav-cart-icon {
  font-size: 24px;
  width: 24px;
  height: 24px;
  color: #8692b0;
  transition: color var(--mh-dur) var(--mh-ease);
}
.nav-cart:hover .nav-cart-icon {
  color: #677390;
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  padding: 0 4px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: #f0142f; /* 用户中心角标红 */
  border-radius: var(--mh-radius-pill);
  border: 1.5px solid var(--mh-bg-card);
  box-sizing: border-box;
}
/* 空购物车角标兜底隐藏：即便 JS 漏处理，也不显示空/"0" 角标 */
#navCartCount:empty,
#navCartCount[data-empty="1"] {
  display: none;
}

/* 控制台/文档 链接 */
.nav-right > a > .control,
.nav-right .control {
  font-size: 14px;
  color: var(--mh-text-2);
  transition: color var(--mh-dur) var(--mh-ease);
}

/* 下拉面板 nav-cont */
.nav-cont {
  background: var(--mh-bg-card);
  box-shadow: 0 8px 24px rgba(107, 68, 35, 0.1);
}
.nav-cont .nav-content {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 30px 20px;
}
.nav-cont .nav-item-box {
  min-width: 280px;
  height: 92px;
  padding: 20px;
  background: var(--mh-bg-soft);
  border: 1px solid var(--mh-line);
  border-radius: var(--mh-radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--mh-dur) var(--mh-ease);
}
.nav-cont .nav-item-box:hover {
  background: var(--mh-bg-card);
  border-color: var(--mh-primary);
  box-shadow: var(--mh-shadow-md);
  transform: translateY(-2px);
}
.nav-cont .nav-item-box img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-cont .item-box-title .title {
  font-size: 15px;
  font-weight: 600;
  color: var(--mh-text-1);
  margin-bottom: 4px;
  transition: color var(--mh-dur) var(--mh-ease);
}
.nav-cont .nav-item-box:hover .title {
  color: var(--mh-primary);
}
.nav-cont .item-box-title .desc {
  font-size: 12px;
  color: var(--mh-text-3);
}

/* 登录后用户菜单 */
.login-in .name {
  font-size: 14px;
  color: var(--mh-text-1);
  max-width: 100px;
}
.login-menu {
  border-color: var(--mh-line) !important;
  box-shadow: var(--mh-shadow-md) !important;
}
.login-menu-item {
  color: var(--mh-text-2) !important;
}

/* ============================================================
   菜单项强化：下拉箭头 / 全部商品触发器 / 促销角标
   ============================================================ */
.nav-menu {
  display: flex;
  align-items: center;
}
.nav-menu a {
  display: block;
}
/* 提高选择器特异性至 (0,2,0)，与 common.css 的 `.nav-menu .nav-item { padding:0 22px }` 同级，
   且本文件加载在后，确保右侧 40px 箭头预留区生效——否则箭头会与菜单名重叠 */
.nav-menu .nav-item-has-children {
  padding-right: 40px;
}
/* 下拉箭头（chevron），hover 翻转 */
.nav-item-has-children::before {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  opacity: .55;
  transition: transform var(--mh-dur) var(--mh-ease), opacity var(--mh-dur) var(--mh-ease);
}
.nav-item-has-children:hover::before {
  transform: rotate(225deg);
  margin-top: -2px;
  opacity: 1;
}
/* 「商品商城」触发器：品牌色 + 分类九宫格 */
.nav-item-shop {
  color: var(--mh-primary) !important;
  font-weight: 700;
}
.nav-shop-grid {
  font-size: 15px;
  margin-right: 6px;
  vertical-align: -2px;
}
/* 「促销活动」角标 */
.nav-item-sale {
  position: relative;
}
.nav-item-sale::before {
  content: '惠';
  position: absolute;
  top: 17px;
  right: 2px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: var(--mh-promo);
  border-radius: 50%;
}

/* ============================================================
   Mega 面板：分类磁贴 + 热销榜
   ============================================================ */
.nav-cont {
  transition: height 0.25s var(--mh-ease);
  position: relative;
  /* 覆盖 common.css 残留的 top:72px：否则在 position:relative 下面板会被向下偏移 72px，
     导致顶部菜单项与下拉项之间出现大块空白 */
  top: 0;
  z-index: 99;
}
.nav-mega-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 26px 8px 26px 0;
}
/* 左侧分类磁贴网格 */
.nav-mega-cats {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-content: start;
  padding-right: 24px;
}
.nav-cat-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--mh-bg-soft);
  border: 1px solid var(--mh-line);
  border-radius: var(--mh-radius-md);
  transition: all var(--mh-dur) var(--mh-ease);
  position: relative;
}
.nav-cat-tile:hover {
  background: var(--mh-bg-card);
  border-color: var(--mh-primary);
  box-shadow: var(--mh-shadow-hover);
  transform: translateY(-2px);
}
.nav-cat-tile img,
.nav-cat-tile .nav-tile-svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: var(--mh-radius-sm);
  background: var(--mh-bg-card);
}
.nav-cat-tile .nav-tile-svg {
  font-size: 26px;
  box-sizing: border-box;
  padding: 8px;
  border: 1px solid var(--mh-line);
}
.nav-cat-info {
  flex: 1;
  min-width: 0;
}
.nav-cat-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--mh-text-1);
  margin-bottom: 2px;
  transition: color var(--mh-dur) var(--mh-ease);
}
.nav-cat-tile:hover .nav-cat-name {
  color: var(--mh-primary);
}
.nav-cat-desc {
  font-size: 12px;
  color: var(--mh-text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-cat-arrow {
  font-size: 12px;
  color: var(--mh-text-4);
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--mh-dur) var(--mh-ease);
}
.nav-cat-tile:hover .nav-cat-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--mh-primary);
}

/* 右侧热销榜 */
.nav-mega-hot {
  width: 288px;
  flex-shrink: 0;
  border-left: 1px solid var(--mh-line);
  padding-left: 24px;
  display: flex;
  flex-direction: column;
}
.nav-hot-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mh-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--mh-text-1);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--mh-line-soft);
}
.nav-hot-fire {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23B5482F'%3E%3Cpath d='M12 2c.7 3.2-.6 5-2.2 6.6C8.2 10.2 7 12 7 14.5A5.5 5.5 0 0 0 12.5 20c3.2 0 5.5-2.6 5.5-5.8 0-2.4-1-4.6-2.4-6.4-.4 1.3-1.1 2.2-2.1 2.7.5-2.6-.2-5.6-1.5-8.5z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.nav-hot-list {
  flex: 1;
  padding-top: 10px;
}
.nav-hot-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 8px;
  border-radius: var(--mh-radius-md);
  transition: background var(--mh-dur) var(--mh-ease);
}
.nav-hot-item:hover {
  background: var(--mh-bg-soft);
}
.nav-hot-rank {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  color: var(--mh-text-3);
  background: var(--mh-bg-section);
  border-radius: var(--mh-radius-sm);
  flex-shrink: 0;
}
.nav-hot-rank-1 { background: var(--mh-accent); color: #fff; }
.nav-hot-rank-2 { background: var(--mh-accent-light); color: var(--mh-primary-active); }
.nav-hot-item img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--mh-radius-sm);
  border: 1px solid var(--mh-line-soft);
  flex-shrink: 0;
}
.nav-hot-info {
  flex: 1;
  min-width: 0;
}
.nav-hot-name {
  font-size: 13px;
  color: var(--mh-text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--mh-dur) var(--mh-ease);
}
.nav-hot-item:hover .nav-hot-name {
  color: var(--mh-primary);
}
.nav-hot-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--mh-promo);
  margin-top: 2px;
}
.nav-hot-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 8px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--mh-text-2);
  border: 1px dashed var(--mh-border);
  border-radius: var(--mh-radius-pill);
  transition: all var(--mh-dur) var(--mh-ease);
}
.nav-hot-more:hover {
  color: var(--mh-primary) !important;
  border-color: var(--mh-primary);
  background: var(--mh-bg-soft);
}
/* 热销榜骨架屏（接口返回前） */
.nav-hot-skel {
  height: 44px;
  margin: 9px 8px;
  border-radius: var(--mh-radius-md);
  background: linear-gradient(90deg, var(--mh-bg-soft) 25%, var(--mh-bg-section) 50%, var(--mh-bg-soft) 75%);
  background-size: 200% 100%;
  animation: mh-skel 1.2s infinite var(--mh-ease);
}
@keyframes mh-skel {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* 侧边悬浮工具栏 */
.aside-tools .tools-item {
  background: var(--mh-bg-card);
  border: 1px solid var(--mh-line);
}
.aside-tools .tools-box {
  background: var(--mh-bg-card);
  box-shadow: var(--mh-shadow-md);
}
.aside-tools .tools-box-s .button {
  background: var(--mh-primary);
  color: #fff;
}

/* ============================================================
   中等/窄宽度自适应：保证 logo + 一级菜单 + 右侧操作区始终单行排布，
   不再折行（折行会导致 logo 裁切与头部溢出）。
   ============================================================ */
@media screen and (max-width: 1366px) {
  .nav-search { width: 190px; }
  .nav-right { gap: 14px; }
  .nav-menu .nav-item { padding: 0 13px; }
  .nav-menu .nav-item:hover::after,
  .nav-menu a:hover .nav-item::after { left: 13px; right: 13px; }
  .nav-header .nav-left .nav-icon img { margin-right: 14px; }
}
@media screen and (max-width: 1200px) {
  .nav-search { width: 160px; }
  .nav-right { gap: 12px; }
  .nav-menu .nav-item { padding: 0 11px; font-size: 14px; }
  .nav-menu .nav-item:hover::after,
  .nav-menu a:hover .nav-item::after { left: 11px; right: 11px; }
  .nav-header .nav-left .nav-icon img { margin-right: 12px; max-width: 150px; }
}

/* ============================================================
   移动端导航：汉堡按钮 + 全屏抽屉（≤992px 启用）
   PC/宽屏无任何影响；抽屉 DOM 由 common.js 点击时注入。
   ============================================================ */
/* 汉堡按钮：默认隐藏，仅窄屏显示 */
.nav-toggle {
  display: none;
  position: relative;
  width: 30px;
  height: 22px;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 1200;
}
.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--mh-text-1);
  border-radius: 2px;
  transition: transform var(--mh-dur) var(--mh-ease),
              opacity var(--mh-dur) var(--mh-ease),
              top var(--mh-dur) var(--mh-ease);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }
/* 抽屉打开时汉堡变 X */
body.nav-open .nav-toggle span { background: var(--mh-primary); }
body.nav-open .nav-toggle span:nth-child(1) { top: 10px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* 抽屉遮罩 */
.m-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 36, 25, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--mh-dur) var(--mh-ease), visibility var(--mh-dur);
  z-index: 1150;
}
body.nav-open .m-nav-overlay { opacity: 1; visibility: visible; }

/* 抽屉主体：从右侧滑入 */
.m-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 84vw);
  height: 100%;
  background: var(--mh-bg-card);
  box-shadow: var(--mh-shadow-lg);
  transform: translateX(100%);
  transition: transform var(--mh-dur) var(--mh-ease);
  z-index: 1160;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
body.nav-open .m-nav-drawer { transform: translateX(0); }
/* 抽屉头部（搜索框） */
.m-nav-head {
  padding: 18px 16px 12px;
  border-bottom: 1px solid var(--mh-line);
}
.m-nav-search {
  display: flex;
  align-items: center;
  height: 40px;
  background: var(--mh-bg-soft);
  border: 1px solid var(--mh-line);
  border-radius: var(--mh-radius-pill);
  padding: 0 6px 0 14px;
}
.m-nav-search input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: var(--mh-text-1);
  height: 100%;
}
.m-nav-search input::placeholder { color: var(--mh-text-3); }
.m-nav-search .m-nav-search-btn {
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  color: var(--mh-text-3);
  cursor: pointer;
  font-size: 15px;
}
.m-nav-search .m-nav-search-btn:hover { color: var(--mh-primary); }
/* 抽屉导航列表 */
.m-nav-list { padding: 8px 0; flex: 1; }
.m-nav-section { padding: 4px 0; }
.m-nav-section + .m-nav-section { border-top: 1px solid var(--mh-line-soft); }
.m-nav-group-title {
  padding: 12px 20px 4px;
  font-size: 12px;
  color: var(--mh-text-3);
  letter-spacing: 0.5px;
}
.m-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-size: 15px;
  color: var(--mh-text-1);
  border-left: 3px solid transparent;
  transition: background var(--mh-dur) var(--mh-ease), color var(--mh-dur) var(--mh-ease);
}
.m-nav-link:hover, .m-nav-link.is-active {
  color: var(--mh-primary);
  background: var(--mh-bg-soft);
  border-left-color: var(--mh-primary);
}
.m-nav-link .iconfont { font-size: 12px; color: var(--mh-text-4); }
.m-nav-sub { padding: 0 0 6px; background: var(--mh-bg-soft); }
.m-nav-sub .m-nav-link { padding: 11px 20px 11px 36px; font-size: 14px; color: var(--mh-text-2); }
.m-nav-sub .m-nav-link:hover { background: var(--mh-bg-card); }
.m-nav-link-sale { color: var(--mh-promo) !important; }
/* 抽屉底部：登录/注册 或 用户信息 */
.m-nav-foot {
  padding: 16px;
  border-top: 1px solid var(--mh-line);
  display: flex;
  gap: 10px;
}
.m-nav-foot .btn { flex: 1; height: 42px; line-height: 42px; text-align: center; }
.m-nav-user {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 6px 4px;
  width: 100%;
}
.m-nav-user .head-img {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; flex-shrink: 0;
}
.m-nav-user .name { flex: 1; font-size: 14px; color: var(--mh-text-1); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.m-nav-user .m-nav-logout {
  color: var(--mh-text-3); cursor: pointer; font-size: 13px; padding: 6px 10px;
  border-radius: var(--mh-radius);
}
.m-nav-user .m-nav-logout:hover { color: var(--mh-promo); background: var(--mh-bg-soft); }

/* —— ≤992px：启用移动端导航 —— */
@media screen and (max-width: 992px) {
  /* 隐藏 PC 横菜单与顶部搜索 */
  .nav-header .nav-menu { display: none; }
  .nav-search { display: none; }
  /* 显示汉堡按钮 */
  .nav-toggle { display: block; }
  /* 收紧头部高度与内边距 */
  .nav-header { height: 60px; padding: 0 14px !important; }
  .nav-menu .nav-item { line-height: 60px; }
  .nav-icon img { height: 34px; }
  .nav-header .nav-left .nav-icon img { margin-right: 8px; }
  .nav-right { gap: 14px; }
  /* 隐藏右侧悬浮工具栏（手机端避免遮挡内容） */
  .aside-tools { display: none !important; }
  /* mega 下拉面板在移动端不再 hover 触发（菜单已隐藏） */
  .nav-cont { display: none !important; }

  /* —— 用户区移动端精简：只显示一个图标，不再占大块区域 —— */
  /* 未登录：只留一个紧凑「登录」文字按钮，隐藏「注册」（注册入口在抽屉里） */
  .no-login { display: flex; align-items: center; gap: 0 !important; }
  .no-login .btn { padding: 6px 12px; font-size: 13px; }
  .no-login #registBtn { display: none; }              /* 隐藏「注册」 */
  .no-login #loginBtn { margin: 0 !important; }        /* 去掉 mr-10 横向占位 */
  /* 已登录：只保留头像圆点图标，隐藏用户名、分隔线、32px 横向 padding 与 hover 下拉菜单 */
  .nav-header .login-in {
    height: auto;
    padding: 0 !important;
    overflow: visible;
  }
  .nav-header .login-in::after { display: none; }      /* 去掉左侧分隔竖线 */
  .nav-header .login-in .name { display: none; }       /* 隐藏用户名 */
  .nav-header .login-in .login-menu { display: none !important; } /* 移动端不在顶部 hover，全部入口走抽屉 */
  .nav-header .login-in .head-img {
    width: 32px; height: 32px; margin: 0; cursor: pointer;
  }
}

/* —— ≤600px：进一步收紧 —— */
@media screen and (max-width: 600px) {
  .nav-header { height: 54px; padding: 0 12px !important; }
  .nav-menu .nav-item { line-height: 54px; }
  .nav-icon img { height: 30px; max-width: 130px; }
  .nav-right { gap: 12px; }
  .nav-cart-icon { font-size: 22px; }
  .nav-toggle { width: 26px; height: 20px; }
  .nav-toggle span:nth-child(2) { top: 9px; }
  .nav-toggle span:nth-child(3) { top: 18px; }
  body.nav-open .nav-toggle span:nth-child(1),
  body.nav-open .nav-toggle span:nth-child(3) { top: 9px; }
}
