/* ===== 收费标准页 fee.html ===== */
.fee-page { background: #f8f9fa; padding: 40px 0 60px; }
.fee-container { max-width: 1100px; margin: 0 auto; padding: 0 15px; }

/* 顶部简介卡片 */
.fee-intro {
  background: linear-gradient(135deg, #222 0%, #444 100%);
  border-radius: 12px;
  padding: 40px 30px;
  color: #fff;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.fee-intro h1 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.fee-intro p { font-size: 14px; color: #ccc; }
.fee-intro .intro-right { text-align: right; }
.fee-intro .intro-right .big-num { font-size: 42px; font-weight: 800; color: #e07b00; }
.fee-intro .intro-right .big-label { font-size: 13px; color: #aaa; }

/* 收费卡片网格 */
.fee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.fee-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.fee-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); border-color: #e07b00; }
.fee-card .fee-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: #fff8f0; color: #e07b00;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.fee-card h3 { font-size: 16px; color: #222; margin-bottom: 10px; }
.fee-card .fee-price { font-size: 26px; font-weight: 800; color: #e07b00; margin-bottom: 8px; }
.fee-card .fee-price .unit { font-size: 14px; font-weight: 400; color: #888; }
.fee-card .fee-desc { font-size: 13px; color: #666; line-height: 1.7; }
.fee-card .fee-tag {
  position: absolute; top: 20px; right: -30px;
  background: #2ecc71; color: #fff; font-size: 11px;
  padding: 4px 36px; transform: rotate(45deg);
}

/* 说明区域 */
.fee-info-section {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.fee-info-section h2 { font-size: 18px; color: #222; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.fee-info-section h2 i { color: #e07b00; }
.info-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; }
.info-item { display: flex; gap: 12px; align-items: flex-start; }
.info-item .num {
  width: 24px; height: 24px; border-radius: 50%;
  background: #e07b00; color: #fff; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.info-item .text h4 { font-size: 14px; color: #333; margin-bottom: 4px; }
.info-item .text p { font-size: 13px; color: #888; line-height: 1.6; }

@media (max-width: 768px) {
  .fee-grid { grid-template-columns: 1fr; }
  .fee-intro { text-align: center; }
  .fee-intro .intro-right { text-align: center; width: 100%; }
  .info-list { grid-template-columns: 1fr; }
}


/* ===== 商家入驻页 merchant.html ===== */
.merchant-page { background: #f8f9fa; padding: 40px 0 60px; }
.merchant-container { max-width: 1100px; margin: 0 auto; padding: 0 15px; }

/* 顶部横幅 */
.merchant-hero {
  background: linear-gradient(135deg, #222 0%, #444 100%);
  border-radius: 12px;
  padding: 50px 40px;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}
.merchant-hero h1 { font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.merchant-hero p { font-size: 15px; color: #ccc; margin-bottom: 28px; }
.merchant-hero .hero-stats {
  display: flex; justify-content: center; gap: 60px; flex-wrap: wrap;
}
.merchant-hero .stat-item { text-align: center; }
.merchant-hero .stat-item .num { font-size: 36px; font-weight: 800; color: #e07b00; }
.merchant-hero .stat-item .label { font-size: 13px; color: #aaa; margin-top: 4px; }

/* 入驻流程 - 横向时间线 */
.timeline-section { margin-bottom: 50px; }
.section-header { font-size: 20px; color: #222; margin-bottom: 28px; display: flex; align-items: center; gap: 10px; }
.section-header i { color: #e07b00; }

.timeline {
  display: flex; justify-content: space-between; position: relative;
}
.timeline::before {
  content: ''; position: absolute; top: 24px; left: 60px; right: 60px;
  height: 3px; background: #eee; z-index: 0;
}
.timeline-step {
  position: relative; z-index: 1; text-align: center; flex: 1;
  max-width: 180px;
}
.timeline-step .step-circle {
  width: 50px; height: 50px; border-radius: 50%;
  background: #e07b00; color: #fff; font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(224,123,0,0.3);
}
.timeline-step h4 { font-size: 15px; color: #222; margin-bottom: 6px; }
.timeline-step p { font-size: 13px; color: #888; line-height: 1.6; }

/* 平台优势 - 横向卡片 */
.advantage-section { margin-bottom: 50px; }
.adv-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.adv-item {
  background: #fff; border-radius: 10px; padding: 28px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); text-align: center;
  transition: all 0.25s; border: 1px solid #f0f0f0;
}
.adv-item:hover { transform: translateY(-4px); border-color: #e07b00; }
.adv-item .adv-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff8f0; color: #e07b00; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.adv-item h4 { font-size: 15px; color: #222; margin-bottom: 8px; }
.adv-item p { font-size: 13px; color: #888; line-height: 1.6; }

/* 入驻须知 - 手风琴 */
.notice-section { margin-bottom: 50px; }
.notice-list { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.notice-row {
  border-bottom: 1px solid #f5f5f5;
}
.notice-row:last-child { border-bottom: none; }
.notice-header {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 24px; cursor: pointer; transition: background 0.2s;
}
.notice-header:hover { background: #fafafa; }
.notice-header .n-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: #fff8f0; color: #e07b00; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.notice-header .n-title { flex: 1; font-size: 15px; color: #222; font-weight: 500; }
.notice-header .n-arrow { color: #ccc; font-size: 14px; transition: transform 0.2s; }
.notice-row.open .n-arrow { transform: rotate(180deg); }
.notice-body {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  padding: 0 24px 0 74px;
}
.notice-row.open .notice-body {
  max-height: 200px; padding-bottom: 18px;
}
.notice-body p { font-size: 13px; color: #666; line-height: 1.8; }

/* 入驻引导卡片 */
.cta-section { margin-bottom: 40px; }
.cta-card {
  text-align: center;
  padding: 48px 30px;
  background: linear-gradient(135deg, #fafbfc, #f0f4f8);
  border-radius: 12px;
}
.cta-card .cta-icon { font-size: 48px; color: #e07b00; margin-bottom: 14px; display: block; }
.cta-card h3 { font-size: 20px; color: #222; margin-bottom: 10px; }
.cta-card p { color: #888; font-size: 14px; margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.cta-card .btn-merchant-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e07b00, #f09030);
  color: #fff;
  padding: 14px 40px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.25s;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(224,123,0,0.3);
  border: none;
  cursor: pointer;
}
.cta-card .btn-merchant-cta:hover { box-shadow: 0 6px 20px rgba(224,123,0,0.4); transform: translateY(-2px); color: #fff; }

@media (max-width: 768px) {
  .adv-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
  .timeline { flex-direction: column; gap: 24px; align-items: center; }
  .form-grid { grid-template-columns: 1fr; }
  .merchant-hero { padding: 30px 20px; }
  .merchant-hero .hero-stats { gap: 30px; }
}


/* ===== 店铺街 shops.html ===== */
.shops-page { background: #f8f9fa; padding: 30px 0 60px; }

/* 筛选栏 */
.shops-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 18px 24px;
  margin: 0 0 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.shops-toolbar .toolbar-title { font-size: 16px; font-weight: bold; color: #222; }
.shops-toolbar .toolbar-title i { color: #e07b00; margin-right: 6px; }
.shops-toolbar .toolbar-right { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.shops-toolbar .filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}
.shops-toolbar .filter-chip i { margin-right: 5px; font-size: 12px; }
.shops-toolbar .filter-chip:hover,
.shops-toolbar .filter-chip.active {
  border-color: #e07b00;
  color: #e07b00;
  background: #fff8ee;
}

/* 店铺网格 */
.shops-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }

/* 店铺卡片 */
.shop-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}
.shop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

/* Banner 区域 */
.shop-banner {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.shop-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.shop-card:hover .shop-banner img { transform: scale(1.08); }

/* Banner 渐变遮罩 */
.shop-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  pointer-events: none;
  z-index: 1;
}

/* Banner 上的店铺名 */
.shop-banner-name {
  position: absolute;
  bottom: 12px;
  left: 16px;
  z-index: 2;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
  letter-spacing: 0.5px;
}

/* 评分徽章 */
.shop-score-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  color: #ffc107;
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
}

/* 信息区域 */
.shop-info { padding: 18px 20px; }
.shop-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.shop-tag {
  background: linear-gradient(135deg, #fff8ee, #fff3e0);
  color: #e07b00;
  border: 1px solid #ffd080;
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 12px;
  transition: all 0.2s;
}
.shop-card:hover .shop-tag { border-color: #e07b00; }

/* 底部操作栏 */
.shop-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #fafbfc;
  border-top: 1px solid #f0f0f0;
}
.shop-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: #999; }
.shop-meta i { color: #e07b00; margin-right: 3px; font-size: 11px; }
.btn-visit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #e07b00, #f09030);
  color: #fff;
  border: none;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(224,123,0,0.3);
}
.btn-visit:hover { background: linear-gradient(135deg, #c06a00, #e07b00); box-shadow: 0 4px 14px rgba(224,123,0,0.45); transform: translateY(-1px); }
.btn-visit i { font-size: 11px; transition: transform 0.2s; }
.shop-card:hover .btn-visit i { transform: translateX(3px); }

/* 响应式 */
@media (max-width: 1024px) { .shops-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .shops-grid { grid-template-columns: 1fr; gap: 16px; }
  .shops-toolbar { flex-direction: column; gap: 12px; align-items: flex-start; }
  .shops-toolbar .toolbar-right { flex-wrap: wrap; justify-content: flex-start; }
  .shop-banner { height: 160px; }
}
