/* ========================================
   宝宝游戏 PC 端 · 租号平台风格
   断点：≥ 1024px
   ======================================== */

@media (min-width: 1024px) {
  :root {
    --pc-header-top: 64px;
    --pc-sub-nav-height: 46px;
    --nav-height: calc(var(--pc-header-top) + var(--pc-sub-nav-height));
    --bottom-nav-height: 0px;
    --beian-bar-height: 0px;
    --pc-max-width: 1280px;
    --pc-gutter: 24px;
    --pc-bg: #f0f2f5;
    --pc-surface: #ffffff;
    --pc-border: #e8eaed;
    --pc-orange: #ff6b35;
    --pc-orange-soft: #fff4ef;
  }

  body {
    background: var(--pc-bg);
  }

  .pc-bg-mesh {
    display: none;
  }

  .app-container {
    max-width: none;
    overflow-x: hidden;
    box-shadow: none;
    background: transparent;
  }

  .app-container.loaded {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .mobile-header {
    display: none !important;
  }

  /* ========== 顶栏 ========== */
  .top-nav {
    position: sticky;
    top: 0;
    left: 0;
    transform: none;
    max-width: none;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: var(--pc-surface);
    border-bottom: 1px solid var(--pc-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .top-nav.scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }

  .pc-header-top {
    height: var(--pc-header-top);
    border-bottom: 1px solid #f0f1f3;
  }

  .pc-header-inner {
    max-width: var(--pc-max-width);
    margin: 0 auto;
    padding: 0 var(--pc-gutter);
    height: 100%;
    gap: 24px;
  }

  .brand {
    flex-shrink: 0;
    gap: 10px;
  }

  .brand-logo svg {
    width: 40px;
    height: 40px;
  }

  .brand-copy {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .brand-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    background: none;
    -webkit-text-fill-color: unset;
  }

  .brand-sub {
    font-size: 11px;
    color: #999;
  }

  .pc-search-main {
    flex: 1;
    max-width: 560px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f6f8;
    border: 1px solid #e0e3e8;
    border-radius: 8px;
    padding: 0 4px 0 12px;
    transition: border-color 0.2s ease, background 0.2s ease;
    overflow: hidden;
  }

  .pc-search-main:focus-within {
    background: #fff;
    border-color: var(--primary);
    box-shadow: none;
  }

  .pc-search-main .search-icon {
    position: static;
    transform: none;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin: 0;
    color: #999;
  }

  .pc-search-main input {
    flex: 1;
    width: auto;
    height: 100%;
    min-width: 0;
    padding: 0;
    margin: 0;
    font-size: 14px;
    border: none;
    border-radius: 0;
    background: transparent;
    outline: none;
    box-shadow: none;
  }

  .pc-search-main input:focus {
    border: none;
    outline: none;
    box-shadow: none;
  }

  .pc-search-main input::placeholder {
    color: #aaa;
    font-size: 13px;
  }

  .pc-search-btn {
    flex-shrink: 0;
    height: 32px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--pc-orange) 0%, #ff8555 100%);
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }

  .pc-search-btn:hover {
    opacity: 0.9;
  }

  .nav-actions {
    flex-shrink: 0;
    gap: 8px;
  }

  .nav-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #666;
  }

  .nav-icon-btn:hover {
    background: #f5f6f8;
    color: var(--primary);
  }

  .desktop-login-btn {
    height: 36px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background: #fff;
    border: 1px solid var(--primary);
    border-radius: 8px;
    transition: all 0.2s ease;
  }

  .desktop-login-btn:hover {
    background: var(--primary);
    color: #fff;
  }

  /* 二级导航 */
  .pc-sub-nav {
    height: var(--pc-sub-nav-height);
    background: #fafbfc;
  }

  .pc-sub-nav-inner {
    max-width: var(--pc-max-width);
    margin: 0 auto;
    padding: 0 var(--pc-gutter);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .desktop-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    border-radius: 0;
    transition: color 0.2s ease;
  }

  .desktop-nav-item:hover {
    color: var(--primary);
    background: transparent;
  }

  .desktop-nav-item.active {
    color: var(--pc-orange);
    font-weight: 600;
    background: transparent;
    box-shadow: none;
  }

  .desktop-nav-item.active::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 3px;
    border-radius: 2px 2px 0 0;
    background: var(--pc-orange);
  }

  .pc-sub-links {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .pc-sub-link {
    font-size: 13px;
    color: #888;
    transition: color 0.2s ease;
  }

  .pc-sub-link:hover {
    color: var(--primary);
  }

  .bottom-nav,
  .bottom-spacer {
    display: none;
  }

  .app-container.tab-active .pc-game-strip {
    display: none;
  }

  .app-container.sub-page-active .pc-game-strip {
    display: none !important;
  }

  /* ========== 游戏图标条 ========== */
  .pc-game-strip {
    display: block;
    background: var(--pc-surface);
    border-bottom: 1px solid var(--pc-border);
    padding: 14px 0;
  }

  .pc-game-strip-inner {
    max-width: var(--pc-max-width);
    margin: 0 auto;
    padding: 0 var(--pc-gutter);
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .pc-game-strip-inner::-webkit-scrollbar {
    display: none;
  }

  .pc-strip-game {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 78px;
    padding: 6px 4px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
    border: none;
    background: transparent;
    font-family: inherit;
  }

  .pc-strip-game:hover {
    background: #f5f6f8;
  }

  .pc-strip-game.active .pc-strip-name {
    color: var(--pc-orange);
    font-weight: 600;
  }

  .pc-strip-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }

  .pc-strip-icon.all {
    background: linear-gradient(135deg, var(--primary), #1565a8);
    color: #fff;
  }

  .pc-strip-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .pc-strip-game:hover .pc-strip-icon {
    transform: translateY(-2px);
  }

  .pc-strip-name {
    font-size: 12px;
    color: #666;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 74px;
  }

  /* ========== 主内容 ========== */
  .main-content {
    flex: 1;
    max-width: var(--pc-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 20px var(--pc-gutter) 48px;
  }

  .pc-home-top {
    margin-bottom: 20px;
  }

  .pc-banner-row {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 16px;
  }

  .pc-hero-band {
    width: auto;
    margin: 0;
    padding: 0;
    background: none;
  }

  .pc-hero-band::before,
  .pc-hero-band::after {
    display: none;
  }

  .banner-section {
    padding: 0;
  }

  .banner-carousel {
    height: 260px;
    border-radius: 8px;
    border: 1px solid var(--pc-border);
    box-shadow: none;
  }

  .banner-content {
    padding: 32px 36px;
  }

  .banner-title {
    font-size: 30px;
  }

  .banner-btn {
    border-radius: 6px;
    background: var(--pc-orange);
    color: #fff;
    box-shadow: none;
  }

  .banner-btn:hover {
    background: #ff8555;
    transform: none;
  }

  /* 公告侧栏 */
  .pc-notice-panel {
    background: var(--pc-surface);
    border: 1px solid var(--pc-border);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
  }

  .pc-notice-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f1f3;
  }

  .pc-notice-head h3 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
  }

  .pc-notice-more {
    font-size: 12px;
    color: #999;
    cursor: pointer;
  }

  .pc-notice-more:hover {
    color: var(--pc-orange);
  }

  .pc-notice-list {
    list-style: none;
    flex: 1;
    margin: 0;
    padding: 0;
  }

  .pc-notice-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    padding: 7px 0;
    border-bottom: 1px dashed #f0f1f3;
    cursor: pointer;
  }

  .pc-notice-list li:hover {
    color: var(--primary);
  }

  .pc-notice-list li:last-child {
    border-bottom: none;
  }

  .pc-notice-list .tag {
    flex-shrink: 0;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    background: #f0f1f3;
    color: #888;
    margin-top: 2px;
  }

  .pc-notice-list .tag.hot {
    background: var(--pc-orange-soft);
    color: var(--pc-orange);
  }

  .pc-quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f1f3;
  }

  .pc-quick-stats div {
    text-align: center;
    padding: 8px 4px;
    background: #f8f9fa;
    border-radius: 6px;
  }

  .pc-quick-stats strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
  }

  .pc-quick-stats span {
    font-size: 10px;
    color: #999;
    margin-top: 2px;
    display: block;
  }

  /* 保障条 */
  .pc-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
  }

  .pc-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 12px rgba(15, 76, 129, 0.06);
  }

  .pc-trust-item:hover {
    color: var(--primary);
    box-shadow: 0 6px 20px rgba(15, 76, 129, 0.12);
    transform: translateY(-1px);
  }

  .pc-trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
  }

  .mobile-home-sections .trust-section {
    display: none !important;
  }

  /* ========== 快捷入口 + 热门服务（PC） ========== */
  .pc-tools-panel {
    display: block;
    max-width: var(--pc-max-width);
    margin: 24px auto 0;
    padding: 0 var(--pc-gutter);
  }

  .home-tools-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 22px;
    padding: 22px 24px 24px;
    box-shadow: 0 8px 32px rgba(15, 76, 129, 0.08);
    border: 1px solid rgba(15, 76, 129, 0.06);
  }

  .home-tools-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #8a96a8;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
  }

  .home-tools-label--services {
    margin-top: 4px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 76, 129, 0.06);
  }

  .pc-tools-panel .feature-nav-section {
    padding: 0;
    margin-bottom: 0;
  }

  .pc-tools-panel .feature-nav-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 14px;
    background: rgba(244, 247, 251, 0.95);
    border-radius: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  .pc-tools-panel .feature-nav-item {
    padding: 14px 10px;
    border-radius: 14px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .pc-tools-panel .feature-nav-item:hover,
  .pc-tools-panel .feature-nav-item:focus-visible {
    background: #fff;
    box-shadow: 0 4px 16px rgba(15, 76, 129, 0.1);
    transform: translateY(-1px);
  }

  .pc-tools-panel .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .pc-tools-panel .feature-nav-item span {
    font-size: 13px;
    font-weight: 600;
    color: #444;
  }

  .pc-tools-panel .service-section {
    padding: 0;
  }

  .pc-tools-panel .service-cards {
    gap: 16px;
  }

  .pc-tools-panel .service-card {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .pc-tools-panel .service-card-text h3 {
    font-size: 16px;
  }

  .pc-tools-panel .service-card-text p {
    font-size: 12px;
  }

  .pc-tools-panel .service-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  /* ========== 商品市场 ========== */
  .pc-market-wrap {
    background: var(--pc-surface);
    border: none;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15, 76, 129, 0.08);
    margin-top: 20px;
  }

  .pc-market-head {
    padding: 22px 24px 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 14px;
  }

  .pc-market-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0;
    padding-left: 14px;
    position: relative;
    letter-spacing: -0.02em;
  }

  .pc-market-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 22px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
  }

  .pc-market-desc {
    font-size: 13px;
    color: #8a96a8;
    margin: 0;
  }

  .category-section {
    padding: 14px 24px;
    margin: 0;
    background: #fafbfc;
    border-top: 1px solid var(--pc-border);
    border-bottom: 1px solid var(--pc-border);
  }

  /* 首页顶部已有游戏条，下方分类标签在 PC 端重复 */
  .pc-market-wrap .category-section {
    display: none !important;
  }

  .category-scroll {
    overflow: visible;
    padding: 0;
    width: 100%;
    cursor: default;
  }

  .category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }

  .category-tab {
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    background: #fff;
    border: 1px solid var(--pc-border);
    color: #666;
    transition: all 0.15s ease;
  }

  .category-tab:hover {
    border-color: var(--pc-orange);
    color: var(--pc-orange);
  }

  .category-tab.active {
    background: var(--pc-orange);
    border-color: var(--pc-orange);
    color: #fff;
    box-shadow: none;
  }

  .category-tab.active::after {
    display: none;
  }

  .products-section {
    padding: 20px 24px 24px;
  }

  .product-block {
    margin-bottom: 28px;
  }

  .product-block:last-child {
    margin-bottom: 0;
  }

  .block-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 14px;
    justify-content: flex-start;
  }

  .block-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
  }

  .product-block .block-header .view-more {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-left: 0;
    padding: 2px 8px;
    font-size: 13px;
    font-weight: 500;
    color: #999;
    border-radius: 4px;
    white-space: nowrap;
  }

  .product-block .block-header .view-more::after {
    content: '›';
    font-size: 15px;
    line-height: 1;
    color: #bbb;
    transition: transform 0.2s ease, color 0.2s ease;
  }

  .product-block .block-header .view-more:hover {
    color: var(--pc-orange);
    background: var(--pc-orange-soft);
  }

  .product-block .block-header .view-more:hover::after {
    color: var(--pc-orange);
    transform: translateX(2px);
  }

  .view-more {
    font-size: 13px;
    color: #999;
    margin-left: auto;
    padding: 4px 10px;
    border-radius: 4px;
  }

  .view-more:hover {
    color: var(--pc-orange);
    background: var(--pc-orange-soft);
  }

  /* 商品卡片 */
  .product-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .product-grid > .product-card,
  .product-grid > .home-empty-hint {
    min-width: 0;
    width: 100%;
  }

  .product-grid > .product-more-card {
    min-width: 0;
    align-self: stretch;
  }

  .product-card {
    background: #fff;
    border: 1px solid var(--pc-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }

  .product-card:hover {
    border-color: var(--pc-orange);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.12);
    transform: translateY(-2px);
  }

  .product-image-wrap {
    aspect-ratio: 16 / 10;
  }

  .product-game-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 3;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
  }

  .product-badge {
    top: 8px;
    right: 8px;
    left: auto;
    font-size: 10px;
    border-radius: 4px;
    background: var(--pc-orange);
    box-shadow: none;
  }

  .product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-placeholder .game-icon {
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.9);
  }

  .product-info {
    padding: 12px;
  }

  .product-title {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    line-height: 1.45;
    min-height: 38px;
    margin-bottom: 8px;
  }

  .product-info-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
  }

  .product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--pc-orange);
  }

  .product-price .currency {
    font-size: 13px;
  }

  .product-meta-tags {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
  }

  .product-meta-tags span {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    background: #f5f6f8;
    color: #999;
    white-space: nowrap;
  }

  .product-id {
    font-size: 11px;
    color: #bbb;
  }

  .home-empty-hint {
    grid-column: 1 / -1;
    border-radius: 8px;
    background: #fafbfc;
    border-color: var(--pc-border);
  }

  .product-more-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    text-decoration: none;
    color: inherit;
    background: #fafbfc;
    border: 1px dashed var(--pc-border);
    box-shadow: none;
  }

  .product-more-card:hover {
    border-color: var(--pc-orange);
    background: var(--pc-orange-soft);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.1);
  }

  .product-more-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 12px;
    text-align: center;
  }

  .product-more-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--pc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pc-orange);
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .product-more-icon svg {
    width: 20px;
    height: 20px;
  }

  .product-more-card:hover .product-more-icon {
    background: var(--pc-orange);
    border-color: var(--pc-orange);
    color: #fff;
  }

  .product-more-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
  }

  .product-more-hint {
    font-size: 12px;
    color: #999;
  }

  .product-more-card:hover .product-more-text {
    color: var(--pc-orange);
  }

  /* ========== Tab 子页面 ========== */
  .tab-pages {
    flex: 1;
    max-width: var(--pc-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 20px var(--pc-gutter) 48px;
    min-height: calc(100vh - var(--nav-height) - 100px);
  }

  .app-container.tab-active .tab-pages {
    position: static;
    transform: none;
    left: auto;
    bottom: auto;
    max-width: var(--pc-max-width);
    width: 100%;
    overflow: visible;
    z-index: auto;
    padding-top: 20px;
  }

  .app-container.buy-page-active .tab-pages,
  .app-container.sell-page-active .tab-pages,
  .app-container.rent-page-active .tab-pages,
  .app-container.mine-page-active .tab-pages {
    top: auto;
    padding-top: 20px;
  }

  .app-container.buy-page-active .top-nav,
  .app-container.sell-page-active .top-nav,
  .app-container.rent-page-active .top-nav,
  .app-container.mine-page-active .top-nav {
    display: block !important;
  }

  .tab-page {
    padding: 0;
    height: auto;
    min-height: calc(100vh - var(--nav-height) - 180px);
    overflow: visible;
  }

  .tab-buy,
  .tab-sell,
  .tab-rent,
  .tab-mine {
    background: var(--pc-surface);
    border: 1px solid var(--pc-border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
  }

  .tab-buy:not(.buy-in-list),
  .tab-sell:not(.sell-in-form) {
    overflow-y: auto;
    max-height: calc(100vh - var(--nav-height) - 48px);
  }

  .tab-buy.buy-in-list,
  .tab-sell.sell-in-form {
    overflow: hidden;
    max-height: calc(100vh - var(--nav-height) - 48px);
  }

  .tab-buy.buy-in-list #buyListView,
  .tab-sell.sell-in-form #sellPublishView {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
  }

  .tab-buy:not(.buy-in-list) .buy-game-scroll,
  .tab-sell:not(.sell-in-form) .buy-game-scroll {
    overflow: visible;
    max-height: none;
  }

  .tab-page-header {
    display: flex;
    align-items: center;
    gap: 12px;
    position: sticky;
    top: var(--nav-height);
    z-index: 90;
    min-height: 56px;
    padding: 0 20px;
    background: #fff;
    border-bottom: 1px solid var(--pc-border);
  }

  /* PC 顶栏已有导航：仅隐藏 Tab 主列表页头，子页保留返回 */
  .tab-pages > .tab-page > .tab-page-header:not(.tab-page-header--sub) {
    display: none !important;
  }

  .mine-pc-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 12px;
  }

  .tab-page-header--sub {
    min-height: 64px;
    padding: 10px 20px 12px;
    align-items: flex-start;
  }

  .tab-page-header--sub .tab-back-btn {
    margin-top: 2px;
  }

  .tab-back-btn {
    width: auto;
    height: 36px;
    padding: 0 14px 0 10px;
    border: 1px solid var(--pc-border);
    border-radius: 6px;
    background: #fff;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  }

  .tab-back-text {
    display: inline;
  }

  .tab-back-btn svg {
    width: 18px;
    height: 18px;
  }

  .tab-back-btn:hover {
    color: var(--pc-orange);
    border-color: var(--pc-orange);
    background: var(--pc-orange-soft);
  }

  .tab-page-header-main {
    flex: 1;
    min-width: 0;
    text-align: left;
  }

  .tab-page-header-main h1 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
  }

  .tab-page-header-desc {
    font-size: 12px;
    color: #999;
  }

  .tab-header-trail {
    flex-shrink: 0;
  }

  .tab-header-btn:hover {
    background: rgba(0, 0, 0, 0.05);
  }

  .tab-rent {
    padding: 0;
  }

  .tab-rent .rent-duration-tabs,
  .tab-rent .rent-promo,
  .tab-rent .tab-filter-scroll,
  .tab-rent .rent-block-header {
    padding-left: 24px;
    padding-right: 24px;
  }

  .tab-rent .rent-duration-tabs {
    padding-top: 16px;
  }

  .tab-rent .rent-promo {
    margin: 16px 24px;
    padding: 16px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff4ef 0%, #fff 100%);
    border: 1px solid #ffe0d0;
    box-shadow: none;
  }

  .tab-rent .rent-promo-btn {
    background: var(--pc-orange);
    border-radius: 6px;
  }

  .tab-rent .rent-block-header {
    padding-bottom: 0;
    margin: 0 0 16px;
  }

  .tab-rent .product-grid {
    padding: 0 24px 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .rent-trust-bar {
    grid-template-columns: repeat(4, 1fr);
    padding: 16px 24px;
    margin: 0;
    border-bottom: 1px solid var(--pc-border);
  }

  .channel-sort-bar {
    padding: 0 24px 12px;
  }

  .channel-toolbar {
    padding: 14px 24px;
  }

  .channel-filter-row,
  .channel-trust-bar,
  .channel-result-bar,
  .channel-server-scroll {
    padding-left: 24px;
    padding-right: 24px;
  }

  .channel-product-grid {
    padding: 0 24px 24px;
  }

  .sell-steps-hint {
    padding: 12px 24px;
  }

  .sell-form {
    max-width: 560px;
    margin: 0 auto;
    padding: 20px 24px 32px;
  }

  .tab-rent .rent-trust-bar,
  .tab-rent .channel-sort-bar {
    padding-left: 24px;
    padding-right: 24px;
  }

  .rent-duration-tabs {
    display: flex;
    gap: 8px;
    padding: 0;
    background: none;
    border: none;
  }

  .rent-duration {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid var(--pc-border);
    background: #fff;
    color: #666;
  }

  .rent-duration.active {
    background: var(--pc-orange);
    border-color: var(--pc-orange);
    color: #fff;
    box-shadow: none;
  }

  .tab-filter {
    padding: 7px 16px;
    font-size: 13px;
    border-radius: 6px;
    border: 1px solid var(--pc-border);
    background: #fff;
    color: #666;
  }

  .tab-filter.active {
    background: var(--pc-orange);
    border-color: var(--pc-orange);
    color: #fff;
  }

  .tab-filter-scroll {
    overflow: visible;
    margin: 0 0 16px;
    padding: 0;
  }

  .tab-filters {
    flex-wrap: wrap;
    gap: 8px;
  }

  .sell-banner {
    margin: 0;
    border-radius: 0;
    background: linear-gradient(135deg, #0F4C81 0%, #1a6bb5 100%);
    padding: 28px 32px;
  }

  .sell-banner-top h2 {
    font-size: 22px;
  }

  .sell-fee-table {
    max-width: 480px;
    margin-top: 16px;
    border-radius: 8px;
    overflow: hidden;
  }

  .sell-type-tabs {
    padding: 16px 24px 0;
    gap: 8px;
    background: #fafbfc;
    border-bottom: 1px solid var(--pc-border);
  }

  .sell-type-tab {
    padding: 8px 24px;
    font-size: 13px;
    border-radius: 6px 6px 0 0;
    border: 1px solid transparent;
    background: transparent;
    color: #666;
  }

  .sell-type-tab.active {
    background: #fff;
    border-color: var(--pc-border);
    border-bottom-color: #fff;
    color: var(--pc-orange);
    font-weight: 600;
  }

  .buy-top {
    padding: 20px 24px 16px;
    background: #fff;
    border-bottom: none;
  }

  .buy-search {
    max-width: 420px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--pc-border);
    background: #fff;
  }

  .buy-type-tabs {
    margin-top: 14px;
    gap: 8px;
    background: none;
    padding: 0;
  }

  .buy-type-tab {
    padding: 7px 18px;
    font-size: 13px;
    border-radius: 6px;
    border: 1px solid var(--pc-border);
    background: #fff;
    color: #666;
  }

  .buy-type-tab.active {
    background: var(--pc-orange);
    border-color: var(--pc-orange);
    color: #fff;
  }

  .buy-type-tab.active::after {
    display: none;
  }

  .buy-body {
    padding: 20px 12px 24px 24px;
    min-height: 480px;
  }

  .buy-game-scroll {
    max-height: none;
    overflow: visible;
  }

  .buy-letter-index {
    position: sticky;
    top: calc(var(--nav-height) + 56px);
  }

  .buy-letter-btn {
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 4px;
  }

  .buy-letter-btn:hover,
  .buy-letter-btn.active {
    background: var(--pc-orange-soft);
    color: var(--pc-orange);
  }

  .buy-game-grid,
  .sell-game-grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 20px 14px;
  }

  .buy-game-item:hover .buy-game-icon {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .tab-mine {
    max-width: 900px;
    margin: 0 auto;
    background: transparent;
    padding: 0;
  }

  .tab-mine .mine-hero {
    display: none;
  }

  .tab-mine .mine-profile-card {
    margin-top: 0;
    border-radius: 12px;
    border: 1px solid var(--pc-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    background: var(--pc-surface);
  }

  .tab-mine .mine-content {
    margin-top: 16px;
  }

  .tab-mine .mine-card {
    border-radius: 8px;
    border: 1px solid var(--pc-border);
    background: var(--pc-surface);
    box-shadow: none;
  }

  .tab-mine .mine-wallet-card {
    border-radius: 8px;
    border: 1px solid var(--pc-border);
    background: var(--pc-surface);
  }

  .tab-mine .mine-login-btn {
    background: linear-gradient(135deg, var(--pc-orange) 0%, #ff8555 100%);
    border-radius: 6px;
  }

  .app-container.rent-page-active .tab-pages {
    top: auto;
  }

  /* ========== 子页面 PC ========== */
  .app-container.sub-page-active .pc-game-strip,
  .app-container.sub-page-active .pc-footer {
    display: none !important;
  }

  .app-container.sub-page-active .sub-pages {
    position: static;
    transform: none;
    left: auto;
    height: auto;
    flex: 1;
    order: 10;
    max-width: var(--pc-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 16px var(--pc-gutter) 40px;
    z-index: auto;
    overflow: visible;
    display: block;
    background: transparent;
  }

  .app-container.sub-page-active .main-content,
  .app-container.sub-page-active .tab-pages {
    display: none !important;
  }

  .app-container.sub-page-active .top-nav {
    display: block !important;
    order: 0;
  }

  .app-container.sub-page-active .bottom-nav {
    display: none !important;
  }

  .sub-page {
    height: auto;
    min-height: auto;
    border: 1px solid var(--pc-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--pc-surface);
  }

  .sub-page-body {
    padding: 20px 24px 28px;
    max-width: none;
  }

  .sub-page-body--messages,
  .sub-page-body--chat {
    padding: 0;
    min-height: 520px;
    max-height: min(72vh, 680px);
    overflow: hidden;
  }

  .sub-page.sub-page--chat {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .msg-center-page,
  .chat-page {
    min-height: 520px;
  }

  .sub-page .tab-page-header--subpage {
    position: relative;
    top: auto;
    min-height: 52px;
    padding: 0 20px;
    background: #fafbfc;
    border-bottom: 1px solid var(--pc-border);
  }

  .sub-page .tab-page-header--subpage .tab-page-header-main {
    display: block !important;
    text-align: left;
  }

  .sub-page .tab-page-header--subpage .tab-page-header-main h1 {
    font-size: 17px;
  }

  .product-detail-page {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 380px) 1fr;
    gap: 32px;
    align-items: start;
  }

  .product-detail-media {
    position: sticky;
    top: 16px;
    margin-bottom: 0;
  }

  .product-detail-cover {
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 76, 129, 0.08);
  }

  .product-detail-cover .game-icon-md,
  .product-detail-cover .game-icon-lg {
    width: 56px;
    height: 56px;
  }

  .product-detail-thumbs--pc {
    display: none !important;
  }

  .sub-page-body.sub-page-body--product-detail {
    padding: 20px 24px 28px !important;
  }

  .sub-page-body--product-detail .product-detail-top {
    display: grid;
    grid-template-columns: minmax(0, 380px) 1fr;
    gap: 32px;
    align-items: start;
  }

  .sub-page-body--product-detail .product-detail-hero {
    position: sticky;
    top: 16px;
  }

  .sub-page-body--product-detail .product-detail-cover {
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: 280px;
    max-height: none;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 76, 129, 0.08);
  }

  .sub-page-body--product-detail .product-detail-cover-img {
    border-radius: 16px;
  }

  .sub-page-body--product-detail .product-detail-main {
    padding: 0;
    min-width: 0;
  }

  .sub-page-body--product-detail .product-detail-assets {
    width: 100%;
    max-width: none;
    margin: 28px 0 0;
    padding: 0;
  }

  .sub-page-body--product-detail .product-detail-asset-item {
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
  }

  .sub-page-body--product-detail .product-detail-asset-item:last-child {
    margin-bottom: 0;
  }

  .sub-page-body--product-detail .product-detail-asset-img {
    display: block;
    width: 100%;
    border-radius: 12px;
  }

  /* PC 商品详情：底部居中毛玻璃药丸操作条 */
  .sub-page-footer--product {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 500;
    width: min(680px, calc(100vw - 40px));
    max-width: min(680px, calc(100vw - 40px));
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    pointer-events: none;
  }

  .sub-page-footer--product .detail-actions,
  .sub-page-footer--product .detail-actions--inline {
    pointer-events: auto;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    position: relative !important;
    transform: none !important;
    width: 100%;
    max-width: none;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0;
    background: rgba(236, 241, 236, 0.82);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    box-shadow: 0 12px 40px rgba(15, 76, 129, 0.16);
    overflow: hidden;
    border-top: none !important;
  }

  .sub-page-footer--product .detail-bar-side {
    display: flex !important;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: auto;
    min-width: 56px;
    padding: 8px 10px;
    min-height: 52px;
    border-radius: 0;
    border: none;
    border-right: 1px solid rgba(216, 226, 216, 0.9);
    background: transparent !important;
    color: #5f6f61;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;
  }

  .sub-page-footer--product .detail-bar-side .ui-icon {
    width: 22px;
    height: 22px;
    color: #6b8770;
  }

  .sub-page-footer--product .detail-label-pc {
    display: none;
  }

  .sub-page-footer--product .detail-label-mobile {
    display: inline;
  }

  .sub-page-footer--product .detail-btn.primary.detail-bar-main {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    min-width: 0;
    padding: 0 24px;
    border-radius: 0 999px 999px 0;
    background: #6fa872 !important;
    background-image: none !important;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
  }

  .sub-page-body.sub-page-body--product-detail {
    padding-bottom: 96px !important;
  }

  .product-detail-gallery--detail {
    display: block !important;
    margin-top: 28px;
    padding-top: 0;
    border-top: none;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .product-detail-gallery--detail .product-assets-grid--plain {
    display: block;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: none;
  }

  .product-detail-gallery--detail .product-gallery-item--fullbleed + .product-gallery-item--fullbleed {
    margin-top: 12px;
  }

  .product-detail-gallery--detail .product-gallery-img--fit {
    border-radius: 0;
  }

  .product-detail-gallery--mobile {
    display: none !important;
  }

  .product-assets-page {
    max-width: none;
  }

  .product-assets-head {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--pc-border);
  }

  .product-assets-kicker {
    margin: 0 0 6px;
    font-size: 13px;
    color: var(--text-muted, #888);
  }

  .product-assets-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary, #222);
    line-height: 1.45;
  }

  .product-assets-count {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted, #888);
  }

  .product-assets-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .product-gallery-item--inline {
    border-radius: 14px;
    border: 1px solid var(--pc-border);
  }

  .product-gallery-inline-label {
    padding: 10px 14px 8px;
    font-size: 13px;
  }

  .product-gallery-img--inline {
    aspect-ratio: auto;
  }

  .product-gallery-item--inline .product-gallery-photo {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .product-detail-thumb {
    position: relative;
    aspect-ratio: 1;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }

  .product-detail-thumb .product-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .product-detail-thumb span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 4px 6px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-detail-thumb:hover {
    transform: translateY(-1px);
  }

  .product-detail-thumb.is-active {
    border-color: var(--pc-orange);
    box-shadow: 0 0 0 1px var(--pc-orange);
  }

  .product-detail-info {
    min-width: 0;
  }

  .product-detail-title {
    margin: 0 0 8px;
    font-size: 20px;
  }

  .product-detail-meta {
    margin-bottom: 8px;
  }

  .detail-price {
    margin: 0 0 12px;
  }

  .product-detail-tags {
    margin-bottom: 16px;
  }

  .product-detail-desc {
    margin-bottom: 0;
  }

  /* PC 顶栏已有搜索，买号页内搜索框冗余 */
  .tab-buy .buy-top .buy-search {
    display: none !important;
  }

  .tab-buy .buy-top {
    padding-top: 16px;
  }

  .product-detail-gallery-head h3 {
    font-size: 16px;
  }

  .product-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .product-gallery-item {
    border-radius: 14px;
    border: 1px solid var(--pc-border);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }

  .product-detail-desc {
    border-radius: 14px;
  }

  .product-detail-tags li {
    border-radius: 20px;
  }

  .product-gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }

  .product-gallery-img {
    aspect-ratio: 4 / 3;
  }

  .info-page-hero {
    max-width: 640px;
  }

  /* ========== 弹层 ========== */
  .home-sheet-overlay {
    align-items: center;
  }

  .home-sheet {
    max-width: 440px;
    border-radius: 12px;
    max-height: 85vh;
    transform: scale(0.95);
    opacity: 0;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .home-sheet-overlay.is-open .home-sheet {
    transform: scale(1);
    opacity: 1;
  }

  .home-sheet-handle {
    display: none;
  }

  /* ========== 页脚 ========== */
  .pc-footer {
    display: block;
    margin-top: auto;
    background: #2c3e50;
    color: rgba(255, 255, 255, 0.7);
    padding: 40px var(--pc-gutter) 28px;
  }

  .pc-footer-inner {
    max-width: var(--pc-max-width);
    margin: 0 auto;
  }

  .pc-footer-top {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 0;
  }

  .pc-footer-logo svg,
  .pc-footer-logo .site-logo-img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: block;
  }

  .pc-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }

  .pc-footer-logo strong {
    display: block;
    font-size: 18px;
    color: #fff;
  }

  .pc-footer-logo p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
  }

  .pc-footer-slogan {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
  }

  .pc-footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .pc-footer-badges span {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
  }

  .site-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 10px;
    margin-top: 10px;
    max-width: 520px;
  }

  .pc-footer-copy,
  .site-legal-copy {
    margin: 0;
    padding: 0;
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.38);
    text-align: left;
    white-space: normal;
  }

  .site-beian {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 10px;
    margin: 0;
  }

  .site-beian-link {
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.38);
  }

  .site-beian-link:hover {
    color: rgba(255, 255, 255, 0.6);
  }

  .site-beian-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
  }

  .pc-footer-links {
    display: flex;
    gap: 56px;
  }

  .pc-footer-col h4 {
    font-size: 13px;
    color: #fff;
    margin-bottom: 14px;
  }

  .pc-footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    transition: color 0.2s ease;
  }

  .pc-footer-col a:hover {
    color: var(--pc-orange);
  }
}

@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1400px) {
  :root {
    --pc-max-width: 1360px;
  }

  .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .tab-rent .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .pc-banner-row {
    grid-template-columns: 1fr 300px;
  }

  .banner-carousel {
    height: 280px;
  }
}

/* ========== 移动端 ========== */
@media (max-width: 1023px) {
  .pc-header-top,
  .pc-sub-nav,
  .pc-game-strip,
  .pc-market-head,
  .desktop-login-btn,
  .pc-footer-logo,
  .pc-footer-slogan,
  .pc-footer-badges,
  .pc-footer-links,
  .pc-notice-panel,
  .pc-trust-bar {
    display: none !important;
  }

  .pc-footer-top {
    display: block !important;
    padding: 0 !important;
    border: none !important;
  }

  .pc-footer {
    display: block !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .pc-footer-inner {
    max-width: none;
    padding: 0;
  }

  .mobile-header {
    display: flex !important;
  }

  .pc-home-top {
    display: block !important;
    margin-bottom: 0;
  }

  .pc-hero-band,
  .pc-banner-row,
  .pc-market-wrap,
  .mobile-home-sections {
    display: contents;
  }

  .mine-pc-actions {
    display: none !important;
  }

  .banner-section {
    display: block;
    width: 100%;
  }

  .banner-carousel {
    display: block;
    width: 100%;
    height: 200px;
  }

  .tab-page-header-main,
  .tab-page-header-desc {
    display: none !important;
  }

  .sub-page .tab-page-header--subpage .tab-page-header-main {
    display: block !important;
  }

  .tab-page-header {
    min-height: 44px;
    padding: 0 4px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .tab-page-header--sub {
    min-height: 44px;
    padding: 0 4px;
    align-items: center;
  }

  .product-game-tag,
  .product-meta-tags {
    display: none;
  }

  .product-info-foot {
    display: contents;
  }
}

/* 分享弹层：电脑端居中对话框，复制按钮在顶部固定可见 */
@media (min-width: 768px) {
  .share-sheet-dock {
    top: 0;
    bottom: 0;
    align-items: center;
    padding: 24px 16px;
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .share-sheet-dock.is-open {
    transform: translateY(0);
    opacity: 1;
  }

  .share-sheet {
    width: min(420px, calc(100vw - 48px));
    border-radius: 16px;
    padding-bottom: 16px;
    box-shadow: 0 16px 48px rgba(15, 76, 129, 0.18);
  }

  .share-sheet-scroll {
    max-height: min(32vh, 220px);
  }

  .share-sheet-btn--primary:hover {
    filter: brightness(1.05);
  }
}
