﻿    
        /* 客服图标容器样式 */
.customer-service {
  position: fixed;       /* 固定定位 */
  right: 20px;           /* 距离右边20px */
  bottom: 50px;          /* 距离底部20px */
  z-index: 999;          /* 确保在最顶层 */
  cursor: pointer;       /* 鼠标悬停手型 */
  transition: all 0.3s;  /* 添加动画效果 */
}
 
/* 悬停放大效果
.customer-service:hover {
  transform: scale(1.1);
}
     */
    