.container {
  min-height: 100vh;
  background-color: #f5f5f5;
}

.header {
  background-color: #FFF;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  text-align: center;
}

.loading {
  text-align: center;
  color: #999;
  padding: 40px;
}

.empty-tip {
  text-align: center;
  color: #999;
  padding: 100px 20px;
}

.order-list {
  padding: 15px;
}

.order-item {
  background-color: #FFF;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.order-no {
  font-size: 12px;
  color: #666;
}

.order-status {
  font-size: 14px;
  font-weight: bold;
}

.order-body {
  padding: 15px 0;
  border-top: 1px dashed #ddd;
  border-bottom: 1px dashed #ddd;
}

.order-items {
  margin-top: 5px;
}

.item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.item-row:last-child {
  border-bottom: none;
}

.item-name {
  font-size: 14px;
  color: #333;
  flex: 1;
}

.item-qty {
  font-size: 12px;
  color: #666;
  margin-right: 15px;
}

.item-price {
  font-size: 14px;
  color: #ff4d4f;
  font-weight: bold;
}

.order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.order-amount {
  font-size: 16px;
  font-weight: bold;
  color: #ff4d4f;
}

.order-time {
  font-size: 12px;
  color: #999;
}
