/* ============================================
   赶集宝 PC版 - 桌面端样式
   设计对齐小程序，适配 PC 宽屏布局
   导航栏：顶部水平导航
   ============================================ */

:root {
  --primary: #ff6b35;
  --primary-dark: #e55a2b;
  --primary-light: #fff5f0;
  --orange: #f7931a;
  --green: #52c41a;
  --red: #ff4d4f;
  --blue: #1890ff;
  --text: #333;
  --text-gray: #666;
  --text-light: #999;
  --text-lighter: #bbb;
  --bg: #f5f5f5;
  --bg-card: #fff;
  --border: #eee;
  --border-light: #f0f0f0;
  --topnav-h: 54px;
  --topbar-h: 44px;
  --gradient-primary: linear-gradient(135deg, #ff6b35, #f7931a);
  --shadow-xs: 0 2px 10px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 36px rgba(0,0,0,0.16);
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { font-size: 14px; }
body {
  font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Microsoft YaHei',sans-serif;
  color: var(--text); background: var(--bg); line-height:1.6;
  -webkit-font-smoothing:antialiased;
  padding-top: var(--topnav-h);
}

/* ==================== 顶部导航栏 ==================== */
#topnav {
  position: fixed; top:0; left:0; right:0; z-index: 100;
  height: var(--topnav-h);
  background: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.tn-inner {
  max-width: 1200px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; padding: 0 24px;
}

/* Logo */
.tn-logo {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; text-decoration: none; flex-shrink: 0;
  margin-right: 24px;
}
.tn-logo-icon { font-size: 22px; color: var(--primary); }
.tn-logo-text { font-size: 17px; font-weight: 700; color: #333; letter-spacing: 1px; }

/* 导航项 */
.tn-nav { display: flex; align-items: center; gap: 2px; height: 100%; }
.tn-nav-item {
  position: relative; display: flex; align-items: center; gap: 6px;
  padding: 0 18px; height: 100%;
  cursor: pointer; color: #666; font-size: 14px;
  transition: all 0.15s; text-decoration: none; white-space: nowrap;
}
.tn-nav-item:hover { color: #333; }
.tn-nav-item.active {
  color: var(--primary); font-weight: 600;
}
.tn-nav-item.active::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 28px; height: 3px; border-radius: 2px 2px 0 0;
  background: var(--gradient-primary);
}
.tn-nav-icon { font-size: 17px; line-height: 1; flex-shrink: 0; }
.tn-badge {
  min-width: 18px; height: 18px;
  background: var(--red); color: #fff; font-size: 11px;
  border-radius: 9px; display: flex; align-items: center;
  justify-content: center; padding: 0 5px; margin-left: 2px;
}

/* 用户区 */
.tn-user {
  margin-left: auto; display: flex; align-items: center; gap: 10px;
  cursor: pointer; padding: 5px 10px; border-radius: 20px;
  transition: background 0.15s; flex-shrink: 0;
}
.tn-user:hover { background: #f5f5f5; }
.tn-user-avatar {
  width: 32px; height: 32px; border-radius: 50%; overflow: hidden;
  background: #eee; flex-shrink: 0;
}
.tn-user-avatar img { width:100%; height:100%; object-fit:cover; }
.tn-user-name { font-size: 13px; color: #555; max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* 顶部搜索 */
.tn-search {
  position: relative; margin-left: auto; margin-right: 12px;
  flex-shrink: 1; min-width: 0;
}
.tn-search-icon {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  color: #bbb; font-size: 14px; pointer-events: none;
}
.tn-search-input {
  width: 180px; height: 32px; padding: 0 12px 0 30px;
  border: 1px solid #e0e0e0; border-radius: 16px;
  background: #f7f8fa; font-size: 13px; color: #333;
  outline: none; transition: all 0.2s;
}
.tn-search-input:focus {
  width: 240px; border-color: var(--primary);
  background: #fff; box-shadow: 0 0 0 2px rgba(255,107,53,0.1);
}
.tn-search-input::placeholder { color: #bbb; }
.tn-search-drop {
  position: absolute; top: 38px; left: 0; right: 0;
  background: #fff; border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  max-height: 300px; overflow-y: auto; z-index: 200;
}
.tn-search-drop::-webkit-scrollbar { width: 4px; }
.tn-search-drop::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }
.tn-search-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; cursor: pointer; border-bottom: 1px solid #f5f5f5;
  transition: background 0.12s;
}
.tn-search-item:hover, .tn-search-item.hover { background: var(--primary-light); }
.tn-search-item:last-child { border-bottom: none; }
.tn-search-name { font-size: 13px; color: #333; }
.tn-search-path { font-size: 11px; color: #bbb; }
.tn-search-empty { padding: 20px; text-align: center; color: #bbb; font-size: 13px; }

/* ==================== 主布局 ==================== */
#app { display: flex; flex-direction: column; min-height: calc(100vh - var(--topnav-h)); }

/* ==================== 主内容区 ==================== */
#main-content {
  flex: 1; display: flex; flex-direction: column; min-height: 100%;
}
.mc-topbar {
  padding: 16px 0 4px;
}
.mc-topbar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
}
.mc-breadcrumb { display: flex; align-items: center; gap: 6px; }
.mc-back-btn {
  font-size: 13px; color: var(--text-lighter); cursor: pointer;
  padding: 2px 6px; border-radius: 3px; transition: all 0.15s;
}
.mc-back-btn:hover { color: var(--text-light); }
.mc-page-title { font-size: 13px; font-weight: 400; color: var(--text-lighter); }
.mc-topbar-actions { display: flex; align-items: center; gap: 10px; }

/* ==================== 内容区 ==================== */
.mc-body {
  flex: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 6px 24px 40px; width: 100%;
}

/* ==================== 右侧平台数据小卡片 ==================== */
.stats-mini-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-xs); overflow: hidden;
  margin-bottom: 14px; padding: 14px 14px 12px;
}
.stats-mini-title {
  font-size: 13px; font-weight: 600; color: #333;
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.stats-mini-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
}
.stats-mini-item {
  background: #f8f9fa; border-radius: 8px;
  padding: 10px 4px; text-align: center;
  display: flex; flex-direction: column; gap: 3px;
}
.stats-mini-num {
  font-size: 16px; font-weight: 700; color: var(--primary); line-height: 1.2;
}
.stats-mini-label {
  font-size: 11px; color: #999;
}

/* ==================== 底部省份导航（SEO 友好、与页脚融合） ==================== */
.province-section {
  background: #f5f6f8;
  border-top: 1px solid #eee;
}
.province-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
}
.province-title {
  font-size: 12px; font-weight: 400; color: #999;
  margin-bottom: 6px; line-height: 1.4;
}
.province-title-icon {
  color: #ccc; font-size: 11px; margin-right: 4px;
}
.province-grid {
  display: flex; flex-wrap: wrap; gap: 2px 12px;
}
.province-link {
  display: inline-block;
  font-size: 12px; color: #888;
  text-decoration: none;
  transition: color 0.15s;
  line-height: 1.8;
}
.province-link:hover {
  color: var(--primary);
  text-decoration: underline;
}
@media (max-width: 600px) {
  .province-inner { padding: 10px 16px; }
  .province-link { font-size: 11px; gap: 2px 8px; }
}

/* ==================== 底部 ==================== */
.site-footer {
  background: #f5f6f8;
  padding: 0 0 20px;
}
.site-footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-left { font-size: 12px; color: #bbb; display: flex; align-items: center; gap: 8px; }
.footer-left a { color: inherit; text-decoration: none; }
.footer-left a:hover { text-decoration: underline; opacity: 0.8; }
.footer-divider { color: #ddd; }
.footer-right { font-size: 12px; color: #bbb; display: flex; align-items: center; gap: 4px; }
.footer-right .cuIcon-message { font-size: 13px; color: #ccc; }
@media (max-width: 600px) {
  .site-footer-inner { flex-direction: column; gap: 6px; text-align: center; }
  .footer-left { flex-wrap: wrap; justify-content: center; }
}
.main-layout {
  display: grid; grid-template-columns: 1fr 260px; gap: 16px;
  margin-top: 12px;
}
.main-left { min-width: 0; }
.main-right { min-width: 0; }

/* 窄屏适配：隐藏右侧栏，左侧内容保持不破 */
@media (max-width: 900px) {
  .main-layout {
    grid-template-columns: 1fr;
  }
  .main-right {
    display: none;
  }
  .mc-body {
    padding: 12px 16px 40px;
  }
}

/* ==================== 右侧面板：相关集市 ==================== */
.related-panel {
  position: sticky; top: calc(var(--topnav-h) + 12px);
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-xs); overflow: hidden;
}
.related-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid #f5f5f5;
  font-size: 14px; font-weight: 600; color: #333;
}
.related-panel-header .cuIcon-locationfill { color: var(--primary); margin-right: 6px; }
.related-panel-body { max-height: calc(100vh - 280px); overflow-y: auto; }
.related-panel-body::-webkit-scrollbar { width: 4px; }
.related-panel-body::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }
.related-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 16px; cursor: pointer; transition: all 0.15s;
  border-bottom: 1px solid #f8f8f8;
}
.related-item:hover { background: #fafafa; }
.related-item.active { background: var(--primary-light); }
.related-item.active .related-item-name { color: var(--primary); font-weight: 500; }
.related-item-name { font-size: 13px; color: #555; }
.related-item-count {
  font-size: 11px; color: #999; background: #f5f5f5;
  padding: 2px 8px; border-radius: 10px;
}
.related-item.active .related-item-count {
  background: #fff; color: var(--primary);
}


/* ==================== 页面头部（仿小程序渐变头部） ==================== */
.page-header {
  background: var(--gradient-primary);
  margin: 0 -24px 20px;
  padding: 30px 24px 36px;
  color: #fff; position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.page-header-title { font-size: 20px; font-weight: 700; margin-bottom: 4px; position: relative; z-index: 1; }
.page-header-sub { font-size: 13px; opacity: 0.85; position: relative; z-index: 1; }

/* 广场页面-渐变橙色头部 */
.square-header {
  margin: 0 0 16px; border-radius: 12px;
  overflow: hidden; box-shadow: 0 2px 16px rgba(255,107,53,0.12);
}
.square-header-bg {
  background: linear-gradient(135deg, #ff7a3d, #ff6b35 40%, #f55a25);
  padding: 28px 28px 22px; color: #fff; position: relative; overflow: hidden;
}
.square-header-bg::before {
  content: ''; position: absolute; top: -60px; right: -40px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.square-header-bg::after {
  content: ''; position: absolute; bottom: -40px; left: 30%; 
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.square-header-row {
  display: flex; align-items: center; gap: 16px; position: relative; z-index: 1;
}
.square-header-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.square-header-info { flex: 1; min-width: 0; }
.square-header-title {
  font-size: 22px; font-weight: 700; line-height: 1.3;
}
.square-header-desc {
  font-size: 13px; opacity: 0.8; margin-top: 2px;
}
.square-publish-btn {
  padding: 10px 20px; border-radius: 22px; border: none;
  background: rgba(255,255,255,0.2); color: #fff;
  font-size: 14px; font-weight: 500; cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap; transition: all 0.2s; flex-shrink: 0;
}
.square-publish-btn:hover { background: rgba(255,255,255,0.32); transform: scale(1.03); }
.square-publish-btn .cuIcon-edit { font-size: 15px; }

/* 统计行 */
.square-stats {
  display: flex; gap: 32px; margin-top: 20px; position: relative; z-index: 1;
}
.square-stat {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; opacity: 0.8;
}
.square-stat-num { font-size: 16px; opacity: 0.9; }

/* Tab 栏 */
.square-tabs-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: #fff; padding: 6px; border-top: 1px solid rgba(0,0,0,0.04);
}
.square-tabs { display: flex; gap: 4px; }
.square-tab {
  padding: 10px 20px; border-radius: 8px; font-size: 14px;
  color: #666; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; gap: 5px; white-space: nowrap;
}
.square-tab:hover { color: var(--primary); background: var(--primary-light); }
.square-tab.active { color: var(--primary); background: var(--primary-light); font-weight: 600; }
.square-tab .cuIcon-shop, .square-tab .cuIcon-goods { font-size: 15px; }

.square-filter {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: 8px;
  font-size: 13px; color: #888; cursor: pointer;
  border: 1px solid #eee; transition: all 0.2s; white-space: nowrap;
}
.square-filter:hover { border-color: var(--primary); color: var(--primary); }
.square-filter.active-filter { border-color: var(--primary); color: var(--primary); background: var(--primary-light); font-weight: 500; }
.square-filter .cuIcon-filter { font-size: 14px; }
.square-filter .cuIcon-locationfill { font-size: 14px; color: var(--primary); }

@media (max-width: 600px) {
  .square-header-row { flex-wrap: wrap; }
  .square-publish-btn { width: 100%; justify-content: center; margin-top: 8px; }
  .square-stats { gap: 20px; }
}

/* ==================== "我的"页面-用户横幅 ==================== */
.my-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 0 0 20px; border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(102,126,234,0.25);
  position: relative;
}
.my-banner::before {
  content: ''; position: absolute; top: -50px; right: -30px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.my-banner::after {
  content: ''; position: absolute; bottom: 30px; left: -40px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.my-banner-inner {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 24px 20px; position: relative; z-index: 1;
}
.my-avatar {
  width: 64px; height: 64px; border-radius: 50%; overflow: hidden;
  border: 3px solid rgba(255,255,255,0.35); flex-shrink: 0; cursor: pointer;
  background: #eee;
}
.my-avatar img { width: 100%; height: 100%; object-fit: cover; }
.my-info { flex: 1; min-width: 0; color: #fff; }
.my-name { font-size: 18px; font-weight: 700; line-height: 1.4; }
.my-id { font-size: 12px; opacity: 0.75; margin-top: 2px; }
.my-edit-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 18px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12); color: #fff;
  font-size: 13px; cursor: pointer; white-space: nowrap;
  transition: all 0.2s; flex-shrink: 0;
}
.my-edit-btn:hover { background: rgba(255,255,255,0.22); }
.my-edit-btn .cuIcon-edit { font-size: 14px; }

/* 用户横幅-统计行 */
.my-stats {
  display: flex; padding: 0 24px 20px; gap: 16px; position: relative; z-index: 1;
}
.my-stat-card {
  flex: 1; background: rgba(255,255,255,0.15); border-radius: 10px;
  padding: 12px; text-align: center; cursor: pointer;
  transition: all 0.2s; backdrop-filter: blur(4px);
}
.my-stat-card:hover { background: rgba(255,255,255,0.25); transform: translateY(-1px); }
.my-stat-num {
  font-size: 22px; font-weight: 700; color: #fff; line-height: 1.3;
}
.my-stat-label { font-size: 11px; color: rgba(255,255,255,0.8); margin-top: 2px; }

/* 消息未读红点 */
.badge-red {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: #ff4d4f; color: #fff; font-size: 11px; font-weight: 600;
  border-radius: 9px; margin-left: 8px; line-height: 1;
}

/* 菜单箭头图标 */
.menu-item .cuIcon-right { font-size: 14px; color: #ccc; }

@media (max-width: 600px) {
  .my-banner-inner { flex-wrap: wrap; }
  .my-edit-btn { margin-left: auto; }
  .my-stats { gap: 10px; }
  .my-stat-card { padding: 10px 8px; }
}

/* ==================== 卡片基础 ==================== */
.card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-xs); overflow: hidden;
  margin-bottom: 16px;
}
.card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid #f5f5f5;
  background: linear-gradient(135deg, #fff8f5, #fff);
}
.card-title { font-size: 15px; font-weight: 600; color: var(--text); }
.card-body { padding: 16px 20px; }
.card-footer { padding: 10px 20px; border-top: 1px solid #f5f5f5; background: #fafbfc; }

/* ==================== 按钮 ==================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  padding: 8px 18px; font-size: 14px;
  border: none; cursor: pointer; transition: all 0.2s;
  font-family: inherit; line-height: 1.5; white-space: nowrap;
  border-radius: 22px; text-decoration: none;
}
.btn:hover { opacity: 0.9; }
.btn-primary {
  background: var(--gradient-primary); color: #fff;
  box-shadow: 0 2px 8px rgba(255,107,53,0.2);
}
.btn-primary:hover { box-shadow: 0 4px 14px rgba(255,107,53,0.35); }
.btn-danger { background: var(--red); color: #fff; }
.btn-danger:hover { box-shadow: 0 4px 14px rgba(255,77,79,0.3); }
.btn-outline {
  background: #fff; color: var(--text-gray);
  border: 1px solid #e0e0e0;
}
.btn-outline:hover { color: var(--primary); border-color: var(--primary); }
.btn-ghost { background: transparent; color: var(--text-gray); }
.btn-ghost:hover { background: #f5f5f5; }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 2px 8px rgba(82,196,26,0.25); }
.btn-green:hover { box-shadow: 0 4px 14px rgba(82,196,26,0.4); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 2px 8px rgba(24,144,255,0.25); }
.btn-blue:hover { box-shadow: 0 4px 14px rgba(24,144,255,0.4); }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 2px 8px rgba(247,147,26,0.25); }
.btn-orange:hover { box-shadow: 0 4px 14px rgba(247,147,26,0.4); }
.btn-sm { padding: 4px 12px; font-size: 13px; border-radius: 18px; }
.btn-lg { padding: 10px 24px; font-size: 15px; border-radius: 24px; }
.btn-block { display: flex; width: 100%; }

/* ==================== 表单 ==================== */
.form-group { margin-bottom: 16px; }
.form-label {
  font-size: 13px; font-weight: 500; color: var(--text-gray);
  margin-bottom: 6px; display: block;
}
.form-label .required { color: var(--red); margin-left: 2px; }
.form-input, .form-textarea, .form-select {
  width: 100%; border: 1px solid #e0e0e0; border-radius: 8px;
  padding: 9px 12px; font-size: 14px; font-family: inherit;
  background: #f8f8f8; transition: all 0.2s; color: var(--text);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 2px rgba(255,107,53,0.1);
}
.form-textarea { min-height: 90px; resize: vertical; }
.form-select { cursor: pointer; }

/* ==================== 表格 ==================== */
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th {
  background: #fafbfc; padding: 10px 14px; text-align: left;
  font-weight: 600; color: var(--text-gray); border-bottom: 1px solid var(--border);
}
.data-table td { padding: 10px 14px; border-bottom: 1px solid #f5f5f5; }
.data-table tr:hover td { background: #fafbfc; }

/* ==================== 标签 ==================== */
.tag {
  display: inline-block; font-size: 11px; padding: 2px 8px;
  border-radius: 10px; line-height: 1.6;
}
.tag-primary { background: var(--primary-light); color: var(--primary); }
.tag-green { background: #f6ffed; color: var(--green); }
.tag-gray { background: #f5f5f5; color: var(--text-light); }
.tag-red { background: #fff2f0; color: var(--red); }
.tag-blue { background: #e6f7ff; color: var(--blue); }
.tag-lg { padding: 3px 12px; font-size: 12px; border-radius: 12px; }

/* ==================== 头像 ==================== */
.avatar { width:40px; height:40px; border-radius:50%; overflow:hidden; background:#eee; flex-shrink:0; }
.avatar img { width:100%; height:100%; object-fit:cover; }
.avatar-sm { width: 30px; height: 30px; }
.avatar-lg { width: 56px; height: 56px; }

/* ==================== 区域选择 ==================== */
.region-row { display: flex; gap: 10px; flex-wrap: wrap; }
.region-col {
  flex: 1; min-width: 70px; height: 38px; border: 1px solid #e0e0e0; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--text-gray); cursor: pointer;
  transition: all 0.15s; background: #fafafa;
}
.region-col:hover { border-color: var(--primary); color: var(--primary); background: #fff; }
.region-col.filled {
  border-color: var(--primary); color: var(--text); background: #fff;
  border-width: 1.5px;
}
.region-col.placeholder { color: var(--text-lighter); }

/* ==================== 分类选择 ==================== */
.cat-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-item {
  padding: 6px 14px; border-radius: 18px;
  border: 1px solid #e0e0e0; background: #f8f8f8;
  font-size: 13px; color: var(--text-gray); cursor: pointer;
  transition: all 0.15s;
}
.cat-item:hover { border-color: var(--primary); color: var(--primary); background: #fff; }
.cat-item.active {
  background: var(--primary); border-color: var(--primary);
  color: #fff; font-weight: 500;
}

/* ==================== 日期快捷按钮 ==================== */
.add-quick-btns { margin-bottom: 12px; }
.quick-row { display: flex; gap: 8px; margin-bottom: 8px; }
.quick-row:last-child { margin-bottom: 0; }
.quick-btn {
  flex: 1; text-align: center; padding: 6px 0;
  border-radius: 20px; border: 2px solid #ffccb5;
  background: #fff5f0; color: #ff6b35;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 0.2s;
}
.quick-btn:hover, .quick-btn:active {
  background: #ff6b35; color: #fff; border-color: #ff6b35;
}
.quick-btn.all-btn {
  flex: 1.5; background: #fff0e6; border-color: #ff6b35;
}

/* ==================== 赶集日历 ==================== */
.calendar-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 16px;
}
.date-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.date-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px; border-bottom: 1px solid #f5f5f5;
  background: linear-gradient(135deg, #fff8f5, #fff);
}
.date-card-hd-left { display: flex; align-items: center; gap: 10px; }
.date-md { font-size: 17px; font-weight: 700; color: var(--text); }
.date-week-tag {
  font-size: 11px; padding: 2px 8px; border-radius: 10px;
  background: #f0f0f0; color: #888;
}
.date-week-tag.today { background: var(--gradient-primary); color: #fff; }
.date-lunar { font-size: 12px; color: var(--text-light); }
.date-weather { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.date-weather .weather-icon { font-size: 20px; line-height: 1; }
.date-weather .weather-text { white-space: nowrap; }
@media (max-width: 600px) {
  .date-weather .weather-text { display: none; }
}
.market-row {
  display: flex; align-items: center; padding: 12px 18px;
  border-bottom: 1px solid #f5f5f5; cursor: pointer; transition: background 0.15s;
}
.market-row:last-child { border-bottom: none; }
.market-row:hover { background: #fafafa; }
.market-name { font-size: 14px; color: var(--text); flex: 1; }
.market-memo { font-size: 12px; color: var(--primary); margin-left: 8px; font-weight: 500; }
.market-content { font-size: 12px; color: var(--text-lighter); white-space: nowrap; }
.date-card-empty { padding: 16px; text-align: center; color: var(--text-lighter); font-size: 13px; }

/* ==================== 广场卡片 ==================== */
.square-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px;
}
.square-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-xs);
  cursor: pointer; transition: all 0.2s;
  display: flex; gap: 14px; padding: 16px;
}
.square-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.sq-cover {
  width: 120px; height: 90px; border-radius: 8px; overflow: hidden;
  background: #f5f5f5; flex-shrink: 0;
}
.sq-cover img { width:100%; height:100%; object-fit:cover; }
.sq-body { flex:1; overflow:hidden; display:flex; flex-direction:column; }
.sq-title { font-size:15px; font-weight:600; margin-bottom:6px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.sq-location { font-size:12px; color:var(--primary); margin-bottom:6px; }
.sq-tags { display:flex; gap:6px; margin-bottom:4px; flex-wrap:wrap; }
.sq-time { font-size:12px; color:var(--text-lighter); margin-top:auto; }

/* ==================== 详情页 ==================== */
.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 20px; }
.detail-main {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-xs); overflow:hidden;
}
.detail-swiper {
  position:relative; height:360px; background:#eee; overflow:hidden;
}
.detail-swiper img { width:100%; height:100%; object-fit:cover; }
.detail-swiper-dots {
  position:absolute; bottom:12px; left:50%; transform:translateX(-50%);
  display:flex; gap:6px;
}
.detail-swiper-dot {
  width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,0.5);
  transition:all 0.3s; cursor:pointer;
}
.detail-swiper-dot.active { background:var(--primary); width:20px; border-radius:4px; }
.detail-body { padding: 20px 24px; }
.detail-side { display: flex; flex-direction: column; gap: 16px; }
.detail-side-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-xs); padding: 18px;
}

/* ==================== 消息列表 ==================== */
.msg-list {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-xs); overflow:hidden;
}
.msg-group-item {
  display: flex; align-items: center; padding: 14px 20px;
  border-bottom: 1px solid #f5f5f5; cursor: pointer; transition: background 0.15s;
}
.msg-group-item:hover { background: #fafafa; }
.msg-group-avatar { margin-right: 12px; }
.msg-group-body { flex:1; overflow:hidden; }
.msg-group-name { font-size:15px; font-weight:500; }
.msg-group-text {
  font-size:13px; color:var(--text-light); margin-top:3px;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.msg-group-time { font-size:12px; color:var(--text-lighter); white-space:nowrap; margin-left:10px; }

/* ==================== 聊天（弹层模式） ==================== */
.chat-overlay {
  position: fixed; top:0; left:0; right:0; bottom:0;
  z-index: 500; display:flex; align-items:center; justify-content:center;
  display:none;
}
.chat-overlay-mask {
  position: absolute; top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.35); z-index: 1;
}
.chat-overlay-dialog {
  position: relative; z-index: 2;
  width: 540px; max-width: 95vw; max-height: 80vh;
  background: #fff; border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  display: flex; flex-direction: column; overflow: hidden;
  animation: scaleIn 0.2s;
}
.chat-overlay-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.chat-overlay-title { font-size: 16px; font-weight: 600; }
.chat-overlay-body {
  display: flex; flex-direction: column; flex: 1; min-height: 0;
}

/* 消息列表容器 */
.chat-messages { flex:1; overflow-y:auto; padding:16px 20px; min-height: 200px; max-height: 50vh; }
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }

/* 消息行 */
.chat-msg { display:flex; margin-bottom:14px; align-items:flex-start; }
.chat-msg.self { justify-content:flex-end; }
.chat-msg-avatar { margin:0 10px; flex-shrink:0; }
.chat-msg-content { min-width: 0; flex-shrink: 1; }

/* 气泡 */
.chat-bubble {
  max-width:320px; padding:10px 15px; border-radius:16px;
  font-size:14px; line-height:1.65; word-break:break-word; word-wrap:break-word;
  white-space: pre-wrap; display: inline-block;
}
.chat-bubble.other { background:#f0f0f0; color:var(--text); border-top-left-radius:4px; }
.chat-bubble.self {
  background: var(--gradient-primary); color:#fff;
  border-top-right-radius:4px;
}
.chat-time { font-size:11px; color:var(--text-lighter); margin-bottom:4px; }

/* 输入栏 */
.chat-input-bar {
  display:flex; gap:10px; padding:12px 20px;
  border-top:1px solid #eee; background:#fafafa;
  flex-shrink: 0;
}

/* 移动端弹层适配 */
@media (max-width: 640px) {
  .chat-overlay-dialog {
    width: 100vw; max-width: 100vw; max-height: 100vh;
    border-radius: 0; height: 100vh;
  }
  .chat-messages { max-height: none; flex: 1; }
  .chat-bubble { max-width: 240px; }
}

/* ==================== 用户资料页 ==================== */
.profile-card {
  background:#fff; border-radius:var(--radius);
  box-shadow: var(--shadow-xs);
  padding:32px; max-width:400px; margin:0 auto; text-align:center;
}

/* ==================== 附近人 / 好友列表 ==================== */
.user-list {
  background:#fff; border-radius:var(--radius);
  box-shadow: var(--shadow-xs); overflow:hidden;
}
.user-list-item {
  display:flex; align-items:center; padding:12px 18px;
  border-bottom:1px solid #f5f5f5; transition:background 0.15s;
}
.user-list-item:hover { background:#fafafa; }
.user-list-item:last-child { border-bottom:none; }

/* ==================== 菜单列表 ==================== */
.menu-card {
  background:#fff; border-radius:var(--radius);
  box-shadow: var(--shadow-xs); margin-bottom:16px; overflow:hidden;
}
.menu-item {
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 20px; border-bottom:1px solid #f5f5f5;
  cursor:pointer; transition:background 0.15s;
}
.menu-item:last-child { border-bottom:none; }
.menu-item:hover { background:#fafafa; }
.menu-item-left { display:flex; align-items:center; gap:12px; }
.menu-item-icon {
  width:36px; height:36px; border-radius:10px; display:flex;
  align-items:center; justify-content:center; font-size:17px;
}
.menu-item-icon.orange { background: var(--primary-light); color: var(--primary); }
.menu-item-icon.blue { background: #e6f7ff; color: var(--blue); }
.menu-item-icon.green { background: #f6ffed; color: var(--green); }
.menu-item-icon.red { background: #fff0f0; color: var(--red); }
.menu-item-text { font-size:14px; color:var(--text); }
/* 附近赶集人图标 */
.nearby-icon {
  display:inline-flex; align-items:center; justify-content:center;
  width:20px; height:20px; border-radius:5px;
  background: var(--primary-light); color: var(--primary);
  font-size:11px; margin-right:4px; vertical-align:middle;
}

/* ==================== 弹窗 ==================== */
.modal-overlay {
  position: fixed; top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.45); z-index: 200;
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 0.2s;
}
.modal-dialog {
  background: #fff; border-radius: var(--radius-lg); width: 440px; max-width:90vw;
  max-height: 80vh; overflow-y: auto;
  box-shadow: 0 12px 48px rgba(0,0,0,0.2);
  animation: scaleIn 0.2s;
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; border-bottom: 1px solid #f5f5f5;
}
.modal-title { font-size: 16px; font-weight: 600; }
.modal-close {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--text-light); cursor: pointer; transition: 0.15s;
}
.modal-close:hover { background: #f5f5f5; color: var(--text); }
.modal-body { padding: 18px 24px; }
.modal-footer { padding: 12px 24px 18px; display: flex; gap: 10px; justify-content: flex-end; }

@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes scaleIn { from{opacity:0;transform:scale(0.92)} to{opacity:1;transform:scale(1)} }

/* ==================== Toast ==================== */
.toast {
  position: fixed; top: 72px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.75); color: #fff; padding: 10px 24px;
  border-radius: 20px; font-size: 14px; z-index: 300; white-space: nowrap;
  animation: toastIn 0.3s; pointer-events: none;
}
@keyframes toastIn {
  from{opacity:0;transform:translateX(-50%) translateY(-10px)}
  to{opacity:1;transform:translateX(-50%) translateY(0)}
}

/* ==================== Loading ==================== */
.loading-mask {
  position: fixed; top:0; left:0; right:0; bottom:0;
  background: rgba(255,255,255,0.5); z-index:250;
  display:flex; align-items:center; justify-content:center;
}
.spinner {
  width: 36px; height: 36px; border: 3px solid #eee;
  border-top-color: var(--primary); border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to{transform:rotate(360deg)} }

/* ==================== Tab 切换 ==================== */
.page-tabs {
  display:flex; align-items:center; gap: 4px;
  margin-bottom: 16px; background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  padding: 4px; position: relative; z-index: 2;
}
.page-tab {
  padding: 10px 20px; font-size: 14px; color: var(--text-gray);
  cursor:pointer; border-radius: var(--radius-sm);
  transition:all 0.2s; white-space: nowrap;
}
.page-tab:hover { color: var(--primary); }
.page-tab.active {
  background: var(--primary-light); color: var(--primary);
  font-weight: 600;
}

/* ==================== 选择器弹窗项 ==================== */
.picker-option {
  padding: 11px 16px; cursor:pointer; border-bottom:1px solid #f5f5f5;
  transition:all 0.15s; border-radius: 6px; margin: 2px 0;
}
.picker-option:hover { background:#fafafa; color: var(--primary); }
.picker-option:last-child { border-bottom: none; }

/* ==================== 空状态 ==================== */
.empty-state { text-align:center; padding:60px 20px; }
.empty-icon {
  font-size:28px; display:inline-flex; align-items:center; justify-content:center;
  width:72px; height:72px; border-radius:50%; margin-bottom:14px;
  background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(247,147,26,0.08));
}
.empty-title { font-size:15px; font-weight:600; color:var(--text); margin-bottom:6px; }
.empty-desc { font-size:13px; color:var(--text-light); }

/* ==================== 分页加载 ==================== */
.load-more {
  text-align:center; padding:14px; color:var(--primary);
  cursor:pointer; font-size:14px; border-radius: 8px;
  transition: background 0.15s;
}
.load-more:hover { background: var(--primary-light); }

/* ==================== 温馨提示 ==================== */
.disclaimer {
  display:flex; gap:10px; padding:14px 18px; background:#fffbf0;
  border-radius: var(--radius-sm); border: 1px solid #f5e6c8;
  margin: 16px 0;
}
.disclaimer-icon { font-size:20px; flex-shrink:0; }
.disclaimer-title { font-size:14px; font-weight:600; color:#b8860b; margin-bottom:4px; }
.disclaimer-text { font-size:12px; color:#8a6d3b; line-height:1.6; }

/* ==================== 工具类 ==================== */
.text-cut { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.text-gray { color:var(--text-gray); }
.text-light { color:var(--text-light); }
.text-primary { color:var(--primary); }
.text-red { color:var(--red); }
.text-center { text-align:center; }
.text-sm { font-size:13px; }
.text-xs { font-size:12px; }
.mt-4 { margin-top:4px; }
.mt-8 { margin-top:8px; }
.mt-12 { margin-top:12px; }
.mt-16 { margin-top:16px; }
.mt-20 { margin-top:20px; }
.mb-4 { margin-bottom:4px; }
.mb-6 { margin-bottom:6px; }
.mb-8 { margin-bottom:8px; }
.mb-12 { margin-bottom:12px; }
.mb-16 { margin-bottom:16px; }
.mr-8 { margin-right:8px; }
.flex { display:flex; }
.flex-center { align-items:center; }
.flex-between { justify-content:space-between; }
.flex-1 { flex:1; }
.gap-8 { gap:8px; }
.gap-12 { gap:12px; }
.gap-16 { gap:16px; }
.w-full { width:100%; }

/* ==================== 支付弹窗 ==================== */
.pay-modal-body { padding: 20px 0; }
.pay-qr-wrap {
  display: inline-block; padding: 16px; background: #fff;
  border-radius: 8px; border: 2px solid #eee; margin-bottom: 12px;
}
.pay-qr-wrap img {
  width: 200px; height: 200px; display: block;
}
.pay-qr-placeholder {
  width: 200px; height: 200px; display: flex; align-items: center;
  justify-content: center; background: #f5f5f5; color: #999; font-size: 14px;
}
.pay-status { font-size: 13px; color: #ff6b35; margin-top: 8px; }
.pay-status.success { color: #52c41a; }
.pay-status.expired { color: #999; }
.pay-timer { font-size: 12px; color: #bbb; margin-top: 4px; }
.pay-fallback {
  background: #fffbe6; border: 1px solid #ffe58f;
  border-radius: 8px; padding: 16px; margin-bottom: 12px; text-align: left;
}
.pay-fallback-text { font-size: 13px; color: #8c6d00; }

/* ==================== 移动端顶部导航栏适配 ==================== */
@media (max-width: 640px) {
  .tn-inner { padding: 0 12px; }
  .tn-logo { margin-right: 8px; }
  .tn-logo-text { font-size: 15px; }
  .tn-nav-item { padding: 0 10px; font-size: 13px; gap: 4px; }
  .tn-nav-icon { font-size: 15px; }
  .tn-search-input { width: 100px; }
  .tn-search-input:focus { width: 140px; }
  .tn-user { padding: 4px 6px; gap: 6px; }
}
@media (max-width: 400px) {
  .tn-logo-text { display: none; }
  .tn-nav-item { padding: 0 7px; font-size: 12px; }
  .tn-search-input { width: 70px; }
  .tn-search-input:focus { width: 100px; }
  .tn-user-name { display: none; }
}

/* ==================== SEO地区页 - 面包屑增强 ==================== */
.mc-bc-sep { color: var(--text-lighter); font-size: 12px; }
.mc-bc-current { color: var(--text); font-weight: 500; }
.mc-breadcrumb a {
  color: var(--text-gray); font-size: 13px; text-decoration: none;
  transition: color 0.15s;
}
.mc-breadcrumb a:hover { color: var(--primary); text-decoration: underline; }

/* ==================== SEO地区页 - 标题区 ==================== */
.market-header {
  text-align: center; padding: 30px 0 20px;
}
.market-title {
  font-size: 26px; color: var(--text); font-weight: 700; margin-bottom: 8px;
}
.market-desc {
  font-size: 15px; color: var(--text-gray); max-width: 900px; margin: 0 auto;
}

/* ==================== SEO地区页 - 城市网格 ==================== */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.city-grid-item {
  display: block; padding: 10px 14px; background: #f5f5f5;
  border-radius: 8px; color: var(--text); text-decoration: none;
  font-size: 14px; transition: all 0.2s;
  position: relative;
}
.city-grid-item:hover { background: var(--primary); color: #fff; }
.city-grid-badge {
  float: right; background: var(--primary); color: #fff;
  font-size: 11px; padding: 1px 6px; border-radius: 10px;
  transition: all 0.2s;
}
.city-grid-item:hover .city-grid-badge { background: #fff; color: var(--primary); }

/* ==================== SEO地区页 - 赶集日历表格 ==================== */
.market-table {
  width: 100%; border-collapse: collapse;
}
.market-table th {
  background: var(--primary); color: #fff;
  padding: 10px 8px; font-size: 13px; text-align: center;
  white-space: nowrap;
}
.market-table th:first-child { border-radius: 8px 0 0 0; }
.market-table th:last-child { border-radius: 0 8px 0 0; }
.market-table td {
  padding: 10px 8px; border-bottom: 1px solid #eee;
  font-size: 13px; text-align: center; vertical-align: middle;
}
.market-table tr:nth-child(even) { background: #fafafa; }
.market-table tr:hover { background: #f0f0f0; }
.market-date { font-weight: 700; color: var(--primary); white-space: nowrap; }
.market-date small { font-weight: 400; color: var(--text-light); }
.market-lunar { font-size: 12px; color: var(--text-gray); white-space: nowrap; }
.market-list { text-align: left; font-size: 13px; line-height: 1.8; }
.market-nodata { color: var(--text-lighter); }
.market-link { color: var(--text); text-decoration: none; transition: color 0.15s; }
.market-link:hover { color: var(--primary); text-decoration: underline; }
.market-addr { font-size: 11px; color: var(--text-lighter); margin-left: 2px; }

/* ==================== SEO地区页 - CTA区域 ==================== */
.market-cta {
  text-align: center; margin: 30px 0; padding: 20px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-xs);
}
.market-cta p { margin-bottom: 12px; color: var(--text-gray); font-size: 14px; }
.market-cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ==================== SEO地区页 - 文章式赶集列表（县级） ==================== */
.market-article-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-xs); padding: 30px 32px 24px;
  margin-bottom: 20px;
}
.market-article-intro {
  font-size: 16px; line-height: 1.9; color: var(--text);
  margin-bottom: 20px; text-align: justify;
}
.market-town-list {
  list-style: none; padding: 0; margin: 0 0 16px;
}
.market-town-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 0; border-bottom: 1px dashed #eee;
  transition: background 0.15s;
}
.market-town-item:last-child { border-bottom: none; }
.market-town-item:hover { background: #fafafa; }
.market-town-num {
  flex-shrink: 0; width: 28px; text-align: right;
  font-size: 15px; color: var(--text-lighter); font-weight: 500; line-height: 1.6;
}
.market-town-body { flex: 1; min-width: 0; }
.market-town-name {
  font-weight: 600; color: var(--text); font-size: 15px; margin-bottom: 3px;
}
.market-town-days {
  font-size: 14px; color: var(--text-gray); line-height: 1.7; word-break: break-all;
}
.market-town-days b {
  color: var(--primary); font-weight: 600;
}
.market-article-footnote {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px dashed #e8e8e8;
  font-size: 14px; color: var(--text-gray); line-height: 1.9;
}
.market-article-footnote a {
  color: var(--primary); text-decoration: none; font-weight: 500;
}
.market-article-footnote a:hover { text-decoration: underline; }

/* 旧 market-footnote 废弃，保留以免其他页面引用 */
.market-footnote { margin-top: 20px; padding: 18px 20px; background: #f9f9f9; border-radius: 8px; font-size: 14px; color: var(--text-gray); line-height: 1.9; }
.market-footnote a { color: var(--primary); text-decoration: none; font-weight: 500; }
.market-footnote a:hover { text-decoration: underline; }


/* ==================== SEO地区页 - 响应式 ==================== */
@media (max-width: 768px) {
  .market-title { font-size: 20px; }
  .market-header { padding: 20px 0 12px; }
  .city-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .market-table td, .market-table th { padding: 6px 4px; font-size: 12px; }
  .market-date { font-size: 12px; }
  .market-article-card { padding: 20px 18px; border-radius: var(--radius-sm); }
  .market-article-intro { font-size: 15px; }
  .market-town-name { font-size: 14px; }
  .market-town-days { font-size: 13px; }
  .market-town-num { width: 24px; font-size: 14px; }
}

/* ==================== 小程序码右侧挂件 ==================== */
.qr-sidebar {
  position: fixed; right: 16px; bottom: 160px; z-index: 50;
  display: block;
}
.qr-sidebar-inner {
  width: 140px;
  background: #fff; border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 12px; text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.qr-sidebar-inner:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.14);
  transform: translateY(-2px);
}
.qr-sidebar-img {
  width: 116px; height: 116px; display: block; margin: 0 auto 8px;
  border-radius: 6px; object-fit: contain;
}
.qr-sidebar-text {
  font-size: 12px; color: var(--text-gray); line-height: 1.5;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.qr-sidebar-icon { color: var(--primary); font-size: 14px; }

@media (max-width: 1400px) {
  .qr-sidebar { display: none; }
}
