/* ===== 商品中心 ===== */
.product-grid .product-card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.product-grid .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.product-grid .product-thumb {
  height: 200px;
  object-fit: cover;
  background: #fafafa;
}
.product-grid .product-title {
  font-size: 15px;
  font-weight: 600;
}
.product-grid .product-desc {
  color: #888;
  font-size: 12px;
  line-height: 1.5;
}
.product-grid .product-price {
  font-size: 18px;
  font-weight: 700;
  color: #f5222d;
}
.product-grid .product-original {
  font-size: 13px;
  color: #bbb;
  text-decoration: line-through;
  margin-left: 6px;
}
.pagination-bar {
  text-align: center;
  margin-top: 28px;
}

/* ===== 购物车 ===== */
.cart-page .cart-card {
  border-radius: 12px;
  margin-bottom: 16px;
  transition: all 0.2s;
}
.cart-page .cart-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.cart-page .cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-page .cart-product {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-page .cart-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}
.cart-page .cart-total {
  font-size: 20px;
  font-weight: 700;
  color: #f5222d;
  text-align: right;
}

/* ===== 客户管理 ===== */
.user-page .user-table .user-avatar {
  border: 2px solid #f0f0f0;
}
.user-page .user-table .user-name {
  font-weight: 600;
  font-size: 14px;
}
.user-page .user-table .user-username {
  color: #999;
  font-size: 12px;
}

/* ===== 关于商城 ===== */
.shop-about {
  padding: 20px 40px;
}
.shop-about .about-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  border-radius: 12px;
}
.shop-about .info-section {
  text-align: left;
  margin-top: 20px;
}

/* ===== 每日一言页 ===== */
.quote-page .quote-hero {
  text-align: center;
  padding: 32px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1677ff 0%, #722ed1 100%);
  color: #fff;
  margin-bottom: 24px;
}
.quote-page .quote-hero .quote-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.quote-page .quote-hero .quote-text {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 12px;
}
.quote-page .quote-hero .quote-author {
  font-size: 14px;
  opacity: 0.85;
}
.quote-page .quote-list .quote-item {
  border-radius: 10px;
  transition: all 0.3s;
}
.quote-page .quote-list .quote-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* ===== 菜谱中心页 ===== */
.recipe-page .recipe-card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.recipe-page .recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.recipe-page .recipe-thumb {
  height: 180px;
  object-fit: cover;
  background: #fafafa;
}
.recipe-page .recipe-name {
  font-size: 15px;
  font-weight: 600;
}
.recipe-page .recipe-desc {
  color: #888;
  font-size: 12px;
  line-height: 1.5;
}
.recipe-page .ingredient-tag {
  margin-bottom: 4px;
}
.pagination-bar {
  text-align: center;
  margin-top: 28px;
}

/* ===== 商城资讯页 ===== */
.shop-post-page .post-stat {
  border-radius: 12px;
}
.shop-post-page .post-item {
  border-radius: 10px;
  transition: all 0.3s;
}
.shop-post-page .post-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.shop-post-page .post-title {
  font-size: 16px;
  font-weight: 600;
}
.shop-post-page .post-body {
  color: #666;
  line-height: 1.8;
}
.shop-post-page .comment-item {
  padding: 8px 0;
  border-bottom: 1px dashed #f0f0f0;
}
.shop-post-page .comment-item:last-child {
  border-bottom: none;
}
.pagination-bar {
  text-align: center;
  margin-top: 28px;
}

/* ===== 商城待办页 ===== */
.shop-todo-page .todo-progress-card {
  text-align: center;
}
.shop-todo-page .todo-progress-label {
  color: #999;
  font-size: 14px;
  margin-bottom: 4px;
}
.shop-todo-page .todo-title {
  font-weight: 500;
}
.shop-todo-page .todo-done {
  text-decoration: line-through;
  color: #bbb;
}
.shop-todo-page .todo-pending {
  color: #333;
}

/* ===== 评论广场页 ===== */
.comment-square .comment-card {
  border-radius: 10px;
  transition: all 0.3s;
}
.comment-square .comment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.comment-square .comment-body {
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}
.pagination-bar {
  text-align: center;
  margin-top: 28px;
}

