/* 售前分享功能样式 */
/* 分享按钮样式 */
#customer_share_btn {
  position: fixed;
  z-index: 2024;
  bottom: 20px;
  left: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(270deg, #0af2d0 0%, #01b8f9 67%);
  padding: 12px 16px;
  border-radius: 4px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

#customer_share_btn span {
  color: #fff;
  margin-left: 4px;
  font-size: 16px;
}

/* 分享结果弹窗样式 */
#customer_share_result {
  --mainColor: #2ac2b6;
  position: fixed;
  width: 350px;
  z-index: 2024;
  bottom: calc(20px + 60px);
  left: -350px;
  padding: 14px 13px;
  border-radius: 8px;
  box-sizing: border-box;
  border: 1px solid #ebeef5;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
  transition: opacity .3s, transform .3s, left .3s, right .3s, top .4s, bottom .3s;
  overflow: hidden;
}

.customer_share_result-title {
  display: flex;
  align-items: center;
}

.customer_share_result-title span {
  margin-left: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  flex: 1;
}

.customer_share_result-content {
  margin-top: 8px;
  border-radius: 6px;
  background-color: #f4f4f5;
  padding: 8px 12px;
  word-break: break-all;
}

#customer_share_result-close {
  cursor: pointer;
}

#customer_share_result-close path {
  transition: fill .3s;
}

#customer_share_result-close:hover path {
  fill: #787878;
}