.shuo-page {
  --red: #ff2442;
  --red-soft: #fff1f3;
  --red-soft-2: #fff7f8;
  --text: #202124;
  --muted: #86909c;
  --line: #eceff3;
  --bg: #f6f7f8;
  --shadow: 0 12px 32px rgba(15,23,42,.06);
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font: 14px/1.7 -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}
.shuo-page * { box-sizing: border-box; }
.shuo-page a { color: inherit; text-decoration: none; }
.shuo-page a:hover { color: var(--red); }
.shuo-page img { display: block; max-width: 100%; }
.shuo-wrap { width: 1280px; margin: 0 auto; }
.shuo-topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 72px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(15,23,42,.04);
}
.shuo-topbar .shuo-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.shuo-brand {
  min-width: 126px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0;
}
.shuo-brand img {
  max-width: 96px;
  max-height: 42px;
  object-fit: contain;
}
.shuo-brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}
.shuo-city {
  min-width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #16a34a;
  line-height: 1.15;
}
.shuo-city strong { font-size: 13px; }
.shuo-city span { font-size: 12px; }
.shuo-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.shuo-nav a {
  position: relative;
  height: 72px;
  display: inline-flex;
  align-items: center;
  color: #222;
}
.shuo-nav a.active,
.shuo-nav a:hover { color: var(--red); }
.shuo-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 28px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--red);
  transform: translateX(-50%);
}
.shuo-publish {
  margin-left: auto;
  height: 38px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(255,36,66,.22);
}
.shuo-publish:hover { color: #fff; background: #e61f3a; }
.shuo-main {
  width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 144px minmax(0, 780px) 300px;
  gap: 24px;
  align-items: start;
}
.shuo-main.detail-layout {
  grid-template-columns: minmax(0, 856px) 320px;
}
.shuo-left,
.shuo-right {
  position: sticky;
  top: 84px;
  padding-top: 16px;
}
.shuo-content,
.shuo-detail {
  min-width: 0;
  padding-top: 16px;
}
.shuo-panel,
.shuo-channel,
.shuo-tabs,
.shuo-card,
.shuo-detail-card,
.shuo-comments {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(15,23,42,.025);
}
.shuo-cats {
  padding: 10px 0 12px;
}
.shuo-cats-title {
  padding: 4px 16px 10px;
  color: #1d2129;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}
.shuo-cats a {
  min-height: 40px;
  margin: 2px 8px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border-radius: 6px;
  color: #333;
  transition: background .16s ease, color .16s ease;
}
.shuo-cats a img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
}
.shuo-cats a.active,
.shuo-cats a:hover {
  color: var(--red);
  background: var(--red-soft);
  font-weight: 700;
  box-shadow: inset 3px 0 0 var(--red);
}
.shuo-channel {
  min-height: 110px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shuo-channel h1 {
  margin: 0 0 6px;
  font-size: 26px;
  line-height: 1.2;
}
.shuo-channel p {
  margin: 0;
  color: var(--muted);
}
.shuo-channel-stats {
  display: flex;
  gap: 18px;
  color: var(--red);
  font-size: 20px;
  font-weight: 800;
}
.shuo-channel-stats span {
  min-width: 54px;
  text-align: center;
}
.shuo-channel-stats em {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
}
.shuo-compose-card {
  margin-top: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid #ffd6dc;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(255,36,66,.04);
}
.shuo-compose-card strong {
  display: block;
  margin-bottom: 2px;
  color: #1d2129;
  font-size: 15px;
}
.shuo-compose-card span {
  color: var(--muted);
  font-size: 13px;
}
.shuo-compose-card a {
  flex: 0 0 auto;
  height: 34px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
}
.shuo-compose-card a:hover { color: #fff; background: #e61f3a; }
.shuo-quick-post {
  position: relative;
  margin-top: 12px;
  overflow: visible;
  background: #fff;
  border: 1px solid #ffd6dc;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(255,36,66,.04);
}
.shuo-quick-trap {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.shuo-quick-title,
.shuo-quick-content {
  width: 100%;
  border: 0;
  outline: none;
  background: #fff;
  color: #1d2129;
  font: inherit;
}
.shuo-quick-title {
  height: 42px;
  padding: 0 18px;
  color: #4e5969;
  font-weight: 700;
}
.shuo-quick-content {
  min-height: 96px;
  resize: vertical;
  padding: 12px 18px 16px;
  border-top: 1px solid #f3f4f6;
  line-height: 1.7;
}
.shuo-quick-title::placeholder,
.shuo-quick-content::placeholder {
  color: #b8c0cc;
  font-weight: 400;
}
.shuo-quick-toolbar {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-left: 18px;
  border-top: 1px solid #f0f2f5;
  background: #fafafa;
}
.shuo-quick-tools {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #667085;
  font-size: 13px;
}
.shuo-tool-btn,
.shuo-quick-tools span,
.shuo-quick-tools a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #667085;
  cursor: pointer;
  font: inherit;
}
.shuo-tool-btn::before,
.shuo-quick-tools span::before,
.shuo-quick-tools a::before {
  color: #9aa3af;
  font-size: 15px;
}
.shuo-emotion-trigger::before { content: "☺"; }
.shuo-image-trigger::before { content: "▧"; }
.shuo-topic-trigger::before { content: "#"; }
.shuo-quick-file { display: none; }
.shuo-quick-preview,
.shuo-selected-topics {
  display: none;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 18px;
  border-top: 1px solid #f0f2f5;
  background: #fff;
}
.shuo-quick-preview.show,
.shuo-selected-topics.show {
  display: flex;
}
.shuo-quick-thumb {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  background: #f3f4f6;
}
.shuo-quick-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shuo-quick-thumb button {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: #fff;
  cursor: pointer;
  line-height: 18px;
}
.shuo-topic-chip {
  height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}
.shuo-topic-chip button {
  border: 0;
  background: transparent;
  color: var(--red);
  cursor: pointer;
}
.shuo-quick-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.shuo-quick-count {
  color: #98a2b3;
  font-size: 12px;
}
.shuo-quick-count.warn { color: var(--red); }
.shuo-quick-actions button {
  width: 98px;
  height: 42px;
  border: 0;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}
.shuo-quick-actions button:hover { background: #e61f3a; }
.shuo-quick-actions button:disabled {
  cursor: not-allowed;
  background: #ff9aaa;
}
.shuo-quick-msg {
  display: none;
  padding: 9px 18px;
  border-top: 1px solid #f0f2f5;
  color: #667085;
  font-size: 13px;
}
.shuo-quick-msg.show { display: block; }
.shuo-quick-msg.error { color: var(--red); }
.shuo-quick-msg.success { color: #16a34a; }
.shuo-emotion-panel {
  position: absolute;
  left: 18px;
  top: calc(100% - 1px);
  z-index: 20;
  width: 342px;
  padding: 8px 10px 12px;
  border: 1px solid #d9e2ef;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15,23,42,.14);
}
.shuo-emotion-panel::before {
  content: "";
  position: absolute;
  left: 22px;
  top: -7px;
  width: 12px;
  height: 12px;
  border-left: 1px solid #d9e2ef;
  border-top: 1px solid #d9e2ef;
  background: #fff;
  transform: rotate(45deg);
}
.shuo-emotion-tabs {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
  border-bottom: 1px solid #edf1f7;
}
.shuo-emotion-tabs button {
  height: 30px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: #667085;
  cursor: pointer;
}
.shuo-emotion-tabs button.active {
  color: var(--red);
  font-weight: 700;
  box-shadow: inset 0 -2px 0 var(--red);
}
.shuo-emotion-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(10, 28px);
  gap: 4px;
}
.shuo-emotion-grid button {
  width: 28px;
  height: 28px;
  padding: 2px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}
.shuo-emotion-grid button:hover {
  border-color: #ffd6dc;
  background: #fff7f8;
}
.shuo-emotion-grid img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.shuo-topic-panel {
  position: absolute;
  left: 112px;
  top: calc(100% - 1px);
  z-index: 20;
  width: 360px;
  padding: 12px;
  border: 1px solid #d9e2ef;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15,23,42,.14);
}
.shuo-topic-panel::before {
  content: "";
  position: absolute;
  left: 24px;
  top: -7px;
  width: 12px;
  height: 12px;
  border-left: 1px solid #d9e2ef;
  border-top: 1px solid #d9e2ef;
  background: #fff;
  transform: rotate(45deg);
}
.shuo-topic-panel h4 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #1d2129;
  font-size: 14px;
}
.shuo-topic-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.shuo-topic-list button {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #edf1f7;
  border-radius: 999px;
  background: #fff;
  color: #4e5969;
  cursor: pointer;
}
.shuo-topic-list button.recommend {
  border-color: #ffd6dc;
  background: #fff7f8;
  color: var(--red);
}
.shuo-topic-list button.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.shuo-emotion-img {
  width: 24px;
  height: 24px;
  display: inline-block;
  margin: 0 2px;
  vertical-align: -6px;
  object-fit: contain;
}
.shuo-tabs {
  height: 48px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  gap: 24px;
}
.shuo-tabs a {
  height: 48px;
  display: inline-flex;
  align-items: center;
  color: #4e5969;
}
.shuo-tabs a.active {
  color: var(--red);
  font-weight: 700;
  box-shadow: inset 0 -3px 0 var(--red);
}
.shuo-feed {
  margin-top: 12px;
}
.shuo-card {
  padding: 22px 24px;
  margin-bottom: 12px;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.shuo-card:hover {
  border-color: #f4c5cd;
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.shuo-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.shuo-avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  object-fit: cover;
  background: #eef0f3;
}
.shuo-author {
  min-width: 0;
  flex: 1;
}
.shuo-author strong {
  display: block;
  color: #1d2129;
  line-height: 1.25;
}
.shuo-author span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.shuo-author .shuo-source {
  color: var(--red);
  font-weight: 600;
}
.shuo-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.shuo-badges span {
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 12px;
  line-height: 22px;
  font-weight: 700;
}
.shuo-card h2 {
  margin: 16px 0 8px;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 800;
}
.shuo-card h2 a:hover {
  color: var(--red);
}
.shuo-desc {
  margin: 0 0 12px;
  color: #4e5969;
  font-size: 15px;
  line-height: 1.75;
}
.shuo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0;
}
.shuo-gallery.count-1 {
  grid-template-columns: minmax(0, 280px);
}
.shuo-gallery.count-2 {
  grid-template-columns: repeat(2, minmax(0, 220px));
}
.shuo-gallery a {
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: #f0f1f3;
}
.shuo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s ease;
}
.shuo-card:hover .shuo-gallery img { transform: scale(1.025); }
.shuo-meta {
  margin-top: 12px;
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid #f4f5f7;
  color: var(--muted);
  font-size: 13px;
}
.shuo-meta span,
.shuo-meta a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
}
.shuo-meta b {
  color: #1d2129;
  font-weight: 700;
}
.shuo-meta a:hover { color: var(--red); }
.shuo-card-read {
  margin-left: auto;
  color: var(--red) !important;
  font-weight: 700;
}
.shuo-pages {
  margin: 18px 0 30px;
  text-align: center;
}
.shuo-pages ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
}
.shuo-pages li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.shuo-pages li::marker { content: ""; }
.shuo-pages a,
.shuo-pages span {
  display: inline-flex;
  min-width: 30px;
  height: 30px;
  margin: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: #4e5969;
}
.shuo-pages .current,
.shuo-pages span.current,
.shuo-pages .active a,
.shuo-pages .active span {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
.shuo-pages .disabled a,
.shuo-pages .disabled span {
  color: #c0c4cc;
  cursor: default;
}
.shuo-panel {
  padding: 18px;
  margin-bottom: 16px;
}
.shuo-userbox {
  text-align: center;
  background:
    linear-gradient(180deg, var(--red-soft-2), #fff 54%),
    #fff;
}
.shuo-userbox strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}
.shuo-userbox p {
  margin: 0 0 14px;
  color: var(--muted);
}
.shuo-user-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.shuo-userbox a,
.shuo-user-actions a {
  display: inline-flex;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
}
.shuo-userbox a:hover,
.shuo-user-actions a:hover {
  color: #fff;
  background: #e61f3a;
}
.shuo-user-actions a + a {
  border: 1px solid rgba(255,36,66,.28);
  background: #fff;
  color: var(--red);
}
.shuo-user-actions a + a:hover {
  background: var(--red-soft);
  color: var(--red);
}
.shuo-panel-title {
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 800;
}
.shuo-hot-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: hot;
}
.shuo-hot-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid #f4f5f7;
}
.shuo-hot-list li:last-child { border-bottom: 0; }
.shuo-hot-list li::before {
  counter-increment: hot;
  content: counter(hot);
  position: absolute;
  left: 0;
  top: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  font-weight: 800;
}
.shuo-hot-list a {
  display: block;
  color: #333;
  line-height: 1.45;
}
.shuo-hot-list span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}
.shuo-side-list a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #f4f5f7;
  color: #333;
}
.shuo-side-list a:last-child { border-bottom: 0; }
.shuo-empty {
  padding: 46px 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  text-align: center;
}
.shuo-crumb {
  margin-bottom: 12px;
  color: var(--muted);
}
.shuo-crumb span { margin: 0 6px; }
.shuo-detail-card {
  padding: 30px 34px;
}
.shuo-detail-card h1 {
  margin: 20px 0 18px;
  font-size: 30px;
  line-height: 1.35;
  letter-spacing: 0;
}
.shuo-post-content {
  color: #2b2f36;
  font-size: 16px;
  line-height: 1.9;
  word-break: break-word;
}
.shuo-detail-gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.shuo-detail-gallery a {
  border-radius: 6px;
  overflow: hidden;
  background: #f0f1f3;
}
.shuo-detail-gallery img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
}
.shuo-detail-actions {
  margin-top: 22px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.shuo-detail-actions span,
.shuo-detail-actions a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
}
.shuo-detail-actions b {
  color: #1d2129;
  font-weight: 800;
}
.shuo-detail-actions a:hover { color: var(--red); }
.shuo-detail-write {
  margin-left: auto;
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red) !important;
  font-weight: 700;
}
.shuo-detail-write:hover {
  background: var(--red);
  color: #fff !important;
}
.shuo-comments {
  margin-top: 16px;
  padding: 22px 28px;
}
.shuo-section-title {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
}
.shuo-section-title span {
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 12px;
}
.shuo-comment {
  display: flex;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid #f4f5f7;
}
.shuo-section-title + .shuo-comment,
.shuo-comment:first-of-type { border-top: 0; }
.shuo-comment-body {
  min-width: 0;
  flex: 1;
}
.shuo-comment-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.shuo-comment-head span {
  color: var(--muted);
  font-size: 12px;
}
.shuo-comment-content {
  margin-top: 6px;
  color: #2b2f36;
  line-height: 1.8;
}
.shuo-comment-images {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.shuo-comment-images a {
  width: 92px;
  height: 68px;
  border-radius: 5px;
  overflow: hidden;
  background: #f0f1f3;
}
.shuo-comment-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shuo-replies {
  margin-top: 10px;
  padding: 10px 12px;
  border-left: 3px solid #ffd6dc;
  border-radius: 6px;
  background: #f7f8fa;
}
.shuo-reply {
  color: #4e5969;
  font-size: 13px;
  line-height: 1.7;
}
.shuo-reply em {
  color: var(--red);
  font-style: normal;
}
@media (max-width: 1200px) {
  .shuo-wrap,
  .shuo-main { width: 1120px; }
  .shuo-main { grid-template-columns: 128px minmax(0, 680px) 284px; gap: 18px; }
  .shuo-main.detail-layout { grid-template-columns: minmax(0, 760px) 300px; }
}
@media (max-width: 980px) {
  .shuo-wrap,
  .shuo-main { width: auto; margin-left: 12px; margin-right: 12px; }
  .shuo-main,
  .shuo-main.detail-layout { display: block; }
  .shuo-left,
  .shuo-right { display: none; }
  .shuo-brand span,
  .shuo-city { display: none; }
}
@media (max-width: 640px) {
  .shuo-topbar .shuo-wrap { gap: 14px; }
  .shuo-nav { gap: 16px; }
  .shuo-publish { padding: 0 12px; }
  .shuo-channel { display: block; }
  .shuo-channel-stats { margin-top: 12px; }
  .shuo-compose-card { align-items: flex-start; flex-direction: column; }
  .shuo-quick-toolbar {
    align-items: stretch;
    flex-direction: column;
    padding: 10px 12px;
  }
  .shuo-quick-actions {
    justify-content: space-between;
  }
  .shuo-quick-actions button {
    width: 112px;
    border-radius: 6px;
  }
  .shuo-meta { flex-wrap: wrap; }
  .shuo-card-read { width: 100%; margin-left: 0; }
  .shuo-card,
  .shuo-detail-card,
  .shuo-comments { padding: 18px 16px; }
  .shuo-gallery,
  .shuo-gallery.count-2,
  .shuo-detail-gallery { grid-template-columns: 1fr; }
}
