.elementor-98 .elementor-element.elementor-element-766d797{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-98 .elementor-element.elementor-element-766d797{--content-width:514px;}}/* Start custom CSS for html, class: .elementor-element-fb7ffee *//* 主容器 */
.floating-contact-panel {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 5px 5px;
  border-radius: 30px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

/* 客服头像 */
.contact-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f1f1f1;
}

.contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 联系按钮基础样式 */
.contact-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

/* WhatsApp按钮样式 */
.whatsapp-btn {
  background: #303030;
}

/* 微信按钮样式 */
.wechat-btn {
  background: #303030;
}

/* 二维码提示框 */
.qr-tooltip {
  position: absolute;
  right: 50px;
  width: 150px;
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-tooltip img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 5px;
}

.qr-tooltip span {
  font-size: 12px;
  color: #555;
  text-align: center;
}

/* 悬停效果 */
.contact-button:hover {
  transform: scale(1.1);
}

.contact-button:hover .qr-tooltip {
  opacity: 1;
  visibility: visible;
  right: 70px;
}

/* 响应式调整 */
@media (max-width: 767px) {
  .floating-contact-panel {
    right: 15px;
    top: auto;
    bottom: 20px;
    transform: none;
    flex-direction: row;
    padding: 10px 15px;
    border-radius: 25px;
  }
  
  .contact-avatar {
    width: 40px;
    height: 40px;
    order: 1;
  }
  
  .contact-button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .qr-tooltip {
    right: auto;
    left: -160px;
    bottom: 50px;
  }
  
  .contact-button:hover .qr-tooltip {
    right: auto;
    left: -170px;
  }
}/* End custom CSS */