/* ================= 购物车 ================= */
#page-cart {
  background-color: #f7f8fa;
}

#page-cart .container {
  width: 100%;
}

/* 空状态（图标100x100 + 暂无商品 + 去逛逛，居中） */
#page-cart .empty-tip {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.6rem; /* 160rpx */
}

#page-cart .empty-img {
  width: 2rem; /* 200rpx */
  height: 2rem;
  margin-bottom: 0.32rem;
}

#page-cart .empty-icon {
  width: 100%;
  height: 100%;
}

#page-cart .empty-main {
  font-size: 0.34rem;
  color: #2f2f34;
  font-weight: 500;
  margin-bottom: 0.16rem;
}

#page-cart .empty-sub {
  font-size: 0.28rem;
  color: #999999;
  margin-bottom: 0.48rem;
}

#page-cart .go-btn {
  min-width: 2rem;
  height: 0.72rem; /* 72rpx */
  line-height: 0.72rem;
  padding: 0 0.3rem;
  font-size: 0.28rem;
  color: #2f2f34;
  background: #fff;
  border-radius: 0.08rem; /* 8rpx */
  border: none;
  cursor: pointer;
}

#page-cart .go-btn:active {
  background: #f2f3f5;
}

/* 商品列表 */
#page-cart .list {
  padding: 0.24rem 0.32rem;
}

#page-cart .cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 0.16rem;
  padding: 0.32rem;
  margin-bottom: 0.2rem;
}

#page-cart .item-name {
  font-size: 0.28rem; /* 28rpx */
  color: #111111;
}

#page-cart .item-price {
  font-size: 0.28rem;
  font-weight: 700;
  color: #111111;
}

#page-cart .clear-btn {
  margin-top: 0.4rem;
  width: 100%;
  height: 0.88rem;
  background: #fff;
  color: #e64340;
  border: 0.01rem solid #e64340;
  border-radius: 0.44rem;
  font-size: 0.28rem;
  cursor: pointer;
}

#page-cart .clear-btn:active {
  background: #f2f3f5;
}
