/** Shopify CDN: Minification failed

Line 740:7 Unexpected "/"
Line 745:2 Unexpected "}"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:yg-blog-list (INDEX:67, SCOPED:FALSE) */
.yg-blog-list-section.shopify-section .section {
    overflow: visible;
  }

  .yg-blog-list-section .section-stack.col {
    grid-template-columns: calc(33% - 40px) calc(67% - 40px);
    gap: 20px 80px;
    align-items: start;
  }

  .yg-blog-list-section .yg-content-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }

  .yg-blog-list-section .yg-content-left .button {
    text-wrap: nowrap;
  }

  .yg-blog-list-section .yg-blog-item {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 20px;
  }

  .yg-blog-list-section .yg-blog-item .yg-blog-item-image {
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
  }

  .yg-blog-list-section .yg-blog-item .yg-blog-item-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }

  .yg-blog-list-section .yg-blog-item .yg-blog-item-title {
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    text-overflow: ellip;
    overflow: hidden;
  }

  .yg-blog-list-section .yg-blog-item .yg-blog-item-content-text {
    line-height: 1.5em;
    display: -webkit-box;
    -webkit-line-clamp: 4; 
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    min-height: calc(4 * 1.5em);
    color: #707275;
  }

  .yg-blog-list-section .yg-blog-item .yg-blog-item-time {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  @media(min-width: 1150px){
    .yg-blog-list-section .yg-content-left {
      position: sticky;
      top: calc(var(--header-height) + 40px);
    }

    .yg-blog-list-section .yg-blog-item + .yg-blog-item {
      padding-top: 40px;
      margin-top: 40px;
      border-top: 1px solid #E2E3E3;
    }
  }

  @media(max-width: 1149px){
    .yg-blog-list-section .section-stack.col {
      grid-template-columns: 1fr;
    }

    .yg-blog-list-section .yg-content-left {
      flex-direction: row;
      align-items: start;
      justify-content: space-between;
    }

    .yg-blog-list-section .yg-content-right {
      display: flex;
      gap: 20px;
      overflow: hidden;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .yg-blog-list-section .yg-blog-item {
      scroll-snap-align: start;
      grid-template-rows: auto 1fr;
      grid-template-columns: 1fr;
      min-width: 40%;
    }
  }

  @media(max-width: 699px){
    .yg-blog-list-section .yg-blog-item {
      min-width: 90%;
    }
  }
/* END_SECTION:yg-blog-list */

/* START_SECTION:yg-card-grid (INDEX:68, SCOPED:FALSE) */
.yg-card-grid-section .yg-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .yg-card-grid-section .yg-card-grid-card-block {
    background: var(--background-color, #fff);
    border-radius: 16px;
    border: 1px solid var(--border-color, #e0e6ed);
    color: var(--title-color, #000);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
  }

  .yg-card-grid-section .yg-card-grid-card-block:hover {
    background: var(--hover-background-color, #fff);
    color: var(--hover-color, #000);
    border-color: var(--hover-background-color, #fff)
  }

  .yg-card-grid-section .yg-card-grid-card-content {
    margin-top: 8px;
    line-height: 1.4em;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* 显示5行 */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    min-height: calc(1.4em * 5);
  }

  .yg-card-grid-section .yg-card-grid-card-image {
    margin-top: auto;
    border-radius: 8px;
    overflow: hidden;
  }

  .yg-card-grid-section .yg-card-grid-text-title {
    background: var(--title-color, inherit);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; 
    color: transparent;
  }

  .yg-card-grid-section .yg-card-grid-text-content {
    margin-top: 12px;
    color: var(--content-color);
  }

  @media (max-width: 1150px) {
    .yg-card-grid-section .yg-card-grid {
      gap: 12px;
    }

    .yg-card-grid-section .yg-card-grid-card-block {
      padding: 12px;
    }
  }

  @media (max-width: 899px) {
    .yg-card-grid-section .yg-card-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .yg-card-grid-section .yg-card-grid-card-block {
      padding: 8px;
      border-radius: 8px;
      gap: 12px;
    }

    .yg-card-grid-section .yg-card-grid-card-content {
      -webkit-line-clamp: 3;
      min-height: calc(1.4em * 3);
    }
  }
/* END_SECTION:yg-card-grid */

/* START_SECTION:yg-hover-tabs (INDEX:78, SCOPED:FALSE) */
.yg-hover-tabs-section .yg-hover-tabs-container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    align-items: start;
    gap: 80px;
  }

  .yg-hover-tabs-section .yg-hover-tabs-tabs-inner {
    margin-bottom: 40px;
  }

  .yg-hover-tabs-section .yg-hover-tabs-tab {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    padding-bottom: 0;
    transition: padding-bottom 0.3s ease, gap 0.3s ease;
    cursor: pointer;
  }

  .yg-hover-tabs-section .yg-hover-tabs-tab.active {
    padding-bottom: 24px;
    gap: 16px;
  }

  .yg-hover-tabs-section .yg-hover-tabs-tab + .yg-hover-tabs-tab {
    margin-top: 16px;
  }

  .yg-hover-tabs-section .yg-hover-tabs-tab .yg-hover-tabs-tab-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(33, 33, 33, 0.3);
    transform: translateX(-36px);
    transition: color 0.3s ease, transform 0.3s ease;
    font-weight: 400;
  }

  .yg-hover-tabs-section .yg-hover-tabs-tab .yg-hover-tabs-tab-description {
    height: 0;
    transition: height 0.3s ease;
    color: #555759;
  }

  .yg-hover-tabs-section .yg-hover-tabs-tab.active .yg-hover-tabs-tab-title {
    color: #00766c;
    text-decoration: underline;
    transform: translateX(0);
    font-weight: 600;
  }

  .yg-hover-tabs-section .yg-hover-tabs-tab.active .yg-hover-tabs-tab-description {
    /* height: var(--max-height); */
    height: fit-content;
  }

  .yg-hover-tabs-section .yg-hover-tabs-images {
    display: grid;
    align-items: start;
    grid-template-columns: repeat(1, 1fr);
  }

  .yg-hover-tabs-section .yg-hover-tabs-images .yg-hover-tabs-image-wrap {
    grid-area: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .yg-hover-tabs-section .yg-hover-tabs-images .yg-hover-tabs-image-wrap.active {
    opacity: 1;
    pointer-events: auto;
  }

  @media (max-width: 1150px) {
    .yg-hover-tabs-section .yg-hover-tabs-container {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
  }

  @media (max-width: 699px) {
    .yg-hover-tabs-section .yg-hover-tabs-container {
      grid-template-columns: 1fr;
    }

    .yg-hover-tabs-section .yg-hover-tabs-images {
      display: none;
    }

    .yg-hover-tabs-section .yg-hover-tabs-tab-image {
      margin-top: 12px;
      border-radius: 8px;
      overflow: hidden;
    }
  }
/* END_SECTION:yg-hover-tabs */

/* START_SECTION:yg-icon-list (INDEX:79, SCOPED:FALSE) */
.yg-icon-list-section .in-right {
    grid-template-columns: 335px 1fr;
    gap: 20px 120px;
  }

  .yg-icon-list-section .in-right .section-header {
    align-items: start;
    grid-template-columns: auto;
  }

  .yg-icon-list-section .yg-icon-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
  }

  .yg-icon-list-section .yg-icon-list__text-content {
    color: rgba(var(--text-color));
    width: 100%;
  }

  .yg-icon-list-section .yg-icon-list__text-content strong {
    color: rgba(var(--text-strong-color));
    font-weight: 500;
  }

  .yg-icon-list-section .yg-icon-carousel {
    width: 100%;
    overflow: hidden;
    mask: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 1.00) 50%, rgba(0, 0, 0, 0.00) 100%);
    position: relative;
  }

  .yg-icon-list-section .yg-icon-carousel__track {
    display: flex;
    gap: 32px;
    animation: scroll-left var(--scroll-duration, 30s) linear infinite;
    width: fit-content;
  }

  .yg-icon-list-section .yg-icon-carousel__item {
    flex-shrink: 0;
    width: calc((100vw - 4 * 32px) / 5);
    max-width: 200px;
  }

  .yg-icon-list-section .yg-icon-carousel__item img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @media (max-width: 699px){
    .yg-icon-list-section .yg-icon-carousel__track {
      gap: 18px;
    }
    .yg-icon-list-section .yg-icon-carousel__item {
      width: calc((100vw - 2 * 18px) / 3);
      max-width: 150px;
    }
  }

  @media (max-width: 1150px){
    .yg-icon-list-section .in-right {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 699px){
    .yg-icon-list-section .yg-icon-list  {
      gap: 24px;
    }
  }
/* END_SECTION:yg-icon-list */

/* START_SECTION:yg-image-box (INDEX:82, SCOPED:FALSE) */
.yg-image-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .section-header .prose p {
    color: #454748;
  }

  @media (min-width: 768px) {
    .yg-image-box-grid {
      grid-template-columns: repeat(5, 1fr);
      gap: 1.25rem;
    }
  }

  .yg-image-box-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .yg-image-box-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
  }

  .yg-image-box-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .yg-image-box-title {
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
  }
/* END_SECTION:yg-image-box */

/* START_SECTION:yg-image-with-impact-text (INDEX:87, SCOPED:FALSE) */
.yg-image-with-impact-text-section .section-stack.col {
    grid-template-columns: 2fr 3fr;
    gap: 20px 40px;
    align-items: center;
  }

  .yg-image-with-impact-text-section .yg-content-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
    color: rgba(var(--heading-color));
  }

  .yg-image-with-impact-text-section .yg-content-description {
    margin-top: 8px;
    color: rgba(var(--text-color));
  }

  .yg-image-with-impact-text-section .yg-impact-text-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .yg-image-with-impact-text-section .yg-impact-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    width: 100%;
    color: var(--impact-text-color);
  }

  @media (max-width: 1280px) {
    .yg-image-with-impact-text-section .section-stack.col {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 850px) {
    .yg-image-with-impact-text-section .section-stack.col {
      grid-template-columns: 1fr;
    }
    .yg-image-with-impact-text-section .yg-content-left {
      gap: 20px;
    }
    .yg-image-with-impact-text-section .yg-impact-text {
      padding: 4px;
    }
    .yg-image-with-impact-text-section impact-text[reveal-js] {
      opacity: 1 !important;
      transform: none !important;
    }
  }
/* END_SECTION:yg-image-with-impact-text */

/* START_SECTION:yg-image-with-text-1 (INDEX:88, SCOPED:FALSE) */
.yg-image-with-text-section .section {
    padding-inline: 0;
  }

  .yg-image-with-text-section .yg-image-with-text__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .yg-image-with-text-section .yg-image-with-text__content {
    position: relative;
    z-index: 1;
    padding-inline: max(var(--calculated-section-spacing-inline),50vw - var(--container-max-width) / 2);
    padding-right: 80px;
    padding-block: 80px;
    background: var(--background);
    transition: background 0.3s;
  }

  .yg-image-with-text-section .prose p+p {
    margin-top: 12px;
  }

  .yg-image-with-text-section .yg-image-with-text__content .bg-image {
    position: absolute;
    bottom: 40px;
    right: 54px;
    width: min(calc(100% - 80px), 535px);
    height: auto;
    z-index: -1;
    opacity: 1;
    transition: opacity 0.3s;
  }

  .yg-image-with-text-section .yg-image-with-text__content .bg-image.reversed {
    opacity: 0;
  }

  .yg-image-with-text-section .yg-image-with-text__text-content,
  .yg-image-with-text-section .yg-image-with-text__subheading {
    color: var(--text-color);
    transition: color 0.3s;
  }

  .yg-image-with-text-section .yg-image-with-text__text-content strong {
    background: var(--feature-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transition: background .3s;
  }

  .yg-image-with-text-section .yg-image-with-text__title {
    color: var(--heading-color);
    transition: color 0.3s;
  }

  .yg-image-with-text-section .button {
    --button-background: var(--button-bg-color);
    --button-text-color: var(--button-color);
    transition: all 0.3s;
  }

  @media(min-width: 1150px) {
    .yg-image-with-text-section:hover .yg-image-with-text__content {
      background: var(--reversed-background);
    }
   
    .yg-image-with-text-section:hover .yg-image-with-text__content .bg-image {
      opacity: 0;
    }

    .yg-image-with-text-section:hover .yg-image-with-text__content .bg-image.reversed {
      opacity: 1;
    }

    .yg-image-with-text-section:hover .yg-image-with-text__text-content,
    .yg-image-with-text-section:hover .yg-image-with-text__subheading {
      color: var(--reversed-text-color);
    }

    .yg-image-with-text-section:hover .yg-image-with-text__text-content strong {
      background: var(--reversed-feature-color);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }

    .yg-image-with-text-section:hover .yg-image-with-text__title {
      color: var(--reversed-heading-color);
    }

    .yg-image-with-text-section:hover .button {
      --button-background: var(--reversed-button-bg-color);
      --button-text-color: var(--reversed-button-color);
    }
  }

  @media(max-width: 1150px){
    .yg-image-with-text-section .yg-image-with-text__content {
      padding-right: 24px;
      padding-block: 32px;
    }

    .yg-image-with-text-section .yg-image-with-text__content .bg-image {
      right: 0;
      bottom: 20px;
    }
  }

  @media(max-width: 699px){
    .yg-image-with-text-section .yg-image-with-text__wrapper {
      grid-template-columns: 1fr;
    }

    .yg-image-with-text-section .yg-image-with-text__content {
      padding-right: max(var(--calculated-section-spacing-inline),50vw - var(--container-max-width) / 2);
      padding-block: 48px 60px;
    }
  }
/* END_SECTION:yg-image-with-text-1 */

/* START_SECTION:yg-video-switch (INDEX:101, SCOPED:FALSE) */
.yg-video-switch-section .yg-video-switch {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 20px 40px;
  }
  .yg-video-switch-section .yg-video-switch .swiper-wrapper {
    height: auto;
  }

  .yg-video-switch-section .swiper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .yg-video-switch-section .yg-video-list {
    border-radius: 12px;
    overflow: hidden;
  }

  .yg-video-switch-section .swiper-slide {
    position: relative;
    z-index: 1;
  }

  .yg-video-switch-section .yg-progress-bar-box {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.4);
  }

  .yg-video-switch-section .yg-progress-bar-box .yg-progress-bar {
    height: 100%;
    width: 0;
    background-color: #00766c;
    transition: width 0.05s linear;
  }

  .yg-video-switch-section .video-content {
    margin-top: 8px;    
  }

  .yg-video-switch-section .yg-indicator-button {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
    margin-top: auto;
  }

  .yg-video-switch-section .swiper-button-prev,
  .yg-video-switch-section .swiper-button-next {
    position: static;
    margin: 0;
    width: 36px;
    height: 36px;
    border-radius: 36px;
    padding: 12px 8px;
    background-color: #00766c;
    color: #fff;
  }

  .yg-video-switch-section .swiper-button-prev::after,
  .yg-video-switch-section .swiper-button-next::after {
    content: none;
  }

  .yg-loading-image {
    height: 100%;
  }

  .yg-video-switch-section .video-container {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
  }

  .yg-video-switch-section .video-container video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (max-width: 850px) {
    .yg-video-switch-section .yg-video-switch {
      grid-template-columns: 1fr;
    }

    /* .yg-video-switch-section .video-content {
      line-height: 1.5em;
      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical;
      text-overflow: ellipsis;
      overflow: hidden;
      /* min-height: calc(1.5em * 5); */
    } */

    .yg-video-switch-section .swiper {
      gap: 8px;
    }
  }
/* END_SECTION:yg-video-switch */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:yg-image (INDEX:175, SCOPED:FALSE) */
/* image snippet */
  .yg-image-box,
  .yg-loading-image {
    display: flex;
    width: 100%;

    aspect-ratio: var(--aspect-ratio);
  }

  .yg-image-box .yg-image,
  .yg-loading-image .placeholder,
  .yg-loading-image .yg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (max-width: 699px) {
    .yg-image-box,
    .yg-loading-image {
      width: 100%;

      aspect-ratio: var(--aspect-ratio-mobile);
    }
  }
  /* image snippet */
/* END_SNIPPET:yg-image */

/* START_SNIPPET:yg-popup (INDEX:177, SCOPED:FALSE) */
/* popup box */

  .yg-popup-box {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
  }

  .yg-popup-box .yg-popup-box-content {
    position: relative;
    max-width: min(980px, calc(100% - 40px));
    width: 100%;
    /* padding: 70px 30px; */
  }

  .yg-popup-box .yg-popup-box-content :is(iframe, video) {
    width: 100%;
    max-height: calc(100vh - 200px);
    aspect-ratio: var(--aspect-ratio, 16 / 9);
    border: none;
    outline: none;
    background-color: transparent;
  }

  .yg-popup-box .yg-popup-box-content .yg-popup-box-close {
    position: absolute;
    top: -60px;
    left: 50%;
    width: 40px;
    height: 40px;
    padding: 10px;
    transform: translateX(-50%);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 1);
    cursor: pointer;
    z-index: 999;
  }

  .yg-popup-box .yg-popup-box-content .yg-popup-box-close svg {
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .yg-popup-template {
    display: none !important;
  }

  @media (max-width: 699px) {
    .yg-popup-box .yg-popup-box-content :is(iframe, video) {
      aspect-ratio: var(--aspect-ratio-mobile, var(--aspect-ratio), 16 / 9);
      max-height: calc(100vh - 200px);
    }
  }
/* END_SNIPPET:yg-popup */

/* START_SNIPPET:yg-section-header (INDEX:178, SCOPED:FALSE) */
.section-header.justify-center.text-center {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .section-header.justify-center.text-center > .text-with-icon {
    grid-column-start: auto;
    justify-content: center;
  }

  @media(max-width: 699px){
    .section-header.mb\:justify-center.mb\:text-center {
      display: flex;
      align-items: center;
      flex-direction: column;
    }

    .section-header.mb\:justify-center.mb\:text-center > .text-with-icon {
      grid-column-start: auto;
      justify-content: center;
    }

    .section-header.mb\:justify-left.mb\:text-left {
      display: flex;
      align-items: start;
      text-align: left;
      flex-direction: column;
    }  

    .section-header.mb\:justify-left.mb\:text-left > .text-with-icon {
      justify-content: start;
    }  
  }
/* END_SNIPPET:yg-section-header */

/* START_SNIPPET:yg-video (INDEX:180, SCOPED:FALSE) */
.yg-video-box {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: var(--aspect-ratio);
  }

  .yg-video-box .yg-play-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
  }

  .yg-video-box .yg-play-video:hover {
    transform: translate(-50%, -50%) scale(1.1);
  }

  .yg-video-box .yg-video-iframe-container {
    height: 100%;
  }

  .yg-video-box .yg-video-iframe {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
  }

  @media (max-width: 699px) {
    .yg-video-box {
      aspect-ratio: var(--aspect-ratio-mobile, var(--aspect-ratio));
    }
  }
/* END_SNIPPET:yg-video */