.toolItem {
    position: fixed;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.toolItem ul {
    width: 60px;
    display: flex;
    flex-direction: column;
    font-size: 11px;
    margin: 2px 2px;
}

.toolItem ul li {
    width: 100%;
    height: 60px;
    /* background: #17adf3; */
    /* background: rgb(57, 252, 177); */
    background: rgb(4 214 105);
    margin: -5px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 100%;
    padding: 5px 5px;
    transition: all 0.3s ease-in-out;
    transform: scale(.6);
    position: relative;
}

.toolItem ul li:nth-child(1) a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
}

.itemBox,
.itemBox2 {
    display: none;
    position: absolute;
    left: -202px;
    transition: all 0.3s ease-in-out;
}

.itemBox .item,
.itemBox2 .item {
    width: 200px;
    height: 200px;
    background: rgb(4 214 105);
    padding: 10px;
    border-radius: 10px;
    margin: 4px 0;
}

.itemBox img,
.itemBox2 img {
    width: 100%;
    height: 100%;
}

.itemBox .item a {
    display: block;
    width: 100%;
    height: 100%;
}

.toolItem ul li p {
    display: none;
}

.toolItem ul li:hover {
    /* background: rgb(57, 252, 177); */
    transform: scale(.8);
    border-radius: 10px;
}

.toolItem ul li:hover p {
    display: block;
}

.toolItem ul li:nth-child(2):hover .itemBox {
    display: flex;
    flex-direction: column;
}

.toolItem ul li:nth-child(3):hover .itemBox2 {
    display: flex;
    flex-direction: column;
}