/* 主样式 */

/* 页面 */
.page {
  min-height: 100vh;
  padding-bottom: 60px;
}

/* 时间窗口 */
.time-window {
  margin: 10px;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}

.time-window.open {
  background: linear-gradient(135deg, #e6f7ff 0%, #bae7ff 100%);
}

.time-window.closed {
  background: #f5f5f5;
}

.time-window-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.time-window-icon {
  font-size: 20px;
  margin-right: 8px;
}

.time-window-title {
  font-size: 16px;
  font-weight: bold;
}

.time-window-desc {
  font-size: 13px;
  color: #666;
}

/* 关闭提示 */
.closed-notice {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
}

.closed-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.closed-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.closed-desc {
  font-size: 14px;
  color: #999;
}

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

.product-card {
  display: flex;
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.product-image {
  width: 90px;
  height: 90px;
  border-radius: 6px;
  background: #f5f5f5;
  object-fit: cover;
}

.product-info {
  flex: 1;
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-name {
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  display: flex;
  align-items: baseline;
}

.price-current {
  font-size: 18px;
  font-weight: bold;
  color: #ff4d4f;
}

.price-original {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  margin-left: 8px;
}

.product-stock {
  font-size: 12px;
  color: #52c41a;
}

.product-stock.sold-out {
  color: #999;
}

/* 加载状态 */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #999;
}

/* 底部导航 */
.tab-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  background: #fff;
  border-top: 1px solid #eee;
  z-index: 100;
}

.tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  color: #999;
}

.tab-item.active {
  color: #1890ff;
}

.tab-icon {
  font-size: 20px;
  margin-bottom: 2px;
}

.tab-text {
  font-size: 12px;
}

/* 空状态 */
.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.empty-text {
  font-size: 14px;
  color: #999;
}