/* 乐果网络GPS返利微信小程序 - 美化版公共样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ff6b35;
  --primary-light: #ff9a5c;
  --primary-dark: #e55a28;
  --primary-bg: #fff0e8;
  --primary-bg2: #ffe5d4;
  --success: #4caf50;
  --success-bg: #e8f5e9;
  --danger: #ff5252;
  --danger-bg: #ffebee;
  --warning: #ffb347;
  --info: #1976d2;
  --gray-bg: #f5f5f5;
  --gray-light: #f0f0f0;
  --gray-border: #eee;
  --gray-text: #999;
  --dark-text: #333;
  --mid-text: #666;
  --light-text: #bbb;
  --white: #fff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-primary: 0 4px 16px rgba(255,107,53,0.35);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.4s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  background: var(--gray-bg);
  color: var(--dark-text);
  max-width: 375px;
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* 全局动画 */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.animate-fadeIn { animation: fadeIn var(--transition-normal); }
.animate-fadeInUp { animation: fadeInUp 0.5s ease-out; }
.animate-slideUp { animation: slideUp 0.3s ease-out; }
.animate-bounceIn { animation: bounceIn 0.5s ease-out; }
.animate-scaleIn { animation: scaleIn 0.3s ease-out; }
.animate-float { animation: float 2s ease-in-out infinite; }

/* 状态栏 */
.status-bar {
  height: 20px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--dark-text);
}

/* 导航栏 */
.nav-bar {
  height: 44px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gray-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--transition-normal);
}

.nav-bar .nav-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-text);
}

.nav-bar .nav-back {
  position: absolute;
  left: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 18px;
  transition: background var(--transition-fast);
}

.nav-bar .nav-back:hover { background: var(--gray-bg); }
.nav-bar .nav-back:active { background: var(--gray-light); transform: scale(0.95); }

.nav-bar .nav-back svg {
  width: 22px;
  height: 22px;
}

.nav-bar .nav-right {
  position: absolute;
  right: 12px;
  font-size: 14px;
  color: var(--mid-text);
  cursor: pointer;
  transition: color var(--transition-fast);
}
.nav-bar .nav-right:hover { color: var(--primary); }

/* 底部导航栏 */
.tab-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 375px;
  height: 56px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: none;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
  z-index: 200;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.tab-bar .tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: var(--gray-text);
  font-size: 11px;
  transition: all var(--transition-normal);
  padding: 4px 0;
  position: relative;
}

.tab-item.active {
  color: var(--primary);
  font-weight: 600;
}

.tab-item.active .tab-icon {
  transform: scale(1.15);
}

.tab-item .tab-icon {
  font-size: 22px;
  transition: transform var(--transition-normal);
  line-height: 1;
}

.tab-item svg {
  width: 22px;
  height: 22px;
  margin-bottom: 2px;
  fill: currentColor;
  transition: all var(--transition-normal);
}

/* 页面内容区域 */
.page-content {
  padding-bottom: 70px;
  min-height: calc(100vh - 64px);
}

/* 搜索栏 */
.search-bar {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: var(--white);
}

.search-bar .search-input {
  flex: 1;
  height: 34px;
  background: var(--gray-bg);
  border-radius: 17px;
  padding: 0 16px;
  font-size: 13px;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.search-bar .search-input:focus-within,
.search-bar .search-input:hover {
  background: #eaeaea;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.08);
}

.search-bar .search-input svg {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  fill: var(--gray-text);
}

/* 卡片 */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  margin: 8px 12px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

/* Banner */
.banner {
  margin: 8px 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 120px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  padding: 20px;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.banner .banner-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.banner .banner-sub {
  font-size: 13px;
  margin-top: 8px;
  opacity: 0.9;
}

.banner .banner-icon {
  position: absolute;
  right: 20px;
  bottom: 10px;
  font-size: 60px;
  opacity: 0.3;
}

/* 返利金额区域 */
.rebate-stats {
  background: var(--white);
  margin: 8px 12px;
  border-radius: var(--radius-md);
  padding: 16px 0;
  display: flex;
  justify-content: space-around;
  box-shadow: var(--shadow-sm);
}

.rebate-stats .stat-item {
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.rebate-stats .stat-item:hover { transform: scale(1.03); }
.rebate-stats .stat-item:active { transform: scale(0.97); }

.rebate-stats .stat-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

.rebate-stats .stat-label {
  font-size: 12px;
  color: var(--gray-text);
  margin-top: 6px;
}

/* 商品列表 */
.product-list {
  padding: 0 12px;
}

.product-list .list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0 8px;
}

.product-list .list-title {
  font-size: 16px;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.product-card .product-img {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #f7e8d8 0%, #fff5e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 40px;
}

.product-card .product-info {
  padding: 8px;
}

.product-card .product-name {
  font-size: 13px;
  color: var(--dark-text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .product-tag {
  display: inline-block;
  font-size: 10px;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 2px 6px;
  border-radius: 3px;
  margin-top: 4px;
  font-weight: 500;
}

.product-card .product-price {
  display: flex;
  align-items: baseline;
  margin-top: 6px;
}

.product-card .price-now {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.product-card .price-original {
  font-size: 11px;
  color: var(--gray-text);
  margin-left: 4px;
  text-decoration: line-through;
}

.product-card .product-rebate {
  font-size: 11px;
  color: var(--primary);
  margin-top: 2px;
}

.product-card .buy-btn {
  display: block;
  width: 100%;
  height: 30px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 15px;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
  margin-top: 6px;
  cursor: pointer;
  border: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  box-shadow: 0 2px 6px rgba(255,107,53,0.3);
}

.product-card .buy-btn:hover { opacity: 0.9; }
.product-card .buy-btn:active { transform: scale(0.97); }

/* 商品详情图片 */
.product-detail-img {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #f7e8d8, #fff5e8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 80px;
}

/* 价格区域 */
.price-section {
  background: var(--white);
  padding: 14px;
  border-bottom: 1px solid var(--gray-border);
}

.price-section .current-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.price-section .original-price {
  font-size: 14px;
  color: var(--gray-text);
  margin-left: 8px;
  text-decoration: line-through;
}

.price-section .rebate-info {
  font-size: 13px;
  color: var(--primary);
  margin-top: 6px;
  background: var(--primary-bg);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}

/* 商品标题 */
.product-title-section {
  background: var(--white);
  padding: 14px;
  margin-bottom: 8px;
}

.product-title-section .product-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.5;
}

.product-title-section .product-desc {
  font-size: 13px;
  color: var(--mid-text);
  margin-top: 6px;
}

/* 规格选择 */
.spec-section {
  background: var(--white);
  padding: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.spec-section:hover { background: var(--gray-bg); }
.spec-section:active { background: var(--gray-light); }

.spec-section .spec-label {
  font-size: 14px;
  color: var(--dark-text);
}

.spec-section .spec-value {
  font-size: 13px;
  color: var(--gray-text);
}

/* 底部操作栏 */
.action-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 375px;
  height: 56px;
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 0 12px;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
  z-index: 200;
}

.action-bar .cart-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  border-radius: 22px;
  transition: background var(--transition-fast);
}

.action-bar .cart-icon:hover { background: var(--gray-bg); }

.action-bar .cart-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--mid-text);
}

.action-bar .cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  text-align: center;
  line-height: 16px;
  box-shadow: 0 1px 3px rgba(255,107,53,0.4);
}

.action-bar .add-cart-btn {
  flex: 1;
  height: 40px;
  background: linear-gradient(135deg, #ffb347, #ff9a5c);
  color: var(--white);
  border-radius: 20px 0 0 20px;
  text-align: center;
  line-height: 40px;
  font-size: 15px;
  font-weight: 600;
  margin-left: 12px;
  cursor: pointer;
  border: none;
  transition: opacity var(--transition-fast);
  box-shadow: 0 2px 8px rgba(255,179,71,0.3);
}

.action-bar .buy-now-btn {
  flex: 1;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 0 20px 20px 0;
  text-align: center;
  line-height: 40px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity var(--transition-fast);
  box-shadow: 0 2px 8px rgba(255,107,53,0.3);
}

/* 用户信息区域 */
.user-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 24px 16px;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.user-header::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.user-header::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 40%;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.user-header .user-avatar {
  width: 56px;
  height: 56px;
  border-radius: 28px;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.user-header .user-info {
  margin-left: 14px;
}

.user-header .user-name {
  font-size: 18px;
  font-weight: 700;
}

.user-header .user-id {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 4px;
}

/* 物业基金卡片 */
.property-fund-card {
  background: var(--white);
  border-radius: var(--radius-md);
  margin: 12px;
  padding: 18px;
  box-shadow: var(--shadow-md);
}

.property-fund-card .fund-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.property-fund-card .fund-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
}

.property-fund-card .fund-link {
  font-size: 12px;
  color: var(--primary);
  cursor: pointer;
}

.property-fund-card .fund-stats {
  display: flex;
  justify-content: space-around;
}

.fund-stats .fund-item {
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.fund-stats .fund-item:hover { transform: scale(1.05); }

.fund-stats .fund-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-text);
}

.fund-stats .fund-label {
  font-size: 11px;
  color: var(--gray-text);
  margin-top: 6px;
}

/* 订单入口 */
.order-entry {
  background: var(--white);
  border-radius: var(--radius-md);
  margin: 12px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.order-entry .order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.order-entry .order-title {
  font-size: 16px;
  font-weight: 700;
}

.order-entry .order-link {
  font-size: 12px;
  color: var(--gray-text);
  cursor: pointer;
}

.order-tabs {
  display: flex;
  justify-content: space-around;
}

.order-tabs .order-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: var(--dark-text);
  font-size: 12px;
  transition: transform var(--transition-fast);
}

.order-tabs .order-tab:hover { transform: translateY(-2px); }

.order-tabs .order-tab svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
  margin-bottom: 4px;
}

/* 功能菜单 */
.func-grid {
  background: var(--white);
  border-radius: var(--radius-md);
  margin: 12px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.func-grid .func-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

.func-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 0;
}

.func-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: var(--dark-text);
  font-size: 12px;
  transition: transform var(--transition-fast);
}

.func-item:hover { transform: translateY(-2px); }
.func-item:active { transform: scale(0.95); }

.func-item svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
  margin-bottom: 6px;
}

/* 购物车 */
.cart-list {
  padding: 0 12px;
}

.cart-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  padding: 14px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.cart-item .cart-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid #ddd;
  border-radius: 11px;
  margin-right: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.cart-item .cart-checkbox.checked {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 2px 6px rgba(255,107,53,0.3);
}

.cart-item .cart-checkbox.checked::after {
  content: '\2713';
  color: var(--white);
  font-size: 12px;
}

.cart-item .cart-img {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f7e8d8, #fff5e8);
  border-radius: var(--radius-sm);
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 30px;
}

.cart-item .cart-info {
  flex: 1;
}

.cart-item .cart-name {
  font-size: 13px;
  color: var(--dark-text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item .cart-spec {
  font-size: 12px;
  color: var(--gray-text);
  margin-top: 4px;
  background: var(--gray-bg);
  padding: 2px 8px;
  border-radius: 3px;
}

.cart-item .cart-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.cart-item .cart-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.cart-item .cart-qty {
  display: flex;
  align-items: center;
}

.cart-qty .qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  background: var(--white);
  transition: background var(--transition-fast);
}

.cart-qty .qty-btn:hover { background: var(--gray-bg); }
.cart-qty .qty-btn.minus { border-radius: 4px 0 0 4px; }
.cart-qty .qty-btn.plus { border-radius: 0 4px 4px 0; }

.cart-qty .qty-num {
  width: 32px;
  height: 26px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* 购物车底部 */
.cart-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 375px;
  height: 56px;
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 0 12px;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
  z-index: 200;
}

.cart-footer .cart-select-all {
  display: flex;
  align-items: center;
  font-size: 13px;
  cursor: pointer;
}

.cart-footer .cart-total {
  flex: 1;
  text-align: right;
  font-size: 13px;
  color: var(--dark-text);
  margin-right: 10px;
}

.cart-footer .cart-total .total-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

.cart-footer .checkout-btn {
  width: 110px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 20px;
  text-align: center;
  line-height: 40px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-primary);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.cart-footer .checkout-btn:hover { opacity: 0.9; }
.cart-footer .checkout-btn:active { transform: scale(0.97); }

/* 订单列表 */
.order-list {
  padding: 0 12px;
}

.order-card {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.order-card .order-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.order-card .order-no {
  font-size: 12px;
  color: var(--gray-text);
}

.order-card .order-status {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
}

.order-card .order-product {
  display: flex;
  margin-bottom: 10px;
}

.order-card .order-product-img {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #f7e8d8, #fff5e8);
  border-radius: var(--radius-sm);
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 24px;
}

.order-card .order-product-info {
  flex: 1;
}

.order-card .order-product-name {
  font-size: 13px;
  color: var(--dark-text);
}

.order-card .order-product-spec {
  font-size: 12px;
  color: var(--gray-text);
  margin-top: 4px;
}

.order-card .order-product-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-text);
  margin-top: 6px;
}

.order-card .order-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--gray-border);
}

.order-card .order-total {
  font-size: 13px;
  color: var(--dark-text);
}

.order-card .order-total .total-amount {
  color: var(--primary);
  font-weight: 700;
}

.order-card .order-btns {
  display: flex;
  gap: 8px;
}

.order-btn {
  height: 30px;
  padding: 0 14px;
  border-radius: 15px;
  font-size: 12px;
  line-height: 30px;
  cursor: pointer;
  border: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.order-btn:hover { opacity: 0.9; }
.order-btn:active { transform: scale(0.97); }

.order-btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 2px 6px rgba(255,107,53,0.3);
}

.order-btn.secondary {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
}

/* 地址列表 */
.address-list {
  padding: 0 12px;
}

.address-card {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  padding: 14px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal);
}

.address-card:hover { box-shadow: var(--shadow-md); }

.address-card .address-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-text);
}

.address-card .address-phone {
  font-size: 13px;
  color: var(--mid-text);
  margin-left: 10px;
}

.address-card .address-detail {
  font-size: 13px;
  color: var(--mid-text);
  margin-top: 6px;
  line-height: 1.5;
}

.address-card .address-default {
  display: inline-block;
  font-size: 10px;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 2px 6px;
  border-radius: 3px;
  margin-top: 6px;
  font-weight: 500;
}

.address-card .address-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 10px;
  border-top: 1px solid var(--gray-border);
  padding-top: 10px;
}

.address-card .address-action {
  font-size: 12px;
  color: var(--gray-text);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.address-card .address-action:hover { color: var(--primary); }

.add-address-btn {
  position: fixed;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 335px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 22px;
  text-align: center;
  line-height: 44px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  z-index: 200;
  box-shadow: var(--shadow-primary);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.add-address-btn:hover { opacity: 0.9; }
.add-address-btn:active { transform: scale(0.97); }

/* 表单样式 */
.form-group {
  background: var(--white);
  padding: 0 12px;
}

.form-item {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-border);
}

.form-item .form-label {
  width: 80px;
  font-size: 14px;
  color: var(--dark-text);
  font-weight: 500;
}

.form-item .form-input {
  flex: 1;
  font-size: 14px;
  color: var(--dark-text);
  border: none;
  outline: none;
  background: transparent;
}

.form-item .form-input::placeholder {
  color: #ccc;
}

.form-item .form-arrow {
  color: #ccc;
  font-size: 14px;
}

/* 确认订单 */
.confirm-section {
  background: var(--white);
  margin-bottom: 8px;
  padding: 14px;
  border-radius: 0;
}

.confirm-address {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.confirm-address .address-icon {
  width: 24px;
  height: 24px;
  fill: var(--primary);
  margin-right: 10px;
}

.confirm-address .address-content {
  flex: 1;
}

.confirm-address .address-user {
  font-size: 15px;
  font-weight: 700;
}

.confirm-address .address-user .user-phone {
  font-weight: normal;
  color: var(--mid-text);
  margin-left: 10px;
}

.confirm-address .address-text {
  font-size: 13px;
  color: var(--mid-text);
  margin-top: 4px;
}

.confirm-products {
  margin-top: 10px;
}

.confirm-product-item {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-bg);
}

.confirm-product-item .product-img {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f7e8d8, #fff5e8);
  border-radius: var(--radius-sm);
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 30px;
}

.confirm-product-item .product-detail {
  flex: 1;
}

.confirm-product-item .product-name {
  font-size: 13px;
  color: var(--dark-text);
}

.confirm-product-item .product-spec {
  font-size: 12px;
  color: var(--gray-text);
  margin-top: 4px;
}

.confirm-product-item .product-price-qty {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.confirm-product-item .product-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-text);
}

.confirm-product-item .product-qty {
  font-size: 12px;
  color: var(--gray-text);
}

.confirm-price-detail {
  padding: 10px 0;
}

.confirm-price-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
}

.confirm-price-row .price-label { color: var(--mid-text); }
.confirm-price-row .price-value { color: var(--dark-text); }
.confirm-price-row .price-value.red { color: var(--primary); }

.confirm-price-row.total {
  font-weight: 700;
  font-size: 15px;
  margin-top: 6px;
  border-top: 1px solid var(--gray-border);
  padding-top: 10px;
}

/* 提现页面 */
.withdraw-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  margin: 12px;
  padding: 28px 16px;
  color: var(--white);
  text-align: center;
  box-shadow: 0 6px 20px rgba(255,107,53,0.35);
  position: relative;
  overflow: hidden;
}

.withdraw-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.withdraw-card .withdraw-title {
  font-size: 14px;
  opacity: 0.9;
}

.withdraw-card .withdraw-amount {
  font-size: 38px;
  font-weight: 700;
  margin: 10px 0;
}

.withdraw-card .withdraw-amount small { font-size: 14px; }

.withdraw-btn {
  display: block;
  width: 200px;
  height: 42px;
  background: var(--white);
  color: var(--primary);
  border-radius: 21px;
  text-align: center;
  line-height: 42px;
  font-size: 16px;
  font-weight: 700;
  margin: 0 auto;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 12px rgba(255,255,255,0.2);
  transition: transform var(--transition-fast);
}

.withdraw-btn:active { transform: scale(0.97); }

.withdraw-options {
  background: var(--white);
  margin: 12px;
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.withdraw-option {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-border);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.withdraw-option:hover { background: var(--gray-bg); }
.withdraw-option:last-child { border-bottom: none; }

.withdraw-option .option-icon {
  width: 40px;
  height: 40px;
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 14px;
}

.withdraw-option .option-info { flex: 1; }
.withdraw-option .option-name { font-size: 14px; color: var(--dark-text); font-weight: 500; }
.withdraw-option .option-desc { font-size: 12px; color: var(--gray-text); margin-top: 4px; }
.withdraw-option .option-arrow { color: #ccc; }

/* 发票 */
.invoice-tabs {
  display: flex;
  background: var(--white);
  padding: 0 12px;
  border-bottom: 1px solid var(--gray-border);
}

.invoice-tab {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  color: var(--gray-text);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-normal);
}

.invoice-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}

.invoice-list { padding: 8px 12px; }

.invoice-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal);
}

.invoice-card:hover { box-shadow: var(--shadow-md); }

.invoice-card .invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.invoice-card .invoice-type {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-text);
}

.invoice-card .invoice-status {
  font-size: 12px;
  color: var(--primary);
  font-weight: 500;
}

.invoice-card .invoice-info {
  font-size: 13px;
  color: var(--mid-text);
  margin-top: 10px;
  line-height: 1.7;
}

/* 充抵物业费 */
.offset-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 28px 16px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offset-header::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.offset-header .offset-title { font-size: 14px; opacity: 0.9; }
.offset-header .offset-amount { font-size: 30px; font-weight: 700; margin: 10px 0; }

.offset-tabs {
  display: flex;
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--gray-border);
}

.offset-tab {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  color: var(--gray-text);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-normal);
}

.offset-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}

.offset-record {
  background: var(--white);
  margin: 10px 12px;
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.offset-record .record-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-bg);
}

.offset-record .record-info { font-size: 13px; color: var(--dark-text); }
.offset-record .record-info .record-date { font-size: 12px; color: var(--gray-text); margin-top: 4px; }
.offset-record .record-amount { font-size: 14px; font-weight: 600; }
.offset-record .record-amount.green { color: var(--success); }
.offset-record .record-amount.orange { color: var(--primary); }

/* 弹窗/遮罩 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeIn 0.2s ease-out;
}

.modal-content {
  width: 375px;
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 20px;
  max-height: 75vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease-out;
}

.modal-content .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.modal-content .modal-title {
  font-size: 17px;
  font-weight: 700;
}

.modal-content .modal-close {
  font-size: 22px;
  color: var(--gray-text);
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  transition: background var(--transition-fast);
}

.modal-content .modal-close:hover { background: var(--gray-bg); }

/* 空状态 */
.empty-state {
  text-align: center;
  padding: 50px 20px;
  color: var(--gray-text);
}

.empty-state svg {
  width: 80px;
  height: 80px;
  fill: #ddd;
  margin-bottom: 14px;
}

.empty-state .empty-text { font-size: 14px; }

/* 标签页切换 */
.tabs-nav {
  display: flex;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  position: sticky;
  top: 44px;
  z-index: 50;
}

.tabs-nav .tab {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  color: var(--gray-text);
  cursor: pointer;
  position: relative;
  transition: color var(--transition-normal);
}

.tabs-nav .tab.active {
  color: var(--primary);
  font-weight: 600;
}

.tabs-nav .tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* 邻里同行 */
.community-card {
  background: var(--white);
  border-radius: var(--radius-md);
  margin: 10px 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.community-card .community-avatar {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 14px;
}

.community-card .community-info { flex: 1; }
.community-card .community-name { font-size: 14px; font-weight: 600; color: var(--dark-text); }
.community-card .community-desc { font-size: 12px; color: var(--gray-text); margin-top: 4px; }

.community-card .invite-btn {
  width: 64px;
  height: 30px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 15px;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(255,107,53,0.3);
  transition: transform var(--transition-fast);
}

.community-card .invite-btn:active { transform: scale(0.95); }

/* 服务保障 */
.guarantee-list { padding: 8px 12px; }

.guarantee-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  padding: 18px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.guarantee-item:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

.guarantee-item .guarantee-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-right: 14px;
}

.guarantee-item .guarantee-info { flex: 1; }
.guarantee-item .guarantee-title { font-size: 14px; font-weight: 700; color: var(--dark-text); }
.guarantee-item .guarantee-desc { font-size: 12px; color: var(--gray-text); margin-top: 4px; line-height: 1.5; }

/* 膨胀券 */
.coupon-card {
  background: var(--white);
  border-radius: var(--radius-md);
  margin: 10px 12px;
  overflow: hidden;
  display: flex;
  box-shadow: var(--shadow-sm);
}

.coupon-card .coupon-value {
  width: 100px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
  position: relative;
}

.coupon-card .coupon-value::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--gray-bg);
  border-radius: 6px;
}

.coupon-card .coupon-amount { font-size: 26px; font-weight: 700; }
.coupon-card .coupon-unit { font-size: 12px; }
.coupon-card .coupon-info { flex: 1; padding: 14px; }
.coupon-card .coupon-name { font-size: 14px; font-weight: 700; color: var(--dark-text); }
.coupon-card .coupon-condition { font-size: 12px; color: var(--gray-text); margin-top: 6px; }
.coupon-card .coupon-time { font-size: 11px; color: #ccc; margin-top: 4px; }

.coupon-card .coupon-use {
  display: inline-block;
  font-size: 12px;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 4px 14px;
  border-radius: 12px;
  margin-top: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: background var(--transition-fast);
}

.coupon-card .coupon-use:hover { background: #ffe0c8; }

/* 意见反馈 */
.feedback-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
}

.feedback-type {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--dark-text);
  cursor: pointer;
  border: 1px solid var(--gray-border);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.feedback-type:hover { border-color: var(--primary); }

.feedback-type.selected {
  border-color: var(--primary);
  background: var(--primary-bg);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.feedback-textarea {
  background: var(--white);
  margin: 8px 12px;
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.feedback-textarea textarea {
  width: 100%;
  height: 120px;
  border: none;
  outline: none;
  font-size: 14px;
  resize: none;
  background: transparent;
  color: var(--dark-text);
}

.feedback-submit {
  display: block;
  width: 335px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 22px;
  text-align: center;
  line-height: 44px;
  font-size: 16px;
  font-weight: 600;
  margin: 12px auto;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-primary);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.feedback-submit:active { transform: scale(0.97); }

/* 广告合作 */
.ad-section {
  background: var(--white);
  margin: 10px 12px;
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal);
}

.ad-section:hover { box-shadow: var(--shadow-md); }

.ad-section .ad-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 14px;
}

.ad-section .ad-content {
  font-size: 14px;
  color: var(--mid-text);
  line-height: 1.7;
}

.ad-section .ad-contact {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-border);
}

.ad-section .ad-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--mid-text);
}

.ad-section .ad-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  margin-right: 10px;
}

/* 我的房产 */
.property-card {
  background: var(--white);
  border-radius: var(--radius-md);
  margin: 10px 12px;
  padding: 18px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.property-card .property-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-text);
}

.property-card .property-detail {
  font-size: 13px;
  color: var(--mid-text);
  margin-top: 6px;
  line-height: 1.6;
}

.property-card .property-status {
  display: inline-block;
  font-size: 12px;
  color: var(--success);
  background: var(--success-bg);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  margin-top: 10px;
  font-weight: 500;
}

/* ========== 订单页面样式 ========== */

/* 搜索行 */
.search-row {
  background: var(--white);
  padding: 8px 12px;
  display: flex;
  align-items: center;
}
.search-box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 34px;
  background: var(--gray-bg);
  border-radius: 17px;
  padding: 0 14px;
  transition: background var(--transition-fast);
}
.search-box:focus-within {
  background: #eaeaea;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
}
.search-icon {
  width: 16px;
  height: 16px;
  fill: var(--gray-text);
  margin-right: 6px;
  flex-shrink: 0;
}
.search-box input {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 13px;
  color: var(--dark-text);
}
.search-box input::placeholder {
  color: var(--gray-text);
}

/* 服务标签 */
.service-tags {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: var(--white);
  flex-wrap: wrap;
  border-bottom: 1px solid var(--gray-border);
}
.service-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}
.service-tag.primary {
  background: var(--primary);
  color: var(--white);
  font-weight: 500;
}
.service-tag.outline {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
}

/* 订单5-tab导航 */
.order-tabs-nav {
  display: flex;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  position: sticky;
  top: 44px;
  z-index: 50;
}
.order-tabs-nav .order-tab {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  color: var(--gray-text);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: color var(--transition-normal);
}
.order-tabs-nav .order-tab.active {
  color: var(--primary);
  font-weight: 600;
}
.order-tabs-nav .order-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* 订单卡片v2 */
.order-card-v2 {
  background: var(--white);
  margin: 10px 12px;
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal);
}
.order-card-v2:hover {
  box-shadow: var(--shadow-md);
}

/* 卡片头部 */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.shop-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-text);
}
.after-sale-status {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background: var(--primary-bg);
  color: var(--primary);
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

/* 订单地址 */
.order-address {
  display: flex;
  align-items: center;
  padding: 10px 0;
  margin-bottom: 10px;
  border-bottom: 1px dashed var(--gray-border);
}
.addr-icon {
  font-size: 16px;
  margin-right: 8px;
}
.addr-text {
  flex: 1;
  font-size: 13px;
  color: var(--mid-text);
  line-height: 1.5;
}
.addr-modify {
  font-size: 12px;
  color: var(--primary);
  cursor: pointer;
  padding: 2px 8px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
}

/* 订单商品 */
.order-product {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.prod-img {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f7e8d8, #fff5e8);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-right: 10px;
  flex-shrink: 0;
}
.prod-info {
  flex: 1;
  min-width: 0;
}
.prod-name {
  font-size: 13px;
  color: var(--dark-text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prod-spec {
  font-size: 12px;
  color: var(--gray-text);
  margin-top: 4px;
}
.prod-coupon {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.coupon-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 500;
}
.prod-price-row {
  display: flex;
  align-items: baseline;
  margin-top: 6px;
}
.prod-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}
.prod-qty {
  font-size: 12px;
  color: var(--gray-text);
  margin-left: 4px;
}

/* 返利信息行 */
.rebate-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--gray-bg);
  margin-top: 8px;
}
.rebate-label {
  font-size: 13px;
  color: var(--gray-text);
}
.rebate-val {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}

/* 订单备注 */
.order-note {
  font-size: 12px;
  color: var(--gray-text);
  margin-top: 8px;
  padding: 6px 0;
}

/* 订单按钮行 */
.order-btn-row {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-bg);
}

/* 发货提示 */
.shipping-tip {
  font-size: 12px;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  display: inline-block;
}

/* 物流链接 */
.logistics-link {
  font-size: 12px;
  color: var(--primary);
  cursor: pointer;
  text-decoration: none;
  margin-right: 8px;
  transition: opacity var(--transition-fast);
}
.logistics-link:hover { opacity: 0.8; }

/* 退款详情卡片 */
.refund-detail-card {
  background: var(--white);
  margin: 10px 12px;
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.refund-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-bg);
  font-size: 13px;
}
.refund-row:last-child { border-bottom: none; }
.refund-label { color: var(--gray-text); }
.refund-value { color: var(--dark-text); }
.refund-value.highlight {
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
}

/* 底部操作栏 */
.bottom-action-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 375px;
  height: 56px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 12px;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
  z-index: 200;
}
.action-btn {
  height: 40px;
  padding: 0 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
  cursor: pointer;
  border: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.action-btn:hover { opacity: 0.9; }
.action-btn:active { transform: scale(0.97); }
.action-btn.outline {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.action-btn.filled {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

/* 订单状态横幅 */
.order-status-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 20px 16px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.order-status-banner::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.status-label {
  font-size: 18px;
  font-weight: 700;
}
.status-desc {
  font-size: 13px;
  opacity: 0.9;
  margin-top: 6px;
}

/* 订单进度时间线 */
.order-timeline {
  background: var(--white);
  display: flex;
  justify-content: space-around;
  padding: 20px 16px;
  margin: 0 12px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.timeline-line {
  position: absolute;
  top: 12px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: var(--gray-border);
  z-index: 1;
}
.timeline-line.done {
  background: var(--primary);
}
.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background: var(--gray-border);
  z-index: 2;
  margin-bottom: 8px;
  transition: all var(--transition-normal);
}
.step-dot.done {
  background: var(--primary);
  box-shadow: 0 2px 6px rgba(255,107,53,0.3);
}
.step-dot.active {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.2);
  animation: pulse 2s ease-in-out infinite;
}
.step-label {
  font-size: 12px;
  color: var(--gray-text);
}
.step-label.done {
  color: var(--primary);
  font-weight: 600;
}
.step-label.active {
  color: var(--primary);
  font-weight: 600;
}

/* 详情段落 */
.detail-section {
  background: var(--white);
  margin: 10px 12px;
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.title-icon {
  font-size: 16px;
}

/* 价格明细行 */
.price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
}
.price-label { color: var(--gray-text); }
.price-value { color: var(--dark-text); }
.price-value.discount { color: var(--success); }
.price-value.highlight { color: var(--primary); font-weight: 600; }
.price-row.total {
  font-weight: 700;
  font-size: 15px;
  border-top: 1px solid var(--gray-border);
  padding-top: 12px;
  margin-top: 6px;
}

/* 信息行 */
.info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-bg);
  font-size: 13px;
}
.info-row:last-child { border-bottom: none; }
.info-label { color: var(--gray-text); }
.info-value { color: var(--dark-text); }
.info-value.copy {
  color: var(--primary);
  cursor: pointer;
  transition: opacity var(--transition-fast);
}
.info-value.copy:hover { opacity: 0.8; }

/* 固定底部栏 */
.fixed-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 375px;
  height: 56px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 12px;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
  z-index: 200;
}

/* 成功图标 */
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 32px;
  background: var(--success);
  color: var(--white);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(76,175,80,0.3);
  animation: bounceIn 0.5s ease-out;
}
.success-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  text-align: center;
}
.success-desc {
  font-size: 13px;
  color: var(--gray-text);
  text-align: center;
  margin-top: 8px;
}

/* 返利高亮卡片 */
.rebate-highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  margin: 10px 12px;
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-primary);
}
.rebate-highlight::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.rebate-highlight .rebate-label {
  font-size: 14px;
  opacity: 0.9;
}
.rebate-highlight .rebate-value {
  font-size: 30px;
  font-weight: 700;
  margin-top: 8px;
}

/* 取消订单弹窗 */
.cancel-popup {
  text-align: center;
  border-radius: var(--radius-lg) !important;
  padding: 30px 20px !important;
  animation: scaleIn 0.3s ease-out !important;
  align-self: center !important;
}

/* 主按钮 */
.btn-primary {
  display: block;
  width: 100%;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 22px;
  text-align: center;
  line-height: 44px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-primary);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.btn-primary:hover { opacity: 0.9; }
.btn-primary:active { transform: scale(0.97); }

/* 支付方式单选按钮 */
.radio-dot {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border: 2px solid #ddd;
  transition: all var(--transition-normal);
  flex-shrink: 0;
}
.radio-dot.checked {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: inset 0 0 0 4px var(--white);
}

/* 物流时间线 */
.logistics-timeline {
  background: var(--white);
  margin: 10px 12px;
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.timeline-item {
  display: flex;
  padding: 10px 0;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 22px;
  bottom: -2px;
  width: 2px;
  background: var(--gray-border);
}
.timeline-item.active::after {
  background: var(--primary);
}
.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: var(--gray-border);
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.timeline-item.active .timeline-dot {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.15);
}
.timeline-content {
  flex: 1;
  min-width: 0;
}
.timeline-time {
  font-size: 11px;
  color: var(--gray-text);
  margin-bottom: 4px;
}
.timeline-text {
  font-size: 13px;
  color: var(--dark-text);
  line-height: 1.5;
}
.timeline-item.active .timeline-text {
  color: var(--primary);
  font-weight: 600;
}

/* Toast提示 */
.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.75);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  z-index: 999;
  animation: bounceIn 0.3s ease-out;
}

/* 配送服务 */
.delivery-card {
  background: var(--white);
  border-radius: var(--radius-md);
  margin: 10px 12px;
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.delivery-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

.delivery-card .delivery-icon {
  font-size: 52px;
  margin-bottom: 10px;
  color: var(--primary);
}

.delivery-card .delivery-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-text);
}

.delivery-card .delivery-desc {
  font-size: 13px;
  color: var(--mid-text);
  margin-top: 6px;
  line-height: 1.5;
}

/* 商品参数 */
.param-list {
  background: var(--white);
  margin: 10px 12px;
  border-radius: var(--radius-md);
  padding: 0 14px;
  box-shadow: var(--shadow-sm);
}

.param-item {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-bg);
  font-size: 13px;
}

.param-item:last-child { border-bottom: none; }
.param-item .param-key { width: 80px; color: var(--gray-text); }
.param-item .param-value { flex: 1; color: var(--dark-text); }

/* 凑单页 */
.group-buy-banner { background: var(--white); padding: 12px; text-align: center; }
.group-buy-progress { background: var(--primary-bg); border-radius: var(--radius-md); margin: 8px 12px; padding: 12px; text-align: center; }
.group-buy-progress .group-buy-text { font-size: 14px; color: var(--primary); font-weight: 600; }
.group-buy-progress .group-buy-bar { height: 8px; background: #eee; border-radius: 4px; margin-top: 8px; overflow: hidden; }
.group-buy-progress .group-buy-bar-fill { height: 100%; background: var(--primary); border-radius: 4px; width: 60%; transition: width var(--transition-normal); }

/* 充抵凭证 */
.certificate-card {
  background: var(--white);
  border-radius: var(--radius-md);
  margin: 10px 12px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.certificate-card .cert-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  padding: 4px 14px;
  border-radius: 0 var(--radius-md) 0 12px;
  font-weight: 500;
}

.certificate-card .cert-title { font-size: 15px; font-weight: 700; color: var(--dark-text); }
.certificate-card .cert-detail { font-size: 13px; color: var(--mid-text); margin-top: 10px; line-height: 1.6; }
.certificate-card .cert-amount { font-size: 22px; font-weight: 700; color: var(--primary); margin-top: 14px; }

/* 提现明细 */
.withdraw-detail-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-bg);
}

.withdraw-detail-item .wd-info { font-size: 13px; color: var(--dark-text); }
.withdraw-detail-item .wd-date { font-size: 12px; color: var(--gray-text); margin-top: 4px; }
.withdraw-detail-item .wd-amount { font-size: 14px; font-weight: 600; color: var(--dark-text); }
.withdraw-detail-item .wd-status { font-size: 12px; color: var(--success); font-weight: 500; }

/* 申请发票表单 */
.invoice-form-section {
  background: var(--white);
  margin: 10px 12px;
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.invoice-type-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.invoice-type-btn {
  flex: 1;
  height: 38px;
  border-radius: 19px;
  text-align: center;
  line-height: 38px;
  font-size: 13px;
  cursor: pointer;
  border: 1px solid var(--gray-border);
  background: var(--white);
  color: var(--dark-text);
  transition: all var(--transition-normal);
}

.invoice-type-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 2px 6px rgba(255,107,53,0.3);
}

/* 累计返现 / 即将入账 */
.rebate-header-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  margin: 12px;
  padding: 28px 16px;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255,107,53,0.35);
  position: relative;
  overflow: hidden;
}

.rebate-header-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.rebate-header-card .rebate-title { font-size: 14px; opacity: 0.9; }
.rebate-header-card .rebate-amount { font-size: 34px; font-weight: 700; margin: 10px 0; }

/* Toast提示 */
.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 999;
  animation: bounceIn 0.4s ease-out;
  pointer-events: none;
}

/* 分割线 */
.divider {
  height: 1px;
  background: var(--gray-border);
  margin: 0 12px;
}

/* 标签/徽章 */
.badge-primary {
  display: inline-block;
  font-size: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 500;
}

.badge-success {
  display: inline-block;
  font-size: 10px;
  color: var(--success);
  background: var(--success-bg);
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 500;
}

.badge-gray {
  display: inline-block;
  font-size: 10px;
  color: var(--gray-text);
  background: var(--gray-bg);
  padding: 2px 6px;
  border-radius: 3px;
}

/* 渐变按钮 */
.btn-primary {
  display: block;
  width: 100%;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 22px;
  text-align: center;
  line-height: 44px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-primary);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.btn-primary:hover { opacity: 0.9; }
.btn-primary:active { transform: scale(0.97); }

.btn-outline {
  display: block;
  width: 100%;
  height: 44px;
  background: var(--white);
  color: var(--primary);
  border-radius: 22px;
  text-align: center;
  line-height: 44px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--primary);
  transition: background var(--transition-fast);
}

.btn-outline:hover { background: var(--primary-bg); }

/* 浮动按钮 */
.fab {
  position: fixed;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 150;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.fab:hover { transform: scale(1.05); }
.fab:active { transform: scale(0.95); }

.fab-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
}

.fab-dark {
  background: rgba(0,0,0,0.6);
  color: var(--white);
}

/* 物流时间线 */
.logistics-timeline {
  background: var(--white);
  border-radius: var(--radius-md);
  margin: 8px 12px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.timeline-item {
  display: flex;
  padding-bottom: 20px;
  position: relative;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: var(--gray-text);
  margin-right: 12px;
  margin-top: 5px;
  position: relative;
  z-index: 1;
  transition: background var(--transition-normal);
}

.timeline-item.active .timeline-dot {
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-bg);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 18px;
  width: 2px;
  height: calc(100% - 14px);
  background: var(--gray-border);
}

.timeline-item:last-child::before { display: none; }

.timeline-content .timeline-time {
  font-size: 12px;
  color: var(--gray-text);
}

.timeline-content .timeline-text {
  font-size: 13px;
  color: var(--dark-text);
  margin-top: 4px;
  line-height: 1.5;
}

.timeline-item.active .timeline-text {
  color: var(--primary);
  font-weight: 500;
}

/* 订单成功页 */
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: var(--success-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 40px;
  color: var(--success);
  animation: bounceIn 0.6s ease-out;
}

.success-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 16px;
  color: var(--dark-text);
}

.success-subtitle {
  font-size: 14px;
  text-align: center;
  color: var(--mid-text);
  margin-top: 8px;
}

.rebate-highlight {
  background: var(--primary-bg);
  border-radius: var(--radius-md);
  margin: 16px 12px;
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.rebate-highlight .rebate-label {
  font-size: 13px;
  color: var(--mid-text);
}

.rebate-highlight .rebate-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 6px;
}

/* 进度条组件 */
.progress-bar {
  height: 8px;
  background: var(--gray-light);
  border-radius: 4px;
  overflow: hidden;
  margin: 8px 0;
}

.progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 4px;
  transition: width var(--transition-slow);
}

/* 开关组件 */
.switch {
  width: 44px;
  height: 24px;
  background: var(--gray-light);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  transition: background var(--transition-fast);
}

.switch.on {
  background: var(--primary);
}

.switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: var(--white);
  transition: left var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.switch.on::after {
  left: 22px;
}

/* 设置列表项 */
.settings-section {
  background: var(--white);
  margin: 8px 12px;
  border-radius: var(--radius-md);
  padding: 0 14px;
  box-shadow: var(--shadow-sm);
}

.settings-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-bg);
  transition: background var(--transition-fast);
  cursor: pointer;
}

.settings-item:last-child { border-bottom: none; }
.settings-item:hover { background: var(--gray-bg); }
.settings-item:active { background: var(--gray-light); }

.settings-item .item-left {
  display: flex;
  align-items: center;
}

.settings-item .item-icon {
  width: 22px;
  height: 22px;
  fill: var(--primary);
  margin-right: 12px;
}

.settings-item .item-label {
  font-size: 14px;
  color: var(--dark-text);
}

.settings-item .item-right {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--gray-text);
}

.settings-item .item-arrow {
  color: var(--light-text);
  margin-left: 4px;
  font-size: 16px;
}

/* 步骤条 */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}

.step .step-circle {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.step.active .step-circle {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.step .step-text {
  font-size: 12px;
  color: var(--gray-text);
  margin-top: 8px;
  transition: color var(--transition-normal);
}

.step.active .step-text {
  color: var(--primary);
  font-weight: 600;
}

.step-line {
  width: 40px;
  height: 2px;
  background: var(--gray-border);
  margin: 0 -4px;
  align-self: center;
  margin-top: -14px;
}

.step-line.active {
  background: var(--primary);
}

/* 评价星星 */
.star-row {
  display: flex;
  align-items: center;
}

.star {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  margin-right: 2px;
}

.star.empty {
  fill: var(--gray-border);
}

/* 单选圆点 */
.radio-dot {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.radio-dot.checked {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 1px 4px rgba(255,107,53,0.3);
}

.radio-dot.checked::after {
  content: '\2713';
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

/* 固定底部按钮栏 */
.fixed-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 375px;
  padding: 12px;
  background: var(--white);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
  z-index: 200;
}
