﻿   .fixed-top + * {
    margin-top: 80px; /* 根据导航栏高度调整 */
  }

.img-mosaic {
  filter: blur(1px);
  image-rendering: pixelated;
  transform: scale(1.01); /* 稍微放大避免邊緣破圖 */
  display: block;
}


  .product-recommend-section {
      padding: 10px 0;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .recommend-header {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  margin-bottom: 12px;
	}

    .recommend-title {
	  font-size: 1.5rem;
      margin-bottom: 16px;
      text-align: left;
      color: white;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .recommend-slider {
      position: relative;
      width: 100%;
      overflow: hidden;
    }
    
    .recommend-grid-wrapper {
      width: 100%;
      overflow: hidden;
    }
    
    .recommend-grid {
      display: flex;
      transition: transform 0.3s ease;
    }
    
    .recommend-card {
      background-color: var(--bg-white);
      border: 1px solid var(--theme-color-3);
      border-radius: 10px;
      overflow: hidden;
      transition: box-shadow 0.2s ease;
      display: flex;
      flex-direction: column;
 		 flex: 0 0 calc(50% - 4px);
        width: calc(50% - 4px);
        margin-right: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .recommend-card:last-child {
      margin-right: 0;
    }
    
    .recommend-card:hover {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .image-wrapper {
      position: relative;
      width: 100%;
      height: 160px;
      overflow: hidden;
    }
    
    .image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    
    .recommend-card:hover .image-wrapper img {
      transform: scale(1.05);
    }
    
    .product-label {
      position: absolute;
      top: 10px;
      left: 10px;
      font-size: 0.75rem;
      color: var(--font-white);
      background-color: var(--theme-color-1);
      padding: 2px 6px;
      border-radius: 4px;
      font-weight: bold;
      z-index: 1;
    }
    
    .price-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 6px 10px;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      color: var(--font-white);
      font-size: 0.9rem;
      font-weight: bold;
    }
    
    .price-overlay .price-discount {
      color: var(--theme-color-3);
 	text-decoration: line-through;
      font-size:1.1rem;
    }
    
    .price-overlay .price-original {
      text-decoration: line-through;
     	font-size:1.1rem;
      color: var(--theme-color-3);
    }
    
    .card-info {
      padding: 12px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      flex-grow: 1;
    }
    
    .card-title {
      font-weight: bold;
      font-size: 1rem;
      color: var(--heading-color);
    white-space: nowrap; /* 不换行 */
	  overflow: hidden;    /* 隐藏超出部分 */
	  text-overflow: ellipsis; /* 超出部分用省略号表示 */

    }
        
    
    .card-desc {
      font-size: 0.9rem;
      color: var(--font-color);
      line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* 限制显示两行 */
	-webkit-box-orient: vertical; /* 垂直排列 */
	overflow: hidden;    /* 隐藏超出部分 */
	text-overflow: ellipsis; /* 超出部分用省略号表示 */
 	min-height: calc(1.4em * 2); /* 1.4 line-height * 2 行 */
    }
    
    .buy-button {
      display: inline-block;
      margin-top: auto;
      background-color: var(--theme-color-1);
      color: var(--font-white);
      padding: 8px 14px;
      border-radius: 6px;
      font-size: 1.3rem;
      text-align: center;
      text-decoration: none;
      transition: background-color 0.2s ease;
      border: none;
      cursor: pointer;
    }
    
    .buy-button:hover {
      background-color: #e68a00;
      color: var(--font-white);

    }
    
    .product-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      margin-top: 6px;
    }
    
    .product-tag {
      background-color: var(--theme-color-3);
      color: var(--theme-color-2);
      font-size: 0.75rem;
      padding: 2px 6px;
      border-radius: 4px;
    }
    

        
    /* 平板和PC端样式 */
    @media (min-width: 600px) {
      .recommend-card {
     	 flex: 0 0 calc(50% - 4px);
        width: calc(50% - 4px);

      }
    }
 .recommend-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  padding: 0px;
}

.recommend-title {
  font-size: 1.5rem;
  color: white;
  display: flex;
  align-items: center;
  margin: 0;
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-controls button {
  width: 30px;
  height: 30px;
  background-color: #f4f4f4;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  z-index: 10; /* 保證在圖片之上 */
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.slider-controls button:hover {
  background-color: #eaeaea;
  border-color: #bbb;
}

.slider-controls i {
  color: #555;
  font-size: 16px;
}




.navbar-shop-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 12px; /* 可根据按钮位置微调对齐 */
  float:right;
}

.navbar-shop-links a {
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  padding: 2px 0;
  text-align: right;
}

.navbar-toggler {
  margin-left: 12px; /* 让按钮有空隙可调节 */
}


#fmebuysam a.navlink {
  font-size: 14px;
  text-decoration: none;
  padding: 2px 0;
  text-align: right;
}


/* 手机端显示，平板以上隐藏 */
.mobile-top-controls {
  display: flex;
  padding: 0 1px;
}

@media (min-width: 768px) {
  .mobile-top-controls {
    display: none !important;
  }
}

#fmebuysam a {
  font-size: 16px;
  text-decoration: none;
  line-height: 1.2;
}

.navbar-toggler {
  padding: 6px 10px;
  background-color: transparent;
  border: none;
  font-size: 20px;
}


/*************************************/
/*************************************/
/*************************************/
/*************************************/
/*************************************/
/*************************************/

.spring-drug-section {
  background-color: var(--bg-white);
  padding: 10px 0px 10px 0px;
  color: var(--font-color);
  border-top: 1px solid #eee;
}

.spring-drug-section .container {
  width: 100%;
  margin: 0 auto;
}

.section-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--heading-color);
  margin-bottom: 10px;
  text-align: center;
}

.section-content h3 {
  font-size: 1rem;
  color: var(--font-color-3);
  margin-top: 4px;
  margin-bottom: 8px;
  font-weight:bold;
}

.section-content p {
  line-height: 1.4;
  font-size: 1rem;
  margin-bottom: 1px;
}

.section-content strong {
  color: var(--theme-color-0);
  font-weight: bold;
}

.cta-box {
  background-color: var(--theme-color-3);
  padding: 6px 20px;
  border-left: 4px solid var(--theme-color-1);
  margin-top: 10px;
  text-align: center;
  border-radius: 8px;
}

.cta-button {
  display: inline-block;
  padding: 1px 10px;
  background-color: var(--theme-color-1);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: white;
}
.buy-button-group {
  display: flex;
  gap: 4px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.buy-buttonv {
  display: inline-block;
  padding: 8px 4px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  flex: 1 1 auto;
}

.buy-buttonv.buy-tw {
  background-color: var(--theme-color-1); /* 台灣: 主題橘色 */
  color: #fff;
}

.buy-buttonv.buy-hk {
  background-color: #0070c0; /* 香港: 藍色 */
  color: #fff;
}
.buy-buttonv.buy-tw:hover{
  color: #0070c0;
}

.buy-buttonv.buy-hk:hover {
  color:var(--theme-color-1);
}


/*************************************/
/*************************************/
/*************************************/
/*************************************/
/*************************************/
.info-banner {
  color: white;
  padding: 10px 0px;
  line-height: 1.4;
  overflow: hidden;
}

.info-header {
  margin-bottom: 15px;
  font-weight: bold;
}

.info-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 10px;
  max-height: 3.8rem; /* 限制为两行 */
  overflow: hidden;
}

.link-item {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.link-icon {
  margin-right: 3px;
  color: #665C3D; /* 可自定颜色 */
  flex-shrink: 0;
}

.link-item a {
  color: #fff;
  text-decoration: underline;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

/*************************************/
/*************************************/
/*************************************/
/* 添加响应式设置 */

/* 服務區塊主容器 */

.ys-service-section {
	width: 1320px; /* 固定宽度 */
	display: flex;
	flex-wrap: wrap;
	margin: 20px auto;
	position: relative;

  padding: 1px 20px 20px 20px;
}

.ys-container {
  max-width: 100%;
  margin: 0 auto;
}

.ys-section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--heading-color);
}

.ys-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ys-service-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border: 1px var(--theme-color-3) solid;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.ys-service-card:hover {
  transform: translateY(-5px);
}

.ys-icon-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ys-icon {
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--theme-color-1);
  border-radius: 50%;
  color: var(--font-white);
  flex-shrink: 0;
}

.ys-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.ys-card-desc {
  font-size: 0.95rem;
  color: var(--font-color);
  margin-bottom: 15px;
  line-height: 1.6;
}

/* ✅ 新样式：子菜单 */
.ys-sub-menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.ys-sub-menu li {
  display: flex;
  align-items: center;
  width: calc(50% - 6px);
  font-size: 0.95rem;
}

.ys-sub-menu li::before {
  content: "🔹";
  margin-right: 6px;
  font-size: 0.85rem;
}

.ys-sub-menu a {
  text-decoration: none;
  color: var(--theme-color-0);
  font-weight: 500;
  transition: color 0.3s ease;
}

.ys-sub-menu a:hover {
  color: var(--theme-color-00);
}

/* ✅ 新样式：多按钮区块 */
.ys-btn-link-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.ys-btn-link {
  padding: 3px 10px;
  font-size: 0.9rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}


/* 三种按钮样式 */

.btn-basic {
    background-color: #b7a1c5;  /* 稍深紫色 */
        color: #fff;  /* 白色字体 */

}

.btn-basic:hover {
     background-color: var(--theme-color-3);  /* 柔和紫色 */
     color:#000;
    transform: translateY(-2px);
    border:1px #121212 solid;
}

/* 强调色按钮样式 */
.btn-accent {
    background-color: var(--theme-color-6);  /* 暖橙色 */
     color:#fff;
}

.btn-accent:hover {
    background-color: #ff8c00;  /* 明亮橙色 */
    transform: translateY(-2px);
	 color:#fff;
}

/* 边框按钮样式 */
.btn-outline {
    border: 2px solid var(--theme-color-3);  /* 柔和紫色边框 */
    background-color: var(--theme-color-1);
	 color:#fff;
}

.btn-outline:hover {
    background-color: var(--theme-color-00);  /* 紫色背景 */
	 color:#fff;
    transform: translateY(-2px);
}

/* 其他颜色选择，确保搭配的和谐性 */

.btn-accent-green {
    background-color: var(--theme-color-2);  /* 明亮绿色 */
    color: #fff;  /* 白色字体 */
}

.btn-accent-green:hover {
    background-color: #45a849;  /* 更深的绿色 */
    transform: translateY(-2px);
}

.btn-outline-pink {
    border: 2px solid var(--theme-color-5);  /* 清新薄荷绿边框 */
    background-color: transparent;
    color: var(--theme-color-5);  /* 薄荷绿字体 */
}

.btn-outline-pink:hover {
    background-color: var(--theme-color-5);  /* 薄荷绿背景 */
    color: #fff;  /* 白色字体 */
    transform: translateY(-2px);
}

.btn-basic-red {
    background-color: var(--theme-color-6);  /* 温暖红色 */
    color: #fff;  /* 白色字体 */
}

.btn-basic-red:hover {
    background-color: #ff3333;  /* 更亮的红色 */
    transform: translateY(-2px);
}



@media (max-width: 992px) {
  .ys-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ys-service-grid {
    grid-template-columns: 1fr;
  }
  .ys-section-title {
    font-size: 1.6rem;
  }
  .ys-service-card {
    padding: 16px;
  }
  .ys-btn-link {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}
/*************************************/
/*************************************/
/*************************************/
/*************************************/

.notice-tabs-section {
  background: #f4f5f7;
  padding: 1px 1px;
  margin-top: 1px;
  font-family: system-ui, sans-serif;
  align-items: flex-start; /* 确保内容顶端对齐 */
}

.tabs-wrapper {
  position: relative;
}

.tabs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.tabs-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--theme-color-1, #ffa500);
}

.tabs-arrows {
  display: flex;
  gap: 5px;
}

.tabs-arrow {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  padding: 4px 6px;
  cursor: pointer;
  font-size: 13px;
  border-radius: 4px;
  color: #555;
  transition: background 0.2s ease;
}
.tabs-arrow:hover {
  background-color: #e6e6e6;
}

.tabs-scroll-container {
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs-scroll-container::-webkit-scrollbar {
  display: none;
}

.tabs-scroll {
  display: flex;
  gap: 8px;
  padding: 4px 0;
  min-width: max-content;
}

.tab-btn {
  padding: 6px 10px;
  font-size: 0.9rem;
  background-color: #ffffff;
  color: #444;
  border: 1px solid #ddd;
  border-radius: 6px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  background-color: #f2f2f2;
}

.tab-btn.active {
  background-color: var(--theme-color-1, #ffa500);
  color: #fff;
  border-color: var(--theme-color-1, #ffa500);
}

/* 内容区 */
.tab-content-wrapper {
  margin-top: 16px;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.notice-list li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 12px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
}

.notice-info {
  margin-left: 12px;
  flex-grow: 1;
}
.notice-info p {
  font-size: 1rem;
  color: #444;
}
.notice-info small {
  font-size: 0.8rem;
  color: #999;
}

.notice-list .icon {
  width: 40px;
  height: 40px;
  background-color: #eee;
  border-radius: 50%;
}

/*************************************/
/*************************************/

/* 样式建议：可加入全站 CSS */
.intimacy-formula-section {
	width: 1320px; /* 固定宽度 */
	display: flex;
	flex-wrap: wrap;
	margin: 20px auto;
	position: relative;
  padding: 20px 20px!important;
  background-color: var(--bg-white);
  color: var(--font-color);
  border-left: 4px solid var(--theme-color-1);
}

.intimacy-formula-section .container {
  max-width:100%;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--theme-color-1);
  margin-bottom: 0.2em;
  text-align: left;
}
@media (max-width: 768px) {


.section-title {
  font-size: 1.4rem;
}
}


.section-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0.5em  auto;
  color: var(--heading-color);
}

.formula-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.2em;
}
.formula-content p:nth-of-type(1) {
  /* 第一个 p 的样式 */
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2em;
}
.formula-content p:nth-of-type(2) {
  /* 第一个 p 的样式 */
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.2em;
}

.formula-content .highlight {
  color: var(--theme-color-1);
  font-weight: 600;
}


/*************************************/
/*************************************/
/*************************************/
/*************************************/

:root {
    --button-primary-bg: #FF8C00;  /* 按钮背景：暖橙色 */
    --button-secondary-bg: #A3B8D3; /* 按钮背景：柔和蓝色 */
    --button-outline-bg: transparent; /* 边框按钮透明背景 */
    --button-outline-border: #FF8C00; /* 边框颜色：暖橙色 */
    --button-outline-color: #FF8C00; /* 边框按钮字体颜色 */
}

/* 容器 */
.intimacy-service-space.v3 {
  padding: 6px 0px ;
  color: #333;
     text-align:left;

  background-color: transparent; /* 如果页面已有背景色，可保持透明 */
}

.service-inner {
  max-width: 100%;
  margin: 0  auto;
   text-align:left;
}

.service-lead {
  font-size: 1.3rem;
  color: #333;
  line-height: 1.6rem;
  margin-bottom: 20px;
    margin-top: 20px;
}

.service-lead .service-highlight {
  color: #FFA500; /* 强调部分使用橙色 */
  font-weight: bold;
}

.service-lead span {
  display: block;
  margin-top: 20px;
  font-size: 1.1rem;
  color: #666;
}

@media (max-width: 768px) {
  .service-lead {
    font-size: 1rem;
  }
}

.service-lead p {
  font-size: 1rem;
  color: #1f2324;
  line-height: 1.2;
  margin: 10px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-lead p:nth-of-type(1) {
  color: #3d3d3d; /* 深灰，基础色 */
}

.service-lead p:nth-of-type(2) {
  color: #5b6d80; /* 灰蓝，和背景协调 */
}

.service-lead p:nth-of-type(3) {
  color: #6e5a4e; /* 暖灰棕，保持柔和 */
}

.service-lead p:nth-of-type(4) {
  color: #4e5f57; /* 暗绿灰，有层次感 */
}

.service-lead p:nth-of-type(1) i { 
  color: #c0392b; /* 暖红 - 强调品牌与热情 */
}

.service-lead p:nth-of-type(2) i { 
  color: #5C4F3A; /* 宝石蓝 - 表现专业与信任 */
}

.service-lead p:nth-of-type(3) i { 
  color: #c0392b; /* 橙金色 - 引导关注优惠/流程 */
}

.service-lead p:nth-of-type(4) i { 
  color: #665C3D; /* 绿松色 - 安全、陪伴感 */
}


.service-lead i {
  color: #1f2324;
  font-size: 1.1rem;
  min-width: 20px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 默认桌面端：一行两个 */
  gap: 16px;
}

.service-card {
  background-color: #fff;
  border-radius: 5px;
  padding: 12px 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-title {
  display: flex;          /* 使用 flexbox 布局 */
  align-items: center;    /* 垂直居中对齐图标和文字 */
  line-height: 1.5rem; 
  font-weight:bold;      /* 确保行高一致 */
}

.service-title .icon {
  margin-right: 8px;      /* 图标和文字之间的间距 */
  color: #555;            /* 图标颜色 */
  flex-shrink: 0;         /* 确保图标不会被压缩 */
}

.service-title i {
  display: inline-flex;   /* 让图标作为内联的 flex 容器 */
  align-items: center;    /* 垂直居中图标 */
  justify-content: center; /* 水平居中图标 */
  font-size: 20px;        /* 设置图标的大小 */
}

.service-card .service-lead {
  font-size: 13px;
  color: #666;
	padding-top:2px;
  margin-bottom: 5px;
}

.line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #06C755; /* LINE品牌綠 */
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.line-btn:hover {
  background-color: #04a94f;
  text-decoration: none;
}

.line-icon {
  font-size: 16px;
}

/* 屏幕宽度小于 768px 时：单列显示 */
@media (max-width: 768px) {
.service-grid {
  grid-template-columns: repeat(2, 1fr); /* 默认桌面端：一行两个 */
}
}


/*************************************/
/*************************************/

/* 搜索样式 */

.search-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 8px auto 0;
}

.compact-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 6px 10px;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-size: 0.88rem;
  flex-wrap: nowrap;
}

.search-type {
  border: 1px solid #ccc;
  background: #e6edf7;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1f2324;
  padding: 6px 10px;
  border-radius: 6px;
  outline: none;
  min-width: 110px;
  cursor: pointer;
  transition: background 0.3s;
}

.search-type:focus {
  background: #d6e1f2;
}

.search-input {
  flex: 1;
  min-width: 80px;
  border: 1px solid #ddd;
  font-size: 0.88rem;
  padding: 6px 10px;
  border-radius: 6px;
  outline: none;
  color: #333;
  box-sizing: border-box;
}

.search-btn {
  background: var(--theme-color-1, #ffa500);
  border: none;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s;
}

.search-btn i {
  font-size: 1rem;
}

@media (max-width: 480px) {
  .compact-search-bar {
    flex-wrap: wrap;
  }

  .search-type,
  .search-input,
  .search-btn {
    width: 100%;
    margin-bottom: 4px;
  }
.banner-book-appointment{
    padding: 0rem 0rem;
}

.ys-service-section {
  padding: 1px 7px 10px 7px;
  background-color: var(--bg-light);
}


  
}


/*************************************/
/*************************************/
/*************************************/

.product-showcase-section {
  padding: 20px 0px;
  /*background: #f9f9f9;*/
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.product-card {
  flex: 0 0 calc(25% - 12px); /* 一行五個 */
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3比例 */
  background: #eee;
}

.image-wrapper img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ✅ 新增：上方產品類型標籤 */
.product-tags-overlay {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  z-index: 2;
}

.product-tags-overlay .tag {
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.2;
  font-weight: 500;
  border: 1px solid #ddd;
}

/* ✅ 價格底部遮罩 */
.price-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 6px 8px;
  box-sizing: border-box;
}

.left-tags .product-tag {
  padding: 2px 6px;
  margin-right: 4px;
  font-size: 0.8rem;
  border-radius: 3px;
  display: inline-block;
}


/* 限時 */

.right-rating {
  margin-left: 10px;
  font-size: 0.75rem;
  color:white;
  opacity: 0.95;
}

.price-values {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
}

.price-nt, .price-hk {
  font-size:0.9rem;
  font-weight: bold;
  color: var(--font-color-accent1);
  line-height: 1.2;
  text-decoration: line-through;
}

/* ✅ 下方產品描述區 */
.product-info {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-size: 1rem!important;
  font-weight: 600;
  color: #1f2324;
  margin-bottom: 6px;
  
display: -webkit-box;
  -webkit-line-clamp: 2;             /* 限制顯示兩行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;                  /* 每行高度 */
  max-height: 2.8em;                 /* 2行文字所占高度 */
  min-height: 2.8em;                 /* 保證即使文字較少也佔據2行 */
  }

.product-desc {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 10px;
  
	display: -webkit-box;
  -webkit-line-clamp: 2;             /* 限制顯示兩行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;                  /* 每行高度 */
  max-height: 2.8em;                 /* 2行文字所占高度 */
  min-height: 2.8em;                 /* 保證即使文字較少也佔據2行 */
}

.action-buttons {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.btn-buy {
  flex: 1;
  text-align: center;
  padding: 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-buy.tw { 
background: #ffa500;
  font-size: 1rem;

 }
.btn-buy.hk { 
background: #2c3e50; 
  font-size: 1rem;

}

.btn-buy.tw:hover {
  opacity: 0.9;
 color:#2c3e50;
}

.btn-buy.hk:hover {
  opacity: 0.9;
 color:#ffa500;
}
/* ✅ 響應式：手機一行2個 */
@media (max-width: 768px) {
  .product-card {
    flex: 0 0 calc(100% - 8px);
  }
}

/* ✅ 一行中只有一個產品時也居中 */
@media (min-width: 769px) {
  .product-grid:has(.product-card:only-child) {
    justify-content: center;
  }
}

/*************************************/
/*************************************/
/*************************************/

/* Pro02 橫式商品卡片樣式 */
.product-horizontal-card {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 12px;
}

.product-container {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  flex-wrap: wrap;
}

.product-image {
  position: relative;
  flex: 1 1 40%;
  min-width: 280px;
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px 0 0 16px;
}

.product-tags-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}

.tag {
  background-color: var(--theme-color-1);
  color: white;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 999px;
}

.product-details {
  flex: 1 1 60%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.product-desc {
  font-size: 1rem;
  color: var(--font-color);
  margin-bottom: 16px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.product-tag {
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 12px;
  margin-right: 6px;
}

    .tag-0 {
      background-color: #ffebee!important;
      color: #d32f2f;
    }
    
    .tag-1 {
      background-color: #e3f2fd!important;
      color: #1976d2;
    }
    
    .tag-2 {
      background-color: #fff8e1!important;
      color: #ff8f00;
    }
    
    
	.tag-3 {
	  background: #e74c3c!important; /* 熱銷中 - 紅色 */
	   color: white;
    }

	
	.tag-4 {
	  background: #f39c12!important; /* 限時折扣 - 橘黃 */
	   color: white;

	}
	
	.tag-5 {
	  background: #27ae60!important; /* 新品上市 - 綠色 */
	   color: white;
	}
	
	.tag-6 {
	  background: #2980b9!important; /* 精選推薦 - 藍色 */
    color: white;

	}
	.tag-7 {
	  background-color: #ffa500!important; /* 精選推薦 - 藍色 */
    color: white;

	}
	.tag-8 {
	  background-color: #e74c3c!important; /* 精選推薦 - 藍色 */
    color: white;

	}
	.tag-9 {
	  background-color: #9b59b6!important; /* 精選推薦 - 藍色 */
    color: white;

	}

.rating {
  font-size: 0.9rem;
  color: #f39c12;
}

.price-box {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--theme-color-1);
  margin-bottom: 16px;
}


.action-buttons {
  display: flex;
  gap: 10px;
}

.btn-buy {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: bold;
}


@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
  }
  .product-image img {
    border-radius: 16px 16px 0 0;
  }
}

/*************************************/
/*************************************/
/*************************************/
/*************************************/
/*************************************/

/* Pro02-1 新增：圖片固定高度並保持比例 */
.pro02-1-section {
  padding: 40px 20px;
  background: var(--bg-white);
}
.pro02-1-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.pro02-1-card {
  display: flex;
  width: calc(50% - 12px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
}
.pro02-1-card:hover {
  transform: translateY(-4px);
}
.pro02-1-image {
  flex: 0 0 267px;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.pro02-1-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 使用 Pro01 風格的圖片左上角浮標 */
.pro02-1-tags-overlay {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 2;
}
.pro02-1-tag-overlay {
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 8px;
  white-space: nowrap;
}

/* Pro01風格：產品功能標籤（圖片下方） */
.pro02-1-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pro02-1-tag {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 9px;
  white-space: nowrap;
}
.pro02-1-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pro02-1-toprow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.pro02-1-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--theme-color-1);
  text-align: right;
}
.pro02-1-price .price-hk,.pro02-1-price .price-nt {
  margin-left: 12px;
  font-size: 0.9rem;
  color: #888;
}
.pro02-1-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}
.pro02-1-desc {
  font-size: 0.9rem;
  color: var(--font-color);
  line-height: 1.4;
  margin-bottom: 16px;
}
.pro02-1-actions a {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.85rem;
  margin-right: 8px;
  border-radius: 6px;
  text-decoration: none;
  background: var(--theme-color-1);
  color: #fff;
  transition: background 0.2s ease;
}
.pro02-1-actions a.hk {
  background: #888;
}
.pro02-1-actions a:hover {
  opacity: 0.9;
}
.pro02-1-actions .btn-buy.tw {
  background-color: var(--theme-color-1);
  color: white;
}

.pro02-1-actions .btn-buy.hk {
  background-color: #eee;
  color: #333;
}


/* 手機端 RWD */
@media (max-width: 768px) {
  .pro02-1-card {
    flex-direction: column;
    width: 100%;
  }
  .pro02-1-image {
    width: 100%;
    height: 200px;
  }
  .pro02-1-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


/*************************************/
/*************************************/
/*************************************/
/*************************************/
.pro02-2-container {
 max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pro02-2-card {
  width: calc(33.333% - 13.333px);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
}

.pro02-2-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.pro02-2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pro02-2-tags-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.pro02-2-tag-overlay {
  background-color: var(--theme-color-1);
  color: white;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 6px;
}

.pro02-2-actions {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  z-index: 3;
}

.pro02-2-actions a {
  flex: 1;
  padding: 5px 10px;
  font-size: 0.8rem;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  transition: 0.2s ease;
}

.pro02-2-actions .btn-buy.tw {
  background-color: var(--theme-color-1);
  color: #fff;
}

.pro02-2-actions .btn-buy.hk {
  background-color: #eee;
  color: #333;
}

.pro02-2-actions a:hover {
  opacity: 0.9;
}

.pro02-2-content {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pro02-2-toprow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.pro02-2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pro02-2-tag {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 9px;
  white-space: nowrap;
  background: #f0f0f0;
}

.pro02-2-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--theme-color-1);
  text-align: right;
}
.pro02-2-price .price-hk,
.pro02-2-price .price-nt {
  margin-left: 12px;
  font-size: 0.9rem;
  color: #888;
}

.pro02-2-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.pro02-2-desc {
  font-size: 0.9rem;
  color: var(--font-color);
  line-height: 1.4;
  margin-bottom: 16px;
}

/* RWD */
@media (max-width: 1024px) {
  .pro02-2-card {
    width: calc(50% - 10px);
  }
}
@media (max-width: 768px) {
.pro02-2-container {
 max-width: 100%;
  padding:1px 20px!important;
}
  .pro02-2-card {
    width: 100%;
  }
  .pro02-2-image-wrapper {
    height: 200px;
  }
  .pro02-2-actions a {
    font-size: 0.75rem;
    padding: 5px 6px;
  }
  .pro02-3-image{
	 max-width: 100%;
	flex: 0 0 100px;
	}
}

/*************************************/
/*************************************/
/*************************************/
.pro02-3-section {
  padding: 30px 20px;
  background: var(--bg-white);
}

.pro02-3-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pro02-3-card {
  width: calc(33.333% - 13.333px);
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative; /* ⬅️ 为定位按钮做准备 */
}

.pro02-3-card:hover {
  transform: translateY(-4px);
}

.pro02-3-image {
  flex: 0 0 200px;
  height: 160px;
  overflow: hidden;
  position: relative; /* ⬅️ 为按钮定位准备 */
   margin:15px auto auto 15px;
}

.pro02-3-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ✅ actions移动到图片下方叠加 */
.pro02-3-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 6px 0px;
  background: rgba(0, 0, 0, 0.35); /* 半透明背景 */
  display: flex;
  justify-content: center;
  gap: 2px;
  z-index: 2;
}

.pro02-3-tag-overlay {
  color: white;
  font-size: 0.7rem;
  padding: 2px 4px;
  border-radius: 4px;
	
	
}
/* ✅ 缩小按钮尺寸 */
.pro02-3-actions a {
  padding: 4px 5px;
  font-size: 0.75rem;
  border-radius: 4px;
  text-decoration: none;
  background: var(--theme-color-1);
  color: #fff;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.pro02-3-actions a.hk {
  background: #888;
}

.pro02-3-actions a:hover {
  opacity: 0.9;
}

.pro02-3-content {
  flex: 1;
  padding: 22px 22px 22px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pro02-3-tags {
  margin-bottom: 1px;
}

.pro02-3-tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 8px;
  margin-right: 6px;
}

.pro02-3-tag.tag-1 {
}

.pro02-3-tag.tag-3 {
  background: #b24592;
}

.pro02-3-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 限制顯示3行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pro02-3-desc {
  font-size: 0.9rem;
  color: var(--font-color);
  line-height: 1.3;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 限制顯示3行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pro02-3-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--theme-color-1);
  margin-bottom: 10px;
}

.pro02-3-price .price-hk {
  margin-left: 12px;
  font-size: 0.9rem;
  color: #888;
}

/* ✅ 响应式适配 */
@media (max-width: 768px) {
  .pro02-3-card {
    flex-direction: column;
    width: 100%;
  }

  .pro02-3-image {
    width: 100%;
    height: 160px;
  }

  .pro02-3-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .pro02-3-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/*************************************/
/*************************************/
/*************************************/
/*************************************/
/* Review section container */
/* 整体滑动区块样式 */
.ys-review-slider-section {
  margin: 40px auto;
  background: #f9f9f9;
  padding: 40px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* 标题区域 */
.review-section-title {
  padding: 20px;
}

.ys-review-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
  text-align: center;
  color: var(--heading-color, #1f2324);
}

/* 滑动容器（固定宽度） */
.ys-review-slider-container {
  width: 1320px; /* 固定宽度 */
  margin: 0 auto;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

/* 滑动轨道 */
.ys-review-slider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex-wrap: nowrap;
  padding-bottom: 10px;
}

/* 单个卡片：5个卡片一行 */
.ys-review-card {
  flex: 0 0 calc((1320px - 3 * 16px) / 4); /* 5个卡片，4个间距 */
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
 /*  max-width: 264px;  min-width: 250px;///5个//  min-width: 300px;  max-width: 324px ///4个///  /////min-width: 400px;  max-width: 440px;//3个 ///  min-width: 600px;  max-width: 660px;/2个 //// */
  min-width: 300px;  max-width: 324px; 
}

/* 主题标签 */
.ys-review-theme {
  font-size: 1.4rem;
  font-weight: 600;
  color: #d9534f;
  margin-bottom: 8px;
  padding: 4px 10px;
  display: inline-block;
  border-left: 4px solid #d9534f;
  border-radius: 4px;
}
.review-section-desc{
	padding: 10px 20px;
}
/* 用户资料 + 评分 */
.ys-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 10px;
}

.ys-user-profile {
  display: flex;
  align-items: center;
}

.ys-user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  border: 2px solid #fff;
  box-shadow: 0 0 3px rgba(0,0,0,0.1);
}

.ys-user-info {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.3;
}

.ys-user-type {
  font-weight: bold;
  color: #000;
}

.ys-user-region {
  font-size: 0.75rem;
  color: #999;
}

.ys-right-rating {
  font-size: 0.85rem;
  color: #d97706;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: bold;
  white-space: nowrap;
}

.ys-rating-score {
  font-size: 1rem;
  color: #d97706;
}

.ys-rating-count {
  font-size: 0.75rem;
  color: #777;
}

/* 标签 */
.ys-review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.ys-tag {
  font-size: 0.75rem;
  background: #eee;
  padding: 4px 8px;
  border-radius: 10px;
}

/* 内容区 */
.ys-review-content {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 10px;
}

/* 商品展示 */
.ys-review-products {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.ys-product-thumbnail {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.ys-review-product {
  font-size: 0.85rem;
  color: #444;
}

.ys-product-link {
  color: #007bff;
  text-decoration: none;
}

.ys-product-link:hover {
  text-decoration: underline;
}

/* 左右滑动箭头 */
.ys-review-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 2rem;
  padding: 4px 12px;
  cursor: pointer;
  z-index: 10;
  color: #333;
  transition: background-color 0.2s;
}

.ys-review-nav:hover {
  background-color: #ddd;
}

.ys-review-nav.prev {
  left: 0;
}

.ys-review-nav.next {
  right: 0;
}

/* 滚动条隐藏 */
.ys-review-slider-track::-webkit-scrollbar {
  display: none;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
  .ys-review-slider-container {
    width: 100%;
    padding: 0 12px;
  }

  .ys-review-card {
    flex: 0 0 85%;
    max-width: 100%;
  }

  .ys-review-nav {
    font-size: 1.8rem;
    padding: 2px 10px;
  }
}

/* 主题颜色可扩展 */
.theme-effective {
  border-left-color: #ff5722;
  color: #000;
}

.theme-fast {
  border-left-color: #4caf50;
  background-color: #f0fff0;
  color: #4caf50;
}

.theme-subtle {
  border-left-color: #3f51b5;
  background-color: #f3f5ff;
  color: #3f51b5;
}

/*************************************/
/*************************************/
/* 默认PC端设置 */
#searchpweb1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

#searchpweb2 {
  display: block;
}

/* 手机端设置 */
@media (max-width: 768px) {
  #searchpweb1 {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  #searchpweb2 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
  }
  .intimacy-formula-section{
    width: 100%;
   padding: 20px ;
	margin: 20px auto;
}
  .ys-service-section {
    width: 100%;
	margin: 20px auto;
	padding: 1px 20px 20px 20px;  }

}

/* 物流图标统一尺寸与排列 */
.shipping-icon {
  height: 40px;
  margin-right: 10px;
  margin-bottom: 10px;
  object-fit: contain;
}

.contact-info p a {
  text-decoration: none;
  color: inherit;
}
.shipping-logos {
  margin-top: 20px;
}

.shipping-icon {
  width: 100%;
  height: 60px;
  object-fit: contain;
  background-color: #fff;
  padding: 5px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}



.top-bar .lang-dropdown {
  margin-left: auto;
    font-size:16px;

}
  .lang-dropdown .dropdown-toggle {
      background: transparent;
      border: none;
      font-size: 15px;
      color:white;
      padding: 0;
    }
    
.fixed-top .lang-dropdown .dropdown-toggle {
      background: transparent;
      border: none;
      font-size: 15px;
      color: black;
      padding: 0;
    }

/************************************************/
/************************************************/
/************************************************/
.cat-tabs-01-header {
  padding: 4px 12px 24px 12px;
  background-color: var(--bg-white);
	margin-top: 5px;
}

.cat-tabs-01-tab-header {
 display: flex;
  flex-wrap: wrap;
  justify-content: center; /* ⭐ 关键：按钮居中 */
  gap: 12px;
  margin-bottom: 5px;
}

.cat-tabs-01-tab-btn {
  padding: 10px 16px;
  background-color: var(--theme-color-3);
  color: var(--heading-color);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.cat-tabs-01-tab-btn.active {
  background-color: var(--theme-color-1);
  color: var(--font-white);
}

.cat-tabs-01-content {
  display: none;
  padding: 20px 12px;
  background-color: var(--bg-white);
  animation: fadeIn 0.3s ease-in-out;
}

.cat-tabs-01-content.active {
  display: block;
}

.cat-tabs-01-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 768px) {
  .cat-tabs-01-grid {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .recommend-card {
    min-width: 80%;
    flex: 0 0 auto;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/************************************************/
/************************************************/
/************************************************/
.site-footer {
  background-color: #121212;
  color: #dcdcdc;
  font-size: 0.95rem;
}

.footer-wrapper {
  padding: 2rem 0 1rem;
  border-bottom: 1px solid #2a2a2a;
}

.container-1320 {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-block {
  flex: 1 1 180px;
  min-width: 160px;
}

.footer-block h4 {
  font-size: 1.05rem;
  color: #f0f0f0;
  margin-bottom: 0.8rem;
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block ul li {
  margin-bottom: 0.5rem;
}

.footer-block ul li a {
  color: #c2c2c2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-block ul li a:hover {
  color: #ffffff;
}

/* 下方聲明區 */
.footer-extra-wrapper {
  background: linear-gradient(to bottom, #181818 0%, #121212 100%);
  padding: 1.5rem 0;
}

.footer-extra-brand,
.footer-extra-warning,
.footer-extra-support {
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.footer-extra-warning {
  color: rgb(255, 255, 255);
  font-weight: bold;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #3a3a3a, transparent);
  border: none;
  margin: 1rem 0;
}

/* RWD */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
}


/************************************************/

