/* 分享栏 */
.wx-share-bar {
  margin: 20px 0 10px;
  padding: 12px 0;
  border-top: 1px dashed #ddd;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.wx-share-bar .wx-share-label { color: #888; margin-right: 4px; }
.wx-share-bar .wx-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  color: #555;
  text-decoration: none;
  transition: all .2s;
  background: #fafafa;
}
.wx-share-bar .wx-share-btn:hover {
  border-color: #1aad19;
  color: #1aad19;
  background: #fff;
}
.wx-share-bar .wx-share-btn svg { vertical-align: middle; }

/* 微信内引导蒙层 */
#wx-share-mask {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.75);
  z-index: 99999;
  color: #fff;
  text-align: right;
  padding: 20px 30px 0 0;
  animation: wxFadeIn .2s ease;
}
#wx-share-mask .wx-share-arrow {
  width: 60px; height: 90px;
  margin-left: auto;
  background: url("data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 60 90"><path d="M30 5 Q55 35 45 70 L52 60 M45 70 L35 65" stroke="%23ffd966" stroke-width="4" fill="none" stroke-linecap="round"/></svg>") no-repeat center;
  background-size: contain;
}
#wx-share-mask .wx-share-tip {
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0,0,0,.5);
}
#wx-share-mask .wx-share-tip b { color: #ffd966; font-size: 22px; }

@keyframes wxFadeIn { from { opacity: 0 } to { opacity: 1 } }

/* Toast */
.wx-share-toast {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(.9);
  padding: 10px 18px;
  background: rgba(0,0,0,.78);
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  z-index: 99999;
  opacity: 0;
  transition: all .25s ease;
  pointer-events: none;
  max-width: 80%;
}
.wx-share-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
