/* 自定义美洽入口按钮（替代默认「我们在线，来聊聊吧」） */
.portal-meiqia-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 40px;
  padding: 0 16px;
  border: none;
  border-radius: 20px;
  background: var(--primary, #329d15);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(50, 157, 21, 0.35);
  transition: background 0.2s, transform 0.2s, opacity 0.2s, visibility 0.2s;
}

.portal-meiqia-btn:hover {
  background: var(--primary-hover, #5bb144);
}

.portal-meiqia-btn:active {
  transform: scale(0.98);
}

.portal-meiqia-btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.has-portal-meiqia .back-top {
  bottom: 76px;
}

@media (max-width: 768px) {
  .portal-meiqia-btn {
    right: 16px;
    bottom: 16px;
    min-width: 88px;
    height: 36px;
    font-size: 13px;
  }

  body.has-portal-meiqia .back-top {
    bottom: 64px;
  }
}
