* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f5f6f8;
  color: #222;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
}

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

button {
  border: 0;
  cursor: pointer;
}

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


/* ================================
   APP
================================ */

.app {
  width: 100%;
  max-width: 640px;
  min-height: 100vh;
  margin: 0 auto;
  background: #f5f6f8;
  padding-bottom: 80px;
}


/* ================================
   首页头部
================================ */

.home-header {
  padding:
    18px
    14px
    30px;

  background:
    linear-gradient(
      135deg,
      #ff6417,
      #ff7d20
    );

  color: white;

  border-radius:
    0
    0
    20px
    20px;
}

.brand {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}

.location-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.location-button {
  color: white;
  background: transparent;
  white-space: nowrap;
  font-size: 14px;
  padding: 0;
}

.search-box {
  flex: 1;
  height: 38px;
  border-radius: 20px;
  background: white;
  color: #999;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.search-box span {
  font-size: 21px;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  margin-left: 6px;
  font-size: 14px;
}

.complaint {
  color: white;
  background: rgba(0,0,0,.22);
  border-radius: 18px;
  padding: 8px 12px;
  font-size: 12px;
}


/* ================================
   快捷入口
================================ */

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;

  margin:
    -18px
    10px
    10px;

  position: relative;
  z-index: 3;

  background: white;

  border-radius: 10px;

  padding: 12px 8px;

  box-shadow:
    0 4px 18px
    rgba(0,0,0,.05);
}

.quick-actions a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;

  font-size: 13px;
}

.quick-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff4ec;
  font-size: 23px;
}


/* ================================
   消息
================================ */

.notice-bar {
  margin: 10px;
  background: white;
  border-radius: 8px;
  padding: 12px;
  font-size: 13px;
  display: flex;
  overflow: hidden;
}

.notice-title { flex: 0 0 auto; }
.notice-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.notice-enter { animation: noticeSlide .35s ease-out; }
@keyframes noticeSlide { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.notice-bar span {
  color: #ff6a1a;
  font-weight: 700;
  margin-right: 10px;
}

.notice-bar strong {
  font-weight: 500;
}


/* ================================
   定位 Banner
================================ */

.location-banner {
  margin: 10px;
  border-radius: 8px;

  padding:
    16px
    18px;

  background:
    linear-gradient(
      135deg,
      #0c9af5,
      #19a7ef
    );

  color: white;

  display: flex;
  align-items: center;
  justify-content: space-between;

  overflow: hidden;
}

.location-banner strong {
  font-size: 15px;
}

.location-banner strong b { font-size: 18px; }

.location-banner p {
  margin: 5px 0 9px;
  font-size: 12px;
  opacity: .9;
}

.location-banner button {
  background: #ff9d31;
  color: white;
  border-radius: 5px;
  padding: 7px 12px;
  font-size: 12px;
}

.banner-building {
  font-size: 65px;
  opacity: .8;
}


/* ================================
   统计
================================ */

.stats-grid {
  margin: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.stat-card {
  background: white;
  border-radius: 9px;
  padding: 14px;
  min-height: 105px;
}

.stat-card.big {
  grid-row: span 2;
  background:
    linear-gradient(
      135deg,
      #fff4e7,
      #ffe5c8
    );
}

.stat-card.blue {
  background:
    linear-gradient(
      135deg,
      #e9f3ff,
      #dcecff
    );
}

.stat-card.pink {
  background:
    linear-gradient(
      135deg,
      #fff0f0,
      #ffe0df
    );
}

.stat-card span,
.stat-card small {
  display: block;
  color: #888;
}

.stat-card span {
  font-size: 13px;
}

.stat-card strong {
  display: block;
  margin: 8px 0;
  font-size: 25px;
}

.stat-card small {
  font-size: 11px;
}


/* ================================
   Banner
================================ */

.promo-banner {
  margin: 10px;
  min-height: 86px;
  border-radius: 8px;

  padding:
    15px
    20px;

  background:
    linear-gradient(
      120deg,
      #55b9ff,
      #257df2
    );

  color: white;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.promo-banner strong,
.promo-banner span {
  display: block;
}

.promo-banner strong {
  font-size: 18px;
}

.promo-banner span {
  margin-top: 5px;
  font-size: 12px;
  opacity: .9;
}

.promo-icon {
  font-size: 55px;
}


/* ================================
   内容
================================ */

.content {
  padding: 0 10px;
}

.section-tabs {
  display: flex;
  background: white;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.section-tabs button {
  flex: 1;
  background: white;
  padding: 13px;
  color: #999;
}

.section-tabs button.active {
  color: #ff6417;
  font-weight: 700;
}


/* ================================
   店铺卡片
================================ */

.section-subtitle {
  padding: 13px 4px 8px;
  font-size: 14px;
  font-weight: 700;
  color: #444;
}

.shop-card {
  display: flex;
  gap: 12px;

  background: white;

  padding: 12px;

  border-radius: 10px;

  margin-bottom: 8px;

  cursor: pointer;

  transition: transform .15s;
}

.shop-card:active {
  transform: scale(.99);
}

.shop-image {
  position: relative;
  width: 105px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
}

.shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      135deg,
      #ffe6d5,
      #fff4eb
    );
  font-size: 38px;
}

.shop-badge {
  position: absolute;
  left: 5px;
  top: 5px;
  background: #ff6417;
  color: white;
  font-size: 10px;
  border-radius: 4px;
  padding: 3px 5px;
}

.shop-info {
  flex: 1;
  min-width: 0;
}

.shop-info h3 {
  margin: 0 0 7px;
  font-size: 15px;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-meta {
  display: flex;
  gap: 7px;
  margin-bottom: 7px;
}

.shop-meta span {
  background: #f5f5f5;
  color: #777;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 4px;
}

.shop-location {
  font-size: 11px;
  color: #999;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 7px;
}

.shop-bottom strong {
  color: #ff5d13;
  font-size: 17px;
}

.shop-bottom span {
  font-size: 11px;
  color: #999;
}


/* ================================
   底部导航
================================ */

#bottomNav {
  position: fixed;
  left: 50%;
  bottom: 0;

  transform: translateX(-50%);

  width: 100%;
  max-width: 640px;

  height: 68px;

  background: white;

  border-top:
    1px solid #eee;

  display: grid;
  grid-template-columns:
    repeat(3, 1fr);

  z-index: 20;
}

#bottomNav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #999;
  gap: 3px;
}

#bottomNav a span {
  font-size: 22px;
}

#bottomNav a small {
  font-size: 10px;
}

#bottomNav a.active {
  color: #ff6417;
}

#bottomNav .publish-nav {
  position: relative;
}

#bottomNav .publish-nav b {
  width: 48px;
  height: 48px;

  margin-top: -25px;

  border-radius: 50%;

  background: #ff6417;

  color: white;

  font-size: 34px;
  font-weight: 300;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 5px 14px
    rgba(255,100,23,.3);
}


/* ================================
   简单头部
================================ */

.simple-header {
  height: 58px;
  background: white;

  display: grid;
  grid-template-columns: 50px 1fr 50px;

  align-items: center;

  border-bottom:
    1px solid #eee;

  position: sticky;
  top: 0;
  z-index: 10;
}

.simple-header h1 {
  text-align: center;
  font-size: 18px;
  margin: 0;
}

.back {
  font-size: 38px;
  text-align: center;
  color: #555;
}


/* ================================
   发布页
================================ */

.publish-page {
  padding: 10px;
}

.form-card {
  background: white;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
}

.upload-box {
  min-height: 180px;
  border: 2px dashed #ddd;
  border-radius: 8px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #666;

  cursor: pointer;
}

.camera-icon {
  font-size: 55px;
  margin-bottom: 10px;
}

.upload-box strong {
  font-size: 17px;
}

.upload-box span {
  margin-top: 5px;
  color: #888;
}

.image-preview {
  display: grid;
  grid-template-columns:
    repeat(4, 1fr);

  gap: 7px;

  margin-top: 10px;
}

.image-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 7px;
}

.form-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
}

.radio-group {
  display: flex;
  gap: 30px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 7px;
}

.radio-group input {
  accent-color: #ff6417;
}

.form-field {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.form-field:last-child {
  border-bottom: 0;
}

.form-field > span {
  display: block;
  font-size: 15px;
  margin-bottom: 9px;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;

  font-size: 15px;

  color: #333;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #aaa;
}

.form-field select {
  color: #555;
}

.select-field {
  width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}

.select-field b {
  color: #aaa;
}

.select-field > span {
  font-size: 25px;
  color: #aaa;
}

.textarea-field textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.7;
}

.submit-button {
  width: 100%;
  height: 48px;
  border-radius: 24px;

  color: white;

  background:
    linear-gradient(
      135deg,
      #ff6417,
      #ff7d20
    );

  font-size: 16px;
  font-weight: 700;

  box-shadow:
    0 8px 20px
    rgba(255,100,23,.2);
}

.form-tip {
  text-align: center;
  color: #aaa;
  font-size: 11px;
  padding: 15px;
}


/* ================================
   我的
================================ */

.my-header {
  background:
    linear-gradient(
      135deg,
      #ff6417,
      #ff7d20
    );

  color: white;

  padding:
    15px
    16px
    30px;

  border-radius:
    0
    0
    25px
    25px;
}

.my-header-top {
  display: flex;
  justify-content: space-between;
}

.my-header-top button {
  color: white;
  background: transparent;
  font-size: 24px;
}

.login-tip {
  margin-top: 18px;

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

.login-icon {
  width: 55px;
  height: 55px;

  border-radius: 50%;

  background: rgba(255,255,255,.25);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 25px;
}

.login-text {
  flex: 1;
}

.login-text strong {
  font-size: 18px;
}

.login-text p {
  margin: 4px 0 0;
  font-size: 11px;
  opacity: .85;
}

.orange-button {
  background: white;
  color: #ff6417;
  border-radius: 20px;
  padding: 9px 16px;
  font-size: 13px;
}

.register-tip {
  margin-top: 16px;
  font-size: 12px;
}

.register-tip a {
  color: white;
  text-decoration: underline;
  margin-left: 5px;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
}

.avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;

  background: white;
  color: #ff6417;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  font-weight: 700;
}

.profile-info h2 {
  margin: 0;
  font-size: 19px;
}

.profile-info p {
  margin: 5px 0 0;
  font-size: 12px;
  opacity: .8;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  margin-top: 22px;
}

.profile-stats strong,
.profile-stats span {
  display: block;
}

.profile-stats strong {
  font-size: 22px;
}

.profile-stats span {
  margin-top: 4px;
  font-size: 12px;
}

.my-content {
  padding: 12px;
}

.guest-placeholder { height: 110px; background: white; border-radius: 10px; margin-bottom: 12px; }

.menu-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.menu-card a {
  min-height: 58px;

  display: flex;
  align-items: center;
  gap: 13px;

  padding: 0 16px;

  border-bottom: 1px solid #eee;
}

.menu-card a:last-child {
  border-bottom: 0;
}

.menu-card b {
  margin-left: auto;
  color: #bbb;
  font-size: 24px;
}

.menu-card small {
  margin-left: auto;
  color: #ff6417;
}

.menu-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
}

.menu-icon.blue {
  background: #e9f3ff;
  color: #287ef0;
}

.menu-icon.orange {
  background: #fff0e8;
  color: #ff6417;
}

.menu-icon.green {
  background: #e9fff5;
  color: #22b77a;
}

.menu-icon.purple {
  background: #f1eaff;
  color: #8559df;
}

.menu-icon.yellow {
  background: #fff8df;
  color: #e8ad00;
}

.logout-button {
  width: 100%;
  margin: 12px 0;
  height: 46px;
  background: white;
  border-radius: 10px;
  color: #ff6417;
}

.page-section-title {
  font-size: 16px;
  margin: 18px 3px 10px;
}


/* ================================
   我的发布
================================ */

.my-shop-item {
  background: white;
  border-radius: 10px;
  padding: 13px;
  margin-bottom: 8px;

  display: flex;
  align-items: center;
  gap: 10px;
}

.my-shop-item > div {
  flex: 1;
  min-width: 0;
}

.my-shop-item strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.my-shop-item p {
  margin: 5px 0;
  color: #888;
  font-size: 12px;
}

.my-shop-item small {
  color: #aaa;
  font-size: 10px;
}

.delete-shop {
  color: #ff4d4f;
  background: #fff1f1;
  border-radius: 5px;
  padding: 7px 10px;
}


/* ================================
   登录注册
================================ */

.auth-body {
  background:
    linear-gradient(
      135deg,
      #fff5ef,
      #f5f6f8
    );
}

.auth-page {
  max-width: 440px;
  margin: 0 auto;
  min-height: 100vh;

  padding:
    70px
    25px
    30px;
}

.auth-logo {
  width: 76px;
  height: 76px;

  margin: 0 auto 20px;

  border-radius: 22px;

  background:
    linear-gradient(
      135deg,
      #ff6417,
      #ff8c37
    );

  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 40px;
}

.auth-page h1 {
  text-align: center;
  margin: 0;
  font-size: 26px;
}

.auth-subtitle {
  text-align: center;
  color: #999;
  font-size: 13px;
  margin: 8px 0 35px;
}

.auth-input {
  display: block;
  background: white;
  border-radius: 12px;
  padding: 13px 15px;
  margin-bottom: 12px;
}

.auth-input span {
  display: block;
  color: #888;
  font-size: 11px;
  margin-bottom: 5px;
}

.auth-input input {
  width: 100%;
  border: 0;
  outline: 0;
  font-size: 16px;
}

.auth-link {
  text-align: center;
  margin-top: 20px;
  color: #999;
  font-size: 13px;
}

.auth-link a {
  color: #ff6417;
}


/* ================================
   店铺详情
================================ */

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: white;
}

.detail-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.detail-cover {
  height: 280px;
  background:
    linear-gradient(
      135deg,
      #ffe6d5,
      #fff4ec
    );

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 100px;
}

.detail-card {
  background: white;
  margin-top: 8px;
  padding: 17px;
}

.detail-badges {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.badge-orange,
.badge-gray {
  font-size: 11px;
  padding: 4px 7px;
  border-radius: 4px;
}

.badge-orange {
  color: #ff6417;
  background: #fff0e8;
}

.badge-gray {
  color: #888;
  background: #f4f4f4;
}

.detail-card h1 {
  margin: 0;
  font-size: 21px;
  line-height: 1.4;
}

.price-box {
  margin: 20px 0;
  padding: 14px;
  border-radius: 10px;
  background: #fff7f1;
}

.price-box span {
  color: #888;
  margin-right: 10px;
}

.price-box strong {
  color: #ff6417;
  font-size: 26px;
}

.price-box small {
  color: #999;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.detail-grid span,
.detail-grid strong {
  display: block;
}

.detail-grid span {
  color: #999;
  font-size: 12px;
  margin-bottom: 5px;
}

.detail-grid strong {
  font-size: 14px;
}

.detail-row {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.detail-row span,
.detail-row strong {
  display: block;
}

.detail-row span {
  color: #999;
  font-size: 12px;
  margin-bottom: 6px;
}

.detail-row strong {
  font-size: 14px;
}

.detail-description {
  padding: 15px 0;
}

.detail-description h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.detail-description p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  white-space: pre-wrap;
}

.seller-box {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px;
  background: #f8f8f8;
  border-radius: 10px;
}

.seller-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ff6417;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seller-box p {
  margin: 4px 0 0;
  color: #999;
  font-size: 12px;
}


/* ================================
   消息
================================ */

.message-page {
  padding: 20px 10px;
}


/* ================================
   空状态
================================ */

.empty {
  background: white;
  border-radius: 10px;
  padding: 50px 20px;
  text-align: center;
  color: #aaa;
}

.empty strong {
  display: block;
  color: #666;
  margin-bottom: 8px;
}

.empty a {
  display: inline-block;
  margin-top: 12px;
  color: #ff6417;
}

.empty-icon {
  font-size: 50px;
  margin-bottom: 10px;
}


/* ================================
   Loading
================================ */

.loading {
  padding: 40px 20px;
  text-align: center;
  color: #aaa;
}


/* ================================
   Toast
================================ */

.toast {
  position: fixed;
  left: 50%;
  bottom: 90px;

  transform:
    translateX(-50%)
    translateY(15px);

  padding:
    10px
    16px;

  background: rgba(0,0,0,.78);
  color: white;

  border-radius: 7px;

  font-size: 13px;

  opacity: 0;

  transition: .2s;

  z-index: 100;
}

.toast.show {
  opacity: 1;

  transform:
    translateX(-50%)
    translateY(0);
}


/* ================================
   地区选择弹窗
================================ */

.modal-overlay {
  position: fixed;
  inset: 0;

  background:
    rgba(0,0,0,.45);

  z-index: 100;

  display: flex;
  align-items: flex-end;
}

.area-modal {
  width: 100%;
  max-width: 640px;
  max-height: 75vh;

  margin: 0 auto;

  background: white;

  border-radius:
    18px
    18px
    0
    0;

  overflow: hidden;
}

.modal-header {
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 17px;

  border-bottom:
    1px solid #eee;
}

.modal-close {
  width: 35px;
  height: 35px;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 23px;
  color: #777;
}

.area-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  height: 55vh;
}

.area-column {
  overflow-y: auto;
}

.area-column:first-child {
  background: #f7f7f7;
}

.area-title {
  padding: 12px;
  color: #999;
  font-size: 12px;
}

.area-item {
  width: 100%;
  padding: 12px 15px;
  text-align: left;
  background: transparent;
  font-size: 14px;
  color: #555;
}

.area-item.active {
  color: #ff6417;
  background: white;
  font-weight: 700;
}


/* ================================
   手机适配
================================ */

@media (min-width: 641px) {

  #bottomNav {
    border-radius:
      10px
      10px
      0
      0;
  }

}

@media (max-width: 360px) {

  .brand {
    font-size: 15px;
  }

  .location-row {
    gap: 4px;
  }

  .location-button {
    font-size: 12px;
  }

  .complaint {
    padding: 7px;
  }

}

.modal-overlay {
  position: fixed !important;
  inset: 0 !important;

  z-index: 99999 !important;

  pointer-events: auto !important;

  display: flex;
  align-items: flex-end;

  background: rgba(0, 0, 0, .45);
}

.area-modal {
  position: relative;

  z-index: 100000;

  pointer-events: auto;

  width: 100%;
  max-width: 640px;

  max-height: 75vh;

  margin: 0 auto;

  background: #fff;

  border-radius: 18px 18px 0 0;

  overflow: hidden;
}

.area-body {
  position: relative;

  z-index: 100001;

  display: grid;

  grid-template-columns:
    1fr 1.4fr;

  height: 55vh;
}

.area-column {
  position: relative;

  z-index: 100002;

  overflow-y: auto;

  pointer-events: auto;
}

.area-item {
  position: relative;

  z-index: 100003;

  display: block;

  width: 100%;

  padding: 12px 15px;

  text-align: left;

  background: transparent;

  color: #555;

  cursor: pointer;

  pointer-events: auto;

  touch-action: manipulation;
}

.city-column {
  background: #fff;
}

.city-item {
  min-height: 44px;
}

.location-value {
  flex: 1;
  text-align: left;
  color: #333;
  font-size: 15px;
}

.location-arrow {
  font-size: 25px;
  color: #aaa;
}

/* 省市选择底部操作区 */
.area-modal { max-height: 88vh; display: flex; flex-direction: column; }
.area-body { height: min(52vh, 440px); min-height: 250px; flex: 1 1 auto; }
.area-selected { padding: 13px 18px 8px; color: #999; background: #fff; font-size: 13px; border-top: 1px solid #f0f0f0; }
.area-selected strong { margin-left: 5px; color: #ff6417; font-size: 15px; }
.area-footer { display: grid; grid-template-columns: 1fr 2fr; gap: 12px; padding: 10px 16px calc(14px + env(safe-area-inset-bottom)); background: #fff; box-shadow: 0 -5px 18px rgba(0,0,0,.045); }
.area-footer button { height: 52px; border-radius: 14px; font-size: 16px; font-weight: 700; transition: transform .12s, opacity .12s; }
.area-footer button:active { transform: scale(.98); opacity: .88; }
.area-cancel { color: #666; background: #f2f3f5; border: 1px solid #e8e8e8; }
.area-confirm { color: #fff; background: linear-gradient(135deg,#ff6417,#ff8d36); box-shadow: 0 7px 16px rgba(255,100,23,.24); }

@media (max-height: 650px) {
  .area-modal { max-height: 94vh; }
  .area-body { height: 43vh; min-height: 190px; }
  .area-footer button { height: 48px; }
}

/* 管理后台 */
.admin-body { margin: 0; background: #f2f4f7; }
.admin-shell { max-width: 1100px; margin: 0 auto; padding: 20px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; color: #fff; background: linear-gradient(135deg,#ff6417,#ff8a32); border-radius: 14px; }
.admin-header h1 { margin: 0; font-size: 25px; }
.admin-header p { margin: 5px 0 0; opacity: .85; }
.admin-header button { padding: 8px 16px; color: #ff6417; background: #fff; border-radius: 8px; }
.admin-tabs { display: flex; gap: 10px; margin: 16px 0; }
.admin-tabs button { padding: 11px 24px; background: #fff; border-radius: 8px; }
.admin-tabs button.active { color: #fff; background: #ff6417; }
.admin-list { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 14px; }
.admin-card { padding: 16px; background: #fff; border-radius: 12px; box-shadow: 0 3px 12px rgba(0,0,0,.04); }
.admin-card-head { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 12px; color: #888; font-size: 12px; }
.admin-card label { display: block; margin: 10px 0; color: #666; font-size: 12px; }
.admin-card label > input[type="text"], .admin-card label > input:not([type]), .admin-card select { width: 100%; margin-top: 6px; padding: 9px; border: 1px solid #ddd; border-radius: 7px; }
.admin-thumb { width: 100%; height: 150px; object-fit: cover; border-radius: 8px; }
.empty-thumb { display: flex; align-items: center; justify-content: center; color: #aaa; background: #f5f5f5; }
.admin-options { display: flex; justify-content: space-between; align-items: center; }
.admin-file { padding: 10px; background: #f7f7f7; border-radius: 7px; }
.admin-file input { display: block; margin-top: 7px; max-width: 100%; }
.admin-actions { display: flex; gap: 8px; }
.admin-actions button, .complaint-status { flex: 1; padding: 9px; border-radius: 7px; }
.admin-save { color: #fff; background: #ff6417; }
.admin-delete { color: #d33; background: #fff0f0; }
.complaint-images { display: flex; gap: 7px; margin: 10px 0; }
.complaint-images img { width: 70px; height: 70px; object-fit: cover; border-radius: 6px; }
.member-summary { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; padding: 12px; color: #777; background: #f7f8fa; border-radius: 8px; font-size: 13px; }
.member-summary strong { color: #ff6417; font-size: 20px; }
.member-save { width: 100%; padding: 11px; border-radius: 8px; }
.settings-card { max-width: 680px; }
.settings-card h2 { margin: 0 0 5px; font-size: 20px; }
.settings-card > p { margin: 0 0 20px; color: #999; font-size: 13px; }
.settings-card textarea { width: 100%; min-height: 110px; margin-top: 6px; padding: 10px; border: 1px solid #ddd; border-radius: 7px; resize: vertical; outline: none; }
.settings-save { width: 100%; padding: 12px; border-radius: 8px; }
@media (max-width:600px) { .admin-shell { padding: 10px; } .admin-list { grid-template-columns: 1fr; } }

/* 平台介绍 */
.about-app { background: linear-gradient(180deg,#fff5ef 0,#f5f6f8 330px); }
.about-page { padding: 14px 12px 30px; }
.about-hero { padding: 30px 22px; color: #fff; background: linear-gradient(135deg,#ff6417,#ff913e); border-radius: 16px; box-shadow: 0 12px 30px rgba(255,100,23,.2); }
.about-hero span { font-size: 12px; opacity: .85; letter-spacing: 2px; }
.about-hero h2 { margin: 13px 0 9px; font-size: 25px; line-height: 1.45; }
.about-hero p { margin: 0; font-size: 13px; line-height: 1.7; opacity: .9; }
.about-card { margin-top: 13px; padding: 20px 17px; background: #fff; border-radius: 14px; }
.about-card h3 { display: flex; align-items: center; gap: 9px; margin: 0 0 16px; font-size: 18px; }
.about-card h3 i { display: inline-flex; width: 29px; height: 29px; align-items: center; justify-content: center; color: #fff; background: #ff6417; border-radius: 8px; font-size: 11px; font-style: normal; }
.about-card p { margin: 9px 0 0; color: #666; font-size: 14px; line-height: 1.85; text-align: justify; }
.advantage-item { position: relative; margin-top: 12px; padding: 15px; background: #fff8f4; border-radius: 10px; border-left: 3px solid #ff6417; }
.advantage-item b { color: #333; font-size: 15px; }
.advantage-item p { margin-top: 5px; }
.promise-card { background: linear-gradient(135deg,#fff,#fff5ed); border: 1px solid #ffe2d0; }

/* 常见问题 */
.faq-app { background: linear-gradient(180deg,#fff5ef 0,#f5f6f8 280px); }
.faq-page { padding: 14px 12px 30px; }
.faq-intro { padding: 25px 20px; color: #fff; background: linear-gradient(135deg,#ff6417,#ff943f); border-radius: 15px; }
.faq-intro span { font-size: 12px; letter-spacing: 3px; opacity: .85; }
.faq-intro h2 { margin: 10px 0 6px; font-size: 21px; }
.faq-intro p { margin: 0; font-size: 12px; opacity: .85; }
.faq-item { margin-top: 12px; background: #fff; border-radius: 13px; overflow: hidden; box-shadow: 0 3px 14px rgba(0,0,0,.035); }
.faq-item summary { display: flex; align-items: flex-start; gap: 10px; padding: 17px 15px; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { flex: 0 0 auto; padding: 4px 6px; color: #fff; background: #ff6417; border-radius: 6px; font-size: 11px; font-style: normal; }
.faq-item summary strong { flex: 1; font-size: 15px; line-height: 1.55; }
.faq-item summary b { color: #aaa; transition: transform .2s; }
.faq-item[open] summary b { transform: rotate(180deg); }
.faq-answer { display: flex; align-items: flex-start; gap: 10px; margin: 0 15px; padding: 16px 0 19px; border-top: 1px solid #f0f0f0; }
.faq-answer > span { flex: 0 0 auto; display: inline-flex; width: 25px; height: 25px; align-items: center; justify-content: center; color: #ff6417; background: #fff0e8; border-radius: 6px; font-weight: 700; font-size: 12px; }
.faq-answer p { margin: 0; color: #666; font-size: 14px; line-height: 1.85; text-align: justify; }
.faq-answer div { flex: 1; }
.faq-answer ol { margin: 8px 0 0; padding-left: 21px; color: #666; }
.faq-answer li { margin: 8px 0; font-size: 14px; line-height: 1.75; }

/* 我的发布状态 */
.my-publish-page { padding: 12px; }
.my-publish-tip { margin-bottom: 12px; padding: 12px 14px; color: #9a622f; background: #fff4e8; border: 1px solid #ffe0c3; border-radius: 10px; font-size: 12px; line-height: 1.6; }
.my-publish-card { display: flex; gap: 12px; margin-bottom: 10px; padding: 12px; background: #fff; border-radius: 13px; box-shadow: 0 4px 16px rgba(0,0,0,.04); }
.my-publish-image { width: 102px; height: 94px; flex: 0 0 auto; overflow: hidden; border-radius: 9px; background: #fff4ec; }
.my-publish-image img { width: 100%; height: 100%; object-fit: cover; }
.my-publish-placeholder { display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; font-size: 35px; }
.my-publish-info { flex: 1; min-width: 0; }
.my-publish-head { display: flex; align-items: flex-start; gap: 7px; }
.my-publish-head h3 { flex: 1; margin: 0; overflow: hidden; font-size: 15px; line-height: 1.45; text-overflow: ellipsis; white-space: nowrap; }
.publish-status { flex: 0 0 auto; padding: 4px 7px; border-radius: 8px; font-size: 10px; font-weight: 700; }
.publish-status.pending { color: #d47a00; background: #fff3d9; }
.publish-status.published { color: #16995b; background: #e7f9ef; }
.publish-status.hidden { color: #888; background: #eee; }
.my-publish-info p { margin: 8px 0; color: #999; overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.my-publish-bottom { display: flex; justify-content: space-between; align-items: center; }
.my-publish-bottom strong { color: #ff6417; font-size: 14px; }
.my-publish-bottom time { color: #aaa; font-size: 10px; }
.audit-note { display: block; margin-top: 7px; color: #d47a00; font-size: 10px; }

/* 发布成功审核弹窗 */
.audit-success-overlay { position: fixed; inset: 0; z-index: 200000; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(18,18,18,.58); backdrop-filter: blur(4px); }
.audit-success-modal { width: 100%; max-width: 430px; padding: 34px 24px 24px; text-align: center; background: #fff; border-radius: 22px; box-shadow: 0 22px 60px rgba(0,0,0,.25); animation: auditModalIn .24s ease-out; }
.audit-success-icon { display: flex; width: 76px; height: 76px; margin: 0 auto 19px; align-items: center; justify-content: center; color: #fff; background: linear-gradient(135deg,#ff6417,#ff9447); border: 7px solid #fff1e8; border-radius: 50%; font-size: 38px; font-weight: 700; box-shadow: 0 9px 23px rgba(255,100,23,.25); }
.audit-success-modal h2 { margin: 0; color: #222; font-size: 25px; }
.audit-success-modal > strong { display: block; margin-top: 13px; color: #ff6417; font-size: 19px; line-height: 1.5; }
.audit-success-modal p { margin: 12px auto 23px; max-width: 350px; color: #777; font-size: 14px; line-height: 1.75; }
.audit-success-modal button { width: 100%; height: 54px; color: #fff; background: linear-gradient(135deg,#ff5e14,#ff8735); border-radius: 14px; box-shadow: 0 8px 19px rgba(255,100,23,.25); font-size: 17px; font-weight: 700; }
.audit-success-modal button:active { transform: scale(.98); opacity: .9; }
@keyframes auditModalIn { from { opacity: 0; transform: translateY(18px) scale(.95); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* 首页视觉优化 */
.home-header { position: relative; padding: 23px 15px 38px; background: linear-gradient(135deg,#ff5a12 0%,#ff7b25 58%,#ff9446 100%); border-radius: 0 0 26px 26px; overflow: hidden; box-shadow: 0 8px 25px rgba(255,100,23,.16); }
.home-header::before,.home-header::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.08); pointer-events: none; }
.home-header::before { width: 150px; height: 150px; right: -55px; top: -78px; }
.home-header::after { width: 85px; height: 85px; right: 62px; bottom: -50px; }
.brand { position: relative; z-index: 1; margin-bottom: 20px; font-size: 19px; letter-spacing: .3px; text-shadow: 0 1px 3px rgba(160,45,0,.15); }
.brand-wrap { position: relative; z-index: 1; margin-bottom: 19px; }
.brand-wrap .brand { margin-bottom: 4px; }
.brand-description { margin: 0; font-size: 11px; opacity: .82; letter-spacing: .2px; }
.location-row { position: relative; z-index: 1; gap: 8px; }
.location-button { display: flex; align-items: center; gap: 3px; max-width: 92px; padding: 7px 4px; font-weight: 600; }
.location-button #locationText { overflow: hidden; text-overflow: ellipsis; }
.search-box { height: 42px; padding: 0 14px; border: 1px solid rgba(255,255,255,.7); box-shadow: 0 5px 16px rgba(179,57,0,.12); }
.search-box:focus-within { box-shadow: 0 6px 20px rgba(179,57,0,.2); transform: translateY(-1px); }
.search-box input { font-size: 13px; }
.complaint { padding: 9px 12px; background: rgba(118,38,0,.22); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(5px); }
.complaint:active,.location-button:active { opacity: .75; }

.quick-actions { margin: -23px 11px 11px; padding: 16px 7px 14px; border-radius: 15px; box-shadow: 0 9px 28px rgba(57,34,21,.08); }
.quick-actions a { gap: 8px; color: #4b4b4b; font-size: 13px; transition: transform .15s; }
.quick-actions a:active { transform: scale(.94); }
.quick-icon { width: 47px; height: 47px; font-size: 24px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.7); }
.quick-actions a:nth-child(1) .quick-icon { background: linear-gradient(145deg,#e8fff7,#d8f8ec); }
.quick-actions a:nth-child(2) .quick-icon { background: linear-gradient(145deg,#fff2e9,#ffe3d0); }
.quick-actions a:nth-child(3) .quick-icon { background: linear-gradient(145deg,#edfff0,#d9f8df); }
.quick-actions a:nth-child(4) .quick-icon { background: linear-gradient(145deg,#eaf8ff,#d9edff); }

.notice-bar { align-items: center; min-height: 45px; margin: 11px; padding: 10px 13px; border-radius: 11px; box-shadow: 0 3px 15px rgba(0,0,0,.035); }
.notice-title { position: relative; padding-right: 10px; }
.notice-title::after { content: ""; position: absolute; right: 0; top: 2px; width: 1px; height: 16px; background: #ffd5bf; }
.notice-text { padding-left: 1px; color: #555; }

.location-banner { position: relative; min-height: 112px; margin: 11px; padding: 19px 20px; border-radius: 14px; background: linear-gradient(125deg,#168cf5,#14b6ee); box-shadow: 0 9px 22px rgba(22,151,235,.2); }
.location-banner::after { content: ""; position: absolute; width: 115px; height: 115px; right: -22px; top: -30px; border-radius: 50%; background: rgba(255,255,255,.09); }
.location-banner > div:first-child { position: relative; z-index: 2; }
.location-banner strong { font-size: 15px; letter-spacing: .2px; }
.location-banner strong b { color: #fff6a5; font-size: 20px; }
.location-banner p { margin: 6px 0 10px; }
.location-banner button { padding: 7px 14px; border-radius: 16px; background: linear-gradient(135deg,#ff9a2e,#ff7020); box-shadow: 0 4px 10px rgba(139,61,0,.18); }
.banner-building { position: relative; z-index: 1; font-size: 68px; filter: drop-shadow(0 7px 5px rgba(0,68,126,.15)); }

.stats-grid { margin: 11px; gap: 9px; }
.stat-card { position: relative; padding: 16px; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.035); }
.stat-card::after { content: ""; position: absolute; width: 70px; height: 70px; right: -30px; bottom: -30px; border: 13px solid rgba(255,255,255,.3); border-radius: 50%; }
.stat-card.big { background: linear-gradient(145deg,#fff4e8,#ffe1c2); }
.stat-card.blue { background: linear-gradient(145deg,#ebf5ff,#d9eaff); }
.stat-card.pink { background: linear-gradient(145deg,#fff0ef,#ffddda); }
.stat-card span { color: #666; font-weight: 600; }
.stat-card strong { position: relative; z-index: 1; color: #8b4729; font-size: 24px; letter-spacing: .3px; }
.stat-card.blue strong { color: #486ba2; }
.stat-card.pink strong { color: #a64f4b; }
.stat-card small { display: inline-block; position: relative; z-index: 1; padding: 5px 8px; color: #888; background: rgba(255,255,255,.68); border-radius: 10px; }

.promo-banner { position: relative; min-height: 94px; margin: 11px; padding: 17px 21px; border-radius: 14px; background: linear-gradient(120deg,#6d89ff,#3c6ff2 55%,#46b9f5); box-shadow: 0 8px 22px rgba(59,105,225,.18); overflow: hidden; }
.promo-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg,transparent 40%,rgba(255,255,255,.12)); }
.promo-banner strong { position: relative; font-size: 18px; }
.promo-banner span { position: relative; }
.promo-icon { position: relative; font-size: 58px; filter: drop-shadow(0 5px 5px rgba(20,40,130,.16)); }

.content { padding: 0 11px; }
.section-tabs { position: sticky; top: 0; z-index: 5; margin-top: 13px; padding: 4px; border-radius: 12px; box-shadow: 0 3px 15px rgba(0,0,0,.035); }
.section-tabs button { position: relative; padding: 11px; border-radius: 9px; }
.section-tabs button.active { color: #ff6417; background: #fff4ed; }
.section-tabs button.active::after { content: ""; position: absolute; left: 38%; right: 38%; bottom: 3px; height: 3px; background: #ff6417; border-radius: 3px; }
.section-subtitle { display: flex; align-items: center; gap: 7px; padding: 15px 5px 9px; }
.section-subtitle::before { content: ""; width: 4px; height: 16px; background: linear-gradient(#ff6417,#ff9a4f); border-radius: 4px; }
.shop-card { position: relative; display: grid; grid-template-columns: 112px minmax(0,1fr); gap: 11px 12px; padding: 11px 11px 0; border-radius: 13px; margin-bottom: 10px; box-shadow: 0 4px 17px rgba(0,0,0,.045); border: 1px solid rgba(235,235,235,.75); overflow: hidden; }
.shop-card:active { transform: scale(.985); box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.shop-image { width: 112px; height: 96px; border-radius: 10px; }
.shop-badge { left: 6px; top: 6px; padding: 4px 7px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,.12); }
.shop-info h3 { margin-bottom: 8px; font-size: 15px; }
.shop-meta span { color: #8a725f; background: #faf4f0; border-radius: 6px; }
.shop-bottom strong { font-size: 18px; }
.shop-pinned-badge { position: absolute; z-index: 2; top: 0; right: 0; min-width: 56px; padding: 7px 11px; color: #fff; background: linear-gradient(135deg,#f56b2c,#e95720); border-radius: 0 12px 0 14px; text-align: center; font-size: 12px; box-shadow: 0 3px 8px rgba(210,72,18,.18); }
.shop-card:has(.shop-pinned-badge) .shop-info h3 { padding-right: 48px; }
.shop-promotion { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 48px; margin: 0 -11px; padding: 9px 12px; border-top: 1px solid #f3f3f3; background: linear-gradient(90deg,#fff,#fffaf7); }
.promotion-reach { min-width: 0; color: #444; font-size: 12px; white-space: nowrap; }
.promotion-reach i { margin-right: 2px; font-size: 20px; font-style: normal; vertical-align: -2px; filter: drop-shadow(0 2px 2px rgba(240,76,31,.18)); }
.promotion-reach b { color: #e85d42; font-size: 16px; }
.promotion-action { flex: 0 0 auto; padding: 7px 2px 7px 9px; color: #e65d43; font-size: 13px; font-weight: 700; }
.promotion-action b { margin-left: 2px; font-size: 20px; line-height: 0; vertical-align: -2px; }
.promotion-action:active { opacity: .65; transform: translateX(2px); }

#bottomNav { height: calc(68px + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom); border-top: 0; box-shadow: 0 -5px 22px rgba(0,0,0,.07); }
#bottomNav .publish-nav b { background: linear-gradient(135deg,#ff5d14,#ff8734); border: 4px solid #fff; box-shadow: 0 6px 17px rgba(255,100,23,.32); }

@media (max-width: 375px) {
  .home-header { padding-left: 11px; padding-right: 11px; }
  .brand { font-size: 17px; }
  .location-button { max-width: 78px; font-size: 12px; }
  .complaint { padding-left: 9px; padding-right: 9px; }
  .shop-card { grid-template-columns: 100px minmax(0,1fr); }
  .shop-image { width: 100px; }
  .promotion-reach { font-size: 11px; }
  .promotion-reach i { font-size: 18px; }
  .promotion-reach b { font-size: 15px; }
  .promotion-action { font-size: 12px; }
}

/* 成交案例 */
.cases-app { padding-bottom: 100px; background: #f4f4f4; }
.cases-page { padding: 12px; }
.case-card { margin-bottom: 16px; overflow: hidden; background: #fff; border-radius: 13px; box-shadow: 0 4px 18px rgba(0,0,0,.045); }
.case-image { position: relative; width: 100%; aspect-ratio: 1.75; overflow: hidden; background: #fff2e8; }
.case-image img { width: 100%; height: 100%; object-fit: cover; }
.case-image > span { position: absolute; top: 12px; right: 12px; padding: 6px 10px; color: #fff; background: rgba(255,100,23,.9); border-radius: 8px; font-size: 12px; }
.case-placeholder { display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; font-size: 70px; }
.case-content { padding: 16px 17px 18px; }
.case-content h2 { margin: 0; color: #252525; font-size: 19px; line-height: 1.5; }
.case-content h2 em { margin: 0 4px; color: #aaa; font-style: normal; font-weight: 400; }
.case-content p { margin: 13px 0 0; color: #777; font-size: 16px; }
.case-content p strong { margin-left: 6px; color: #f04432; font-size: 20px; }
.cases-publish-bar { position: fixed; z-index: 20; left: 50%; bottom: 0; width: 100%; max-width: 640px; padding: 13px 16px calc(13px + env(safe-area-inset-bottom)); transform: translateX(-50%); background: rgba(255,255,255,.96); border-top: 1px solid #eee; }
.cases-publish-bar a { display: flex; height: 54px; align-items: center; justify-content: center; color: #fff; background: linear-gradient(135deg,#ff8737,#ff5b35); border-radius: 14px; box-shadow: 0 8px 19px rgba(255,100,23,.22); font-size: 18px; }
.cases-publish-bar a:active { transform: scale(.99); opacity: .9; }

.complaint-modal { width: 100%; max-width: 640px; margin: auto auto 0; background: #fff; border-radius: 18px 18px 0 0; }
.complaint-body { padding: 16px; }
.complaint-body textarea { width: 100%; min-height: 150px; padding: 12px; border: 1px solid #ddd; border-radius: 10px; resize: none; outline: none; }
.complaint-upload { display: block; margin: 12px 0; padding: 13px; color: #ff6417; background: #fff4ec; border-radius: 9px; text-align: center; cursor: pointer; }
.complaint-preview { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.complaint-preview span { max-width: 100%; padding: 5px 8px; background: #f5f5f5; border-radius: 5px; font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
