/* 微信分享组件样式 */
.wechat-share-dropdown {
  margin-left: 7px;
  margin-right: 15px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
}

.wechat-share-dropdown .share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wechat-share-dropdown .share-icon img {
  width: 15px;
  height: 16px;
  transition: opacity 0.2s;
}
.wechat-share-dropdown .share-icon-text {
  color: #666666;
  font-size: 14px;
  line-height: 16px;
  margin-left: 5px;
}

.wechat-share-dropdown .share-icon:hover img {
  opacity: 0.8;
}

.wechat-share-dropdown .wechat-share-popup {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  width: 112px;
  z-index: 1000;
  padding: 24px;
}

.wechat-share-dropdown .wechat-share-popup::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.08));
}

.wechat-share-dropdown .share-option:nth-child(2) {
  padding-top: 24px;
}

.wechat-share-dropdown .share-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.wechat-share-dropdown .share-icon-small {
  width: 18px;
  height: 18px;
  margin-right: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.wechat-share-dropdown .share-option:nth-child(1) .share-icon-small img {
  width: 18px;
  height: 14px;
}

.wechat-share-dropdown .share-option:nth-child(2) .share-icon-small img {
  width: 18px;
  height: 18px;
}

.wechat-share-dropdown .share-text {
  font-size: 14px;
  color: #101423;
  font-weight: 400;
  font-family: PingFang SC;
}

.wechat-share-dropdown .share-qrcode {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 90px;
}

.wechat-share-dropdown #wechat-qrcode,
.wechat-share-dropdown #moments-qrcode {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wechat-share-dropdown #wechat-qrcode img,
.wechat-share-dropdown #wechat-qrcode canvas,
.wechat-share-dropdown #moments-qrcode img,
.wechat-share-dropdown #moments-qrcode canvas {
  width: 90px !important;
  height: 90px !important;
  border-radius: 4px;
}

.wechat-share-dropdown .share-tip {
  text-align: center;
  font-size: 12px;
  color: #797C86;
  padding-top: 4px;
  font-family: PingFang SC;
}
