/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", "Helvetica Neue",
    Arial, sans-serif;
  background: #fafafa;
  color: #222;
  line-height: 1.6;
}

/* ===== 通用布局 ===== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== 顶部导航 ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 250, 250, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
}

nav a {
  margin-left: 18px;
  font-size: 14px;
  text-decoration: none;
  color: #555;
  opacity: 0.85;
}

nav a:hover {
  opacity: 1;
}

/* ===== Hero 区 ===== */
.hero {
  padding: 52px 0 40px;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.hero-text {
  flex: 1 1 260px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 15px;
  opacity: 0.9;
  max-width: 460px;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-primary,
.btn-secondary {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid #ddd;
  cursor: pointer;
}

.btn-primary {
  background: #111;
  color: #fff;
  border-color: #111;
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-secondary {
  background: #fff;
  color: #333;
}

.btn-secondary:hover {
  background: #f5f5f5;
}

/* 右侧 Hero 图片卡片 */
.hero-image {
  flex: 1 1 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 16px;
  border: 1px solid #eee;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-placeholder {
  border-radius: 18px;
  height: 260px;
  border: 1px dashed #ccc;
  background: radial-gradient(circle at 20% 20%, #ffffff, #f4f4f4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  color: #999;
  font-size: 13px;
}

.hero-note {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}

/* ===== 通用 section ===== */
.section {
  padding: 32px 0;
}

.section h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.section-intro {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 18px;
}

/* 卡片网格 */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid #eee;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

/* 两列布局（About 区） */
.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* 淡背景 section */
.section-muted {
  background: #f2f2f2;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

/* 联系内容 */
#contact p {
  font-size: 14px;
}

/* 页脚 */
.site-footer {
  padding: 18px 0 26px;
  border-top: 1px solid #eee;
  font-size: 13px;
  text-align: center;
  color: #888;
}

/* ===== 响应式（手机） ===== */
@media (max-width: 720px) {
  .hero {
    padding-top: 32px;
  }

  .hero-inner {
    flex-direction: column;
  }

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

  .nav {
    flex-direction: column;
    gap: 6px;
  }

  nav a {
    margin-left: 10px;
  }

  body {
    font-size: 15px;
  }
}

/* ===== 主图真实图片大小设置 ===== */
.hero-img-real {
  width: 100%;
  max-width: 340px;   /* ⭐️ 控制珍珠主图最大宽度（最重要） */
  height: auto;
  border-radius: 18px;
  display: block;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* ===== Shop 页面 ===== */

.shop-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.shop-hero h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

.shop-hero p {
  color: #555;
  max-width: 520px;
  margin-bottom: 24px;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
  color: #444;
}

.filter-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

/* 网格区域 */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

/* 单个卡片 */
.product-card {
  background: #f8f7f5;
  border-radius: 18px;
  padding: 16px;
  position: relative;   /* 为了放 sold-out 小徽章 */
}

.product-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card-image {
  background: #ffffff;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.product-card-title {
  font-size: 15px;
  margin: 4px 0;
}

.product-card-price {
  font-weight: 600;
  margin-top: 4px;
}

/* ===== Product status (for-sale / sold-out) ===== */

/* 状态文字：卡片底部小一行 */
.product-card-status {
  font-size: 13px;
  margin-top: 4px;
  color: #777;
}

/* 待售状态：绿色 / 可用 */
.product-card.for-sale .product-card-status {
  color: #1a7f3c;
}

/* Sold out 状态：价格变淡，文字变红 */
.product-card.sold-out .product-card-price {
  opacity: 0.4;
}

.product-card.sold-out .product-card-status {
  color: #b02a37;
  font-weight: 500;
}

/* Sold out 左上角小徽章 */
.product-card.sold-out::after {
  /* 这里你之前没写 content，如果想要文字可以加：
     content: "Sold out"; */
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: #111;
  color: #fff;
}

/* ===== Collection pages ===== */

.collection-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.collection-hero {
  margin-bottom: 24px;
}

.breadcrumbs {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.breadcrumbs a {
  color: #999;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.collection-hero h1 {
  font-size: 26px;
  margin-bottom: 8px;
}

.collection-tagline {
  font-size: 15px;
  color: #555;
  max-width: 520px;
  margin-bottom: 12px;
}

.collection-body {
  font-size: 14px;
  color: #444;
  max-width: 620px;
  margin-bottom: 8px;
}

.collection-products {
  margin-top: 8px;
}

.collection-products h2 {
  font-size: 20px;
  margin-bottom: 6px;
}

/* ===== Gallery Page（新：带英雄区 + 筛选） ===== */

.gallery-page {
  padding-bottom: 60px;
}

/* --- Hero --- */
.gallery-hero {
  padding: 48px 0 32px;
  background: radial-gradient(circle at top, #fdfcf9 0%, #f6f4ef 60%, #f3f1ec 100%);
}

.gallery-hero-inner {
  position: relative;
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.gallery-hero-carousel {
  position: relative;
  min-height: 220px;
}

.gallery-hero-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  position: absolute;
  inset: 0;
  padding: 8px 4px;
  opacity: 0;
  transform: translateX(12px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.gallery-hero-text h1 {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.gallery-hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 6px;
}

.gallery-hero-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 14px;
  max-width: 30rem;
}

.gallery-hero-link {
  display: inline-block;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #222;
  text-decoration: none;
  color: #222;
}

.gallery-hero-link:hover {
  background: #222;
  color: #fff;
}

.gallery-hero-image {
  justify-self: end;
  max-width: 260px;
}

.gallery-hero-image img {
  width: 100%;
  display: block;
  border-radius: 22px;
}

/* Hero nav */
.gallery-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #f5f3ee;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  font-size: 1.4rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.gallery-hero-nav-prev {
  left: 12px;
}

.gallery-hero-nav-next {
  right: 12px;
}

.gallery-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.gallery-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: #ddd;
  cursor: pointer;
}

.gallery-hero-dot.is-active {
  width: 18px;
  background: #444;
}

/* 小屏幕：Hero 改为上下排 */
@media (max-width: 768px) {
  .gallery-hero-slide {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto;
  }

  .gallery-hero-image {
    justify-self: start;
    max-width: 200px;
  }

  .gallery-hero-inner {
    padding: 18px;
  }
}

/* --- Filters --- */
.gallery-filters {
  padding: 24px 0 8px;
}

.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: space-between;
}

.gallery-filter-label {
  font-size: 0.9rem;
  color: #777;
}

.gallery-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-filter-btn {
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  background: #fff;
  cursor: pointer;
  white-space: nowrap;
}

.gallery-filter-btn.is-active {
  border-color: #222;
  background: #222;
  color: #fff;
}

/* --- Grid intro --- */
.gallery-grid-section {
  padding: 16px 0 0;
}

.gallery-grid-intro {
  margin-bottom: 16px;
}

.gallery-grid-intro h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

/* ===== Pearl Tale Gallery: auto-scrolling cards with badges ===== */

.gallery {
  padding-top: 28px;
}

.gallery-scroll-wrapper {
  overflow: hidden;
  margin-top: 24px;
  position: relative;
}

.gallery-scroll-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;                /* 宽度随内容扩展 */
  animation: gallery-scroll 120s linear infinite;
}

/* 单个卡片固定宽度，防止被压缩 */
.gallery-item {
  flex: 0 0 auto;
  width: 220px;                      /* 想更宽一点可以改成 240 / 260 */
}

/* 链接块 */
.gallery-link-block {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* 图片区域 */
.gallery-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, #ffffff, #fdfcfa);
}

.gallery-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* 右上角小角标 */
.gallery-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

/* ===== Gallery Badge · High-end Monochrome Version ===== */

/* Not for sale */
.badge-nfs {
  background: rgba(255, 255, 255, 0.85);
  color: #444;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Collected */
.badge-collected {
  background: rgba(255, 255, 255, 0.85);
  color: #333;
  border: 1px dashed rgba(0, 0, 0, 0.15);
}

/* Available */
.badge-available {
  background: rgba(255, 255, 255, 0.90);
  color: #222;
  border: 1px solid rgba(0, 0, 0, 0.18);
}

/* Enquire */
.badge-enquire {
  background: rgba(255, 255, 255, 0.90);
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

/* 标题/系列 */
.gallery-info {
  margin-top: 10px;
}

.gallery-title {
  font-size: 15px;
  font-weight: 600;
}

.gallery-series {
  margin-top: 4px;
  font-size: 13px;
  color: #777;
}

/* 无限轮转关键动画 */
@keyframes gallery-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== Collections slider：三张卡片 + 右侧浅灰 >> 按钮 ===== */

.collections-slider {
  position: relative;
  overflow: hidden;       /* ⭐ 把右侧多余内容裁掉 */
  padding-right: 0px;    /* 给右侧按钮留一点空间 */
}

.collections-track {
  display: flex;
  transition: transform 0.4s ease;
}

/* 每一页占满整行宽度，只显示一页 */
.collections-page {
  flex: 0 0 100%;
}

/* 固定每个 collection 卡片高度：预留三行文字 */
.collection-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;      /* 你觉得不够可以调成 130/140 */
}

/* 链接样式：不要蓝色下划线 */
.card h3 a {
  text-decoration: none;
  color: #222;
}

.card h3 a:hover {
  text-decoration: underline;
}

/* 右侧 “>>” 按钮（只保留符号本身，不要背景块） */
.collections-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  padding: 0;
  color: #b5b5b5;         /* 浅灰 */
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.collections-toggle:hover {
  color: #888;
  transform: translateY(-50%) translateX(1px);
}

/* 手机上按钮小一点 */
@media (max-width: 720px) {
  .collections-toggle {
    font-size: 18px;
  }
}

/* ===== Collections row: [prev] [card][card][card] [next] ===== */

/* 整行：左箭头槽 / 中间视窗 / 右箭头槽 */
.collections-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 32px; /* ⭐ 箭头更窄一点 */
  gap: 12px;
  align-items: stretch;
}

/* 中间视窗，里面包着 3 张卡片 */
.collections-viewport {
  overflow: hidden;
}

/* 轨道：左右滑动切换不同页 */
.collections-track {
  display: flex;
  transition: transform 0.35s ease;
}

/* 每一页宽度就是一个视窗宽度 */
.collections-page {
  flex: 0 0 100%;
}

/* 一页中的 3 张卡片，等宽、等高 */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* 统一三张卡片高度 + 左文案右图片 */
.collections-card {
  height: 140px;              /* 固定高度，不会被图片撑高 */
  display: block;             /* 保持 .card 原来的 block 特性 */
}

/* 卡片内部左右排布 */
.collections-card-left,
.collections-card-right {
  display: inline-flex;
}

.collections-card-left {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: calc(100% - 80px);   /* 留出右边小图空间 */
}

.collections-card-right {
  margin-top: 30px;
  justify-content: center;
  align-items: center;
  width: 80px;                /* 小缩略图宽度 */
  height: 80px;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f3f3;
  float: right;               /* ⭐ 一行内右对齐，不影响外框 */
}

/* 图片永远不会撑大，自动缩小 */
.collections-card-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* 填满小方块，不变形不撑大 */
  display: block;
}

/* 链接不要默认蓝色下划线 */
.collections-card h3 a {
  text-decoration: none;
  color: #222;
}

.collections-card h3 a:hover {
  text-decoration: underline;
}

/* 左右箭头按钮：完全透明，只保留符号 */
.collections-arrow {
  background: transparent;    /* ⭐ 透明 */
  border: none;               /* ⭐ 无边框 */
  color: #b8b8b8;             /* 浅灰箭头 */
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

/* hover 效果（不是空的时候） */
.collections-arrow:not(.empty):hover {
  color: #888;
  transform: translateX(1px);
}

/* 空槽：第一页的左边、最后一页的右边 */
.collections-arrow.empty {
  color: transparent;       /* 箭头也隐藏 */
  cursor: default;
  pointer-events: none;
}

/* 手机上让箭头槽再小一点，高度自适应 */
@media (max-width: 720px) {
  .collections-row {
    grid-template-columns: 26px minmax(0, 1fr) 26px;
  }

  .collections-card {
    height: 150px;          /* 手机可以稍微高一点 */
  }
}

/* ===== Contact 区：邮箱艺术化处理 ===== */
.contact-email a {
  color: #444;              /* 深灰更高级 */
  text-decoration: none;    /* 去掉下划线 */
  font-weight: 500;
  letter-spacing: 0.01em;
}

.contact-email a:hover {
  color: #000;              /* hover 微深，无突兀对比 */
}

/* ===== Contact socials: 极简 · 居中 ===== */
.contact-socials {
  margin-top: 12px;
  font-size: 14px;
  color: #666;
  display: flex;
  justify-content: center;   /* ⭐ 居中对齐 */
  align-items: center;
  gap: 6px;
}

.contact-socials a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
}

.contact-socials a:hover {
  color: #000;
}

.contact-socials span {
  color: #bbb;
}

/* ===== Story / gallery piece page ===== */

.story-hero {
  padding: 40px 0 32px;
}

.story-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

/* 左侧图片区域 */
.story-media {
  flex: 1 1 340px;
}

.story-media-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #eee;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  padding: 18px;
}

.story-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: contain;
}

.story-caption {
  font-size: 12px;
  color: #888;
  margin-top: 8px;
}

/* 右侧文案区域 */
.story-copy {
  flex: 1 1 320px;
  max-width: 420px;
}

.story-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}

.story-copy h1 {
  font-size: 26px;
  margin-bottom: 12px;
}

.story-lead {
  font-size: 15px;
  margin-bottom: 10px;
}

.story-body {
  font-size: 14px;
  color: #444;
  margin-bottom: 16px;
}

/* Year / Series / Status */
.story-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 18px;
  font-size: 13px;
}

.story-meta div {
  display: flex;
  gap: 6px;
}

.story-meta dt {
  font-weight: 500;
  color: #777;
}

.story-meta dd {
  margin: 0;
}

/* Work notes 段落 */
.story-notes {
  max-width: 780px;
}

.story-notes h2 {
  font-size: 18px;
  margin-bottom: 8px;
}

.story-notes p + p {
  margin-top: 8px;
}

/* 手机布局：上下排 */
@media (max-width: 720px) {
  .story-layout {
    flex-direction: column;
  }

  .story-copy {
    max-width: 100%;
  }

  .story-meta {
    grid-template-columns: 1fr;
  }
}

.product-info ul {
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
}

.product-info li {
  margin-bottom: 4px;
  font-size: 14px;
}

.product-info strong {
  font-weight: 600;
  color: #222;
}

/* ===== Winter Tales / Frosted Xmas gallery cards (page-specific) ===== */

.wt-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

/* 单个卡片 */
.wt-gallery-card {
  background: #f8f7f5;
  border-radius: 18px;
  padding: 16px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.wt-gallery-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.wt-gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

/* 图片区域 */
.wt-gallery-card-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, #ffffff, #fdfcfa);
}

.wt-gallery-card-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* 状态徽章 */
.wt-gallery-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

/* 不同状态颜色 */
.wt-gallery-card-badge-available {
  background: #d8f1df;
  color: #226b3a;
}

.wt-gallery-card-badge-collected {
  background: #f4dde0;
  color: #9f3b4b;
}

.wt-gallery-card-badge-not-for-sale {
  background: #e6e6e6;
  color: #555555;
}

.wt-gallery-card-badge-enquire {
  background: #e3e0ff;
  color: #5343aa;
}

/* 标题 & 系列名 */
.wt-gallery-card-title {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
}

.wt-gallery-card-collection {
  margin-top: 4px;
  font-size: 13px;
  color: #777777;
}
