@charset "UTF-8";
/**
 * Theme Name:   Bricks Child Theme
 * Theme URI:    https://bricksbuilder.io/
 * Description:  Use this child theme to extend Bricks.
 * Author:       Bricks
 * Author URI:   https://bricksbuilder.io/
 * Template:     bricks
 * Version:      1.1
 * Text Domain:  bricks
**/
@property --tween {
  syntax: "*";
  inherits: false;
}
body {
  font-family: "Open Sans", sans-serif;
}

.soroy-header.brxe-section {
  --header-h: 90px;
  --logo-h: 64px;
  --nav-gap: 24px;
  --nav-font: 16px;
  --quote-pad-y: 8px;
  --quote-pad-x: 16px;
  --shrink-at: 48px;
  --restore-at: 12px;
  --shrink-duration: 0.4s;
  --shrink-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --search-duration: 0.4s;
  --is-mobile: 0;
  --tween: height;
  display: block;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  margin-bottom: 0;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  overflow: visible;
}
.soroy-header.brxe-section.is-shrink {
  --header-h: 66px;
  --logo-h: 48px;
  --nav-gap: 14px;
  --nav-font: 14px;
  --quote-pad-y: 6px;
  --quote-pad-x: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.soroy-header.brxe-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.soroy-header.brxe-section > .brxe-container {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  align-items: stretch;
  height: 100%;
  overflow: visible;
}
.soroy-header.brxe-section .soroy-search-form,
.soroy-header.brxe-section .soroy-navigation {
  grid-area: 1/1;
  width: 100%;
  height: 100%;
}
.soroy-header.brxe-section.is-search-open, .soroy-header.brxe-section.is-search-animating {
  overflow: hidden;
}
.soroy-header.brxe-section.is-search-open > .brxe-container, .soroy-header.brxe-section.is-search-animating > .brxe-container {
  overflow: hidden;
}
.soroy-header.brxe-section .soroy-search-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s linear 0.4s;
}
.soroy-header.brxe-section .soroy-search-form .close-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  order: 2;
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.soroy-header.brxe-section .soroy-search-form .close-search svg {
  width: 20px;
  height: 20px;
  fill: #888;
  transition: fill 0.2s ease;
}
.soroy-header.brxe-section .soroy-search-form .close-search:hover {
  background: rgba(160, 206, 78, 0.15);
  transform: rotate(90deg);
}
.soroy-header.brxe-section .soroy-search-form .close-search:hover svg {
  fill: rgb(23.9814332813%, 32.4023945862%, 8.9701544335%);
}
.soroy-header.brxe-section .soroy-search-form form {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(760px, 100% - 88px);
  border-bottom: 2px solid #e8e8e8;
}
.soroy-header.brxe-section .soroy-search-form form::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.2' y2='16.2'/%3E%3C/svg%3E") center/contain no-repeat;
}
.soroy-header.brxe-section .soroy-search-form form:focus-within {
  border-color: #a0ce4e;
}
.soroy-header.brxe-section .soroy-search-form input[type=search] {
  flex: 1;
  min-width: 0;
  padding: 4px 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 20px;
  color: #111;
}
.soroy-header.brxe-section .soroy-search-form input[type=search]::placeholder {
  color: #aaa;
  font-weight: 300;
}
.soroy-header.brxe-section .soroy-search-form input[type=search]::-webkit-search-decoration, .soroy-header.brxe-section .soroy-search-form input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.soroy-header.brxe-section .soroy-search-form button[type=submit] {
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgb(23.9814332813%, 32.4023945862%, 8.9701544335%);
  cursor: pointer;
  transition: color 0.2s ease;
}
.soroy-header.brxe-section .soroy-search-form button[type=submit]:hover {
  color: rgb(50.6451500954%, 68.4289432587%, 18.9436057609%);
}
.soroy-header.brxe-section .soroy-navigation {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}
.soroy-header.brxe-section.is-search-open .soroy-search-form {
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}
.soroy-header.brxe-section.is-search-open .soroy-navigation {
  transform: translateY(100%);
}
.soroy-header.brxe-section .left {
  grid-column: 1;
  justify-self: start;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.soroy-header.brxe-section .left .menu-icon {
  display: none;
}
.soroy-header.brxe-section .site-logo {
  grid-column: 2;
  justify-self: center;
}
.soroy-header.brxe-section .site-logo a {
  display: block;
  line-height: 0;
}
.soroy-header.brxe-section .site-logo img {
  --tween: height;
  display: block;
  width: auto;
  height: var(--logo-h);
  max-width: none;
}
.soroy-header.brxe-section .right {
  grid-column: 3;
  justify-self: end;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.soroy-header.brxe-section #navigation-left {
  --tween: column-gap;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--nav-gap);
}
.soroy-header.brxe-section #navigation-left > .menu-item {
  height: 100%;
}
.soroy-header.brxe-section #navigation-left > .menu-item > a {
  font-size: var(--nav-font);
  color: #111;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.soroy-header.brxe-section #navigation-left > .menu-item > a:hover {
  color: #a0ce4e;
}
.soroy-header.brxe-section #navigation-left > .menu-item > a {
  --tween: font-size;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 100%;
}
.soroy-header.brxe-section #navigation-left .sub-menu > .menu-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
}
.soroy-header.brxe-section #navigation-left .sub-menu > .menu-item .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}
.soroy-header.brxe-section #navigation-left .sub-menu > .menu-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.soroy-header.brxe-section #navigation-right {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.soroy-header.brxe-section #navigation-right > .menu-item {
  display: flex;
  align-items: center;
  height: 100%;
}
.soroy-header.brxe-section #navigation-right a {
  font-size: var(--nav-font);
  color: #111;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.soroy-header.brxe-section #navigation-right a:hover {
  color: #a0ce4e;
}
.soroy-header.brxe-section #navigation-right a {
  --tween: font-size;
  display: flex;
  align-items: center;
  height: 100%;
}
.soroy-header.brxe-section #navigation-right .menu-quote-icon a {
  --tween: padding-top padding-right padding-bottom padding-left;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: var(--quote-pad-y) var(--quote-pad-x);
  border-radius: 999px;
  background: #a0ce4e;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  transition: background 0.2s ease;
}
.soroy-header.brxe-section #navigation-right .menu-quote-icon a:hover {
  background: rgb(50.6451500954%, 68.4289432587%, 18.9436057609%);
  color: #fff;
}
.soroy-header.brxe-section #navigation-right .menu-search-icon a {
  display: block;
  width: 20px;
  height: 20px;
  font-size: 0;
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.2' y2='16.2'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: opacity 0.2s ease;
}
.soroy-header.brxe-section #navigation-right .menu-search-icon a:hover {
  opacity: 0.7;
}
.soroy-header.brxe-section .menu-item-has-children {
  position: relative;
}
.soroy-header.brxe-section .menu-item-has-children > a::after {
  content: "";
  flex-shrink: 0;
  margin-left: 4px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a0ce4e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/contain no-repeat;
}
.soroy-header.brxe-section .menu-item-has-children > .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0%;
  z-index: 20;
  transform: translateY(-2px);
  flex-direction: column;
  min-width: 200px;
  padding: 8px 0;
  border-radius: 4px;
  border-top: 2px solid #a0ce4e;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.soroy-header.brxe-section .menu-item-has-children > .sub-menu a {
  display: block;
  padding: 10px;
  font-size: 14px;
  color: #111;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.soroy-header.brxe-section .menu-item-has-children > .sub-menu a:hover {
  color: #a0ce4e;
  background: rgba(160, 206, 78, 0.15);
}
.soroy-header.brxe-section .menu-item-has-children:hover > .sub-menu {
  display: flex;
}
@media (max-width: 991px) {
  .soroy-header.brxe-section {
    --is-mobile: 1;
    --header-h: 72px;
    --logo-h: 44px;
    --quote-pad-x: 14px;
  }
  .soroy-header.brxe-section.is-shrink {
    --header-h: 64px;
    --logo-h: 44px;
  }
  .soroy-header.brxe-section .soroy-navigation {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 0 6px 0 0;
  }
  .soroy-header.brxe-section .left .menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .soroy-header.brxe-section .left .menu-icon svg {
    width: 24px;
    height: 24px;
    fill: #111;
  }
  .soroy-header.brxe-section #navigation-left {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 10;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    height: auto;
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    overflow-x: hidden;
    overflow-y: auto;
    padding: 8px 16px 16px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  }
  .soroy-header.brxe-section #navigation-left > .menu-item {
    display: block;
    height: auto;
  }
  .soroy-header.brxe-section #navigation-left > .menu-item .icon {
    width: 40px;
    height: 40px;
  }
  .soroy-header.brxe-section #navigation-left > .menu-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .soroy-header.brxe-section #navigation-left > .menu-item > a {
    height: auto;
    padding: 13px 0;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
  }
  .soroy-header.brxe-section.is-nav-open #navigation-left {
    display: flex;
  }
  .soroy-header.brxe-section .menu-item-has-children > a::after {
    content: "+";
    margin-left: auto;
    background: none;
  }
  .soroy-header.brxe-section .menu-item-has-children.is-sub-open > a::after {
    content: "−";
    background: none;
  }
  .soroy-header.brxe-section .menu-item-has-children > .sub-menu {
    position: static;
    transform: none;
    min-width: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    gap: 5px;
  }
  .soroy-header.brxe-section .menu-item-has-children > .sub-menu .menu-item {
    border-bottom: 1px solid #f0f0f0;
  }
  .soroy-header.brxe-section .menu-item-has-children > .sub-menu a {
    padding: 10px;
    color: #999;
  }
  .soroy-header.brxe-section .menu-item-has-children:hover > .sub-menu {
    display: none;
  }
  .soroy-header.brxe-section .menu-item-has-children.is-sub-open > .sub-menu {
    display: flex;
  }
  .soroy-header.brxe-section .soroy-search-form form {
    width: calc(100% - 64px);
  }
  .soroy-header.brxe-section .soroy-search-form input[type=search] {
    font-size: 16px;
  }
  .soroy-header.brxe-section #navigation-right {
    gap: 14px;
  }
  .soroy-header.brxe-section #navigation-right .menu-quote-icon a {
    font-size: 13px;
  }
}
@media (max-width: 479px) {
  .soroy-header.brxe-section {
    --quote-pad-x: 12px;
  }
  .soroy-header.brxe-section #navigation-right .menu-quote-icon a {
    font-size: 0;
  }
  .soroy-header.brxe-section #navigation-right .menu-quote-icon a::before {
    content: "✉";
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .soroy-header.brxe-section .soroy-search-form,
  .soroy-header.brxe-section .soroy-navigation,
  .soroy-header.brxe-section .soroy-search-form .close-search {
    transition: none;
  }
}

.image-hover {
  position: relative;
}
.image-hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 透明渐变 上面透明 下面主色调 50% */
  background: linear-gradient(to bottom, rgba(160, 206, 78, 0.1), rgba(160, 206, 78, 0.7));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.image-hover:hover::before {
  opacity: 1;
}

.xxf {
  font-weight: 400;
}

/* 服务卡片 */
.service-item-card .brxe-icon {
  place-self: start;
  line-height: 1;
}
.service-item-card:hover {
  border-color: #a0ce4e !important;
}
.service-item-card:hover .brxe-icon {
  color: #a0ce4e !important;
  transform: rotate(90deg);
}
.service-item-card:hover .service-item-title {
  color: #a0ce4e !important;
}

/* 产品画廊 */
.gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.gallery #splide01 {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #a0ce4e;
  border-radius: 4px;
}
.gallery #splide01 .splide__slide {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.gallery #splide01 .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.gallery #thumbnail {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.gallery #thumbnail .splide__slide {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  overflow: hidden;
  opacity: 0.6;
  border: 1px solid #ddd;
  border-radius: 3px;
}
.gallery #thumbnail .splide__slide.is-active {
  border: 1px solid #a0ce4e;
  opacity: 1;
}
.gallery #thumbnail .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.gallery .splide__arrow {
  background: #a0ce4e;
  cursor: pointer;
}
.gallery .splide__arrow svg {
  fill: #fff;
}

/* 产品分类卡片 圆形 */
.product-type-card:hover {
  background: rgb(81.6666666667%, 81.6666666667%, 81.6666666667%) !important;
}
.product-type-card:hover .brxe-image {
  transform: scale(1.05);
}
.product-type-card:hover .brxe-heading {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(160, 206, 78, 0.7);
  padding: 5px;
}
.product-type-card:hover .brxe-heading a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 100%;
  width: 100%;
}

/* 联系页：三列。第一行 3 张，第二行地址跨两列、传真占一列 */
#brxe-ctgrid.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
}

#brxe-ctgrid > .contact-card {
  width: auto;
  max-width: none;
  min-width: 0;
}

.contact-cards > .contact-card--wide {
  grid-column: span 2;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  height: 100%;
  box-sizing: border-box;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.contact-card .brxe-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(160, 206, 78, 0.15);
  color: rgb(23.9814332813%, 32.4023945862%, 8.9701544335%);
  font-size: 22px;
  line-height: 1;
}
.contact-card .contact-card__label {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #888;
}
.contact-card .contact-card__value {
  margin: 0;
  color: #111;
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.contact-card .contact-card__value:hover {
  color: rgb(23.9814332813%, 32.4023945862%, 8.9701544335%);
}

@media (max-width: 479px) {
  #brxe-ctgrid.contact-cards {
    grid-template-columns: 1fr;
  }
  .contact-cards > .contact-card--wide {
    grid-column: auto;
  }
}
:root {
  --quote-slide-distance: -40vh;
  --quote-slide-duration: 0.45s;
  --quote-slide-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/*# sourceMappingURL=style.css.map */
