:root {
  --red: #d5001c;
  --bg: #f6f7f9;
  --text: #111827;
  --muted: #6b7280;
  --card: #ffffff;
  --line: rgba(17, 24, 39, 0.08);
  --shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    "Noto Sans", "Liberation Sans", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.app {
  min-height: 100%;
  padding-bottom: 64px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(env(safe-area-inset-top), 10px) 14px 10px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  backdrop-filter: blur(10px);
}

.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand__logo {
  height: 22px;
  width: auto;
  display: block;
}

.topbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.topbar__icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(213, 0, 28, 0.06);
  border: 1px solid rgba(213, 0, 28, 0.18);
  color: var(--red);
}

.topbar__icon--plain {
  background: transparent;
  border: 0;
  width: 28px;
  height: 28px;
}

.main {
  padding: 12px 12px 18px;
}

.hero {
  background: transparent;
}

.hero__slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.slide {
  display: none;
  min-height: 150px;
  padding: 14px;
  color: #fff;
}

.slide.is-active {
  display: block;
}

.slide__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(1000px 380px at 10% 20%, rgba(255, 255, 255, 0.25),
      rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg, rgba(213, 0, 28, 1) 0%, rgba(248, 113, 113, 1) 55%,
      rgba(251, 191, 36, 0.95) 120%);
}

.slide__bg.alt {
  background: radial-gradient(900px 360px at 20% 10%, rgba(255, 255, 255, 0.22),
      rgba(255, 255, 255, 0) 50%),
    linear-gradient(135deg, rgba(2, 132, 199, 1) 0%, rgba(59, 130, 246, 1) 55%,
      rgba(168, 85, 247, 0.98) 115%);
}

.slide__content {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
}

.slide__title {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slide__sub {
  display: none;
  margin-top: 4px;
  font-size: 11px;
  opacity: 0.85;
}

.dots {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  gap: 6px;
}

.section__hd--accent {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.section__title-sub {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.btn-more {
  font-size: 12px;
  color: #fff;
  background: var(--red);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 750;
}

.section__more.btn-more {
  color: #fff;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
}

.dot.is-active {
  width: 18px;
  background: rgba(255, 255, 255, 0.95);
}

.panel.home--shortCutPanel--EwXUEzP {
  margin-top: 12px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06);
  padding: 12px 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 8px;
}

.home--shortCut--w_2UU2Z {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  min-height: 74px;
  padding: 6px 4px;
  border-radius: 12px;
  color: #111827;
}

.home--shortCut--w_2UU2Z:active {
  transform: scale(0.98);
  background: rgba(17, 24, 39, 0.03);
}

.home--shortCutIcon--gcURg3g {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
}

.home--shortCutText--ts0KXAN {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.quick {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.quick__item {
  background: var(--card);
  border-radius: 14px;
  padding: 10px 8px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06);
  border: 1px solid var(--line);
}

.quick__icon {
  width: 34px;
  height: 34px;
  margin: 0 auto;
  border-radius: 12px;
  background: rgba(213, 0, 28, 0.08);
  border: 1px solid rgba(213, 0, 28, 0.14);
}

.quick__text {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #111827;
  font-weight: 600;
}

.section {
  margin-top: 14px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06);
  padding: 12px;
}

.section__hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section__title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.section__more {
  font-size: 12px;
  color: var(--muted);
}

.grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.grid__item {
  text-align: center;
  padding: 10px 8px;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.02);
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.grid__icon {
  width: 34px;
  height: 34px;
  margin: 0 auto;
  border-radius: 12px;
  background: rgba(17, 24, 39, 0.06);
}

.grid__name {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 650;
}

.cards {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.card {
  display: block;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
  padding: 12px;
}

.card__hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card__title {
  font-size: 15px;
  font-weight: 850;
}

.card__tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(213, 0, 28, 0.1);
  color: var(--red);
  border: 1px solid rgba(213, 0, 28, 0.18);
  font-weight: 700;
}

.card__bd {
  margin-top: 8px;
}

.card__desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.card__cta {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 750;
  color: var(--red);
}

.notice {
  margin-top: 14px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.notice__label {
  font-size: 12px;
  font-weight: 800;
  color: var(--red);
  padding: 4px 8px;
  border-radius: 10px;
  background: rgba(213, 0, 28, 0.08);
  border: 1px solid rgba(213, 0, 28, 0.14);
}

.notice__track {
  overflow: hidden;
  position: relative;
  flex: 1;
  height: 18px;
}

.notice__item {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  color: #111827;
}

.media {
  display: block;
  margin-top: 10px;
}

.media__img {
  width: 100%;
  height: 96px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
}

.list {
  margin-top: 8px;
  display: grid;
  gap: 10px;
}

.list__item {
  position: relative;
  padding-left: 12px;
  font-size: 13px;
  line-height: 1.4;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--red);
}


.section.section--product {
  background-image: url("./images/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-color: rgba(17, 24, 39, 0.06);
}

.section.section--product .section__title,
.section.section--product .section__title-sub {
  color: #fff;
}

.section.section--product .section__hd--accent {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.product {
  margin-top: 10px;
}

.product__inner {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
}

.product__col {
  display: grid;
  gap: 10px;
}

.product__item {
  position: relative;
  padding-left: 12px;
  font-size: 13px;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #f59e0b;
}


.Footer--footer--CldoPxu {
  margin-top: 14px;
  padding: 14px 8px 20px;
}

.Footer--wrapper--F5SFNL0 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 10px;
}

.Footer--linkItemWrapper--tMR9aHB {
  display: block;
}

.Footer--linkItem--Ko_d3Cy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 6px 4px;
  border-radius: 12px;
  color: #111827;
}

.Footer--linkItem--Ko_d3Cy:active {
  background: rgba(17, 24, 39, 0.03);
  transform: scale(0.98);
}

.Footer--iconImg--local {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.Footer--text--s1lZiFA {
  font-size: 12px;
  line-height: 1.2;
  color: #374151;
  text-align: center;
  white-space: nowrap;
}

.Footer--copyRight--ZkMNRJj {
  margin-top: 16px;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.Footer--copyRight--ZkMNRJj .Footer--text--s1lZiFA {
  color: #6b7280;
  font-size: 12px;
}



.footer {
  margin-top: 18px;
  padding: 10px 0 0;
  text-align: center;
  color: var(--muted);
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 12px;
  flex-wrap: wrap;
}

.footer__links--2 {
  margin-top: 10px;
}

.footer__copy {
  margin-top: 8px;
  font-size: 12px;
}

.tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  height: 56px;
  padding: 6px 10px max(env(safe-area-inset-bottom), 6px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(17, 24, 39, 0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tabbar__item {
  display: grid;
  place-items: center;
  gap: 3px;
  color: #374151;
  font-size: 11px;
  font-weight: 650;
}

.tabbar__item.is-active {
  color: var(--red);
}

.tabbar__icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}

.tabbar__img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.i {
  display: inline-block;
  position: relative;
}

.i::before,
.i::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
}

.i-search::before {
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 999px;
  transform: translate(-2px, -2px);
}

.i-search::after {
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: translate(7px, 7px) rotate(45deg);
  border-radius: 2px;
}

.i-menu::before {
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: translateY(-5px);
}

.i-menu::after {
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  box-shadow: 0 5px 0 0 currentColor;
}

.i-grid::before {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 2px solid currentColor;
}

.i-grid::after {
  width: 2px;
  height: 14px;
  background: currentColor;
  border-radius: 2px;
  box-shadow: 6px 0 0 0 currentColor;
  transform: translateX(-2px);
  opacity: 0.8;
}

.i-card::before,
.i-wallet::before,
.i-coin::before,
.i-shield::before,
.i-location::before,
.i-qrcode::before,
.i-bag::before,
.i-transfer::before,
.i-bill::before,
.i-star::before,
.i-customer::before,
.i-safe::before,
.i-more::before,
.i-home::before,
.i-app::before,
.i-gift::before,
.i-user::before {
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background: rgba(17, 24, 39, 0.22);
}

.quick__icon.i-card::before,
.quick__icon.i-wallet::before,
.quick__icon.i-coin::before,
.quick__icon.i-shield::before,
.quick__icon.i-location::before {
  background: rgba(213, 0, 28, 0.55);
}

@media (max-width: 360px) {
  .quick {
    gap: 8px;
  }
  .quick__item {
    padding: 9px 6px;
  }
  .grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}
