
/* 悬浮客服模块样式 */
.suspension {
    position: fixed;
    right: 0;
    top: 100px;
    z-index: 1000;
    background: #f8f8f8;
    border-radius: 5px 0 0 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.suspension dl {
    width: 60px;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.suspension dl:last-child {
    border-bottom: none;
}

.suspension dl:hover {
    background: #f8f8f8;
}

.suspension dl dt {
    margin: 0 auto;
    width: 24px;
    height: 24px;
}

.suspension dl dt img {
    width: 100%;
    height: auto;
}

.suspension dl dd {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.suspension dl.no_bg {
    background: transparent;
}

/* 电话咨询悬浮显示 */
.sus_phone {
    position: relative;
}

.sus_phone .phoneleft {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #cd161d;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.sus_phone:hover .phoneleft,
.sus_phone .phoneleft:hover {
    opacity: 1;
    visibility: visible;
}

.sus_phone .phoneleft::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid #cd161d;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* 微信咨询悬浮显示 */
.wechatleft {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 180px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.wechatleft::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.wechatleft img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 3px;
}

.sus_wechat:hover .wechatleft,
.sus_wechat .wechatleft:hover {
    opacity: 1;
    visibility: visible;
}

/* 在线顾问样式 */
.sus_onlinekf {
    background: #cd161d;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
}

/* 响应式样式 */
@media (max-width: 768px) {
    .suspension {
        display: none;
    }
}