.product-item .swatch-option.color, .product-item .swatch-option.image {
    height: 20px !important;
    width: 20px !important;
    background-size: 100% !important;
}
.swatch-attribute-options a.swatch-option-link-layered .swatch-option {
    background-size: 100% !important;
}

 /* 基础容器：适配所有设备 */
  .policy-page-content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  color: #333;
  line-height: 1.8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* 统一标题：自动适配手机和PC大小 */
.policy-page-content h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #1a252f;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}
/* 统一二级标题：带底边线，增加结构感 */
.policy-page-content h2 {
  color: #2c3e50;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
  margin-top: 45px;
  /*margin-bottom: 20px;*/
  font-size: clamp(1.3rem, 5vw, 2.6rem);
}
/* 统一段落和列表字号：确保PC端大字体 */
.policy-page-content span, 
.policy-page-content p, 
.policy-page-content li {
  font-size: 15px;
  /*color: #555;*/
  /*margin-bottom: 15px;*/
}  
/* 统一强调内容（问题/重点） */
.policy-page-content strong, 
.policy-page-content .item-title {
  color: #1a252f;
  font-weight: 700;
}
/* 统一免责/警告框 (红色系) */
.policy-box-warning {
  background-color: #fdf2f2;
  border-left: 5px solid #e74c3c;
  padding: 20px;
  margin: 25px 0;
  border-radius: 0 8px 8px 0;
}
/* 统一提示/信息框 (灰色或蓝色系) */
.policy-box-info {
  background-color: #f8f9fa;
  border-left: 5px solid #2c3e50;
  padding: 20px;
  margin: 25px 0;
  border-radius: 0 8px 8px 0;
}
/* 统一重点/强调框 (绿色色系) */
.policy-box-green {
  background-color: #f0f9eb;;
  border-left: 5px solid #67c23a;;
  padding: 20px;
  margin: 25px 0;
  border-radius: 0 8px 8px 0;
}
.policy-box-security {
    background-color: #f0f7ff; /* 淡蓝色，代表安全与科技感 */
    border-left: 5px solid #3498db;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
  }
  
  /* 公式块：视觉重点 */
  .formula-highlight {
    background-color: #f8f9fa;
    border-left: 5px solid #2c3e50;
    padding: 20px;
    margin: 25px 0;
    font-weight: bold;
    text-align: center;
    font-size: 1.1em;
    border-radius: 0 8px 8px 0;
  }
.important-note {
    background-color: #fff4e5;
    border: 1px dashed #e67e22;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
  }
  /* 关税标签 */
  .duty-free-tag {
    display: inline-flex;
    align-items: center;
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9em;
    margin-bottom: 15px;
    border: 1px solid #c8e6c9;
  }

  /* 表格响应式处理：核心点 */
  .table-container {
    width: 100%;
    overflow-x: auto; /* 手机端溢出时可左右滑动 */
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
    border: 1px solid #eee;
    border-radius: 12px;
  }

  .shipping-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* 保证在手机上内容不被挤扁 */
  }

  .shipping-table th {
    background-color: #fcfcfc;
    font-weight: 600;
    color: #666;
  }

  .shipping-table th, .shipping-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
  }
  
/* 统一页脚联系区域 */
.policy-footer {
  margin-top: 60px;
  padding: 40px;
  background: #f4f7f9;
  text-align: center;
  border-radius: 15px;
}

.policy-footer a {
  color: #2c3e50;
  font-weight: bold;
  text-decoration: underline;
}

.ml-faq-answer {
  padding-left: 25px;
  border-left: 2px solid #f2f2f2;
}
  
  /* 手机端专项微调 */
  @media (max-width: 600px) {
    .policy-page-content {
      margin: 20px auto;
      padding: 0 15px;
    }
    .formula-highlight {
      font-size: 0.95em;
      padding: 15px;
    }
    .table-scroll-hint {
      display: block; /* 仅在手机端显示滑动提示 */
      font-size: 12px;
      color: #999;
      text-align: right;
      margin-bottom: 5px;
    }
  }

  .last-updated {
    text-align: center;
    color: #999;
    font-size: 0.9em;
    margin-bottom: 40px;
  }
  
  @media (min-width: 601px) {
    .table-scroll-hint {
      display: none; /* PC端隐藏提示 */
    }
  }
  
  /* 仅针对 About 页面特有的网格微调，其余继承通用 CSS */
    .about-features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin: 30px 0;
    }
    .about-feature-item { padding: 10px; }
    .about-feature-item svg { margin-bottom: 10px; color: #2c3e50; }
    .about-feature-item strong { display: block; margin-bottom: 8px; font-size: 1.2rem; }
    @media (max-width: 768px) {
      .about-features-grid { grid-template-columns: 1fr; text-align: center; }
    }
    
/*home banner-style-36*/
.banner-style36 .banner-title {
    font-size: 36px;
    line-height: 1.2;
    color: #222;
    margin-bottom: 25px;
}

.banner-style36 .assurance-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.banner-style36 .assurance-list li {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #444;
}

.banner-style36 .assurance-list li span {
    color: #2ecc71; /* 绿色对勾 */
    margin-right: 12px;
    font-weight: bold;
}
.banner-style36 .bc-actions {
    margin-top: 2px;
}
@media (max-width: 600px) {
    .banner-title { font-size: 28px; }
}
    