
/* 可以保留原有的全局样式 */

.toast[data-v-c3e50264] {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 1001;
  white-space: nowrap;
}
.toast.show[data-v-c3e50264] {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.success-icon[data-v-c3e50264] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #52c41a;
  border-radius: 50%;
  font-size: 12px;
}

/* 基础样式 */
.home[data-v-f2c9a857] {
  min-height: 100vh;
  background: #f5f5f5;
}

/* 动画 */
@keyframes spin-f2c9a857 {
from {
    transform: rotate(0deg);
}
to {
    transform: rotate(360deg);
}
}
@keyframes gradientBG-f2c9a857 {
0% {
    background-position: 0% 50%;
}
50% {
    background-position: 100% 50%;
}
100% {
    background-position: 0% 50%;
}
}

/* 通用加载动画 */
.loading-spinner[data-v-f2c9a857] {
  border-radius: 50%;
  animation: spin-f2c9a857 0.8s linear infinite;
}

/* 顶部区域 */
.header[data-v-f2c9a857] {
  background: linear-gradient(135deg, #ff385c, #ff7e47);
  background-size: 400% 400%;
  animation: gradientBG-f2c9a857 15s ease infinite;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}
.header.sticky[data-v-f2c9a857] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

/* 单独处理 banner 的隐藏 */
.header.sticky .banner[data-v-f2c9a857] {
  display: none;
}
.banner[data-v-f2c9a857] {
  color: #fff;
  text-align: center;
  padding: 40px 20px 20px;
  position: relative;
  transition: all 0.3s ease;
  height: auto;
  max-height: 200px;
  opacity: 1;
}
.banner.hidden[data-v-f2c9a857] {
  max-height: 0;
  padding: 0;
  opacity: 0;
  overflow: hidden;
}
.banner h1[data-v-f2c9a857] {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.banner p[data-v-f2c9a857] {
  font-size: 16px;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* 搜索区域 */
.search-area[data-v-f2c9a857] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  width: 100%;
  box-sizing: border-box;
}
.search-area .location-picker[data-v-f2c9a857] {
  flex: 0 0 auto;
  max-width: 30%;
}
.search-area .search-bar[data-v-f2c9a857] {
  flex: 1;
  min-width: 0;
}

/* 搜索框的输入框样式 */
.search-area .search-bar[data-v-f2c9a857] input {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  padding: 8px 12px;
}

/* 搜索框的占位符文字样式 */
.search-area .search-bar[data-v-f2c9a857] input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* 小屏幕适配 */
@media screen and (max-width: 768px) {
.search-area[data-v-f2c9a857] {
    padding: 8px;
    gap: 4px;
}
.search-area .location-picker[data-v-f2c9a857] {
    max-width: 35%;
}
.search-area .search-bar[data-v-f2c9a857] input {
    font-size: 13px;
    padding: 6px 10px;
}
}

/* 导航区域 */
.nav-area[data-v-f2c9a857] {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  will-change: transform;
  transform: translateZ(0);
  border-radius: 20px 20px 0 0;
  margin-top: 12px;
}

/* 加载遮罩 */
.loading-mask[data-v-f2c9a857] {
  position: fixed;
  inset: 0;
  background: rgba(255, 56, 92, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  backdrop-filter: blur(4px);
}
.loading-mask.show[data-v-f2c9a857] {
  opacity: 1;
  visibility: visible;
}
.loading-mask span[data-v-f2c9a857] {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.loading-mask span[data-v-f2c9a857]::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin-f2c9a857 0.8s linear infinite;
}
.loading-mask .loading-spinner[data-v-f2c9a857] {
  display: none;
}

/* 悬浮活动图片 */
.float-activities[data-v-f2c9a857] {
  position: fixed;
  right: 16px;
  bottom: 100px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-item[data-v-f2c9a857] {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.float-item[data-v-f2c9a857]:active {
  transform: scale(0.95);
}
.float-item img[data-v-f2c9a857] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 分享区域 */
.share-area[data-v-f2c9a857] {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  padding: 12px 20px 16px;
  transition: all 0.3s ease;
  transform: translateY(0);
}
.share-area.hidden[data-v-f2c9a857] {
  transform: translateY(100%);
}
.share-bg[data-v-f2c9a857] {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(
    to top,
    rgb(255, 242, 240) 0%,
    rgba(255, 242, 240, 0.95) 20%,
    rgba(255, 242, 240, 0.6) 40%,
    rgba(255, 242, 240, 0) 100%
  );
  pointer-events: none;
}
.share-btn[data-v-f2c9a857] {
  position: relative;
  background: #ff385c;
  color: #ffffff;
  padding: 13px 32px;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 56, 92, 0.12);
  transition: transform 0.2s ease, background-color 0.2s ease,
    box-shadow 0.2s ease;
  will-change: transform;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.share-btn .share-icon[data-v-f2c9a857] {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  width: 20px;
  height: 20px;
  font-weight: bold;
}
.share-btn[data-v-f2c9a857]:active {
  transform: translateY(1px);
  background: #fff2f0;
  box-shadow: 0 2px 8px rgba(255, 56, 92, 0.1);
}

/* 加载状态 */
.loading[data-v-f2c9a857] {
  text-align: center;
  padding: 24px;
  color: #ff385c;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  margin: 12px;
  box-shadow: 0 4px 16px rgba(255, 56, 92, 0.08);
}
.loading .loading-spinner[data-v-f2c9a857] {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 56, 92, 0.1);
  border-top-color: #ff385c;
}
.loading span[data-v-f2c9a857] {
  font-size: 13px;
  color: #ff385c;
  font-weight: 500;
}

/* 骨架屏 */
.skeleton-container[data-v-f2c9a857] {
  padding: 12px;
}
.skeleton-item[data-v-f2c9a857] {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(255, 56, 92, 0.08);
  transition: all 0.3s ease;
}
.skeleton-image[data-v-f2c9a857] {
  width: 120px;
  height: 120px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 400% 100%;
  animation: shimmer-f2c9a857 1.5s infinite;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.skeleton-content[data-v-f2c9a857] {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.skeleton-title[data-v-f2c9a857] {
  height: 24px;
  width: 80%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 400% 100%;
  animation: shimmer-f2c9a857 1.5s infinite;
  border-radius: 4px;
}
.skeleton-price[data-v-f2c9a857] {
  height: 32px;
  width: 40%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 400% 100%;
  animation: shimmer-f2c9a857 1.5s infinite;
  border-radius: 4px;
}
.skeleton-desc[data-v-f2c9a857] {
  height: 16px;
  width: 60%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 400% 100%;
  animation: shimmer-f2c9a857 1.5s infinite;
  border-radius: 4px;
}
@keyframes shimmer-f2c9a857 {
0% {
    background-position: 100% 50%;
}
100% {
    background-position: 0 50%;
}
}

/* 空状态 */
.empty[data-v-f2c9a857] {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  background: #fff;
  border-radius: 12px;
  margin: 12px;
  box-shadow: 0 4px 16px rgba(255, 56, 92, 0.08);
}
.empty-icon[data-v-f2c9a857] {
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.8;
}
.empty p[data-v-f2c9a857] {
  font-size: 14px;
  font-weight: 500;
}

/* 加载完成提示 */
.no-more[data-v-f2c9a857] {
  text-align: center;
  padding: 20px;
  color: #999;
  font-size: 12px;
}
.no-more span[data-v-f2c9a857] {
  position: relative;
  padding: 0 12px;
}
.no-more span[data-v-f2c9a857]::before,
.no-more span[data-v-f2c9a857]::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: #ddd;
}
.no-more span[data-v-f2c9a857]::before {
  right: 100%;
}
.no-more span[data-v-f2c9a857]::after {
  left: 100%;
}

.location-page[data-v-a50a2e02] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 9999;
}
.page-header[data-v-a50a2e02] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 44px;
  padding: 0 16px;
  background: #fff;
  border-bottom: 1px solid #f5f5f5;
}
.title[data-v-a50a2e02] {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  flex: 1;
  text-align: center;
}
.back-btn[data-v-a50a2e02] {
  padding: 0 16px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  font-size: 14px;
}
.current-location[data-v-a50a2e02] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid #f5f5f5;
}
.label[data-v-a50a2e02] {
  font-size: 14px;
  color: #666;
}
.reload-location[data-v-a50a2e02] {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ff385c;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.2s;
}
.reload-location[data-v-a50a2e02]:active {
  background: #fff2f0;
}
.reload-location img[data-v-a50a2e02] {
  width: 14px;
  height: 14px;
}
.city-list[data-v-a50a2e02] {
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  background: #fff;
}
.city-nav[data-v-a50a2e02] {
  width: 80px;
  background: #f8f8f8;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-item[data-v-a50a2e02] {
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  color: #666;
  transition: all 0.2s;
}
.nav-item.active[data-v-a50a2e02] {
  color: #ff385c;
  background: #fff;
  font-weight: 500;
}
.nav-item.active[data-v-a50a2e02]::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 16px;
  background: #ff385c;
}
.city-content[data-v-a50a2e02] {
  flex: 1;
  overflow-y: auto;
  padding: 0 12px 20px;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}
.city-group[data-v-a50a2e02] {
  padding: 12px 0;
}
.group-title[data-v-a50a2e02] {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
  padding-left: 4px;
}
.city-grid[data-v-a50a2e02] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.city-item[data-v-a50a2e02] {
  text-align: center;
  padding: 12px 0;
  background: #f8f8f8;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s;
}
.city-item[data-v-a50a2e02]:active {
  background: #fff2f0;
  color: #ff385c;
}

.order-stats-page[data-v-69114b9d] {
  min-height: 100vh;
  background: #f5f5f5;
  padding: 16px;
}
.header[data-v-69114b9d] {
  background: linear-gradient(135deg, #ff385c, #ff7e47);
  color: white;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.header h2[data-v-69114b9d] {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}
.date-picker[data-v-69114b9d] {
  background: white;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.quick-picks[data-v-69114b9d] {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.quick-picks button[data-v-69114b9d] {
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  color: #666;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.quick-picks button[data-v-69114b9d]:hover {
  border-color: #ff385c;
  color: #ff385c;
}
.quick-picks button.active[data-v-69114b9d] {
  background: #ff385c;
  border-color: #ff385c;
  color: white;
}
.custom-date[data-v-69114b9d] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.datetime-input[data-v-69114b9d] {
  flex: 1;
}
.datetime-input input[data-v-69114b9d] {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px;
  font-size: 14px;
}
.stats-cards[data-v-69114b9d] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}
.stats-card[data-v-69114b9d] {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.card-title[data-v-69114b9d] {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}
.card-value[data-v-69114b9d] {
  font-size: 24px;
  font-weight: 500;
  color: #ff385c;
}
.loading-mask[data-v-69114b9d] {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.loading-spinner[data-v-69114b9d] {
  width: 32px;
  height: 32px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #ff385c;
  border-radius: 50%;
  animation: spin-69114b9d 1s linear infinite;
}
@keyframes spin-69114b9d {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
.order-list[data-v-69114b9d] {
  background: white;
  border-radius: 12px;
  margin-top: 16px;
  overflow: hidden;
}
.list-header[data-v-69114b9d] {
  padding: 16px;
  border-bottom: 1px solid #eee;
}
.list-header h3[data-v-69114b9d] {
  margin: 0;
  font-size: 16px;
  color: #333;
}
.list-content[data-v-69114b9d] {
  padding: 16px;
}
.order-item[data-v-69114b9d] {
  border-bottom: 1px solid #f5f5f5;
  padding: 16px 0;
}
.order-item[data-v-69114b9d]:last-child {
  border-bottom: none;
}
.order-info[data-v-69114b9d] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-info[data-v-69114b9d] {
  display: flex;
  gap: 12px;
  flex: 1;
}
.product-info img[data-v-69114b9d] {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
}
.product-detail[data-v-69114b9d] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-name[data-v-69114b9d] {
  font-size: 14px;
  color: #333;
}
.order-meta[data-v-69114b9d] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.order-status[data-v-69114b9d] {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}
.status-1[data-v-69114b9d] {
  background: #e6f7ff;
  color: #1890ff;
}
.status-2[data-v-69114b9d] {
  background: #fff1f0;
  color: #ff4d4f;
}
.status-3[data-v-69114b9d] {
  background: #f6ffed;
  color: #52c41a;
}
.status-4[data-v-69114b9d] {
  background: #fff7e6;
  color: #fa8c16;
}
.status-5[data-v-69114b9d] {
  background: #fff2e8;
  color: #fa541c;
}
.refund-amount[data-v-69114b9d] {
  font-size: 12px;
  color: #ff4d4f;
  margin-left: 4px;
}
.order-id[data-v-69114b9d] {
  font-size: 12px;
  color: #999;
}
.price-info[data-v-69114b9d] {
  text-align: right;
}
.pay-amount[data-v-69114b9d] {
  font-size: 16px;
  font-weight: 500;
  color: #ff385c;
}
.commission[data-v-69114b9d] {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}
.time[data-v-69114b9d] {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}
.filter-section[data-v-69114b9d] {
  background: white;
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
}
.filter-title[data-v-69114b9d] {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}
.filter-options[data-v-69114b9d] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-btn[data-v-69114b9d] {
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  color: #666;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}
.filter-btn[data-v-69114b9d]:hover {
  border-color: #ff385c;
  color: #ff385c;
}
.filter-btn.active[data-v-69114b9d] {
  background: #ff385c;
  border-color: #ff385c;
  color: white;
}
.count[data-v-69114b9d] {
  font-size: 12px;
  opacity: 0.8;
}
.stats-card[data-v-69114b9d] {
  min-width: 150px;
}
.filter-section + .filter-section[data-v-69114b9d] {
  margin-top: 12px;
}
.filter-btn .count[data-v-69114b9d] {
  color: inherit;
  opacity: 0.8;
  font-size: 12px;
  margin-left: 4px;
}
.filter-btn.active .count[data-v-69114b9d] {
  color: inherit;
  opacity: 0.9;
}
:root {
  --primary-color: #ff385c;
  --secondary-color: #ff7e47;
  --text-color: #333;
  --text-light: #666;
  --text-lighter: #999;
  --border-color: #eee;
  --bg-color: #f5f5f5;
  --white: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-color);
  line-height: 1.5;
  background: var(--bg-color);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  border: none;
  background: var(--primary-color);
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
