/** Shopify CDN: Minification failed

Line 63:0 All "@import" rules must come first
Line 218:0 Unexpected "<"
Line 275:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.directory-nav-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f7f7f7;
  border-top: 1px solid #e5e5e5;
}

.directory-nav-wrapper {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr); /* ✅ 手机默认2列 */
}

/* 平板和桌面统一为4列 */
@media screen and (min-width: 750px) {
  .directory-nav-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}



.directory-nav-group {
  font-family: 'Inter', sans-serif;
}

.directory-nav-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #666;
}

.directory-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.directory-nav-links li {
  margin-bottom: 8px;
}

.directory-nav-links a {
  font-size: 1.6rem;
  font-weight: 300;
  color: #111;
  text-decoration: none;
}

.directory-nav-links a:hover {
  text-decoration: underline;
}
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@700&family=Inter&display=swap');

.highlight-image-section {
  padding: 40px 0;
  position: relative;
}

.highlight-image-slider-wrapper {
  position: relative;
}

.highlight-image-slider {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.highlight-image-slide {
  flex: 0 0 auto;
  width: 295px;
  position: relative;
  scroll-snap-align: start;
}

.highlight-image-slide a {
  display: block;
  text-decoration: none;
}

.highlight-image-slide__image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.highlight-image-slide__image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
  display: block;
}

.highlight-image-slide:hover .highlight-image-slide__image {
  transform: scale(1.05);
}

.highlight-image-slide__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  padding: 12px;
  min-height: 60px; /* 保证背景区域有足够空间显示文字 */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.highlight-image-slide__title {
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #000;
  margin: 0 0 6px 0;
}

.highlight-image-slide__description {
  font-family: 'Inter', sans-serif;
  font-size: 0.925rem;
  color: #555;
  margin: 0;
}

.highlight-slider-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.highlight-slider-button {
  background: none;
  border: 1px solid #ccc;
  padding: 8px 14px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
}

.highlight-slider-button:hover {
  background: #f2f2f2;
}
.image-grid-section {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
}

.image-grid-wrapper {
  width: 80%; /* ✅ 控制整体内容宽度，产生视觉边距 */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.image-grid-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}


@media screen and (max-width: 749px) {
  .image-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 90%;
  }
}
.multi-rich-text-section {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
}

.multi-rich-text-block {
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.multi-rich-text-block--left {
  text-align: left;
}

.multi-rich-text-block--right {
  text-align: right;
}

.multi-rich-text-block h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5em;
}

.multi-rich-text-block .rte {
  font-size: 1.05rem;
  color: #444;
}
<style>
.image-slider-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none; /* Firefox 隐藏滚动条 */
}
.image-slider-wrapper::-webkit-scrollbar {
  display: none; /* Chrome Safari隐藏滚动条 */
}

.image-slider-item {
  display: inline-block;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.4s ease;
  margin-right: 8px;
}

/* 默认宽度，适配电脑，7列 */
.image-slider-item {
  width: 13%; /* 100% ÷ 7列 ≈ 14%，稍微留一点margin */
  max-width: 180px;
}

/* 鼠标悬停放大图片 */
.image-slider-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.image-slider-item:hover img {
  transform: scale(1.05);
}

/* 响应式调整 */
@media (max-width: 1200px) {
  .image-slider-item {
    width: 18%; /* 平板显示5-6列 */
  }
}
@media (max-width: 768px) {
  .image-slider-item {
    width: 30%; /* 手机横屏显示3列 */
  }
}
@media (max-width: 480px) {
  .image-slider-item {
    width: 45%; /* 手机上显示2列 */
  }
}
</style>
.two-image-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  margin: 40px 0;
  max-width: var(--page-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-width-margin, 2rem);
  padding-right: var(--page-width-margin, 2rem);
}

.two-image-block {
  flex: 1 1 45%;
  text-align: center;
}

.two-image-block img {
  width: 85%;
  height: auto;
  margin: 0 auto;
  transition: transform 0.3s ease;
  display: block;
}

.two-image-block img:hover {
  transform: scale(1.05);
}

.two-image-content {
  margin-top: 15px;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.two-image-content h3 {
  font-family: var(--font-heading-family, 'Assistant', sans-serif);
  font-size: calc(2rem * var(--font-heading-scale)); /* ✅ 更大标题 */
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 12px;
  line-height: 1.4;
}

.two-image-content p {
  font-family: var(--font-body-family, 'Inter', sans-serif);
  font-size: calc(1.6rem * var(--font-body-scale)); /* ✅ 更大描述 */
  color: var(--color-foreground-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}


.two-image-content a {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  font-family: var(--font-body-family, 'Inter', sans-serif);
  font-size: calc(1rem * var(--font-body-scale));
}

.two-image-content a:hover {
  background-color: #333;
}

@media screen and (max-width: 749px) {
  .two-image-block {
    flex: 1 1 100%;
  }
}