.Vector-pop {
    display: none;
    height: fit-content;
    flex-direction: row;
    align-items: flex-start;
    padding: 10px 16px;
    background: #3C4660;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 7;
}

.Vector-pop span {
    width: max-content;
    max-width: 220px;
    height: fit-content;
    color: #ffffff;
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.6em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.Vector-pop .triangle-container {
    width: 100%;
    height: 20px;
    position: absolute;
    bottom: -20px;
    right: 0;
    background-color: rgba(0, 0, 0, 0);
}

.Vector-pop.bottom .triangle-container {
    bottom: unset;
    top: -20px;
}

.Vector-pop .triangle-container>.triangle {
    width: 0;
    height: 0;
    border-top: 6px solid #3C4660;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.Vector-pop.bottom .triangle-container>.triangle {
    border-top: none;
    border-bottom: 6px solid #3C4660;
    top: unset;
    bottom: 0;
}

.Vector-pop.left .triangle-container>.triangle {
    right: unset;
    left: 10px;
}
.Vector-pop.right .triangle-container>.triangle {
    left: unset;
    right: 10px;
}
