.share-container {
  position: absolute;
}
.share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  a {
    outline: none;
    /* 去除移动端点击高亮 */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }
  &:link,
  &:visited,
  &:hover,
  &:active {
    outline: none;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
  }
}
