/* 会员漏斗（/vip · /cart）：与 checkout 共用栅格与色板 */
:root {
  --vf-accent: #ff5745;
  --vf-accent-soft: rgba(255, 87, 69, 0.1);
  --vf-ink: #1a1a1a;
  --vf-muted: #6a6a6a;
  --vf-line: #e5e6ea;
  --vf-surface: #fff;
  --vf-canvas: #f2f3f5;
  --vf-ok: #34968e;
  --vf-radius: 14px;
  --vf-ease: 0.18s ease;
}

.nice-dark-mode {
  --vf-ink: #ececef;
  --vf-muted: #9a9aa0;
  --vf-line: #33343a;
  --vf-surface: #232327;
  --vf-canvas: #19191d;
  --vf-accent-soft: rgba(255, 87, 69, 0.18);
}

/* 与 app.lib.css（checkout）保持同一断点宽度，避免跨页内容栏跳动 */
@media (min-width: 1400px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1280px;
  }
}

.vf-page {
  background: var(--vf-canvas);
}

/* Hero：背景全宽，文字随 .container 与 header/footer 共边 */
.vf-hero {
  position: relative;
  background: var(--vf-surface);
  border-bottom: 1px solid var(--vf-line);
  color: var(--vf-ink);
  padding: 2.5rem 0 2.25rem;
  overflow: hidden;
}

/* 极淡的品牌色光晕，避免大面积色块 */
.vf-hero::after {
  content: "";
  position: absolute;
  top: -18rem;
  right: -10rem;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, var(--vf-accent) 0%, transparent 68%);
  opacity: 0.13;
  pointer-events: none;
}

.nice-dark-mode .vf-hero::after {
  opacity: 0.2;
}

@media (min-width: 768px) {
  .vf-hero {
    padding: 3.75rem 0 3.25rem;
  }
}

.vf-hero .container {
  position: relative;
  z-index: 1;
}

.vf-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.875rem;
  padding: 0.25rem 0.6875rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--vf-accent);
  background: var(--vf-accent-soft);
  border-radius: 999px;
}

.vf-hero-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  color: var(--vf-ink);
}

@media (min-width: 768px) {
  .vf-hero-title {
    font-size: 2.5rem;
  }
}

.vf-hero-sub {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--vf-muted);
  max-width: 40em;
}

.vf-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--vf-muted);
}

.vf-hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.vf-hero-trust .iconfont {
  font-size: 0.9375rem;
  color: var(--vf-ok);
}

/* 图例：置于对比表上方，右对齐 */
.vf-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  margin: 0 0 0.875rem;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--vf-muted);
}

@media (min-width: 768px) {
  .vf-legend {
    justify-content: flex-end;
  }
}

.vf-legend li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.vf-legend .iconfont {
  font-size: 1rem;
}

/* 权益对比表：CSS Grid，保证推荐列背景整列贯通 */
.vf-compare {
  position: relative;
  background: var(--vf-surface);
  border: 1px solid var(--vf-line);
  border-radius: 18px;
  overflow: hidden;
}

.vf-grid {
  --vf-col-label: 37%;
  --vf-col-plan: 21%;
  position: relative;
  display: grid;
  grid-template-columns: var(--vf-col-label) repeat(3, var(--vf-col-plan));
}

@media (min-width: 768px) {
  .vf-grid {
    --vf-col-label: 46%;
    --vf-col-plan: 18%;
  }
}

/* 推荐列：一条从表头贯穿到价格行的连续色带 */
.vf-col-glow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--vf-col-label) + var(--vf-col-plan));
  width: var(--vf-col-plan);
  background: var(--vf-accent-soft);
  border-left: 1px solid rgba(255, 87, 69, 0.16);
  border-right: 1px solid rgba(255, 87, 69, 0.16);
  pointer-events: none;
  z-index: 0;
}

.vf-col-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  right: -1px;
  height: 3px;
  background: var(--vf-accent);
}

.vf-trow {
  display: contents;
}

.vf-cell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1875rem;
  min-width: 0;
  padding: 0.8125rem 0.375rem;
  border-top: 1px solid var(--vf-line);
  color: var(--vf-ink);
  font-size: 0.8125rem;
  line-height: 1.45;
  text-align: center;
  transition: background var(--vf-ease);
}

@media (min-width: 768px) {
  .vf-cell {
    padding: 0.9375rem 0.75rem;
    font-size: 0.9375rem;
  }
}

.vf-cell-label {
  align-items: flex-start;
  text-align: left;
  padding-left: 0.875rem;
}

@media (min-width: 768px) {
  .vf-cell-label {
    padding-left: 1.25rem;
  }
}

.vf-trow:hover .vf-cell {
  background: rgba(0, 0, 0, 0.025);
}

.nice-dark-mode .vf-trow:hover .vf-cell {
  background: rgba(255, 255, 255, 0.04);
}

/* 表头：底部对齐，使三档的套餐名落在同一基线 */
.vf-trow-head .vf-cell {
  border-top: 0;
  justify-content: flex-end;
  padding-top: 1.5rem;
  padding-bottom: 1.125rem;
  font-weight: 600;
}

.vf-trow-head:hover .vf-cell {
  background: transparent;
}

.vf-plan-tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--vf-muted);
}

.vf-pick {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  font-size: 0.6875rem;
  line-height: 1.6;
  font-weight: 500;
  color: #fff;
  background: var(--vf-accent);
  border-radius: 999px;
  white-space: nowrap;
}

.vf-yes {
  color: var(--vf-ok);
  font-size: 1.0625rem;
}

.vf-no {
  color: #c9ccd3;
  font-size: 1.0625rem;
}

.nice-dark-mode .vf-no {
  color: #4a4b52;
}

.vf-tag {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  color: var(--vf-muted);
  background: var(--vf-canvas);
  border-radius: 999px;
}

.nice-dark-mode .vf-tag {
  background: rgba(255, 255, 255, 0.06);
}

.vf-note {
  border-bottom: 1px dashed var(--vf-line);
  cursor: help;
}

@media (max-width: 767.98px) {
  .vf-tag {
    font-size: 0.6875rem;
    padding: 0.0625rem 0.3125rem;
  }
}

/* 价格行 */
.vf-trow-price .vf-cell {
  border-top-width: 2px;
  padding-top: 1.25rem;
  padding-bottom: 1.375rem;
}

.vf-trow-price:hover .vf-cell {
  background: transparent;
}

.vf-price {
  display: block;
  color: var(--vf-ink);
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.vf-price .vf-price-num {
  font-size: 1.375rem;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .vf-price .vf-price-num {
    font-size: 1.625rem;
  }
}

.vf-price .vf-price-cur {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--vf-muted);
}

.vf-price-unit {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--vf-muted);
}

.vf-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 10rem;
  margin-top: 0.625rem;
  padding: 0.4375rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 999px;
  border: 1px solid var(--vf-accent);
  color: var(--vf-accent);
  background: transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--vf-ease), color var(--vf-ease);
}

@media (max-width: 767.98px) {
  .vf-cta {
    margin-top: 0.5rem;
    padding: 0.3125rem 0.375rem;
    font-size: 0.6875rem;
  }

  .vf-hide-sm {
    display: none !important;
  }
}

.vf-cta:hover {
  background: var(--vf-accent);
  color: #fff;
}

.vf-cta-solid {
  background: var(--vf-accent);
  border-color: var(--vf-accent);
  color: #fff;
}

.vf-cta-solid:hover {
  opacity: 0.9;
  color: #fff;
}

.vf-cta.is-current {
  border-color: var(--vf-line);
  color: var(--vf-muted);
  pointer-events: none;
}

/* 套餐卡（/cart） */
.vf-plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .vf-plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .vf-plans.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .vf-plans.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.vf-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem 1.25rem;
  background: var(--vf-surface);
  border: 1px solid var(--vf-line);
  border-radius: var(--vf-radius);
  transition: border-color var(--vf-ease);
}

.vf-plan:hover,
.vf-plan.is-selected {
  border-color: var(--vf-accent);
}

.vf-plan.is-featured {
  border-color: var(--vf-accent);
}

.vf-plan-badge {
  position: absolute;
  top: -0.625rem;
  left: 1.25rem;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  color: #fff;
  background: var(--vf-accent);
  border-radius: 999px;
}

.vf-plan-name {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--vf-ink);
}

.vf-plan-lev {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--vf-accent);
  background: var(--vf-accent-soft);
  border-radius: 999px;
  padding: 0.0625rem 0.4375rem;
}

.vf-plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 1rem;
  color: var(--vf-ink);
}

.vf-plan-cur {
  font-size: 1rem;
  color: var(--vf-muted);
}

.vf-plan-num {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
}

.vf-plan-unit {
  font-size: 0.875rem;
  color: var(--vf-muted);
}

.vf-plan-sub {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--vf-muted);
  min-height: 1.25rem;
}

.vf-plan-tips {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.1875rem 0.5rem;
  font-size: 0.75rem;
  color: var(--vf-accent);
  background: var(--vf-accent-soft);
  border-radius: 999px;
}

.vf-plan-benefits {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--vf-muted);
}

.vf-plan-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.4375rem;
  padding: 0.25rem 0;
}

.vf-plan-benefits .iconfont {
  font-size: 0.875rem;
  color: var(--vf-ok);
  line-height: 1.5;
}

.vf-plan-foot {
  margin-top: auto;
  padding-top: 1.25rem;
}

.vf-btn {
  display: block;
  width: 100%;
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
  text-align: center;
  border-radius: 10px;
  border: 1px solid var(--vf-accent);
  background: var(--vf-accent);
  color: #fff;
  text-decoration: none;
  transition: opacity var(--vf-ease);
}

.vf-btn:hover {
  opacity: 0.9;
  color: #fff;
}

.vf-btn-ghost {
  background: transparent;
  color: var(--vf-accent);
}

.vf-btn-ghost:hover {
  background: var(--vf-accent);
  color: #fff;
  opacity: 1;
}

.vf-btn.is-disabled {
  border-color: var(--vf-line);
  background: var(--vf-canvas);
  color: var(--vf-muted);
  pointer-events: none;
}

/* 页头与辅助链接 */
.vf-section-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--vf-ink);
}

.vf-section-sub {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  color: var(--vf-muted);
}

.vf-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
}

.vf-links a {
  color: var(--vf-muted);
  text-decoration: none;
}

.vf-links a:hover {
  color: var(--vf-accent);
}

.vf-status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.8125rem;
  color: var(--vf-muted);
  background: var(--vf-surface);
  border: 1px solid var(--vf-line);
  border-radius: 999px;
}

.vf-status.is-warn {
  color: #9a6700;
  background: #fff8e6;
  border-color: #f0d78c;
}

.vf-status.is-danger {
  color: #a33b2b;
  background: var(--vf-accent-soft);
  border-color: rgba(255, 87, 69, 0.35);
}

.nice-dark-mode .vf-status.is-warn {
  color: #e6c35c;
  background: rgba(240, 215, 140, 0.12);
  border-color: rgba(240, 215, 140, 0.28);
}

.nice-dark-mode .vf-status.is-danger {
  color: #ff8f82;
}

.vf-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin: 0 0 1.25rem;
  padding: 0.875rem 1rem;
  border-radius: var(--vf-radius);
  border: 1px solid var(--vf-line);
  background: var(--vf-surface);
  color: var(--vf-ink);
  font-size: 0.875rem;
}

.vf-banner.is-warn {
  border-color: #f0d78c;
  background: #fff8e6;
}

.vf-banner.is-danger {
  border-color: rgba(255, 87, 69, 0.35);
  background: var(--vf-accent-soft);
}

.nice-dark-mode .vf-banner.is-warn {
  background: rgba(240, 215, 140, 0.1);
  border-color: rgba(240, 215, 140, 0.28);
}

.vf-banner-title {
  font-weight: 600;
  margin: 0 0 0.125rem;
}

.vf-banner-text {
  margin: 0;
  color: var(--vf-muted);
  font-size: 0.8125rem;
}

.vf-banner.is-warn .vf-banner-text,
.vf-banner.is-danger .vf-banner-text {
  color: inherit;
  opacity: 0.85;
}

.vf-banner-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 0.4375rem 0.875rem;
  font-size: 0.8125rem;
  border-radius: 999px;
  background: var(--vf-accent);
  color: #fff;
  text-decoration: none;
}

.vf-banner-cta:hover {
  opacity: 0.9;
  color: #fff;
}

/* 额度说明表 */
.vf-sheet {
  background: var(--vf-surface);
  border: 1px solid var(--vf-line);
  border-radius: var(--vf-radius);
  padding: 1.25rem 1rem;
}

@media (min-width: 768px) {
  .vf-sheet {
    padding: 1.5rem 1.5rem;
  }
}

.vf-callout {
  margin: 0 0 1rem;
  padding: 0.75rem 0.875rem;
  border-radius: 10px;
  background: var(--vf-accent-soft);
  color: var(--vf-ink);
  font-size: 0.875rem;
}

.vf-rules {
  margin: 0;
  padding-left: 1.125rem;
  color: var(--vf-muted);
  font-size: 0.875rem;
}

.vf-rules li + li {
  margin-top: 0.5rem;
}

.vf-table-wrap {
  margin-top: 1.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.vf-table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  font-size: 0.875rem;
  color: var(--vf-ink);
}

.vf-table th,
.vf-table td {
  padding: 0.75rem 0.625rem;
  border-bottom: 1px solid var(--vf-line);
  text-align: center;
  white-space: nowrap;
}

.vf-table th:first-child,
.vf-table td:first-child {
  text-align: left;
}

.vf-table thead th {
  font-weight: 600;
  background: var(--vf-canvas);
}

.vf-table tbody tr.is-current {
  background: var(--vf-accent-soft);
}

.vf-table .vf-muted {
  color: var(--vf-muted);
  font-size: 0.75rem;
  font-weight: 400;
}

.vf-quota-inline {
  display: block;
  font-size: 0.75rem;
  color: var(--vf-muted);
  line-height: 1.35;
}

.vf-quota-inline a {
  color: var(--vf-accent);
  text-decoration: none;
}

/* 移动端 sticky 底栏 */
:root {
  --vf-safe-bottom: env(safe-area-inset-bottom, 0px);
}

@media (max-width: 991.98px) {
  .vf-page.has-sticky {
    padding-bottom: calc(4.75rem + var(--vf-safe-bottom));
  }

  /* 底栏为 fixed，需在页面级留出避让高度，避免压住页脚 */
  body.vf-has-sticky {
    padding-bottom: calc(4.75rem + var(--vf-safe-bottom));
  }
}

.vf-sticky-bar {
  display: none;
}

@media (max-width: 991.98px) {
  .vf-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: block;
    padding: 0.6rem 0 calc(0.6rem + var(--vf-safe-bottom));
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--vf-line);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .nice-dark-mode .vf-sticky-bar {
    background: rgba(28, 28, 32, 0.97);
  }
}

.vf-sticky-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vf-sticky-meta {
  flex: 1;
  min-width: 0;
}

.vf-sticky-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--vf-muted);
  line-height: 1.2;
}

.vf-sticky-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vf-ink);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vf-sticky-value em {
  font-style: normal;
  color: var(--vf-accent);
}

.vf-sticky-cta {
  flex: 0 0 auto;
  min-width: 7.25rem;
  min-height: 2.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: var(--vf-accent);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
}

.vf-sticky-cta:hover {
  opacity: 0.9;
  color: #fff;
}

/* ============================================================
   会员中心 /m/center.html
   ============================================================ */

.mc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 1.5rem 0 0;
}

.mc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.625rem 1.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--vf-accent);
  background: var(--vf-accent);
  color: #fff;
  text-decoration: none;
  transition: opacity var(--vf-ease), background var(--vf-ease),
    color var(--vf-ease);
}

.mc-btn:hover {
  opacity: 0.9;
  color: #fff;
}

.mc-btn-ghost {
  background: transparent;
  color: var(--vf-accent);
}

.mc-btn-ghost:hover {
  background: var(--vf-accent);
  color: #fff;
  opacity: 1;
}

.mc-btn-quiet {
  border-color: var(--vf-line);
  background: transparent;
  color: var(--vf-muted);
  font-weight: 500;
}

.mc-btn-quiet:hover {
  border-color: var(--vf-accent);
  color: var(--vf-accent);
  background: transparent;
  opacity: 1;
}

.mc-hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 1.25rem;
  color: var(--vf-ink);
}

.mc-hero-price .mc-price-cur {
  font-size: 0.9375rem;
  color: var(--vf-muted);
}

.mc-hero-price .mc-price-num {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.mc-hero-price .mc-price-unit {
  font-size: 0.8125rem;
  color: var(--vf-muted);
}

/* 会员状态卡 */
.mc-status-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1.25rem 1.25rem;
  margin-bottom: 1.5rem;
  background: var(--vf-surface);
  border: 1px solid var(--vf-line);
  border-radius: var(--vf-radius);
}

@media (min-width: 768px) {
  .mc-status-card {
    padding: 1.375rem 1.5rem;
  }
}

.mc-status-main {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex: 1 1 14rem;
  min-width: 0;
}

.mc-level-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: var(--vf-accent-soft);
  color: var(--vf-accent);
  font-size: 1.0625rem;
  font-weight: 700;
}

.mc-status-name {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--vf-ink);
  line-height: 1.3;
}

.mc-status-meta {
  margin: 0.1875rem 0 0;
  font-size: 0.8125rem;
  color: var(--vf-muted);
}

.mc-status-stats {
  display: flex;
  gap: 1.75rem;
  flex: 0 1 auto;
}

.mc-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--vf-muted);
  line-height: 1.3;
}

.mc-stat-value {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--vf-ink);
  line-height: 1.3;
}

.mc-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-left: auto;
}

.mc-status-actions .mc-btn {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}

/* 中屏按钮换行后与卡片内容左对齐，避免右侧孤立 */
@media (max-width: 767.98px) {
  .mc-status-actions {
    margin-left: 0;
  }
}

/* 小屏：三段内容改为竖向分层，额度独立成块，操作按钮按主次分行 */
@media (max-width: 575.98px) {
  .mc-status-card {
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.125rem 1.125rem;
  }

  .mc-status-main {
    flex: 1 1 100%;
    padding-bottom: 0.875rem;
  }

  .mc-status-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    flex: 1 1 100%;
    padding: 0.75rem 0.875rem;
    background: var(--vf-canvas);
    border-radius: 10px;
  }

  .mc-status-stats > div + div {
    padding-left: 0.875rem;
    border-left: 1px solid var(--vf-line);
  }

  .mc-status-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
    margin: 0.875rem 0 0;
  }

  .mc-status-actions .mc-btn {
    min-height: 2.75rem;
    padding: 0.5rem 0.75rem;
  }

  /* 按钮数为奇数时首个为主操作，占满整行；偶数时两两等宽并排 */
  .mc-status-actions .mc-btn:first-child:nth-last-child(odd) {
    grid-column: 1 / -1;
  }
}

/* 价值三要点 */
.mc-value {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .mc-value {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.mc-value-item {
  display: flex;
  gap: 0.75rem;
  padding: 1.125rem 1.125rem;
  background: var(--vf-surface);
  border: 1px solid var(--vf-line);
  border-radius: var(--vf-radius);
}

.mc-value-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: var(--vf-accent-soft);
  color: var(--vf-accent);
  font-size: 1.0625rem;
}

.mc-value-title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--vf-ink);
}

.mc-value-text {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--vf-muted);
}

.mc-value-text a {
  color: var(--vf-accent);
  text-decoration: none;
}

/* 推荐档横条 */
.mc-plan-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1.25rem 1.25rem;
  margin-bottom: 1.75rem;
  background: var(--vf-surface);
  border: 1px solid var(--vf-accent);
  border-radius: var(--vf-radius);
}

@media (min-width: 768px) {
  .mc-plan-strip {
    padding: 1.5rem 1.75rem;
  }
}

.mc-plan-strip-main {
  flex: 1 1 16rem;
  min-width: 0;
}

.mc-plan-strip-badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.125rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #fff;
  background: var(--vf-accent);
  border-radius: 999px;
}

.mc-plan-strip-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--vf-ink);
}

.mc-plan-strip-sub {
  margin: 0.3125rem 0 0;
  font-size: 0.8125rem;
  color: var(--vf-muted);
}

.mc-plan-strip-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  color: var(--vf-ink);
}

.mc-plan-strip-price .mc-price-num {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}

/* 中屏：CTA 换行后靠右，与价格同侧，避免右半边空出一块 */
@media (min-width: 576px) and (max-width: 767.98px) {
  .mc-plan-strip .mc-btn:first-of-type {
    margin-left: auto;
  }
}

/* 小屏：横条改单列，价格独立成行，两个 CTA 拉满宽度 */
@media (max-width: 575.98px) {
  .mc-plan-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
    padding: 1.125rem 1.125rem 1.25rem;
  }

  .mc-plan-strip-price {
    margin-bottom: 0.125rem;
  }

  .mc-plan-strip .mc-btn {
    width: 100%;
    min-height: 2.75rem;
  }
}

/* 快捷入口 */
.mc-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .mc-quick {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.mc-quick-item {
  display: flex;
  align-items: center;
  gap: 0.6875rem;
  padding: 0.9375rem 1rem;
  background: var(--vf-surface);
  border: 1px solid var(--vf-line);
  border-radius: var(--vf-radius);
  text-decoration: none;
  transition: border-color var(--vf-ease);
}

.mc-quick-item:hover {
  border-color: var(--vf-accent);
}

.mc-quick-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9px;
  background: var(--vf-canvas);
  color: var(--vf-accent);
  font-size: 1rem;
}

.nice-dark-mode .mc-quick-icon {
  background: rgba(255, 255, 255, 0.06);
}

.mc-quick-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vf-ink);
  line-height: 1.35;
}

.mc-quick-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--vf-muted);
  line-height: 1.35;
}

/* 区块标题 */
.mc-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.875rem;
}

.mc-section-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--vf-ink);
}

.mc-section-sub {
  margin: 0.1875rem 0 0;
  font-size: 0.8125rem;
  color: var(--vf-muted);
}

.mc-section-more {
  flex: 0 0 auto;
  font-size: 0.8125rem;
  color: var(--vf-muted);
  text-decoration: none;
  white-space: nowrap;
}

.mc-section-more:hover {
  color: var(--vf-accent);
}

.mc-section {
  margin-bottom: 2rem;
}

/* 资源卡上的锁标记 */
.mc-locked .media-content {
  filter: saturate(0.75);
}

.mc-lock-badge {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.1875rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}

/* 解锁面板 */
.mc-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.55);
}

.mc-modal.is-open {
  display: flex;
}

.mc-modal-card {
  width: 100%;
  max-width: 24rem;
  padding: 1.5rem 1.375rem 1.375rem;
  background: var(--vf-surface);
  border-radius: 18px;
  text-align: center;
}

.mc-modal-thumb {
  width: 100%;
  height: 9rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  background-color: var(--vf-canvas);
  background-size: cover;
  background-position: center;
}

.mc-modal-tier {
  display: inline-block;
  margin-bottom: 0.625rem;
  padding: 0.125rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--vf-accent);
  background: var(--vf-accent-soft);
  border-radius: 999px;
}

.mc-modal-title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--vf-ink);
  line-height: 1.4;
}

.mc-modal-text {
  margin: 0.5rem 0 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--vf-muted);
}

.mc-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mc-modal-actions .mc-btn {
  width: 100%;
}

.mc-modal-close {
  margin-top: 0.75rem;
  background: none;
  border: 0;
  padding: 0;
  font-size: 0.8125rem;
  color: var(--vf-muted);
  cursor: pointer;
}

.mc-modal-close:hover {
  color: var(--vf-accent);
}

/* ============================================================
   公告中心 /uc/news.html · /uc/post/{id}
   ============================================================ */

.uc-hero-back {
  color: inherit;
  text-decoration: none;
}

.uc-hero-back:hover {
  color: var(--vf-accent);
}

.uc-news-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.uc-news-item {
  background: var(--vf-surface);
  border: 1px solid var(--vf-line);
  border-radius: var(--vf-radius);
  transition: border-color var(--vf-ease);
}

.uc-news-item:hover {
  border-color: var(--vf-accent);
}

.uc-news-link {
  display: block;
  padding: 1.125rem 1.25rem;
  text-decoration: none;
  color: inherit;
}

@media (min-width: 768px) {
  .uc-news-link {
    padding: 1.25rem 1.5rem;
  }
}

.uc-news-title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--vf-ink);
  line-height: 1.4;
}

.uc-news-summary {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--vf-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.uc-news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--vf-muted);
}

.uc-news-meta .iconfont {
  font-size: 0.8125rem;
  margin-right: 0.125rem;
}

.uc-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.uc-pager-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.375rem 1rem;
  border: 1px solid var(--vf-line);
  border-radius: 999px;
  background: var(--vf-surface);
  color: var(--vf-ink);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
}

.uc-pager-btn:hover {
  border-color: var(--vf-accent);
  color: var(--vf-accent);
}

.uc-pager-status {
  font-size: 0.8125rem;
  color: var(--vf-muted);
}

.uc-related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--vf-line);
}

.uc-related-stack {
  flex-direction: column;
  margin-top: 0.75rem;
  padding-top: 0;
  border-top: 0;
}

.uc-related-item {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--vf-line);
  border-radius: 999px;
  background: var(--vf-surface);
  color: var(--vf-muted);
  font-size: 0.8125rem;
  text-decoration: none;
}

.uc-related-item:hover {
  border-color: var(--vf-accent);
  color: var(--vf-accent);
}

.uc-empty {
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.uc-empty-title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--vf-ink);
}

.uc-empty-text {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--vf-muted);
}

/* 详情正文 */
.uc-post-body {
  padding: 1.25rem 1.25rem 1.5rem;
}

@media (min-width: 768px) {
  .uc-post-body {
    padding: 1.75rem 1.75rem 1.75rem;
  }
}

.uc-prose {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--vf-ink);
  word-break: break-word;
}

.uc-prose > *:first-child {
  margin-top: 0;
}

.uc-prose > *:last-child {
  margin-bottom: 0;
}

.uc-prose p {
  margin: 0 0 1rem;
}

.uc-prose a {
  color: var(--vf-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.uc-prose strong {
  font-weight: 700;
}

.uc-prose h1,
.uc-prose h2,
.uc-prose h3,
.uc-prose h4,
.uc-prose h5,
.uc-prose h6 {
  margin: 1.35rem 0 0.65rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--vf-ink);
}

.uc-prose h1 { font-size: 1.5rem; }
.uc-prose h2 { font-size: 1.3rem; }
.uc-prose h3 { font-size: 1.15rem; }
.uc-prose h4 { font-size: 1.05rem; }

.uc-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 0.35rem 0 1rem;
}

.uc-prose ul,
.uc-prose ol {
  padding-left: 1.35rem;
  margin: 0 0 1rem;
}

.uc-prose li {
  margin: 0.25rem 0;
}

.uc-prose li > ul,
.uc-prose li > ol {
  margin-bottom: 0.25rem;
}

.uc-prose blockquote {
  margin: 0 0 1rem;
  padding: 0.5rem 1rem;
  border-left: 3px solid rgba(255, 82, 43, 0.45);
  color: var(--vf-muted, #6b7280);
  background: rgba(15, 23, 42, 0.03);
  border-radius: 0 10px 10px 0;
}

.uc-prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.88em;
  padding: 0.12em 0.4em;
  border-radius: 5px;
  background: rgba(15, 23, 42, 0.06);
}

.uc-prose pre {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  overflow: auto;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.05);
  font-size: 0.875rem;
  line-height: 1.6;
}

.uc-prose pre code {
  padding: 0;
  background: transparent;
}

.uc-prose hr {
  border: 0;
  border-top: 1px solid var(--vf-line, rgba(17, 24, 39, 0.1));
  margin: 1.25rem 0;
}

.uc-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1rem;
  font-size: 0.925rem;
  overflow-x: auto;
  display: block;
}

.uc-prose th,
.uc-prose td {
  border: 1px solid var(--vf-line, rgba(17, 24, 39, 0.12));
  padding: 0.5rem 0.7rem;
  text-align: left;
}

.uc-prose th {
  background: rgba(15, 23, 42, 0.04);
  font-weight: 600;
}

.nice-dark-mode .uc-prose code,
.nice-dark-mode .uc-prose pre,
.nice-dark-mode .uc-prose blockquote,
.nice-dark-mode .uc-prose th {
  background: rgba(255, 255, 255, 0.06);
}

.nice-dark-mode .uc-prose th,
.nice-dark-mode .uc-prose td {
  border-color: rgba(255, 255, 255, 0.12);
}

.uc-post-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--vf-line);
}

.uc-like-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  min-height: 2.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--vf-line);
  border-radius: 999px;
  background: var(--vf-surface);
  color: var(--vf-ink);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color var(--vf-ease), color var(--vf-ease), background var(--vf-ease);
}

.uc-like-btn:hover,
.uc-like-btn.current {
  border-color: var(--vf-accent);
  color: var(--vf-accent);
  background: var(--vf-accent-soft);
}

.uc-like-count {
  font-variant-numeric: tabular-nums;
}

/* 评论区 */
.uc-comments {
  margin-top: 1rem;
  padding: 1.25rem 1.25rem 1.5rem;
}

@media (min-width: 768px) {
  .uc-comments {
    padding: 1.5rem 1.75rem 1.75rem;
  }
}

.uc-comments-head {
  margin-bottom: 1.25rem;
}

.uc-comments-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--vf-ink);
}

.uc-comments-title small {
  font-weight: 400;
  color: var(--vf-muted);
}

.uc-comments-sub {
  margin: 0.375rem 0 0;
  font-size: 0.8125rem;
  color: var(--vf-muted);
}

.uc-comments-sub a {
  color: var(--vf-accent);
  text-decoration: none;
}

.uc-respond {
  margin-bottom: 1.5rem;
}

/* 旧主题用「绝对定位头像 + 左内边距」排版评论，这里统一改为 flex。 */
.uc-comments .comment-form {
  display: flex;
  gap: 0.75rem;
  position: static;
  padding-left: 0;
}

.uc-comments .comment-form .comment-avatar {
  position: static;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
}

.uc-comments .comment-form .comment-avatar img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.uc-comments .comment-form .comment-inner {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
}

.uc-comments .comment-form .logged-in-as {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vf-ink);
}

.uc-comments .comment-form textarea {
  border-color: var(--vf-line);
  border-radius: 10px;
  font-size: 0.9375rem;
}

.uc-comments .comment-form textarea:focus {
  border-color: var(--vf-accent);
  box-shadow: 0 0 0 3px var(--vf-accent-soft);
}

/* comments_list 输出的标记沿用 Bootstrap 4 的 mr-x 与 ml-x 间距类，本站已是
   Bootstrap 5 因此这些类不再生效；旧主题的评论样式又按 .comment-avatar 绝对
   定位、.comment-text 作气泡来排版，与这份标记的类名对不上。这里整体重建。 */
.uc-comments .comment-list,
.uc-comments .comment-list .children {
  list-style: none;
  margin: 0;
  padding: 0;
}

.uc-comments .comment-list > li {
  position: relative;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--vf-line);
}

.uc-comments .comment-list > li:first-child {
  border-top: 0;
}

.uc-comments .comment-body {
  display: flex;
  gap: 0.75rem;
  padding: 1.125rem 0;
  margin-top: 0 !important;
}

.uc-comments .comment-avatar-author {
  flex: 0 0 auto;
  width: 2.5rem;
}

.uc-comments .comment-avatar-author img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.uc-comments .comment .comment-text {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  margin-top: 0 !important;
  padding: 0;
  background: none;
  border-radius: 0;
  line-height: inherit;
}

.uc-comments .comment-info {
  flex-wrap: wrap;
  gap: 0.25rem 0.375rem;
  margin-bottom: 0 !important;
}

.uc-comments .comment-author a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vf-ink);
  text-decoration: none;
}

.uc-comments .comment-author a:hover {
  color: var(--vf-accent);
}

.uc-comments .comment-author .badge {
  margin-left: 0.375rem !important;
  vertical-align: middle;
}

/* 主题样式表未定义会员等级徽章（badge-s / badge-h / badge-p），这里补齐。 */
.uc-comments .comment-author .badge-level {
  padding: 0.125rem 0.4375rem;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.5;
  background: var(--vf-canvas);
  color: var(--vf-muted);
}

.uc-comments .comment-author .badge-s {
  background: rgba(58, 122, 254, 0.12);
  color: #2f6bd8;
}

.uc-comments .comment-author .badge-h {
  background: var(--vf-accent-soft);
  color: var(--vf-accent);
}

.uc-comments .comment-author .badge-p {
  background: rgba(191, 138, 22, 0.14);
  color: #a5731a;
}

.uc-comments .comment-author .badge-danger {
  background: var(--vf-accent);
  color: #fff;
}

.nice-dark-mode .uc-comments .comment-author .badge-s {
  background: rgba(58, 122, 254, 0.2);
  color: #8fb0ff;
}

.nice-dark-mode .uc-comments .comment-author .badge-p {
  background: rgba(191, 138, 22, 0.22);
  color: #e3b957;
}

.uc-comments .comment-text > .text-muted {
  margin-top: 0.125rem !important;
  font-size: 0.75rem;
  color: var(--vf-muted) !important;
}

.uc-comments .comment-date i {
  font-style: normal;
}

.uc-comments .comment .comment-content {
  display: block !important;
  margin: 0.4375rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--vf-ink);
  word-break: break-word;
}

.uc-comments .comment-content p {
  margin: 0 0 0.5rem;
}

.uc-comments .comment-content p:last-child {
  margin-bottom: 0;
}

.uc-comments .comment-content img {
  max-width: 100%;
  border-radius: 8px;
}

.uc-comments .comment-footer {
  margin-top: 0.5rem;
}

/* 标记里有一个空的 .flex-fill 占位块把操作按钮顶到右侧，这里改为左对齐。 */
.uc-comments .comment-footer > div {
  justify-content: flex-start;
}

.uc-comments .comment-footer > div > .flex-fill:empty {
  display: none;
}

.uc-comments .comment-footer a {
  margin-left: 1rem;
  font-size: 0.8125rem;
  color: var(--vf-muted);
  text-decoration: none;
}

.uc-comments .comment-footer a:first-of-type {
  margin-left: 0;
}

.uc-comments .comment-footer a:hover {
  color: var(--vf-accent);
}

.uc-comments .comment-footer i {
  font-style: normal;
}

.uc-comments .comment-footer .iconfont {
  margin-right: 0.1875rem;
}

.uc-comments .comment-list .children {
  margin: 0 0 0.75rem 1.25rem;
  padding-left: 1rem;
  border-left: 2px solid var(--vf-line);
}

.uc-comments .comment-list .children > li {
  margin: 0;
  padding: 0;
  border-top: 0;
}

.uc-comments .comment-list .children .comment-body {
  padding: 0.75rem 0;
}

.uc-comments .comment-list .children .comment-avatar-author,
.uc-comments .comment-list .children .comment-avatar-author img {
  width: 2rem;
}

.uc-comments .comment-list .children .comment-avatar-author img {
  height: 2rem;
}

@media (max-width: 575.98px) {
  .uc-comments .comment-list .children {
    margin-left: 0.75rem;
    padding-left: 0.75rem;
  }
}

.uc-login-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: var(--vf-canvas);
  border-radius: 12px;
  text-align: center;
}

.uc-login-cta p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--vf-muted);
}

.uc-empty-comments {
  padding: 1.25rem 0 0.5rem;
  font-size: 0.875rem;
  color: var(--vf-muted);
  text-align: center;
}

/* 近期公告侧栏 */
.uc-recent {
  padding: 1.125rem 1.125rem 1.25rem;
}

.uc-recent-title {
  margin: 0 0 0.875rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--vf-ink);
}

.uc-recent-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.uc-recent-list li + li {
  margin-top: 0.625rem;
  padding-top: 0.625rem;
  border-top: 1px solid var(--vf-line);
}

.uc-recent-list a {
  display: block;
  text-decoration: none;
}

.uc-recent-item-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vf-ink);
  line-height: 1.4;
}

.uc-recent-list a:hover .uc-recent-item-title {
  color: var(--vf-accent);
}

.uc-recent-item-date {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--vf-muted);
}

.uc-recent-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--vf-muted);
  text-decoration: none;
}

.uc-recent-more:hover {
  color: var(--vf-accent);
}
