/* 移动端菜单样式 */
#mobile-menu-container {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.show {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #2c3e50;
    color: #fff;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
}

.mobile-menu-logo img {
    height: 30px;
    margin-right: 10px;
}

.mobile-menu-logo span {
    font-size: 16px;
    font-weight: 500;
}

.mobile-menu-close {
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-items li {
    border-bottom: 1px solid #eee;
}

.mobile-menu-items a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease;
}

.mobile-menu-items a:hover {
    background: #f5f5f5;
}

.mobile-menu-footer {
    padding: 20px;
    background: #f9f9f9;
}

.mobile-contact-info p {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.mobile-contact-info i {
    margin-right: 10px;
    color: #2c3e50;
}

/* 移动端菜单按钮样式 */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 767px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
}