/** 页面主容器 **/
[v-cloak] {
  display: none !important;
}

.template {
  display: none;
}

.goods-list-main {
  padding: 0;
  /* 左侧固定 240px 侧边栏，主内容右移 */
  margin-left: 240px;
  background: var(--color-slate-50);
  min-height: 100vh;
  background-image: radial-gradient(at 0% 0%, rgba(0, 82, 217, 0.01) 0, transparent 50%),
    radial-gradient(at 50% 0%, rgba(0, 82, 217, 0.01) 0, transparent 50%);
}

.goods-page-container {
  display: flex;
  min-height: calc(100vh - 60px);
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

/** 左侧边栏 — 现代化设计 **/
.left-sidebar {
  position: fixed !important;
  left: 0;
  top: 0 !important;
  bottom: 0;
  width: 240px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-right: 1px solid #e2e8f0;
  flex-shrink: 0;
  z-index: 9999 !important;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, margin-left 0.3s ease;
}

/* 兼容布局：为主内容区预留 240px 基础宽度，确保不因 fixed 被遮挡 */
.goods-list-main {
  margin-left: 240px;
}

/* ── ① Logo 区域 ── */
.sidebar-logo {
  flex-shrink: 0;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  border-bottom: 1px solid #e2e8f0;
  box-sizing: border-box;
  overflow: hidden !important;
}

.sidebar-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center horizontally */
  text-decoration: none !important;
  width: 100%;
  overflow: hidden;
}

.sidebar-logo-img {
  max-height: 28px !important;
  max-width: 140px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.sidebar-logo-text {
  font-size: 15px;
  font-weight: 700;
  color: #1a1d2e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── ② 返回按钮区域 (单行横排布局) ── */
.sidebar-back-area {
  flex-shrink: 0;
  padding: 10px 14px;
  border-bottom: 1px solid #f0f0f0;
  background: #fafbfc;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  white-space: nowrap;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #666;
  text-decoration: none !important;
  font-weight: 500;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.back-link:hover {
  color: var(--color-primary);
}

.back-link i {
  font-size: 14px;
  font-weight: bold;
}

.region-text {
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}


/* ── ③ 搜索框（固定，不滚动） ── */
.sidebar-search {
  flex-shrink: 0;
  padding: 14px 16px;
  border-bottom: 1px solid #e2e8f0;
  background: #ffffff;
}

.sidebar-search .el-input__inner {
  height: 40px;
  line-height: 40px;
  border-radius: 10px;
  font-size: 14px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
}

.sidebar-search .el-input__inner:focus {
  border-color: #3b82f6;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.sidebar-search .el-input__prefix {
  left: 12px;
}

.sidebar-search .el-input__prefix i {
  color: #94a3b8;
}

/* ── ④ 可滚动菜单树 ── */
.group-menu-tree {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px 0;
  scrollbar-width: thin;
  scrollbar-color: #dde2e8 transparent;
}

.group-menu-tree::-webkit-scrollbar {
  width: 4px;
}

.group-menu-tree::-webkit-scrollbar-track {
  background: transparent;
}

.group-menu-tree::-webkit-scrollbar-thumb {
  background: #dde2e8;
  border-radius: 4px;
}

.group-menu-tree::-webkit-scrollbar-thumb:hover {
  background: #b0bac6;
}

.first-group-item {
  margin-bottom: 2px;
}

.first-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  margin: 0 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  transition: all 0.2s ease;
  user-select: none;
  border-radius: 8px;
}

.first-group-title:hover {
  background: #f1f5f9;
  color: #2563eb;
}

.first-group-title.active {
  background: #eff6ff;
  color: #2563eb;
}

.second-group-list {
  background: #fff;
  padding: 4px 0 12px;
}

.second-group-item {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px;
  position: relative;
  color: #64748b;
  transition: all 0.2s ease;
  border-radius: 6px;
  margin: 3px 10px;
}

.side-icon {
  margin-right: 10px;
  color: #bfbfbf;
  font-size: 14px;
}

.second-group-item.active .side-icon {
  color: var(--color-primary);
}

/* 旋转指示图标样式 */
.expand-icon {
  margin-left: auto;
  font-size: 11px;
  color: #c0c4cc;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.expand-icon.is-expanded {
  transform: rotate(90deg);
  color: var(--color-primary);
}

/* 分组描述标签 - 右上角 */
.group-tag {
  position: absolute;
  top: 6px;
  right: 8px;
  background: linear-gradient(135deg, #ff0000 0%, #ff3333 100%);
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 0;
  line-height: 1;
  box-shadow: 0 2px 4px rgba(255, 0, 0, 0.35);
  z-index: 2;
}

.group-tag:empty {
  display: none !important;
}

/* 二级菜单 — 自然展开动画 (Vue Transition) */
.sidebar-menu-enter-active,
.sidebar-menu-leave-active {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 1200px;
  overflow: hidden;
}

.sidebar-menu-enter,
.sidebar-menu-leave-to {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
}

.second-group-list {
  background: #fdfdfd;
  transform-origin: top;
  padding: 4px 0 12px;
}

.second-group-item:hover {
  color: #2563eb;
  background: #f8fafc;
}

.second-group-item.active {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #2563eb;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(37, 99, 235, 0.1);
}

.first-group-title .title-accent {
  width: 3px;
  height: 16px;
  background: #cbd5e0;
  border-radius: 2px;
  margin-right: 10px;
  transition: all 0.2s ease;
}

.first-group-title:hover .title-accent {
  background: #93c5fd;
}

.first-group-title.active .title-accent {
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  height: 18px;
}

/* 右侧主内容区 */
.right-content {
  flex: 1;
  padding: 28px 28px 28px 28px;
  background: linear-gradient(160deg, #e8f4ff 0%, #f0f7ff 40%, #f8fafc 100%);
  min-height: calc(100vh - 64px);
  position: relative;
  transition: all 0.3s ease;
  width: auto !important;
  max-width: none !important;
}

/* 顶部海报区 - 背景图+内容叠加（桌面端，与移动端风格统一） */
.top-banner-area {
  width: 100%;
  height: 200px;
  margin-bottom: 24px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: stretch;
  box-shadow: 0 8px 32px rgba(0, 82, 217, 0.18), 0 2px 8px rgba(0,0,0,0.08);
}

/* 背景图层 — 绝对定位铺满容器 */
.banner-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.banner-bg-layer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
  transition: transform 0.6s ease;
}

.top-banner-area:hover .banner-bg-layer img {
  transform: scale(1.08);
}

/* 渐变遮罩 — 与移动端一致：整体半透明深色，左侧更深 */
.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(5, 15, 50, 0.78) 0%,
    rgba(10, 30, 80, 0.55) 45%,
    rgba(10, 30, 80, 0.25) 75%,
    rgba(10, 30, 80, 0.10) 100%
  );
}

/* 底部光晕装饰线 */
.banner-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1890ff 0%, #40a9ff 50%, transparent 100%);
  opacity: 0.8;
}

/* 海报区右侧装饰光晕 */
.top-banner-area::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(24, 144, 255, 0.18) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* 内容层 */
.banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px;
  box-sizing: border-box;
}

.banner-left {
  flex: 1;
  min-width: 0;
}

/* 面包屑 */
.banner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.breadcrumb-item {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  letter-spacing: 0.3px;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.breadcrumb-sep {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
}

/* 海报标题 */
.banner-title {
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 海报描述 */
.banner-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.80);
  margin: 0;
  line-height: 1.7;
  max-width: 540px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* 右侧区域 */
.banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 24px;
}

/* 分组标签 */
.banner-tag {
  background: linear-gradient(135deg, #ff4d4f 0%, #ff7875 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 0;
  box-shadow: 0 4px 14px rgba(255, 77, 79, 0.50);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* 统计信息 */
.banner-stats {
  display: flex;
  gap: 10px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.80);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  white-space: nowrap;
}

.stat-item i {
  font-size: 13px;
}

/* 登录提示条 */
.login-notice-bar {
  background: linear-gradient(90deg, #e6f7ff 0%, #f0f9ff 100%);
  border: 1px solid #91d5ff;
  border-radius: 0;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #555;
  box-shadow: 0 2px 8px rgba(24, 144, 255, 0.08);
}

.login-notice-bar .el-icon-info {
  color: #1890ff;
  margin-right: 8px;
  font-size: 16px;
}

.login-notice-bar .login-link {
  color: #1890ff;
  cursor: pointer;
  text-decoration: underline;
}

.login-notice-bar .login-link:hover {
  color: #40a9ff;
}

/* 移动端分组标题区 */
.mobile-group-header {
  display: none;
  background: #fff;
  padding: 16px;
  margin: -24px -24px 16px -24px;
  border-bottom: 1px solid #e8e8e8;
}

/* 移动端海报背景层 */
.mobile-banner-bg {
  display: none;
}

/* 移动端内容层 */
.mobile-group-content {
  position: relative;
  z-index: 1;
}

.mobile-group-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.mobile-group-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  flex: 1;
  min-width: 0;
}

.mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.4);
}

.mobile-menu-btn:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-1px);
}

.mobile-menu-btn i {
  font-size: 14px;
}

.mobile-home-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}

.mobile-home-btn:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-1px);
}

.mobile-home-btn i {
  font-size: 14px;
}

.mobile-home-btn i {
  font-size: 14px;
}

.mobile-group-desc {
  font-size: 13px;
  color: #1890ff;
  line-height: 1.8;
  background: #fff;
  border: 1px solid #1890ff;
  padding: 12px 14px;
  border-radius: 8px;
}

/* 分组描述区 - 与移动端一致：白色背景 + 蓝色字体 + 蓝色边框 */
.group-description-box {
  background: #fff !important;
  border: 1px solid #1890ff !important;
  border-radius: 0;
  padding: 16px 18px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #1890ff !important;
  line-height: 1.8;
  position: relative;
}

.group-description-box::before {
  display: none;
}

.group-description-box h1,
.group-description-box h2,
.group-description-box h3,
.group-description-box p,
.group-description-box span,
.group-description-box .group-desc-content {
  margin-top: 0;
  color: #1890ff !important;
  font-size: 14px;
  font-weight: 500;
}

.group-description-box p {
  margin-bottom: 8px;
}

.group-description-box a {
  color: #1890ff;
  text-decoration: underline;
}

/* 活动信息条 */
.activity-bar {
  background: #f6ffed;
  border: 1px solid #b7eb8f;
  border-radius: 0;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #52c41a;
}

.activity-bar .el-icon-success {
  color: #52c41a;
  margin-right: 8px;
  font-size: 16px;
}

/* 分组描述显示区 (重复定义清理并保持样式一致) */
.group-description-box.secondary-style {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 0;
  padding: 24px 32px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.group-description-box .group-desc-content {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-slate-600);
}

/* 智感富文本深度美化规范 */
.group-desc-content table,
.config-list table {
  width: 100% !important;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--color-slate-200);
  border-radius: 8px;
  overflow: hidden;
  margin: 16px 0;
}

.group-desc-content table th,
.config-list table th {
  background: var(--color-slate-50);
  color: var(--color-slate-900);
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--color-slate-200);
}

.group-desc-content table td,
.config-list table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-slate-100);
  color: var(--color-slate-600);
}

.group-desc-content table tr:last-child td,
.config-list table tr:last-child td {
  border-bottom: none;
}

/* 列表美化 */
.group-desc-content ul,
.config-list ul {
  padding-left: 0;
  list-style: none;
}

.group-desc-content li,
.config-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  display: block;
}

.group-desc-content li::before,
.config-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

/* 产品网格 - 固定卡片宽度，超出自动换行 */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

/* 产品卡片 */
.product-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 0;
  padding: 40px 28px 0 28px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
  overflow: hidden;
}

/* 产品卡片顶部hover效果改为直角 */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  border-radius: 0;
  transition: background 0.3s ease;
}

.product-card:hover::before {
  background: var(--color-primary);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

/* 库存标签 */
.stock-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 0;
  font-weight: 500;
}

.stock-tag .in-stock {
  color: #52c41a;
  background: #f6ffed;
  border: 1px solid #b7eb8f;
  border-radius: 0;
}

.stock-tag .out-stock {
  color: #ff4d4f;
  background: #fff1f0;
  border: 1px solid #ffa39e;
  border-radius: 0;
}

/* 产品头部 */
/* 产品头部 - 几何SVG背景 */
.product-header {
  margin-bottom: 20px;
  padding: 20px 15px 15px 15px;
  margin: -40px -28px 20px -28px;
  position: relative;
  background: 
    linear-gradient(135deg, rgba(58, 122, 254, 0.03) 0%, rgba(24, 144, 255, 0.03) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cpattern id='geo-pattern2' x='0' y='0' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Cpolygon points='20,2 38,20 20,38 2,20' fill='none' stroke='%233a7afe' stroke-width='0.8' opacity='0.3'/%3E%3Cpolygon points='20,10 30,20 20,30 10,20' fill='none' stroke='%231890ff' stroke-width='0.5' opacity='0.25'/%3E%3Ccircle cx='20' cy='20' r='3' fill='%233a7afe' opacity='0.2'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23geo-pattern2)'/%3E%3C/svg%3E");
  background-size: cover, 60px 60px;
  overflow: hidden;
  border-bottom: 1px solid #f1f4f8;
}

/* 标题背景装饰线 */
.product-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3a7afe 0%, #1890ff 50%, #3a7afe 100%);
  opacity: 0.6;
}

.product-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(58, 122, 254, 0.3) 50%, transparent 100%);
}

.product-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-slate-900);
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.cpu-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--color-primary);
  background: rgba(0, 82, 217, 0.08);
  border-radius: 0;
  padding: 4px 12px;
  font-weight: 600;
}

/* 1:1 复刻参考图样式系统 */

/* 产品卡片复刻版 - 现代化设计 */
.product-card-replica {
  background: #ffffff;
  border-radius: 0 !important;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 6px rgba(0, 82, 217, 0.04), 0 1px 3px rgba(0,0,0,0.03);
  border: 1px solid rgba(220, 232, 248, 0.8);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  width: 400px;
  flex-shrink: 0;
}

.product-card-replica:hover {
  box-shadow: 0 6px 20px rgba(24, 144, 255, 0.12), 0 2px 8px rgba(0,0,0,0.05);
  border-color: rgba(24, 144, 255, 0.25);
  transform: translateY(-2px);
}

/* 顶部面包屑导航 */
.breadcrumb-nav {
  display: flex !important;
  align-items: center;
  margin-bottom: 24px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  min-height: 48px;
  position: sticky;
  top: 0;
  z-index: 5;
}

.back-link {
  color: #8a8a8a;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-right: 8px;
}

.back-link:hover {
  color: var(--color-primary);
}

.region-text {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* 购物车悬浮按钮 - 白色半透明背景+蓝色图标 */
.cart-float-btn {
  position: fixed;
  right: 16px;
  bottom: 140px;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.1),
    0 1px 4px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1890ff;
  font-size: 24px;
  cursor: pointer;
  z-index: 9997;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(24, 144, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cart-float-btn:hover {
  transform: translateY(-4px) scale(1.05);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.cart-float-btn:active {
  transform: translateY(-2px) scale(1.02);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.cart-float-btn i {
  font-size: 24px;
  color: #1890ff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

/* 购物车徽标 */
.cart-float-btn .cart-badge {
  display: block;
  width: 100%;
  height: 100%;
}

.cart-float-btn .cart-badge .el-badge__content {
  background: #ff0000;
  color: #fff;
  border: 2px solid #ff0000;
  font-weight: bold;
  font-size: 10px;
  width: 18px;
  height: 18px;
  line-height: 14px;
  padding: 0;
  top: -4px;
  right: 22px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(255, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 桌面端购物车悬浮按钮 */
@media screen and (min-width: 769px) {
  .cart-float-btn {
    display: none;
  }
  
  .cart-float-btn.desktop-cart-btn {
    display: flex !important;
    right: 24px;
    bottom: 40px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    box-shadow: 
      0 8px 24px rgba(0, 0, 0, 0.12),
      0 2px 8px rgba(0, 0, 0, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }
  
  .cart-float-btn.desktop-cart-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
      0 12px 32px rgba(0, 0, 0, 0.15),
      0 4px 12px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
  
  .cart-float-btn.desktop-cart-btn i {
    font-size: 26px;
  }
  
  .cart-float-btn.desktop-cart-btn .cart-badge .el-badge__content {
    right: 24px;
    width: 20px;
    height: 20px;
    font-size: 10px;
    line-height: 14px;
  }
}

/* 产品卡片内所有文本使用固定字体大小 - 防止缩放 */
.product-card-replica,
.product-card-replica * {
  -webkit-text-size-adjust: none !important;
  text-size-adjust: none !important;
  font-size-adjust: none !important;
}

.stock-status {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 11px;
  color: #16a34a;
  font-weight: 600;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid rgba(22, 163, 74, 0.25);
  padding: 3px 8px;
  border-radius: 0;
  letter-spacing: 0.3px;
}

.stock-status.out-of-stock {
  color: #dc2626;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border: 1px solid rgba(220, 38, 38, 0.25);
}

/* 集中化头部 - 渐变背景（两处定义合并为最终版） */
.card-header-replica {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 10px 0;
  padding: 10px 16px 8px;
  min-height: 44px;
  background: linear-gradient(135deg, #eaf3ff 0%, #f0f7ff 50%, #f5f9ff 100%);
  border-bottom: 1px solid rgba(33, 150, 243, 0.08);
  position: relative;
  overflow: hidden;
  border-radius: 0 !important;
}

.card-header-replica::before {
  display: none;
}

.card-header-replica::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24, 144, 255, 0.30), transparent);
}

/* 产品卡片 favicon */
.card-favicon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: inline-block;
  vertical-align: top;
  margin-right: 8px;
  margin-top: 1px;
  opacity: 0.85;
  flex-shrink: 0;
}

.product-name {
  font-size: 18px !important;
  font-weight: 700;
  color: #0d2a5e;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.4;
  word-break: break-word;
  white-space: normal;
  letter-spacing: 0.2px;
}

.specs-list-replica {
  flex: 1;
  margin-bottom: 10px;
  padding: 0 16px;
}

/* 针对 v-html 渲染的参数列表美化 */
.config-list-replica ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.config-list-replica li {
  padding-left: 16px;
  position: relative;
  font-size: 13px !important;
  color: #4a5568;
  margin-bottom: 6px;
  line-height: 1.5;
}

.config-list-replica li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  background: #1890ff;
  border-radius: 0;
}

.card-footer-replica {
  border-top: 1px solid rgba(210, 228, 255, 0.7);
  padding: 12px 0 0 0;
  margin: 0;
  background: linear-gradient(180deg, #f5f9ff 0%, #eef4ff 100%);
  width: 100%;
  border-radius: 0 !important;
}

  .price-container-replica {
    margin-bottom: 12px;
    padding: 0 16px 0 16px;
  }

.price-main {
  color: #ff4d4f;
  font-weight: 700;
  display: flex;
  align-items: baseline;
}

.price-main .currency {
  font-size: 14px;
  margin-right: 2px;
}

.price-main .value {
  font-size: 26px !important;
  letter-spacing: -0.5px;
}

.price-main .unit {
  font-size: 13px !important;
  color: #718096;
  margin-left: 4px;
  font-weight: 500;
}

.discount-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.discount-badge {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff4d4f 100%);
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 0;
  font-weight: 500;
}

.price-old {
  font-size: 13px;
  color: #a0aec0;
  text-decoration: line-through;
}

/* 按钮组容器 */
.card-buttons-group {
  display: flex;
  gap: 0;
  width: 100%;
  margin: 0;
}

/* 加入购物车按钮 */
.cart-btn-replica {
  flex: 1;
  background: #fff !important;
  color: #1890ff !important;
  border: 1px solid rgba(24, 144, 255, 0.45) !important;
  border-right: none !important;
  height: 40px !important;
  border-radius: 0 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  margin: 0 !important;
  box-shadow: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  padding: 0 4px !important;
  min-width: 0 !important;
  line-height: 38px !important;
}

.cart-btn-replica:hover {
  background: #e6f7ff !important;
  color: #096dd9 !important;
}

.cart-btn-replica:disabled {
  background: #f5f5f5 !important;
  color: #bbb !important;
  border-color: #ddd !important;
  cursor: not-allowed;
}

.cart-btn-replica i {
  margin-right: 2px;
  font-size: 13px;
}

/* 立即购买按钮 */
.buy-btn-replica {
  flex: 1;
  background: linear-gradient(135deg, #1890ff 0%, #40a9ff 100%) !important;
  color: #fff !important;
  border: none !important;
  height: 40px !important;
  border-radius: 0 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  margin: 0 !important;
  box-shadow: 0 2px 8px rgba(24, 144, 255, 0.4) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  padding: 0 4px !important;
  min-width: 0 !important;
  line-height: 40px !important;
}

.buy-btn-replica:hover {
  background: linear-gradient(135deg, #096dd9 0%, #1890ff 100%) !important;
  box-shadow: 0 2px 12px rgba(24, 144, 255, 0.45) !important;
}

.buy-btn-replica:disabled {
  background: #cbd5e0 !important;
  box-shadow: none !important;
  cursor: not-allowed;
}

/* 蓝色通告栏 */
.info-notice-card {
  background: linear-gradient(90deg, #e6f4ff 0%, #f0f8ff 100%);
  border: 1px solid #bae0ff;
  border-radius: 0;
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  margin-top: 24px;
  box-shadow: 0 2px 8px rgba(24, 144, 255, 0.06);
}

.notice-icon {
  font-size: 22px;
  color: #1890ff;
  margin-top: 4px;
}

.notice-text {
  font-size: 13px;
  color: #333;
  line-height: 1.8;
}

.notice-text p {
  margin: 0;
}

.text-danger {
  color: #ff4d4f;
  font-weight: 600;
}

.text-primary {
  color: #1890ff;
  font-weight: 600;
}

.link-support {
  color: #1890ff;
  text-decoration: none;
}

/* 侧边栏样式精修 (1:1 复刻参考图) */
.left-sidebar {
  width: 240px;
  background: #fdfdfd;
  border-right: 1px solid #eee;
  flex-shrink: 0;
  position: fixed;
  left: 0;
  top: 64px;
  bottom: 0;
  overflow-y: auto;
  z-index: 10;
  transition: all 0.3s ease;
}

.sidebar-search {
  padding: 15px 12px;
}

.sidebar-search .el-input__inner {
  border-radius: 2px !important;
  background: #fff !important;
  height: 32px !important;
  line-height: 32px !important;
  font-size: 12px !important;
  border-color: #dcdfe6 !important;
}

.first-group-title {
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 500;
  color: #606266;
  border-bottom: 1px solid #f2f6fc;
}

.first-group-title .el-icon-arrow-right {
  margin-left: auto;
  font-size: 12px;
  transition: transform 0.3s;
}

.first-group-title .el-icon-arrow-right.is-open {
  transform: rotate(90deg);
}

.second-group-item {
  position: relative;
  padding: 12px 15px 12px 20px;
  font-size: 13px;
  color: #333;
  transition: all 0.2s;
  display: flex !important;
  align-items: center;
  border-left: 3px solid transparent;
  margin: 0 !important;
  border-radius: 0 !important;
}

.second-group-item:hover {
  background: #f5f7fa;
  color: var(--color-primary);
}

.second-group-item.active {
  background: #e6f7ff !important;
  color: var(--color-primary) !important;
  border-left-color: var(--color-primary);
}

.side-icon {
  margin-right: 8px;
  width: 16px;
  text-align: center;
  font-size: 14px;
}

/* 配置列表区域 */
.config-list {
  flex: 1;
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 12px;
  overflow: hidden;
}

/* 纯文本解析的配置列表 */
.config-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.config-list li {
  display: flex;
  justify-content: space-between;
  padding: 2px 0;
  gap: 8px;
}

.config-list .config-key {
  color: #999;
  flex-shrink: 0;
  white-space: nowrap;
}

.config-list .config-value {
  color: #333;
  text-align: right;
  word-break: break-all;
}

/* HTML格式的描述样式 - 支持自定义CSS */
.product-card .config-list {
  /* 允许内部样式生效 */
  all: revert;
}

.product-card .config-list>* {
  all: revert;
}

/* 基础样式重置，避免冲突 */
.product-card .config-list p {
  margin: 4px 0;
  line-height: 1.6;
}

.product-card .config-list br {
  display: block;
  content: "";
  margin: 4px 0;
}

.product-card .config-list table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.product-card .config-list table td,
.product-card .config-list table th {
  padding: 4px 8px;
  border: 1px solid #e8e8e8;
}

.product-card .config-list img {
  max-width: 100%;
  height: auto;
}

.product-card .config-list ul,
.product-card .config-list ol {
  margin: 4px 0;
  padding-left: 16px;
}

.product-card .config-list li {
  display: list-item;
  margin: 2px 0;
}

/* 支持style标签内的CSS样式 */
.product-card style {
  display: none;
}

/* 特性标签 */
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.feature-tags .tag {
  font-size: 11px;
  color: #666;
  background: #f5f5f5;
  padding: 3px 8px;
  border-radius: 0;
}

/* 价格区域 */
.price-section {
  margin-bottom: 12px;
  padding-top: 12px;
  border-top: 1px dashed #e8e8e8;
}

.main-price {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4px;
}

.main-price .currency {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 700;
  margin-top: 6px;
  margin-right: 2px;
}

.main-price .amount {
  font-size: 32px;
  color: var(--color-primary);
  font-weight: 800;
  margin: 0 2px;
  letter-spacing: -1px;
}

.main-price .unit {
  font-size: 14px;
  color: var(--color-slate-400);
}

.trial-price {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

.original-price {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  margin-top: 4px;
}

/* 购买按钮 */
.buy-section {
  margin-top: auto;
  width: calc(100% + 56px);
  margin-left: -28px;
  margin-right: -28px;
  margin-bottom: 0;
}

.buy-btn {
  width: 100%;
  height: 48px;
  border-radius: 0;
  font-size: 15px;
  font-weight: 600;
  background: var(--color-slate-900);
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
}

.buy-btn:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.buy-btn:disabled {
  background: var(--color-slate-200);
  color: var(--color-slate-400);
}

/* 底部声明 */
.footer-notice {
  background: #fff1f0;
  border: 1px solid #ffa39e;
  border-radius: 0;
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  font-size: 12px;
  color: #ff4d4f;
  line-height: 1.6;
}

.footer-notice .el-icon-warning {
  margin-right: 8px;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* 无产品提示 */
.no-goods {
  grid-column: 1 / -1;
  padding: 60px 20px;
}

/* 加载提示 */
.tips {
  color: #8692b0;
  font-size: 13px;
  text-align: center;
  padding: 20px;
  grid-column: 1 / -1;
}

/** 域名区域 **/
.domain-section {
  margin-left: 220px;
  padding: 20px;
}

.domain-box {
  background: #fff;
  border-radius: 4px;
  padding: 20px;
}

.domain-box .register-type {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.domain-box .register-type .el-divider {
  background-color: #D8D8D8;
  margin: 0 0.24rem;
}

.domain-box .register-type .reg-ridio {
  font-size: 14px;
  color: #646464;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 4px;
}

.domain-box .register-type .reg-ridio.isActice {
  color: #1890ff;
  background: #e6f7ff;
}

.domain-box .domain-search {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.domain-box .domain-search .el-input {
  flex: 1;
  height: 48px;
}

.domain-box .domain-search .el-input .el-input__inner {
  height: 48px;
  line-height: 48px;
  font-size: 15px;
}

.domain-box .domain-search .suffix-box {
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2B2B2B;
  font-size: 14px;
  cursor: pointer;
  padding: 0 15px;
}

.domain-box .domain-search .search-button {
  height: 48px;
  padding: 0 40px;
  border: none;
  background: #1890ff;
  color: #ffffff;
  font-size: 15px;
  border-radius: 0 4px 4px 0;
}

.domain-box .domain-search .suffix-list {
  z-index: 2;
  position: absolute;
  top: 48px;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.domain-box .domain-search .suffix-list .suffix-item {
  margin: 6px;
  width: 90px;
  height: 36px;
  border: 1px solid #e6eaed;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #2B2B2B;
  cursor: pointer;
  border-radius: 4px;
}

.domain-box .domain-search .suffix-list .suffix-item:hover {
  background: rgba(24, 144, 255, 0.08);
  border-color: #1890ff;
}

.domain-box .domain-search .suffix-list .suffix-active {
  background: rgba(24, 144, 255, 0.08);
  border-color: #1890ff;
  color: #1890ff;
}

.domain-box .batch-search-box .batch-btn {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.domain-box .batch-search-box .batch-btn .upload-btn {
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-size: 14px;
  color: #1890ff;
  cursor: pointer;
}

.domain-box .domain-content {
  margin-top: 24px;
}

.domain-box .domain-content .domain-left .search-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: #2B2B2B;
  margin-bottom: 16px;
}

.domain-box .domain-content .domain-left .domain-list {
  background: #ffffff;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  overflow: hidden;
}

.domain-box .domain-content .domain-left .domain-list .domain-item {
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ededed;
  padding: 0 24px;
  transition: background-color 0.25s ease;
}

.domain-box .domain-content .domain-left .domain-list .domain-item:hover {
  background-color: #f5f7fa;
}

.domain-box .domain-content .domain-left .domain-list .domain-item .item-left .domain-name {
  font-size: 15px;
  color: #2B2B2B;
  font-weight: 500;
}

.domain-box .domain-content .domain-left .domain-list .domain-item .item-left .domain-status {
  margin-left: 16px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}

.domain-box .domain-content .domain-left .domain-list .domain-item .item-right {
  display: flex;
  align-items: center;
}

.domain-box .domain-content .domain-left .domain-list .domain-item .item-right .premium-type {
  padding: 4px 12px;
  margin-right: 16px;
  font-size: 13px;
  color: #8692b0;
  border-radius: 16px;
  background: #f3f3f5;
}

.domain-box .domain-content .domain-left .domain-list .domain-item .item-right .whois-box {
  font-size: 14px;
  color: #2B2B2B;
  cursor: pointer;
}

.domain-box .domain-content .domain-left .domain-list .domain-item .item-right .whois-box:hover {
  color: #1890ff;
}

.domain-box .domain-content .domain-left .domain-list .domain-item .item-right .pirce-box {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.domain-box .domain-content .domain-left .domain-list .domain-item .item-right .pirce-box .now-price {
  font-size: 13px;
  color: #ff4d4f;
}

.domain-box .domain-content .domain-left .domain-list .domain-item .item-right .add-btn {
  margin-left: 24px;
  height: 36px;
  border-radius: 4px;
}

.domain-box .domain-content .domain-left .start-search {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
}

.domain-box .domain-content .domain-left .start-search img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.domain-box .domain-content .domain-left .start-search p {
  font-size: 15px;
  color: #666;
}

/* 价格弹窗表格 */
.price-list {
  display: flex;
  font-size: 13px;
  background: #fff;
}

.price-list .price-item {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
}

.price-list .price-item:last-child {
  border-bottom: none;
}

.price-list .price-item>div {
  width: 80px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.price-list .price-item .price-year {
  background: #f8fafc;
  color: #666;
}

.price-list .price-item .price-new {
  color: #ff4d4f;
  font-weight: 500;
}

.price-list .price-item .price-renew {
  color: #666;
}

/* 上传弹窗 */
.up-dialog .el-dialog__header {
  display: none;
}

.up-dialog .el-dialog__body {
  padding: 40px;
}

.up-dialog .dia-title {
  font-size: 18px;
  color: #171725;
  font-weight: 500;
}

.up-dialog .dia-concent {
  margin-top: 20px;
}

.up-dialog .dia-concent .up-tips {
  font-size: 14px;
  color: #666;
}

.up-dialog .dia-concent .file-box {
  margin-top: 16px;
  display: flex;
  align-items: center;
}

.up-dialog .dia-concent .file-box .file-name {
  flex: 1;
  border: 1px solid #e6e7eb;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  background: #f5f5f5;
  font-size: 14px;
  border-radius: 4px 0 0 4px;
}

.up-dialog .dia-concent .file-box .file-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 40px;
  color: #4e5259;
  font-size: 14px;
  border: 1px solid #e6e7eb;
  border-left: none;
  background: #fff;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
}

.up-dialog .dia-foter {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 24px;
}

.up-dialog .dia-foter .confim-btn,
.up-dialog .dia-foter .cancel-btn {
  min-width: 90px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

.up-dialog .dia-foter .confim-btn {
  background: #1890ff;
  color: #fff;
}

.up-dialog .dia-foter .cancel-btn {
  margin-left: 12px;
  background: #f0f0f0;
  color: #666;
}

.el-popover {
  max-width: none;
}

/* 兼容原有样式 */
.main-title {
  font-size: 20px;
  color: #171725;
  margin-bottom: 16px;
}

.client-box {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #1890ff;
  padding: 4px 10px;
  color: #fff;
  font-size: 12px;
  border-radius: 0 4px 0 8px;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {

  /* 隐藏桌面端侧边栏 */
  .left-sidebar {
    display: none;
  }

  /* 移动端主内容取消左偏移 */
  .goods-list-main {
    margin-left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    padding: 0 !important;
  }

  /* 调整右侧内容区 */
  .right-content {
    margin-left: 0;
    padding: 0 12px 20px 12px !important;
    width: 100% !important;
  }

  /* 显示移动端分组标题区 */
  .mobile-group-header {
    display: block;
    position: relative;
    margin: 0 -12px 12px -12px;
    padding: 0;
    background: #1a1a2e;
    border-bottom: none;
    overflow: hidden;
    min-height: 100px;
  }

  /* 移动端标题行调整 */
  .mobile-group-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }

  .mobile-group-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    flex: 1;
    min-width: 0;
    margin-right: 8px;
  }

  .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.4);
  }

  .mobile-menu-btn:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-1px);
  }

  .mobile-menu-btn:active {
    background: rgba(255,255,255,0.15);
    transform: translateY(0);
  }

  .mobile-menu-btn i {
    font-size: 15px;
  }

  .mobile-home-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
  }

  .mobile-home-btn:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-1px);
  }

  .mobile-home-btn:active {
    background: rgba(255,255,255,0.15);
    transform: translateY(0);
  }

  .mobile-home-btn i {
    font-size: 15px;
  }

  /* 海报背景图层 */
  .mobile-banner-bg {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .mobile-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.55;
  }

  /* 内容层叠在背景上 */
  .mobile-group-content {
    position: relative;
    z-index: 1;
    padding: 16px;
  }

.mobile-group-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.mobile-group-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  flex: 1;
  min-width: 0;
}

.mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.4);
}

.mobile-menu-btn:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-1px);
}

.mobile-menu-btn i {
  font-size: 14px;
}

.mobile-home-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}

.mobile-home-btn:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-1px);
}

.mobile-home-btn i {
  font-size: 14px;
}

  .mobile-home-btn i {
    font-size: 14px;
  }

  .mobile-group-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 10px 14px;
    border-radius: 0;
    backdrop-filter: blur(4px);
  }

  /* 隐藏桌面端的分组描述（移动端已在顶部显示） */
  .group-description-box {
    display: none;
  }

  /* 移动端海报区域边距调整 */
  .top-banner-area {
    display: none;
  }

  /* 产品网格改为单列 */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 12px 0 !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* 产品卡片调整 */
  .product-card {
    padding: 16px;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  /* 移动端卡片标题 - 灰白色背景 */
  .card-header-replica {
    gap: 8px !important;
    margin: 0 0 10px 0 !important;
    padding: 12px 14px !important;
    min-height: 50px !important;
    align-items: flex-start !important;
    background: #f5f7fa;
    border-bottom: 1px solid #e8e8e8;
  }

  /* 移动端 favicon */
  .card-favicon {
    width: 18px !important;
    height: 18px !important;
  }

  .product-name {
    font-size: 17px !important;
    /* 增大标题字体 */
    margin-bottom: 0 !important;
    display: inline-block;
    vertical-align: top;
    line-height: 1.5 !important;
    word-break: break-word !important;
    white-space: normal !important;
  }

  /* 移动端产品卡片favicon图标 */
  .card-favicon {
    width: 22px !important;
    height: 22px !important;
    margin-right: 6px !important;
  }

  .cpu-tag {
    font-size: 13px !important;
    /* 增大标签字体 */
    padding: 4px 10px !important;
  }

  .config-list,
  .config-list-replica,
  .config-list-replica li,
  .config-list-replica p,
  .config-list-replica span,
  .config-list-replica div {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  .config-list-replica li {
    padding-left: 12px !important;
    margin-bottom: 6px !important;
  }

  .config-list table td {
    padding: 4px 0 !important;
    /* 增加配置项间距 */
  }

  .feature-tags .tag {
    font-size: 13px !important;
    /* 增大特性标签字体 */
    padding: 5px 10px !important;
  }

  .main-price .amount {
    font-size: 22px !important;
  }

  .main-price .currency {
    font-size: 14px !important;
  }

  .main-price .unit {
    font-size: 12px !important;
  }

  .price-container-replica {
    padding: 0 4px !important;
  }

  /* 移动端按钮组 */
  .card-buttons-group {
    display: flex !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .cart-btn-replica,
  .buy-btn-replica {
    flex: 1;
    height: 40px !important;
    font-size: 12px !important;
    border-radius: 0 !important;
    margin: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    padding: 0 4px !important;
    min-width: 0 !important;
    line-height: 38px !important;
  }
  
  .cart-btn-replica i {
    margin-right: 2px !important;
    font-size: 12px !important;
  }

  .buy-section {
    width: calc(100% + 32px) !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
    margin-bottom: 0 !important;
  }

  .card-footer-replica {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 12px 0 0 0 !important;
  }

  .buy-button,
  .buy-btn {
    height: 44px !important;
    font-size: 15px !important;
    border-radius: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    box-shadow: none !important;
  }
  
  /* 移动端购物车悬浮按钮 - 白色半透明背景+蓝色图标 */
  .cart-float-btn {
    display: flex !important;
    right: 8px;
    bottom: 140px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    box-shadow: 
      0 4px 14px rgba(0, 0, 0, 0.1),
      0 1px 4px rgba(0, 0, 0, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(24, 144, 255, 0.2);
  }
  
  .cart-float-btn i {
    font-size: 22px;
    color: #1890ff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  .cart-float-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.95);
  }

  /* 提示条调整 */
  .login-notice-bar,
  .activity-bar {
    padding: 10px 12px;
    font-size: 12px;
    width: calc(100% + 24px) !important;
    margin-left: -12px !important;
    margin-right: -12px !important;
    border-radius: 0 !important;
    box-sizing: border-box;
  }

  /* 分组描述区域全屏显示 */
  .group-description-box {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 0 !important;
    box-sizing: border-box;
  }

  /* 产品卡片全屏显示 - 改为直角边框 */
  .product-card,
  .product-card-replica {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 0 !important;
    box-sizing: border-box;
    padding: 0 !important;
    /* 移动端防止字体缩放 */
    -webkit-text-size-adjust: none !important;
    text-size-adjust: none !important;
  }

  /* 移动端固定所有字体大小 */
  .product-card-replica * {
    -webkit-text-size-adjust: none !important;
    text-size-adjust: none !important;
  }

  .product-card-replica .product-name {
    font-size: 15px !important;
  }

  .product-card-replica .config-list-replica li {
    font-size: 13px !important;
  }

  /* 卡片hover效果顶部横条也改为直角 */
  .product-card::before {
    border-radius: 0 !important;
  }

  /* 产品网格占满宽度 */
  .products-grid {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 12px 0 !important;
  }

  /* 移动端公告栏边距调整 */
  .info-notice-card {
    padding: 14px 12px !important;
    margin-left: -12px !important;
    margin-right: -12px !important;
    width: calc(100% + 24px) !important;
    border-radius: 0 !important;
  }

  /* 底部声明调整 */
  .footer-notice {
    padding: 10px 12px;
    font-size: 11px;
  }

  /* 域名区域调整 */
  .domain-section {
    margin-left: 0;
    padding: 20px 12px 20px;
  }
}

@media screen and (max-width: 750px) {
  .goods-list-div {
    grid-template-columns: repeat(1, 1fr);
  }

  .search-box .el-select .el-input__inner {
    height: 40px !important;
    line-height: 40px;
  }

  .second-select .el-input__inner {
    height: 40px !important;
    line-height: 40px;
  }

  .search-input .el-input__inner {
    height: 40px !important;
    line-height: 40px;
  }

  .search-btn {
    height: 40px;
  }
}

/* ==================== 移动端产品组抽屉菜单 ==================== */

/* 悬浮按钮 - 产品组菜单按钮（白色半透明背景+蓝色图标+文字） */
.mobile-float-menu-btn {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 80px;
  width: 52px;
  height: 60px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.1),
    0 1px 4px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #1890ff;
  font-size: 20px;
  cursor: pointer;
  z-index: 9998;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(24, 144, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 4px 0;
}

.mobile-float-menu-btn i {
  font-size: 22px;
  color: #1890ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.mobile-float-menu-btn .btn-text {
  font-size: 10px;
  color: #1890ff;
  margin-top: 2px;
  font-weight: 500;
  line-height: 1;
}

.mobile-float-menu-btn:hover {
  transform: translateY(-4px) scale(1.05);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mobile-float-menu-btn:active {
  transform: translateY(-2px) scale(1.02);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* 抽屉遮罩 */
.mobile-drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 9998;
  transition: background 0.3s ease;
}

.mobile-drawer-overlay.show {
  background: rgba(0, 0, 0, 0.5);
}

/* 抽屉菜单 - 从左往右弹出 */
.mobile-group-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: -85%;
  width: 85%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  flex-direction: column;
  transition: left 0.3s ease;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-group-drawer.show {
  left: 0;
}

/* 抽屉头部 */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #e8ecf0;
  background: #fff;
  flex-shrink: 0;
}

.drawer-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

.drawer-header i {
  font-size: 20px;
  color: #6b7280;
  cursor: pointer;
  padding: 8px;
}

/* 抽屉搜索框 */
.drawer-search {
  padding: 12px 16px;
  background: #f8fafc;
  border-bottom: 1px solid #e8ecf0;
  flex-shrink: 0;
}

.drawer-search .el-input__inner {
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
}

.drawer-search .el-input__inner:focus {
  border-color: #1890ff;
}

/* 抽屉主体 */
.drawer-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* 左侧一级分组 */
.drawer-left {
  width: 40%;
  background: #f8fafc;
  border-right: 1px solid #e8ecf0;
  overflow-y: auto;
}

.first-group-nav {
  padding: 8px 0;
}

.first-nav-item {
  position: relative;
  padding: 14px 12px;
  font-size: 14px;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.first-nav-item.active {
  background: #fff;
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  font-weight: 500;
}

.nav-text {
  display: block;
  line-height: 1.4;
  word-break: break-all;
}

/* 右侧二级分组 */
.drawer-right {
  flex: 1;
  overflow-y: auto;
  background: #fff;
}

.right-first-title {
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  border-bottom: 1px solid #e8ecf0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.second-group-grid {
  padding: 12px;
}

.second-group-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  margin-bottom: 8px;
  background: #f8fafc;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  overflow: visible;
}

.second-group-card.has-tag {
  padding-top: 20px;
}

.second-group-card:active {
  background: #f0f5ff;
  border-color: var(--color-primary);
}

.second-group-card .group-name {
  font-size: 14px;
  color: #374151;
  flex: 1;
  word-break: break-all;
}

.second-group-card .group-tag {
  display: inline-block;
  padding: 2px 6px;
  margin-left: 8px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  font-size: 10px;
  border-radius: 0;
  white-space: nowrap;
  font-weight: 600;
}

.second-group-card .group-tag.mobile {
  position: absolute;
  top: -4px;
  right: 8px;
  margin-left: 0;
  padding: 3px 8px;
  font-size: 10px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 6px rgba(185, 28, 28, 0.4);
  z-index: 2;
}

.no-second-group {
  padding: 40px 20px;
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
}

/* 移动端显示 */
@media screen and (max-width: 768px) {
  /* 移动端悬浮菜单按钮 */
  .mobile-float-menu-btn {
    display: flex !important;
    right: 12px;
    bottom: 80px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    box-shadow:
      0 4px 14px rgba(0, 0, 0, 0.1),
      0 1px 4px rgba(0, 0, 0, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(24, 144, 255, 0.2);
    flex-direction: column;
    padding: 2px 0;
  }

  .mobile-float-menu-btn i {
    font-size: 20px;
    color: #1890ff;
  }

  .mobile-float-menu-btn .btn-text {
    font-size: 8px;
    color: #1890ff;
    margin-top: 1px;
    font-weight: 500;
    line-height: 1;
  }

  .mobile-drawer-overlay {
    display: block;
  }

  .mobile-group-drawer {
    display: flex;
  }
}


/* ── 入场动画 ── */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-up {
  animation: fadeSlideUp 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* 海报区入场 */
.top-banner-area {
  animation: fadeSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* 产品卡片入场（通过 JS 内联 animation-delay 实现错落感） */
.product-card-replica {
  animation: fadeSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}
