/* ============================================================
   付费书阅读页（single-paidbook.php）与「我的已购」（page-mypurchases.php）
   视觉遵循站点 2026 设计语言：黑 #121212 / 白 / 高亮黄 #f9f506，
   2px 纯黑描边、硬阴影、mono 徽章（与首页/关于页一致）
   ============================================================ */

.pb-hero {
  background: #f9f506;
  border-top: 2px solid #121212;
  border-bottom: 2px solid #121212;
  background-image: radial-gradient(rgba(18, 18, 18, .14) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  /* 补偿顶部固定导航（position:fixed，约 95px 高）：黄色通栏从页面顶端开始，内容压到导航之下 */
  padding-top: 130px;
}
.pb-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
}
.pb-kicker {
  display: inline-block;
  background: #121212;
  color: #f9f506;
  padding: 4px 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.pb-title {
  margin: 18px 0 10px;
  font-size: 2.4em;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #121212;
}
.pb-title a { color: inherit; text-decoration: none; }
.pb-excerpt-line {
  color: rgba(18, 18, 18, .8);
  font-size: 1.02em;
  line-height: 1.8;
  max-width: 560px;
}
.pb-hero-badges {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pb-badge {
  padding: 6px 14px;
  border: 2px solid #121212;
  border-radius: 999px;
  background: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  color: #121212;
  white-space: nowrap;
}

/* 购买卡 */
.pb-buy-card {
  background: #fff;
  border: 2px solid #121212;
  border-radius: 1.5rem;
  box-shadow: 8px 8px 0 rgba(18, 18, 18, 1);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pb-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.pb-price {
  font-size: 2.4em;
  font-weight: 900;
  color: #121212;
  letter-spacing: -0.02em;
}
.pb-price-note { font-size: .9em; font-weight: 700; color: #525252; }
.pb-buy-notes {
  font-size: .82em;
  color: #525252;
  text-align: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.pb-buy-owned {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pb-buy-owned-icon {
  width: 44px;
  height: 44px;
  border: 2px solid #121212;
  border-radius: 12px;
  background: #f9f506;
  color: #121212;
  font-size: 1.4em;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pb-buy-owned-title { font-weight: 900; font-size: 1.1em; }
.pb-buy-owned-sub { font-size: .85em; color: #525252; }

/* 主体：正文列居中（目录悬浮层独立于文档流）。
   挂载 section section-sigular-detail 以复用旧文章排版（18px/1.8/serif，与编辑器一致） */
.pb-main { background: #fff; padding: 0; }
.pb-main-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* 左侧悬浮目录挂件：屏幕左侧悬浮层，内部独立滚动，支持展开/收起（.is-collapsed） */
.pb-toc-float {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  z-index: 200; /* 高于顶部固定菜单（.header z-index:100），低于购买弹窗（9999） */
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 48px);
}
.pb-toc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #121212;
  color: #f9f506;
  border: 2px solid #121212;
  border-radius: .75rem;
  padding: 10px 14px;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
}
.pb-toc-head .fa { transition: transform .2s; }
.pb-toc-float.is-collapsed .pb-toc-head .fa { transform: rotate(180deg); }
.pb-toc-float.is-collapsed .pb-toc-body { display: none; }
.pb-toc-float.is-collapsed { width: auto; }
/* 收起态：纵向书脊标签 */
.pb-toc-float.is-collapsed .pb-toc-head {
  flex-direction: column;
  gap: 10px;
  padding: 16px 12px;
}
.pb-toc-float.is-collapsed .pb-toc-head-text {
  /* 收起态：用宽度限制实现逐字竖排（一个字宽自然换行），不改文字方向 */
  width: 1em;
  word-break: break-all;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0;
}
.pb-toc-body {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: calc(100vh - 170px);
}
.pb-toc-body .pb-index {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  max-height: none;
}
/* 文章标题目录（JS 生成）的次级条目（按相对层级缩进） */
.pb-index-list a.pb-toc-sub { padding-left: 32px; font-size: .9em; }
.pb-index-list a.pb-toc-sub2 { padding-left: 46px; font-size: .85em; color: #666; }
.pb-index {
  background: #fff;
  border: 2px solid #121212;
  border-radius: 1.25rem;
  box-shadow: 6px 6px 0 rgba(18, 18, 18, 1);
  padding: 16px 6px;
  max-height: calc(100vh - 120px);
  overflow: auto;
}
.pb-index::-webkit-scrollbar { width: 6px; }
.pb-index::-webkit-scrollbar-thumb { background: rgba(18, 18, 18, .2); border-radius: 3px; }
.pb-index-home {
  display: block;
  padding: 10px 16px;
  font-weight: 900;
  font-size: 1.02em;
  color: #121212;
  text-decoration: none;
  border-bottom: 2px dashed rgba(18, 18, 18, .2);
  margin-bottom: 8px;
}
.pb-index-list, .pb-index-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pb-index-list ul { padding-left: 18px; }
.pb-index-list li { margin: 0; }
.pb-index-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
  font-size: .95em;
  line-height: 1.5;
  border-radius: 8px;
}
.pb-index-list a:hover { background: #f6f6f6; color: #121212; }
.pb-index-list a.pb-current {
  background: #f9f506;
  color: #121212;
  font-weight: 700;
}
.pb-index-text { flex: 1; min-width: 0; }
.pb-free-flag {
  flex-shrink: 0;
  padding: 1px 8px;
  border: 1.5px solid #121212;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  background: #fff;
}
.pb-index-list .fa-lock { flex-shrink: 0; color: #999; font-size: .85em; }
/* 目录条目：章（第 N 章 · 标题）与节（N. 标题）的序号前缀 */
.pb-index-no {
  flex-shrink: 0;
  margin-right: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .85em;
  font-weight: 700;
  color: rgba(18, 18, 18, .5);
}
a.pb-index-chapter {
  font-weight: 900;
  color: #121212;
}
a.pb-index-chapter .pb-index-no { color: #121212; }
.pb-index-list ul a.pb-index-chapter { padding-left: 10px; }
.pb-index-toggle { display: none; }
.pb-article h2.pb-book-intro-title {
  margin: 0 0 18px;
  font-size: 1.6em;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #121212;
}
.pb-article-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  color: #999;
  font-size: .85em;
}
@media (max-width: 1500px) {
  .pb-toc-float { left: 12px; }
}
@media (max-width: 768px) {
  .pb-toc-float {
    width: min(78vw, 300px);
    top: auto;
    bottom: 20px;
    transform: none;
  }
  .pb-toc-body { max-height: 48vh; }
}

/* 内容区 */
.pb-article .pb-article-title h2 {
  margin: 0 0 8px;
  font-size: 1.8em;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #121212;
  line-height: 1.35;
}
.pb-crumb {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  color: rgba(18, 18, 18, .5);
  margin-bottom: 10px;
}
.pb-crumb a { color: inherit; text-decoration: none; border-bottom: 1px dashed rgba(18, 18, 18, .4); }
@media (min-width: 1200px) and (max-width: 1499px) {
  /* 书页在 1200-1499 视口默认展开：目录收窄，减少与正文列的重叠 */
  .pb-toc-float { width: 240px; }
  .pb-toc-float .pb-index-list a { font-size: .88em; padding: 6px 12px; }
}
.pb-article-meta {
  font-size: .85em;
  color: #999;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  margin-bottom: 24px;
}
.pb-next-step { margin: 32px 0; }

/* 免费部分渐隐遮罩 */
.pb-preview {
  position: relative;
  overflow: hidden;
}
.pb-preview:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 260px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
}

/* 上一章 / 下一章 */
.pb-pager {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 2px dashed rgba(18, 18, 18, .2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pb-pager-item {
  border: 2px solid #121212;
  border-radius: .75rem;
  padding: 14px 18px;
  font-size: .92em;
  font-weight: 700;
  color: #121212;
  text-decoration: none;
  background: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all .2s;
}
.pb-pager-item:hover { background: #f9f506; }

.pb-pager-next { text-align: right; }
.pb-pager-muted { border: none; }

/* 购买弹窗 */
.ts-buy-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.ts-buy-modal.is-open { display: flex; }
.ts-buy-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(2px);
}
.ts-buy-dialog {
  position: relative;
  width: 100%;
  max-width: 26rem;
  background: #fff;
  border: 2px solid #121212;
  border-radius: 1.5rem;
  box-shadow: 10px 10px 0 rgba(18, 18, 18, .9);
  padding: 32px 28px;
  animation: ts-buy-pop .2s ease-out;
  max-height: 90vh;
  overflow: auto;
}
@keyframes ts-buy-pop {
  from { opacity: 0; transform: scale(.96) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.ts-buy-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #121212;
  border-radius: 999px;
  background: #fff;
  color: #121212;
  font-size: 1.2em;
  cursor: pointer;
}
.ts-buy-close:hover { background: #f9f506; }
.ts-buy-title {
  margin: 0 0 6px;
  font-size: 1.4em;
  font-weight: 900;
  color: #121212;
  text-align: center;
}
.ts-buy-desc { margin: 0 0 18px; color: #525252; font-size: .92em; text-align: center; }
.ts-buy-price-line {
  text-align: center;
  font-weight: 700;
  color: #333;
  margin-bottom: 14px;
}
.ts-buy-price-line b { color: #121212; font-size: 1.3em; }
.ts-buy-qr {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  border: 2px solid #121212;
  border-radius: 1rem;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ts-buy-qr img { width: 100%; height: 100%; object-fit: contain; }
.ts-buy-hint {
  margin: 14px 0 4px;
  text-align: center;
  font-size: .85em;
  color: #525252;
}
.ts-buy-actions { display: flex; justify-content: center; margin-top: 8px; }
.ts-buy-msg {
  margin-top: 12px;
  min-height: 1.2em;
  text-align: center;
  font-size: .85em;
  color: #c0392b;
  font-weight: 700;
}
/* 登录表单（购买弹窗 #ts-loginform 与「我的已购」页 #mypurchases-loginform 共用；
   wp_login_form 不支持 form_class，只能按 id 定位美化） */
#ts-loginform .login-username, #mypurchases-loginform .login-username,
#ts-loginform .login-password, #mypurchases-loginform .login-password { margin: 0 0 14px; }
#ts-loginform .login-username label, #mypurchases-loginform .login-username label,
#ts-loginform .login-password label, #mypurchases-loginform .login-password label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #121212;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
#ts-loginform .login-username input, #mypurchases-loginform .login-username input,
#ts-loginform .login-password input, #mypurchases-loginform .login-password input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 11px 14px;
  font-size: 15px;
  color: #121212;
  background: #fff;
  border: 2px solid #121212;
  border-radius: .65rem;
  outline: none;
  box-shadow: none;
  transition: box-shadow .15s, transform .15s;
}
#ts-loginform .login-username input:focus, #mypurchases-loginform .login-username input:focus,
#ts-loginform .login-password input:focus, #mypurchases-loginform .login-password input:focus {
  box-shadow: 3px 3px 0 rgba(18, 18, 18, 1);
  transform: translate(-1px, -1px);
}
#ts-loginform .login-remember, #mypurchases-loginform .login-remember {
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #525252;
}
#ts-loginform .login-remember input, #mypurchases-loginform .login-remember input { accent-color: #121212; }
#ts-loginform .login-submit, #mypurchases-loginform .login-submit { margin: 14px 0 0; }
#ts-loginform .login-submit .button-primary, #mypurchases-loginform .login-submit .button-primary {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: 3rem;
  background: #121212;
  color: #f9f506;
  border: 2px solid #121212;
  border-radius: .75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .95rem;
  font-weight: 900;
  cursor: pointer;
  transition: background .2s, color .2s;
}
#ts-loginform .login-submit .button-primary:hover, #mypurchases-loginform .login-submit .button-primary:hover {
  background: #f9f506;
  color: #121212;
}
.ts-buy-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 16px;
}
.ts-buy-links a { color: #525252; text-decoration: none; border-bottom: 1px dashed rgba(18, 18, 18, .4); }
.ts-buy-links a:hover { color: #121212; border-bottom-color: #121212; }

/* 我的已购 */
.mp-userbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 2px solid #121212;
  border-radius: 1.25rem;
  box-shadow: 6px 6px 0 rgba(18, 18, 18, 1);
  padding: 18px 24px;
  margin-bottom: 32px;
}
.mp-userbar-left { display: flex; align-items: center; gap: 14px; }
.mp-userbar-name { font-weight: 900; font-size: 1.05em; color: #121212; }
.mp-userbar-sub { font-size: .82em; color: #525252; }
.mp-logout { font-size: .85em; color: #525252; }
.mp-section-title {
  margin: 36px 0 18px;
  font-size: 1.4em;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #121212;
}
.mp-books {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.mp-book-card {
  background: #fff;
  border: 2px solid #121212;
  border-radius: 1.25rem;
  box-shadow: 6px 6px 0 rgba(18, 18, 18, 1);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  color: inherit;
}
.mp-book-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(18, 18, 18, 1);
}

.mp-book-title { font-weight: 900; font-size: 1.1em; color: #121212; text-decoration: none; }
.mp-book-title:hover { text-decoration: underline; }
.mp-book-desc { font-size: .85em; color: #525252; }
.mp-book-go {
  margin-top: 8px;
  align-self: flex-start;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .85em;
  font-weight: 900;
  color: #121212;
  text-decoration: none;
  border-bottom: 2px solid #f9f506;
}
.mp-orders {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 2px solid #121212;
  font-size: .9em;
}
.mp-orders th, .mp-orders td {
  border: 1px solid rgba(18, 18, 18, .15);
  padding: 10px 14px;
  text-align: left;
}
.mp-orders th {
  background: #f6f6f6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .85em;
}
.mp-state {
  display: inline-block;
  padding: 2px 10px;
  border: 1.5px solid #121212;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .8em;
  font-weight: 700;
  background: #fff;
}
.mp-state-completed { background: #f9f506; }
.mp-empty {
  background: #fff;
  border: 2px dashed rgba(18, 18, 18, .3);
  border-radius: 1.25rem;
  padding: 40px;
  text-align: center;
  color: #525252;
}

/* 响应式 */
@media (max-width: 1000px) {
  .pb-hero-inner { grid-template-columns: 1fr; padding: 40px 20px; }
  .pb-main-inner { grid-template-columns: 1fr; padding: 32px 20px 60px; }
  .pb-index-wrap { position: static; }
  .pb-index { max-height: 60vh; }
  .pb-index-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: #121212;
    color: #f9f506;
    border: 2px solid #121212;
    border-radius: .75rem;
    padding: 12px 18px;
    font-weight: 900;
    font-size: .95em;
    cursor: pointer;
  }
  .pb-index-toggle + .pb-index { margin-top: 12px; }
  .pb-index-wrap.collapsed .pb-index { display: none; }
  .pb-pager { grid-template-columns: 1fr; }
  .pb-pager-next { text-align: left; }
}

/* ============================================================
   付费书页评论区（#pb-comments 作用域，基于 comment.css 的 2026 重绘）
   ============================================================ */
#pb-comments #respond {
  margin: 48px 0 8px;
  background: #fff;
  border: 2px solid #121212;
  border-radius: 1.25rem;
  box-shadow: 6px 6px 0 rgba(18, 18, 18, 1);
  padding: 28px 26px;
}
#pb-comments #respond::before {
  content: "留下你的想法 · COMMENTS";
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, .45);
  margin-bottom: 18px;
}
#pb-comments .comment-user-info-text { margin: 0 0 12px; }
#pb-comments .comment-user-info-text a {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  color: #525252;
  border-bottom: 1px dashed rgba(18, 18, 18, .4);
  text-decoration: none;
}
#pb-comments .comment-author-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
}
#pb-comments .comment-author-info p {
  border: 0;
  width: auto;
  margin: 0 0 14px;
  padding: 0;
}
#pb-comments .comment-author-info p label {
  display: block;
  width: auto;
  padding: 0;
  margin-bottom: 6px;
  background: none;
  text-align: left;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  color: #121212;
}
#pb-comments .comment-author-info p input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 11px 14px;
  font-size: 15px;
  color: #121212;
  background: #fff;
  border: 2px solid #121212;
  border-radius: .65rem;
  outline: none;
  box-shadow: none;
  transition: box-shadow .15s, transform .15s;
}
#pb-comments .comment-author-info p input:focus {
  box-shadow: 3px 3px 0 rgba(18, 18, 18, 1);
  transform: translate(-1px, -1px);
}
/* 验证码行：输入框右侧留出图片位 */
#pb-comments .comment-author-info p.captach .captach-text { padding-right: 116px; }
#pb-comments .comment-author-info p.captach img {
  position: absolute;
  right: 8px;
  bottom: 8px;
  height: 38px;
  width: auto;
  border: 1.5px solid rgba(18, 18, 18, .25);
  border-radius: 6px;
  cursor: pointer;
  background: #fff;
}
/* comment.css 的 .section-sigular-detail #comment-text 灰框规则在此作用域内失效 */
#pb-comments #comment-text {
  margin: 0;
  border: 0;
  padding: 0;
  line-height: normal;
}
#pb-comments #comment-text textarea {
  width: 100%;
  box-sizing: border-box;
  height: auto;
  min-height: 120px;
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #121212;
  background: #fff;
  border: 2px solid #121212;
  border-radius: .65rem;
  border-width: 2px;
  resize: vertical;
  outline: none;
  transition: box-shadow .15s, transform .15s;
}
#pb-comments #comment-text textarea:focus {
  box-shadow: 3px 3px 0 rgba(18, 18, 18, 1);
  transform: translate(-1px, -1px);
}
#pb-comments #commentform button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 12px 28px;
  background: #121212;
  color: #f9f506;
  border: 2px solid #121212;
  border-radius: .75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .95rem;
  font-weight: 900;
  cursor: pointer;
  transition: background .2s, color .2s;
}
#pb-comments #commentform button.btn:hover {
  background: #f9f506;
  color: #121212;
}
@media (max-width: 640px) {
  #pb-comments .comment-author-info { grid-template-columns: 1fr; }
}

/* 订单号复制按钮 */
.mp-copy-btn {
  border: none;
  background: none;
  padding: 0;
  font-size: 12px;
  cursor: pointer;
  color: #999;
  vertical-align: middle;
  margin-left: 4px;
}
.mp-copy-btn:hover { color: #2271b1; }
.mp-copy-btn.copied { color: #0a7d32; }
