:root {
  --p: #0d9488;
  --p-dark: #0f766e;
  --p-light: #ccfbf1;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f1f5f9;
  --card: #ffffff;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 4px 14px rgba(15, 23, 42, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

a { color: var(--p-dark); text-decoration: none; }
a:hover { color: var(--p); }

img { max-width: 100%; }

.p-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== 顶部导航 ===== */
.p-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.p-header-inner { display: flex; align-items: center; gap: 28px; height: 60px; }
.p-logo { display: flex; align-items: center; gap: 8px; font-size: 18px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.p-logo img { width: 30px; height: 30px; border-radius: 8px; }
.p-nav { display: flex; gap: 4px; flex: 1; }
.p-nav a {
  padding: 6px 14px; border-radius: 8px; color: #334155; font-size: 15px;
}
.p-nav a:hover { background: #f1f5f9; color: var(--p-dark); }
.p-nav a.active { background: var(--p-light); color: var(--p-dark); font-weight: 600; }
.p-search { display: flex; }
.p-search input {
  width: 200px; padding: 7px 12px; border: 1px solid var(--line); border-right: none;
  border-radius: 8px 0 0 8px; outline: none; font-size: 13px; background: #f8fafc;
}
.p-search input:focus { border-color: var(--p); background: #fff; }
.p-search button {
  padding: 7px 14px; border: none; background: var(--p); color: #fff;
  border-radius: 0 8px 8px 0; cursor: pointer; font-size: 13px;
}
.p-search button:hover { background: var(--p-dark); }
#p-login-btn {
  padding: 7px 18px; border: none; border-radius: 8px; background: var(--p); color: #fff;
  cursor: pointer; font-size: 14px; white-space: nowrap;
}
#p-login-btn:hover { background: var(--p-dark); }
.p-user-chip { display: none; align-items: center; gap: 8px; cursor: default; }
.p-user-chip.on { display: flex; }
.p-user-chip .p-mini-avatar { width: 30px; height: 30px; }
.p-user-chip b { font-size: 14px; }
.p-user-chip .p-logout { color: var(--muted); font-size: 12px; cursor: pointer; }
.p-user-chip .p-logout:hover { color: #ef4444; }

/* ===== 通用组件 ===== */
.p-btn {
  display: inline-block; padding: 9px 22px; border: none; border-radius: 8px;
  background: var(--p); color: #fff; cursor: pointer; font-size: 14px; text-align: center;
}
.p-btn:hover { background: var(--p-dark); }
.p-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.p-btn.ghost { background: #fff; color: var(--p-dark); border: 1px solid var(--p); }
.p-btn.ghost:hover { background: var(--p-light); }
.p-btn.block { width: 100%; }

.p-card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; }

.p-section { margin: 28px 0; }
.p-section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
.p-section-title { font-size: 20px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.p-section-title::before { content: ""; width: 4px; height: 18px; border-radius: 2px; background: var(--p); }
.p-section-more { font-size: 13px; color: var(--muted); }

.breadcrumb { padding: 14px 0 0; font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--p); }

.p-tag {
  display: inline-block; padding: 2px 10px; border-radius: 20px; font-size: 12px;
  background: var(--p-light); color: var(--p-dark);
}

.p-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.p-empty .icon { font-size: 44px; margin-bottom: 10px; }

/* ===== 头像 ===== */
.p-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: 15px; user-select: none;
}
.p-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.p-avatar.sm { width: 30px; height: 30px; font-size: 12px; }
.p-avatar.lg { width: 48px; height: 48px; font-size: 18px; }

/* ===== 首页 Hero ===== */
.p-hero {
  margin-top: 20px; border-radius: 16px; overflow: hidden; position: relative;
  background: linear-gradient(120deg, #134e4a 0%, #0f766e 45%, #0d9488 100%);
  color: #fff; padding: 52px 48px;
}
.p-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.22; }
.p-hero-inner { position: relative; }
.p-hero h1 { font-size: 32px; margin-bottom: 10px; letter-spacing: 1px; }
.p-hero p.sub { font-size: 15px; opacity: 0.9; margin-bottom: 24px; }
.p-hero-search { display: flex; max-width: 520px; }
.p-hero-search input {
  flex: 1; padding: 12px 18px; border: none; border-radius: 10px 0 0 10px; font-size: 15px; outline: none;
}
.p-hero-search button {
  padding: 12px 26px; border: none; border-radius: 0 10px 10px 0; background: #f59e0b;
  color: #fff; font-size: 15px; cursor: pointer; font-weight: 600;
}
.p-hero-search button:hover { background: #d97706; }
.p-hero-stats { display: flex; gap: 34px; margin-top: 30px; flex-wrap: wrap; }
.p-hero-stat b { font-size: 24px; display: block; }
.p-hero-stat span { font-size: 13px; opacity: 0.85; }

/* ===== 频道入口 ===== */
.channel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: -34px; position: relative; }
.channel-card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 20px; display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line); transition: transform 0.2s, box-shadow 0.2s;
}
.channel-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12); }
.channel-icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 24px; flex-shrink: 0;
}
.channel-card b { font-size: 16px; display: block; color: var(--ink); }
.channel-card span { font-size: 12px; color: var(--muted); }

/* ===== 首页双栏 ===== */
.home-grid { display: grid; grid-template-columns: 1fr 330px; gap: 20px; margin-top: 26px; }

.post-card {
  display: flex; gap: 16px; background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 16px; margin-bottom: 14px; transition: transform 0.2s;
}
.post-card:hover { transform: translateY(-2px); }
.post-cover { width: 210px; height: 140px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.post-cover-ph {
  width: 210px; height: 140px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 40px;
  background: linear-gradient(135deg, #99f6e4, #5eead4);
}
.post-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.post-card-title { font-size: 17px; margin: 6px 0; line-height: 1.4; }
.post-card-title a { color: var(--ink); }
.post-card-title a:hover { color: var(--p-dark); }
.post-card-excerpt { font-size: 13px; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-meta { margin-top: auto; padding-top: 10px; font-size: 12px; color: var(--muted); display: flex; gap: 14px; flex-wrap: wrap; }

.side-card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; margin-bottom: 16px; }
.side-card h3 { font-size: 15px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.side-list-item { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 13px; align-items: baseline; }
.side-list-item:last-child { border-bottom: none; }
.side-list-item .num {
  min-width: 20px; height: 20px; border-radius: 6px; background: #f1f5f9; color: var(--muted);
  font-size: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.side-list-item:nth-child(1) .num, .side-list-item:nth-child(2) .num, .side-list-item:nth-child(3) .num { background: var(--p-light); color: var(--p-dark); }
.side-list-item a { color: #334155; line-height: 1.45; }
.side-list-item a:hover { color: var(--p-dark); }
.side-list-item .cnt { margin-left: auto; color: var(--muted); font-size: 12px; white-space: nowrap; }

.mini-product { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--line); align-items: center; }
.mini-product:last-child { border-bottom: none; }
.mini-product img { width: 52px; height: 52px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.mini-product .t { font-size: 13px; color: #334155; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mini-product .pr { color: #ef4444; font-weight: 700; font-size: 14px; }

/* ===== 论坛板块 ===== */
.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.board-card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 18px; border-left: 4px solid var(--p); transition: transform 0.2s;
}
.board-card:hover { transform: translateY(-3px); }
.board-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.board-icon {
  width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; color: #fff;
}
.board-head b { font-size: 16px; }
.board-head span { font-size: 12px; color: var(--muted); display: block; }
.board-desc { font-size: 13px; color: var(--muted); margin: 6px 0 10px; }
.board-foot { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }
.board-foot b { color: var(--p-dark); }

/* ===== 帖子列表 ===== */
.thread-table { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.thread-row { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.thread-row:last-child { border-bottom: none; }
.thread-row:hover { background: #f8fafc; }
.thread-row.pinned { background: #fffbeb; }
.thread-main { flex: 1; min-width: 0; }
.thread-title { font-size: 15px; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.thread-title:hover { color: var(--p-dark); }
.pin-flag { font-size: 11px; background: #f59e0b; color: #fff; padding: 1px 6px; border-radius: 4px; }
.board-flag { font-size: 11px; padding: 1px 8px; border-radius: 10px; color: #fff; white-space: nowrap; }
.thread-sub { font-size: 12px; color: var(--muted); margin-top: 3px; }
.thread-nums { display: flex; gap: 18px; font-size: 12px; color: var(--muted); text-align: center; white-space: nowrap; }
.thread-nums b { display: block; font-size: 15px; color: #334155; }
.thread-last { width: 150px; font-size: 12px; color: var(--muted); text-align: right; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.tabs { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.tabs a, .tabs span.cur {
  padding: 6px 16px; border-radius: 20px; font-size: 13px; background: #fff;
  border: 1px solid var(--line); color: #475569;
}
.tabs a:hover { border-color: var(--p); color: var(--p-dark); }
.tabs .cur { background: var(--p); border-color: var(--p); color: #fff; }

/* ===== 帖子详情 ===== */
.thread-detail { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; }
.thread-detail h1 { font-size: 22px; margin: 10px 0 14px; line-height: 1.45; }
.detail-meta { display: flex; gap: 18px; font-size: 13px; color: var(--muted); padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 16px; flex-wrap: wrap; }
.rich-content { line-height: 1.85; }
.rich-content p { margin: 10px 0; }
.rich-content h2 { font-size: 19px; margin: 20px 0 10px; }
.rich-content h3 { font-size: 16px; margin: 16px 0 8px; }
.rich-content pre { background: #0f172a; color: #e2e8f0; padding: 14px; border-radius: 8px; overflow: auto; font-size: 13px; margin: 12px 0; }
.rich-content code { font-family: Consolas, Monaco, monospace; }
.rich-content blockquote { border-left: 4px solid var(--p); background: #f0fdfa; padding: 10px 16px; margin: 12px 0; border-radius: 0 8px 8px 0; color: #334155; }
.rich-content ul, .rich-content ol { padding-left: 22px; margin: 10px 0; }
.rich-content img { border-radius: 8px; }

.reply-item { display: flex; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.reply-item:last-child { border-bottom: none; }
.reply-body { flex: 1; }
.reply-head { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.reply-head b { color: var(--ink); }
.reply-head .role-flag { font-size: 11px; background: var(--p-light); color: var(--p-dark); padding: 0 8px; border-radius: 8px; }
.reply-head time { color: var(--muted); font-size: 12px; }
.reply-floor { margin-left: auto; color: var(--muted); font-size: 12px; }
.reply-content { margin-top: 6px; font-size: 14px; color: #334155; }

/* ===== 表单 ===== */
.p-form { display: flex; flex-direction: column; gap: 12px; }
.p-input, .p-form textarea {
  padding: 10px 14px; border: 1px solid var(--line); border-radius: 8px; font-size: 14px;
  outline: none; font-family: inherit; background: #fff;
}
.p-input:focus, .p-form textarea:focus { border-color: var(--p); }
.p-form textarea { min-height: 110px; resize: vertical; }
.p-form .row2 { display: flex; gap: 12px; }
.p-form .row2 .p-input { flex: 1; }
.form-tip { font-size: 12px; color: var(--muted); }

/* ===== 社区动态 ===== */
.composer { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; margin-bottom: 18px; }
.composer-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 15px; font-weight: 600; }
.composer textarea { border: none; background: #f8fafc; }
.composer-foot { display: flex; justify-content: space-between; align-items: center; }

.feed-card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; margin-bottom: 16px; }
.feed-head { display: flex; align-items: center; gap: 10px; }
.feed-head b { font-size: 14px; }
.feed-head time { color: var(--muted); font-size: 12px; margin-left: auto; }
.feed-content { margin: 10px 0; font-size: 15px; color: #1e293b; white-space: pre-wrap; }
.feed-imgs { display: grid; gap: 8px; margin: 10px 0; }
.feed-imgs.n1 { grid-template-columns: minmax(0, 480px); }
.feed-imgs.n2, .feed-imgs.n4 { grid-template-columns: 1fr 1fr; }
.feed-imgs.n3 { grid-template-columns: 1fr 1fr 1fr; }
.feed-imgs img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; cursor: zoom-in; }
.feed-actions { display: flex; gap: 22px; padding-top: 10px; border-top: 1px solid var(--line); }
.feed-actions button {
  border: none; background: none; color: var(--muted); font-size: 13px; cursor: pointer;
  display: flex; align-items: center; gap: 5px; padding: 4px 0;
}
.feed-actions button:hover { color: var(--p-dark); }
.feed-actions button.liked { color: #ef4444; }
.feed-comments { background: #f8fafc; border-radius: 8px; padding: 12px 14px; margin-top: 10px; }
.feed-comment { display: flex; gap: 8px; padding: 5px 0; font-size: 13px; align-items: baseline; }
.feed-comment b { color: var(--p-dark); white-space: nowrap; }
.feed-comment-form { display: flex; gap: 8px; margin-top: 8px; }
.feed-comment-form input { flex: 1; padding: 7px 12px; border: 1px solid var(--line); border-radius: 8px; outline: none; font-size: 13px; }
.feed-comment-form button { padding: 7px 16px; border: none; border-radius: 8px; background: var(--p); color: #fff; cursor: pointer; font-size: 13px; }

/* ===== 商城 ===== */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; transition: transform 0.2s; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); }
.product-cover { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.product-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.product-title { font-size: 15px; color: var(--ink); line-height: 1.4; margin-bottom: 6px; }
.product-desc { font-size: 12px; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-foot { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 10px; }
.price { color: #ef4444; font-weight: 700; font-size: 18px; }
.price small { font-size: 12px; }
.original-price { color: #94a3b8; font-size: 13px; text-decoration: line-through; }
.sales-badge { margin-left: auto; font-size: 12px; color: var(--muted); }
.stock-out { color: #ef4444; font-size: 12px; }

.product-detail-grid { display: grid; grid-template-columns: 460px 1fr; gap: 24px; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; }
.pd-gallery img.main { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; }
.pd-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.pd-thumbs img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; }
.pd-thumbs img:hover { border-color: var(--p); }
.pd-info h1 { font-size: 22px; margin-bottom: 12px; line-height: 1.45; }
.pd-price-box { background: #fef2f2; border-radius: 10px; padding: 14px 16px; display: flex; align-items: baseline; gap: 12px; margin: 14px 0; }
.pd-price-box .price { font-size: 28px; }
.pd-meta { font-size: 13px; color: var(--muted); display: flex; gap: 20px; margin: 12px 0 20px; flex-wrap: wrap; }
.pd-buy { display: flex; gap: 12px; align-items: center; }
.qty-input { width: 64px; padding: 9px; border: 1px solid var(--line); border-radius: 8px; text-align: center; font-size: 15px; outline: none; }

/* ===== 分页 ===== */
.pagination { display: flex; gap: 8px; justify-content: center; padding: 24px 0; flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; background: #fff; border: 1px solid var(--line); color: #475569; font-size: 14px; padding: 0 10px;
}
.pagination a:hover { border-color: var(--p); color: var(--p-dark); }
.pagination .active { background: var(--p); border-color: var(--p); color: #fff; }

/* ===== 登录弹窗 ===== */
.p-modal-mask {
  display: none; position: fixed; inset: 0; background: rgba(15, 23, 42, 0.5);
  z-index: 999; align-items: center; justify-content: center; padding: 20px;
}
.p-modal-mask.on { display: flex; }
.p-modal { background: #fff; border-radius: 14px; width: 380px; max-width: 100%; padding: 26px; position: relative; }
.p-modal h3 { margin-bottom: 16px; font-size: 18px; }
.p-modal .close {
  position: absolute; top: 12px; right: 16px; border: none; background: none;
  font-size: 22px; color: var(--muted); cursor: pointer;
}
.p-modal .form-tip { margin-top: 10px; text-align: center; }
.p-modal .form-tip b { color: var(--p-dark); }
.p-modal-msg { font-size: 13px; color: #ef4444; min-height: 18px; margin-top: 6px; }

/* ===== 页脚 ===== */
.p-footer { background: #0f172a; color: #94a3b8; margin-top: 40px; padding: 34px 0; font-size: 13px; }
.p-footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.p-footer a { color: #cbd5e1; margin: 0 8px; }
.p-footer a:hover { color: #fff; }

/* ===== toast ===== */
#p-toast {
  position: fixed; top: 76px; left: 50%; transform: translateX(-50%); z-index: 1000;
  background: #0f172a; color: #fff; padding: 10px 22px; border-radius: 24px;
  font-size: 14px; opacity: 0; transition: opacity 0.3s; pointer-events: none; max-width: 80vw;
}
#p-toast.on { opacity: 0.96; }
#p-toast.err { background: #dc2626; }

/* ===== 响应式 ===== */
@media (max-width: 1000px) {
  .home-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .channel-grid { grid-template-columns: 1fr 1fr; margin-top: 16px; }
  .product-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .p-nav { overflow-x: auto; }
  .p-search { display: none; }
  .board-grid, .product-grid, .channel-grid { grid-template-columns: 1fr; }
  .post-card { flex-direction: column; }
  .post-cover, .post-cover-ph { width: 100%; height: 170px; }
  .thread-nums, .thread-last { display: none; }
  .p-hero { padding: 32px 24px; }
}

/* ===== 频道搜索框 ===== */
.channel-search {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 18px;
}
.channel-search input {
  flex: 1; max-width: 420px;
  padding: 9px 14px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 14px; background: var(--card);
  transition: border-color .15s, box-shadow .15s;
}
.channel-search input:focus {
  outline: none; border-color: var(--p);
  box-shadow: 0 0 0 3px var(--p-light);
}
.channel-search button {
  padding: 9px 18px; border: none; border-radius: var(--radius);
  background: var(--p); color: #fff; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: opacity .15s;
}
.channel-search button:hover { opacity: .88; }
.channel-search .clear {
  font-size: 13px; color: var(--muted); text-decoration: none;
  padding: 6px 10px; border-radius: 8px;
}
.channel-search .clear:hover { color: var(--p); background: var(--p-light); }

/* ===== 管理员后台按钮 ===== */
.p-admin-btn {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 14px; border-radius: 999px;
  background: linear-gradient(90deg, #1e293b, #334155);
  color: #fbbf24; font-size: 13px; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  border: 1px solid rgba(251, 191, 36, .35);
  transition: box-shadow .15s, transform .15s;
}
.p-admin-btn:hover {
  box-shadow: 0 0 0 3px rgba(251, 191, 36, .18);
  transform: translateY(-1px);
  color: #fde68a;
}
