/* 右侧悬浮按钮样式 */
.fixed.right-6 {
  right: 24px;
}

.fixed.top-1\/2 {
  top: 50%;
  transform: translateY(-50%);
}

.fixed.z-50 {
  z-index: 50;
}

.flex.flex-col.gap-4 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#priceBtn {
  background-color: #165DFF;
  color: white;
  padding: 12px 16px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(22, 93, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

#priceBtn:hover {
  background-color: rgba(22, 93, 255, 0.9);
  transform: translateX(-4px);
  box-shadow: 0 6px 16px rgba(22, 93, 255, 0.4);
}

#qqBtn {
  background-color: #10b981;
  color: white;
  padding: 12px 16px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

#qqBtn:hover {
  background-color: #059669;
  transform: translateX(-4px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

#qqBtn i {
  margin-right: 8px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .fixed.right-6 {
    right: 16px;
  }
  
  #priceBtn,
  #qqBtn {
    padding: 10px 14px;
    font-size: 14px;
  }
  
  #priceBtn:hover,
  #qqBtn:hover {
    transform: translateX(-2px);
  }
}

@media (max-width: 480px) {
  #priceBtn,
  #qqBtn {
    padding: 8px 12px;
    font-size: 12px;
  }
  
  #qqBtn i {
    margin-right: 6px;
  }
}