
    /* 悬浮窗容器样式 */
.floating-window {
    z-index: 9999;
    position: fixed;
    top: 100px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

/* 图片样式 */
.image-container {
    position: relative;
    cursor: pointer;
    background-color: #a32221;
    padding: 10px;
}

/* 设置图片固定大小 */
.image-container img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

/* 提示框样式 */
.tooltip {
    visibility: hidden;
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    background-color: #a32221;
    color: white;
    padding: 10px;
    border-radius: 5px;
    width: 250px;
    text-align: center;
    z-index: 99999999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* 提示框箭头 */
.tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent #a32221;
}

/* 鼠标悬停时显示提示框 */
.image-container:hover .tooltip {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* 二维码悬浮框样式 */
.image-container:nth-child(3) .tooltip {
    width: 200px;
    height: 200px;
    padding: 20px;
    background-color: #a32221;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 二维码悬浮框内文本样式 */
.image-container:nth-child(3) .tooltip .qr-text {
    color: white;
    margin-bottom: 10px;
}

/* 二维码悬浮框内图片样式 */
.image-container:nth-child(3) .tooltip img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid white;
}

/* 移除最后一个图片容器的底部边框 */
.image-container:last-child {
    border-bottom: none;
}

/* 申请试用提示框淡出效果 */
.fade-out {
    opacity: 1;
    transition: opacity 3s ease;
}
