 /* 增强导航栏视觉效果 */
 .uk-navbar-nav > li > a {
  font-weight: 500;
  color: white;
}
.in-sticky{
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.uk-sticky {
      background-color: rgb(19, 17, 17);
  }

  @media (max-width: 960px) {

     /* 让header相对定位，方便汉堡按钮绝对定位 */
     header {
      position: relative;
  }
  
  /* 重置header内的grid布局，使用flex实现更精准的居中 */
  header .uk-grid {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      margin: 0;
      padding: 10px 0;
  }
  
  
   /* 移动端汉堡菜单按钮 - 绝对定位在右侧，不占用文档流空间，不影响logo居中 */
   .in-mobile-nav {
    position: absolute !important;
    top: 50% !important;
    right: 16px !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    display: flex !important;
    z-index: 30;
    background: transparent;
}

/* 汉堡按钮样式优化 */
.in-mobile-nav .uk-button {
    padding: 5px 15px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    min-width: auto;
}
.in-mobile-nav .uk-button span {
  font-size: 24px;
}
    /* 调整导航行容器，确保没有额外边距影响 */
    header .uk-width-1-1 {
      order: 1;
  }



}


a, .uk-link {
  color: #000000;
}