/* ==========================================================================
   app.js / 各页面用到的组件样式（在 theme.css 之后加载）
   ========================================================================== */

/* 品牌字标（原站是图片 logo，这里用文字标保证零外链依赖） */
.brand-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.5px;
  background: linear-gradient(135deg, #16b597 0%, #0f9fd8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text b {
  font-size: 14px;
  font-weight: 600;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.header-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #16b597 0%, #0f9fd8 100%);
}

#header-user {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

#header-user .but {
  font-size: 12px;
  padding: .3em 1em;
}

/* 移动端侧滑菜单 */
.mobile-navbar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 76vw;
  max-width: 300px;
  z-index: 1002;
  background: var(--main-bg-color);
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  padding: 16px 0 30px;
  display: block;
}

.mobile-navbar-show .mobile-navbar {
  transform: translateX(0);
}

.mobile-nav-head {
  padding: 6px 18px 14px;
  font-size: 17px;
  font-weight: 700;
  color: var(--key-color);
}

.mobile-menus {
  margin: 0;
  padding: 0;
}

.mobile-menus>li>a {
  display: block;
  padding: 11px 18px;
  font-size: 15px;
  color: var(--key-color);
  font-weight: 600;
}

.mobile-menus .sub-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  background: none;
  padding: 0 0 6px;
  display: block;
  min-width: 0;
}

.mobile-menus .sub-menu li>a {
  padding: 8px 18px 8px 34px;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted-color);
}

.mobile-menus badge {
  transform: scale(.85);
}

.fixed-body {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, .45);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  display: block;
}

.mobile-navbar-show .fixed-body {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 993px) {

  .mobile-navbar,
  .fixed-body {
    display: none;
  }
}

/* 价格标签 */
.item-meta .tag-price,
.mini-meta .tag-price {
  color: var(--a5yy-roseo);
  font-weight: 700;
}

.item-meta .tag-price del,
.mini-meta .tag-price del {
  color: var(--muted-3-color);
  font-weight: 400;
  margin-left: 4px;
  font-size: .85em;
}

.tag-free {
  color: var(--a5yy-green);
  font-weight: 600;
}

.tag-vip {
  color: #b8860b;
  font-weight: 600;
}

.mini-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted-3-color);
  margin-top: 6px;
}

/* 无封面兜底块 */
.cover-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #f7a6c8 0%, #b0a4f5 100%);
}

.cover-fallback.sm {
  font-size: 14px;
}

/* 骨架屏 */
.skeleton .sk-thumb {
  width: 100%;
  padding-bottom: 70%;
  border-radius: var(--main-radius);
  background: var(--muted-bg-color);
}

.skeleton .sk-line {
  height: 13px;
  margin-top: 10px;
  border-radius: 4px;
  background: var(--muted-bg-color);
}

.skeleton .sk-line.short {
  width: 55%;
}

.skeleton {
  animation: sk-pulse 1.3s ease-in-out infinite;
}

@keyframes sk-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .55;
  }
}

/* 轻提示 */
.app-toast {
  position: fixed;
  left: 50%;
  bottom: 90px;
  transform: translate(-50%, 12px);
  z-index: 3000;
  max-width: 80vw;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  color: #fff;
  background: rgba(30, 30, 34, .92);
  opacity: 0;
  visibility: hidden;
  transition: .25s;
  text-align: center;
}

.app-toast.on {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.app-toast[data-type="error"] {
  background: rgba(220, 53, 69, .95);
}

.app-toast[data-type="success"] {
  background: rgba(23, 162, 84, .95);
}

/* 区块标题 */
.sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 10px;
}

.sec-title {
  position: relative;
  padding-left: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--key-color);
}

.sec-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 4px;
  border-radius: 4px;
  background: var(--theme-color);
}

.sec-more {
  font-size: 13px;
  color: var(--muted-2-color);
}

/* 表单 */
.form-field {
  margin-bottom: 14px;
}

.form-field label {
  display: block;
  font-size: 13px;
  color: var(--muted-color);
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 11px 13px;
  border-radius: 8px;
  border: 1px solid var(--main-border-color);
  background: var(--body-bg-color);
  color: var(--key-color);
  font-size: 15px;
  outline: none;
  transition: .2s;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--theme-color);
  background: var(--main-bg-color);
  box-shadow: 0 0 0 3px var(--focus-color-opacity1);
}

.btn-primary {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 50px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #16b597 0%, #0f9fd8 100%);
  cursor: pointer;
  transition: .2s;
}

.btn-primary:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.btn-primary:active {
  transform: scale(.99);
}

/* 固定头部占位：头部 fixed，内容整体下推 */
body.nav-fixed {
  padding-top: 68px;
}

@media (max-width: 992px) {
  body.nav-fixed {
    padding-top: 52px;
  }
}

/* 页面容器与卡片 */
.panel {
  background: var(--main-bg-color);
  border-radius: var(--main-radius);
  box-shadow: 0 0 10px var(--main-shadow);
  padding: 16px;
  margin-bottom: 15px;
}

.panel-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--key-color);
  margin: 0 0 12px;
}

.page-main {
  padding-top: 15px;
}

@media (max-width: 992px) {
  .page-main {
    padding-top: 10px;
  }
}

/* 标签页切换 */
.tabs {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--main-border-color);
  margin-bottom: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tabs a {
  padding: 10px 0;
  font-size: 15px;
  color: var(--muted-color);
  white-space: nowrap;
  position: relative;
}

.tabs a.on {
  color: var(--key-color);
  font-weight: 700;
}

.tabs a.on::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  border-radius: 3px;
  background: var(--theme-color);
}

/* 列表行 */
.row-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.row-item+.row-item {
  border-top: 1px solid var(--muted-border-color);
}

.row-item .r-main {
  flex: 1;
  min-width: 0;
}

.row-item .r-title {
  font-size: 14px;
  color: var(--key-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.row-item .r-sub {
  font-size: 12px;
  color: var(--muted-3-color);
  margin-top: 4px;
}

.row-item .r-right {
  flex: none;
  text-align: right;
  font-size: 13px;
}

.status-paid {
  color: var(--a5yy-green);
}

.status-pending {
  color: #ff9800;
}

.status-closed {
  color: var(--muted-3-color);
}

/* ---------------- 栅格补充 ---------------- */
.col-xs-6 {
  width: 50%;
  padding: 5px;
}

@media (min-width: 993px) {
  .col-xs-6 {
    width: 25%;
  }
}

/* 缩略图右上角播放角标（视频类资源） */
.item-thumbnail .thumb-play {
  position: absolute;
  top: 0;
  right: 8px;
  margin-top: 6px;
  z-index: 3;
  color: #fff;
  opacity: .85;
  line-height: 1;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .4));
}

.item-thumbnail .thumb-play .icon {
  width: 20px;
  height: 20px;
}

/* 卡片底部元信息：与原站一致单行不换行 */
.posts-item.card .item-meta {
  white-space: nowrap;
  font-size: 11px;
}

.posts-item.card .item-meta item {
  font-size: 11px;
  margin-right: 6px;
}

.posts-item.card .item-meta .meta-right item:last-child {
  margin-right: 0;
}

.posts-item.card .item-meta .icon {
  width: 11px;
  height: 11px;
  margin-right: 2px;
}

.posts-item.card .item-meta .icon-circle::before {
  margin: 0 .35em 0 0;
}

/* 卡片标签行：会员专属为金色，付费/免费为橙色，分类为蓝色 */
.posts-item.card .item-tags {
  display: flex;
  gap: 5px;
  align-items: center;
}

.posts-item.card .item-tags a {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.posts-item.card .item-tags .img-icon,
.posts-item.card .item-tags .icon {
  width: 1em;
  height: 1em;
}

/* ---------------- 底部 tabbar（彩色图标） ---------------- */
@media (max-width: 992px) {
  .footer-tabbar .tabbar-item {
    gap: 0;
  }

  .footer-tabbar icon {
    display: block;
    line-height: 1;
  }

  .footer-tabbar .icon {
    width: 26px;
    height: 26px;
  }

  /* 第一格：默认「首页」，滚动后切「返回顶部」 */
  .tabbar-ontop {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tabbar-ontop>a {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .25s, transform .25s;
  }

  .tabbar-ontop>.ontop {
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
  }

  .tabbar-ontop.show-ontop>.ontop {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .tabbar-ontop.show-ontop>.tabbar-home {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
  }
}

/* ---------------- 页脚（移动端） ---------------- */
.footer {
  margin-top: 10px;
}

.footer .container-footer {
  text-align: center;
}

.footer .fcode-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 2;
}

.footer .fcode-links a {
  color: var(--muted-color);
}

.footer .footer-muted {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted-2-color);
}

.footer .beian {
  margin-top: 4px;
}

.footer .beian a {
  color: inherit;
}

.footer .beian a+a {
  margin-left: 12px;
}

@media (max-width: 992px) {
  .footer {
    padding: 14px 10px 6px;
  }
}

/* ---------------- 分类页头部 ----------------
   原站移动端不显示封面大图，而是一张白卡：图标 + 分类名 + 主题色下划线 + 描述 */
.cat-head {
  background: var(--main-bg-color);
  border-radius: var(--main-radius);
  box-shadow: 0 0 10px var(--main-shadow);
  padding: 15px;
  margin-bottom: 12px;
}

.cat-head .cat-name {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--key-color);
}

.cat-head .cat-name::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 40px;
  height: 3px;
  border-radius: 5px;
  background: var(--theme-color);
  box-shadow: 1px 1px 3px -1px var(--theme-color);
}

.cat-head .cat-name .icon {
  width: 22px;
  height: 22px;
  color: var(--key-color);
  flex: none;
}

.cat-head .cat-count {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted-3-color);
}

.cat-head .cat-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted-color);
  margin: 0;
}

/* ---------------- 文章详情 ---------------- */
.post-metas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: var(--muted-3-color);
}

.post-metas .icon {
  margin-right: 3px;
}

.post-metas .owned {
  color: var(--a5yy-green);
  font-weight: 600;
}

.locked-hint {
  text-align: center;
  color: var(--muted-2-color);
  font-size: 14px;
  padding: 34px 16px;
}

.locked-hint .icon {
  display: block;
  margin: 0 auto 10px;
  width: 30px;
  height: 30px;
  color: var(--muted-3-color);
}

.download-box .dl-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 8px 0;
  font-size: 14px;
  word-break: break-all;
}

.download-box .dl-row>span {
  flex: none;
  width: 68px;
  color: var(--muted-color);
  font-size: 13px;
}

.download-box code {
  background: var(--muted-bg-color);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 1px;
}

.download-box .dl-tip {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed var(--main-border-color);
  font-size: 12px;
  color: var(--a5yy-green);
}

/* ---------------- 支付面板 ---------------- */
#pay-sheet {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
}

#pay-sheet.on {
  visibility: visible;
}

.sheet-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  opacity: 0;
  transition: .25s;
}

#pay-sheet.on .sheet-mask {
  opacity: 1;
}

.sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--main-bg-color);
  border-radius: 16px 16px 0 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  transform: translateY(100%);
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  max-height: 88vh;
  overflow-y: auto;
}

#pay-sheet.on .sheet {
  transform: translateY(0);
}

@media (min-width: 640px) {
  .sheet {
    left: 50%;
    right: auto;
    bottom: auto;
    top: 50%;
    width: 420px;
    border-radius: 14px;
    transform: translate(-50%, -46%) scale(.96);
    opacity: 0;
    transition: .25s;
  }

  #pay-sheet.on .sheet {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.sheet-head {
  position: relative;
  padding: 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--key-color);
  border-bottom: 1px solid var(--main-border-color);
}

.sheet-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  line-height: 1;
  color: var(--muted-3-color);
  background: none;
  border: none;
  cursor: pointer;
}

.sheet-body {
  padding: 16px;
}

.sheet-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  font-size: 14px;
}

.sheet-row>span {
  flex: none;
  color: var(--muted-color);
  font-size: 13px;
}

.sheet-row>b {
  text-align: right;
  color: var(--key-color);
  font-weight: 600;
  word-break: break-all;
}

.sheet-row code {
  font-size: 12px;
  color: var(--muted-2-color);
}

.sheet-row.big {
  border-top: 1px dashed var(--main-border-color);
  margin-top: 4px;
  padding-top: 14px;
}

.sheet-row .amount {
  font-size: 24px;
  font-weight: 800;
  color: var(--a5yy-roseo);
}

.pay-methods {
  margin: 14px 0 18px;
}

.pay-methods .pm {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  border: 1px solid var(--main-border-color);
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: .2s;
}

.pay-methods .pm+.pm {
  margin-top: 8px;
}

.pay-methods .pm input {
  display: none;
}

.pay-methods .pm i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--muted-3-color);
  flex: none;
  position: relative;
  transition: .2s;
}

.pay-methods .pm.on {
  border-color: var(--theme-color);
  background: var(--focus-color-opacity1);
}

.pay-methods .pm.on i {
  border-color: var(--theme-color);
  background: var(--theme-color);
  box-shadow: inset 0 0 0 3px var(--main-bg-color);
}

.sheet-tip {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted-3-color);
  text-align: center;
}

/* ---------------- 会员套餐页 ---------------- */
.vip-hero {
  border-radius: var(--main-radius);
  padding: 22px 18px;
  color: #fff;
  background: linear-gradient(135deg, #14343a 0%, #106b6a 55%, #16b597 140%);
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.vip-hero h1 {
  margin: 0 0 6px;
  font-size: 21px;
  font-weight: 800;
}

.vip-hero p {
  margin: 0;
  font-size: 13px;
  opacity: .85;
}

.vip-hero .vip-state {
  margin-top: 12px;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
  display: inline-block;
}

.plan-benefits {
  margin: 14px 0 0;
  padding: 0;
  font-size: 13px;
  color: var(--muted-color);
}

.plan-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
}

.plan-benefits .icon {
  color: var(--a5yy-green);
  flex: none;
  margin-top: 3px;
}

/* ---------------- 消息中心 ---------------- */
.msg-nav {
  display: flex;
  justify-content: space-around;
  background: var(--main-bg-color);
  border-radius: var(--main-radius);
  box-shadow: 0 0 10px var(--main-shadow);
  padding: 14px 6px 12px;
  margin-bottom: 12px;
}

.msg-nav-item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--muted-color);
}

.msg-nav-item img {
  width: 42px;
  height: 42px;
}

.msg-nav-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.msg-nav-item.on {
  color: var(--theme-color);
  font-weight: 600;
}

.msg-empty {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}

.msg-empty .icon {
  width: 46px;
  height: 46px;
  opacity: .55;
}

.msg-empty-buts {
  margin-top: 6px;
}

/* ---------------- 用户中心（结构对齐原站） ---------------- */
.author-header {
  position: relative;
  border-radius: var(--main-radius);
  overflow: hidden;
  box-shadow: 0 0 10px var(--main-shadow);
  background: var(--main-bg-color);
  margin-bottom: 12px;
}

.author-header .page-cover {
  position: relative;
  height: 130px;
  min-height: 0;
  padding: 0;
  display: block;
}

.author-header .page-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-header .linear-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .05));
}

.author-header .header-content {
  position: relative;
  padding: 0 15px 15px;
  margin-top: -34px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.author-header .header-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--main-bg-color);
  background: var(--muted-bg-color);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-header .header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-header .avatar-txt {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  background: var(--brand-grad);
}

.author-header .display-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--key-color);
  padding-bottom: 6px;
}

.author-header .vip-flag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 12px;
  color: #866127;
  background: linear-gradient(25deg, #eabe7b 10%, #f5e3c7 70%, #edc788 100%);
}

/* 金属质感会员条 */
.payvip-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  margin-bottom: 12px;
  border-radius: var(--main-radius);
  font-size: 15px;
  color: #ece0e0;
  background: linear-gradient(300deg, #4c4d51, #2a2a31 15%, #85858a 40%, #393a3c 60%, #393838 80%, #5e5f62 100%);
}

.payvip-bar .bar-arrow {
  margin-left: auto;
  opacity: .7;
}

.balance-card {
  cursor: pointer;
  margin-bottom: 12px;
}

.icon-but-card {
  padding: 12px;
  margin-bottom: 12px;
}

.icon-but-title {
  font-size: 14px;
  color: var(--key-color);
  margin-bottom: 6px;
}

.icon-but-box {
  display: flex;
  text-align: center;
}

.icon-but-box>item {
  flex: 1;
  min-width: 0;
  padding: 8px 4px;
  cursor: pointer;
  display: block;
}

.icon-but-box .icon {
  width: 28px;
  height: 28px;
}

.icon-but-box>item>div {
  font-size: 12px;
  color: var(--muted-color);
  margin-top: 4px;
}

.icon-but-box>item>b {
  display: block;
  font-size: 12px;
  color: var(--theme-color);
}

.user-menu {
  margin-top: 4px;
}

.u-empty {
  text-align: center;
  padding: 40px 0;
  color: var(--muted-3-color);
  font-size: 14px;
}

/* ---------------- 登录页 ---------------- */
.auth-wrap {
  max-width: 400px;
  margin: 0 auto;
}

.auth-switch {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted-color);
}

.auth-switch a {
  color: var(--theme-color);
  font-weight: 600;
}

.auth-hint {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--body-bg-color);
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted-2-color);
}
