/*首页流程*/
.sensors .banner{
    border-radius: 10px;
    overflow: hidden;
}
.sensors .text-left {
    clip-path: polygon(0px 0, 0% 110px, 50% 130px, 100% 110px, 100% 0);
    background: #fff;
    margin: -1px;
    height: 220px;
}

.sensors .item{
    position: relative;
}
.sensors .item::before {
    position: absolute;
    top: -2px;
    left: 10px;
    content: '';
    font-weight: bold;
    font-size: 1rem;
    background: var(--fs-color-primary);
    color: white;
    padding: 0.3em 0.8em;
    border-radius: 10px 1px 10px 0;
    z-index: 9;
    font-size: 13px;
}

.sensors {
  counter-reset: step; /* 重置计数器 */
}

.sensors .item::before {
  counter-increment: step; /* 自增 */
  content: "Step " counter(step);
  display: inline-block;
}

.card-border .item .col-inner{
    overflow: hidden !important;
}
.flickity-slider .row {
    top: 0;
}
/* ==================== 客户评价 ==================== */
.reviews-b .name {
  display: inline-flex;
  align-items: center;
}

.reviews-b .name::after {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="blue" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"/><path d="m9 12 2 2 4-4"/></svg>');
  display: inline-block;
  margin-left: 4px;
  height: 1em;
}


/* 方案B: 使用CSS Columns，兼容Flatsome */
.row.reviews-b-list {
  display: block !important;
  column-count: 3 !important;
  column-gap: 20px !important;
  column-fill: balance !important;
  /* 重置Flatsome样式 */
  flex-wrap: unset !important;
  margin-left: auto !important;
  margin-right: auto !important;
  /* 居中对齐 */
  max-width: 1200px !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.row.reviews-b-list .col.item {
  display: inline-block !important;
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  break-inside: avoid !important;
  page-break-inside: avoid !important;
  vertical-align: top !important;
}

/* 响应式调整 */
@media (max-width: 549px) {
  .row.reviews-b-list {
    column-count: 1 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (min-width: 550px) and (max-width: 849px) {
  .row.reviews-b-list {
    column-count: 2 !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}

@media (min-width: 850px) {
  .row.reviews-b-list {
    column-count: 3 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* 额外的居中优化 */
.row.reviews-b-list .col.item:first-child {
  margin-top: 0 !important;
}



/* 评论区域容器样式 - 动态添加到现有元素 */
.reviews-b-wrapper {
    position: relative;
    overflow: hidden;
    /* 不设置默认高度，通过JS控制 */
}

/* 渐变遮罩层 - 默认深色 */
.reviews-b-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px; /* 遮罩高度 */
    background: linear-gradient(
        to bottom,
        rgba(28, 28, 28, 0) 0%,
        rgba(28, 28, 28, 0.3) 30%,
        rgba(28, 28, 28, 0.8) 70%,
        rgba(28, 28, 28, 1) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    pointer-events: none;
    z-index: 10;
}

/* 白色遮罩层 - 当父元素包含reviews-b-w类时 */
.reviews-b.reviews-b-w .reviews-b-overlay {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 30%,
        rgba(255, 255, 255, 0.8) 70%,
        rgba(255, 255, 255, 1) 100%
    );
}

/* 查看更多按钮 - 使用Flatsome默认样式 */
.view-more-btn {
    pointer-events: auto;
}

/* 展开状态 */
.reviews-b-wrapper.expanded {
    height: auto !important;
    overflow: visible !important;
}

.reviews-b-wrapper.expanded .reviews-b-overlay {
    display: none;
}

.reviews-b-wrapper.expanded .collapse-btn {
    display: block;
}

/* 收起按钮 - 使用Flatsome默认样式 */
.collapse-btn {
    margin: 20px auto 0;
    display: none;
    text-align: center;
}

/*联系*/
.page-contact-us{
    .icon-box .has-icon-bg .icon .icon-inner {
    background-color: currentColor;
    }
    
    .icon-box .has-icon-bg i, .icon-box .has-icon-bg svg, .icon-box .has-icon-bg svg path {
        fill: #fff;
    }
    
    .fluentform .ff_upload_btn.ff-btn{
        border-radius: 4px;
    }
    
    .box-shadow-3, .box-shadow-3-hover:hover, .row-box-shadow-3 .col-inner, .row-box-shadow-3-hover .col-inner:hover {
    box-shadow: 0 2px 15px rgb(239 241 245);
    border: 1px solid #eee;
}


}