/*
 * ============================================================================
 * 软件名称：约定优记宝科普智汇系统 V1.0
 * 著作权人：北京约定科技集团有限公司
 * 开发完成日期：2026年04月25日
 * 软件用途：暂定二级一键替换
 * 
 * 版权所有 (C) 2026 北京约定科技集团有限公司。保留所有权利。
 * 本软件为著作权人独立开发，未经著作权人书面许可，任何单位或个人不得：
 * 1. 复制、传播、改编本软件；
 * 2. 将本软件用于商业用途；
 * 3. 修改或反向工程本软件。
 * 违反上述规定的，著作权人将依法追究其法律责任。
 * ============================================================================
 */

/**
 * 导航栏样式
 */
.site-navbar {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
    padding: 15px 0;
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-inner {
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #222;
}

.navbar-logo {
    height: 40px;
    margin-right: 10px;
}

.navbar-title {
    font-size: 20px;
    font-weight: bold;
}

.navbar-links {
    display: flex;
    gap: 20px;
}

.navbar-links a {
    color: #555;
    text-decoration: none;
    transition: color .2s;
}

.navbar-links a:hover {
    color: #B48C48;
}