.guide-link {
  display: block;
  line-height: 0;
  z-index: 999;
}

.guide{
    position: fixed;
    right: 0;
    bottom: 5%;
    z-index: 100;
}
.guide-container{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.guide-img-guide{
    width: 82px;
    height: 218px;
    margin-bottom: 30px;
    cursor: pointer;
}

.guide-code {
    position: relative;
    margin-bottom: 2px;
}

.guide-img-code{
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.guide-code-popup {
    display: none;
    position: absolute;
    right: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    margin-right: 10px;
    z-index: 1000;  
}

.guide-code-popup::before {
    content: "";
    position: absolute;
    right: -8px;
    top: 0;
    width: 8px;
    height: 100%;
}

.guide-code-popup::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.guide-code-popup img {
    display: block;
    width: 140px;
    height: 140px;
}

.guide-code:hover .guide-code-popup {
    display: block;
}

.guide-img-up{
    width: 40px;
    height: 40px;
    cursor: pointer;
}