/* 浮动联系窗口样式 */
.floating-contact {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.floating-contact-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(to right, var(--tw-gradient-stops));
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.floating-contact-item:hover {
  transform: translateX(-5px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.floating-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.floating-contact-text {
  font-size: 14px;
  font-weight: 500;
}

/* 微信二维码弹窗样式 */
.wechat-qr-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.wechat-qr-modal-content {
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #888;
  width: 300px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  max-width: 90%;
}

.wechat-qr-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.wechat-qr-close:hover,
.wechat-qr-close:focus {
  color: black;
  text-decoration: none;
}

.wechat-qr-image {
  width: 200px;
  height: 200px;
  margin: 15px auto;
  display: block;
}

.wechat-qr-modal-content h3 {
  margin-top: 5px;
  color: #333;
  font-size: 18px;
}

.wechat-qr-modal-content p {
  color: #666;
  margin-bottom: 10px;
  font-size: 14px;
} 