/* share.css - 分享页独立样式 */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "PingFang SC", "Noto Sans CJK SC", sans-serif;
  background: #0b1220;
  color: #eaf0ff;
}

.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
}

.card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

h1 {
  font-size: 20px;
  margin: 0 0 8px;
}

.desc {
  color: rgba(234, 240, 255, 0.78);
  margin: 0 0 10px;
  line-height: 1.55;
}

.url {
  font-size: 12px;
  color: rgba(234, 240, 255, 0.85);
  word-break: break-all;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px;
  border-radius: 12px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 880px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #eaf0ff;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  min-width: 110px;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.qrbox {
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.qrbox img {
  width: 260px;
  height: 260px;
  max-width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #fff;
}

.tip {
  color: rgba(234, 240, 255, 0.75);
  font-size: 13px;
  margin-top: 10px;
  line-height: 1.45;
}

.back {
  margin-top: 14px;
  font-size: 13px;
}

.back a {
  color: #9cc2ff;
  text-decoration: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-
