.bottom-right {
    background-color: #FFFFFF;
    display: block;
    width: 72px;
    height: 304px;
    position: fixed;
    right: 0px;
    /*bottom: 320px;*/
    bottom: 10.5vw;
    z-index: 9999;
    border-radius: 10px 0px 0px 10px;
    cursor: pointer;
    padding: 5px;
}

.bottom-icon {
    padding: 5px 0;
    position: relative;
}

.bottom-icon:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%; /* 左侧留出10%的间距 */
    right: 10%; /* 右侧留出10%的间距 */
    height: 1px;
    background-color: #EEEEEE; /* 分隔线颜色 */
}

.bottom-icon:not(:first-child) {
    /*margin-top: 15px; */
}

.icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #666666;
}

.icon-link:hover{
    color: #DC0000;
}

.icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon img {
    width: 30px;
    height: auto;
}

.text {
    color: inherit;
    font-size: 12px;
    margin-top: 5px;
    white-space: nowrap;
}

.tooltip:hover .left-space {
    visibility: visible;
    opacity: 1;
}

/*.tooltip:nth-child(4):hover .left-space {*/
/*    visibility: hidden;*/
/*    opacity: 1;*/
/*}*/

.left-space {
    min-width: 160px;
    position: absolute;
    top: -45%;
    right: 115%;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.8s;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    text-align: center;
}

.left-space img {
    width: 100px;
    height: 100px;
}

.left-space h3 {
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}

@media (max-width: 1080px) {
    .bottom-right {
        display: none !important;
    }
}