   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    }
	a{ text-decoration:none; color:#333;      font-size: 14px;}
    body {
      background: #f5f5f5;
      font-size: 14px;
      color: #333;
    }
    /* 悬浮进店按钮 固定浮动 */
    .float-shop-btn {
      position: fixed;
      top: 40px;
      right: 12px;
      z-index: 999;
      width: 88px;
      height: 92px;
      cursor: pointer;
    }
    .float-tag {
      background: #ff4444;
      color: #fff;
      font-size: 12px;
      text-align: center;
      padding: 3px 0;
      border-radius: 6px 6px 0 0;
    }
    .float-box {
      background: #fff;
      width: 100%;
      height: calc(100% - 22px);
      border-radius: 0 0 8px 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #ff6622;
      font-weight: bold;
    }
    /* 顶部搜索框表单 */
    .search-bar {
      background: #fff;
      padding: 12px 15px;
    }
    .search-form {
      width: 100%;
    }
    .search-input {
      width: 100%;
      height: 36px;
      background: #f0f0f0;
      border-radius: 18px;
      border: none;
      padding: 0 15px;
      font-size: 15px;
      outline: none;
    }
    input[type="search"]::-webkit-search-decoration,
    input[type="search"]::-webkit-search-cancel-button {
      -webkit-appearance: none;
    }
    /* 头部banner */
.banner {
  background: linear-gradient(135deg, #d888c8, #ff7722);
  padding: 25px 18px;
  color: #fff;
  overflow: hidden;
}
.banner-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.banner-subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 18px;
  opacity: 0.95;
}
.banner-phone {
  font-size: 20px;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 22px;
}
/* 数据统计行 半透明深色背景，匹配设计图 */
.stats-row {
  display: flex;
  justify-content: space-around;
  text-align: center;
  background: rgba(0,0,0,0.15); /* 黑色半透明底色 */
  border-radius: 12px;
  padding: 12px 0;
}
.stats-item h3 {
  font-size: 26px;
  margin-bottom: 4px;
}
.stats-item p {
  font-size: 15px;
  opacity: 0.9;
}
/* 分类外层容器 */
.category-wrap {
  padding: 10px;
  background: #f5f5f5;
  margin-top: 10px;
}
/* 每个分类单独卡片 边框圆角 */
.category-item {
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden; border:#eee solid 1px;
}
	 .category-item.cur{ background:#007AFF;color:#FFF}
	 .category-item .cur a{color:#FFF}
.category-item a{font-size: 22px; display:block; width:100%;}
/* 分类标题栏 */
.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 20px;
  font-size: 22px;
  font-weight: normal;
  color: #111;
  cursor: pointer;
}
/* 右侧黑色三角箭头 */
.category-arrow {
  font-size: 26px;
  color: #000000;
  transition: transform 0.3s ease;
  line-height: 1;
}
/* 展开时箭头向上翻转 */
.category-arrow.active {
  transform: rotate(180deg);
}
/* 分类内容区域内边距 */
.category-content {
  padding: 0 20px 20px;
  display: none;
}
.category-content.show {
  display: block;
}
	
	
	
	
    .tag-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 8px;
      margin-bottom: 8px;
    }
    .tag-grid.two {
      grid-template-columns: repeat(6, 1fr);
    }
    .tag-grid.three {
      grid-template-columns: repeat(3, 1fr);
    }
    .tag-item {
      border: 1px solid #ddd;
      border-radius: 20px;
      text-align: center;
      padding: 6px;
      font-size: 13px;
      background: #fff;white-space: nowrap;
    }
	 .tag-item.cur{ background:#007AFF;color:#FFF}
	 .cur a{ background:#007AFF;color:#FFF}
    /* 商品列表区域 */
    .goods-wrap {
      padding: 12px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
    .goods-card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
    }
    .goods-img-box {
      background: #e8f6f6;
      padding: 8px;
    }
    .goods-img {
      width: 100%;
      display: block;
      cursor: pointer;
    }
    .goods-info {
      padding: 10px;
    }
    .goods-id {
      font-size: 17px;
      color: #008844;
      font-weight: 600;
      margin-bottom: 6px;
    }
    .goods-weight {
      font-size: 15px;
      color: #555;
    }
    /* 加载提示 */
    .load-tip {
      text-align: center;
      padding: 15px;
      color: #999;
      font-size:14px;
    }

    /* ========== 图片放大弹窗样式（铺满全屏） ========== */
    .img-preview-mask {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: #000;
      z-index: 9999;
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .img-preview-mask.show {
      display: flex;
    }
    .preview-close {
      position: absolute;
      top: 30px;
      right: 20px;
      color: #fff;
      font-size: 32px;
      cursor: pointer;
      z-index: 10;
    }
    .preview-wrap {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      overflow: hidden;
      position: relative;
    }
    .preview-slide {
      display: flex;
      height: 100%;
      transition: transform 0.3s ease-out;
    }
    .preview-item {
      min-width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .preview-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .preview-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      font-size: 26px;
      color: #fff;
      background: rgba(255,255,255,0.15);
      border-radius: 50%;
      cursor: pointer;
      user-select: none;
      z-index: 5;
    }
    .prev-left {
      left: 10px;
    }
    .prev-right {
      right: 10px;
    }
    .preview-index {
      color: #fff;
      position: absolute;
      bottom: 40px;
      font-size: 14px;
    }

    /* ========== 进店提示弹窗 ========== */
    .shop-tip-mask {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 10000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .shop-tip-mask.show {
      display: flex;
    }
    .shop-tip-box {
      background: #ffffff;
      width: 100%;
      max-width: 400px;
      border-radius: 16px;
      padding: 40px 30px;
      text-align: center;
    }
    .shop-tip-title {
      font-size: 32px;
      color: #222;
      margin-bottom: 30px;
      font-weight: 500;
    }
    .shop-tip-text {
      font-size: 26px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 40px;
    }
    .shop-tip-btn {
      width: 100%;
      height: 70px;
      background: #00c853;
      border: none;
      border-radius: 12px;
      color: #fff;
      font-size: 30px;
      cursor: pointer;
    }
    #copyInput {
      position: absolute;
      left: -9999px;
      top: -9999px;
    }