/* 导航条白色背景样式 */
#header.white {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* 白色背景下的导航文字颜色 */
#header.white .nav-box li a {
    color: #333 !important;
}

/* 白色背景下的导航图标颜色 */
#header.white .nav-box li em img {
    filter: brightness(0.5);
}

/* 默认导航条样式 */
#header {
    transition: all 0.3s ease;
    background-color: transparent;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}
