/* 绘延商行 - 全局样式（暖粉橘萌系小动物版） */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background-color: #fff5ee;
  background-image:
    radial-gradient(ellipse at 12% 18%, rgba(255,183,178,0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 88% 55%, rgba(255,204,128,0.13) 0%, transparent 45%),
    radial-gradient(ellipse at 45% 90%, rgba(255,171,145,0.10) 0%, transparent 40%),
    radial-gradient(rgba(255,138,101,0.06) 0.5px, transparent 0.5px),
    linear-gradient(180deg, #fff8f3 0%, #fff5ee 30%, #fff0e8 100%);
  background-size: auto, auto, auto, 28px 28px, auto;
  background-attachment: fixed;
  color: #5d4037;
  font-size: 14px;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, select, textarea { outline: none; font-family: inherit; }
/* 导航栏 */
.navbar {
  background: linear-gradient(135deg, #fff 0%, #fff8f5 100%);
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(255,138,101,0.12);
  border-bottom: 2px solid #ffe0d0;
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 30px;
}
.navbar .logo img { height: 38px; width: 38px; border-radius: 50%; border: 2px solid #ff8a65; object-fit: cover; background: #fff; box-shadow: 0 2px 8px rgba(255,138,101,0.2); }
.navbar .logo .brand {
  color: #ff7043;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
}
.navbar .nav-menu {
  display: flex;
  gap: 28px;
  margin-right: 30px;
}
.navbar .nav-menu a {
  color: #8d6e63;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.navbar .nav-menu a:hover, .navbar .nav-menu a.active {
  color: #ff7043;
  border-bottom-color: #ff7043;
}
.navbar .search-box {
  display: flex;
  flex: 1;
  max-width: 400px;
  margin-right: 20px;
}
.navbar .search-box input {
  flex: 1;
  height: 36px;
  padding: 0 12px;
  border: 2px solid #ffe0d0;
  border-right: none;
  border-radius: 20px 0 0 20px;
  font-size: 14px;
  background: #fff;
}
.navbar .search-box input:focus { border-color: #ffab91; }
.navbar .search-box button {
  width: 70px;
  background: linear-gradient(135deg, #ff8a65, #ff7043);
  color: #fff;
  font-weight: bold;
  border-radius: 0 20px 20px 0;
}
.navbar .search-box button:hover { background: linear-gradient(135deg, #ff7043, #f4511e); }
.navbar .user-area {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.navbar .user-area .login-link { color: #8d6e63; font-size: 14px; }
.navbar .user-area .login-link:hover { color: #ff7043; }
.navbar .user-area .register-btn {
  background: linear-gradient(135deg, #ff8a65, #ff7043);
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(255,112,67,0.3);
}
.navbar .user-area .register-btn:hover { box-shadow: 0 4px 12px rgba(255,112,67,0.4); }
.navbar .user-info {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8d6e63;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 20px;
}
.navbar .user-info:hover { background: #fff0e8; }
.navbar .user-info .avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #ffab91;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px;
}
.navbar .dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255,138,101,0.18);
  min-width: 140px;
  display: none;
  overflow: hidden;
  border: 1px solid #ffe0d0;
}
.navbar .dropdown.show { display: block; }
.navbar .dropdown a {
  display: block;
  padding: 10px 16px;
  color: #5d4037;
  font-size: 14px;
}
.navbar .dropdown a:hover { background: #fff5ee; color: #ff7043; }
/* 容器 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}
/* 首页布局 */
.home-layout {
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  gap: 16px;
  margin-bottom: 16px;
}
/* 提示卡 */
.tip-card {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
  min-height: 160px;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  padding: 16px;
  color: #5d4037;
  box-shadow: 0 4px 14px rgba(255,183,77,0.15);
}
.tip-card .tip-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ff8a65, #ff7043);
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 10px;
  border-radius: 10px;
  margin-bottom: 8px;
}
.tip-card .tip-title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 8px;
}
.tip-card .tip-subtitle {
  font-size: 12px;
  color: #ff7043;
  background: rgba(255,112,67,0.1);
  padding: 4px 10px;
  border-radius: 10px;
  display: inline-block;
}
.tip-card.tip-warn {
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
}
.tip-card.tip-warn .tip-title { color: #e91e63; }
.tip-card.tip-warn .tip-tag { background: linear-gradient(135deg, #f48fb1, #ec407a); }
/* 轮播 */
.banner {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 320px;
  background: #ffe0d0;
  box-shadow: 0 4px 16px rgba(255,138,101,0.12);
}
.banner .slides { position: relative; height: 100%; }
.banner .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.banner .slide.active { opacity: 1; }
.banner .slide-content {
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.banner .slide-content h2 { font-size: 28px; margin-bottom: 12px; }
.banner .slide-content p { font-size: 16px; margin-bottom: 16px; }
.banner .slide-content .btn-go {
  background: linear-gradient(135deg, #ff8a65, #ff7043);
  color: #fff;
  padding: 10px 32px;
  border-radius: 20px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(255,112,67,0.3);
}
.banner .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.7);
  color: #ff7043;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  z-index: 2;
}
.banner .arrow:hover { background: rgba(255,255,255,0.9); }
.banner .arrow.left { left: 12px; }
.banner .arrow.right { right: 12px; }
.banner .dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.banner .dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
}
.banner .dots span.active { background: #ff7043; }
/* 公告卡片 */
.notice-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  height: 320px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(255,138,101,0.1);
  border: 1px solid #ffe0d0;
}
.notice-card .notice-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.notice-card .notice-header h3 {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ff7043;
}
.notice-card .notice-list { flex: 1; overflow-y: auto; }
.notice-card .notice-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #fff5ee;
  gap: 8px;
}
.notice-card .notice-item .dot {
  width: 6px; height: 6px;
  background: #ff8a65;
  border-radius: 50%;
  flex-shrink: 0;
}
.notice-card .notice-item .text {
  flex: 1;
  font-size: 13px;
  color: #8d6e63;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notice-card .notice-item .arrow { color: #ffab91; font-size: 12px; }
/* 专区 */
.zones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.zone-card {
  border-radius: 18px;
  height: 110px;
  color: #5d4037;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(255,138,101,0.1);
}
.zone-card:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(255,138,101,0.2); }
.zone-card.z1 { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.zone-card.z2 { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.zone-card.z3 { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.zone-card.z4 { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.zone-card .zone-info {
  padding: 14px 0 14px 18px;
  z-index: 2;
  flex: 1;
}
.zone-card h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
  line-height: 1.3;
}
.zone-card .go-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
}
.zone-card.z1 .go-btn { background: #ffb74d; }
.zone-card.z2 .go-btn { background: #f48fb1; }
.zone-card.z3 .go-btn { background: #81c784; }
.zone-card.z4 .go-btn { background: #64b5f6; }
.zone-card .zone-icon {
  height: 120px;
  width: auto;
  position: absolute;
  right: -8px;
  bottom: -8px;
  z-index: 1;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}
/* 统计栏 */
.stats-bar {
  background: #fff;
  border-radius: 14px;
  padding: 12px 24px;
  display: flex;
  gap: 40px;
  margin-bottom: 16px;
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(255,138,101,0.1);
  border: 1px solid #ffe0d0;
}
.stats-bar .stat-item { display: flex; align-items: center; gap: 6px; color: #8d6e63; }
.stats-bar .stat-item .num { color: #ff7043; font-weight: bold; font-size: 18px; }
/* 筛选栏 */
.filter-bar {
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(255,138,101,0.08);
  border: 1px solid #ffe0d0;
}
.filter-bar .sort-btn {
  padding: 6px 14px;
  background: #fff5ee;
  border-radius: 20px;
  font-size: 13px;
  color: #8d6e63;
}
.filter-bar .sort-btn.active { background: linear-gradient(135deg, #ff8a65, #ff7043); color: #fff; font-weight: bold; }
.filter-bar .filter-select {
  padding: 6px 10px;
  border: 2px solid #ffe0d0;
  border-radius: 20px;
  font-size: 13px;
  background: #fff;
  color: #5d4037;
}
.filter-bar .filter-select:focus { border-color: #ffab91; }
.filter-bar .instant-tag {
  padding: 6px 14px;
  background: linear-gradient(135deg, #ff8a65, #ff7043);
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
}
.filter-bar .spacer { flex: 1; }
.filter-bar .reset-btn {
  padding: 6px 14px;
  border: 2px solid #ffab91;
  color: #ff7043;
  border-radius: 20px;
  font-size: 13px;
  background: #fff;
}
.filter-bar .reset-btn:hover { background: #fff5ee; }
.filter-bar .view-btn, .filter-bar .adv-btn {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}
.filter-bar .view-btn { background: #fff5ee; color: #8d6e63; }
.filter-bar .adv-btn { background: linear-gradient(135deg, #ba68c8, #ab47bc); color: #fff; }
/* 商品列表 */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid #ffe0d0;
}
.product-card:hover { box-shadow: 0 6px 20px rgba(255,138,101,0.15); transform: translateY(-2px); }
.product-card .card-img {
  position: relative;
  height: 200px;
  background: #fff5ee;
  overflow: hidden;
}
.product-card .card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card .login-tag {
  position: absolute;
  top: 8px; left: 8px;
  background: linear-gradient(135deg, #ff8a65, #ff7043);
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 10px;
  border-radius: 10px;
}
.product-card .card-body { padding: 12px; }
.product-card .card-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #5d4037;
}
.product-card .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  font-size: 12px;
  color: #a1887f;
  margin-bottom: 8px;
}
.product-card .card-attrs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 10px;
}
.product-card .attr {
  text-align: center;
  font-size: 11px;
}
.product-card .attr .attr-val {
  font-weight: bold;
  color: #5d4037;
  font-size: 13px;
}
.product-card .attr .attr-label { color: #bcaaa4; }
.product-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card .price { color: #ff5722; font-size: 22px; font-weight: bold; }
.product-card .price::before { content: '¥'; font-size: 14px; }
.product-card .deposit { font-size: 12px; color: #bcaaa4; }
.product-card .card-btns { display: flex; gap: 6px; }
.product-card .btn-time {
  padding: 6px 10px;
  border: 2px solid #ffab91;
  color: #ff7043;
  border-radius: 20px;
  font-size: 12px;
  background: #fff;
}
.product-card .btn-rent {
  padding: 6px 14px;
  background: linear-gradient(135deg, #ff8a65, #ff7043);
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(255,112,67,0.25);
}
.product-card .btn-rent:hover { box-shadow: 0 4px 12px rgba(255,112,67,0.35); }
/* 列表视图 */
.product-list-view { display: flex; flex-direction: column; gap: 12px; }
.product-list-view .product-card { display: flex; }
.product-list-view .card-img { width: 240px; height: 140px; flex-shrink: 0; }
.product-list-view .card-body { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
/* 悬浮工具栏 */
.floating-bar {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
}
.floating-bar .float-btn {
  width: 52px;
  padding: 10px 4px;
  border-radius: 14px;
  text-align: center;
  font-size: 11px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(255,112,67,0.2);
}
.floating-bar .float-btn .icon { font-size: 20px; }
.floating-bar .float-btn.yellow,
.floating-bar .float-btn.gray { background: linear-gradient(135deg, #ff8a65, #ff7043); color: #fff; }
/* 页脚 */
.footer {
  background: linear-gradient(135deg, #5d4037, #4e342e);
  color: #bcaaa4;
  padding: 24px;
  text-align: center;
  margin-top: 40px;
}
.footer .footer-links { margin-bottom: 12px; }
.footer .footer-links a { color: #d7ccc8; margin: 0 10px; font-size: 13px; }
.footer .footer-links a:hover { color: #ffab91; }
.footer .footer-tip { font-size: 12px; color: #8d6e63; }
/* 弹窗 */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(93,64,55,0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal-overlay.show { display: flex; }
.modal {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  max-width: 500px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 32px rgba(255,112,67,0.2);
  border: 1px solid #ffe0d0;
}
.modal .modal-close {
  position: absolute;
  top: 12px; right: 16px;
  font-size: 24px;
  color: #bcaaa4;
  background: none;
}
.modal .modal-close:hover { color: #ff7043; }
.modal .modal-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: #ff7043;
}
/* 按钮 */
.btn-primary {
  background: linear-gradient(135deg, #ff8a65, #ff7043);
  color: #fff;
  padding: 10px 24px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 15px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(255,112,67,0.25);
}
.btn-primary:hover { background: linear-gradient(135deg, #ff7043, #f4511e); box-shadow: 0 6px 16px rgba(255,112,67,0.35); }
.btn-primary:disabled { background: #e0e0e0; cursor: not-allowed; box-shadow: none; }
.btn-outline {
  background: #fff;
  border: 2px solid #ffe0d0;
  padding: 8px 20px;
  border-radius: 20px;
  color: #8d6e63;
}
.btn-outline:hover { border-color: #ffab91; color: #ff7043; }
/* 表单 */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #5d4037;
}
.form-group label .required { color: #e53935; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #ffe0d0;
  border-radius: 12px;
  font-size: 14px;
  background: #fff;
  color: #5d4037;
}
.form-group input[type="radio"], .form-group input[type="checkbox"] {
  width: auto;
  padding: 0;
  margin-right: 4px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #ffab91;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group .hint { font-size: 12px; color: #ff8a65; margin-top: 4px; line-height: 1.5; }
.form-row { display: flex; gap: 12px; }
.form-row .form-group { flex: 1; }
/* 提示消息 */
.toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(93,64,55,0.9);
  color: #fff;
  padding: 10px 24px;
  border-radius: 20px;
  z-index: 2000;
  font-size: 14px;
  display: none;
}
.toast.show { display: block; }
/* 分页 */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.pagination button {
  padding: 6px 14px;
  border: 2px solid #ffe0d0;
  background: #fff;
  border-radius: 10px;
  color: #5d4037;
}
.pagination button.active { background: linear-gradient(135deg, #ff8a65, #ff7043); border-color: #ff7043; color: #fff; font-weight: bold; }
.pagination button:disabled { opacity: 0.5; }
/* 空状态 */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #bcaaa4;
}
.empty-state .empty-icon { font-size: 48px; margin-bottom: 12px; }
/* ========== 汉堡菜单按钮（默认隐藏） ========== */
.navbar .menu-toggle {
  display: none;
  background: none;
  color: #ff7043;
  font-size: 22px;
  padding: 4px 8px;
  margin-left: auto;
}
/* ========== 底部Tab导航栏（默认隐藏，手机端显示） ========== */
.bottom-tabbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #fff;
  border-top: 2px solid #ffe0d0;
  z-index: 100;
  box-shadow: 0 -2px 12px rgba(255,138,101,0.1);
}
.bottom-tabbar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #bcaaa4;
  font-size: 11px;
}
.bottom-tabbar a .tab-icon { font-size: 22px; }
.bottom-tabbar a.active { color: #ff7043; }
/* ========== 响应式适配 ========== */
/* 平板及以下 */
@media (max-width: 1024px) {
  .home-layout {
    grid-template-columns: 180px 1fr 240px;
    gap: 12px;
  }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .zones { grid-template-columns: repeat(2, 1fr); }
  .zone-card { height: 90px; }
  .zone-card .zone-info { padding: 10px 0 10px 14px; }
  .zone-card h3 { font-size: 14px; }
  .zone-card .zone-icon { height: 95px; }
}
/* 手机端 */
@media (max-width: 768px) {
  body { font-size: 13px; }
  /* 导航栏 */
  .navbar {
    height: auto;
    flex-wrap: wrap;
    padding: 8px 12px;
    gap: 8px;
  }
  .navbar .logo { margin-right: 8px; gap: 6px; }
  .navbar .logo img { height: 30px; width: 30px; border-width: 1.5px; }
  .navbar .logo .brand { font-size: 16px; letter-spacing: 1px; }
  .navbar .menu-toggle { display: block; }
  .navbar .nav-menu {
    display: none;
    order: 10;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-right: 0;
    background: #fff8f5;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ffe0d0;
  }
  .navbar .nav-menu.show { display: flex; }
  .navbar .nav-menu a {
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid #fff0e8;
    border-bottom-width: 1px;
  }
  .navbar .nav-menu a:last-child { border-bottom: none; }
  .navbar .search-box {
    order: 9;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .navbar .search-box input { height: 34px; font-size: 13px; }
  .navbar .search-box button { width: 60px; font-size: 13px; }
  .navbar .user-area { gap: 8px; margin-left: auto; }
  .navbar .user-area .login-link { font-size: 13px; }
  .navbar .user-area .register-btn { padding: 5px 12px; font-size: 13px; }
  /* 容器 */
  .container { padding: 10px; }
  /* 首页布局：三栏变单栏 */
  .home-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  /* 提示卡横向排列 */
  .home-layout .left-col {
    display: flex;
    gap: 10px;
    overflow-x: auto;
  }
  .home-layout .left-col .tip-card {
    min-width: 200px;
    min-height: 100px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .tip-card .tip-title { font-size: 14px; }
  /* 轮播 */
  .banner { height: 180px; border-radius: 12px; }
  .banner .slide-content h2 { font-size: 18px; margin-bottom: 6px; }
  .banner .slide-content p { font-size: 13px; margin-bottom: 10px; }
  .banner .slide-content .btn-go { padding: 7px 20px; font-size: 13px; }
  .banner .arrow { width: 32px; height: 32px; font-size: 16px; }
  .banner .arrow.left { left: 6px; }
  .banner .arrow.right { right: 6px; }
  /* 公告卡片 */
  .notice-card { height: auto; max-height: 200px; border-radius: 12px; padding: 12px; }
  .notice-card .notice-header h3 { font-size: 14px; }
  .notice-card .notice-item { padding: 8px 0; }
  .notice-card .notice-item .text { font-size: 12px; }
  /* 专区 - 手机端 */
  .zones { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 10px; }
  .zone-card { height: 80px; border-radius: 14px; }
  .zone-card .zone-info { padding: 8px 0 8px 12px; }
  .zone-card .zone-icon { height: 85px; right: -6px; bottom: -6px; }
  .zone-card h3 { font-size: 12px; margin-bottom: 4px; }
  .zone-card .go-btn { padding: 2px 10px; font-size: 11px; }
  /* 统计栏 */
  .stats-bar { padding: 10px 14px; gap: 20px; font-size: 13px; border-radius: 10px; flex-wrap: wrap; }
  .stats-bar .stat-item .num { font-size: 16px; }
  /* 筛选栏 */
  .filter-bar { padding: 10px; gap: 6px; border-radius: 10px; overflow-x: auto; flex-wrap: nowrap; }
  .filter-bar .sort-btn, .filter-bar .filter-select, .filter-bar .instant-tag,
  .filter-bar .reset-btn, .filter-bar .view-btn, .filter-bar .adv-btn {
    padding: 5px 10px; font-size: 12px; white-space: nowrap; flex-shrink: 0;
  }
  .filter-bar .spacer { display: none; }
  /* 商品网格 - 手机端横向列表布局 */
  .product-grid { grid-template-columns: 1fr; gap: 10px; }
  .product-card { display: flex; border-radius: 12px; }
  .product-card .card-img { width: 130px; height: 130px; flex-shrink: 0; }
  .product-card .card-body { flex: 1; padding: 8px 10px; display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
  .product-card .card-title { font-size: 13px; margin-bottom: 4px; }
  .product-card .card-meta { font-size: 11px; gap: 2px 8px; margin-bottom: 4px; }
  .product-card .card-attrs { grid-template-columns: repeat(4, 1fr); gap: 2px; margin-bottom: 6px; }
  .product-card .attr .attr-val { font-size: 12px; }
  .product-card .attr .attr-label { font-size: 10px; }
  .product-card .price { font-size: 18px; }
  .product-card .price::before { font-size: 12px; }
  .product-card .deposit { font-size: 11px; }
  .product-card .btn-time { padding: 4px 8px; font-size: 11px; }
  .product-card .btn-rent { padding: 4px 10px; font-size: 11px; }
  .product-card .card-footer { flex-direction: row; align-items: center; gap: 6px; }
  .product-card .card-btns { width: auto; }
  .product-card .card-btns button { flex: none; }
  /* 列表视图手机端 */
  .product-list-view .product-card { flex-direction: row; }
  .product-list-view .card-img { width: 130px; height: 130px; }
  /* 悬浮工具栏 - 手机端隐藏 */
  .floating-bar { display: none !important; }
  /* 底部Tab导航栏 */
  .bottom-tabbar { display: flex; }
  body { padding-bottom: 56px; }
  /* 页脚 */
  .footer { padding: 16px 12px; margin-top: 24px; }
  .footer .footer-links { margin-bottom: 8px; line-height: 2; }
  .footer .footer-links a { margin: 0 6px; font-size: 12px; }
  .footer .footer-tip { font-size: 11px; }
  /* 弹窗 */
  .modal { width: 94%; padding: 18px; border-radius: 14px; max-height: 90vh; }
  .modal .modal-title { font-size: 16px; margin-bottom: 14px; }
  /* 表单 */
  .form-row { flex-direction: column; gap: 0; }
  .form-group input, .form-group select, .form-group textarea { font-size: 13px; padding: 9px 10px; }
  .btn-primary { padding: 10px 20px; font-size: 14px; }
  /* 分页 */
  .pagination button { padding: 5px 10px; font-size: 12px; }
  /* 空状态 */
  .empty-state { padding: 40px 16px; }
  .empty-state .empty-icon { font-size: 36px; }
}
/* 小屏手机 */
@media (max-width: 380px) {
  .product-card .card-img { width: 110px; height: 110px; }
  .product-card .card-attrs { grid-template-columns: repeat(4, 1fr); }
  .navbar .logo .brand { font-size: 14px; }
  .zone-card h3 { font-size: 11px; }
  .zone-card .go-btn { padding: 2px 8px; font-size: 10px; }
}
/* === 萌系优化新增样式 === */
/* 号主在线徽章 */
.product-card .online-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #ff8a65, #ff5722);
  color: #fff;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 10px;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(255,87,34,0.3);
}
/* 分页省略号和跳页 */
.pagination .page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  color: #bcaaa4;
  font-size: 13px;
}
.pagination .page-jump {
  font-size: 13px;
  color: #8d6e63;
  margin-left: 8px;
  white-space: nowrap;
}
.pagination .page-jump input {
  width: 44px;
  height: 30px;
  border: 2px solid #ffe0d0;
  border-radius: 8px;
  text-align: center;
  font-size: 13px;
  margin: 0 4px;
}
.pagination .page-jump input:focus {
  outline: none;
  border-color: #ffab91;
}
/* 列表视图优化 */
.product-list-view {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-list-view .product-card {
  display: flex;
  flex-direction: row;
}
.product-list-view .card-img {
  width: 220px;
  height: 150px;
  flex-shrink: 0;
}
.product-list-view .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-list-view .card-attrs {
  grid-template-columns: repeat(8, 1fr);
}
@media (max-width: 768px) {
  .product-list-view .card-img { width: 130px; height: 130px; }
  .product-list-view .card-attrs { grid-template-columns: repeat(4, 1fr); }
  .pagination .page-jump { display: none; }
  .product-card .online-badge { font-size: 10px; padding: 1px 8px; }
}
/* 支付方式选择 */
.pay-method-list { display: flex; flex-direction: column; gap: 10px; }
.pay-method-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid #ffe0d0;
  border-radius: 14px;
  cursor: pointer;
  transition: all .15s;
}
.pay-method-item:hover { border-color: #ffab91; background: #fff8f5; }
.pay-method-item.active { border-color: #ff7043; background: #fff5ee; }
.pay-method-item .pay-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  flex-shrink: 0;
}
.pay-method-item .pay-name { flex: 1; font-size: 15px; color: #5d4037; }
.pay-method-item .pay-check { font-size: 18px; color: #e0e0e0; }
.pay-method-item.active .pay-check { color: #ff7043; }
