:root {
  --bg: #f3f3f4;
  --primary: #cfa75f;
  --text-dark: #5d5d5f;
  --text-mid: #7d7d80;
  --card: #ffffff;
  --row: #dfdfe1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text-dark);
}

.page {
  min-height: 100vh;
  max-width: 480px;
  margin: 0 auto;
  padding: 26px 18px 20px;
}

.store-name {
  background: var(--primary);
  color: #fff8e9;
  text-align: center;
  border-radius: 2px;
  font-size: 22px;
  padding: 14px 12px;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
}

.page-title {
  margin: 30px 0 18px;
  text-align: center;
  color: var(--primary);
  font-size: 48px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
}

.divider {
  width: 85%;
  height: 1px;
  margin: 0 auto 34px;
  background: #d5d5d7;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 0 0 12px;
}

.thead {
  margin: 0 0 18px;
  background: var(--primary);
  border-radius: 20px;
  color: #fffef4;
  font-size: 34px;
  font-weight: 700;
  padding: 24px 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.thead span {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
}

.rows {
  display: grid;
  gap: 16px;
  padding: 0 0 6px;
}

.row {
  border-radius: 22px;
  background: var(--row);
  color: var(--text-dark);
  font-size: 42px;
  font-weight: 600;
  min-height: 118px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.row span {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
}

.row span:first-child {
  max-width: 60%;
}

.row span:last-child {
  max-width: 40%;
  text-align: right;
}

.footer {
  margin-top: 36px;
  text-align: center;
  color: #717174;
}

.footer p {
  margin: 4px 0;
  font-size: 30px;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 480px) {
  .store-name {
    font-size: 8vw;
  }

  .page-title {
    font-size: 12vw;
  }

  .thead {
    font-size: 6.7vw;
    border-radius: 16px;
  }

  .row {
    font-size: 8vw;
    min-height: 92px;
    border-radius: 16px;
  }

  .footer p {
    font-size: 5.6vw;
  }
}
