.mcs-share {
  --mcs-ink: #102b39;
  --mcs-muted: #687a84;
  --mcs-line: #e4ddd0;
  --mcs-gold: #b8873c;
  clear: both;
  margin: 42px 0 10px auto;
  padding: 22px;
  max-width: 820px;
  border: 1px solid var(--mcs-line);
  border-radius: 16px;
  background: linear-gradient(145deg, #fffdf8 0%, #f8f4ec 100%);
  box-shadow: 0 12px 30px rgba(16, 43, 57, .07);
  color: var(--mcs-ink);
  text-decoration: none;
}

.mcs-share__button:visited { color: var(--mcs-ink); }

.mcs-share__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.mcs-share__head strong {
  display: block;
  font-size: 17px;
  line-height: 1.45;
}

.mcs-share__head > div > span,
.mcs-share__status {
  display: block;
  margin-top: 3px;
  color: var(--mcs-muted);
  font-size: 13px;
}

.mcs-share__status {
  min-height: 20px;
  color: #177245;
  text-align: right;
}

.mcs-share__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.mcs-share__button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 6px 11px 6px 7px;
  border: 1px solid #d9d3c7;
  border-radius: 999px;
  background: #fff;
  color: var(--mcs-ink);
  font: inherit;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.mcs-share__button:hover,
.mcs-share__button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--mcs-gold);
  box-shadow: 0 5px 14px rgba(16, 43, 57, .10);
  outline: none;
}

.mcs-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: var(--mcs-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.mcs-native .mcs-icon { background: #b8873c; }
.mcs-wechat .mcs-icon { background: #07c160; }
.mcs-weibo .mcs-icon { background: #e6162d; }
.mcs-qzone .mcs-icon { background: #f4b900; color: #173046; }
.mcs-zhihu .mcs-icon { background: #1772f6; }
.mcs-toutiao .mcs-icon { background: #f04142; }
.mcs-baijiahao .mcs-icon { background: #245bdb; }
.mcs-xiaohongshu .mcs-icon { background: #ff2442; }
.mcs-copy .mcs-icon { background: #687a84; }

.mcs-share__note {
  margin: 14px 0 0;
  color: var(--mcs-muted);
  font-size: 12px;
  line-height: 1.7;
  text-align: right;
}

@media (max-width: 720px) {
  .mcs-share {
    margin-top: 32px;
    padding: 17px 14px;
    border-radius: 14px;
  }

  .mcs-share__head {
    display: block;
  }

  .mcs-share__status {
    margin-top: 7px;
    text-align: left;
  }

  .mcs-share__buttons {
    justify-content: flex-start;
    gap: 8px;
  }

  .mcs-share__button {
    padding-right: 10px;
    font-size: 12px;
  }

  .mcs-share__note {
    text-align: left;
  }
}
