.page-consult-g {
    width: 50px;
    position: fixed;
    color: #fff;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2020;
    text-align: center;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
}

.page-consult-g .item {
    padding: 16px 0;
    display: block;
    cursor: pointer;
    position: relative;
    background: #000;
    height: 50px;
}

.page-consult-g .item:not(:last-child):before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 1);
    bottom: 0;
    left: 0;
}

.page-consult-g .item .yzm {
    font-size: 20px;
}

.page-consult-g .item .text {
    padding-top: 8px;
}

.page-consult-g .item .popover {
    display: none;
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    padding-right: 10px;
}

.page-consult-g .item .popover:before {
    content: '';
    position: absolute;
    border-style: solid;
    border-color: transparent transparent transparent #f3f3f3;
    border-width: 6px 0 6px 6px;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.page-consult-g .item .popover .content {
    white-space: nowrap;
    padding: 16px 24px;
    color: #333;
    border-radius: 4px;
    font-size: 24px;
    background-color: #f3f3f3;
    cursor: text;
}

.page-consult-g .item:hover .popover {
    display: block;
}