/* 天宫国际 - 通用样式 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #0a0a0f;
  font-family: 'PingFang SC', -apple-system, sans-serif;
  color: #fff;
  padding-bottom: 100px;
}

/* 底部导航 - 加大30% */
.tabbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 85px;
  background: rgba(10,10,15,0.98);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(218,165,32,0.1);
  padding-bottom: env(safe-area-inset-bottom, 0);
  z-index: 100;
}
.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  gap: 4px;
  padding: 10px 16px;
}
.tab-item .tab-icon {
  width: 28px;
  height: 28px;
}
.tab-item.active {
  color: #d4af37;
}
.tab-item .tab-label {
  font-size: 13px;
}