:root {
  --ink: #1f2a36;
  --muted: #667085;
  --line: #d9e0e8;
  --soft: #f4f7fa;
  --paper: #ffffff;
  --brand: #0c6b58;
  --brand-dark: #084a3d;
  --accent: #c27918;
  --blue: #245b9e;
  --danger: #b42318;
  --shadow: 0 16px 40px rgba(31, 42, 54, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  background: #f8fafc;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  color: #eef8f5;
  background: var(--brand-dark);
  font-size: 13px;
}

.topbar-inner,
.nav-row,
.footer-grid,
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-inner {
  min-height: 34px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-row {
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(12, 107, 88, 0.35);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 9px 12px;
  border-radius: 6px;
  color: #344054;
  font-size: 14px;
}

.main-nav a:hover {
  background: var(--soft);
  color: var(--brand);
}

.main-nav a.active {
  color: #fff;
  background: var(--brand);
}

.account-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.account-name {
  max-width: 220px;
  overflow: hidden;
  color: #344054;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero {
  min-height: 430px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(8, 74, 61, 0.94), rgba(36, 91, 158, 0.82)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.09) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 74px);
}

.admin-hero {
  padding: 48px 0 42px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(8, 74, 61, 0.95), rgba(36, 91, 158, 0.86)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 80px);
}

.admin-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(32px, 4vw, 48px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 40px;
  align-items: center;
  padding: 64px 0 52px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #ffd38a;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.25;
}

.lead {
  max-width: 640px;
  color: #e7f0f8;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}

.btn.primary {
  color: #fff;
  background: var(--accent);
}

.btn.secondary {
  color: var(--brand-dark);
  background: #fff;
  border-color: var(--line);
}

.hero-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.metric {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.category-band {
  padding: 24px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.category-card {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.category-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 8px;
  font-weight: 800;
}

.content-grid {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 24px;
  padding: 38px 0;
}

.filter-panel,
.admin-panel,
.publish-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(31, 42, 54, 0.06);
}

.filter-panel {
  position: sticky;
  top: 118px;
  align-self: start;
  padding: 18px;
}

.filter-panel h2 {
  font-size: 20px;
}

.filter-buttons {
  display: grid;
  gap: 8px;
}

.filter-buttons button {
  width: 100%;
  padding: 10px 12px;
  color: #344054;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.filter-buttons button.active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.notice {
  margin-top: 18px;
  padding: 14px;
  background: #fff7e8;
  border: 1px solid #f4d7a8;
  border-radius: 8px;
}

.notice p {
  margin-bottom: 0;
  color: #7a4b10;
  font-size: 14px;
}

.listing-area {
  min-width: 0;
}

.section-head {
  margin-bottom: 18px;
}

.section-head span {
  color: var(--muted);
}

.listing-list {
  display: grid;
  gap: 12px;
}

.listing-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 8px;
}

.listing-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 9px;
  color: #344054;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
}

.tag.vip {
  color: #8a4b00;
  background: #fff4dc;
  border-color: #efc36d;
}

.tag.live {
  color: #067647;
  background: #ecfdf3;
  border-color: #abefc6;
}

.listing-side {
  min-width: 120px;
  color: var(--muted);
  text-align: right;
  font-size: 14px;
}

.membership,
.admin {
  padding: 34px 0;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.plan {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.plan.featured {
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

.price {
  color: var(--brand);
  font-size: 28px;
  font-weight: 800;
}

.plan span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  font-size: 13px;
}

.publish-band {
  padding: 42px 0;
  background: #eef4f1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.publish-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: start;
}

.publish-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 20px;
}

.publish-form label {
  display: grid;
  gap: 6px;
  color: #344054;
  font-weight: 700;
}

.publish-form label:nth-child(4),
.publish-form label:nth-child(5),
.publish-form label:nth-child(6),
.publish-form .checkline,
.publish-form button,
.form-note {
  grid-column: 1 / -1;
}

.checkline {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400 !important;
}

.checkline input {
  width: auto;
  margin-top: 6px;
}

.checkline a,
.site-footer a {
  color: #ffd38a;
  text-decoration: underline;
}

.checkline a {
  color: var(--brand);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd8e3;
  border-radius: 6px;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.auth-card .auth-form {
  gap: 16px;
}

.auth-card .auth-form label {
  font-size: 14px;
}

.auth-card .auth-form input {
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 15px;
}

.agreement-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.agreement-note a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.admin-tabs button,
.small-btn {
  padding: 9px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.admin-tabs button.active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.admin-panel {
  min-height: 280px;
  padding: 18px;
  overflow-x: auto;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat {
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat strong {
  display: block;
  font-size: 30px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: #344054;
  background: var(--soft);
}

.small-btn.danger {
  color: var(--danger);
  border-color: #fecdca;
}

.admin-tip {
  margin: -6px 0 14px;
  padding: 10px 12px;
  color: #475467;
  background: #eef4f1;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
}

.empty-state {
  display: grid;
  min-height: 220px;
  place-items: center;
  text-align: center;
}

.empty-state h3 {
  margin-bottom: 6px;
}

.content-form {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.site-footer {
  padding: 28px 0;
  color: #dce9e6;
  background: #18262f;
}

.site-footer p {
  margin-bottom: 4px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(8px);
}

.modal.show {
  display: flex;
}

.modal-card {
  position: relative;
  width: min(460px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: 28px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(12, 107, 88, 0.42), rgba(194, 121, 24, 0.34)) border-box;
  border: 1px solid transparent;
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
}

.modal-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--blue));
  content: "";
}

.modal-card.wide {
  width: min(760px, 100%);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  color: #344054;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.modal-close:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 10px 42px 18px 0;
  padding: 4px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.auth-tabs button {
  padding: 10px 12px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.auth-tabs button.active {
  color: #fff;
  background: var(--brand);
}

.auth-form,
.content-form {
  display: grid;
  gap: 14px;
}

.auth-form label,
.content-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.hidden {
  display: none !important;
}

.detail-box {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-box p {
  margin-bottom: 8px;
}

.detail-content {
  display: grid;
  gap: 16px;
  margin: 20px 0;
}

.detail-content section {
  padding: 16px;
  background: #fbfcfe;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-content h3,
.profile-section h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.detail-content p {
  margin-bottom: 0;
}

.detail-content ul {
  margin: 0;
  padding-left: 20px;
}

.detail-content li + li {
  margin-top: 6px;
}

.payment-card {
  width: min(520px, 100%);
}

.payment-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0;
}

.payment-box div,
.profile-summary div,
.mini-plans article,
.record-row {
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.payment-box span,
.profile-summary span,
.record-row span,
.mini-plans span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.payment-box strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
}

.payment-message,
.muted-text {
  color: var(--muted);
}

.pay-code {
  display: grid;
  width: 190px;
  height: 190px;
  margin: 18px auto 4px;
  place-items: center;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pay-code img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.profile-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.profile-summary strong {
  display: block;
  margin-top: 3px;
  font-size: 20px;
}

.profile-section {
  margin-top: 20px;
}

.mini-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-plans article {
  display: grid;
  gap: 8px;
}

.record-list {
  display: grid;
  gap: 10px;
}

.record-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 0.8fr 0.8fr;
  gap: 10px;
  align-items: center;
}

.record-row strong {
  color: var(--ink);
}

.paywall-box {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.paywall-preview {
  position: relative;
  padding: 20px;
  background: #fbfcfe;
}

.paywall-preview p {
  margin-bottom: 0;
  color: var(--muted);
}

.blur-overlay {
  position: relative;
  margin-top: 12px;
  padding: 28px 20px;
  background: linear-gradient(to bottom, rgba(244, 247, 250, 0), rgba(244, 247, 250, 0.95));
  text-align: center;
  color: var(--brand);
  font-weight: 700;
  font-size: 15px;
  border-top: 1px dashed var(--line);
}

.paywall-info {
  padding: 22px;
  text-align: center;
  background: #fff;
  border-top: 1px solid var(--line);
}

.doc-updated {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.paywall-info .pay-code {
  display: grid;
  width: 180px;
  height: 180px;
  margin: 14px auto 0;
  place-items: center;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.paywall-info .pay-code img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.paywall-price {
  color: var(--brand);
  font-size: 36px;
  font-weight: 800;
  margin: 10px 0 4px;
}

.paywall-discount {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 16px;
}

.tag.view-count {
  color: var(--blue);
  background: #e8f0fe;
  border-color: #a8c7fa;
}

.notice-card h2 {
  width: min(430px, 100%);
  text-align: center;
}

.notice-card h2 {
  margin: 8px 34px 8px;
}

.notice-card p {
  color: #475467;
}

.modal-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin: 10px auto 8px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 10px;
  font-size: 24px;
  font-weight: 800;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .nav-row,
  .topbar-inner,
  .footer-grid,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
  }

  .account-bar {
    width: 100%;
    margin-left: 0;
  }

  .hero-grid,
  .content-grid,
  .publish-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }

  .category-grid,
  .plans,
  .mini-plans,
  .profile-summary,
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .record-row {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 13px;
  color: rgba(220, 233, 230, 0.6);
}

.about-content {
  padding: 48px 0;
}

.about-section {
  margin-bottom: 42px;
}

.about-section h2 {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--brand);
}

.about-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 18px;
}

.about-service-item {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(31, 42, 54, 0.06);
}

.about-service-item h3 {
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 18px;
}

.about-service-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.about-list {
  padding-left: 20px;
}

.about-list li {
  margin-bottom: 10px;
  font-size: 15px;
}

.about-list li strong {
  color: var(--brand);
}

.about-contact-info p {
  margin-bottom: 6px;
  font-size: 15px;
}

.contact-content {
  padding: 48px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(31, 42, 54, 0.06);
}

.contact-info h2 {
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: var(--soft);
  border-radius: 10px;
  font-size: 20px;
}

.contact-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
}

.contact-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.contact-form-wrapper {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(31, 42, 54, 0.06);
}

.contact-form-wrapper h2 {
  margin-bottom: 24px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.contact-form textarea {
  resize: vertical;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 28px;
}

.page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #344054;
  transition: all 0.2s ease;
}

.page-btn:hover:not(:disabled) {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(12, 107, 88, 0.3);
}

.page-btn.active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 2px 8px rgba(12, 107, 88, 0.25);
}

.page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.page-dots {
  padding: 0 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 38px;
}

.page-info {
  margin-left: 12px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 768px) {
  .about-services {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 20px, 1180px);
  }

  .hero-grid {
    padding: 42px 0;
  }

  .category-grid,
  .plans,
  .mini-plans,
  .profile-summary,
  .stat-grid,
  .publish-form {
    grid-template-columns: 1fr;
  }

  .payment-box,
  .record-row {
    grid-template-columns: 1fr;
  }

  .listing-card {
    grid-template-columns: 1fr;
  }

  .listing-side {
    text-align: left;
  }
}
