/* 侧边栏容器 */
.common-sidebar {
  position: fixed;
  right: 20px;
  bottom: 200px;
  z-index: 999;
}

.contact-agent-btn {
  width: 38px;
  height: 124px;
  background-image: linear-gradient(180deg, #ff5645 0%, #ff8643 100%);
  box-shadow: 0 2px 4px 0 rgba(255, 97, 69, 0.2);
  color: #fff;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  overflow: hidden;
  border-radius: 20px;
  padding-top: 4px;
}

.common-sidebar .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 6px;
}

.common-sidebar .text {
  font-size: 12px;
  white-space: nowrap;
  word-break: keep-all;
  writing-mode: vertical-rl;
  letter-spacing: 2px;
}

.common-sidebar.lang-en .text {
  white-space: unset;
  writing-mode: vertical-lr;
}

@media (max-width: 769px) {
  .common-sidebar .contact-agent-btn {
    height: 36px;
    width: 36px;
    padding: 0px;
  }
  .common-sidebar .avatar {
    margin-top: 2px;
  }
  .common-sidebar .text {
    display: none;
  }
}
