    /* ----- 顶部固定悬浮导航 (简洁悬浮) ----- */
.top-bar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 64px;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: saturate(180%) blur(12px);
      -webkit-backdrop-filter: saturate(180%) blur(12px);
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 18px;
      z-index: 999;
      border-bottom: 1px solid rgba(0, 0, 0, 0.02);
      transition: background 0.2s;
    }

    /* 为了模拟“民航”感，加一个小装饰 */
    .top-bar::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 20px;
      right: 20px;
      height: 2px;
      background: linear-gradient(90deg, #2b7fff, #7b68ee, #2b7fff);
      opacity: 0.3;
      border-radius: 4px;
    }

    .top-bar .brand {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      font-size: 1.2rem;
      color: #0b1e33;
      letter-spacing: -0.3px;
    }

    .top-bar .brand i {
      color: #2b7fff;
      font-size: 1.6rem;
    }

    .top-bar .brand span {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 600;
    }

    .top-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .top-actions a {
      text-decoration: none;
      color: #1e2f44;
      font-size: 0.95rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 6px 10px;
      border-radius: 30px;
      transition: all 0.15s;
      background: transparent;
    }

    .top-actions a i {
      font-size: 1.1rem;
      color: #2b4f7a;
    }

    .top-actions a:hover {
      background: rgba(43, 127, 255, 0.08);
      color: #1a4f8b;
    }

    .top-actions a:active {
      transform: scale(0.96);
    }

    /* 高亮 “我的” 入口 */
    .top-actions .profile-link {
      background: rgba(43, 127, 255, 0.12);
      border-radius: 30px;
      padding: 4px 6px 4px 6px;
    }

    .top-actions .profile-link i {
      color: #2b7fff;
    }

    /* 分隔符 (装饰) */
    .divider-dot {
      width: 4px;
      height: 4px;
      background: #cbd5e1;
      border-radius: 50%;
      display: inline-block;
      margin: 0 2px;
    }

    /* ----- 主内容 ----- */
    .container {
      width: 100%;
      max-width: 632px;  /* 手机尺寸 */
      padding: 16px 16px 30px;
    }

    /* 欢迎横幅 */
    .welcome-banner {
      background: linear-gradient(145deg, #eef4ff, #ffffff);
      border-radius: 28px;
      padding: 10px 20px;
      margin-bottom: 24px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.7);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .welcome-banner h2 {
      font-size: 1.2rem;
      font-weight: 600;
      color: #0b1e33;
    }

    .welcome-banner p {
      font-size: 0.9rem;
      color: #4a5f7a;
      margin-top: 4px;
    }

    .welcome-banner .badge-icon {
      background: #2b7fff;
      color: white;
      width: 100px;
      height: 100px;
      border-radius: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      box-shadow: 0 6px 12px rgba(43, 127, 255, 0.2);
    }
	 
    .ge-icon {
      color: white;
      width: 50px;
      height: 20px;
      border-radius: 0px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      box-shadow: 0 6px 12px rgba(43, 127, 255, 0.2);
    }
	 	 
    .ge-ic {
      color: white;
      width: 24px;
      height: 24px;
      border-radius: 0px;
	  margin-top:3px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
    
    }

    /* 商品卡片网格 */
    .product-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 6px;
    }

    .product-card {
      background: #ffffff;
      border-radius: 24px;
      padding: 14px 12px 16px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
      transition: all 0.15s;
      border: 1px solid rgba(0, 0, 0, 0.02);
      display: flex;
      flex-direction: column;
    }

    .product-card:active {
      transform: scale(0.97);
      background: #f8faff;
    }

    .product-img {
      background: #f0f4fe;
      height: 180px;
		width: 100%;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2b7fff;
      font-size: 2.4rem;
      margin-bottom: 12px;
      transition: background 0.1s;
      overflow: hidden;  /* 确保图片不溢出圆角 */
    }

    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;  /* 图片填充容器，保持比例 */
      display: block;
    }

    .product-card h4 {
      font-weight: 600;
      font-size: 0.95rem;
      color: #0b1e33;
      margin-bottom: 4px;
    }

    .product-card .price {
      font-weight: 700;
      color:hsla(359,100%,59%,1.00);
      font-size: 1.1rem;
      margin-top: 4px;
    }

    .product-card .price small {
      font-weight: 400;
      font-size: 0.7rem;
      color: #6b7f99;
      margin-left: 4px;
      text-decoration: line-through;
    }

    .product-card .action-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 10px;
    }

    .product-card .action-row .btn-buy {
      background: #2b7fff;
      border: none;
      color: white;
      font-weight: 500;
      padding: 6px 14px;
      border-radius: 30px;
      font-size: 0.8rem;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 2px 6px rgba(43, 127, 255, 0.3);
      transition: all 0.1s;
      cursor: default;
    }

    .product-card .action-row .btn-buy i {
      font-size: 0.7rem;
    }

    .product-card .action-row .fav {
      color: #9aaec9;
      font-size: 0.8rem;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .product-card .action-row .fav i {
      font-size: 1rem;
    }

    /* 底部占位提示 */
    .footnote {
      text-align: center;
      margin-top: 28px;
      font-size: 0.8rem;
      color: #889bb3;
      letter-spacing: 0.3px;
      border-top: 1px solid #eef2f7;
      padding-top: 20px;
    }

    .footnote i {
      color: #ccd9e9;
      margin: 0 3px;
    }

    /* 简单响应式调整 */
    @media (max-width: 380px) {
      .top-bar .brand {
        font-size: 1rem;
      }
      .top-actions a {
        font-size: 0.8rem;
        padding: 4px 8px;
      }
      .top-actions a i {
        font-size: 0.9rem;
      }
    }

    /* 模拟 “登录/注册” 的微交互 (纯展示) */
    .demo-toast {
      display: none;
    }

    /* 为移动端点击增加触感 */
    a, .product-card, .btn-buy {
      -webkit-tap-highlight-color: transparent;
    }
  a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:active {
    text-decoration: none;
}

        /* ----- 推荐 ----- */
        .recommend-section {
            margin: 16px 0px 16px;
            background: #ffffff;
            border-radius: 16px;
            padding: 12px 14px 14px;
            border: 1px solid #f0f2f6;
        }

        .recommend-section .rec-title {
            font-size: 0.8rem;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .rec-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .rec-grid .rec-item {
            background: #f9fafc;
            border-radius: 12px;
            padding: 8px 6px 6px;
            text-align: center;
            font-size: 0.9rem;
            color: #333;
			text-align: left
        }

        .rec-grid .rec-item .rec-icon {
            font-size: 1.8rem;
            display: block;
            margin-bottom: 4px;
        }

        .rec-grid .rec-item .rec-price {
            color: #ff3b30;
            font-weight: 600;
            font-size: 0.7rem;
        }

        /* ===== 底部固定栏 ===== */
        .bottom-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            max-width: 300px;
            margin: 0 auto;
            background: #ffffff;
            border: 1px solid #e8ecf2;
            padding: 8px 16px 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 -2px 12px rgba(0,0,0,0.04);
            z-index: 100;
            width: 100%;
        }

        @media (min-width: 421px) {
            .bottom-bar {
                border-radius: 16px 16px 0 0;
            }
        }

        .bottom-bar .left-icons {
            display: flex;
            gap: 14px;
            align-items: center;
        }

        .bottom-bar .left-icons .icon-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.5rem;
            color: #666;
            gap: 1px;
            cursor: default;
        }

        .bottom-bar .left-icons .icon-item i {
            font-size: 1.3rem;
            font-style: normal;
            line-height: 1;
        }

        .bottom-bar .right-btns {
            display: flex;
            gap: 4px;
        }

        .btn-cart {
            background: #f8c23d;
            padding: 0.5rem 1.4rem;
			width: 30%;
			height: 100%;
            border-radius: 60px;
            font-weight: 600;
            color: #1a1a1a;
            font-size: 0.85rem;
            border: none;
            cursor: default;
            white-space: nowrap;
            box-shadow: 0 4px 10px rgba(240, 180, 40, 0.15);
			text-align: center;
        }

        .btn-buyooo {
            background: #ff3b30;
            padding: 0.5rem 1.4rem;
			width: 80%;
            border-radius: 60px;
            font-weight: 600;
            color: white;
            font-size: 0.85rem;
            border: none;
            cursor: default;
            white-space: nowrap;
            box-shadow: 0 4px 12px rgba(255, 59, 48, 0.2);
			text-align: center;
        }

        .footer-meta {
            padding: 6px 16px 0;
            font-size: 0.55rem;
            color: #999;
            display: flex;
            justify-content: flex-end;
            gap: 12px;
            border-top: 1px solid #f0f2f6;
            margin-top: 8px;
        }
		
		
		    .product-img {
      background: #f0f4fe;
      height: 180px;
		width: 100%;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2b7fff;
      font-size: 2.4rem;
      margin-bottom: 12px;
      transition: background 0.1s;
      overflow: hidden;  /* 确保图片不溢出圆角 */
    }

    .sub-detail {
      font-size: 0.7rem;
      color: #7a7a7a;
      background: #f6f2ed;
      padding: 4px 8px;
      border-radius: 30px;
      display: inline-block;
      margin-top: 8px;
    }

.roc-ikkcon {          
          color: #7a7a7a;
        }