* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font: normal 14px/1.5 Tahoma, "Lucida Grande", Verdana, "Microsoft Yahei", STXihei, sans-serif;
  color: #222;
  background: #f2f2f2;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  width: 100%;
  max-width: 750px;
  min-height: 100vh;
  margin: 0 auto;
  background: #f5f5f5;
}

.notice {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  margin: 0 8px 10px;
  padding: 0 12px;
  background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
  border: 1px solid rgba(255, 111, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.notice img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.notice-track {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.notice-track span {
  display: inline-block;
  padding-left: 100%;
  color: #f05a1a;
  font-size: 17px;
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9), 0 0 8px rgba(255, 142, 44, 0.18);
  animation: notice-scroll 28s linear infinite;
}

@keyframes notice-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.hero-slider {
  --hero-image: none;
  --glass-r: 255;
  --glass-g: 128;
  --glass-b: 48;
  --glass-r2: 64;
  --glass-g2: 156;
  --glass-b2: 255;
  position: relative;
  margin: 10px 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 16px;
  background:
    radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.12) 27%, rgba(255, 255, 255, 0) 48%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.12) 36%, rgba(255, 255, 255, 0.03) 100%),
    linear-gradient(
      135deg,
      rgba(var(--glass-r), var(--glass-g), var(--glass-b), 0.96) 0%,
      rgba(var(--glass-r), var(--glass-g), var(--glass-b), 0.78) 46%,
      rgba(var(--glass-r2), var(--glass-g2), var(--glass-b2), 0.76) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -26px 48px rgba(0, 0, 0, 0.1),
    0 12px 28px rgba(var(--glass-r), var(--glass-g), var(--glass-b), 0.28);
  isolation: isolate;
  transition: background 0.65s ease, box-shadow 0.65s ease;
}

.hero-slider::before,
.hero-slider::after {
  position: absolute;
  inset: -45%;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.hero-slider::before {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0.34) 35%, rgba(255, 255, 255, 0.04) 53%),
    linear-gradient(
      245deg,
      rgba(var(--glass-r2), var(--glass-g2), var(--glass-b2), 0.54),
      rgba(var(--glass-r), var(--glass-g), var(--glass-b), 0.48),
      rgba(var(--glass-r2), var(--glass-g2), var(--glass-b2), 0.54)
    ),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: blur(24px) saturate(1.45) contrast(1.08);
  opacity: 0.82;
  animation: glass-flow 9s ease-in-out infinite alternate;
  transition: background 0.65s ease;
}

.hero-slider::after {
  background:
    repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.11) 0 1px, rgba(255, 255, 255, 0) 1px 13px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 45%);
  mix-blend-mode: screen;
  opacity: 0.52;
  transform: translate3d(-8%, -3%, 0) rotate(2deg);
  animation: glass-shine 6s ease-in-out infinite alternate;
}

@keyframes glass-flow {
  from {
    transform: translate3d(-5%, -2%, 0) rotate(0deg) scale(1);
  }

  to {
    transform: translate3d(6%, 3%, 0) rotate(6deg) scale(1.08);
  }
}

@keyframes glass-shine {
  from {
    transform: translate3d(-10%, -5%, 0) rotate(1deg);
  }

  to {
    transform: translate3d(7%, 4%, 0) rotate(5deg);
  }
}

.slides {
  position: relative;
  height: 155px;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px;
  color: #fff;
  opacity: 0;
  transform: translateX(18px);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.slide-copy {
  min-width: 0;
}

.slide-copy strong {
  display: block;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
}

.slide-copy em {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-style: normal;
}

.slide img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 12px 28px rgba(68, 31, 0, 0.2);
  flex: 0 0 auto;
}

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.slider-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.slider-dots button.active {
  width: 19px;
  background: #fff;
}

.brand-list {
  width: calc(100% - 16px);
  margin: 0 auto 10px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.brand-list h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 16px 12px;
  color: #fff;
  text-align: center;
  font-size: 27px;
  line-height: 1.3;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 34%),
    linear-gradient(160deg, #ff9600 16%, #ff5a00 58%, #f04420 100%);
  text-shadow: 0 2px 8px rgba(145, 43, 0, 0.28);
}

.brand-list h1 span {
  display: inline-block;
  padding: 0 9px 2px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 10px;
  color: #fff6c8;
  background: rgba(255, 255, 255, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 4px 12px rgba(138, 39, 0, 0.2);
  font-weight: 900;
  text-shadow: 0 2px 6px rgba(108, 32, 0, 0.32);
}

.brand-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 104px;
  padding: 14px 104px 14px 18px;
  background: #fff;
  border-top: 1px solid #eee;
}

.brand-card:active {
  background: #fff8f3;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 7px;
  flex: 0 0 auto;
}

.brand-info {
  display: block;
  min-width: 0;
  padding-left: 12px;
}

.brand-info strong {
  display: block;
  overflow: hidden;
  color: #f16522;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-info > span:not(.brand-meta) {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  color: #111;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.brand-meta em {
  color: #d93222;
  font-style: normal;
}

.brand-meta i {
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 5px;
  border: 1px solid #d93222;
  border-radius: 7px;
  color: #d93222;
  font-size: 10px;
  font-style: normal;
  line-height: 18px;
}

.brand-action {
  position: absolute;
  right: 18px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 28px;
  overflow: hidden;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ff8a1f, #ff4e00 58%, #ff2f1f);
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(255, 85, 0, 0.28);
  animation: action-pulse 1.8s ease-in-out infinite;
}

.brand-action::before {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -70%;
  width: 44%;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
  transform: rotate(20deg);
  animation: action-shine 2.4s ease-in-out infinite;
}

@keyframes action-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 6px 14px rgba(255, 85, 0, 0.26);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(255, 85, 0, 0.42);
  }
}

@keyframes action-shine {
  0% {
    left: -75%;
  }

  42%,
  100% {
    left: 128%;
  }
}

.bottom-gif {
  width: calc(100% - 16px);
  margin: 0 auto 24px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(255, 85, 0, 0.08);
}

.bottom-gif img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 420px) {
  .notice {
    height: 44px;
    padding: 0 10px;
  }

  .notice-track span {
    font-size: 16px;
    animation-duration: 30s;
  }

  .hero-slider {
    margin: 10px 8px;
  }

  .slides {
    height: 146px;
  }

  .slide {
    gap: 12px;
    padding: 19px 16px 25px;
  }

  .slide-copy strong {
    font-size: 25px;
  }

  .slide-copy em {
    font-size: 13px;
  }

  .slide img {
    width: 78px;
    height: 78px;
    border-radius: 15px;
  }

  .brand-list h1 {
    gap: 6px;
    padding: 13px 10px;
    font-size: 19px;
  }

  .brand-list h1 span {
    padding: 0 6px 1px;
    border-radius: 8px;
  }

  .brand-card {
    min-height: 102px;
    padding: 14px 94px 14px 12px;
  }

  .brand-logo {
    width: 70px;
    height: 70px;
  }

  .brand-info {
    padding-left: 10px;
  }

  .brand-info strong {
    font-size: 20px;
  }

  .brand-action {
    right: 12px;
    width: 76px;
    height: 27px;
    font-size: 13px;
  }
}
