/**
 * PC 商城 P0：购物车 / 结算 / 搜索 / 登录 — 与首页粉紫风格对齐
 */
:root {
  --pc-primary: #ff6b9d;
  --pc-primary-dark: #f5576c;
  --pc-text: #333;
  --pc-text-muted: #999;
  --pc-border: #eee;
  --pc-bg: #f5f6f8;
  --pc-radius: 12px;
  --pc-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --pc-container: 1240px;
}

.pc-mall {
  font-size: 14px;
  color: var(--pc-text);
}

.pc-container {
  width: 100%;
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 0 20px 48px;
  box-sizing: border-box;
}

.pc-page-title {
  margin: 24px 0 20px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.pc-page-title em {
  color: var(--pc-primary);
  font-style: normal;
  font-weight: 700;
}

/* ---------- 购物车 ---------- */
.pc-cart-page {
  --pc-cart-cols: 48px 76px minmax(0, 1fr) 52px 72px 120px 88px 76px;
}

.pc-cart-page .total_count {
  margin: 0 0 12px;
  padding: 10px 14px;
  background: #fff;
  border-radius: var(--pc-radius);
  box-shadow: var(--pc-shadow);
  font-size: 14px;
  color: var(--pc-text-muted);
}

.pc-cart-page .pc-cart-box {
  background: #fff;
  border-radius: var(--pc-radius);
  box-shadow: var(--pc-shadow);
  overflow: hidden;
}

.pc-cart-page .pc-cart-head,
.pc-cart-page .pc-cart-row.cart_list_td {
  display: grid;
  grid-template-columns: var(--pc-cart-cols);
  align-items: center;
  gap: 10px 14px;
  padding: 14px 18px;
  box-sizing: border-box;
}

.pc-cart-page .pc-cart-head.cart_list_th {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border: none !important;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(245, 87, 108, 0.05) 100%);
  border-bottom: 1px solid var(--pc-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--pc-text);
}

.pc-cart-page .pc-cart-head .pc-cart-col {
  float: none !important;
  width: auto !important;
  height: auto !important;
  line-height: 1.4 !important;
}

.pc-cart-page .pc-cart-head .pc-cart-col {
  text-align: center;
}

.pc-cart-page .pc-cart-head .pc-cart-col--name {
  text-align: left;
}

.pc-cart-page .cart_list_td {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  float: none !important;
  height: auto !important;
  min-height: 100px;
  line-height: normal !important;
  border: none !important;
  border-bottom: 1px solid var(--pc-border) !important;
  background: #fff !important;
  transition: background 0.15s ease;
}

.pc-cart-page .cart_list_td:hover {
  background: #fffbfc !important;
}

.pc-cart-page .cart_list_td > div {
  float: none !important;
  width: auto !important;
  height: auto !important;
  line-height: 1.45 !important;
  text-align: center;
}

.pc-cart-page .col01 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-cart-page .col02 img {
  display: block;
  width: 68px;
  height: 68px;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--pc-border);
}

.pc-cart-page .col03,
.pc-cart-page .pc-cart-col--name {
  text-align: left;
}

.pc-cart-page .pc-cart-name {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--pc-text);
  word-break: break-word;
}

.pc-cart-page .pc-cart-spec {
  margin: 0;
  font-size: 12px;
  color: var(--pc-text-muted);
  line-height: 1.4;
}

.pc-cart-page .col05,
.pc-cart-page .col07 {
  font-size: 14px;
  color: var(--pc-text);
}

.pc-cart-page .col07 strong {
  color: var(--pc-primary);
  font-weight: 600;
}

.pc-cart-page .col06 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-cart-page .pc-cart-qty,
.pc-cart-page .pc-cart-qty.num_add {
  display: inline-flex !important;
  align-items: stretch;
  width: auto !important;
  height: 36px !important;
  margin: 0 !important;
  border: 1px solid #e0e3e8 !important;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.pc-cart-page .pc-cart-qty a,
.pc-cart-page .pc-cart-qty .add,
.pc-cart-page .pc-cart-qty .minus {
  float: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 34px !important;
  height: auto !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-bottom: none !important;
  background: #f5f6f8 !important;
  color: #555 !important;
  font-size: 16px !important;
  text-decoration: none;
  transition: background 0.15s ease;
}

.pc-cart-page .pc-cart-qty a:hover {
  background: #eceef1 !important;
  color: var(--pc-primary) !important;
}

.pc-cart-page .pc-cart-qty .num_show {
  float: none !important;
  display: block !important;
  width: 46px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 4px;
  border: none !important;
  border-left: 1px solid #e0e3e8 !important;
  border-right: 1px solid #e0e3e8 !important;
  text-align: center;
  font-size: 14px;
  line-height: 34px;
  outline: none;
  color: var(--pc-text);
}

.pc-cart-page .col08 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-cart-page .pc-cart-del {
  display: inline-block;
  padding: 7px 14px;
  color: var(--pc-text-muted);
  font-size: 13px;
  text-decoration: none;
  border: 1px solid var(--pc-border);
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.pc-cart-page .pc-cart-del:hover {
  color: #e53935;
  border-color: rgba(229, 57, 53, 0.4);
  background: rgba(229, 57, 53, 0.06);
  text-decoration: none;
}

.pc-cart-page .pc-cart-empty {
  margin: 0;
  padding: 48px 20px;
  text-align: center;
  color: var(--pc-text-muted);
  font-size: 15px;
}

.pc-cart-page .pc-cart-foot.settlements {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  height: auto !important;
  min-height: 84px;
  padding: 18px 20px;
  border: none !important;
  border-top: 1px solid var(--pc-border) !important;
  border-radius: 0;
  background: #fafbfc !important;
  box-shadow: none;
}

.pc-cart-page .pc-cart-foot__check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
  color: var(--pc-text);
  cursor: pointer;
}

.pc-cart-page .pc-cart-foot__total {
  flex: 1;
  text-align: right;
  font-size: 14px;
  color: var(--pc-text);
}

.pc-cart-page .pc-cart-foot__yen {
  margin: 0 2px 0 6px;
  color: var(--pc-primary);
}

.pc-cart-page .pc-cart-foot__total em {
  color: var(--pc-primary);
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
}

.pc-cart-page .pc-cart-foot__count {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--pc-text-muted);
}

.pc-cart-page .pc-cart-checkout-btn {
  min-width: 160px;
  height: 48px;
  padding: 0 28px;
  border: none;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-primary-dark) 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 107, 157, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pc-cart-page .pc-cart-checkout-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 107, 157, 0.45);
}

@media (max-width: 900px) {
  .pc-cart-page {
    --pc-cart-cols: 40px 64px minmax(0, 1fr) 44px 60px 108px 72px 68px;
  }

  .pc-cart-page .pc-cart-head,
  .pc-cart-page .pc-cart-row.cart_list_td {
    gap: 8px 10px;
    padding: 12px 14px;
  }

  .pc-cart-page .col02 img {
    width: 56px;
    height: 56px;
  }
}

/* ---------- 提交订单 ---------- */
.pc-checkout-page .pc-page-title {
  margin-bottom: 8px;
}

.pc-checkout-page .common_title {
  width: 100%;
  max-width: var(--pc-container);
  margin: 36px auto 18px;
  padding: 0 0 0 14px;
  border-left: 4px solid var(--pc-primary);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a2e;
}

.pc-checkout-page .pc-page-title + .common_title {
  margin-top: 24px;
}

.pc-checkout-page .common_list_con {
  width: 100%;
  max-width: var(--pc-container);
  margin: 0 auto 36px;
  padding: 20px 24px;
  border: none;
  border-top: none;
  border-radius: var(--pc-radius);
  background: #fff;
  box-shadow: var(--pc-shadow);
  position: relative;
}

/* 结算页 · 收货地址 */
.pc-checkout-page .pc-checkout-address {
  padding: 22px 26px 24px;
}

.pc-checkout-page .pc-checkout-address__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f1f4;
}

.pc-checkout-page .pc-checkout-address__label {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.pc-checkout-page .pc-checkout-address__edit {
  flex-shrink: 0;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
  transition: opacity 0.2s;
}

.pc-checkout-page .pc-checkout-address__edit:hover {
  opacity: 0.92;
  color: #fff;
}

.pc-checkout-page .pc-checkout-address__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pc-checkout-page .pc-checkout-address__item {
  margin-bottom: 12px;
}

.pc-checkout-page .pc-checkout-address__item:last-child {
  margin-bottom: 0;
}

.pc-checkout-page .pc-checkout-address__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid #e8eaef;
  border-radius: 12px;
  background: #fafbfc;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.pc-checkout-page .pc-checkout-address__row:hover {
  border-color: rgba(255, 107, 157, 0.45);
  background: #fff;
}

.pc-checkout-page .pc-checkout-address__row input[type="radio"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--pc-primary);
  cursor: pointer;
}

.pc-checkout-page .pc-checkout-address__row input[type="radio"]:checked + .pc-checkout-address__text {
  color: var(--pc-text);
}

.pc-checkout-page .pc-checkout-address__item:has(input:checked) .pc-checkout-address__row {
  border-color: var(--pc-primary);
  background: rgba(255, 107, 157, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.pc-checkout-page .pc-checkout-address__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1.55;
  font-size: 14px;
  color: var(--pc-text);
}

.pc-checkout-page .pc-checkout-address__addr {
  display: block;
  word-break: break-all;
}

.pc-checkout-page .pc-checkout-address__meta {
  display: block;
  font-size: 13px;
  color: var(--pc-text-muted);
}

/* 订单商品表格 */
.pc-checkout-page .goods_list_th,
.pc-checkout-page .goods_list_td {
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.pc-checkout-page .goods_list_th {
  height: auto;
  margin-bottom: 4px;
  padding: 14px 12px;
  border-bottom: none;
  border-radius: 10px;
  background: #f5f6f8;
}

.pc-checkout-page .goods_list_th li,
.pc-checkout-page .goods_list_td li {
  float: none;
  flex-shrink: 0;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: center;
}

.pc-checkout-page .goods_list_th li {
  line-height: 1.45;
  font-size: 13px;
  font-weight: 600;
  color: #666;
}

.pc-checkout-page .goods_list_td {
  height: auto;
  min-height: 100px;
  padding: 18px 12px;
  border-bottom: 1px solid #f0f1f4;
}

.pc-checkout-page .goods_list_td:last-child {
  border-bottom: none;
}

.pc-checkout-page .goods_list_td li {
  line-height: 1.5;
  font-size: 14px;
  color: var(--pc-text);
}

.pc-checkout-page .goods_list_td .col02 {
  text-align: center;
}

.pc-checkout-page .goods_list_td .col02 img {
  float: none;
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border: 1px solid #eee;
  border-radius: 8px;
  object-fit: cover;
}

.pc-checkout-page .goods_list_td .col03 {
  text-align: left;
  text-indent: 0;
  line-height: 1.55;
  padding-left: 4px;
  padding-right: 12px;
}

.pc-checkout-page .goods_list_td .col07 {
  line-height: 1.5 !important;
  font-size: 13px;
}

.pc-checkout-page .settle_con {
  margin: 0;
  padding: 12px 4px 8px;
  line-height: 1.8;
  font-size: 14px;
}

.pc-checkout-page .settle_con .total_pay {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--pc-border);
  font-size: 16px;
}

.pc-checkout-page .total_pay b,
.pc-checkout-page .total_goods_count b {
  color: var(--pc-primary);
}

.pc-checkout-page .order_submit {
  width: 100%;
  max-width: var(--pc-container);
  margin: 12px auto 48px;
  text-align: center;
}

.pc-checkout-page .order_submit a,
.pc-checkout-page #order_btn {
  float: none;
  display: inline-block;
  min-width: 200px;
  padding: 14px 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-primary-dark) 100%) !important;
  color: #fff !important;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255, 107, 157, 0.35);
  transition: transform 0.2s ease;
}

.pc-checkout-page .order_submit a:hover,
.pc-checkout-page #order_btn:hover {
  transform: translateY(-2px);
}

.pc-checkout-page .coupon_item:hover {
  border-color: var(--pc-primary) !important;
}

/* ---------- PC 搜索（仅顶栏一处搜索框） ---------- */
.pc-search-header.search_bar {
  margin-bottom: 8px;
}

/* 分类导航栏与搜索主体区拉开间距 */
.navbar_con + .pc-search-page {
  margin-top: 24px;
}

.pc-search-page {
  padding-top: 8px;
  padding-bottom: 48px;
  background: linear-gradient(180deg, #f8f9fc 0%, var(--pc-bg) 120px);
}

.pc-search-page .pc-container {
  padding-top: 4px;
}

.pc-search-header .search_con {
  width: 680px;
}

.pc-search-header .input_text {
  border-radius: 22px 0 0 22px;
  border: 2px solid rgba(255, 107, 157, 0.35);
  transition: border-color 0.2s;
}

.pc-search-header .input_text:focus {
  border-color: var(--pc-primary);
  outline: none;
}

.pc-search-header .input_btn {
  border-radius: 0 22px 22px 0;
}

.pc-search-header .search_suggest a.is-active {
  color: var(--pc-primary);
  font-weight: 600;
}

.pc-search-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
  margin-bottom: 18px;
  padding: 18px 22px;
  background: #fff;
  border-radius: var(--pc-radius);
  box-shadow: var(--pc-shadow);
  border-left: 4px solid var(--pc-primary);
}

.pc-search-bar__info {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.pc-search-kw {
  font-size: 16px;
  font-weight: 600;
  color: var(--pc-text);
}

.pc-search-bar__count {
  font-size: 13px;
  color: var(--pc-text-muted);
}

.pc-search-bar__count em {
  font-style: normal;
  color: var(--pc-primary);
  font-weight: 700;
  margin: 0 2px;
}

.pc-search-hot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 22px;
  padding: 14px 18px;
  background: #fff;
  border-radius: var(--pc-radius);
  box-shadow: var(--pc-shadow);
}

.pc-search-hot__label {
  font-size: 12px;
  color: var(--pc-text-muted);
  flex-shrink: 0;
}

.pc-search-hot a {
  padding: 4px 12px;
  font-size: 12px;
  color: #666;
  text-decoration: none;
  border-radius: 999px;
  background: #f5f6f8;
  border: 1px solid var(--pc-border);
  transition: all 0.2s;
}

.pc-search-hot a:hover,
.pc-search-hot a.is-active {
  color: var(--pc-primary);
  border-color: rgba(255, 107, 157, 0.45);
  background: rgba(255, 107, 157, 0.08);
}

.pc-search-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pc-search-tabs a {
  padding: 8px 20px;
  border-radius: 20px;
  background: #fff;
  color: var(--pc-text-muted);
  text-decoration: none;
  font-size: 13px;
  border: 1px solid var(--pc-border);
  transition: all 0.2s;
}

.pc-search-tabs a:hover:not(.active) {
  border-color: var(--pc-primary);
  color: var(--pc-primary);
}

.pc-search-tabs a.active {
  background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-primary-dark) 100%);
  color: #fff;
  border-color: transparent;
}

.pc-search-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1200px) {
  .pc-search-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pc-product-card {
  display: block;
  background: #fff;
  border-radius: var(--pc-radius);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--pc-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pc-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(255, 107, 157, 0.18);
}

.pc-product-card__img {
  position: relative;
  height: 200px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pc-product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  border-radius: 4px;
  background: linear-gradient(135deg, #ff6b9d, #f5576c);
}

.pc-product-card__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pc-product-card__body {
  padding: 14px 12px 16px;
}

.pc-product-card__title {
  font-size: 13px;
  line-height: 1.45;
  color: var(--pc-text);
  height: 38px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 8px;
}

.pc-product-card__price {
  font-size: 18px;
  font-weight: 700;
  color: var(--pc-primary);
}

.pc-product-card__price em {
  font-size: 12px;
  font-style: normal;
}

.pc-product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  color: var(--pc-text-muted);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--pc-border);
}

.pc-product-card__more {
  font-size: 11px;
  color: var(--pc-primary);
  opacity: 0;
  transition: opacity 0.2s;
}

.pc-product-card:hover .pc-product-card__more {
  opacity: 1;
}

.pc-search-empty {
  text-align: center;
  padding: 48px 32px 56px;
  background: #fff;
  border-radius: var(--pc-radius);
  box-shadow: var(--pc-shadow);
  max-width: 560px;
  margin: 8px auto 40px;
}

.pc-search-empty__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.12) 0%, rgba(245, 87, 108, 0.08) 100%);
  position: relative;
}

.pc-search-empty__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  margin: -18px 0 0 -14px;
  border: 3px solid var(--pc-primary);
  border-radius: 50%;
  box-sizing: border-box;
}

.pc-search-empty__icon::before {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 10px;
  height: 3px;
  background: var(--pc-primary);
  border-radius: 2px;
  transform: rotate(45deg);
}

.pc-search-empty__kw {
  margin: 0 0 8px;
}

.pc-search-empty__kw span {
  display: inline-block;
  padding: 4px 14px;
  font-size: 15px;
  color: var(--pc-primary);
  background: rgba(255, 107, 157, 0.1);
  border-radius: 16px;
}

.pc-search-empty h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--pc-text);
}

.pc-search-empty__hint {
  margin: 0 0 28px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--pc-text-muted);
}

.pc-search-empty__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.pc-btn-outline {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid var(--pc-border);
  border-radius: 22px;
  color: var(--pc-text);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.pc-btn-outline:hover {
  border-color: var(--pc-primary);
  color: var(--pc-primary);
}

.pc-search-pager {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 32px 0;
}

.pc-search-pager a {
  padding: 10px 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--pc-border);
  color: var(--pc-text);
  text-decoration: none;
  transition: all 0.2s;
}

.pc-search-pager a:hover {
  border-color: var(--pc-primary);
  color: var(--pc-primary);
}

/* ---------- 登录/注册：适中卡片（与首页协调、不显小） ---------- */
.pc-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--pc-bg);
  overflow-x: hidden;
  box-sizing: border-box;
}

.pc-login-stage {
  display: flex;
  align-items: stretch;
  width: min(1100px, 94vw);
  min-height: min(560px, calc(100vh - 80px));
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

/* 左侧品牌区 */
.pc-login-hero {
  position: relative;
  flex: 0 0 42%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 36px 40px;
  background: linear-gradient(165deg, #ff9ec4 0%, #ff6b9d 42%, #e85a88 100%);
  overflow: hidden;
  box-sizing: border-box;
}

.pc-login-hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 15% 85%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 55% 45% at 88% 12%, rgba(255, 255, 255, 0.1) 0%, transparent 45%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 48px,
      rgba(255, 255, 255, 0.03) 48px,
      rgba(255, 255, 255, 0.03) 49px
    );
}

.pc-hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.pc-hero-ring--1 {
  width: min(520px, 48vw);
  height: min(520px, 48vw);
  top: -140px;
  right: -100px;
}

.pc-hero-ring--2 {
  width: min(360px, 32vw);
  height: min(360px, 32vw);
  bottom: -80px;
  left: -100px;
}

.pc-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
}

.pc-hero-orb--1 {
  width: 180px;
  height: 180px;
  top: 12%;
  right: 10%;
  background: rgba(255, 255, 255, 0.35);
}

.pc-hero-orb--2 {
  width: 140px;
  height: 140px;
  bottom: 18%;
  left: 6%;
  background: rgba(255, 200, 220, 0.45);
}

.pc-login-hero__top {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  margin: 0;
}

.pc-login-hero__logo img {
  width: 168px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
}

.pc-login-hero__home {
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  transition: all 0.25s;
}

.pc-login-hero__home:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
}

.pc-login-hero__body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 28px 0 0;
  text-align: center;
  box-sizing: border-box;
}

.pc-login-hero__badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.pc-login-hero__title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: #fff;
}

.pc-login-hero__tagline {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.pc-login-hero__motto {
  margin: 0 auto 20px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
}

.pc-login-hero__features {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.pc-login-hero__features li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pc-login-hero__features li:last-child {
  border-bottom: none;
}

.pc-login-hero__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

/* 品牌区统一卡片 */
.pc-hero-panel {
  width: 100%;
  padding: 18px 18px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  text-align: left;
  box-sizing: border-box;
}

.pc-hero-panel__title {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.pc-hero-panel__zones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 8px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pc-hero-zone {
  display: block;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s;
  text-align: center;
}

.pc-hero-zone:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.pc-hero-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}

.pc-hero-panel__stat strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}

.pc-hero-panel__stat span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
}

/* 右侧登录/注册表单区 */
.pc-login-panel {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 40px;
  background: #fff;
  box-sizing: border-box;
  overflow-y: auto;
}

.pc-login-panel__inner {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.pc-login-card,
.pc-login-panel__inner {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.pc-login-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  padding: 4px;
  background: #eef0f5;
  border-radius: 10px;
}

.pc-login-tabs__btn {
  flex: 1;
  height: 40px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.pc-login-tabs__btn.is-active {
  background: #fff;
  color: var(--pc-primary);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.pc-login-tabs__btn:hover:not(.is-active) {
  color: var(--pc-primary);
}

.pc-login-body {
  position: relative;
  min-height: 0;
}

.pc-login-card.is-qr-mode .pc-login-card__regline {
  display: none;
}

.pc-login-card__sub--qr {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--pc-text-muted);
}

.pc-login-card__head {
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: none;
}

.pc-login-card__head h1 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #1a1a2e;
  line-height: 1.3;
}

.pc-login-card__sub {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--pc-text-muted);
}

.pc-login-card__regline {
  margin: 0;
  font-size: 13px;
  color: #888;
}

.pc-login-card__regline a {
  color: var(--pc-primary);
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
}

.pc-login-card__regline a:hover {
  text-decoration: underline;
}

.pc-login-alert {
  margin-bottom: 16px;
  padding: 10px 14px;
  font-size: 13px;
  color: #cf1322;
  background: #fff2f0;
  border: 1px solid #ffccc7;
  border-radius: 8px;
}

.pc-login-page .form_input,
.pc-login-form-wrap {
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  position: static !important;
}

.pc-login-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pc-login-page .pc-field {
  display: block;
  margin-bottom: 14px;
}

.pc-login-page .pc-field__label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  letter-spacing: 0;
  text-transform: none;
}

.pc-input-wrap {
  display: block;
  position: relative;
}

.pc-field--user .pc-input-wrap::before,
.pc-field--pass .pc-input-wrap::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0.5;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 1;
}

.pc-field--user .pc-input-wrap::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff6b9d' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E");
}

.pc-field--pass .pc-input-wrap::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff6b9d' viewBox='0 0 24 24'%3E%3Cpath d='M18 8h-1V6c0-2.8-2.2-5-5-5S7 3.2 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3-9H9V6c0-1.7 1.3-3 3-3s3 1.3 3 3v2z'/%3E%3C/svg%3E");
}

.pc-login-page .name_input,
.pc-login-page .pass_input,
.pc-login-page .captcha_input,
.pc-login-page .pc-input {
  position: static !important;
  width: 100% !important;
  height: 46px !important;
  padding: 0 14px 0 42px !important;
  text-indent: 0 !important;
  border: 1.5px solid #e8eaef !important;
  border-radius: 12px !important;
  background: #f8f9fc !important;
  background-image: none !important;
  font-size: 14px !important;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.pc-login-page .pc-input--captcha {
  flex: 1;
  min-width: 0;
  padding-left: 14px !important;
}

.pc-login-page .pc-input::placeholder {
  color: #b0b4be;
}

.pc-login-page .pc-input:focus {
  border-color: var(--pc-primary) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.12);
  outline: none;
}

.pc-captcha-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.pc-captcha-img-btn {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 46px;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.pc-captcha-img-frame {
  display: block;
  width: 100%;
  height: 100%;
  padding: 3px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid #e8eaef;
  box-sizing: border-box;
  overflow: hidden;
  transition: border-color 0.2s;
}

.pc-captcha-img-btn:hover .pc-captcha-img-frame {
  border-color: var(--pc-primary);
}

.pc-login-page .captcha_img {
  position: static !important;
  width: 100% !important;
  height: 40px !important;
  display: block;
  border: none !important;
  border-radius: 8px;
  object-fit: cover;
  background: #f0f2f5;
  mix-blend-mode: multiply;
  filter: contrast(1.1) grayscale(0.15);
}

.pc-captcha-refresh {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 13px;
  color: #fff;
  background: rgba(255, 107, 157, 0.92);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(255, 107, 157, 0.4);
  pointer-events: none;
}

.pc-login-page .user_error,
.pc-login-page .pwd_error,
.pc-login-page .pc-field-error {
  display: none !important;
}

.pc-login-page .captcha_result {
  position: static !important;
  display: block;
  margin: -8px 0 12px;
  min-height: 0;
  padding: 0;
  opacity: 0;
  font-size: 12px;
}

.pc-login-page .captcha_result.show {
  opacity: 1;
  padding: 6px 10px;
  border-radius: 6px;
}

.pc-login-page .captcha_result.success {
  color: #389e0d;
  background: #f6ffed;
  border: 1px solid #b7eb8f;
}

.pc-login-page .captcha_result.error {
  color: #cf1322;
  background: #fff2f0;
  border: 1px solid #ffccc7;
}

.pc-login-page .more_input,
.pc-login-options {
  position: static !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  margin: 4px 0 20px !important;
  width: 100% !important;
  float: none !important;
}

.pc-login-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 13px;
  color: #666;
  cursor: pointer;
}

.pc-login-remember input {
  float: none !important;
  margin: 0 !important;
  accent-color: var(--pc-primary);
}

.pc-login-options a {
  float: none !important;
  font-size: 13px;
  color: var(--pc-text-muted);
  text-decoration: none;
}

.pc-login-options a:hover {
  color: var(--pc-primary);
}

.pc-login-page .input_submit,
.pc-login-btn {
  position: static !important;
  width: 100% !important;
  height: 46px !important;
  margin: 8px 0 0 !important;
  border: none !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #ff6b9d 0%, #f5576c 100%) !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.35);
  transition: opacity 0.2s, box-shadow 0.2s;
  font-family: inherit !important;
}

.pc-login-page .input_submit:hover,
.pc-login-btn:hover {
  opacity: 0.92;
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

.pc-login-page .input_submit:active,
.pc-login-btn:active {
  opacity: 1;
}

.pc-login-form-wrap[hidden],
.pc-qrcode-panel[hidden] {
  display: none !important;
}

.pc-qrcode-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 8px 0 0;
  text-align: center;
  box-sizing: border-box;
}

.pc-qrcode-stage {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.pc-qrcode-panel .qrcode-box {
  position: relative;
  width: 200px;
  height: 200px;
  padding: 14px;
  background: #fff;
  border: 1px solid #e8eaef;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(255, 107, 157, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
}

.pc-qrcode-panel #qrcode-img {
  display: block;
  width: 172px !important;
  height: 172px !important;
  max-width: 172px !important;
  max-height: 172px !important;
  object-fit: contain;
}

.pc-qrcode-loading {
  font-size: 13px;
  color: var(--pc-text-muted);
  text-align: center;
  padding: 20px;
}

.pc-qrcode-tip {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 500;
  color: #444;
}

.pc-qrcode-panel .scan-instructions {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--pc-text-muted);
}

.pc-qrcode-status {
  margin-top: 12px;
  font-size: 12px;
  color: #cf1322;
  min-height: 18px;
}

/* 登录页去掉 base 底部空白条 */
.pc-login-page + div,
.pc-register-page + div {
  margin-top: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
}

/* ---------- 注册（复用登录分屏布局） ---------- */
.pc-register-page .register_con {
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  background: none !important;
}

.pc-register-form-wrap {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  position: static !important;
}

.pc-register-form {
  width: 100%;
}

.pc-register-form ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pc-register-form li {
  height: auto !important;
  float: none !important;
  margin-bottom: 18px;
}

.pc-register-field label.pc-field__label {
  display: block;
  width: auto !important;
  height: auto !important;
  line-height: 1.4 !important;
  float: none !important;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.pc-register-field input.pc-input {
  width: 100% !important;
  height: 46px !important;
  float: none !important;
  border: 1.5px solid #e8eaef !important;
  border-radius: 12px !important;
  background: #f8f9fc !important;
  text-indent: 0 !important;
  padding: 0 14px !important;
  font-size: 14px !important;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pc-register-field input.pc-input:focus {
  border-color: var(--pc-primary) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.12);
}

.pc-register-field .error_tip {
  display: none;
  float: none !important;
  margin: 6px 0 0 !important;
  height: auto !important;
  line-height: 1.4 !important;
  font-size: 12px;
  color: #cf1322;
}

.pc-register-field--captcha .pc-captcha-row {
  display: flex;
  gap: 12px;
}

.pc-register-field--captcha .pc-input--captcha {
  flex: 1;
  min-width: 0;
}

.pc-register-page .captcha_result {
  display: block;
  margin-top: 8px;
  min-height: 0;
  padding: 0;
  opacity: 0;
  font-size: 12px;
}

.pc-register-page .captcha_result.show {
  opacity: 1;
  padding: 6px 10px;
  border-radius: 6px;
}

.pc-register-page .captcha_result.success {
  color: #389e0d;
  background: #f6ffed;
  border: 1px solid #b7eb8f;
}

.pc-register-page .captcha_result.error {
  color: #cf1322;
  background: #fff2f0;
  border: 1px solid #ffccc7;
}

.pc-register-agreement {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 8px 0 24px !important;
}

.pc-register-agreement input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  float: none !important;
  margin: 0 !important;
  accent-color: var(--pc-primary);
}

.pc-register-agreement label {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: #666 !important;
  height: auto !important;
}

.pc-register-agreement .error_tip2 {
  flex: 1 0 100%;
  display: none;
  float: none !important;
  margin: 0 !important;
  font-size: 12px;
  color: #cf1322;
}

.pc-register-form li.reg_sub {
  margin-bottom: 0;
}

.pc-register-form li.reg_sub input,
.pc-register-form .pc-login-btn {
  width: 100% !important;
  height: 46px !important;
  float: none !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #ff6b9d 0%, #f5576c 100%) !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.35);
  font-family: inherit !important;
}

.pc-register-form li.reg_sub input:hover {
  opacity: 0.92;
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

.pc-register-page .reg_title a {
  background: none !important;
  text-indent: 0 !important;
}

@media (max-width: 768px) {
  .pc-login-page {
    padding: 16px 12px;
    align-items: flex-start;
  }

  .pc-login-stage {
    flex-direction: column;
    max-width: 100%;
  }

  .pc-login-hero {
    flex: none;
    padding: 56px 20px 24px;
  }

  .pc-login-hero__body {
    padding-top: 12px;
  }

  .pc-login-panel {
    padding: 28px 20px 32px;
  }

  .pc-login-panel__inner {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .pc-hero-panel__zones {
    grid-template-columns: 1fr;
  }

  .pc-hero-panel__stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pc-login-hero__features li {
    font-size: 13px;
  }

  .pc-login-panel {
    padding: 32px 20px 40px;
    min-width: 0;
  }
}

/* ---------- 用户中心 · 顶部标签页 ---------- */
.pc-uc-page-wrap {
  background: #f0f2f5;
  padding: 20px 0 48px;
}

.pc-uc-page-wrap .pc-uc-layout.main_con {
  margin-left: auto;
  margin-right: auto;
  background: #fff !important;
  background-image: none !important;
}

.pc-mall .pc-uc-layout.main_con {
  width: min(1200px, 94%);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  min-height: 0;
}

.pc-uc-tabs-head {
  flex-shrink: 0;
  background: linear-gradient(180deg, #fff8fa 0%, #fff 55%);
  border-bottom: 1px solid #e8eaef;
}

.pc-uc-tabs-head__bar {
  padding: 20px 28px 4px;
  border-bottom: 1px solid rgba(255, 107, 157, 0.08);
}

.pc-uc-tabs-head__title {
  margin: 0;
  padding: 0 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  letter-spacing: 0.02em;
  border-left: 4px solid var(--pc-primary);
}

.pc-uc-tabs-nav {
  padding: 14px 20px 18px;
  overflow: visible;
}

.pc-uc-tabs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pc-uc-tabs > li {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.pc-uc-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-sizing: border-box;
  min-height: 40px;
  margin: 0;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: #4a4f57;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #f5f6f8;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.pc-uc-tab:hover {
  color: #222;
  background: #eceef2;
  text-decoration: none;
}

.pc-uc-tab.is-active,
.pc-uc-tab.active {
  color: var(--pc-primary);
  font-weight: 600;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.14) 0%, rgba(245, 87, 108, 0.08) 100%);
  border-color: rgba(255, 107, 157, 0.28);
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.12);
}

.pc-uc-tabs-more {
  position: relative;
  flex-shrink: 0;
}

.pc-uc-tab--more {
  cursor: pointer;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.pc-uc-tab__caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 2px;
  font-size: 12px;
  line-height: 1;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.05);
  transition: background 0.18s ease, transform 0.18s ease;
}

.pc-uc-tab__caret::before {
  content: "▾";
}

.pc-uc-tabs-more.is-open .pc-uc-tab__caret {
  transform: rotate(180deg);
  background: rgba(255, 107, 157, 0.15);
}

.pc-uc-tabs-more.is-open .pc-uc-tab--more,
.pc-uc-tabs-more.is-active .pc-uc-tab--more {
  color: var(--pc-primary);
  font-weight: 600;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.14) 0%, rgba(245, 87, 108, 0.08) 100%);
  border-color: rgba(255, 107, 157, 0.28);
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.12);
}

.pc-uc-tabs-more-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 120;
  min-width: 200px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #fff;
  border: 1px solid #e8eaef;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.pc-uc-tabs-more.is-open .pc-uc-tabs-more-menu {
  display: block;
}

.pc-uc-tabs-more-menu > li {
  margin: 0;
  padding: 0;
}

.pc-uc-tabs-more-link {
  display: block;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #4a4f57;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.pc-uc-tabs-more-link:hover {
  background: #fff5f8;
  color: var(--pc-primary);
  text-decoration: none;
}

.pc-uc-tabs-more-link.is-active {
  color: var(--pc-primary);
  font-weight: 600;
  background: rgba(255, 107, 157, 0.1);
}

.pc-uc-panel {
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 0;
  background: #fff;
}

.pc-uc-page-wrap .pc-uc-panel .right_content,
.pc-uc-page-wrap .pc-uc-layout .right_content,
.pc-uc-page-wrap .pc-uc-layout .pc-uc-main {
  float: none !important;
  clear: both !important;
  width: 100% !important;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 32px 28px 32px;
  box-sizing: border-box;
  background: #fff;
}

.pc-uc-page-wrap .pc-uc-panel .pc-uc-chat-page {
  padding: 36px 24px 28px;
}

.pc-uc-layout .left_menu_con {
  display: none;
}

.pc-uc-layout .common_title2 {
  margin: 0 0 16px;
  padding-left: 12px;
  border-left: 4px solid var(--pc-primary);
  font-size: 17px;
  font-weight: 600;
  height: auto;
  line-height: 1.4;
  color: #1a1a2e;
}

.pc-uc-layout .user_info_list {
  height: auto;
  margin: 0 0 24px;
  padding: 18px 24px;
  background: #fafbfc;
  border: 1px solid #eef0f3;
  border-radius: var(--pc-radius);
}

.pc-uc-layout .user_info_list li {
  line-height: 36px;
  text-indent: 0;
  font-size: 14px;
}

.pc-uc-layout .user_info_list li span {
  width: 96px;
  color: #888;
}

.pc-uc-section {
  margin-bottom: 28px;
}

.pc-uc-section:last-child {
  margin-bottom: 0;
}

.pc-uc-section__title {
  margin: 0 0 16px;
  padding: 0 0 10px;
  border-left: none;
  border-bottom: 1px solid #f0f1f4;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
}

.pc-uc-section__title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 14px;
  margin-right: 8px;
  vertical-align: -2px;
  border-radius: 2px;
  background: var(--pc-primary);
}

.pc-uc-info-grid {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.pc-uc-info-grid__row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  border: none;
  background: #f7f8fa;
  border-radius: 8px;
}

.pc-uc-info-grid dt {
  flex: none;
  margin: 0;
  font-size: 12px;
  color: #999;
  font-weight: normal;
}

.pc-uc-info-grid dd {
  flex: none;
  width: 100%;
  margin: 0;
  font-size: 15px;
  color: #222;
  word-break: break-all;
}

.pc-uc-muted {
  color: #aaa;
}

.pc-uc-points {
  color: var(--pc-primary);
  font-weight: 600;
}

.pc-uc-section--recent .pc-uc-recent-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 8px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  box-sizing: border-box;
}

.pc-uc-section--recent .pc-uc-recent-grid > .pc-uc-recent-card {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  float: none !important;
  text-align: center;
  box-sizing: border-box;
}

.pc-uc-recent-card__thumb {
  display: block;
  width: 100%;
  height: 112px;
  margin: 0;
  aspect-ratio: unset;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f6f8;
  border: 1px solid #eee;
}

.pc-uc-recent-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pc-uc-recent-card__name {
  margin: 6px 0 2px;
  padding: 0 2px;
  font-size: 11px;
  font-weight: normal;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: center;
}

.pc-uc-recent-card__name a {
  color: #555;
  text-decoration: none;
}

.pc-uc-recent-card__name a:hover {
  color: var(--pc-primary);
}

.pc-uc-recent-card__price {
  margin: 0;
  padding: 0 2px;
  font-size: 13px;
  font-weight: 600;
  color: #e4393c;
  text-align: center;
}

.pc-uc-recent-empty {
  width: 100%;
  padding: 40px 16px;
  text-align: center;
  font-size: 14px;
  color: var(--pc-text-muted);
  list-style: none;
}

@media (max-width: 1000px) {
  .pc-uc-info-grid {
    grid-template-columns: 1fr;
  }

  .pc-uc-section--recent .pc-uc-recent-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 6px 8px;
  }

  .pc-uc-recent-card__thumb {
    height: 90px;
  }
}

@media (max-width: 860px) {
  .pc-uc-section--recent .pc-uc-recent-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .pc-uc-recent-card__thumb {
    height: 110px;
  }
}

@media (max-width: 768px) {
  .pc-mall .pc-uc-layout.main_con {
    width: 96%;
  }

  .pc-uc-tabs-head__bar {
    padding: 16px 14px 4px;
  }

  .pc-uc-tabs-head__title {
    font-size: 18px;
    padding-left: 10px;
    border-left-width: 3px;
  }

  .pc-uc-tabs-nav {
    padding: 10px 12px 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .pc-uc-tabs-nav::-webkit-scrollbar {
    display: none;
  }

  .pc-uc-tabs {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .pc-uc-tab {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 8px;
  }

  .pc-uc-page-wrap .pc-uc-panel .right_content,
  .pc-uc-page-wrap .pc-uc-layout .right_content,
  .pc-uc-page-wrap .pc-uc-layout .pc-uc-main {
    padding: 24px 14px 24px;
  }

  .pc-uc-page-wrap .pc-uc-panel .pc-uc-chat-page {
    padding: 28px 14px 24px;
  }

  .pc-uc-section--recent .pc-uc-recent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .pc-uc-recent-card__thumb {
    height: 100px;
  }
}

/* ---------- 用户中心 · 表单（密码 / 钱包） ---------- */
.pc-uc-main .info_con,
.pc-uc-password-page .info_con,
.pc-uc-wallet-page .info_con {
  width: auto !important;
  height: auto !important;
  margin: 0;
}

.pc-uc-main .site_con,
.pc-uc-main .pass_change_con {
  width: auto;
  margin: 0;
  padding: 0;
  background: transparent;
}

.pc-uc-form-card {
  max-width: 520px;
  padding: 22px 26px 26px;
  background: #f7f8fa;
  border: 1px solid #eef0f3;
  border-radius: 10px;
  box-sizing: border-box;
}

.pc-uc-form__row,
.pc-uc-main .site_con .form_group {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px 12px;
  height: auto !important;
  line-height: normal !important;
  margin: 0 0 18px;
  float: none;
  clear: none;
}

.pc-uc-form__label,
.pc-uc-main .site_con .form_group label {
  flex: 0 0 100px;
  width: 100px;
  float: none !important;
  margin: 0;
  padding: 11px 0 0;
  font-size: 14px;
  color: #666;
  text-align: right;
  line-height: 1.4;
}

.pc-uc-form__field {
  flex: 1;
  min-width: 0;
  max-width: 340px;
}

.pc-uc-form input[type="password"],
.pc-uc-form input[type="text"],
.pc-uc-form input[type="tel"],
.pc-uc-wallet-page .wallet-user,
.pc-uc-wallet-page .wallet-money,
.pc-uc-wallet-page .pwd {
  width: 100% !important;
  height: 42px !important;
  float: none !important;
  margin: 0;
  padding: 0 14px;
  font-size: 14px;
  color: #333;
  border: 1px solid #e0e3e8;
  border-radius: 8px;
  background: #fff;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pc-uc-form input:focus {
  border-color: var(--pc-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.12);
}

.pc-uc-form input::placeholder {
  color: #bbb;
  font-size: 13px;
}

.pc-uc-form__error,
.pc-uc-main .old_pwd_error,
.pc-uc-main .new_pwd_error,
.pc-uc-main .new_cpwd_error,
.pc-uc-paypwd-form #pwd1,
.pc-uc-paypwd-form #pwd2,
.pc-uc-paypwd-form #pwd3,
.pc-uc-paypwd-form #pwd4,
.pc-uc-paypwd-form #pwd5 {
  display: block;
  width: 100%;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
  color: #e4393c;
  float: none !important;
}

.pc-uc-form__error:empty {
  display: none;
}

.pc-uc-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  padding-left: 112px;
}

.pc-uc-btn {
  min-width: 96px;
  height: 40px;
  padding: 0 22px;
  font-size: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s, transform 0.15s;
}

.pc-uc-btn:hover {
  opacity: 0.92;
}

.pc-uc-btn--primary,
.pc-uc-form .info_submit:not(.info_reset) {
  background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-primary-dark, #e85a8a) 100%) !important;
  color: #fff !important;
  margin: 0 !important;
}

.pc-uc-btn--ghost,
.pc-uc-form .info_reset {
  background: #fff !important;
  color: #666 !important;
  border: 1px solid #ddd !important;
  margin: 0 !important;
}

.pc-uc-wallet-balance {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  max-width: 420px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(255, 107, 157, 0.02) 100%);
  border: 1px solid rgba(255, 107, 157, 0.22);
  border-radius: 10px;
  box-sizing: border-box;
}

.pc-uc-wallet-balance__label {
  width: 100%;
  font-size: 13px;
  color: #888;
}

.pc-uc-wallet-balance__amount {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--pc-primary);
  letter-spacing: 0.02em;
}

.pc-uc-wallet-balance__unit {
  font-size: 14px;
  color: #999;
}

.pc-uc-wallet-page .user_info_list {
  display: none;
}

@media (max-width: 600px) {
  .pc-uc-form__label,
  .pc-uc-main .site_con .form_group label {
    flex: 0 0 100%;
    width: 100%;
    text-align: left;
    padding-top: 0;
  }

  .pc-uc-form__field {
    max-width: none;
    width: 100%;
  }

  .pc-uc-form__actions {
    padding-left: 0;
  }
}

/* ---------- 用户中心 · 店铺工厂 ---------- */
.pc-uc-factory-page .common_title2 {
  display: none;
}

.pc-uc-factory-toolbar {
  margin-top: 4px;
  margin-bottom: 18px;
}

.pc-uc-section > .pc-uc-section__title + .pc-uc-factory-toolbar {
  margin-top: 8px;
}

.pc-uc-btn--outline {
  display: inline-block;
  min-width: 120px;
  height: 40px;
  line-height: 38px;
  padding: 0 20px;
  font-size: 14px;
  text-align: center;
  color: var(--pc-primary);
  background: #fff;
  border: 1px solid var(--pc-primary);
  border-radius: 8px;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.2s, color 0.2s;
}

.pc-uc-btn--outline:hover {
  background: rgba(255, 107, 157, 0.08);
  color: var(--pc-primary-dark, #e85a8a);
}

.pc-uc-tip-card {
  margin-bottom: 20px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.08) 0%, rgba(255, 107, 157, 0.02) 100%);
  border: 1px solid rgba(255, 107, 157, 0.2);
  border-radius: 10px;
  font-size: 13px;
  color: #666;
  line-height: 1.75;
}

.pc-uc-tip-card p {
  margin: 0;
}

.pc-uc-tip-card p + p {
  margin-top: 4px;
}

.pc-uc-table-wrap {
  overflow-x: auto;
  border: 1px solid #eceef2;
  border-radius: 10px;
  background: #fff;
}

.pc-uc-factory-page .order_list_table {
  width: 100% !important;
  margin: 0 !important;
}

.pc-uc-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.pc-uc-data-table thead th {
  padding: 12px 14px;
  background: #f7f8fa;
  border-bottom: 1px solid #eceef2;
  font-weight: 600;
  color: #444;
  text-align: left;
  white-space: nowrap;
}

.pc-uc-data-table tbody td {
  padding: 14px;
  border-bottom: 1px solid #f0f1f4;
  color: #555;
  vertical-align: middle;
}

.pc-uc-data-table tbody tr:last-child td {
  border-bottom: none;
}

.pc-uc-data-table tbody tr:hover {
  background: #fafbfc;
}

.pc-uc-data-table .col-id,
.pc-uc-data-table .col-account,
.pc-uc-data-table .col-action {
  text-align: center;
  white-space: nowrap;
}

.pc-uc-data-table .col-name {
  min-width: 160px;
  max-width: 360px;
  word-break: break-all;
}

.pc-uc-btn--sm {
  min-width: 88px;
  height: 34px;
  line-height: 32px;
  padding: 0 14px;
  font-size: 13px;
}

.pc-uc-empty-card {
  padding: 40px 24px;
  text-align: center;
  border: 1px dashed #e0e3e8;
  border-radius: 10px;
  background: #fafbfc;
  color: #888;
}

.pc-uc-empty-card p {
  margin: 0;
  font-size: 15px;
  color: #666;
}

.pc-uc-empty-card__hint {
  margin-top: 8px !important;
  font-size: 13px !important;
  color: #999 !important;
}

@media (max-width: 640px) {
  .pc-uc-data-table .col-id {
    display: none;
  }
}

/* ---------- 用户中心 · 物流 / 通信（店铺工厂） ---------- */
.pc-uc-back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 13px;
  color: #666;
  text-decoration: none !important;
  transition: color 0.15s;
}

.pc-uc-panel > .pc-uc-main > .pc-uc-back-link:first-child,
.pc-uc-panel > .right_content > .pc-uc-back-link:first-child {
  margin-top: 4px;
}

.pc-uc-back-link:hover {
  color: var(--pc-primary);
  text-decoration: none !important;
}

.pc-uc-chat-page > .pc-uc-back-link {
  margin-top: 0;
  margin-bottom: 22px;
  padding: 8px 14px;
  background: #f7f8fa;
  border: 1px solid #eceef2;
  border-radius: 8px;
  color: #555;
}

.pc-uc-chat-page > .pc-uc-back-link:hover {
  border-color: rgba(255, 107, 157, 0.35);
  background: #fff;
  color: var(--pc-primary);
}

.pc-uc-factory-toolbar .pc-uc-back-link {
  margin-bottom: 0;
}

.pc-uc-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.pc-uc-filter-bar__keyword {
  flex: 1;
  min-width: 200px;
  max-width: 360px;
}

.pc-uc-input,
.pc-uc-select {
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  color: #333;
  border: 1px solid #e0e3e8;
  border-radius: 8px;
  background: #fff;
  box-sizing: border-box;
  outline: none;
}

.pc-uc-input:focus,
.pc-uc-select:focus {
  border-color: var(--pc-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.12);
}

.pc-uc-select--block {
  width: 100%;
}

.pc-uc-table-empty {
  padding: 24px 16px !important;
  text-align: center !important;
  color: #999 !important;
  border: none !important;
}

.pc-uc-table-empty.is-error {
  color: #e4393c !important;
}

.pc-uc-logistics-table .col-goods,
.pc-uc-logistics-table .col-addr,
.pc-uc-logistics-table .col-logistics {
  text-align: left;
  min-width: 120px;
}

.pc-uc-logistics-table .sub {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #999;
  line-height: 1.4;
}

.pc-uc-logistics-table .col-action {
  white-space: nowrap;
}

.pc-uc-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 4px;
}

.pc-uc-tag--ok {
  color: #389e0d;
  background: #f6ffed;
}

.pc-uc-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.pc-uc-modal.is-open {
  display: flex;
}

.pc-uc-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.pc-uc-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.pc-uc-modal__dialog--wide {
  max-width: 920px;
}

.pc-uc-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f1f4;
}

.pc-uc-modal__head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.pc-uc-modal__close {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 6px;
  background: #f5f6f8;
  font-size: 20px;
  line-height: 1;
  color: #666;
  cursor: pointer;
}

.pc-uc-modal__close:hover {
  background: #eee;
}

.pc-uc-modal__body {
  padding: 18px 20px;
}

.pc-uc-modal__foot {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 20px 18px;
  border-top: 1px solid #f0f1f4;
}

.pc-uc-modal .pc-uc-form__label {
  flex: 0 0 88px;
  padding-top: 10px;
}

.pc-uc-modal .pc-uc-form__actions {
  padding-left: 0;
}

/* 通信房间 */
.pc-uc-chat-page {
  padding-top: 0 !important;
}

.pc-uc-chat-panel {
  margin-top: 0;
  border: 1px solid #eceef2;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.pc-uc-chat-panel__head {
  padding: 16px 20px 14px 16px;
  background: #fafbfc;
  border-bottom: 1px solid #eceef2;
  border-left: 4px solid var(--pc-primary);
  color: #333;
}

.pc-uc-chat-panel__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: #222;
}

.pc-uc-chat-panel__sub {
  margin-top: 6px;
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  opacity: 1;
}

.pc-uc-chat-panel__sub + .pc-uc-chat-panel__sub {
  margin-top: 2px;
}

.pc-uc-chat-panel__body {
  padding: 16px 18px 18px;
}

.pc-uc-chat-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.pc-uc-chat-page-info {
  font-size: 12px;
  color: #999;
}

.pc-uc-chat-peers {
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid #eceef2;
  border-radius: 8px;
  background: #fafbfc;
}

.pc-uc-chat-peers__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.pc-uc-chat-peers__title {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

.pc-uc-chat-peers__hint {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.pc-uc-chat-peers__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pc-uc-peer-tab {
  height: 28px;
  padding: 0 12px;
  font-size: 12px;
  border: 1px solid #e0e3e8;
  border-radius: 14px;
  background: #fff;
  color: #666;
  cursor: pointer;
}

.pc-uc-peer-tab.is-active {
  border-color: var(--pc-primary);
  background: rgba(255, 107, 157, 0.1);
  color: var(--pc-primary);
  font-weight: 600;
}

.pc-uc-chat-msg-box {
  height: 380px;
  padding: 14px;
  overflow-y: auto;
  border: 1px solid #eceef2;
  border-radius: 8px;
  background: #f7f8fa;
}

.pc-uc-chat-line {
  margin-bottom: 10px;
  text-align: left;
}

.pc-uc-chat-line.is-mine {
  text-align: right;
}

.pc-uc-chat-bubble {
  display: inline-block;
  max-width: 75%;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 10px;
  text-align: left;
  word-break: break-word;
}

.pc-uc-chat-bubble.is-peer {
  background: #fff;
  color: #333;
  border: 1px solid #e8eaed;
}

.pc-uc-chat-bubble.is-mine {
  background: var(--pc-primary);
  color: #fff;
  border: none;
}

.pc-uc-chat-bubble--system {
  background: rgba(255, 107, 157, 0.1);
  color: var(--pc-primary);
  font-size: 13px;
}

.pc-uc-chat-bubble.is-product {
  padding: 8px;
  background: #fff !important;
  color: inherit !important;
  border: 1px solid #eceef2 !important;
}

.pc-uc-chat-meta {
  margin-top: 4px;
  font-size: 11px;
  opacity: 0.75;
}

.pc-uc-chat-input-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  align-items: center;
}

.pc-uc-chat-input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #e0e3e8;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

.pc-uc-chat-input:focus {
  border-color: var(--pc-primary);
}

.pc-uc-order-modal__toolbar,
.pc-uc-order-modal__list-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.pc-uc-order-modal__toolbar .pc-uc-input {
  flex: 1;
  min-width: 160px;
}

.pc-uc-order-modal__result {
  margin-top: 10px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.7;
  color: #666;
  background: #f7f8fa;
  border: 1px solid #eceef2;
  border-radius: 8px;
}

.pc-uc-order-modal__list-wrap {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #e8eaed;
}

.pc-uc-order-modal__list {
  margin-top: 8px;
  max-height: 300px;
  overflow-y: auto;
  padding: 8px;
  font-size: 12px;
  color: #555;
  border: 1px solid #eceef2;
  border-radius: 8px;
  background: #fff;
}

@media (max-width: 768px) {
  .pc-uc-filter-bar__keyword {
    max-width: none;
    width: 100%;
  }

  .pc-uc-chat-msg-box {
    height: calc(100vh - 320px);
    min-height: 280px;
  }

  .pc-uc-chat-input-row {
    flex-wrap: wrap;
  }

  .pc-uc-order-modal__toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ---------- 用户中心 · 我的收藏 ---------- */
.pc-uc-collection-page .info_con,
.pc-uc-collection-page .has_view_list {
  width: auto !important;
  height: auto !important;
}

.pc-uc-fav-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pc-uc-fav-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0 !important;
  float: none !important;
  width: auto !important;
  background: #fff;
  border: 1px solid #eceef2;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.pc-uc-fav-card:hover {
  border-color: rgba(255, 107, 157, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.pc-uc-fav-card__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background: #f5f6f8;
  overflow: hidden;
}

.pc-uc-fav-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 !important;
  border: none;
}

.pc-uc-fav-card__name {
  margin: 0;
  padding: 10px 10px 0;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.45;
  height: 2.9em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.pc-uc-fav-card__name a {
  color: #444;
  text-decoration: none;
}

.pc-uc-fav-card__name a:hover {
  color: var(--pc-primary);
}

.pc-uc-fav-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding: 8px 10px 12px;
}

.pc-uc-fav-card__price {
  font-size: 15px;
  font-weight: 600;
  color: #e4393c;
}

.pc-uc-fav-card__del {
  flex-shrink: 0;
  font-size: 12px;
  color: #999;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}

.pc-uc-fav-card__del:hover {
  color: var(--pc-primary);
  background: rgba(255, 107, 157, 0.08);
}

.pc-uc-fav-empty {
  grid-column: 1 / -1;
  padding: 48px 16px;
  text-align: center;
  font-size: 14px;
  color: #999;
  list-style: none;
}

@media (max-width: 1000px) {
  .pc-uc-fav-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .pc-uc-fav-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .pc-uc-fav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ---------- 用户中心 · 订单列表 ---------- */
.pc-uc-order-page .common_title2 {
  display: none;
}

.pc-uc-order-card {
  margin-bottom: 16px;
  border: 1px solid #eceef2;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.pc-uc-order-card__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 12px 18px;
  background: #f7f8fa;
  border-bottom: 1px solid #eceef2;
  font-size: 13px;
  color: #666;
}

.pc-uc-order-card__time {
  flex-shrink: 0;
  color: #888;
}

.pc-uc-order-card__id {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #555;
}

.pc-uc-order-card__status {
  flex-shrink: 0;
  margin-left: auto;
  font-weight: 600;
  color: #ff8800;
}

.pc-uc-order-card__status.stress {
  color: #ff8800;
}

.pc-uc-order-card__body {
  padding: 0;
}

.pc-uc-order-goods__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid #f0f1f4;
  float: none !important;
  height: auto !important;
  line-height: normal !important;
  margin: 0 !important;
}

.pc-uc-order-goods__item:last-child {
  border-bottom: none;
}

.pc-uc-order-goods__pic {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  float: none !important;
  line-height: normal !important;
}

.pc-uc-order-goods__pic img {
  width: 72px;
  height: 72px;
  margin: 0 !important;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #eee;
  display: block;
}

.pc-uc-order-goods__info {
  flex: 1;
  min-width: 0;
  float: none !important;
  width: auto !important;
  text-align: left !important;
  line-height: 1.45 !important;
  height: auto !important;
}

.pc-uc-order-goods__name {
  margin: 0 0 4px;
  font-size: 14px;
  color: #333;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-uc-order-goods__spec {
  margin: 0;
  font-size: 12px;
  color: #999;
}

.pc-uc-order-goods__qty,
.pc-uc-order-goods__price {
  flex: 0 0 56px;
  float: none !important;
  width: auto !important;
  height: auto !important;
  line-height: 1.4 !important;
  text-align: center;
  font-size: 13px;
  color: #666;
}

.pc-uc-order-goods__price {
  flex: 0 0 72px;
  color: #e4393c;
  font-weight: 600;
}

.pc-uc-order-goods__link {
  flex: 0 0 72px;
  float: none !important;
  width: auto !important;
  height: auto !important;
  line-height: 1.4 !important;
  text-align: center;
}

.pc-uc-order-goods__link a {
  font-size: 12px;
  color: var(--pc-primary);
  text-decoration: none;
}

.pc-uc-order-goods__link a:hover {
  text-decoration: underline;
}

.pc-uc-order-page .order_list_table.pc-uc-order-meta {
  width: 100% !important;
  margin: 0 !important;
  border: none;
  border-top: 1px solid #f0f1f4;
  border-collapse: collapse;
  table-layout: fixed;
}

.pc-uc-order-page .pc-uc-order-meta td {
  padding: 14px 10px;
  border: none;
  border-left: 1px solid #f0f1f4;
  vertical-align: middle;
  text-align: center;
  font-size: 13px;
  color: #666;
}

.pc-uc-order-page .pc-uc-order-meta td:first-child {
  border-left: none;
}

.pc-uc-order-meta__total {
  width: 16%;
  font-weight: 600;
  color: #333;
}

.pc-uc-order-meta__ship {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: normal;
  color: #999;
}

.pc-uc-order-meta__status {
  width: 12%;
}

.pc-uc-order-meta__action {
  width: 14%;
}

.pc-uc-order-meta__fast,
.pc-uc-order-meta__refund {
  width: 14%;
}

.pc-uc-order-meta__extra {
  width: 30%;
  text-align: left !important;
  padding-left: 14px !important;
}

.pc-uc-order-page .oper_btn {
  display: inline-block;
  min-width: 72px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--pc-primary) !important;
  background: #fff;
  border: 1px solid var(--pc-primary) !important;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.pc-uc-order-page .oper_btn:hover {
  background: rgba(255, 107, 157, 0.08);
}

.pc-uc-order-page .fast_refund_btn,
.pc-uc-order-page .tuihuan {
  font-size: 12px;
  color: #856404;
  text-decoration: none;
}

.pc-uc-order-page .order_countdown {
  color: #e4393c;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.5;
}

.pc-uc-order-page .countdown_time {
  font-variant-numeric: tabular-nums;
}

.pc-uc-order-empty {
  margin: 48px 0;
  text-align: center;
  font-size: 14px;
  color: #999;
}

.pc-uc-order-page .pagenation,
.pc-uc-order-page .pc-uc-pagination {
  height: auto;
  margin: 24px 0 8px;
  font-size: 14px;
}

.pc-uc-order-page .pagenation a {
  min-width: 36px;
  margin: 4px;
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 6px;
  border-color: #e0e3e8;
  background: #fff;
  color: #666;
}

.pc-uc-order-page .pagenation a.active,
.pc-uc-order-page .pagenation a:hover {
  border-color: var(--pc-primary);
  color: var(--pc-primary);
  background: rgba(255, 107, 157, 0.08);
}

.pc-uc-order-page .pagenation .active {
  background: var(--pc-primary);
  color: #fff;
  border-color: var(--pc-primary);
}

@media (max-width: 900px) {
  .pc-uc-order-goods__item {
    flex-wrap: wrap;
  }

  .pc-uc-order-goods__qty,
  .pc-uc-order-goods__price,
  .pc-uc-order-goods__link {
    flex: 0 0 auto;
  }

  .pc-uc-order-page .pc-uc-order-meta {
    display: block;
  }

  .pc-uc-order-page .pc-uc-order-meta tr {
    display: flex;
    flex-wrap: wrap;
  }

  .pc-uc-order-page .pc-uc-order-meta td {
    flex: 1 1 45%;
    border-left: none;
    border-top: 1px solid #f0f1f4;
  }
}

/* ---------- 用户中心 · 收货地址 ---------- */
.pc-uc-main.pc-addr-page,
.pc-addr-page {
  padding: 0;
}

.pc-uc-main .pc-addr-page__title,
.pc-addr-page__title {
  margin: 0 0 16px;
  padding: 0 0 10px;
  border-left: none;
  border-bottom: 1px solid #f0f1f4;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.pc-uc-main .pc-addr-page__title::before,
.pc-addr-page__title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 14px;
  margin-right: 8px;
  vertical-align: -2px;
  border-radius: 2px;
  background: var(--pc-primary);
}

.pc-addr-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.pc-addr-card {
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding: 0;
  border-radius: var(--pc-radius);
  background: #fff;
  box-shadow: var(--pc-shadow);
  overflow: hidden;
}

.pc-addr-card__row {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  margin: 0;
  cursor: pointer;
}

.pc-addr-card__row input[type="radio"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  accent-color: var(--pc-primary);
}

.pc-addr-card:has(input:checked) {
  box-shadow: 0 0 0 2px rgba(255, 107, 157, 0.35);
}

.pc-addr-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pc-addr-card__addr {
  font-size: 14px;
  line-height: 1.6;
  color: var(--pc-text);
  word-break: break-all;
}

.pc-addr-card__meta {
  font-size: 13px;
  color: var(--pc-text-muted);
}

.pc-addr-card__del {
  flex-shrink: 0;
  align-self: center;
  margin-right: 16px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--pc-primary);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.pc-addr-card__del:hover {
  background: rgba(255, 107, 157, 0.1);
  color: var(--pc-primary-dark);
}

.pc-addr-empty {
  margin: 0;
  padding: 32px 20px;
  text-align: center;
  font-size: 14px;
  color: var(--pc-text-muted);
  background: #fff;
  border-radius: var(--pc-radius);
  box-shadow: var(--pc-shadow);
}

.pc-addr-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.pc-addr-add-btn {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-primary-dark) 100%);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.35);
}

.pc-addr-add-btn:hover {
  opacity: 0.92;
}

.pc-addr-count {
  margin: 0;
  font-size: 14px;
  color: var(--pc-text-muted);
}

.pc-addr-count b {
  color: var(--pc-primary);
  font-weight: 700;
}

.pc-addr-error {
  margin: 16px 0 0;
  padding: 10px 14px;
  font-size: 13px;
  color: #cf1322;
  background: #fff2f0;
  border: 1px solid #ffccc7;
  border-radius: 8px;
}

/* 新增地址弹窗 */
.pc-addr-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.pc-addr-modal.is-open {
  display: flex;
}

.pc-addr-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.pc-addr-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.pc-addr-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid #f0f1f4;
}

.pc-addr-modal__head h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a2e;
}

.pc-addr-modal__close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: #f5f6f8;
  font-size: 22px;
  line-height: 1;
  color: #666;
  cursor: pointer;
}

.pc-addr-modal__close:hover {
  background: #eee;
  color: #333;
}

.pc-addr-form {
  padding: 22px 22px 24px;
}

.pc-addr-field {
  margin-bottom: 18px;
}

.pc-addr-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
}

.pc-addr-field input[type="text"],
.pc-addr-field input[type="tel"],
.pc-addr-field textarea,
.pc-addr-field select {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #e0e3e8;
  border-radius: 8px;
  background: #fafbfc;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pc-addr-field input:focus,
.pc-addr-field textarea:focus,
.pc-addr-field select:focus {
  border-color: var(--pc-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.12);
}

.pc-addr-field textarea {
  resize: vertical;
  min-height: 72px;
}

.pc-addr-region {
  display: flex;
  gap: 10px;
}

.pc-addr-region select {
  flex: 1;
  min-width: 0;
}

.pc-addr-form__row2 {
  display: flex;
  gap: 16px;
}

.pc-addr-field--half {
  flex: 1;
  min-width: 0;
}

.pc-addr-form__actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  padding-top: 8px;
}

.pc-addr-btn {
  flex: 1;
  height: 42px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.pc-addr-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-primary-dark) 100%);
}

.pc-addr-btn--ghost {
  color: #666;
  background: #f0f1f4;
}

.pc-addr-btn--ghost:hover {
  background: #e4e6eb;
}
