/* 右侧悬浮功能样式 */
.right-hover {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.right-hover-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    margin-bottom: 5px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.right-hover-item:hover {
    background: #ff5722;
    color: #fff;
}
