/* 固定图标容器样式 */
.fixed-icons-container {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* 图标样式 */
.fixed-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.fixed-icon:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    background: #0075C2;
}

/* 不同图标的颜色 */
.right-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
}

.right-icon:hover {
    filter: grayscale(100%) brightness(500%); /* 图片变白 */
}


/* 响应式设计 */
@media (max-width: 768px) {
    .fixed-icons-container {
        right: 10px;
    }

    .fixed-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .right-icon {
        width: 30px;
        height: 30px;
    }


    .icon-label {
        font-size: 12px;
        right: 60px;
    }
}

@media (max-width: 480px) {
    .fixed-icons-container {
        right: 5px;
    }

    .fixed-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .right-icon {
        width: 24px;
        height: 24px;
    }


    .icon-label {
        display: none; /* 在小屏幕上隐藏标签 */
    }
}