body {
  background: #f5f6f8;
}
.navbar-brand {
  letter-spacing: 1px;
}
/* 首页 banner 5:4 比例轮播 */
.banner-ratio {
  aspect-ratio: 5 / 4;
}
.banner-ratio .carousel-inner,
.banner-ratio .carousel-item,
.banner-ratio .carousel-item img {
  height: 100%;
}
.banner-ratio .carousel-item img {
  width: 100%;
  object-fit: cover;
}
/* banner 区四周 20px 间距 */
.banner-box {
  margin: 20px;
}
/* 底部固定 tab-bar */
.tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #fff;
  border-top: 1px solid #eee;
  display: flex;
  z-index: 1000;
}
.tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #999;
  text-decoration: none;
  font-size: 10px;
  line-height: 1;
}
.tab-item i {
  font-size: 20px;
  margin-bottom: 3px;
}
.tab-item.active {
  color: #1677ff;
}
body {
  padding-bottom: 64px;
}
/* 分类页：搜索框 */
.search-bar {
  display: flex;
  align-items: center;
  height: 48px;
  box-sizing: border-box;
  padding: 0 16px;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.search-box {
  flex: 1;
  display: flex;
  align-items: center;
  background: #f5f6f8;
  border-radius: 20px;
  padding: 6px 14px;
}
.search-box i {
  color: #999;
  margin-right: 6px;
}
.search-box input {
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  font-size: 12px;
}
/* 分类页：左分类 + 右商品 */
.category-layout {
  display: flex;
  align-items: flex-start;
}
.category-side {
  width: 90px;
  background: #f5f6f8;
  flex-shrink: 0;
}
.category-side .cat-item {
  padding: 14px 8px;
  text-align: center;
  font-size: 12px;
  color: #333;
  cursor: pointer;
}
.category-side .cat-item.active {
  background: #fff;
  color: #1677ff;
  font-weight: 600;
}
.product-list {
  flex: 1;
  padding: 12px;
  background: #fff;
}
.product-item {
  display: flex;
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
}
.product-item .product-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: #f0f0f0;
}
.product-item .product-info {
  margin-left: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-item .product-name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}
.product-item .product-desc {
  font-size: 10px;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-item .product-price {
  color: #ff4d4f;
  font-weight: 700;
  font-size: 14px;
}
/* 商品列表：5:4 图 + 推荐角标 + 双价格 */
.product-item .product-img {
  width: 100px;
  height: 80px;
}
.product-recommend {
  display: inline-block;
  margin-left: 6px;
  padding: 0 4px;
  font-size: 9px;
  color: #fff;
  background: #ff4d4f;
  border-radius: 3px;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.product-market {
  font-size: 10px;
  color: #999;
  text-decoration: line-through;
}
/* 商品详情页 */
.detail-img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  display: block;
}
.detail-info {
  padding: 16px;
  background: #fff;
}
.detail-name {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}
.detail-price-row {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.detail-price {
  color: #ff4d4f;
  font-size: 20px;
  font-weight: 700;
}
.detail-market {
  color: #999;
  font-size: 12px;
  text-decoration: line-through;
}
.detail-desc {
  margin-top: 8px;
  color: #666;
  font-size: 11px;
}
.detail-section {
  margin-top: 12px;
  background: #fff;
  padding: 16px;
}
.detail-section .section-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.detail-html {
  color: #333;
  font-size: 12px;
  line-height: 1.7;
}
.detail-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 56px;
  height: 56px;
  background: #fff;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  padding: 0 16px;
  z-index: 1000;
}
.quantity-selector {
  display: flex;
  align-items: center;
  height: 32px;
  border: 1px solid #ddd;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.quantity-selector button {
  width: 32px;
  height: 32px;
  border: none;
  background: #fff;
  font-size: 14px;
}
.quantity-selector input {
  width: 44px;
  height: 32px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  outline: none;
}
.add-cart-btn {
  flex: 1;
  margin-left: 16px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 20px;
  background: #ff4d4f;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.add-cart-btn.alone {
  margin-left: 0;
}
/* 规格弹窗 */
.spec-group {
  margin-bottom: 16px;
}
.spec-group .spec-name {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}
.spec-option {
  display: inline-block;
  padding: 6px 14px;
  margin: 0 8px 8px 0;
  border: 1px solid #ddd;
  border-radius: 16px;
  font-size: 11px;
  color: #333;
  cursor: pointer;
}
.spec-option.active {
  border-color: #ff4d4f;
  color: #ff4d4f;
  background: #fff2f0;
}
.spec-option.disabled {
  color: #bbb;
  background: #f5f5f5;
  cursor: not-allowed;
}
.spec-option em {
  font-style: normal;
  font-size: 9px;
  color: #999;
  margin-left: 2px;
}
.spec-option.disabled em {
  color: #ccc;
}
/* 购物车页 */
.cart-item {
  display: flex;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
}
.cart-item .cart-img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.cart-item .cart-info {
  flex: 1;
  margin-left: 12px;
}
.cart-item .cart-name {
  font-size: 12px;
  font-weight: 600;
  color: #333;
}
.cart-item .cart-spec {
  font-size: 10px;
  color: #999;
  margin-top: 4px;
}
.cart-item .cart-price {
  color: #ff4d4f;
  font-weight: 700;
  margin-top: 4px;
}
.cart-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 56px;
  height: 56px;
  background: #fff;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 1000;
}
.cart-total {
  color: #ff4d4f;
  font-weight: 700;
  font-size: 16px;
}
/* 商品卡片操作区 */
.product-item {
  align-items: flex-end;
}
.product-action {
  flex-shrink: 0;
  margin-left: 8px;
  display: flex;
  align-items: center;
}
.spec-btn {
  height: 28px;
  line-height: 26px;
  padding: 0 14px;
  border: 1px solid #ff4d4f;
  border-radius: 14px;
  background: #fff;
  color: #ff4d4f;
  font-size: 10px;
  white-space: nowrap;
}
.quantity-selector.mini {
  width: 68px;
  height: 28px;
  border: 1px solid #ddd;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.quantity-selector.mini button {
  width: 24px;
  height: 28px;
  border: none;
  background: #fff;
  font-size: 12px;
}
.quantity-selector.mini input {
  flex: 1;
  min-width: 0;
  height: 28px;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  outline: none;
  font-size: 10px;
}
/* 购物车 tab 角标 */
.tab-item {
  position: relative;
}
.tab-badge {
  position: absolute;
  top: 2px;
  right: calc(50% - 24px);
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: #ff4d4f;
  color: #fff;
  border-radius: 8px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 分类页：锚点导航 + 平滑滚动 */
html {
  scroll-behavior: smooth;
  font-size: 14px;
}
.search-bar {
  position: sticky;
  top: 0;
  z-index: 100;
}
.category-side {
  position: sticky;
  top: 48px;
  align-self: flex-start;
  max-height: calc(100vh - 104px);
  overflow-y: auto;
}
.cat-section-title {
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #333;
  background: #fafafa;
  border-left: 3px solid #1677ff;
}
/* 分类页布局修复：防止横向溢出 */
.category-layout {
  min-width: 0;
}
.product-list {
  min-width: 0;
  overflow: hidden;
}
.product-info {
  min-width: 0;
}
.product-name {
  word-break: break-word;
}
/* 隐藏所有滚动条，保留滚动功能 */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
*::-webkit-scrollbar {
  display: none;
}
/* 分类页底部购物车状态横条 */
.cart-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 56px;
  height: 50px;
  background: #fff;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 999;
}
.cart-bar-info {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 12px;
  color: #333;
}
.cart-bar-total {
  color: #ff4d4f;
  font-weight: 700;
}
.cart-bar-clear {
  border: none;
  background: transparent;
  color: #999;
  font-size: 11px;
  cursor: pointer;
}
/* 统一主操作按钮（去支付/提交订单/查询） */
.h5-primary-btn {
  height: 34px;
  padding: 0 20px;
  border: none;
  border-radius: 17px;
  background: #ff4d4f;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
/* 锚点定位：预留 sticky 搜索框高度，让分类名称可见 */
.cat-section {
  scroll-margin-top: 70px;
}
/* 规格弹窗数量选择器 */
.spec-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}
.spec-qty-label {
  font-size: 12px;
  font-weight: 600;
  color: #333;
}
/* 数量选择器选中变红 */
.quantity-selector.mini.selected {
  border-color: #ff4d4f;
}
.quantity-selector.mini.selected button,
.quantity-selector.mini.selected input {
  color: #ff4d4f;
}
.quantity-selector.mini.selected input {
  border-left-color: #ff4d4f;
  border-right-color: #ff4d4f;
}
/* 无规格详情页：数量选择器靠右 + 选中变红 */
#qty-bar {
  margin-left: auto;
}
.quantity-selector.selected {
  border-color: #ff4d4f;
}
.quantity-selector.selected button,
.quantity-selector.selected input {
  color: #ff4d4f;
}
.quantity-selector.selected input {
  border-left-color: #ff4d4f;
  border-right-color: #ff4d4f;
}
/* 状态横条显示时，列表区上移避免遮挡 */
body.has-cart-bar {
  padding-bottom: 114px;
}
/* 下单页 */
.order-type {
  display: flex;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.order-type-item {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  font-size: 13px;
  color: #333;
  cursor: pointer;
}
.order-type-item.active {
  color: #ff4d4f;
  font-weight: 600;
  border-bottom: 2px solid #ff4d4f;
}
.order-section {
  margin-top: 12px;
  background: #fff;
  padding: 12px 16px;
}
.order-section .section-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.order-field {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}
.order-label {
  width: 64px;
  font-size: 12px;
  color: #333;
  flex-shrink: 0;
}
.order-field input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 12px;
}
.order-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}
.order-item-img {
  width: 60px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.order-item-info {
  flex: 1;
  margin-left: 10px;
}
.order-item-name {
  font-size: 12px;
  font-weight: 600;
}
.order-item-spec {
  font-size: 10px;
  color: #999;
}
.order-item-price {
  font-size: 10px;
  color: #333;
}
.order-item-subtotal {
  font-size: 12px;
  font-weight: 700;
  color: #ff4d4f;
}
.order-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 56px;
  height: 56px;
  background: #fff;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 999;
}
.order-total {
  color: #ff4d4f;
  font-weight: 700;
  font-size: 16px;
}
.addr-item {
  padding: 8px 0;
  font-size: 11px;
  color: #555;
  border-bottom: 1px dashed #eee;
  cursor: pointer;
}
.pickup-item {
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
}
.pickup-item.active {
  border-color: #ff4d4f;
  background: #fff2f0;
}
.pickup-name {
  font-size: 12px;
  font-weight: 600;
}
.pickup-addr {
  font-size: 10px;
  color: #999;
  margin-top: 4px;
}
/* 我的订单页 */
.order-query {
  display: flex;
  padding: 10px 16px;
  background: #fff;
  gap: 8px;
}
.order-query input {
  flex: 1;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 18px;
  padding: 0 14px;
  outline: none;
  font-size: 12px;
}
.order-tabs {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  background: #fff;
  border-bottom: 1px solid #eee;
  overflow-x: auto;
}
.order-tab {
  flex-shrink: 0;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
}
.order-tab.active {
  color: #ff4d4f;
  font-weight: 600;
}
.order-card {
  margin: 12px 12px 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px;
}
.order-card-head {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #999;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}
.order-card-status {
  font-weight: 600;
}
.order-card-body {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.order-card-summary {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-top: 8px;
}
.order-card-meta {
  font-size: 10px;
  color: #999;
  margin-top: 4px;
}
.order-card-foot {
  margin-top: 0;
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-card-foot .order-card-meta {
  margin-top: 0;
}
.order-card-amount {
  color: #ff4d4f;
  font-size: 14px;
}
/* 库存 */
.product-stock {
  font-size: 9px;
  color: #999;
}
.product-stock.soldout {
  color: #ff4d4f;
}
.sold-out {
  color: #999;
  font-size: 11px;
}
/* 售罄商品卡片整体置灰 */
.product-item.product-soldout {
  opacity: 0.55;
}
/* 我的/用户中心 */
.user-header {
  display: flex;
  align-items: center;
  padding: 24px 16px;
  background: linear-gradient(135deg, #ff4d4f, #ff7a45);
  color: #fff;
}
.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  flex-shrink: 0;
}
.user-avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.user-header-info {
  margin-left: 14px;
}
.user-header-info .user-name {
  font-size: 16px;
  font-weight: 700;
}
.user-header-info .user-phone {
  font-size: 11px;
  opacity: 0.9;
  margin-top: 4px;
}
.user-menu {
  margin-top: 12px;
  background: #fff;
}
.user-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  text-decoration: none;
  font-size: 13px;
}
.user-menu-item:active {
  background: #fafafa;
}
.user-menu-item > span {
  display: inline-flex;
  align-items: center;
}
.user-menu-item > span i {
  margin-right: 10px;
  color: #ff4d4f;
  font-size: 16px;
}
.user-menu-item > i {
  color: #ccc;
}
/* 登录/注册表单 */
.auth-card {
  margin: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 24px 16px;
}
.auth-tabs {
  display: flex;
  margin-bottom: 20px;
}
.auth-tab {
  flex: 1;
  text-align: center;
  padding: 10px;
  font-size: 13px;
  color: #999;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.auth-tab.active {
  color: #ff4d4f;
  font-weight: 600;
  border-bottom-color: #ff4d4f;
}
.auth-field {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  border-bottom: 1px solid #eee;
}
.auth-field input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 0;
  font-size: 13px;
}
.auth-submit {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 20px;
  background: #ff4d4f;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
/* 页面标题栏 */
.page-title-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 16px;
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  font-weight: 600;
}
.back-link {
  color: #333;
  text-decoration: none;
  font-size: 18px;
}
/* 地址管理 */
.address-card {
  margin: 12px;
  background: #fff;
  border-radius: 8px;
  padding: 14px;
}
.address-card .addr-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.address-card .addr-name {
  font-size: 13px;
  font-weight: 600;
}
.address-card .addr-phone {
  color: #666;
  margin-left: 8px;
}
.address-card .default-tag {
  margin-left: 8px;
  padding: 0 6px;
  font-size: 9px;
  color: #ff4d4f;
  border: 1px solid #ff4d4f;
  border-radius: 3px;
}
.address-card .addr-detail {
  font-size: 11px;
  color: #666;
  margin-top: 6px;
}
.address-card .addr-actions {
  margin-top: 10px;
  display: flex;
  gap: 20px;
  font-size: 11px;
}
.address-card .addr-actions a {
  color: #ff4d4f;
  text-decoration: none;
}
/* 个人设置 */
.profile-card {
  margin: 12px;
  background: #fff;
  border-radius: 8px;
  padding: 16px;
}
.profile-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0 20px;
}
.profile-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.upload-avatar-btn {
  margin-top: 12px;
  height: 30px;
  padding: 0 16px;
  border: 1px solid #ff4d4f;
  border-radius: 15px;
  background: #fff;
  color: #ff4d4f;
  font-size: 11px;
}
/* 订单卡片堆叠封面图 */
.order-card {
  cursor: pointer;
}
.order-card-imgs {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.order-card-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid #fff;
  background: #f0f0f0;
  flex-shrink: 0;
}
.order-card-img + .order-card-img,
.order-card-img-more {
  margin-left: -12px;
}
.order-card-img-more {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  border: 2px solid #fff;
  background: #f0f0f0;
  color: #999;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* 订单详情 - 状态流转图 */
.order-status-flow {
  background: #fff;
  padding: 20px 12px;
  margin-bottom: 12px;
}
.status-cancelled {
  text-align: center;
  color: #ff4d4f;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.status-pending {
  text-align: center;
  color: #999;
  font-size: 13px;
  margin-bottom: 16px;
}
.status-steps {
  display: flex;
  align-items: flex-start;
}
.status-step {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.status-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 13px;
  left: calc(50% + 16px);
  right: calc(-50% + 16px);
  height: 2px;
  background: #eee;
}
.status-step.done:not(:last-child)::after {
  background: #ff4d4f;
}
.status-step-node {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eee;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.status-step.done .status-step-node {
  background: #ff4d4f;
}
.status-step.current .status-step-node {
  background: #fff;
  border: 2px solid #ff4d4f;
  color: #ff4d4f;
}
.status-step-label {
  margin-top: 8px;
  font-size: 10px;
  color: #999;
}
.status-step.done .status-step-label,
.status-step.current .status-step-label {
  color: #333;
  font-weight: 600;
}
/* 订单详情 - 信息行 */
.order-detail-row {
  display: flex;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 11px;
  color: #333;
}
.order-detail-row span:first-child {
  width: 72px;
  color: #999;
  flex-shrink: 0;
}
.order-detail-row span:last-child {
  flex: 1;
  text-align: right;
  word-break: break-all;
}
.order-total-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.order-total-row .order-card-amount {
  font-size: 16px;
}
/* 订单详情 - 底部返回按钮 */
.detail-back-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 56px;
  padding: 8px 16px;
  background: #fff;
  border-top: 1px solid #eee;
  z-index: 999;
}
.detail-back-bar .h5-primary-btn {
  width: 100%;
  height: 40px;
}
body.has-back-btn {
  padding-bottom: 120px;
}
/* 地址页 - 底部按钮 */
.addr-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 56px;
  padding: 8px 16px;
  background: #fff;
  border-top: 1px solid #eee;
  display: flex;
  gap: 12px;
  z-index: 999;
}
.addr-bottom-bar .h5-primary-btn,
.addr-bottom-bar .h5-secondary-btn {
  flex: 1;
  height: 40px;
  border-radius: 20px;
}
.h5-secondary-btn {
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
/* 无数据空状态 */
.empty-state {
  padding: 40px 16px;
  text-align: center;
}
.empty-state img {
  width: 40px;
  max-width: 50%;
  margin-bottom: 12px;
}
.empty-state .empty-text {
  font-size: 12px;
  color: #999;
}
