.fixed-banner {
    position: fixed;
    top: 50%;
    z-index: 9;
    transform: scale(0.9) translateY(-50%);
    transform-origin: right center;
    right: 0;
    width: 114px;
    height: 246px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.fixed-banner .fixed-banner-item {
    position: relative;
    width: 114px;
    margin-bottom: 10px;
    cursor: pointer;
    &:last-child {
        width: 92px;
        margin-left: 8px;
    }
}


.fixed-banner .fixed-banner-item >p{
    position: absolute;
    width: 100%;
    height: 42px;
    bottom: 0;
    left: 0;
    line-height: 40px;
    text-align: center;
}

/* 波纹动画 */
.fixed-banner .fixed-banner-item:first-child {
    position: relative;
    overflow: visible;
}

.fixed-banner .fixed-banner-item:first-child::before {
    content: '';
    position: absolute;
    top:43%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 114px;
    height: 114px;
    border-radius: 50%;
    background-color: rgba(74, 144, 226, 0.3);
    animation: ripple 2s ease-out infinite;
    z-index: -1;
}

.fixed-banner .fixed-banner-item:first-child::after {
    content: '';
    position: absolute;
    top:43%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 114px;
    height: 114px;
    border-radius: 50%;
    background-color: rgba(74, 144, 226, 0.2);
    animation: ripple 2s ease-out infinite 0.5s;
    z-index: -1;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* 二维码弹窗 */
.fixed-banner .wechat-item .qr-code-popup {
    position: absolute;
    right: 130px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
    pointer-events: none;
}
.fixed-banner .wechat-item .qr-code-popup h2{
    font-size: 22px;
    font-weight: bold;
    color: #333;
    display: block;
    text-align: center;
}
.fixed-banner .wechat-item .qr-code-popup p{
    font-size: 14px;
    color: #333;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.fixed-banner .wechat-item .qr-code-popup::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #fff;
}

.fixed-banner .wechat-item .qr-code-popup img {
    width: 100%;
    object-fit: contain;
    display: block;
}

.fixed-banner .wechat-item:hover .qr-code-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* 电话号码气泡 */
.fixed-banner .phone-item .phone-popup {
    position: absolute;
    right: 130px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px 60px 12px 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
    pointer-events: none;
    white-space: nowrap;
}
.fixed-banner .phone-item .phone-popup h2{
    font-size: 20px;
    color: #333;
    display: block;
    margin-bottom: 20px;
}

.fixed-banner .phone-item .phone-popup::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #fff;
}

.fixed-banner .phone-item .phone-popup .phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}
.fixed-banner .phone-item .phone-popup .phone-number-icon{
    width: 32px;
    height: 32px;
    margin-right: 10px;
    background-color: rgba(74, 144, 226, 0.3);
    border-radius: 4px;
    overflow: hidden;
    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.fixed-banner .phone-item:hover .phone-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}