/* 导航栏滚动后基础样式 */
.header.scrolled {
    background: #ffffff !important;/* 白色背景 */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;/* 添加阴影效果 */
}
/* 导航链接默认状态 */
.header.scrolled .nav-link {
    color: #000000 !important;/* 黑色文字 */
}
/* 导航链接和语言切换悬停状态 */
.header.scrolled .nav-link:hover,
.header.scrolled .language-link:hover {
    color: #0045E1 !important;
}
/* 导航链接和语言切换激活状态 */
.header .nav-item.dropdown .dropdown-toggle:after {
    background: #0045E1;
}
/* 下拉菜单样式 */
.header.scrolled .dropdown-menu {
    background: #fff !important;
}
/* 移动端菜单按钮线条颜色 */
.header.scrolled .navbar-toggler .togler-icon-inner span {
    background: #000000 !important;
}
/* Logo显示控制 */
.logo-normal {
    display: block !important;
}
.logo-transparent {
    display: none !important;
}

/* 搜索按钮图标/文字继承颜色 */
.header.scrolled .default-nav-btn i,
.header.scrolled .default-nav-btn span {
    color: inherit !important;
}


.header.scrolled .default-nav-btn {
    color: #0045E1 ;
    background-color: #ffffff ;  /* 新增白色背景 */
    border-color: #0045E1 ;
    /* transition: all 0.3s ease;   */
}

.header .default-nav-btn:after {
    color: #ffffff !important;
    background-color: #0045E1;
}