.sidebar-list {
    position: fixed;
    right: 0;
    width: 70px;
    top: 35%;
    background: #1e51ad;
    z-index: 999;
}

.sidebar-li {
    width: 70px;
    height: 70px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    align-items: center;
    position: relative;
}

.sidebar-li:last-child {
    border-bottom: 0;
}

.sidebar-li img {
    width: 30px;
    height: 30px;
}

.sidebar-li span {
    font-size: 12px;
    display: block;
    text-align: center;
    color: white;
    margin-top: 5px;
}

/* 弹窗样式 */
.sidebar-tooltip {
    position: absolute;
    right: 70px; /* 放在侧边栏右侧 */
    top: 0; /* 垂直居中 */
    padding: 15px;
    width: 210px;
    z-index: 1000;
    background: #1e51ad;
    color: white;
    border-radius: 5px 0 0 5px;
	transform: rotateX(90deg);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.sidebar-li:hover .sidebar-tooltip {
    /* display: block; */
	transform: rotateX(0deg);
    animation: fadeIn 0.3s ease;
}

/* 电话工具提示 */
.phone-tooltip {
    height: 70px;
}

/* 客服工具提示 */
.service-tooltip {
    min-height: 70px;
}

.service-list {
    display: flex;
    align-items: center;
}

.service-list div {
    font-size: 16px;
}

.service-list .service-mobile {
    padding-left: 10px;
}

/* 二维码工具提示 */
#weChatSale .tooltip-content {
    text-align: center;
}

.qrcode img {
    width: 180px;
    height: 180px;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
}


/* 响应式调整 */
@media (max-width: 768px) {
    .sidebar-list {
        width: 60px;
    }
    
    .sidebar-li {
        width: 60px;
        height: 60px;
    }
    
    .sidebar-li img {
        width: 25px;
        height: 25px;
    }
    
    .sidebar-tooltip {
        right: 65px;
        width: 180px;
        padding: 12px;
    }
    
    .qrcode img {
        width: 150px;
        height: 150px;
    }
}
[file content end]