.tip-wrapper {
    width: 402px;
    height: 503px;
    background: rgba(12, 22, 75, 0.56);
    border: 1px solid #0487a3;
    z-index: 99999999;

}

.grid-1 {
    display: grid;
    grid-template-columns: 100px 100px 100px;
    grid-template-rows: 60px 60px;
    padding: 30px 20px;
    column-gap: 30px;
}

.border-b {
    width: 402px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    opacity: 0.1;
}

.grid-2 {
    height: 320px;
    display: grid;
    grid-template-columns: 120px 120px 120px;
    grid-template-rows: 80px 80px 80px;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
}

.tip-pic {
    grid-row-start: 1;
    grid-row-end: 3;
    width: 100px;
    height: 100px;

    image {
        width: 100px;
        height: 100px;
    }
}

.grid-2 .item {}

.item {
    text-align: center;

}

.item-name {
    font-size: 16px;
    font-weight: 400;
    color: #99E0FF;
    line-height: 20px;
    margin-bottom: 10px;
}

.item-val {
    height: 27px;
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 23px;
    opacity: 1;
}

.grid-2 .item-name {
    white-space: pre-wrap;
    width: 96px;
}