/* 盒岛风创作者主页主题 */
:root {
  --he-red: #ff5c6c;
  --he-red-dark: #e84858;
  --he-red-soft: #fff1f2;
  --he-gold: #e8c48a;
  --he-gold-dark: #c9a066;
  --he-bg: #f4f5f7;
  --he-card: #fff;
  --he-text: #1f1f1f;
  --he-muted: #8c8c8c;
  --he-line: #efefef;
  --he-shadow: 0 4px 16px rgba(31, 31, 31, .04);
  --he-radius: 12px;
  --he-top: 56px;
  --he-gap: 16px;
  --he-main: 760px;
  --he-side: 336px;
  --he-font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}
*,
*::before,
*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.he-body {
  font: 14px/1.6 var(--he-font);
  color: var(--he-text);
  background: var(--he-bg);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--he-red); }
img { max-width: 100%; border: 0; vertical-align: middle; }
button, input, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 650; }

.he-top {
  position: sticky; top: 0; z-index: 50;
  height: var(--he-top);
  background: #fff;
  box-shadow: 0 1px 0 var(--he-line);
}
.he-top-inner {
  max-width: calc(var(--he-main) + var(--he-gap) + var(--he-side));
  height: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.he-logo {
  display: flex; align-items: center; gap: 8px;
  color: var(--he-red) !important;
  flex-shrink: 0;
}
.he-logo b { font-size: 18px; letter-spacing: .04em; }
.he-logo-mark { display: flex; color: var(--he-red); }
.he-nav-toggle {
  display: none;
  width: 36px; height: 36px;
  border: 0; background: none; padding: 0; margin-left: auto;
}
.he-nav-toggle span,
.he-nav-toggle span::before,
.he-nav-toggle span::after {
  display: block; width: 18px; height: 2px; background: #333; border-radius: 1px;
  position: relative;
}
.he-nav-toggle span::before,
.he-nav-toggle span::after {
  content: ""; position: absolute; left: 0;
}
.he-nav-toggle span::before { top: -6px; }
.he-nav-toggle span::after { top: 6px; }
.he-top-nav { flex: 1; min-width: 0; }
.he-top-nav ul { display: flex; gap: 4px; flex-wrap: wrap; }
.he-top-nav a {
  display: block; padding: 6px 10px; border-radius: 999px;
  color: #555; font-size: 13px;
}
.he-top-nav a.on,
.he-top-nav a:hover { color: var(--he-red); background: var(--he-red-soft); }
.he-top-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.he-link { color: #555; font-size: 13px; }
.he-search {
  display: flex; align-items: center;
  background: #f5f5f5; border-radius: 999px; padding: 0 4px 0 12px;
  height: 34px;
}
.he-search input {
  border: 0; background: none; outline: none; width: 148px;
}
.he-search button {
  width: 28px; height: 28px; border: 0; background: none; color: #999; cursor: pointer;
}

.he-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; padding: 0 18px;
  border-radius: 999px; border: 0; cursor: pointer;
  font-size: 14px; font-weight: 600; line-height: 1;
  transition: .15s background, .15s color, .15s opacity;
}
.he-btn.ghost { background: #f5f5f5; color: #333; }
.he-btn.ghost:hover { background: #eee; color: #111; }
.he-btn.solid { background: var(--he-red); color: #fff !important; }
.he-btn.solid:hover { background: var(--he-red-dark); color: #fff !important; }
.he-btn.follow {
  background: var(--he-red); color: #fff !important;
  min-width: 88px; height: 38px;
}
.he-btn.gold { background: linear-gradient(90deg, #f3d19a, #e4b56a); color: #5a3d12 !important; }
.he-btn.gold:hover { filter: brightness(.97); color: #5a3d12 !important; }
.he-btn.block { width: 100%; }

.he-wrap {
  max-width: calc(var(--he-main) + var(--he-gap) + var(--he-side));
  margin: 16px auto 40px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: minmax(0, var(--he-main)) var(--he-side);
  gap: var(--he-gap);
  align-items: start;
}
.he-wrap-narrow { grid-template-columns: 1fr; max-width: 560px; padding-top: 48px; }
.he-main, .he-side { min-width: 0; }
.he-side { display: flex; flex-direction: column; gap: 12px; }

.he-card,
.he-profile,
.he-post,
.he-tabs {
  background: var(--he-card);
  border-radius: var(--he-radius);
  box-shadow: var(--he-shadow);
}

.he-profile { overflow: hidden; }
.he-cover {
  height: 168px;
  background: center/cover no-repeat;
}
.he-cover.is-default {
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.35), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.2), transparent 36%),
    linear-gradient(135deg, #ff8a9a 0%, #ff5c6c 42%, #ff8f6b 100%);
}
.he-profile-body {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 0 20px 20px;
}
.he-profile-main { display: flex; gap: 16px; flex: 1; min-width: 0; }
.he-avatar-wrap { margin-top: -36px; flex-shrink: 0; }
.he-avatar {
  width: 86px; height: 86px; border-radius: 50%;
  object-fit: cover; border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  background: #f0f0f0;
}
.he-avatar-fallback {
  display: flex; align-items: center; justify-content: center;
  background: var(--he-red); color: #fff; font-size: 32px; font-weight: 700;
}
.he-profile-info { padding-top: 12px; min-width: 0; }
.he-name-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.he-name { font-size: 20px; line-height: 1.3; }
.he-badge {
  font-size: 12px; color: var(--he-red); background: var(--he-red-soft);
  border-radius: 999px; padding: 1px 8px; font-weight: 500;
}
.he-id, .he-bio { margin: 4px 0 0; color: var(--he-muted); font-size: 13px; }
.he-stats { display: flex; gap: 28px; margin-top: 12px; }
.he-stat { text-align: left; color: inherit; }
.he-stat strong { display: block; font-size: 18px; line-height: 1.2; }
.he-stat span { color: var(--he-muted); font-size: 12px; }
.he-profile-side {
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  padding-top: 16px; flex-shrink: 0;
}
.he-qr { display: flex; align-items: center; gap: 8px; max-width: 210px; }
.he-qr img {
  width: 72px; height: 72px; background: #fff; border: 1px solid var(--he-line); border-radius: 6px;
}
.he-qr p { margin: 0; font-size: 12px; color: #555; line-height: 1.4; }
.he-qr small { display: block; color: var(--he-muted); font-size: 11px; }

.he-tabs {
  display: flex; gap: 8px; padding: 0 12px; margin: 12px 0;
  height: 48px; align-items: stretch;
}
.he-tabs a {
  display: flex; align-items: center; padding: 0 16px;
  color: #555; font-size: 15px; position: relative;
}
.he-tabs a.on { color: var(--he-red); font-weight: 650; }
.he-tabs a.on::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 0;
  height: 2px; background: var(--he-red); border-radius: 2px 2px 0 0;
}

.he-feed { display: flex; flex-direction: column; gap: 12px; }
.he-section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 4px 4px 0;
}
.he-section-head h2 { font-size: 16px; }
.he-section-head p, .he-section-head a { color: var(--he-muted); font-size: 13px; }

.he-post { padding: 16px 18px 14px; }
.he-post-head { display: flex; align-items: center; justify-content: space-between; }
.he-post-user { display: flex; align-items: center; gap: 10px; color: inherit; }
.he-post-user img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.he-post-user b { display: block; font-size: 14px; }
.he-post-user time { color: var(--he-muted); font-size: 12px; }
.he-pin {
  font-size: 12px; font-style: normal; color: var(--he-red);
  background: var(--he-red-soft); border-radius: 999px; padding: 2px 8px;
}
.he-post-title { font-size: 16px; margin: 12px 0 6px; line-height: 1.45; }
.he-post-intro { margin: 0 0 10px; color: #555; }
.he-post-cover {
  display: block; border-radius: 10px; overflow: hidden; margin: 8px 0 12px;
  background: #f2f2f2;
}
.he-post-cover img { width: 100%; max-height: 360px; object-fit: cover; display: block; }
.he-post-foot { display: flex; gap: 14px; color: var(--he-muted); font-size: 12px; }
.he-post-top { background: linear-gradient(180deg, #fff8f8, #fff); }

.he-empty {
  background: #fff; border-radius: var(--he-radius);
  text-align: center; color: var(--he-muted); padding: 48px 16px;
}
.he-empty.sm { padding: 24px; background: none; box-shadow: none; }
.he-empty-page { text-align: center; padding: 48px 24px; }
.he-empty-page b { font-size: 56px; color: var(--he-red); display: block; line-height: 1; }
.he-empty-page h1 { margin: 12px 0 8px; font-size: 20px; }
.he-empty-page p { color: var(--he-muted); margin: 0 0 20px; }

.he-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.he-grid.shop { grid-template-columns: repeat(3, 1fr); }
.he-grid-item {
  background: #fff; border-radius: var(--he-radius); overflow: hidden;
  box-shadow: var(--he-shadow); color: inherit;
}
.he-grid-cover {
  height: 120px; display: flex; align-items: flex-end; padding: 10px;
  color: #fff; background-size: cover; background-position: center;
}
.he-grid-cover b { font-size: 15px; text-shadow: 0 1px 4px rgba(0,0,0,.25); }
.he-grid-cover.c0 { background: linear-gradient(135deg, #ff8a9a, #ff5c6c); }
.he-grid-cover.c1 { background: linear-gradient(135deg, #f7b267, #f79d65); }
.he-grid-cover.c2 { background: linear-gradient(135deg, #8ec5fc, #6a9dfc); }
.he-grid-cover.c3 { background: linear-gradient(135deg, #c9a7eb, #9b7edc); }
.he-grid-cover.c4 { background: linear-gradient(135deg, #80d0c7, #4db6ac); }
.he-grid-cover.c5 { background: linear-gradient(135deg, #fddb92, #d1fdff); color: #5a3d12; }
.he-grid-cover.c5 b { text-shadow: none; }
.he-grid-meta { padding: 10px 12px 12px; }
.he-grid-meta strong { display: block; font-size: 14px; }
.he-grid-meta span { color: var(--he-muted); font-size: 12px; }

.he-cards { display: flex; flex-wrap: wrap; gap: 10px; }
.he-card-chip {
  display: flex; align-items: center; gap: 6px;
  background: #fff; border-radius: 999px; padding: 8px 14px;
  box-shadow: var(--he-shadow); color: inherit;
}
.he-card-chip i { color: var(--he-red); font-style: normal; font-weight: 700; }
.he-card-chip span { color: var(--he-muted); font-size: 12px; }

.he-support, .he-vip, .he-mod { padding: 16px; }
.he-support h3, .he-mod h3, .he-mini h3, .he-cmts h3, .he-related h3 {
  font-size: 15px; margin-bottom: 8px;
}
.he-muted { color: var(--he-muted); margin: 0 0 12px; font-size: 13px; }
.he-amts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.he-amt {
  height: 36px; border: 1px solid #f0f0f0; background: #f7f7f7;
  border-radius: 8px; cursor: pointer;
}
.he-amt.on { border-color: var(--he-red); color: var(--he-red); background: var(--he-red-soft); }
.he-bless { display: block; margin: 12px 0; font-size: 13px; color: #666; }
.he-bless input {
  width: 100%; margin-top: 6px; height: 36px; padding: 0 10px;
  border: 1px solid var(--he-line); border-radius: 8px; outline: none; background: #fafafa;
}
.he-bless input:focus { border-color: #ffc1c7; background: #fff; }

.he-vip {
  background: linear-gradient(160deg, #2b3350 0%, #1b2238 100%);
  color: #f3e7cf;
}
.he-vip h3 { color: #fff; }
.he-vip-head { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.he-vip-head p { margin: 2px 0 0; font-size: 12px; opacity: .7; }
.he-vip-gem {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #7ec8ff, #4aa3ff); color: #fff; font-size: 16px;
}
.he-vip-pass {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border-radius: 10px; padding: 12px; margin-bottom: 12px;
}
.he-vip-pass b { display: block; color: var(--he-gold); }
.he-vip-pass span { font-size: 12px; opacity: .75; }
.he-vip-pass em { font-style: normal; color: #fff; font-size: 22px; white-space: nowrap; }
.he-vip-pass i { font-style: normal; font-size: 14px; margin-right: 2px; }
.he-vip-pass small { font-size: 12px; margin-left: 4px; opacity: .8; }

.he-mini { padding: 16px; }
.he-mini-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.he-mini-head a { color: var(--he-muted); font-size: 12px; }
.he-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.he-mini-grid a {
  display: block; aspect-ratio: 1; border-radius: 8px; overflow: hidden; background: #f3f3f3;
  color: #888; font-size: 12px;
}
.he-mini-grid img { width: 100%; height: 100%; object-fit: cover; }
.he-mini-grid span { display: flex; align-items: center; justify-content: center; height: 100%; padding: 6px; text-align: center; }
.he-mini-list li a {
  display: flex; justify-content: space-between; padding: 8px 0;
  border-bottom: 1px solid var(--he-line); color: inherit;
}
.he-mini-list li:last-child a { border-bottom: 0; }
.he-mini-list em { font-style: normal; color: var(--he-muted); }

.he-mod-list li { border-bottom: 1px solid var(--he-line); }
.he-mod-list li:last-child { border-bottom: 0; }
.he-mod-list a { display: block; padding: 8px 0; color: inherit; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.he-mod-body { color: #555; font-size: 13px; }
#divCalendar table { width: 100%; }
#divCalendar td { text-align: center; padding: 4px; }
#divContorPanel .cp-hello { display: block; margin-bottom: 6px; }

.he-guestbook { padding: 22px 24px 8px; margin-bottom: 12px; }
.he-guestbook-head h1 { font-size: 22px; line-height: 1.4; }
.he-guestbook-intro { margin: 10px 0 12px; color: #666; line-height: 1.7; }
.he-cmts-book .he-cmt-form { margin-top: 0; padding-top: 0; margin-bottom: 18px; }
.he-cmts-book h3 { margin-top: 8px; }

.he-article { padding: 24px; margin-bottom: 12px; }
.he-article-head h1 { font-size: 22px; line-height: 1.4; }
.he-article-meta {
  display: flex; flex-wrap: wrap; gap: 10px 14px;
  margin-top: 12px; color: var(--he-muted); font-size: 13px; align-items: center;
}
.he-article-meta a { display: inline-flex; align-items: center; gap: 6px; color: #555; }
.he-article-meta img { width: 22px; height: 22px; border-radius: 50%; }
.he-article-body { margin-top: 20px; font-size: 16px; line-height: 1.85; color: #333; overflow: hidden; }
.he-article-body p { margin: 0 0 1em; }
.he-article-body img { border-radius: 8px; }
.he-article-body h2, .he-article-body h3 { margin: 1.4em 0 .6em; }
.he-article-body a { color: var(--he-red); }
.he-article-body blockquote {
  margin: 1em 0; padding: 10px 14px; background: #fafafa; border-left: 3px solid var(--he-red);
  color: #666;
}
.he-article-body pre, .he-article-body code { font-family: ui-monospace, Consolas, monospace; }
.he-article-body pre { background: #f7f7f7; padding: 12px; border-radius: 8px; overflow: auto; }
.he-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.he-tags a {
  background: var(--he-red-soft); color: var(--he-red);
  border-radius: 999px; padding: 4px 10px; font-size: 13px;
}
.he-pager {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--he-line);
}
.he-pager a {
  display: block; padding: 10px 12px; background: #fafafa; border-radius: 8px; color: inherit;
}
.he-pager small { display: block; color: var(--he-muted); font-size: 12px; }
.he-pager .next { text-align: right; }

.he-related { margin: 0 0 12px; }
.he-related-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.he-related-item {
  display: flex; gap: 10px; align-items: center;
  background: #fff; border-radius: 10px; padding: 10px; box-shadow: var(--he-shadow); color: inherit;
}
.he-related-item img { width: 64px; height: 48px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }

.he-cmts { padding: 18px; }
.he-cmt { display: flex; gap: 10px; margin: 14px 0; }
.he-cmt .he-cmt { margin: 12px 0 0; }
.he-cmt-avatar { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; }
.he-cmt-body { flex: 1; min-width: 0; }
.he-cmt-meta { display: flex; gap: 8px; align-items: baseline; font-size: 13px; }
.he-cmt-meta time, .he-cmt-reply { color: var(--he-muted); font-size: 12px; }
.he-cmt-content { margin-top: 4px; color: #333; }
.he-cmt-form { margin-top: 16px; padding-top: 8px; }
.he-cmt-form h4 { font-size: 14px; margin-bottom: 10px; }
.he-cmt-form textarea,
.he-cmt-fields input,
.he-cmt-form .text {
  width: 100%; border: 1px solid var(--he-line); border-radius: 8px;
  padding: 10px 12px; background: #fafafa; outline: none; margin-bottom: 8px;
}
.he-cmt-form textarea:focus,
.he-cmt-fields input:focus { border-color: #ffc1c7; background: #fff; }
.he-cmt-fields { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.he-cmt-verify { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.he-cmt-verify input { flex: 1; margin-bottom: 0 !important; }
.he-cmt-verify img { height: 36px; border-radius: 6px; cursor: pointer; }
.he-cmt-actions { display: flex; justify-content: flex-end; }
.he-cmt-verify { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.he-cmt-verify input { flex: 1; margin-bottom: 0 !important; }
.he-cmt-verify img { height: 36px; border-radius: 6px; cursor: pointer; }
#cancel-reply { margin-left: 8px; font-size: 12px; color: var(--he-muted); font-weight: 400; }

.he-pages { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; padding: 8px 0 16px; }
.he-pages a, .he-pages span {
  min-width: 36px; height: 36px; padding: 0 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 8px; box-shadow: var(--he-shadow);
}
.he-pages .on { background: var(--he-red); color: #fff; }

.he-foot {
  max-width: calc(var(--he-main) + var(--he-gap) + var(--he-side));
  margin: 0 auto; padding: 8px 16px 32px;
  color: var(--he-muted); font-size: 12px; text-align: center;
}
.he-foot p { margin: 4px 0; }

.he-album-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.he-album-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--he-radius);
  overflow: hidden;
  box-shadow: var(--he-shadow);
  color: inherit;
}
.he-album-card:hover { color: inherit; }
.he-album-cover {
  position: relative;
  height: 148px;
  background: linear-gradient(135deg, #ff8a9a, #ff5c6c);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  color: #fff;
}
.he-album-cover.has-img { background-color: #f2f2f2; }
.he-album-cover b { font-size: 15px; text-shadow: 0 1px 4px rgba(0,0,0,.25); }
.he-album-cover .he-pin { position: absolute; top: 8px; right: 8px; }
.he-album-body { padding: 12px 14px 14px; }
.he-album-body h3 { font-size: 15px; line-height: 1.4; margin-bottom: 6px; }
.he-album-body p {
  margin: 0 0 8px; color: #666; font-size: 13px; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.he-album-body span { color: var(--he-muted); font-size: 12px; }

.he-shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.he-shop-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--he-radius);
  overflow: hidden;
  box-shadow: var(--he-shadow);
  color: inherit;
}
.he-shop-card:hover { color: inherit; }
.he-shop-cover {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f7b267, #ff5c6c);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  color: #fff;
}
.he-shop-cover.has-img { background-color: #f6f6f6; }
.he-shop-cover b { font-size: 15px; text-shadow: 0 1px 4px rgba(0,0,0,.25); }
.he-shop-cover .he-pin { position: absolute; top: 8px; right: 8px; }
.he-shop-body { padding: 12px 14px 14px; }
.he-shop-body h3 {
  font-size: 14px; line-height: 1.4; font-weight: 650;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.he-shop-body em {
  display: block; margin-top: 8px; font-style: normal;
  color: var(--he-red); font-size: 18px; font-weight: 700;
}
.he-shop-body span { display: block; margin-top: 8px; color: var(--he-muted); font-size: 12px; }

.he-article-album { overflow: hidden; padding-top: 0; }
.he-album-hero {
  height: 220px; margin: 0 -24px 18px;
  background: #f2f2f2 center/cover no-repeat;
}
.he-product {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
  margin-bottom: 8px;
}
.he-product-cover {
  aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(135deg, #f7b267, #ff5c6c);
  background-size: cover;
  background-position: center;
  display: flex; align-items: flex-end; padding: 12px; color: #fff;
}
.he-product-cover.has-img { background-color: #f6f6f6; }
.he-product-info h1 { font-size: 22px; line-height: 1.35; }
.he-product-price {
  margin: 10px 0 8px; color: var(--he-red);
  font-size: 28px; font-weight: 700; line-height: 1.2;
}
.he-product-info .he-btn { margin-top: 14px; }

@media (max-width: 980px) {
  .he-wrap { grid-template-columns: 1fr; }
  .he-side { order: 2; }
  .he-grid, .he-grid.shop, .he-related-list, .he-album-grid, .he-shop-grid { grid-template-columns: repeat(2, 1fr); }
  .he-profile-side { align-items: flex-start; }
  .he-qr { max-width: none; }
  .he-product { grid-template-columns: 180px 1fr; }
}
@media (max-width: 720px) {
  .he-top-nav, .he-search { display: none; }
  .he-nav-toggle { display: block; }
  .nav-open .he-top-nav {
    display: block; position: absolute; left: 0; right: 0; top: var(--he-top);
    background: #fff; box-shadow: var(--he-shadow); padding: 8px 12px 12px;
  }
  .nav-open .he-top-nav ul { flex-direction: column; }
  .he-cover { height: 128px; }
  .he-profile-body { flex-direction: column; }
  .he-profile-side { width: 100%; flex-direction: row; justify-content: space-between; align-items: center; padding-top: 0; }
  .he-tabs { overflow-x: auto; }
  .he-tabs a { white-space: nowrap; }
  .he-grid, .he-grid.shop, .he-album-grid, .he-shop-grid { grid-template-columns: 1fr 1fr; }
  .he-cmt-fields { grid-template-columns: 1fr; }
  .he-article { padding: 16px; }
  .he-album-hero { margin: 0 -16px 14px; height: 160px; }
  .he-product { grid-template-columns: 1fr; }
  .he-top-actions .he-btn.ghost { display: none; }
}
