/* 菜单图标样式 */

/* 导航菜单图标样式 */
nav h3 a i {
    margin-right: 8px;
    color: #2D2D30; /* 与导航栏标题颜色一致 */
    font-size: 1.2em;
    transition: color 0.2s ease-out;
}

nav h3 a:hover i {
    color: #2D2D30; /* 与导航栏标题颜色一致 */
}

/* 移动端菜单图标样式 */
.nav-full h1 a i {
    margin-right: 12px;
    color: #2D2D30; /* 与导航栏标题颜色一致 */
    font-size: 1.2em;
    transition: color 0.2s ease-out;
}

.nav-full h1 a:hover i {
    color: #2D2D30; /* 与导航栏标题颜色一致 */
}

/* 响应式设计 */
@media (max-width: 768px) {
    nav h3 a i {
        margin-right: 6px;
        font-size: 1.3em;
    }
    
    .nav-full h1 a i {
        margin-right: 10px;
        font-size: 0.7em;
    }
}