:root {
  --brand: #ff9800;
  --brand-deep: #e67300;
  --text-main: #111111;
  --text-sub: #666666;
  --text-muted: #999999;
  --bg-page: #f2f2f2;
  --bg-soft: #fffaf2;
  --bg-card: #ffffff;
  --line: #ebebeb;
  --shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  --radius: 8px;
  --content-width: 1200px;
  --mobile-max: 640px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text-main);
  background: linear-gradient(180deg, #fff3e2 0, var(--bg-page) 86%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.page { min-height: 100vh; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: var(--shadow);
}

.topbar-inner,
.section-inner,
.notice-inner,
.footer-inner {
  width: min(var(--content-width), calc(100vw - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 52px;
  font-size: 14px;
  color: #3d3d3d;
}

.header-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.header-actions a:hover,
.pc-layout-header a:hover,
.seller-center:hover,
.notice-link:hover,
.more-link:hover,
.game-card:hover .game-name,
.small-link:hover {
  color: var(--brand);
}

.pc-layout-header .header-left,
.pc-layout-header .header-right,
.top-navigation {
  display: flex;
  align-items: center;
}

.pc-layout-header .header-left {
  gap: 24px;
  min-width: 0;
}

.top-navigation {
  gap: 24px;
}

.pc-layout-header .header-right {
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-layout-header .header-right-item {
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}

.pc-layout-header .nav-active {
  color: var(--brand);
}

.seller-center {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.seller-center > img {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.seller-center:hover > img {
  transform: rotate(180deg);
}

.seller-center-list {
  position: absolute;
  left: -15px;
  bottom: 0;
  z-index: 30;
  width: 152px;
  padding-top: 28px;
  transform: translateY(102%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
}

.seller-center:hover .seller-center-list {
  opacity: 1;
  visibility: visible;
}

.seller-center-ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}

.seller-center-item {
  display: flex;
  align-items: center;
  height: 40px;
  padding-left: 16px;
  color: var(--text-main);
  font-size: 14px;
}

.seller-center-item:not(:last-child) {
  border-bottom: 1px solid #e8e8e8;
}

.main {
  padding-bottom: 48px;
}

.search-section {
  display: flex;
  align-items: flex-start;
  padding: 16px 0 0;
}

.logo-wrap {
  flex: 0 0 auto;
  margin-right: 38px;
}

.logo {
  width: 168px;
  height: 60px;
  object-fit: contain;
  cursor: pointer;
}

.search-box {
  flex: 1;
  width: 640px;
  margin-left: 25px;
  position: relative;
  z-index: 1000;
}

.search-row {
  display: flex;
  align-items: stretch;
  height: 40px;
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--brand);
  border-radius: 20px / 50%;
}

.game-select {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  border-right: 1px solid #f0f0f0;
  color: var(--text-main);
  cursor: pointer;
}

.game-select img {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}

.search-input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 16px;
  min-width: 0;
  color: var(--text-main);
}

.search-input::placeholder { color: #bbb; }

.search-btn {
  width: 120px;
  border: 0;
  background: linear-gradient(180deg, #ffb100 0%, var(--brand) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.hot-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 12px;
}

.banner-section {
  display: flex;
  gap: 16px;
  height: 308px;
  padding-bottom: 16px;
  margin-top: 16px;
}

.category-panel {
  flex: 0 0 265px;
  height: 100%;
  position: relative;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #fff;
  border-radius: 6px;
  box-shadow: inset 0 0 8px 1px #fff;
}

.category-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.category-item {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.category-item:hover,
.category-item.active {
  background: #fff;
}

.category-icon {
  width: 36px;
  height: 36px;
  margin-left: 2px;
  border-radius: 8px;
  object-fit: cover;
}

.category-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 14px;
}

.category-title {
  font-size: 14px;
  font-weight: 600;
}

.category-subtitle {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.4;
}

.select-game-panel {
  position: absolute;
  top: -1px;
  right: 0;
  transform: translateX(100%);
  z-index: 100;
  width: 240px;
  padding-left: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.category-panel:hover .select-game-panel {
  opacity: 1;
  visibility: visible;
}

.select-game-panel-inner {
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.select-game-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.select-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-sub);
}

.select-game-item img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.banner-main {
  flex: 1;
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #fff;
}

.banner-carousel {
  position: absolute;
  inset: 0;
}

.banner-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  cursor: pointer;
  background: #1f1f1f;
}

.banner-slide.is-active {
  opacity: 1;
}

.banner-bg {
  position: absolute;
  inset: -18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(14px);
  transform: scale(1.04);
  opacity: 0.62;
}

.banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.58), rgba(0,0,0,0.22)),
    radial-gradient(circle at 70% 45%, rgba(255,153,0,0.14), transparent 38%);
}

.banner-fg {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.18));
}

.banner-caption {
  position: absolute;
  left: 28px;
  bottom: 24px;
  color: #fff;
  max-width: 70%;
}

.banner-caption.is-hidden {
  display: none;
}

.banner-title {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.banner-subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.92;
}

.banner-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 20px;
  height: 32px;
  margin-top: -16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.banner-main:hover .banner-nav {
  opacity: 1;
  visibility: visible;
}

.banner-nav img {
  width: 20px;
  height: 20px;
}

.banner-nav.left {
  left: 0;
  border-radius: 0 4px 4px 0;
}

.banner-nav.right {
  right: 0;
  border-radius: 4px 0 0 4px;
}

.banner-dots {
  position: absolute;
  right: 16px;
  bottom: 12px;
  display: flex;
  gap: 4px;
  z-index: 3;
}

.banner-dot {
  width: 12px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 5.5px;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.banner-dot.is-active {
  background: var(--brand);
}

.user-panel {
  flex: 0 0 265px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #fff;
  border-radius: 6px;
  box-shadow: inset 0 0 8px 1px #fff;
  padding: 18px 16px 16px;
}

.account-info {
  display: flex;
  align-items: center;
}

.avatar {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius: 50%;
  object-fit: cover;
}

.nickname {
  font-size: 16px;
  color: var(--text-sub);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 120px;
}

.nickname strong {
  color: var(--text-main);
  cursor: pointer;
}

.quick-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  width: 100%;
}

.quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  cursor: pointer;
}

.quick-action img {
  width: 24px;
  height: 24px;
}

.seller-btn {
  margin-top: 32px;
  width: 184px;
  height: 40px;
  border: 0;
  border-radius: 20px / 50%;
  background: linear-gradient(270deg, #fc0 0%, #f90 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.common-panel {
  margin-top: 0;
  margin-bottom: 16px;
}

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

.panel-title {
  font-size: 24px;
  font-weight: 700;
}

.more-link {
  color: var(--brand);
  font-size: 14px;
}

.sale-section {
  display: flex;
  gap: 16px;
  height: 280px;
  margin-bottom: 16px;
}

.hot-sale {
  flex: 0 0 860px;
  height: 100%;
}

.game-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.game-tab {
  flex: 0 0 auto;
  width: 120px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #fff;
  text-align: center;
  color: var(--text-sub);
  cursor: pointer;
}

.game-tab.active {
  background: rgba(255, 153, 0, 0.12);
  color: var(--brand);
  font-weight: 700;
}

.game-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.game-card {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.game-sort {
  width: 24px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-sub);
}

.game-icon {
  width: 48px;
  height: 48px;
  margin: 0 10px;
  border-radius: 8px;
  object-fit: cover;
  overflow: hidden;
}

.game-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

.game-name {
  font-size: 14px;
  width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s;
}

.game-tag {
  font-size: 12px;
  color: var(--text-muted);
}

.real-time {
  flex: 1;
  max-width: 320px;
  padding: 10px 12px 12px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}

.real-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 206px;
  overflow: hidden;
}

.real-item {
  background: #fffaf2;
  border-radius: 6px;
  padding: 8px 12px;
  height: 60px;
}

.real-top,
.real-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.real-top {
  font-size: 12px;
  color: var(--text-main);
}

.real-top span:last-child {
  color: var(--text-muted);
}

.real-bottom {
  margin-top: 4px;
  font-size: 14px;
}

.real-bottom .game-mini {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  margin-right: 8px;
}

.real-bottom .left {
  display: flex;
  align-items: center;
  min-width: 0;
}

.real-bottom .left span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 8px;
  box-shadow: inset 0 0 8px 1px #fff;
  background: rgba(255, 255, 255, 0.5);
}

.service {
  position: relative;
  min-height: 130px;
  padding: 20px 16px 20px 24px;
  overflow: hidden;
  transition: all 0.3s;
}

.service:hover {
  background: #fff;
  box-shadow: 0 4px 10px rgba(255, 153, 0, 0.35);
}

.service-copy {
  position: relative;
  z-index: 2;
  max-width: calc(100% - 92px);
}

.service .big-number {
  position: absolute;
  right: 12px;
  top: 0;
  font-size: 100px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, rgba(255, 153, 0, 0.3), rgba(255, 153, 0, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 1;
}

.service-right-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 130px;
  height: 130px;
  object-fit: contain;
  transition: opacity 0.3s, transform 0.3s;
}

.service-hover-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 130px;
  height: 130px;
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.service:hover .service-right-icon,
.service:hover .big-number {
  opacity: 0;
  transform: translateX(18px);
}

.service:hover .service-hover-icon {
  opacity: 1;
  visibility: visible;
}

.service-dot,
.service-keyword {
  opacity: 0;
  transition: opacity 0.3s;
}

.service-keyword {
  color: var(--brand);
}

.service:hover .service-dot,
.service:hover .service-keyword {
  opacity: 1;
}

.service h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.service p {
  margin: 0;
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.6;
}

.notice-bar {
  height: 38px;
  background: #fffaf2;
  margin-top: 16px;
}

.notice-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  font-size: 14px;
  color: var(--text-sub);
}

.section {
  margin-top: 16px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
}

.partner-grid,
.brand-grid {
  display: grid;
  gap: 16px 4px;
  grid-template-columns: repeat(8, 1fr);
  margin-top: 20px;
}

.partner-item,
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.partner-item {
  height: 52px;
}

.brand-item {
  height: 78px;
  position: relative;
}

.partner-item:hover,
.brand-item:hover {
  box-shadow: 0 2px 10px rgba(255, 153, 0, 0.3);
}

.partner-item img {
  width: 96px;
  max-height: 32px;
  object-fit: contain;
}

.brand-item img {
  width: 102px;
  max-height: 36px;
  object-fit: contain;
}

.brand-qr {
  position: absolute;
  top: -125%;
  left: 50%;
  width: 92px;
  height: 92px;
  padding: 6px;
  object-fit: contain;
  transform: translateX(-50%);
  opacity: 0;
  border-radius: 8px;
  background: #fff;
  transition: opacity 0.3s ease;
}

.brand-item:hover .brand-qr { opacity: 1; }

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.strategy-item {
  display: flex;
  gap: 16px;
  align-items: center;
  height: 78px;
  min-width: 0;
}

.strategy-thumb {
  flex: 0 0 138px;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.strategy-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strategy-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.strategy-content {
  flex: 1;
  min-width: 0;
}

.strategy-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  gap: 12px;
  min-width: 0;
}

.strategy-head .more-link {
  flex: 0 0 auto;
}

.strategy-title,
.strategy-text,
.strategy-bottom {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.strategy-text,
.strategy-bottom {
  margin-top: 6px;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.4;
}

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

.goods-list-header {
  display: flex;
  align-items: center;
}

.goods-list-header h3 {
  display: flex;
  align-items: center;
  min-width: 120px;
  margin: 0;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 24px;
  font-weight: 400;
}

.goods-list-header h3.selected {
  position: relative;
  z-index: 1;
  color: var(--text-main);
  font-weight: 700;
}

.goods-list-header h3.selected::after {
  content: "";
  position: relative;
  z-index: -1;
  display: inline-block;
  width: 24px;
  height: 24px;
  transform: translateX(-50%);
  background-image: url("https://img.alicdn.com/imgextra/i4/O1CN01IFv7LW1QFJol0sksD_!!6000000001946-55-tps-24-24.svg");
  background-size: 100% 100%;
}

.goods-tabs {
  display: inline-flex;
  max-width: 100%;
  height: 36px;
  margin: 0 0 20px;
  padding: 2px;
  border-radius: 18px / 50%;
  background: var(--bg-page);
  overflow: hidden;
}

.goods-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 0 12px;
  border-radius: 16px / 50%;
  color: var(--text-muted);
  font-size: 14px;
}

.goods-tab.active {
  color: var(--brand);
  background: #fff;
  font-weight: 700;
}

.goods-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  min-height: 268px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.goods-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.goods-cover {
  position: relative;
  height: 128px;
  border-radius: 6px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 153, 0, 0.08), transparent 42%),
    linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.goods-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.goods-cover-mask {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(0,0,0,0.3);
}

.goods-card:hover .goods-cover-mask {
  opacity: 1;
}

.goods-body {
  display: flex;
  flex-direction: column;
  min-height: 140px;
  padding: 12px 0 0;
}

.goods-title {
  font-size: 14px;
  line-height: 1.5;
  min-height: 42px;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.goods-meta {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 12px;
}

.goods-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}

.goods-tag {
  padding: 2px 5px;
  border-radius: 3px;
  color: var(--brand-deep);
  background: #fff2df;
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
}

.goods-price {
  color: var(--brand);
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

.footer {
  background: #fff;
  color: #616366;
  font-size: 12px;
}

.pc-layout-footer {
  display: flex;
  align-items: flex-start;
  height: 205px;
  padding-top: 48px;
  box-sizing: border-box;
}

.footer-logo {
  width: 168px;
  height: 60px;
  object-fit: contain;
  cursor: pointer;
}

.pc-layout-footer .footer-right {
  margin-left: 50px;
  min-width: 0;
}

.footer-links,
.footer-copyrights,
.footer-credentials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links {
  gap: 24px;
  margin-top: 10px;
  color: var(--text-main);
}

.footer-links .link-item:hover {
  color: var(--brand);
}

.footer-copyrights {
  gap: 24px;
  margin-top: 16px;
}

.footer-credentials {
  margin-top: 16px;
  line-height: 1.4;
}

.credential-item {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}

.credential-item img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}

.credential-item span {
  margin: 0 8px;
}

.pc-layout-right-float {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 100000;
  width: 80px;
  padding: 16px 10px 0;
  background: #fff;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.05);
}

.pc-layout-right-float .float-item {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
  color: #222426;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.3s;
}

.pc-layout-right-float .float-item:hover {
  color: var(--brand);
}

.pc-layout-right-float .float-item > img {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
  object-fit: contain;
}

.down-app-code-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  padding-right: 10px;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
}

.float-item.has-code:hover .down-app-code-wrapper {
  opacity: 1;
  visibility: visible;
}

.down-app-code-list {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: #fff;
  border-radius: 8px;
  box-shadow: -2px 2px 4px rgba(0,0,0,0.05);
}

.down-app-code-item {
  display: flex;
  flex-direction: column;
  padding: 0 4px;
  text-align: center;
}

.down-app-code-item > span:last-child {
  margin-top: 4px;
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
}

.fake-code {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  padding: 8px;
  border: 1px solid #f0f0f0;
  background:
    linear-gradient(90deg, #111 8px, transparent 8px) 0 0 / 16px 16px,
    linear-gradient(#111 8px, transparent 8px) 0 0 / 16px 16px,
    #fff;
}

.fake-code img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}

.mobile-only { display: none; }

.member-pc-page {
  min-height: 100vh;
  background: #f7f8fb;
  overflow: hidden;
}

.member-pc-panel {
  position: relative;
  top: 150px;
  display: flex;
  width: 1000px;
  height: 500px;
  margin: 0 auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 48px rgba(0, 56, 156, 0.05);
  overflow: hidden;
}

.member-pc-bg {
  width: 600px;
  height: 500px;
  object-fit: cover;
}

.member-pc-login {
  position: relative;
  width: 400px;
  height: 500px;
  padding: 17px 40px 0;
  background: #fff;
}

.member-pc-logo {
  display: flex;
  width: 133px;
  height: 36px;
  margin-bottom: 25px;
}

.member-pc-logo img {
  width: 133px;
  height: 36px;
  object-fit: contain;
}

.member-tabs {
  display: flex;
  gap: 24px;
  height: 24px;
  margin-bottom: 22px;
}

.member-tabs span {
  min-width: 64px;
  color: #222426;
  font-size: 16px;
  line-height: 21px;
  cursor: default;
  white-space: nowrap;
}

.member-tabs .active {
  color: #f90;
  font-weight: 700;
}

.member-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.member-input {
  display: flex;
  align-items: center;
  height: 48px;
  border-bottom: 1px solid #ebedf0;
}

.member-input img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  object-fit: contain;
}

.member-input input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  color: #222426;
  font-size: 16px;
}

.member-input input::placeholder {
  color: #c2c5cc;
}

.member-input button {
  border: 0;
  background: transparent;
  color: #f90;
  font-size: 14px;
  white-space: nowrap;
}

.member-submit {
  height: 42px;
  margin-top: 12px;
  border: 0;
  border-radius: 4px;
  background: #f90;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.member-submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.member-message {
  min-height: 18px;
  margin: 0;
  color: #f04438;
  font-size: 13px;
  line-height: 18px;
}

.member-switch-row {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  color: #f90;
  font-size: 14px;
}

.member-protocol {
  display: flex;
  gap: 8px;
  margin-top: 36px;
  color: #919499;
  font-size: 12px;
  line-height: 17px;
}

.member-check {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f90;
  box-shadow: inset 0 0 0 4px #fff, 0 0 0 1px #f90;
}

.member-protocol p {
  margin: 0;
}

.member-protocol a {
  color: #3f75c0;
}

.member-pc-footer {
  position: absolute;
  left: 6px;
  bottom: 6px;
  width: 388px;
  height: 75px;
  object-fit: contain;
}

.utility-page,
.mine-page,
.ops-page {
  min-height: 100vh;
  background: #f5f5f5;
  padding: 72px 16px;
}

.busy-panel,
.sell-flow-panel,
.ops-panel {
  width: min(520px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 42px 34px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.busy-spinner {
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  border: 5px solid #ffe4bd;
  border-top-color: #f90;
  border-radius: 50%;
  animation: busySpin 0.9s linear infinite;
}

@keyframes busySpin {
  to { transform: rotate(360deg); }
}

.busy-panel h1,
.sell-hero h1,
.ops-title h1 {
  margin: 0 0 10px;
  font-size: 24px;
}

.busy-panel p,
.sell-hero p,
.ops-title p {
  margin: 0;
  color: var(--text-sub);
  line-height: 1.6;
}

.busy-progress {
  height: 6px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: #f3f3f3;
}

.busy-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f90, #ffc400);
  animation: busyProgress 30s linear both;
  transform-origin: left center;
}

@keyframes busyProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.sell-hero img {
  width: 112px;
  height: 40px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.sell-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0;
}

.sell-steps div {
  padding: 14px 8px;
  border-radius: 8px;
  background: #fff8eb;
}

.sell-steps strong,
.sell-steps span {
  display: block;
}

.sell-steps strong {
  color: #f90;
  font-size: 24px;
}

.sell-steps span {
  margin-top: 6px;
  color: var(--text-sub);
  font-size: 13px;
}

.utility-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

.mine-page {
  width: min(860px, calc(100vw - 32px));
  margin: 0 auto;
}

.mine-hero {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 132px;
  padding: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffb13b, #ff8a00);
  color: #fff;
}

.mine-hero img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
}

.mine-hero h1,
.mine-hero p {
  margin: 0;
}

.mine-hero h1 {
  font-size: 24px;
}

.mine-hero p {
  margin-top: 6px;
  opacity: 0.9;
}

.mine-login-btn {
  margin-left: auto;
  padding: 9px 18px;
  border-radius: 999px;
  background: #fff;
  color: #f90;
  font-weight: 700;
}

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

.mine-grid a,
.mine-list {
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mine-grid a {
  padding: 20px 14px;
}

.mine-grid strong,
.mine-grid span {
  display: block;
}

.mine-grid span {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 13px;
}

.mine-list {
  margin-top: 14px;
  overflow: hidden;
}

.mine-list a,
.mine-list button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-bottom: 1px solid #f1f1f1;
  background: #fff;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
}

.mine-list a:last-child,
.mine-list button:last-child {
  border-bottom: 0;
}

.mine-list em {
  color: #f90;
  font-style: normal;
}

.ops-page {
  display: grid;
  place-items: center;
}

.ops-panel {
  width: min(760px, calc(100vw - 32px));
  text-align: left;
}

.ops-title {
  margin-bottom: 24px;
}

.ops-login {
  display: grid;
  gap: 14px;
}

.ops-login label {
  display: grid;
  gap: 8px;
  color: var(--text-sub);
  font-size: 14px;
}

.ops-login input {
  height: 42px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: 0;
}

.ops-login button,
.ops-toolbar button,
.ops-user button {
  height: 38px;
  border: 0;
  border-radius: 6px;
  background: #f90;
  color: #fff;
  cursor: pointer;
}

.ops-login p {
  min-height: 18px;
  margin: 0;
  color: #f04438;
}

.ops-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.ops-toolbar button {
  padding: 0 16px;
}

.ops-setting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding: 14px;
  border-radius: 8px;
  background: #fff8eb;
}

.ops-setting strong,
.ops-setting span {
  display: block;
}

.ops-setting span {
  margin-top: 4px;
  color: var(--text-sub);
  font-size: 13px;
}

.ops-setting span.closed {
  color: #f04438;
}

.ops-setting span.open {
  color: #16803c;
}

.ops-setting button {
  min-width: 92px;
  height: 38px;
  border: 0;
  border-radius: 6px;
  background: #111;
  color: #fff;
  cursor: pointer;
}

.ops-user-list {
  display: grid;
  gap: 10px;
}

.ops-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
}

.ops-user strong,
.ops-user span {
  display: block;
}

.ops-user span {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 13px;
}

.ops-user button {
  min-width: 72px;
}

.ops-empty {
  margin: 0;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  body {
    background: #f5f5f5;
  }

  .topbar,
  .desktop-only,
  .banner-section,
  .sale-section,
  .services,
  .partner-grid,
  .brand-grid,
  .strategy-grid,
  .goods-grid,
  .notice-bar {
    display: none !important;
  }

  .pc-layout-right-float {
    display: none;
  }

  .mobile-only { display: block; }

  .member-pc-page {
    display: none;
  }

  .member-mobile-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #fff;
  }

  .member-mobile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 203px;
    background: url("https://gw.alicdn.com/imgextra/i1/O1CN018m7Zv41DEJqTcsGWW_!!6000000000184-0-tps-750-502.jpg") center / 100% 100% no-repeat;
  }

  .member-mobile-head {
    position: relative;
    z-index: 2;
    height: 48px;
  }

  .member-back {
    position: absolute;
    left: 16px;
    top: 12px;
    width: 24px;
    height: 24px;
    border-left: 2px solid #222426;
    border-bottom: 2px solid #222426;
    transform: rotate(45deg) scale(0.55);
    transform-origin: center;
  }

  .member-mobile-card {
    position: relative;
    z-index: 1;
    padding: 0 16px 28px;
  }

  .member-mobile-card h1 {
    margin: 92px 0 14px;
    color: #222426;
    font-size: 22px;
    line-height: 32px;
  }

  .member-mobile-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0 22px;
  }

  .member-mobile-icon {
    width: 98px;
    height: 98px;
    object-fit: contain;
  }

  .member-mobile-text {
    width: 201px;
    height: 28px;
    margin-top: 12px;
    object-fit: contain;
  }

  .member-mobile-page .member-form {
    gap: 12px;
  }

  .member-mobile-page .member-input {
    height: 52px;
  }

  .member-mobile-page .member-submit {
    height: 48px;
    margin-top: 18px;
    border-radius: 24px;
  }

  .member-mobile-page .member-switch-row {
    margin-top: 16px;
  }

  .member-mobile-page .member-protocol {
    margin-top: 28px;
  }

  .topbar-inner,
  .section-inner,
  .notice-inner,
  .footer-inner {
    width: calc(100vw - 24px);
  }

  .mobile-shell {
    background: #f2f2f2;
    min-height: 100vh;
    padding-bottom: 74px;
  }

  .mobile-app-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 0 14px;
    background: linear-gradient(90deg, #ff9500, #ffb000);
    border-bottom: 0;
    color: #fff;
  }

  .mobile-app-left {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }

  .mobile-app-left img {
    width: 64px;
    height: 34px;
    object-fit: contain;
    border-radius: 7px;
    background: #fff;
    padding: 3px;
  }

  .mobile-app-left span {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
  }

  .mobile-app-top strong {
    flex: 0 0 auto;
    padding: 7px 11px;
    border-radius: 999px;
    background: #fff;
    color: #f90;
    font-size: 15px;
  }

  .mobile-head {
    position: relative;
    top: 0;
    z-index: 20;
    display: block;
    height: 122px;
    padding: 12px;
    background: linear-gradient(180deg, #ffc400 0%, #ffe245 100%);
    box-shadow: none;
  }

  .mobile-logo {
    width: 70px;
    height: 30px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
  }

  .mobile-head > a {
    display: inline-block;
    vertical-align: middle;
  }

  .mobile-head > strong {
    display: inline-block;
    margin-left: 8px;
    color: #121212;
    font-size: 19px;
    line-height: 30px;
    vertical-align: middle;
  }

  .mobile-search-wrap {
    display: flex;
    align-items: center;
    height: 44px;
    margin-top: 12px;
    border: 2px solid #111;
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
  }

  .mobile-search {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: 0;
    border-radius: 0;
    padding: 0 14px;
    background: #fff;
    outline: 0;
  }

  .mobile-search-wrap .search-btn {
    flex: 0 0 auto;
    height: 34px;
    min-width: 72px;
    margin-right: 4px;
    border: 0;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
  }

  .mobile-banner {
    display: block;
    margin: 12px 12px 0;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 343 / 115;
    position: relative;
    background: #222;
  }

  .mobile-banner > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-banner-mask {
    display: none;
  }

  .mobile-banner-copy {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #fff;
  }

  .mobile-banner-copy.is-hidden {
    display: none;
  }

  .mobile-banner-copy strong {
    font-size: 20px;
    line-height: 1.1;
  }

  .mobile-banner-copy span {
    font-size: 12px;
    opacity: 0.9;
  }

  .mobile-hot-card {
    margin: 12px;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
  }

  .mobile-hot-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 52px;
    background: #f7f7f7;
  }

  .mobile-hot-tabs button {
    border: 0;
    background: transparent;
    color: var(--text-sub);
    font-size: 18px;
  }

  .mobile-hot-tabs button.active {
    background: #fff;
    color: #f90;
    font-weight: 800;
  }

  .mobile-hot-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px 6px;
    padding: 14px 8px 16px;
  }

  .mobile-hot-grid a,
  .mobile-feature-grid a {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    min-width: 0;
    color: var(--text-main);
    font-size: 12px;
  }

  .mobile-hot-grid img {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    object-fit: cover;
  }

  .mobile-hot-grid span,
  .mobile-feature-grid span {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 12px;
    padding: 16px 8px;
    border-radius: 12px;
    background: #fff;
  }

  .mobile-feature-grid img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
  }

  .mobile-feature-grid i {
    position: absolute;
    top: -3px;
    right: 11px;
    padding: 1px 5px;
    border-radius: 3px;
    background: #ff3b55;
    color: #fff;
    font-style: normal;
    font-size: 10px;
  }

  .mobile-login-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 52px;
    margin: 0 0 8px;
    padding: 6px 12px;
    background: rgba(0,0,0,0.74);
    color: #fff;
  }

  .mobile-login-strip img {
    width: 58px;
    height: 58px;
    margin-top: -16px;
    object-fit: contain;
  }

  .mobile-login-strip span {
    flex: 1;
    min-width: 0;
    font-weight: 700;
  }

  .mobile-login-strip strong {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f90;
    color: #fff;
    font-size: 13px;
  }

  .mobile-section {
    margin: 12px;
    padding: 14px 12px;
    background: #fff;
    border-radius: 12px;
  }

  .mobile-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 700;
  }

  .mobile-sale-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-sale-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    background: #fafafa;
  }

  .mobile-sale-item.compact {
    min-height: 62px;
  }

  .mobile-sale-item img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
  }

  .mobile-sale-text {
    min-width: 0;
    flex: 1;
  }

  .mobile-sale-text h4,
  .mobile-sale-text p {
    margin: 0;
  }

  .mobile-sale-text h4 {
    font-size: 14px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .mobile-sale-text p {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 12px;
  }

  .mobile-sale-text strong,
  .mobile-price {
    display: block;
    margin-top: 6px;
    color: var(--brand);
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
  }

  .mobile-goods-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-goods-card {
    overflow: hidden;
    border-radius: 10px;
    background: #fafafa;
  }

  .mobile-goods-card > img {
    width: 100%;
    aspect-ratio: 164 / 128;
    object-fit: cover;
    background:
      radial-gradient(circle at 50% 28%, rgba(255, 153, 0, 0.08), transparent 42%),
      linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
  }

  .mobile-goods-card .mobile-sale-text {
    padding: 10px;
  }

  .mobile-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-service-item {
    position: relative;
    min-width: 0;
    min-height: 96px;
    padding: 12px;
    border-radius: 10px;
    background: #fffaf2;
    overflow: hidden;
  }

  .mobile-service-item img {
    position: absolute;
    right: -8px;
    bottom: -8px;
    width: 72px;
    height: 72px;
    object-fit: contain;
    opacity: 0.22;
  }

  .mobile-service-item strong,
  .mobile-service-item span {
    position: relative;
    z-index: 1;
    display: block;
    min-width: 0;
  }

  .mobile-service-item strong {
    color: var(--text-main);
    font-size: 14px;
  }

  .mobile-service-item span {
    margin-top: 6px;
    color: var(--text-sub);
    font-size: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .mobile-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px 8px;
  }

  .mobile-game-grid a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 0;
    color: var(--text-sub);
    font-size: 12px;
  }

  .mobile-game-grid img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
  }

  .mobile-game-grid span {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-notices,
  .mobile-faqs {
    display: flex;
    flex-direction: column;
  }

  .mobile-notices a,
  .mobile-faqs a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    border-bottom: 1px solid #f3f3f3;
    color: var(--text-sub);
    font-size: 13px;
  }

  .mobile-notices a:last-child,
  .mobile-faqs a:last-child {
    border-bottom: 0;
  }

  .mobile-download {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(90deg, #fff6e8, #fff);
    box-shadow: 0 2px 10px rgba(255, 153, 0, 0.08);
  }

  .mobile-download img {
    width: 82px;
    height: 28px;
    object-fit: contain;
  }

  .mobile-download span {
    flex: 1;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-download strong {
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: 12px;
  }

  .mobile-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 22px 12px 88px;
    color: var(--text-muted);
    font-size: 12px;
    text-align: center;
  }

  .mobile-footer img {
    width: 88px;
    height: 30px;
    object-fit: contain;
    opacity: 0.8;
  }

  .mobile-footer p {
    margin: 0;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 62px;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid #e8e8e8;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  }

  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    border: 0;
    background: transparent;
    color: #888;
    font-size: 11px;
    cursor: default;
  }

  .mobile-bottom-nav a {
    cursor: pointer;
  }

  .mobile-bottom-nav a.active,
  .mobile-bottom-nav button.active {
    color: #111;
    font-weight: 700;
  }

  .mobile-nav-icon {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: inherit;
    font-size: 20px;
    line-height: 1;
  }

  .mobile-bottom-nav em {
    font-style: normal;
    white-space: nowrap;
  }

  .mobile-bottom-nav .sell-center {
    position: relative;
    color: #111;
    font-weight: 800;
  }

  .mobile-bottom-nav .sell-center .mobile-nav-icon {
    width: 54px;
    height: 54px;
    margin-top: -28px;
    border-radius: 50%;
    background: #ffc400;
    color: #111;
    font-size: 23px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  .simple-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    padding: 0 14px;
    background: #fff;
    border-bottom: 1px solid #eee;
  }

  .simple-top a {
    width: 24px;
    height: 24px;
    border-left: 2px solid #222;
    border-bottom: 2px solid #222;
    transform: rotate(45deg) scale(0.55);
  }

  .simple-top strong {
    font-size: 17px;
  }

  .simple-top span {
    width: 24px;
  }

  .mobile-utility-page,
  .mobile-mine-page {
    width: 100%;
    min-height: 100vh;
    padding: 0 0 78px;
    background: #f5f5f5;
  }

  .mobile-utility-page .busy-panel,
  .mobile-utility-page .sell-flow-panel {
    width: auto;
    margin: 86px 12px 0;
    padding: 38px 22px;
    border-radius: 12px;
  }

  .mobile-mine-page .mine-hero {
    margin: 12px;
    border-radius: 12px;
    padding: 20px 16px;
  }

  .mobile-mine-page .mine-hero img {
    width: 58px;
    height: 58px;
  }

  .mobile-mine-page .mine-hero h1 {
    font-size: 20px;
  }

  .mobile-mine-page .mine-hero p {
    font-size: 12px;
  }

  .mobile-mine-page .mine-login-btn {
    padding: 7px 12px;
    font-size: 12px;
  }

  .mobile-mine-page .mine-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 12px;
  }

  .mobile-mine-page .mine-grid a {
    border-radius: 12px;
    padding: 16px 14px;
  }

  .mobile-mine-page .mine-list {
    margin: 12px;
    border-radius: 12px;
  }

  .game-route-card {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .game-route-card img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
  }

  .game-route-card h1,
  .game-route-card p {
    margin: 0;
  }

  .game-route-card h1 {
    font-size: 20px;
  }

  .game-route-card p {
    margin-top: 6px;
    color: var(--text-sub);
    font-size: 13px;
  }
}
