/* ========== 1. 彻底隐藏右上角搜索图标 ========== */
body header .navbar-nav li.nav-item:nth-last-child(2) {
    display: none !important;
}
/* ========== 2. 彻底隐藏暗色切换太阳按钮 ========== */
#color-toggle-btn {
    display: none !important;
}
/* ========== 3. 大幅缩小首页中间标语，双重缩小 ========== */
body .banner .subtitle {
    font-size: 16px !important; /* 固定像素，不受rem干扰 */
    transform: scale(0.6); /* 整体缩到60%，数字越小越小 */
    display: inline-block;
    margin-top: -30px; /* 缩小后文字上移居中，按需调整正负值 */
}

/* ========== 4. 取消移动端导航折叠，手机直接展示首页按钮，和电脑端布局一致 ========== */
@media (max-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    flex-basis: auto !important;
  }
  #navbar-toggler-btn {
    display: none !important;
  }
}