.sidebar {
    width: 70px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    bottom: auto;
    top: 60%;
    transform: translateY(-50%);
    right: 5px;
    z-index: 9;
}

.sidebar .sidebarTop .item {
    width: 68px;
    height: 68px;
    background-color: #409eff;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 10px 0;
    border-radius: 10px;
    cursor: pointer;
}

.sidebar .sidebarTop .item img {
    width: 29px;
    height: 29px;
    margin: 5px 0;
}

.sidebar .sidebarTop .item p {
    color: #fff;
    margin: 5px 0;
    font-size: 12px;
    padding: 0;
    margin: 0;
}

.sidebar .sidebarTop .item:hover {
    opacity: 1;
}

.sidebar .sidebarBottom .item {
    width: 50px;
    height: 50px;
    background-color: #409eff;
    opacity: 0.8;
    margin: 10px 0;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar .sidebarBottom .item img {
    width: 50px;
    height: 50px;
}

.sidebar .sidebarBottom .item:hover {
    opacity: 1;
}
