/* 悬浮导航链接样式 */
.floating-nav {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.floating-nav.visible {
    opacity: 1;
    transform: translateX(0);
}

.floating-nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 5px 0;
}

.floating-nav li {
    margin: 0;
    padding: 0;
}

.floating-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    color: #333;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0 15px;
}

.floating-nav a:hover {
    background: #FF6600;
    color: white;
    border-radius: 15px;
}

/* 激活状态样式 - 添加圆角背景 */
.floating-nav a.active {
    background: #FF6600;
    color: white;
    border-radius: 15px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .floating-nav {
        display: none; /* 在移动端隐藏悬浮导航 */
    }
}