/** Shopify CDN: Minification failed

Line 269:0 Unexpected "#"
Line 269:2 Unexpected "{"
Line 269:11 Expected ":"
Line 274:2 Unexpected "#"
Line 274:4 Unexpected "{"
Line 274:13 Expected ":"
Line 277:2 Unexpected "#"
Line 277:4 Unexpected "{"
Line 277:13 Expected ":"
Line 281:2 Unexpected "#"
... and 64 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:compare-products (INDEX:5) */
.compare-sections {
  max-width: 1480px;
  margin: 0 auto;
  padding: 10px 20px 50px 20px;
}
.compare-tabs-section-title{
  font-size: 36px;
  margin: 15px auto;
}
.compare-sections .compare-select-content{
  display: grid;
  grid-auto-flow: row;
  overflow-x: auto;
  gap: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background-color: #fff;
}
.compare-sections .compare-select-row{
  display: grid;
  grid-template-columns: repeat(var(--col-count), minmax(240px, 1fr));
}
.compare-sections .compare-product-row{
  display: grid;
  grid-template-columns: repeat(var(--col-count), minmax(240px, 1fr));
}
.compare-sections .compare-cell {
  padding: 16px;
}
.compare-sections .spec-key {
  font-weight: 600;
  background: #f9fafb;
}
.compare-sections .compare-select {
  width: 100%;
  padding: 8px;
}


/* 包裹层：用来放自定义箭头 */
.compare-select-wrap {
  position: relative;
}
/* Select 本体 */
.compare-sections .compare-select {
  width: 100%;
  height: 48px;
  padding: 0 44px 0 14px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

/* Hover / Focus */
.compare-sections .compare-select:hover {
  border-color: #999;
}

.compare-sections .compare-select:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 2px rgba(0,0,0,.06);
}

/* 自定义下拉箭头 */
.compare-sections .compare-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  pointer-events: none;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23666' d='M5 7l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
/* 未选择状态 */
.compare-sections .compare-select option[value=""] {
  color: #888;
}
.compare-product-card {
  text-align: center;
}
.compare-sections .product-image img {
  max-width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 10px;
}
.compare-sections .product-title {
  font-size: 14px;
  font-weight: 600;
  margin: 6px 0;
  display: -webkit-box;        /* 必须，配合 line-clamp */
  -webkit-box-orient: vertical;
  overflow: hidden;            /* 超出隐藏 */
  -webkit-line-clamp: 2;       /* 显示两行 */
  line-height: 1.4em;          /* 根据需要调整行高 */
  max-height: calc(1.4em * 2); /* 两行高度，兼容性更好 */
  word-break: break-word;       /* 防止英文过长撑开 */
}
.compare-sections .product-rating {
  margin: 4px 0;
}
.compare-sections .product-price {
  margin: 6px 0;
}
.compare-sections .price-current {
  color: #e53935;
  font-weight: 700;
  margin-right: 6px;
}
.compare-sections .price-compare {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 13px;
}
 .compare-sections .product-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  border: 1px solid #111;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid #ff6f0e;
  border-radius: 8px;
}
 .compare-sections .product-btn:hover{
   background-color: #ff6f0e;
   color:#fff
 }

.compare-sections .compare-product-content{
  display: grid;
  grid-auto-flow: row;
  overflow-x: auto;
  gap: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background-color: #fff;
}

.compare-sections .compare-specs {
  display: grid;
  grid-auto-flow: row;
  overflow-x: auto;
  gap: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background-color: #fff;
}

.compare-sections .compare-specs::-webkit-scrollbar {
  display: none;
}

.compare-sections .compare-spec-row {
  display: grid;
  grid-template-columns: repeat(var(--col-count), minmax(240px, 1fr));
  border-bottom: 1px solid #e5e7eb;
}

.compare-sections .spec-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px;
  border-left: 1px solid #e5e7eb;
}

.compare-sections .spec-value {
  font-weight: 600;
  margin-bottom: 4px;
  text-align: center;
}

.compare-sections .spec-label {
  font-size: 14px;
  color: #6b7280;
    text-align: center;
}
.compare-tab-panel {
  display: none;
}
.compare-tab-panel.is-active {
  display: block;
}
.compare-tabs-nav {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid #e5e7eb;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: center;
}

.compare-tab-btn {
  padding: 12px 0;
  border: none;
  background: none;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  font-size: 18px;
}
.compare-tab-btn.is-active {
    border-color: #ff6f0e;
}
/* 悬浮层 */
.compare-select-content {
  position: sticky;
  top: 0;                 /* 需要的话改成 60px（避开 header） */
  z-index: 2;
  background: #fff;
}
.spec-icon-check{
  color:rgb(104, 211, 16);
}
.spec-icon-ischeck{
 color: #dd3434;
}



@media (max-width: 768px) {
  .compare-sections {
      max-width: 100%;
      padding: 0 0 30px 0;
  }
  .compare-tabs-section-title{
    font-size: 24px;
    margin: 15px auto;
  }
}
/* END_SECTION:compare-products */

/* START_SECTION:neotec-reviews-header (INDEX:51) */
#{{ section.id }}.neotec-reviews-header {
    --neotec-section-reviews-pad-y: clamp(1.75rem, 4vw, 3rem);
    padding-top: var(--neotec-section-reviews-pad-y);
    padding-bottom: clamp(1rem, 2.5vw, 1.5rem);
  }
  #{{ section.id }} .neotec-reviews-header__inner {
    max-width: min(100%, 1200px);
  }
  #{{ section.id }} .neotec-reviews-header__head {
    text-align: center;
    margin-bottom: 0;
  }
  #{{ section.id }} .neotec-reviews-header__title {
    margin: 0 0 0.75em;
    overflow-wrap: anywhere;
  }
  #{{ section.id }} .neotec-reviews-header__intro {
    margin: 0 auto;
    max-width: 52rem;
    font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
    line-height: 1.65;
    color: rgba(var(--text-color-rgb), 0.82);
  }
  #{{ section.id }} .neotec-reviews-header__intro.rte {
    color: rgb(var(--text-color-rgb));
  }
  @media screen and (min-width: 1000px) {
    #{{ section.id }} .neotec-reviews-header__head {
      text-align: left;
    }
    #{{ section.id }} .neotec-reviews-header__intro,
    #{{ section.id }} .neotec-reviews-header__intro.rte {
      margin-left: 0;
      margin-right: 0;
    }
  }
/* END_SECTION:neotec-reviews-header */

/* START_SECTION:product-comparison (INDEX:59) */
/* Section fills main column; inner track matches theme .container (theme.css ~1023). */
#shopify-section-{{ section.id }} {
  width: 100%;
  max-width: 100%;
}

#shopify-section-{{ section.id }} .spec-diff {
  color: #ff6900;
}

#shopify-section-{{ section.id }} .product-compare-section {
  box-sizing: border-box;
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--mobile-container-gutter) 20px;
}

@media screen and (min-width: 641px) {
  #shopify-section-{{ section.id }} .product-compare-section {
    padding: 0 var(--desktop-container-gutter) 20px;
  }
}
#shopify-section-{{ section.id }} .compare-section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #2d3748;
}
#shopify-section-{{ section.id }} .product-compare-section .sapn_a {
  text-align: center;
  font-size: 18px;
  color: #ff6900;
  display: block;
  position: relative;
  top: -24px;
}

#shopify-section-{{ section.id }} .no-compare-items {
  text-align: center;
  padding: 40px 20px;
  background: #f9f9f9;
  border-radius: 8px;
}
#shopify-section-{{ section.id }} .compare-cta-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: #4299e1;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}
#shopify-section-{{ section.id }} .compare-grid {
  display: flex;
  flex-direction: column;
  overflow-x: auto;
  width: 100%;
  min-width: 0;
}
/* Desktop/tablet: columns share full inner width (replaces fixed 370px+343px capped layout). */
@media screen and (min-width: 769px) {
  #shopify-section-{{ section.id }} .compare-row {
    display: grid;
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(var(--col-count), minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  #shopify-section-{{ section.id }} .compare-row {
    display: grid;
    width: max-content;
    min-width: 100%;
    grid-template-columns: 200px repeat(calc(var(--col-count) - 1), minmax(240px, 340px));
  }
}
#shopify-section-{{ section.id }} .compare-cell {
  padding: 14px 16px;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
  text-align: center;
}
#shopify-section-{{ section.id }} .compare-header .compare-cell {
  font-weight: 600;
}

/* Fixed image band so mixed aspect ratios align (metafield + legacy headers). */
#shopify-section-{{ section.id }} .compare-header.compare-row .compare-cell.product > a {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 200px;
  margin: 0 auto 10px;
}
#shopify-section-{{ section.id }} .compare-header.compare-row .compare-cell.product > a img {
  display: block;
  max-height: 200px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

#shopify-section-{{ section.id }} .compare-category-cell {
  grid-column: 1 / -1;
  background: #716b67;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 12px 16px;
  text-align: left;
}
#shopify-section-{{ section.id }} .compare-product-img img {
  height: 200px;
  object-fit: contain;
  margin-bottom: 10px;
}
#shopify-section-{{ section.id }} .compare-product-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
  text-decoration: none;
}
#shopify-section-{{ section.id }} .compare-product-price {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 700;
  color: #e53e3e;
}
#shopify-section-{{ section.id }} .compare-at-price {
  font-size: 12px;
  margin-left: 6px;
  color: #a0aec0;
  text-decoration: line-through;
}
#shopify-section-{{ section.id }} .spec-key {
  font-weight: 700;
  white-space: pre-line;
}
#shopify-section-{{ section.id }} .spec-label {
  font-size: 13px;
  color: #718096;
  margin-top: 4px;
  line-height: 1.35;
}

@media (max-width: 768px) {
  #shopify-section-{{ section.id }} .compare-category {
    display: none;
  }
}
/* END_SECTION:product-comparison */