
    .n-base-wave {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      border-radius: inherit;
    }
    .n-button {
      margin: 0;
      font-weight: var(--n-font-weight);
      line-height: 1;
      font-family: inherit;
      padding: var(--n-padding);
      height: var(--n-height);
      font-size: var(--n-font-size);
      border-radius: var(--n-border-radius);
      color: var(--n-text-color);
      background-color: var(--n-color);
      width: var(--n-width);
      white-space: nowrap;
      outline: none;
      position: relative;
      z-index: auto;
      border: none;
      display: inline-flex;
      flex-wrap: nowrap;
      flex-shrink: 0;
      align-items: center;
      justify-content: center;
      user-select: none;
      -webkit-user-select: none;
      text-align: center;
      cursor: pointer;
      text-decoration: none;
      transition: color 0.3s var(--n-bezier),
        background-color 0.3s var(--n-bezier), opacity 0.3s var(--n-bezier),
        border-color 0.3s var(--n-bezier);
    }

    .n-button.n-button--color .n-button__border {
      border-color: var(--n-border-color);
    }

    .n-button.n-button--color.n-button--disabled .n-button__border {
      border-color: var(--n-border-color-disabled);
    }

    .n-button.n-button--color:not(.n-button--disabled):focus .n-button__state-border {
      border-color: var(--n-border-color-focus);
    }

    .n-button.n-button--color:not(.n-button--disabled):hover .n-button__state-border {
      border-color: var(--n-border-color-hover);
    }

    .n-button.n-button--color:not(.n-button--disabled):active .n-button__state-border {
      border-color: var(--n-border-color-pressed);
    }

    .n-button.n-button--color:not(.n-button--disabled).n-button--pressed .n-button__state-border {
      border-color: var(--n-border-color-pressed);
    }

    .n-button.n-button--disabled {
      background-color: var(--n-color-disabled);
      color: var(--n-text-color-disabled);
    }

    .n-button.n-button--disabled .n-button__border {
      border: var(--n-border-disabled);
    }

    .n-button:not(.n-button--disabled):focus {
      background-color: var(--n-color-focus);
      color: var(--n-text-color-focus);
    }

    .n-button:not(.n-button--disabled):focus .n-button__state-border {
      border: var(--n-border-focus);
    }

    .n-button:not(.n-button--disabled):hover {
      background-color: var(--n-color-hover);
      color: var(--n-text-color-hover);
    }

    .n-button:not(.n-button--disabled):hover .n-button__state-border {
      border: var(--n-border-hover);
    }

    .n-button:not(.n-button--disabled):active {
      background-color: var(--n-color-pressed);
      color: var(--n-text-color-pressed);
    }

    .n-button:not(.n-button--disabled):active .n-button__state-border {
      border: var(--n-border-pressed);
    }

    .n-button:not(.n-button--disabled).n-button--pressed {
      background-color: var(--n-color-pressed);
      color: var(--n-text-color-pressed);
    }

    .n-button:not(.n-button--disabled).n-button--pressed .n-button__state-border {
      border: var(--n-border-pressed);
    }

    .n-button.n-button--loading {
      cursor: wait;
    }

    .n-button .n-base-wave {
      pointer-events: none;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      animation-iteration-count: 1;
      animation-duration: var(--n-ripple-duration);
      animation-timing-function: var(--n-bezier-ease-out),
        var(--n-bezier-ease-out);
    }

    .n-button .n-base-wave.n-base-wave--active {
      z-index: 1;
      animation-name: button-wave-spread, button-wave-opacity;
    }

    .n-button .n-button__border,
    .n-button .n-button__state-border {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      border-radius: inherit;
      transition: border-color 0.3s var(--n-bezier);
      pointer-events: none;
    }

    .n-button .n-button__border {
      border: var(--n-border);
    }

    .n-button .n-button__state-border {
      border: var(--n-border);
      border-color: #0000;
      z-index: 1;
    }

    .n-button .n-button__icon {
      margin: var(--n-icon-margin);
      margin-left: 0;
      height: var(--n-icon-size);
      width: var(--n-icon-size);
      max-width: var(--n-icon-size);
      font-size: var(--n-icon-size);
      position: relative;
      flex-shrink: 0;
    }

    .n-button .n-button__icon .n-icon-slot {
      height: var(--n-icon-size);
      width: var(--n-icon-size);
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .n-button .n-button__icon .n-icon-slot.icon-switch-transition-enter-from,
    .n-button .n-button__icon .n-icon-slot.icon-switch-transition-leave-to {
      transform: translateY(-50%) scale(0.75);
      left: 0;
      top: 50%;
      opacity: 0;
    }

    .n-button .n-button__icon .n-icon-slot.icon-switch-transition-enter-to,
    .n-button .n-button__icon .n-icon-slot.icon-switch-transition-leave-from {
      transform: scale(1) translateY(-50%);
      left: 0;
      top: 50%;
      opacity: 1;
    }

    .n-button .n-button__icon .n-icon-slot.icon-switch-transition-enter-active,
    .n-button .n-button__icon .n-icon-slot.icon-switch-transition-leave-active {
      transform-origin: center;
      position: absolute;
      left: 0;
      top: 50%;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .n-button .n-button__icon.fade-in-width-expand-transition-leave-from,
    .n-button .n-button__icon.fade-in-width-expand-transition-enter-to {
      opacity: 1;
    }

    .n-button .n-button__icon.fade-in-width-expand-transition-leave-to,
    .n-button .n-button__icon.fade-in-width-expand-transition-enter-from {
      opacity: 0 !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

    .n-button .n-button__icon.fade-in-width-expand-transition-leave-active {
      overflow: hidden;
      transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        margin-left 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        margin-right 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    }

    .n-button .n-button__icon.fade-in-width-expand-transition-enter-active {
      overflow: hidden;
      transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        margin-left 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        margin-right 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .n-button .n-button__content {
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      min-width: 0;
    }

    .n-button .n-button__content~.n-button__icon {
      margin: var(--n-icon-margin);
      margin-right: 0;
    }

    .n-button.n-button--block {
      display: flex;
      width: 100%;
    }

    .n-button.n-button--dashed .n-button__border,
    .n-button.n-button--dashed .n-button__state-border {
      border-style: dashed !important;
    }

    .n-button.n-button--disabled {
      cursor: not-allowed;
      opacity: var(--n-opacity-disabled);
    }

    @keyframes button-wave-spread {
      from {
        box-shadow: 0 0 0.5px 0 var(--n-ripple-color);
      }

      to {
        box-shadow: 0 0 0.5px 4.5px var(--n-ripple-color);
      }
    }

    @keyframes button-wave-opacity {
      from {
        opacity: var(--n-wave-opacity);
      }

      to {
        opacity: 0;
      }
    }

    .n-scrollbar {
      overflow: hidden;
      position: relative;
      z-index: auto;
      height: 100%;
      width: 100%;
    }

    .n-scrollbar>.n-scrollbar-container {
      width: 100%;
      overflow: scroll;
      height: 100%;
      min-height: inherit;
      max-height: inherit;
      scrollbar-width: none;
    }

    .n-scrollbar>.n-scrollbar-container::-webkit-scrollbar,
    .n-scrollbar>.n-scrollbar-container::-webkit-scrollbar-track-piece,
    .n-scrollbar>.n-scrollbar-container::-webkit-scrollbar-thumb {
      width: 0;
      height: 0;
      display: none;
    }

    .n-scrollbar>.n-scrollbar-container>.n-scrollbar-content {
      box-sizing: border-box;
      min-width: 100%;
    }

    .n-scrollbar>.n-scrollbar-rail,
    .n-scrollbar+.n-scrollbar-rail {
      position: absolute;
      pointer-events: none;
      user-select: none;
      background: var(--n-scrollbar-rail-color);
      -webkit-user-select: none;
    }

    .n-scrollbar>.n-scrollbar-rail.n-scrollbar-rail--horizontal,
    .n-scrollbar+.n-scrollbar-rail.n-scrollbar-rail--horizontal {
      height: var(--n-scrollbar-height);
    }

    .n-scrollbar>.n-scrollbar-rail.n-scrollbar-rail--horizontal>.n-scrollbar-rail__scrollbar,
    .n-scrollbar+.n-scrollbar-rail.n-scrollbar-rail--horizontal>.n-scrollbar-rail__scrollbar {
      height: var(--n-scrollbar-height);
      border-radius: var(--n-scrollbar-border-radius);
      right: 0;
    }

    .n-scrollbar>.n-scrollbar-rail.n-scrollbar-rail--horizontal--top,
    .n-scrollbar+.n-scrollbar-rail.n-scrollbar-rail--horizontal--top {
      inset: var(--n-scrollbar-rail-inset-horizontal-top);
    }

    .n-scrollbar>.n-scrollbar-rail.n-scrollbar-rail--horizontal--bottom,
    .n-scrollbar+.n-scrollbar-rail.n-scrollbar-rail--horizontal--bottom {
      inset: var(--n-scrollbar-rail-inset-horizontal-bottom);
    }

    .n-scrollbar>.n-scrollbar-rail.n-scrollbar-rail--vertical,
    .n-scrollbar+.n-scrollbar-rail.n-scrollbar-rail--vertical {
      width: var(--n-scrollbar-width);
    }

    .n-scrollbar>.n-scrollbar-rail.n-scrollbar-rail--vertical>.n-scrollbar-rail__scrollbar,
    .n-scrollbar+.n-scrollbar-rail.n-scrollbar-rail--vertical>.n-scrollbar-rail__scrollbar {
      width: var(--n-scrollbar-width);
      border-radius: var(--n-scrollbar-border-radius);
      bottom: 0;
    }

    .n-scrollbar>.n-scrollbar-rail.n-scrollbar-rail--vertical--left,
    .n-scrollbar+.n-scrollbar-rail.n-scrollbar-rail--vertical--left {
      inset: var(--n-scrollbar-rail-inset-vertical-left);
    }

    .n-scrollbar>.n-scrollbar-rail.n-scrollbar-rail--vertical--right,
    .n-scrollbar+.n-scrollbar-rail.n-scrollbar-rail--vertical--right {
      inset: var(--n-scrollbar-rail-inset-vertical-right);
    }

    .n-scrollbar>.n-scrollbar-rail.n-scrollbar-rail--disabled>.n-scrollbar-rail__scrollbar,
    .n-scrollbar+.n-scrollbar-rail.n-scrollbar-rail--disabled>.n-scrollbar-rail__scrollbar {
      pointer-events: none;
    }

    .n-scrollbar>.n-scrollbar-rail>.n-scrollbar-rail__scrollbar,
    .n-scrollbar+.n-scrollbar-rail>.n-scrollbar-rail__scrollbar {
      z-index: 1;
      position: absolute;
      cursor: pointer;
      pointer-events: all;
      background-color: var(--n-scrollbar-color);
      transition: background-color 0.2s var(--n-scrollbar-bezier);
    }

    .n-scrollbar>.n-scrollbar-rail>.n-scrollbar-rail__scrollbar.fade-in-transition-enter-active,
    .n-scrollbar+.n-scrollbar-rail>.n-scrollbar-rail__scrollbar.fade-in-transition-enter-active {
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .n-scrollbar>.n-scrollbar-rail>.n-scrollbar-rail__scrollbar.fade-in-transition-leave-active,
    .n-scrollbar+.n-scrollbar-rail>.n-scrollbar-rail__scrollbar.fade-in-transition-leave-active {
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .n-scrollbar>.n-scrollbar-rail>.n-scrollbar-rail__scrollbar.fade-in-transition-enter-from,
    .n-scrollbar+.n-scrollbar-rail>.n-scrollbar-rail__scrollbar.fade-in-transition-enter-from,
    .n-scrollbar>.n-scrollbar-rail>.n-scrollbar-rail__scrollbar.fade-in-transition-leave-to,
    .n-scrollbar+.n-scrollbar-rail>.n-scrollbar-rail__scrollbar.fade-in-transition-leave-to {
      opacity: 0;
    }

    .n-scrollbar>.n-scrollbar-rail>.n-scrollbar-rail__scrollbar.fade-in-transition-leave-from,
    .n-scrollbar+.n-scrollbar-rail>.n-scrollbar-rail__scrollbar.fade-in-transition-leave-from,
    .n-scrollbar>.n-scrollbar-rail>.n-scrollbar-rail__scrollbar.fade-in-transition-enter-to,
    .n-scrollbar+.n-scrollbar-rail>.n-scrollbar-rail__scrollbar.fade-in-transition-enter-to {
      opacity: 1;
    }

    .n-scrollbar>.n-scrollbar-rail>.n-scrollbar-rail__scrollbar:hover,
    .n-scrollbar+.n-scrollbar-rail>.n-scrollbar-rail__scrollbar:hover {
      background-color: var(--n-scrollbar-color-hover);
    }

    .n-input {
      max-width: 100%;
      cursor: text;
      line-height: 1.5;
      z-index: auto;
      outline: none;
      box-sizing: border-box;
      position: relative;
      display: inline-flex;
      border-radius: var(--n-border-radius);
      background-color: var(--n-color);
      transition: background-color 0.3s var(--n-bezier);
      font-size: var(--n-font-size);
      --n-padding-vertical: calc((var(--n-height) - 1.5 * var(--n-font-size)) / 2);
    }

    .n-input .n-input__input,
    .n-input .n-input__textarea {
      overflow: hidden;
      flex-grow: 1;
      position: relative;
    }

    .n-input .n-input__input-el,
    .n-input .n-input__textarea-el,
    .n-input .n-input__input-mirror,
    .n-input .n-input__textarea-mirror,
    .n-input .n-input__separator,
    .n-input .n-input__placeholder {
      box-sizing: border-box;
      font-size: inherit;
      line-height: 1.5;
      font-family: inherit;
      border: none;
      outline: none;
      background-color: #0000;
      text-align: inherit;
      transition: -webkit-text-fill-color 0.3s var(--n-bezier),
        caret-color 0.3s var(--n-bezier), color 0.3s var(--n-bezier),
        text-decoration-color 0.3s var(--n-bezier);
    }

    .n-input .n-input__input-el,
    .n-input .n-input__textarea-el {
      -webkit-appearance: none;
      scrollbar-width: none;
      width: 100%;
      min-width: 0;
      text-decoration-color: var(--n-text-decoration-color);
      color: var(--n-text-color);
      caret-color: var(--n-caret-color);
      background-color: transparent;
    }

    .n-input .n-input__input-el::-webkit-scrollbar,
    .n-input .n-input__textarea-el::-webkit-scrollbar,
    .n-input .n-input__input-el::-webkit-scrollbar-track-piece,
    .n-input .n-input__textarea-el::-webkit-scrollbar-track-piece,
    .n-input .n-input__input-el::-webkit-scrollbar-thumb,
    .n-input .n-input__textarea-el::-webkit-scrollbar-thumb {
      width: 0;
      height: 0;
      display: none;
    }

    .n-input .n-input__input-el::placeholder,
    .n-input .n-input__textarea-el::placeholder {
      color: #0000;
      -webkit-text-fill-color: transparent !important;
    }

    .n-input .n-input__input-el:-webkit-autofill~.n-input__placeholder,
    .n-input .n-input__textarea-el:-webkit-autofill~.n-input__placeholder {
      display: none;
    }

    .n-input.n-input--round:not(.n-input--textarea) {
      border-radius: calc(var(--n-height) / 2);
    }

    .n-input .n-input__placeholder {
      pointer-events: none;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      overflow: hidden;
      color: var(--n-placeholder-color);
    }

    .n-input .n-input__placeholder span {
      width: 100%;
      display: inline-block;
    }

    .n-input.n-input--textarea .n-input__placeholder {
      overflow: visible;
    }

    .n-input:not(.n-input--autosize) {
      width: 100%;
    }

    .n-input.n-input--autosize .n-input__textarea-el,
    .n-input.n-input--autosize .n-input__input-el {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
    }

    .n-input .n-input-wrapper {
      overflow: hidden;
      display: inline-flex;
      flex-grow: 1;
      position: relative;
      padding-left: var(--n-padding-left);
      padding-right: var(--n-padding-right);
    }

    .n-input .n-input__input-mirror {
      padding: 0;
      height: var(--n-height);
      line-height: var(--n-height);
      overflow: hidden;
      visibility: hidden;
      position: static;
      white-space: pre;
      pointer-events: none;
    }

    .n-input .n-input__input-el {
      padding: 0;
      height: var(--n-height);
      line-height: var(--n-height);
    }

    .n-input .n-input__input-el[type='password']::-ms-reveal {
      display: none;
    }

    .n-input .n-input__input-el+.n-input__placeholder {
      display: flex;
      align-items: center;
    }

    .n-input:not(.n-input--textarea) .n-input__placeholder {
      white-space: nowrap;
    }

    .n-input .n-input__eye {
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color 0.3s var(--n-bezier);
    }

    .n-input.n-input--textarea {
      width: 100%;
    }

    .n-input.n-input--textarea .n-input-word-count {
      position: absolute;
      right: var(--n-padding-right);
      bottom: var(--n-padding-vertical);
    }

    .n-input.n-input--textarea.n-input--resizable .n-input-wrapper {
      resize: vertical;
      min-height: var(--n-height);
    }

    .n-input.n-input--textarea .n-input__textarea-el,
    .n-input.n-input--textarea .n-input__textarea-mirror,
    .n-input.n-input--textarea .n-input__placeholder {
      height: 100%;
      padding-left: 0;
      padding-right: 0;
      padding-top: var(--n-padding-vertical);
      padding-bottom: var(--n-padding-vertical);
      word-break: break-word;
      display: inline-block;
      vertical-align: bottom;
      box-sizing: border-box;
      line-height: var(--n-line-height-textarea);
      margin: 0;
      resize: none;
      white-space: pre-wrap;
      scroll-padding-block-end: var(--n-padding-vertical);
    }

    .n-input.n-input--textarea .n-input__textarea-mirror {
      width: 100%;
      pointer-events: none;
      overflow: hidden;
      visibility: hidden;
      position: static;
      white-space: pre-wrap;
      overflow-wrap: break-word;
    }

    .n-input.n-input--pair .n-input__input-el,
    .n-input.n-input--pair .n-input__placeholder {
      text-align: center;
    }

    .n-input.n-input--pair .n-input__separator {
      display: flex;
      align-items: center;
      transition: color 0.3s var(--n-bezier);
      color: var(--n-text-color);
      white-space: nowrap;
    }

    .n-input.n-input--pair .n-input__separator .n-icon {
      color: var(--n-icon-color);
    }

    .n-input.n-input--pair .n-input__separator .n-base-icon {
      color: var(--n-icon-color);
    }

    .n-input.n-input--disabled {
      cursor: not-allowed;
      background-color: var(--n-color-disabled);
    }

    .n-input.n-input--disabled .n-input__border {
      border: var(--n-border-disabled);
    }

    .n-input.n-input--disabled .n-input__input-el,
    .n-input.n-input--disabled .n-input__textarea-el {
      cursor: not-allowed;
      color: var(--n-text-color-disabled);
      text-decoration-color: var(--n-text-color-disabled);
    }

    .n-input.n-input--disabled .n-input__placeholder {
      color: var(--n-placeholder-color-disabled);
    }

    .n-input.n-input--disabled .n-input__separator {
      color: var(--n-text-color-disabled);
    }

    .n-input.n-input--disabled .n-input__separator .n-icon {
      color: var(--n-icon-color-disabled);
    }

    .n-input.n-input--disabled .n-input__separator .n-base-icon {
      color: var(--n-icon-color-disabled);
    }

    .n-input.n-input--disabled .n-input-word-count {
      color: var(--n-count-text-color-disabled);
    }

    .n-input.n-input--disabled .n-input__suffix,
    .n-input.n-input--disabled .n-input__prefix {
      color: var(--n-text-color-disabled);
    }

    .n-input.n-input--disabled .n-input__suffix .n-icon,
    .n-input.n-input--disabled .n-input__prefix .n-icon {
      color: var(--n-icon-color-disabled);
    }

    .n-input.n-input--disabled .n-input__suffix .n-internal-icon,
    .n-input.n-input--disabled .n-input__prefix .n-internal-icon {
      color: var(--n-icon-color-disabled);
    }

    .n-input:not(.n-input--disabled) .n-input__eye {
      color: var(--n-icon-color);
      cursor: pointer;
    }

    .n-input:not(.n-input--disabled) .n-input__eye:hover {
      color: var(--n-icon-color-hover);
    }

    .n-input:not(.n-input--disabled) .n-input__eye:active {
      color: var(--n-icon-color-pressed);
    }

    .n-input:not(.n-input--disabled):hover .n-input__state-border {
      border: var(--n-border-hover);
    }

    .n-input:not(.n-input--disabled).n-input--focus {
      background-color: var(--n-color-focus);
    }

    .n-input:not(.n-input--disabled).n-input--focus .n-input__state-border {
      border: var(--n-border-focus);
      box-shadow: var(--n-box-shadow-focus);
    }

    .n-input .n-input__border,
    .n-input .n-input__state-border {
      box-sizing: border-box;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      pointer-events: none;
      border-radius: inherit;
      border: var(--n-border);
      transition: box-shadow 0.3s var(--n-bezier),
        border-color 0.3s var(--n-bezier);
    }

    .n-input .n-input__state-border {
      border-color: #0000;
      z-index: 1;
    }

    .n-input .n-input__prefix {
      margin-right: 4px;
    }

    .n-input .n-input__suffix {
      margin-left: 4px;
    }

    .n-input .n-input__suffix,
    .n-input .n-input__prefix {
      transition: color 0.3s var(--n-bezier);
      flex-wrap: nowrap;
      flex-shrink: 0;
      line-height: var(--n-height);
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--n-suffix-text-color);
    }

    .n-input .n-input__suffix .n-base-loading,
    .n-input .n-input__prefix .n-base-loading {
      font-size: var(--n-icon-size);
      margin: 0 2px;
      color: var(--n-loading-color);
    }

    .n-input .n-input__suffix .n-base-clear,
    .n-input .n-input__prefix .n-base-clear {
      font-size: var(--n-icon-size);
    }

    .n-input .n-input__suffix .n-base-clear .n-base-clear__placeholder .n-base-icon,
    .n-input .n-input__prefix .n-base-clear .n-base-clear__placeholder .n-base-icon {
      transition: color 0.3s var(--n-bezier);
      color: var(--n-icon-color);
      font-size: var(--n-icon-size);
    }

    .n-input .n-input__suffix>.n-icon,
    .n-input .n-input__prefix>.n-icon {
      transition: color 0.3s var(--n-bezier);
      color: var(--n-icon-color);
      font-size: var(--n-icon-size);
    }

    .n-input .n-input__suffix .n-base-icon,
    .n-input .n-input__prefix .n-base-icon {
      font-size: var(--n-icon-size);
    }

    .n-input .n-input-word-count {
      pointer-events: none;
      line-height: 1.5;
      font-size: 0.85em;
      color: var(--n-count-text-color);
      transition: color 0.3s var(--n-bezier);
      margin-left: 4px;
      font-variant: tabular-nums;
    }

    .n-input.n-input--warning-status:not(.n-input--disabled) .n-base-loading {
      color: var(--n-loading-color-warning);
    }

    .n-input.n-input--warning-status:not(.n-input--disabled) .n-input__input-el,
    .n-input.n-input--warning-status:not(.n-input--disabled) .n-input__textarea-el {
      caret-color: var(--n-caret-color-warning);
    }

    .n-input.n-input--warning-status:not(.n-input--disabled) .n-input__state-border {
      border: var(--n-border-warning);
    }

    .n-input.n-input--warning-status:not(.n-input--disabled):hover .n-input__state-border {
      border: var(--n-border-hover-warning);
    }

    .n-input.n-input--warning-status:not(.n-input--disabled):focus {
      background-color: var(--n-color-focus-warning);
    }

    .n-input.n-input--warning-status:not(.n-input--disabled):focus .n-input__state-border {
      box-shadow: var(--n-box-shadow-focus-warning);
      border: var(--n-border-focus-warning);
    }

    .n-input.n-input--warning-status:not(.n-input--disabled).n-input--focus {
      background-color: var(--n-color-focus-warning);
    }

    .n-input.n-input--warning-status:not(.n-input--disabled).n-input--focus .n-input__state-border {
      box-shadow: var(--n-box-shadow-focus-warning);
      border: var(--n-border-focus-warning);
    }

    .n-input.n-input--error-status:not(.n-input--disabled) .n-base-loading {
      color: var(--n-loading-color-error);
    }

    .n-input.n-input--error-status:not(.n-input--disabled) .n-input__input-el,
    .n-input.n-input--error-status:not(.n-input--disabled) .n-input__textarea-el {
      caret-color: var(--n-caret-color-error);
    }

    .n-input.n-input--error-status:not(.n-input--disabled) .n-input__state-border {
      border: var(--n-border-error);
    }

    .n-input.n-input--error-status:not(.n-input--disabled):hover .n-input__state-border {
      border: var(--n-border-hover-error);
    }

    .n-input.n-input--error-status:not(.n-input--disabled):focus {
      background-color: var(--n-color-focus-error);
    }

    .n-input.n-input--error-status:not(.n-input--disabled):focus .n-input__state-border {
      box-shadow: var(--n-box-shadow-focus-error);
      border: var(--n-border-focus-error);
    }

    .n-input.n-input--error-status:not(.n-input--disabled).n-input--focus {
      background-color: var(--n-color-focus-error);
    }

    .n-input.n-input--error-status:not(.n-input--disabled).n-input--focus .n-input__state-border {
      box-shadow: var(--n-box-shadow-focus-error);
      border: var(--n-border-focus-error);
    }

    .n-form-item {
      display: grid;
      line-height: var(--n-line-height);
    }

    .n-form-item .n-form-item-label {
      grid-area: label;
      align-items: center;
      line-height: 1.25;
      text-align: var(--n-label-text-align);
      font-size: var(--n-label-font-size);
      min-height: var(--n-label-height);
      padding: var(--n-label-padding);
      color: var(--n-label-text-color);
      transition: color 0.3s var(--n-bezier);
      box-sizing: border-box;
      font-weight: var(--n-label-font-weight);
    }

    .n-form-item .n-form-item-label .n-form-item-label__asterisk {
      white-space: nowrap;
      user-select: none;
      -webkit-user-select: none;
      color: var(--n-asterisk-color);
      transition: color 0.3s var(--n-bezier);
    }

    .n-form-item .n-form-item-label .n-form-item-label__asterisk-placeholder {
      grid-area: mark;
      user-select: none;
      -webkit-user-select: none;
      visibility: hidden;
    }

    .n-form-item .n-form-item-blank {
      grid-area: blank;
      min-height: var(--n-blank-height);
    }

    .n-form-item.n-form-item--auto-label-width .n-form-item-label {
      white-space: nowrap;
    }

    .n-form-item.n-form-item--left-labelled {
      grid-template-areas:
        'label blank'
        'label feedback';
      grid-template-columns: auto minmax(0, 1fr);
      grid-template-rows: auto 1fr;
      align-items: flex-start;
    }

    .n-form-item.n-form-item--left-labelled .n-form-item-label {
      display: grid;
      grid-template-columns: 1fr auto;
      min-height: var(--n-blank-height);
      height: auto;
      box-sizing: border-box;
      flex-shrink: 0;
      flex-grow: 0;
    }

    .n-form-item.n-form-item--left-labelled .n-form-item-label.n-form-item-label--reverse-columns-space {
      grid-template-columns: auto 1fr;
    }

    .n-form-item.n-form-item--left-labelled .n-form-item-label.n-form-item-label--left-mark {
      grid-template-areas:
        'mark text'
        '. text';
    }

    .n-form-item.n-form-item--left-labelled .n-form-item-label.n-form-item-label--right-mark {
      grid-template-areas:
        'text mark'
        'text .';
    }

    .n-form-item.n-form-item--left-labelled .n-form-item-label.n-form-item-label--right-hanging-mark {
      grid-template-areas:
        'text mark'
        'text .';
    }

    .n-form-item.n-form-item--left-labelled .n-form-item-label .n-form-item-label__text {
      grid-area: text;
    }

    .n-form-item.n-form-item--left-labelled .n-form-item-label .n-form-item-label__asterisk {
      grid-area: mark;
      align-self: end;
    }

    .n-form-item.n-form-item--top-labelled {
      grid-template-areas:
        'label'
        'blank'
        'feedback';
      grid-template-rows: minmax(var(--n-label-height), auto) 1fr;
      grid-template-columns: minmax(0, 100%);
    }

    .n-form-item.n-form-item--top-labelled.n-form-item--no-label {
      grid-template-areas:
        'blank'
        'feedback';
      grid-template-rows: 1fr;
    }

    .n-form-item.n-form-item--top-labelled .n-form-item-label {
      display: flex;
      align-items: flex-start;
      justify-content: var(--n-label-text-align);
    }

    .n-form-item .n-form-item-blank {
      box-sizing: border-box;
      display: flex;
      align-items: center;
      position: relative;
    }

    .n-form-item .n-form-item-feedback-wrapper {
      grid-area: feedback;
      box-sizing: border-box;
      min-height: var(--n-feedback-height);
      font-size: var(--n-feedback-font-size);
      line-height: 1.25;
      transform-origin: top left;
    }

    .n-form-item .n-form-item-feedback-wrapper:not(:empty) {
      padding: var(--n-feedback-padding);
    }

    .n-form-item .n-form-item-feedback-wrapper .n-form-item-feedback {
      transition: color 0.3s var(--n-bezier);
      color: var(--n-feedback-text-color);
    }

    .n-form-item .n-form-item-feedback-wrapper .n-form-item-feedback.n-form-item-feedback--warning {
      color: var(--n-feedback-text-color-warning);
    }

    .n-form-item .n-form-item-feedback-wrapper .n-form-item-feedback.n-form-item-feedback--error {
      color: var(--n-feedback-text-color-error);
    }

    .n-form-item .n-form-item-feedback-wrapper .n-form-item-feedback.fade-down-transition-enter-from,
    .n-form-item .n-form-item-feedback-wrapper .n-form-item-feedback.fade-down-transition-leave-to {
      opacity: 0;
      transform: translateY(-3px);
    }

    .n-form-item .n-form-item-feedback-wrapper .n-form-item-feedback.fade-down-transition-enter-to,
    .n-form-item .n-form-item-feedback-wrapper .n-form-item-feedback.fade-down-transition-leave-from {
      opacity: 1;
      transform: translateY(0);
    }

    .n-form-item .n-form-item-feedback-wrapper .n-form-item-feedback.fade-down-transition-leave-active {
      transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .n-form-item .n-form-item-feedback-wrapper .n-form-item-feedback.fade-down-transition-enter-active {
      transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .n-form.n-form--inline {
      width: 100%;
      display: inline-flex;
      align-items: flex-start;
      align-content: space-around;
    }

    .n-form.n-form--inline .n-form-item {
      width: auto;
      margin-right: 18px;
    }

    .n-form.n-form--inline .n-form-item:last-child {
      margin-right: 0;
    }

    .n-divider {
      position: relative;
      display: flex;
      width: 100%;
      box-sizing: border-box;
      font-size: 16px;
      color: var(--n-text-color);
      transition: color 0.3s var(--n-bezier),
        background-color 0.3s var(--n-bezier);
    }

    .n-divider:not(.n-divider--vertical) {
      margin-top: 24px;
      margin-bottom: 24px;
    }

    .n-divider:not(.n-divider--vertical):not(.n-divider--no-title) {
      display: flex;
      align-items: center;
    }

    .n-divider .n-divider__title {
      display: flex;
      align-items: center;
      margin-left: 12px;
      margin-right: 12px;
      white-space: nowrap;
      font-weight: var(--n-font-weight);
    }

    .n-divider.n-divider--title-position-left .n-divider__line.n-divider__line--left {
      width: 28px;
    }

    .n-divider.n-divider--title-position-right .n-divider__line.n-divider__line--right {
      width: 28px;
    }

    .n-divider.n-divider--dashed .n-divider__line {
      background-color: #0000;
      height: 0px;
      width: 100%;
      border-style: dashed;
      border-width: 1px 0 0;
    }

    .n-divider.n-divider--vertical {
      display: inline-block;
      height: 1em;
      margin: 0 8px;
      vertical-align: middle;
      width: 1px;
    }

    .n-divider .n-divider__line {
      border: none;
      transition: background-color 0.3s var(--n-bezier),
        border-color 0.3s var(--n-bezier);
      height: 1px;
      width: 100%;
      margin: 0;
    }

    .n-divider:not(.n-divider--dashed) .n-divider__line {
      background-color: var(--n-color);
    }

    .n-divider.n-divider--dashed .n-divider__line {
      border-color: var(--n-color);
    }

    .n-divider.n-divider--vertical {
      background-color: var(--n-color);
    }

    .n-carousel {
      position: relative;
      width: 100%;
      height: 100%;
      touch-action: pan-y;
      overflow: hidden;
    }

    .n-carousel .n-carousel__slides {
      display: flex;
      width: 100%;
      height: 100%;
      transition-timing-function: var(--n-bezier);
      transition-property: transform;
    }

    .n-carousel .n-carousel__slides .n-carousel__slide {
      flex-shrink: 0;
      position: relative;
      width: 100%;
      height: 100%;
      outline: none;
      overflow: hidden;
    }

    .n-carousel .n-carousel__slides .n-carousel__slide>img {
      display: block;
    }

    .n-carousel .n-carousel__dots {
      position: absolute;
      display: flex;
      flex-wrap: nowrap;
    }

    .n-carousel .n-carousel__dots.n-carousel__dots--dot .n-carousel__dot {
      height: var(--n-dot-size);
      width: var(--n-dot-size);
      background-color: var(--n-dot-color);
      border-radius: 50%;
      cursor: pointer;
      transition: box-shadow 0.3s var(--n-bezier),
        background-color 0.3s var(--n-bezier);
      outline: none;
    }

    .n-carousel .n-carousel__dots.n-carousel__dots--dot .n-carousel__dot:focus {
      background-color: var(--n-dot-color-focus);
    }

    .n-carousel .n-carousel__dots.n-carousel__dots--dot .n-carousel__dot.n-carousel__dot--active {
      background-color: var(--n-dot-color-active);
    }

    .n-carousel .n-carousel__dots.n-carousel__dots--line .n-carousel__dot {
      border-radius: 9999px;
      width: var(--n-dot-line-width);
      height: 4px;
      background-color: var(--n-dot-color);
      cursor: pointer;
      transition: width 0.3s var(--n-bezier), box-shadow 0.3s var(--n-bezier),
        background-color 0.3s var(--n-bezier);
      outline: none;
    }

    .n-carousel .n-carousel__dots.n-carousel__dots--line .n-carousel__dot:focus {
      background-color: var(--n-dot-color-focus);
    }

    .n-carousel .n-carousel__dots.n-carousel__dots--line .n-carousel__dot.n-carousel__dot--active {
      width: var(--n-dot-line-width-active);
      background-color: var(--n-dot-color-active);
    }

    .n-carousel .n-carousel__arrow {
      transition: background-color 0.3s var(--n-bezier);
      cursor: pointer;
      height: 28px;
      width: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(255, 255, 255, 0.2);
      color: var(--n-arrow-color);
      border-radius: 8px;
      user-select: none;
      -webkit-user-select: none;
      font-size: 18px;
    }

    .n-carousel .n-carousel__arrow svg {
      height: 1em;
      width: 1em;
    }

    .n-carousel .n-carousel__arrow:hover {
      background-color: rgba(255, 255, 255, 0.3);
    }

    .n-carousel.n-carousel--vertical {
      touch-action: pan-x;
    }

    .n-carousel.n-carousel--vertical .n-carousel__slides {
      flex-direction: column;
    }

    .n-carousel.n-carousel--vertical.n-carousel--fade .n-carousel__slide {
      top: 50%;
      left: unset;
      transform: translateY(-50%);
    }

    .n-carousel.n-carousel--vertical.n-carousel--card .n-carousel__slide {
      top: 50%;
      left: unset;
      transform: translateY(-50%) translateZ(-400px);
    }

    .n-carousel.n-carousel--vertical.n-carousel--card .n-carousel__slide.n-carousel__slide--current {
      transform: translateY(-50%) translateZ(0);
    }

    .n-carousel.n-carousel--vertical.n-carousel--card .n-carousel__slide.n-carousel__slide--prev {
      transform: translateY(-100%) translateZ(-200px);
    }

    .n-carousel.n-carousel--vertical.n-carousel--card .n-carousel__slide.n-carousel__slide--next {
      transform: translateY(0%) translateZ(-200px);
    }

    .n-carousel.n-carousel--usercontrol .n-carousel__slides>div {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      transform: translate(-50%, -50%);
    }

    .n-carousel.n-carousel--left .n-carousel__dots {
      transform: translateY(-50%);
      top: 50%;
      left: 12px;
      flex-direction: column;
    }

    .n-carousel.n-carousel--left .n-carousel__dots.n-carousel__dots--line .n-carousel__dot {
      width: 4px;
      height: var(--n-dot-line-width);
      margin: 4px 0;
      transition: height 0.3s var(--n-bezier), box-shadow 0.3s var(--n-bezier),
        background-color 0.3s var(--n-bezier);
      outline: none;
    }

    .n-carousel.n-carousel--left .n-carousel__dots.n-carousel__dots--line .n-carousel__dot.n-carousel__dot--active {
      height: var(--n-dot-line-width-active);
    }

    .n-carousel.n-carousel--left .n-carousel__dot {
      margin: 4px 0;
    }

    .n-carousel .n-carousel__arrow-group {
      position: absolute;
      display: flex;
      flex-wrap: nowrap;
    }

    .n-carousel.n-carousel--vertical .n-carousel__arrow {
      transform: rotate(90deg);
    }

    .n-carousel.n-carousel--show-arrow.n-carousel--bottom .n-carousel__dots {
      transform: translateX(0);
      bottom: 18px;
      left: 18px;
    }

    .n-carousel.n-carousel--show-arrow.n-carousel--top .n-carousel__dots {
      transform: translateX(0);
      top: 18px;
      left: 18px;
    }

    .n-carousel.n-carousel--show-arrow.n-carousel--left .n-carousel__dots {
      transform: translateX(0);
      top: 18px;
      left: 18px;
    }

    .n-carousel.n-carousel--show-arrow.n-carousel--right .n-carousel__dots {
      transform: translateX(0);
      top: 18px;
      right: 18px;
    }

    .n-carousel.n-carousel--left .n-carousel__arrow-group {
      bottom: 12px;
      left: 12px;
      flex-direction: column;
    }

    .n-carousel.n-carousel--left .n-carousel__arrow-group>*:first-child {
      margin-bottom: 12px;
    }

    .n-carousel.n-carousel--right .n-carousel__dots {
      transform: translateY(-50%);
      top: 50%;
      right: 12px;
      flex-direction: column;
    }

    .n-carousel.n-carousel--right .n-carousel__dots.n-carousel__dots--line .n-carousel__dot {
      width: 4px;
      height: var(--n-dot-line-width);
      margin: 4px 0;
      transition: height 0.3s var(--n-bezier), box-shadow 0.3s var(--n-bezier),
        background-color 0.3s var(--n-bezier);
      outline: none;
    }

    .n-carousel.n-carousel--right .n-carousel__dots.n-carousel__dots--line .n-carousel__dot.n-carousel__dot--active {
      height: var(--n-dot-line-width-active);
    }

    .n-carousel.n-carousel--right .n-carousel__dot {
      margin: 4px 0;
    }

    .n-carousel.n-carousel--right .n-carousel__arrow-group {
      bottom: 12px;
      right: 12px;
      flex-direction: column;
    }

    .n-carousel.n-carousel--right .n-carousel__arrow-group>*:first-child {
      margin-bottom: 12px;
    }

    .n-carousel.n-carousel--top .n-carousel__dots {
      transform: translateX(-50%);
      top: 12px;
      left: 50%;
    }

    .n-carousel.n-carousel--top .n-carousel__dots.n-carousel__dots--line .n-carousel__dot {
      margin: 0 4px;
    }

    .n-carousel.n-carousel--top .n-carousel__dot {
      margin: 0 4px;
    }

    .n-carousel.n-carousel--top .n-carousel__arrow-group {
      top: 12px;
      right: 12px;
    }

    .n-carousel.n-carousel--top .n-carousel__arrow-group>*:first-child {
      margin-right: 12px;
    }

    .n-carousel.n-carousel--bottom .n-carousel__dots {
      transform: translateX(-50%);
      bottom: 12px;
      left: 50%;
    }

    .n-carousel.n-carousel--bottom .n-carousel__dots.n-carousel__dots--line .n-carousel__dot {
      margin: 0 4px;
    }

    .n-carousel.n-carousel--bottom .n-carousel__dot {
      margin: 0 4px;
    }

    .n-carousel.n-carousel--bottom .n-carousel__arrow-group {
      bottom: 12px;
      right: 12px;
    }

    .n-carousel.n-carousel--bottom .n-carousel__arrow-group>*:first-child {
      margin-right: 12px;
    }

    .n-carousel.n-carousel--fade .n-carousel__slide {
      position: absolute;
      opacity: 0;
      transition-property: opacity;
      pointer-events: none;
    }

    .n-carousel.n-carousel--fade .n-carousel__slide.n-carousel__slide--current {
      opacity: 1;
      pointer-events: auto;
    }

    .n-carousel.n-carousel--card .n-carousel__slides {
      perspective: 1000px;
    }

    .n-carousel.n-carousel--card .n-carousel__slide {
      position: absolute;
      left: 50%;
      opacity: 0;
      transform: translateX(-50%) translateZ(-400px);
      transition-property: opacity, transform;
    }

    .n-carousel.n-carousel--card .n-carousel__slide.n-carousel__slide--current {
      opacity: 1;
      transform: translateX(-50%) translateZ(0);
      z-index: 1;
    }

    .n-carousel.n-carousel--card .n-carousel__slide.n-carousel__slide--prev {
      opacity: 0.4;
      transform: translateX(-100%) translateZ(-200px);
    }

    .n-carousel.n-carousel--card .n-carousel__slide.n-carousel__slide--next {
      opacity: 0.4;
      transform: translateX(0%) translateZ(-200px);
    }
 
    .n-drawer {
      word-break: break-word;
      line-height: var(--n-line-height);
      position: absolute;
      pointer-events: all;
      box-shadow: var(--n-box-shadow);
      transition: background-color 0.3s var(--n-bezier),
        color 0.3s var(--n-bezier);
      background-color: var(--n-color);
      color: var(--n-text-color);
      box-sizing: border-box;
    }

    .n-drawer.slide-in-from-right-transition-leave-active {
      transition: transform 0.2s cubic-bezier(0.4, 0, 1, 1);
    }

    .n-drawer.slide-in-from-right-transition-enter-active {
      transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
    }

    .n-drawer.slide-in-from-right-transition-enter-to {
      transform: translateX(0);
    }

    .n-drawer.slide-in-from-right-transition-enter-from {
      transform: translateX(100%);
    }

    .n-drawer.slide-in-from-right-transition-leave-from {
      transform: translateX(0);
    }

    .n-drawer.slide-in-from-right-transition-leave-to {
      transform: translateX(100%);
    }

    .n-drawer.slide-in-from-left-transition-leave-active {
      transition: transform 0.2s cubic-bezier(0.4, 0, 1, 1);
    }

    .n-drawer.slide-in-from-left-transition-enter-active {
      transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
    }

    .n-drawer.slide-in-from-left-transition-enter-to {
      transform: translateX(0);
    }

    .n-drawer.slide-in-from-left-transition-enter-from {
      transform: translateX(-100%);
    }

    .n-drawer.slide-in-from-left-transition-leave-from {
      transform: translateX(0);
    }

    .n-drawer.slide-in-from-left-transition-leave-to {
      transform: translateX(-100%);
    }

    .n-drawer.slide-in-from-top-transition-leave-active {
      transition: transform 0.2s cubic-bezier(0.4, 0, 1, 1);
    }

    .n-drawer.slide-in-from-top-transition-enter-active {
      transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
    }

    .n-drawer.slide-in-from-top-transition-enter-to {
      transform: translateY(0);
    }

    .n-drawer.slide-in-from-top-transition-enter-from {
      transform: translateY(-100%);
    }

    .n-drawer.slide-in-from-top-transition-leave-from {
      transform: translateY(0);
    }

    .n-drawer.slide-in-from-top-transition-leave-to {
      transform: translateY(-100%);
    }

    .n-drawer.slide-in-from-bottom-transition-leave-active {
      transition: transform 0.2s cubic-bezier(0.4, 0, 1, 1);
    }

    .n-drawer.slide-in-from-bottom-transition-enter-active {
      transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
    }

    .n-drawer.slide-in-from-bottom-transition-enter-to {
      transform: translateY(0);
    }

    .n-drawer.slide-in-from-bottom-transition-enter-from {
      transform: translateY(100%);
    }

    .n-drawer.slide-in-from-bottom-transition-leave-from {
      transform: translateY(0);
    }

    .n-drawer.slide-in-from-bottom-transition-leave-to {
      transform: translateY(100%);
    }

    .n-drawer.n-drawer--unselectable {
      user-select: none;
      -webkit-user-select: none;
    }

    .n-drawer.n-drawer--native-scrollbar .n-drawer-content-wrapper {
      overflow: auto;
      height: 100%;
    }

    .n-drawer .n-drawer__resize-trigger {
      position: absolute;
      background-color: #0000;
      transition: background-color 0.3s var(--n-bezier);
    }

    .n-drawer .n-drawer__resize-trigger.n-drawer__resize-trigger--hover {
      background-color: var(--n-resize-trigger-color-hover);
    }

    .n-drawer .n-drawer-content-wrapper {
      box-sizing: border-box;
    }

    .n-drawer .n-drawer-content {
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .n-drawer .n-drawer-content.n-drawer-content--native-scrollbar .n-drawer-body-content-wrapper {
      height: 100%;
      overflow: auto;
    }

    .n-drawer .n-drawer-content .n-drawer-body {
      flex: 1 0 0;
      overflow: hidden;
    }

    .n-drawer .n-drawer-content .n-drawer-body-content-wrapper {
      box-sizing: border-box;
      padding: var(--n-body-padding);
    }

    .n-drawer .n-drawer-content .n-drawer-header {
      font-weight: var(--n-title-font-weight);
      line-height: 1;
      font-size: var(--n-title-font-size);
      color: var(--n-title-text-color);
      padding: var(--n-header-padding);
      transition: border 0.3s var(--n-bezier);
      border-bottom: 1px solid var(--n-divider-color);
      border-bottom: var(--n-header-border-bottom);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .n-drawer .n-drawer-content .n-drawer-header .n-drawer-header__main {
      flex: 1;
    }

    .n-drawer .n-drawer-content .n-drawer-header .n-drawer-header__close {
      margin-left: 6px;
      transition: background-color 0.3s var(--n-bezier),
        color 0.3s var(--n-bezier);
    }

    .n-drawer .n-drawer-content .n-drawer-footer {
      display: flex;
      justify-content: flex-end;
      border-top: var(--n-footer-border-top);
      transition: border 0.3s var(--n-bezier);
      padding: var(--n-footer-padding);
    }

    .n-drawer.n-drawer--right-placement {
      top: 0;
      bottom: 0;
      right: 0;
      border-top-left-radius: var(--n-border-radius);
      border-bottom-left-radius: var(--n-border-radius);
    }

    .n-drawer.n-drawer--right-placement .n-drawer__resize-trigger {
      width: 3px;
      height: 100%;
      top: 0;
      left: 0;
      transform: translateX(-1.5px);
      cursor: ew-resize;
    }

    .n-drawer.n-drawer--left-placement {
      top: 0;
      bottom: 0;
      left: 0;
      border-top-right-radius: var(--n-border-radius);
      border-bottom-right-radius: var(--n-border-radius);
    }

    .n-drawer.n-drawer--left-placement .n-drawer__resize-trigger {
      width: 3px;
      height: 100%;
      top: 0;
      right: 0;
      transform: translateX(1.5px);
      cursor: ew-resize;
    }

    .n-drawer.n-drawer--top-placement {
      top: 0;
      left: 0;
      right: 0;
      border-bottom-left-radius: var(--n-border-radius);
      border-bottom-right-radius: var(--n-border-radius);
    }

    .n-drawer.n-drawer--top-placement .n-drawer__resize-trigger {
      width: 100%;
      height: 3px;
      bottom: 0;
      left: 0;
      transform: translateY(1.5px);
      cursor: ns-resize;
    }

    .n-drawer.n-drawer--bottom-placement {
      left: 0;
      bottom: 0;
      right: 0;
      border-top-left-radius: var(--n-border-radius);
      border-top-right-radius: var(--n-border-radius);
    }

    .n-drawer.n-drawer--bottom-placement .n-drawer__resize-trigger {
      width: 100%;
      height: 3px;
      top: 0;
      left: 0;
      transform: translateY(-1.5px);
      cursor: ns-resize;
    }

    body>.n-drawer-container {
      position: fixed;
    }

    .n-drawer-container {
      position: relative;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      pointer-events: none;
    }

    .n-drawer-container>* {
      pointer-events: all;
    }

    .n-drawer-mask {
      background-color: rgba(0, 0, 0, 0.3);
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
    }

    .n-drawer-mask.n-drawer-mask--invisible {
      background-color: rgba(0, 0, 0, 0);
    }

    .n-drawer-mask.fade-in-transition-enter-active {
      transition: all 0.2s var(--n-bezier-in) !important;
    }

    .n-drawer-mask.fade-in-transition-leave-active {
      transition: all 0.2s var(--n-bezier-out) !important;
    }

    .n-drawer-mask.fade-in-transition-enter-from,
    .n-drawer-mask.fade-in-transition-leave-to {
      opacity: 0;
    }

    .n-drawer-mask.fade-in-transition-leave-from,
    .n-drawer-mask.fade-in-transition-enter-to {
      opacity: 1;
    }

    body {
      margin: 0;
      font-size: 14px;
      font-family: v-sans, system-ui, -apple-system, BlinkMacSystemFont,
        'Segoe UI', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol';
      line-height: 1.6;
      -webkit-text-size-adjust: 100%;
      -webkit-tap-highlight-color: transparent;
    }

    body input {
      font-family: inherit;
      font-size: inherit;
    }

    .n-icon {
      height: 1em;
      width: 1em;
      line-height: 1em;
      text-align: center;
      display: inline-block;
      position: relative;
      fill: currentColor;
      transform: translateZ(0);
    }

    .n-icon.n-icon--color-transition {
      transition: color 0.3s var(--n-bezier);
    }

    .n-icon.n-icon--depth {
      color: var(--n-color);
    }

    .n-icon.n-icon--depth svg {
      opacity: var(--n-opacity);
      transition: opacity 0.3s var(--n-bezier);
    }

    .n-icon svg {
      height: 1em;
      width: 1em;
    }

    *,
    ::backdrop,
    :after,
    :before {
      --tw-border-spacing-x: 0;
      --tw-border-spacing-y: 0;
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-rotate: 0;
      --tw-skew-x: 0;
      --tw-skew-y: 0;
      --tw-scale-x: 1;
      --tw-scale-y: 1;
      --tw-pan-x: ;
      --tw-pan-y: ;
      --tw-pinch-zoom: ;
      --tw-scroll-snap-strictness: proximity;
      --tw-gradient-from-position: ;
      --tw-gradient-via-position: ;
      --tw-gradient-to-position: ;
      --tw-ordinal: ;
      --tw-slashed-zero: ;
      --tw-numeric-figure: ;
      --tw-numeric-spacing: ;
      --tw-numeric-fraction: ;
      --tw-ring-inset: ;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-color: #3b82f680;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-ring-shadow: 0 0 #0000;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-colored: 0 0 #0000;
      --tw-blur: ;
      --tw-brightness: ;
      --tw-contrast: ;
      --tw-grayscale: ;
      --tw-hue-rotate: ;
      --tw-invert: ;
      --tw-saturate: ;
      --tw-sepia: ;
      --tw-drop-shadow: ;
      --tw-backdrop-blur: ;
      --tw-backdrop-brightness: ;
      --tw-backdrop-contrast: ;
      --tw-backdrop-grayscale: ;
      --tw-backdrop-hue-rotate: ;
      --tw-backdrop-invert: ;
      --tw-backdrop-opacity: ;
      --tw-backdrop-saturate: ;
      --tw-backdrop-sepia: ;
      --tw-contain-size: ;
      --tw-contain-layout: ;
      --tw-contain-paint: ;
      --tw-contain-style: ;
    }

    /*! tailwindcss v3.4.14 | MIT License | https://tailwindcss.com*/
    *,
    :after,
    :before {
      border: 0 solid;
      box-sizing: border-box;
    }

    :after,
    :before {
      --tw-content: '';
    }

    :host,
    html {
      line-height: 1.5;
      -webkit-text-size-adjust: 100%;
      font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji,
        Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
      font-feature-settings: normal;
      font-variation-settings: normal;
      tab-size: 4;
      -webkit-tap-highlight-color: transparent;
    }

    body {
      line-height: inherit;
      margin: 0;
    }

    hr {
      border-top-width: 1px;
      color: inherit;
      height: 0;
    }

    abbr:where([title]) {
      -webkit-text-decoration: underline dotted;
      text-decoration: underline dotted;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-size: inherit;
      font-weight: inherit;
    }

    a {
      color: inherit;
      text-decoration: inherit;
    }

    b,
    strong {
      font-weight: bolder;
    }

    code,
    kbd,
    pre,
    samp {
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        Liberation Mono, Courier New, monospace;
      font-feature-settings: normal;
      font-size: 1em;
      font-variation-settings: normal;
    }

    small {
      font-size: 80%;
    }

    sub,
    sup {
      font-size: 75%;
      line-height: 0;
      position: relative;
      vertical-align: initial;
    }

    sub {
      bottom: -0.25em;
    }

    sup {
      top: -0.5em;
    }

    table {
      border-collapse: collapse;
      border-color: inherit;
      text-indent: 0;
    }

    button,
    input,
    optgroup,
    select,
    textarea {
      color: inherit;
      font-family: inherit;
      font-feature-settings: inherit;
      font-size: 100%;
      font-variation-settings: inherit;
      font-weight: inherit;
      letter-spacing: inherit;
      line-height: inherit;
      margin: 0;
      padding: 0;
    }

    button,
    select {
      text-transform: none;
    }

    button,
    input:where([type='button']),
    input:where([type='reset']),
    input:where([type='submit']) {
      -webkit-appearance: button;
      background-color: initial;
      background-image: none;
    }

    :-moz-focusring {
      outline: auto;
    }

    :-moz-ui-invalid {
      box-shadow: none;
    }

    progress {
      vertical-align: initial;
    }

    ::-webkit-inner-spin-button,
    ::-webkit-outer-spin-button {
      height: auto;
    }

    [type='search'] {
      -webkit-appearance: textfield;
      outline-offset: -2px;
    }

    ::-webkit-search-decoration {
      -webkit-appearance: none;
    }

    ::-webkit-file-upload-button {
      -webkit-appearance: button;
      font: inherit;
    }

    summary {
      display: list-item;
    }

    blockquote,
    dd,
    dl,
    figure,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    hr,
    p,
    pre {
      margin: 0;
    }

    fieldset {
      margin: 0;
    }

    fieldset,
    legend {
      padding: 0;
    }

    menu,
    ol,
    ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    dialog {
      padding: 0;
    }

    textarea {
      resize: vertical;
    }

    input::placeholder,
    textarea::placeholder {
      color: #9ca3af;
      opacity: 1;
    }

    [role='button'],
    button {
      cursor: pointer;
    }

    :disabled {
      cursor: default;
    }

    audio,
    canvas,
    embed,
    iframe,
    img,
    object,
    svg,
    video {
      display: block;
      vertical-align: middle;
    }

    img,
    video {
      height: auto;
      max-width: 100%;
    }

    [hidden]:where(:not([hidden='until-found'])) {
      display: none;
    }

    .container {
      margin-left: auto;
      margin-right: auto;
      padding-left: 1rem;
      padding-right: 1rem;
      width: 100%;
    }

    @media (min-width: 200px) {
      .container {
        max-width: 200px;
      }
    }

    @media (min-width: 640px) {
      .container {
        max-width: 640px;
        padding-left: 2rem;
        padding-right: 2rem;
      }
    }

    @media (min-width: 768px) {
      .container {
        max-width: 768px;
      }
    }

    @media (min-width: 1024px) {
      .container {
        max-width: 1024px;
        padding-left: 4rem;
        padding-right: 4rem;
      }
    }

    @media (min-width: 1280px) {
      .container {
        max-width: 1280px;
        padding-left: 5rem;
        padding-right: 5rem;
      }
    }

    @media (min-width: 1536px) {
      .container {
        max-width: 1536px;
        padding-left: 6rem;
        padding-right: 6rem;
      }
    }

    @media (min-width: 1782px) {
      .container {
        max-width: 1782px;
        padding-left: 6rem;
        padding-right: 6rem;
      }
    }

    .visible {
      visibility: visible;
    }

    .fixed {
      position: fixed;
    }

    .absolute {
      position: absolute;
    }

    .relative {
      position: relative;
    }

    .sticky {
      position: sticky;
    }

    .bottom-0 {
      bottom: 0;
    }

    .bottom-\[100\%\] {
      bottom: 100%;
    }

    .left-0 {
      left: 0;
    }

    .left-1\/2,
    .left-\[50\%\] {
      left: 50%;
    }

    .right-0,
    .right-\[0px\] {
      right: 0;
    }

    .right-\[30px\] {
      right: 30px;
    }

    .right-\[5\%\] {
      right: 5%;
    }

    .top-0 {
      top: 0;
    }

    .top-1\/2 {
      top: 50%;
    }

    .top-\[-20px\] {
      top: -20px;
    }

    .top-\[15\%\] {
      top: 15%;
    }

    .top-\[30px\] {
      top: 30px;
    }

    .top-\[5\%\] {
      top: 5%;
    }

    .top-\[50\%\] {
      top: 50%;
    }

    .top-\[60\%\] {
      top: 60%;
    }

    .top-\[73\%\] {
      top: 73%;
    }

    .top-\[96\%\] {
      top: 96%;
    }

    .\!z-10 {
      z-index: 10 !important;
    }

    .z-10 {
      z-index: 10;
    }

    .z-30 {
      z-index: 30;
    }

    .z-\[0\] {
      z-index: 0;
    }

    .z-\[1000000\] {
      z-index: 1000000;
    }

    .z-\[1000\] {
      z-index: 1000;
    }

    .z-\[1\] {
      z-index: 1;
    }

    .z-\[2\] {
      z-index: 2;
    }

    .z-\[999999999\] {
      z-index: 999999999;
    }

    .z-\[99999999\] {
      z-index: 99999999;
    }

    .z-\[9999999\] {
      z-index: 9999999;
    }

    .z-\[999999\] {
      z-index: 999999;
    }

    .z-\[999\] {
      z-index: 999;
    }

    .z-\[99\] {
      z-index: 99;
    }

    .\!my-\[12px\] {
      margin-bottom: 12px !important;
      margin-top: 12px !important;
    }

    .mx-\[10px\] {
      margin-left: 10px;
      margin-right: 10px;
    }

    .mx-\[20px\] {
      margin-left: 20px;
      margin-right: 20px;
    }

    .mx-\[50px\] {
      margin-left: 50px;
      margin-right: 50px;
    }

    .mx-\[5px\] {
      margin-left: 5px;
      margin-right: 5px;
    }

    .mx-auto {
      margin-left: auto;
      margin-right: auto;
    }

    .\!mt-\[130px\] {
      margin-top: 130px !important;
    }

    .mb-\[10px\] {
      margin-bottom: 10px;
    }

    .mb-\[20px\] {
      margin-bottom: 20px;
    }

    .mb-\[30px\] {
      margin-bottom: 30px;
    }

    .mb-\[40px\] {
      margin-bottom: 40px;
    }

    .ml-\[10px\] {
      margin-left: 10px;
    }

    .ml-\[5px\] {
      margin-left: 5px;
    }

    .ml-\[6px\] {
      margin-left: 6px;
    }

    .ml-auto {
      margin-left: auto;
    }

    .mt-\[10px\] {
      margin-top: 10px;
    }

    .mt-\[20px\] {
      margin-top: 20px;
    }

    .mt-\[3\%\] {
      margin-top: 3%;
    }

    .mt-\[30px\] {
      margin-top: 30px;
    }

    .mt-\[40px\] {
      margin-top: 40px;
    }

    .mt-\[50px\] {
      margin-top: 50px;
    }

    .block {
      display: block;
    }

    .inline-block {
      display: inline-block;
    }

    .\!flex {
      display: flex !important;
    }

    .flex {
      display: flex;
    }

    .grid {
      display: grid;
    }

    .hidden {
      display: none;
    }

    .\!h-\[450px\] {
      height: 450px !important;
    }

    .\!h-\[490px\] {
      height: 490px !important;
    }

    .\!h-full {
      height: 100% !important;
    }

    .h-\[100vh\] {
      height: 100vh;
    }

    .h-\[14px\] {
      height: 14px;
    }

    .h-\[15px\] {
      height: 15px;
    }

    .h-\[1em\] {
      height: 1em;
    }

    .h-\[1px\] {
      height: 1px;
    }

    .h-\[20px\] {
      height: 20px;
    }

    .h-\[30px\] {
      height: 30px;
    }

    .h-\[50px\] {
      height: 50px;
    }

    .h-\[5px\] {
      height: 5px;
    }

    .h-full {
      height: 100%;
    }

    .max-h-\[490px\] {
      max-height: 490px;
    }

    .min-h-\[100vh\] {
      min-height: 100vh;
    }

    .min-h-\[30\%\] {
      min-height: 30%;
    }

    .\!w-full {
      width: 100% !important;
    }

    .w-\[100px\] {
      width: 100px;
    }

    .w-\[120px\] {
      width: 120px;
    }

    .w-\[14px\] {
      width: 14px;
    }

    .w-\[15px\] {
      width: 15px;
    }

    .w-\[200px\] {
      width: 200px;
    }

    .w-\[20px\] {
      width: 20px;
    }

    .w-\[250px\] {
      width: 250px;
    }

    .w-\[300px\] {
      width: 300px;
    }

    .w-\[30px\] {
      width: 30px;
    }

    .w-\[33\%\] {
      width: 33%;
    }

    .w-\[340px\] {
      width: 340px;
    }

    .w-\[380px\] {
      width: 380px;
    }

    .w-\[40px\] {
      width: 40px;
    }

    .w-\[42px\] {
      width: 42px;
    }

    .w-\[490px\] {
      width: 490px;
    }

    .w-\[520px\] {
      width: 520px;
    }

    .w-\[57px\] {
      width: 57px;
    }

    .w-\[60\%\] {
      width: 60%;
    }

    .w-\[65\%\] {
      width: 65%;
    }

    .w-\[80\%\] {
      width: 80%;
    }

    .w-\[80px\] {
      width: 80px;
    }

    .w-\[90\%\] {
      width: 90%;
    }

    .w-fit {
      width: fit-content;
    }

    .w-full {
      width: 100%;
    }

    .w-max {
      width: max-content;
    }

    .\!max-w-full {
      max-width: 100% !important;
    }

    .max-w-none {
      max-width: none;
    }

    .flex-1 {
      flex: 1 1 0%;
    }

    .flex-\[1\] {
      flex: 1;
    }

    .\!-translate-x-1\/2 {
      --tw-translate-x: -50% !important;
      transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
    }

    .-translate-x-1\/2 {
      --tw-translate-x: -50%;
    }

    .-translate-x-1\/2,
    .-translate-y-1\/2 {
      transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    }

    .-translate-y-1\/2 {
      --tw-translate-y: -50%;
    }

    .\!scale-\[0\.8\] {
      --tw-scale-x: 0.8 !important;
      --tw-scale-y: 0.8 !important;
      transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
    }

    .scale-\[0\.85\] {
      --tw-scale-x: 0.85;
      --tw-scale-y: 0.85;
    }

    .scale-\[0\.85\],
    .scale-\[0\.8\] {
      transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    }

    .scale-\[0\.8\] {
      --tw-scale-x: 0.8;
      --tw-scale-y: 0.8;
    }

    .transform {
      transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    }

    .cursor-pointer {
      cursor: pointer;
    }

    .select-none {
      -webkit-user-select: none;
      user-select: none;
    }

    .grid-cols-1 {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .flex-row-reverse {
      flex-direction: row-reverse;
    }

    .flex-col {
      flex-direction: column;
    }

    .flex-nowrap {
      flex-wrap: nowrap;
    }

    .items-start {
      align-items: flex-start;
    }

    .items-center {
      align-items: center;
    }

    .items-stretch {
      align-items: stretch;
    }

    .justify-end {
      justify-content: flex-end;
    }

    .justify-center {
      justify-content: center;
    }

    .justify-between {
      justify-content: space-between;
    }

    .justify-around {
      justify-content: space-around;
    }

    .justify-items-center {
      justify-items: center;
    }

    .gap-4 {
      gap: 1rem;
    }

    .gap-x-10 {
      column-gap: 2.5rem;
    }

    .gap-y-6 {
      row-gap: 1.5rem;
    }

    .overflow-hidden {
      overflow: hidden;
    }

    .overflow-y-auto {
      overflow-y: auto;
    }

    .overflow-x-hidden {
      overflow-x: hidden;
    }

    .whitespace-pre-line {
      white-space: pre-line;
    }

    .\!rounded-3xl {
      border-radius: 1.5rem !important;
    }

    .rounded-3xl {
      border-radius: 1.5rem;
    }

    .rounded-full {
      border-radius: 9999px;
    }

    .rounded-lg {
      border-radius: 0.5rem;
    }

    .rounded-md {
      border-radius: 0.375rem;
    }

    .rounded-xl {
      border-radius: 0.75rem;
    }

    .rounded-br-xl {
      border-bottom-right-radius: 0.75rem;
    }

    .\!border-0 {
      border-width: 0 !important;
    }

    .border {
      border-width: 1px;
    }

    .border-\[10px\] {
      border-width: 10px;
    }

    .border-b {
      border-bottom-width: 1px;
    }

    .border-t {
      border-top-width: 1px;
    }

    .border-solid {
      border-style: solid;
    }

    .border-dashed {
      border-style: dashed;
    }

    .\!border-none {
      border-style: none !important;
    }

    .border-\[\#D8D0C8\]\/50 {
      border-color: #d8d0c880;
    }

    .border-\[\#FFFAC0\] {
      --tw-border-opacity: 1;
      border-color: rgb(255 250 192 / var(--tw-border-opacity));
    }

    .border-\[\#ccc\]\/40 {
      border-color: #ccc6;
    }

    .border-\[\#fff\] {
      --tw-border-opacity: 1;
      border-color: rgb(255 255 255 / var(--tw-border-opacity));
    }

    .border-\[\#fff\]\/50 {
      border-color: #ffffff80;
    }

    .border-\[transparent\] {
      border-color: #0000;
    }

    .border-light-primary {
      --tw-border-opacity: 1;
      border-color: rgb(255 234 191 / var(--tw-border-opacity));
    }

    .border-primary {
      --tw-border-opacity: 1;
      border-color: rgb(176 111 43 / var(--tw-border-opacity));
    }

    .border-l-\[transparent\] {
      border-left-color: #0000;
    }

    .border-r-\[transparent\] {
      border-right-color: #0000;
    }

    .border-t-\[transparent\] {
      border-top-color: #0000;
    }

    .\!bg-\[\#fff\] {
      --tw-bg-opacity: 1 !important;
      background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
    }

    .\!bg-primary\/100 {
      background-color: #b06f2b !important;
    }

    .\!bg-primary\/20 {
      background-color: #b06f2b33 !important;
    }

    .bg-\[\#000\] {
      --tw-bg-opacity: 1;
      background-color: rgb(0 0 0 / var(--tw-bg-opacity));
    }

    .bg-\[\#7F4B28\] {
      --tw-bg-opacity: 1;
      background-color: rgb(127 75 40 / var(--tw-bg-opacity));
    }

    .bg-\[\#FEF7E0\]\/80 {
      background-color: #fef7e0cc;
    }

    .bg-\[\#FFFEFA\] {
      --tw-bg-opacity: 1;
      background-color: rgb(255 254 250 / var(--tw-bg-opacity));
    }

    .bg-\[\#fff\] {
      --tw-bg-opacity: 1;
      background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    }

    .bg-\[rgba\(0\2c 0\2c 0\2c 0\.5\)\],
    .bg-\[rgba\(0\2c 0\2c 0\2c \.5\)\] {
      background-color: #00000080;
    }

    .bg-\[rgba\(255\2c 255\2c 255\2c 0\.5\)\] {
      background-color: #ffffff80;
    }

    .bg-\[rgba\(255\2c 255\2c 255\2c 0\.7\)\] {
      background-color: #ffffffb3;
    }

    .bg-light-primary {
      --tw-bg-opacity: 1;
      background-color: rgb(255 234 191 / var(--tw-bg-opacity));
    }

    .bg-primary {
      --tw-bg-opacity: 1;
      background-color: rgb(176 111 43 / var(--tw-bg-opacity));
    }

    .bg-primary\/50 {
      background-color: #b06f2b80;
    }

    .bg-gradient-to-b {
      background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
    }

    .bg-gradient-to-r {
      background-image: linear-gradient(to right, var(--tw-gradient-stops));
    }

    .bg-gradient-to-t {
      background-image: linear-gradient(to top, var(--tw-gradient-stops));
    }

    .from-\[\#8A5022\] {
      --tw-gradient-from: #8a5022 var(--tw-gradient-from-position);
      --tw-gradient-to: #8a502200 var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#8B5122\] {
      --tw-gradient-from: #8b5122 var(--tw-gradient-from-position);
      --tw-gradient-to: #8b512200 var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#8D5222\] {
      --tw-gradient-from: #8d5222 var(--tw-gradient-from-position);
      --tw-gradient-to: #8d522200 var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#9D4A01\] {
      --tw-gradient-from: #9d4a01 var(--tw-gradient-from-position);
      --tw-gradient-to: #9d4a0100 var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#9E5118\] {
      --tw-gradient-from: #9e5118 var(--tw-gradient-from-position);
      --tw-gradient-to: #9e511800 var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#A05217\] {
      --tw-gradient-from: #a05217 var(--tw-gradient-from-position);
      --tw-gradient-to: #a0521700 var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#D57F1E\] {
      --tw-gradient-from: #d57f1e var(--tw-gradient-from-position);
      --tw-gradient-to: #d57f1e00 var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#FFBF6E\] {
      --tw-gradient-from: #ffbf6e var(--tw-gradient-from-position);
      --tw-gradient-to: #ffbf6e00 var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#FFD88E\] {
      --tw-gradient-from: #ffd88e var(--tw-gradient-from-position);
      --tw-gradient-to: #ffd88e00 var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#FFE39E\] {
      --tw-gradient-from: #ffe39e var(--tw-gradient-from-position);
      --tw-gradient-to: #ffe39e00 var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#FFE6BA\] {
      --tw-gradient-from: #ffe6ba var(--tw-gradient-from-position);
      --tw-gradient-to: #ffe6ba00 var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .to-\[\#B57223\] {
      --tw-gradient-to: #b57223 var(--tw-gradient-to-position);
    }

    .to-\[\#B87120\] {
      --tw-gradient-to: #b87120 var(--tw-gradient-to-position);
    }

    .to-\[\#BB731F\] {
      --tw-gradient-to: #bb731f var(--tw-gradient-to-position);
    }

    .to-\[\#BE751F\] {
      --tw-gradient-to: #be751f var(--tw-gradient-to-position);
    }

    .to-\[\#C8471A\] {
      --tw-gradient-to: #c8471a var(--tw-gradient-to-position);
    }

    .to-\[\#D07408\] {
      --tw-gradient-to: #d07408 var(--tw-gradient-to-position);
    }

    .to-\[\#D27508\] {
      --tw-gradient-to: #d27508 var(--tw-gradient-to-position);
    }

    .to-\[\#DA8E25\] {
      --tw-gradient-to: #da8e25 var(--tw-gradient-to-position);
    }

    .to-\[\#FFBD67\] {
      --tw-gradient-to: #ffbd67 var(--tw-gradient-to-position);
    }

    .to-\[\#FFD88E\] {
      --tw-gradient-to: #ffd88e var(--tw-gradient-to-position);
    }

    .to-\[\#FFEAC1\] {
      --tw-gradient-to: #ffeac1 var(--tw-gradient-to-position);
    }

    .to-\[\#FFFBE1\] {
      --tw-gradient-to: #fffbe1 var(--tw-gradient-to-position);
    }

    .bg-cover {
      background-size: cover;
    }

    .bg-clip-text {
      -webkit-background-clip: text;
      background-clip: text;
    }

    .bg-no-repeat {
      background-repeat: no-repeat;
    }

    .object-cover {
      object-fit: cover;
    }

    .\!px-\[10px\] {
      padding-left: 10px !important;
      padding-right: 10px !important;
    }

    .\!py-\[5px\] {
      padding-bottom: 5px !important;
      padding-top: 5px !important;
    }

    .px-10 {
      padding-left: 2.5rem;
      padding-right: 2.5rem;
    }

    .px-3 {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
    }

    .px-\[15px\] {
      padding-left: 15px;
      padding-right: 15px;
    }

    .px-\[18px\] {
      padding-left: 18px;
      padding-right: 18px;
    }

    .px-\[3px\] {
      padding-left: 3px;
      padding-right: 3px;
    }

    .px-\[5px\] {
      padding-left: 5px;
      padding-right: 5px;
    }

    .py-\[100px\] {
      padding-bottom: 100px;
      padding-top: 100px;
    }

    .py-\[10px\] {
      padding-bottom: 10px;
      padding-top: 10px;
    }

    .py-\[2px\] {
      padding-bottom: 2px;
      padding-top: 2px;
    }

    .py-\[3px\] {
      padding-bottom: 3px;
      padding-top: 3px;
    }

    .py-\[45px\] {
      padding-bottom: 45px;
      padding-top: 45px;
    }

    .py-\[5px\] {
      padding-bottom: 5px;
      padding-top: 5px;
    }

    .py-\[70px\] {
      padding-bottom: 70px;
      padding-top: 70px;
    }

    .\!pb-\[12\%\] {
      padding-bottom: 12% !important;
    }

    .\!pt-0 {
      padding-top: 0 !important;
    }

    .\!pt-\[40px\] {
      padding-top: 40px !important;
    }

    .pb-\[5\%\] {
      padding-bottom: 5%;
    }

    .pb-\[50px\] {
      padding-bottom: 50px;
    }

    .pb-\[60px\] {
      padding-bottom: 60px;
    }

    .pl-\[0px\] {
      padding-left: 0;
    }

    .pr-\[30px\] {
      padding-right: 30px;
    }

    .pr-\[50px\] {
      padding-right: 50px;
    }

    .pt-\[100px\] {
      padding-top: 100px;
    }

    .pt-\[80px\] {
      padding-top: 80px;
    }

    .pt-\[90px\] {
      padding-top: 90px;
    }

    .text-center {
      text-align: center;
    }

    .text-right {
      text-align: right;
    }

    .align-middle {
      vertical-align: middle;
    }

    .font-\[\'AlibabaPuHuiTiMedium\'\] {
      font-family: AlibabaPuHuiTiMedium;
    }

    .font-\[\'HarmonyOSSansSCBold\'\] {
      font-family: HarmonyOSSansSCBold;
    }

    .font-\[\'HarmonyOSSansSCLight\'\] {
      font-family: HarmonyOSSansSCLight;
    }

    .font-\[\'HarmonyOSSansSCMedium\'\] {
      font-family: HarmonyOSSansSCMedium;
    }

    .font-\[\'HarmonyOSSansSCRegular\'\] {
      font-family: HarmonyOSSansSCRegular;
    }

    .font-\[\'SourceHanSansCNBold\'\] {
      font-family: SourceHanSansCNBold;
    }

    .font-\[\'SourceHanSansCNRegular\'\] {
      font-family: SourceHanSansCNRegular;
    }

    .font-\[\'SourceHanSerifCNBold\'\] {
      font-family: 'SourceHanSerifCNBold';
    }

    .font-\[\'SourceHanSerifCNHeavy\'\] {
      font-family: 'SourceHanSerifCNHeavy';
    }

    .font-\[\'SourceHanSerifSCSemiBold\'\] {
      font-family: 'SourceHanSerifSCSemiBold';
    }

    .font-\[\'impact\'\] {
      font-family: impact;
    }

    .font-\[\'\9ed1\4f53\'\] {
      font-family: 黑体;
    }

    .\!text-\[28px\] {
      font-size: 28px !important;
    }

    .\!text-\[50px\] {
      font-size: 50px !important;
    }

    .text-\[12px\] {
      font-size: 12px;
    }

    .text-\[14px\] {
      font-size: 14px;
    }

    .text-\[16px\] {
      font-size: 16px;
    }

    .text-\[18px\] {
      font-size: 18px;
    }

    .text-\[25px\] {
      font-size: 25px;
    }

    .text-\[28px\] {
      font-size: 28px;
    }

    .text-\[35px\] {
      font-size: 35px;
    }

    .text-\[40px\] {
      font-size: 40px;
    }

    .font-\[800\] {
      font-weight: 800;
    }

    .font-bold {
      font-weight: 700;
    }

    .leading-\[1\] {
      line-height: 1;
    }

    .leading-\[2\] {
      line-height: 2;
    }

    .\!text-\[\#70441F\]\/100 {
      color: #70441f !important;
    }

    .\!text-\[\#D06600\] {
      --tw-text-opacity: 1 !important;
      color: rgb(208 102 0 / var(--tw-text-opacity)) !important;
    }

    .text-\[\#664627\] {
      --tw-text-opacity: 1;
      color: rgb(102 70 39 / var(--tw-text-opacity));
    }

    .text-\[\#6A2E00\] {
      --tw-text-opacity: 1;
      color: rgb(106 46 0 / var(--tw-text-opacity));
    }

    .text-\[\#70441F\]\/40 {
      color: #70441f66;
    }

    .text-\[\#854315\] {
      --tw-text-opacity: 1;
      color: rgb(133 67 21 / var(--tw-text-opacity));
    }

    .text-\[\#944600\] {
      --tw-text-opacity: 1;
      color: rgb(148 70 0 / var(--tw-text-opacity));
    }

    .text-\[\#97613F\] {
      --tw-text-opacity: 1;
      color: rgb(151 97 63 / var(--tw-text-opacity));
    }

    .text-\[\#9F6C4C\] {
      --tw-text-opacity: 1;
      color: rgb(159 108 76 / var(--tw-text-opacity));
    }

    .text-\[\#BB9C82\] {
      --tw-text-opacity: 1;
      color: rgb(187 156 130 / var(--tw-text-opacity));
    }

    .text-\[\#FAF3E6\] {
      --tw-text-opacity: 1;
      color: rgb(250 243 230 / var(--tw-text-opacity));
    }

    .text-\[\#FBF5CA\] {
      --tw-text-opacity: 1;
      color: rgb(251 245 202 / var(--tw-text-opacity));
    }

    .text-\[\#FFD88E\] {
      --tw-text-opacity: 1;
      color: rgb(255 216 142 / var(--tw-text-opacity));
    }

    .text-\[\#FFF9DE\] {
      --tw-text-opacity: 1;
      color: rgb(255 249 222 / var(--tw-text-opacity));
    }

    .text-\[\#fff\] {
      --tw-text-opacity: 1;
      color: rgb(255 255 255 / var(--tw-text-opacity));
    }

    .text-\[\#fff\]\/50 {
      color: #ffffff80;
    }

    .text-\[\#fff\]\/70 {
      color: #ffffffb3;
    }

    .text-\[transparent\] {
      color: #0000;
    }

    .text-light-primary {
      --tw-text-opacity: 1;
      color: rgb(255 234 191 / var(--tw-text-opacity));
    }

    .text-primary {
      --tw-text-opacity: 1;
      color: rgb(176 111 43 / var(--tw-text-opacity));
    }

    .opacity-50 {
      opacity: 0.5;
    }

    .shadow {
      --tw-shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
      --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color),
        0 1px 2px -1px var(--tw-shadow-color);
    }

    .shadow,
    .shadow-lg {
      box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
        var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }

    .shadow-lg {
      --tw-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
      --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
        0 4px 6px -4px var(--tw-shadow-color);
    }

    .shadow-xl {
      --tw-shadow: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
      --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color),
        0 8px 10px -6px var(--tw-shadow-color);
      box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
        var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }

    .shadow-\[rgba\(0\2c 0\2c 0\2c 0\.05\)\] {
      --tw-shadow-color: #0000000d;
      --tw-shadow: var(--tw-shadow-colored);
    }

    .blur {
      --tw-blur: blur(8px);
      filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
    }

    .transition {
      transition-duration: 0.15s;
      transition-property: color, background-color, border-color,
        text-decoration-color, fill, stroke, opacity, box-shadow, transform,
        filter, -webkit-backdrop-filter;
      transition-property: color, background-color, border-color,
        text-decoration-color, fill, stroke, opacity, box-shadow, transform,
        filter, backdrop-filter;
      transition-property: color, background-color, border-color,
        text-decoration-color, fill, stroke, opacity, box-shadow, transform,
        filter, backdrop-filter, -webkit-backdrop-filter;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }

    .transition-all {
      transition-duration: 0.15s;
      transition-property: all;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }

    .delay-500 {
      transition-delay: 0.5s;
    }

    .last\:\!mb-0:last-child {
      margin-bottom: 0 !important;
    }

    .hover\:\!scale-\[1\.2\]:hover {
      --tw-scale-x: 1.2 !important;
      --tw-scale-y: 1.2 !important;
      transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
    }

    .hover\:scale-\[1\.2\]:hover {
      --tw-scale-x: 1.2;
      --tw-scale-y: 1.2;
    }

    .hover\:scale-\[1\.2\]:hover,
    .hover\:scale-\[1\]:hover {
      transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    }

    .hover\:scale-\[1\]:hover {
      --tw-scale-x: 1;
      --tw-scale-y: 1;
    }

    .hover\:\!bg-primary:hover {
      --tw-bg-opacity: 1 !important;
      background-color: rgb(176 111 43 / var(--tw-bg-opacity)) !important;
    }

    .hover\:bg-\[\#fff\]:hover {
      --tw-bg-opacity: 1;
      background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    }

    .hover\:\!text-\[28px\]:hover {
      font-size: 28px !important;
    }

    .hover\:font-bold:hover {
      font-weight: 700;
    }

    .hover\:\!text-\[\#D06600\]:hover {
      --tw-text-opacity: 1 !important;
      color: rgb(208 102 0 / var(--tw-text-opacity)) !important;
    }

    .hover\:text-\[\#000\]\/70:hover {
      color: #000000b3;
    }

    .hover\:opacity-100:hover {
      opacity: 1;
    }

    .hover\:opacity-80:hover {
      opacity: 0.8;
    }

    .active\:\!bg-primary:active {
      --tw-bg-opacity: 1 !important;
      background-color: rgb(176 111 43 / var(--tw-bg-opacity)) !important;
    }

    @media (min-width: 200px) {
      .xs\:\!relative {
        position: relative !important;
      }

      .xs\:bottom-\[10px\] {
        bottom: 10px;
      }

      .xs\:bottom-\[5px\] {
        bottom: 5px;
      }

      .xs\:top-1\/2 {
        top: 50%;
      }

      .xs\:top-\[5\%\] {
        top: 5%;
      }

      .xs\:top-\[50px\] {
        top: 50px;
      }

      .xs\:top-\[92px\] {
        top: 92px;
      }

      .xs\:mx-\[10px\] {
        margin-left: 10px;
        margin-right: 10px;
      }

      .xs\:my-\[10px\] {
        margin-bottom: 10px;
        margin-top: 10px;
      }

      .xs\:\!mb-\[20px\] {
        margin-bottom: 20px !important;
      }

      .xs\:\!mt-\[10px\] {
        margin-top: 10px !important;
      }

      .xs\:\!mt-\[20px\] {
        margin-top: 20px !important;
      }

      .xs\:mb-\[50px\] {
        margin-bottom: 50px;
      }

      .xs\:ml-\[0px\] {
        margin-left: 0;
      }

      .xs\:ml-\[10px\] {
        margin-left: 10px;
      }

      .xs\:mt-\[0px\] {
        margin-top: 0;
      }

      .xs\:mt-\[100px\] {
        margin-top: 100px;
      }

      .xs\:mt-\[10px\] {
        margin-top: 10px;
      }

      .xs\:mt-\[20px\] {
        margin-top: 20px;
      }

      .xs\:mt-\[30px\] {
        margin-top: 30px;
      }

      .xs\:mt-\[50px\] {
        margin-top: 50px;
      }

      .xs\:mt-\[5px\] {
        margin-top: 5px;
      }

      .xs\:block {
        display: block;
      }

      .xs\:\!flex {
        display: flex !important;
      }

      .xs\:hidden {
        display: none;
      }

      .xs\:\!h-\[100vh\] {
        height: 100vh !important;
      }

      .xs\:h-\[104px\] {
        height: 104px;
      }

      .xs\:h-\[200px\] {
        height: 200px;
      }

      .xs\:h-\[250px\] {
        height: 250px;
      }

      .xs\:h-\[25px\] {
        height: 25px;
      }

      .xs\:h-\[300px\] {
        height: 300px;
      }

      .xs\:h-\[30px\] {
        height: 30px;
      }

      .xs\:h-\[40px\] {
        height: 40px;
      }

      .xs\:h-\[42px\] {
        height: 42px;
      }

      .xs\:h-\[50px\] {
        height: 50px;
      }

      .xs\:h-\[5px\] {
        height: 5px;
      }

      .xs\:h-full {
        height: 100%;
      }

      .xs\:min-h-\[110px\] {
        min-height: 110px;
      }

      .xs\:\!w-\[100\%\] {
        width: 100% !important;
      }

      .xs\:w-\[100\%\] {
        width: 100%;
      }

      .xs\:w-\[100px\] {
        width: 100px;
      }

      .xs\:w-\[150px\] {
        width: 150px;
      }

      .xs\:w-\[24px\] {
        width: 24px;
      }

      .xs\:w-\[25px\] {
        width: 25px;
      }

      .xs\:w-\[30px\] {
        width: 30px;
      }

      .xs\:w-\[40px\] {
        width: 40px;
      }

      .xs\:w-\[4px\] {
        width: 4px;
      }

      .xs\:w-\[50px\] {
        width: 50px;
      }

      .xs\:w-\[70px\] {
        width: 70px;
      }

      .xs\:w-\[80px\] {
        width: 80px;
      }

      .xs\:w-\[90\%\] {
        width: 90%;
      }

      .xs\:w-full {
        width: 100%;
      }

      .xs\:flex-\[1\] {
        flex: 1;
      }

      .xs\:scale-\[1\] {
        --tw-scale-x: 1;
        --tw-scale-y: 1;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
      }

      .xs\:grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
      }

      .xs\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .xs\:flex-row-reverse {
        flex-direction: row-reverse;
      }

      .xs\:flex-col {
        flex-direction: column;
      }

      .xs\:items-center {
        align-items: center;
      }

      .xs\:justify-between {
        justify-content: space-between;
      }

      .xs\:gap-4 {
        gap: 1rem;
      }

      .xs\:rounded-md {
        border-radius: 0.375rem;
      }

      .xs\:rounded-xl {
        border-radius: 0.75rem;
      }

      .xs\:px-\[10px\] {
        padding-left: 10px;
        padding-right: 10px;
      }

      .xs\:px-\[15px\] {
        padding-left: 15px;
        padding-right: 15px;
      }

      .xs\:px-\[5px\] {
        padding-left: 5px;
        padding-right: 5px;
      }

      .xs\:py-\[0px\] {
        padding-bottom: 0;
        padding-top: 0;
      }

      .xs\:py-\[10px\] {
        padding-bottom: 10px;
        padding-top: 10px;
      }

      .xs\:py-\[20px\] {
        padding-bottom: 20px;
        padding-top: 20px;
      }

      .xs\:py-\[30px\] {
        padding-bottom: 30px;
        padding-top: 30px;
      }

      .xs\:py-\[5px\] {
        padding-bottom: 5px;
        padding-top: 5px;
      }

      .xs\:pb-\[20px\] {
        padding-bottom: 20px;
      }

      .xs\:pr-\[10px\] {
        padding-right: 10px;
      }

      .xs\:pt-\[30px\] {
        padding-top: 30px;
      }

      .xs\:text-\[10px\] {
        font-size: 10px;
      }

      .xs\:text-\[12px\] {
        font-size: 12px;
      }

      .xs\:text-\[14px\] {
        font-size: 14px;
      }

      .xs\:text-\[16px\] {
        font-size: 16px;
      }

      .xs\:text-\[18px\] {
        font-size: 18px;
      }

      .xs\:text-\[20px\] {
        font-size: 20px;
      }

      .xs\:text-\[30px\] {
        font-size: 30px;
      }

      .xs\:leading-\[20px\] {
        line-height: 20px;
      }

      .xs\:leading-\[24px\] {
        line-height: 24px;
      }
    }

    @media (min-width: 640px) {
      .sm\:bottom-\[10px\] {
        bottom: 10px;
      }

      .sm\:top-1\/2 {
        top: 50%;
      }

      .sm\:top-\[102px\] {
        top: 102px;
      }

      .sm\:top-\[60px\] {
        top: 60px;
      }

      .sm\:mt-\[10px\] {
        margin-top: 10px;
      }

      .sm\:mt-\[40px\] {
        margin-top: 40px;
      }

      .sm\:block {
        display: block;
      }

      .sm\:\!flex {
        display: flex !important;
      }

      .sm\:hidden {
        display: none;
      }

      .sm\:h-\[250px\] {
        height: 250px;
      }

      .sm\:h-\[300px\] {
        height: 300px;
      }

      .sm\:h-\[30px\] {
        height: 30px;
      }

      .sm\:h-\[40px\] {
        height: 40px;
      }

      .sm\:h-\[42px\] {
        height: 42px;
      }

      .sm\:h-\[60px\] {
        height: 60px;
      }

      .sm\:h-auto {
        height: auto;
      }

      .sm\:w-\[100px\] {
        width: 100px;
      }

      .sm\:w-\[40px\] {
        width: 40px;
      }

      .sm\:w-\[50px\] {
        width: 50px;
      }

      .sm\:scale-\[0\.85\] {
        --tw-scale-x: 0.85;
        --tw-scale-y: 0.85;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
      }

      .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .sm\:flex-col {
        flex-direction: column;
      }

      .sm\:justify-between {
        justify-content: space-between;
      }

      .sm\:px-\[15px\] {
        padding-left: 15px;
        padding-right: 15px;
      }

      .sm\:text-\[12px\] {
        font-size: 12px;
      }

      .sm\:text-\[14px\] {
        font-size: 14px;
      }

      .sm\:text-\[16px\] {
        font-size: 16px;
      }

      .sm\:text-\[18px\] {
        font-size: 18px;
      }

      .sm\:text-\[20px\] {
        font-size: 20px;
      }

      .sm\:text-\[25px\] {
        font-size: 25px;
      }

      .sm\:text-\[30px\] {
        font-size: 30px;
      }
    }

    @media (min-width: 768px) {
      .md\:bottom-\[20px\] {
        bottom: 20px;
      }

      .md\:top-1\/2 {
        top: 50%;
      }

      .md\:top-\[112px\] {
        top: 112px;
      }

      .md\:top-\[40\%\] {
        top: 40%;
      }

      .md\:top-\[70px\] {
        top: 70px;
      }

      .md\:mx-\[20px\] {
        margin-left: 20px;
        margin-right: 20px;
      }

      .md\:my-\[50px\] {
        margin-bottom: 50px;
        margin-top: 50px;
      }

      .md\:\!mt-\[20px\] {
        margin-top: 20px !important;
      }

      .md\:\!mt-\[40px\] {
        margin-top: 40px !important;
      }

      .md\:ml-\[10px\] {
        margin-left: 10px;
      }

      .md\:mt-\[10px\] {
        margin-top: 10px;
      }

      .md\:mt-\[20\] {
        margin-top: 20;
      }

      .md\:mt-\[20px\] {
        margin-top: 20px;
      }

      .md\:mt-\[40\] {
        margin-top: 40;
      }

      .md\:mt-\[50px\] {
        margin-top: 50px;
      }

      .md\:mt-\[60px\] {
        margin-top: 60px;
      }

      .md\:block {
        display: block;
      }

      .md\:\!flex {
        display: flex !important;
      }

      .md\:hidden {
        display: none;
      }

      .md\:h-\[300px\] {
        height: 300px;
      }

      .md\:h-\[400px\] {
        height: 400px;
      }

      .md\:h-\[40px\] {
        height: 40px;
      }

      .md\:h-\[42px\] {
        height: 42px;
      }

      .md\:h-\[70px\] {
        height: 70px;
      }

      .md\:h-\[80px\] {
        height: 80px;
      }

      .md\:h-auto {
        height: auto;
      }

      .md\:w-\[100px\] {
        width: 100px;
      }

      .md\:w-\[200px\] {
        width: 200px;
      }

      .md\:w-\[30px\] {
        width: 30px;
      }

      .md\:w-\[50px\] {
        width: 50px;
      }

      .md\:w-\[6px\] {
        width: 6px;
      }

      .md\:-translate-y-1\/2 {
        --tw-translate-y: -50%;
      }

      .md\:-translate-y-1\/2,
      .md\:scale-\[0\.85\] {
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
      }

      .md\:scale-\[0\.85\] {
        --tw-scale-x: 0.85;
        --tw-scale-y: 0.85;
      }

      .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .md\:flex-col {
        flex-direction: column;
      }

      .md\:justify-between {
        justify-content: space-between;
      }

      .md\:px-\[10px\] {
        padding-left: 10px;
        padding-right: 10px;
      }

      .md\:px-\[30px\] {
        padding-left: 30px;
        padding-right: 30px;
      }

      .md\:py-\[10px\] {
        padding-bottom: 10px;
        padding-top: 10px;
      }

      .md\:py-\[2px\] {
        padding-bottom: 2px;
        padding-top: 2px;
      }

      .md\:py-\[50px\] {
        padding-bottom: 50px;
        padding-top: 50px;
      }

      .md\:pt-\[40px\] {
        padding-top: 40px;
      }

      .md\:text-\[12px\] {
        font-size: 12px;
      }

      .md\:text-\[14px\] {
        font-size: 14px;
      }

      .md\:text-\[16px\] {
        font-size: 16px;
      }

      .md\:text-\[18px\] {
        font-size: 18px;
      }

      .md\:text-\[20px\] {
        font-size: 20px;
      }

      .md\:text-\[22px\] {
        font-size: 22px;
      }

      .md\:text-\[25px\] {
        font-size: 25px;
      }

      .md\:text-\[30px\] {
        font-size: 30px;
      }

      .md\:text-\[36px\] {
        font-size: 36px;
      }

      .md\:leading-\[30px\] {
        line-height: 30px;
      }
    }

    @media (min-width: 1024px) {
      .lg\:\!absolute {
        position: absolute !important;
      }

      .lg\:bottom-\[20px\] {
        bottom: 20px;
      }

      .lg\:bottom-\[30px\] {
        bottom: 30px;
      }

      .lg\:top-1\/2 {
        top: 50%;
      }

      .lg\:top-\[132px\] {
        top: 132px;
      }

      .lg\:top-\[80px\] {
        top: 80px;
      }

      .lg\:\!mx-\[100px\] {
        margin-left: 100px !important;
        margin-right: 100px !important;
      }

      .lg\:\!mt-\[30px\] {
        margin-top: 30px !important;
      }

      .lg\:mb-\[10px\] {
        margin-bottom: 10px;
      }

      .lg\:mb-\[15px\] {
        margin-bottom: 15px;
      }

      .lg\:mb-\[20px\] {
        margin-bottom: 20px;
      }

      .lg\:ml-\[30px\] {
        margin-left: 30px;
      }

      .lg\:ml-\[50px\] {
        margin-left: 50px;
      }

      .lg\:mr-\[50px\] {
        margin-right: 50px;
      }

      .lg\:mt-\[0\] {
        margin-top: 0;
      }

      .lg\:mt-\[100px\] {
        margin-top: 100px;
      }

      .lg\:mt-\[20px\] {
        margin-top: 20px;
      }

      .lg\:mt-\[30px\] {
        margin-top: 30px;
      }

      .lg\:mt-\[40px\] {
        margin-top: 40px;
      }

      .lg\:mt-\[60px\] {
        margin-top: 60px;
      }

      .lg\:mt-\[70px\] {
        margin-top: 70px;
      }

      .lg\:mt-\[80px\] {
        margin-top: 80px;
      }

      .lg\:mt-\[auto\] {
        margin-top: auto;
      }

      .lg\:block {
        display: block;
      }

      .lg\:flex {
        display: flex;
      }

      .lg\:\!hidden {
        display: none !important;
      }

      .lg\:hidden {
        display: none;
      }

      .lg\:h-\[100px\] {
        height: 100px;
      }

      .lg\:h-\[370px\] {
        height: 370px;
      }

      .lg\:h-\[400px\] {
        height: 400px;
      }

      .lg\:h-\[40px\] {
        height: 40px;
      }

      .lg\:h-\[490px\] {
        height: 490px;
      }

      .lg\:h-\[50px\] {
        height: 50px;
      }

      .lg\:h-\[510px\] {
        height: 510px;
      }

      .lg\:h-\[52px\] {
        height: 52px;
      }

      .lg\:h-\[60px\] {
        height: 60px;
      }

      .lg\:h-\[6px\] {
        height: 6px;
      }

      .lg\:h-\[80px\] {
        height: 80px;
      }

      .lg\:h-auto {
        height: auto;
      }

      .lg\:\!max-h-\[490px\] {
        max-height: 490px !important;
      }

      .lg\:\!min-h-\[490px\] {
        min-height: 490px !important;
      }

      .lg\:w-\[100px\] {
        width: 100px;
      }

      .lg\:w-\[185px\] {
        width: 185px;
      }

      .lg\:w-\[300px\] {
        width: 300px;
      }

      .lg\:w-\[30px\] {
        width: 30px;
      }

      .lg\:w-\[34px\] {
        width: 34px;
      }

      .lg\:w-\[400px\] {
        width: 400px;
      }

      .lg\:w-\[40px\] {
        width: 40px;
      }

      .lg\:w-\[500px\] {
        width: 500px;
      }

      .lg\:w-\[520px\] {
        width: 520px;
      }

      .lg\:w-\[60px\] {
        width: 60px;
      }

      .lg\:w-\[80\%\] {
        width: 80%;
      }

      .lg\:w-\[80px\] {
        width: 80px;
      }

      .lg\:w-\[8px\] {
        width: 8px;
      }

      .lg\:w-\[auto\],
      .lg\:w-auto {
        width: auto;
      }

      .lg\:flex-\[2\] {
        flex: 2;
      }

      .lg\:flex-\[3\] {
        flex: 3;
      }

      .lg\:scale-\[0\.85\] {
        --tw-scale-x: 0.85;
        --tw-scale-y: 0.85;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
      }

      .lg\:\!grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      }

      .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .lg\:flex-row {
        flex-direction: row;
      }

      .lg\:rounded-xl {
        border-radius: 0.75rem;
      }

      .lg\:px-\[25px\] {
        padding-left: 25px;
        padding-right: 25px;
      }

      .lg\:px-\[30px\] {
        padding-left: 30px;
        padding-right: 30px;
      }

      .lg\:px-\[60px\] {
        padding-left: 60px;
        padding-right: 60px;
      }

      .lg\:py-\[20px\] {
        padding-bottom: 20px;
        padding-top: 20px;
      }

      .lg\:py-\[30px\] {
        padding-bottom: 30px;
        padding-top: 30px;
      }

      .lg\:py-\[50px\] {
        padding-bottom: 50px;
        padding-top: 50px;
      }

      .lg\:py-\[5px\] {
        padding-bottom: 5px;
        padding-top: 5px;
      }

      .lg\:py-\[80px\] {
        padding-bottom: 80px;
        padding-top: 80px;
      }

      .lg\:pb-\[100px\] {
        padding-bottom: 100px;
      }

      .lg\:pl-\[170px\] {
        padding-left: 170px;
      }

      .lg\:pl-\[200px\] {
        padding-left: 200px;
      }

      .lg\:pr-\[50px\] {
        padding-right: 50px;
      }

      .lg\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
      }

      .lg\:text-\[13px\] {
        font-size: 13px;
      }

      .lg\:text-\[14px\] {
        font-size: 14px;
      }

      .lg\:text-\[16px\] {
        font-size: 16px;
      }

      .lg\:text-\[18px\] {
        font-size: 18px;
      }

      .lg\:text-\[20px\] {
        font-size: 20px;
      }

      .lg\:text-\[25px\] {
        font-size: 25px;
      }

      .lg\:text-\[26px\] {
        font-size: 26px;
      }

      .lg\:text-\[30px\] {
        font-size: 30px;
      }

      .lg\:text-\[35px\] {
        font-size: 35px;
      }

      .lg\:text-\[36px\] {
        font-size: 36px;
      }

      .lg\:text-\[40px\] {
        font-size: 40px;
      }

      .lg\:text-\[50px\] {
        font-size: 50px;
      }

      .lg\:leading-\[34px\] {
        line-height: 34px;
      }

      .lg\:hover\:scale-\[1\.2\]:hover {
        --tw-scale-x: 1.2;
        --tw-scale-y: 1.2;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
      }
    }

    @media (min-width: 1280px) {
      .xl\:bottom-\[30px\] {
        bottom: 30px;
      }

      .xl\:top-\[100px\] {
        top: 100px;
      }

      .xl\:top-\[152px\] {
        top: 152px;
      }

      .xl\:\!mb-\[40px\] {
        margin-bottom: 40px !important;
      }

      .xl\:\!mt-\[40px\] {
        margin-top: 40px !important;
      }

      .xl\:ml-\[30px\] {
        margin-left: 30px;
      }

      .xl\:ml-\[70px\] {
        margin-left: 70px;
      }

      .xl\:mt-\[10px\] {
        margin-top: 10px;
      }

      .xl\:mt-\[30px\] {
        margin-top: 30px;
      }

      .xl\:mt-\[40px\] {
        margin-top: 40px;
      }

      .xl\:flex {
        display: flex;
      }

      .xl\:hidden {
        display: none;
      }

      .xl\:h-\[100px\] {
        height: 100px;
      }

      .xl\:h-\[164px\] {
        height: 164px;
      }

      .xl\:h-\[174px\] {
        height: 174px;
      }

      .xl\:h-\[470px\] {
        height: 470px;
      }

      .xl\:h-\[600px\] {
        height: 600px;
      }

      .xl\:h-\[60px\] {
        height: 60px;
      }

      .xl\:max-h-\[1200px\] {
        max-height: 1200px;
      }

      .xl\:min-h-\[310px\] {
        min-height: 310px;
      }

      .xl\:w-\[185px\] {
        width: 185px;
      }

      .xl\:w-\[256px\] {
        width: 256px;
      }

      .xl\:w-\[70px\] {
        width: 70px;
      }

      .xl\:w-\[auto\] {
        width: auto;
      }

      .xl\:max-w-\[1100px\] {
        max-width: 1100px;
      }

      .xl\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .xl\:flex-row {
        flex-direction: row;
      }

      .xl\:items-stretch {
        align-items: stretch;
      }

      .xl\:gap-10 {
        gap: 2.5rem;
      }

      .xl\:rounded-3xl {
        border-radius: 1.5rem;
      }

      .xl\:border-r {
        border-right-width: 1px;
      }

      .xl\:px-\[0px\] {
        padding-left: 0;
        padding-right: 0;
      }

      .xl\:px-\[20px\] {
        padding-left: 20px;
        padding-right: 20px;
      }

      .xl\:px-\[70px\] {
        padding-left: 70px;
        padding-right: 70px;
      }

      .xl\:py-\[100px\] {
        padding-bottom: 100px;
        padding-top: 100px;
      }

      .xl\:py-\[20px\] {
        padding-bottom: 20px;
        padding-top: 20px;
      }

      .xl\:py-\[80px\] {
        padding-bottom: 80px;
        padding-top: 80px;
      }

      .xl\:pr-\[20px\] {
        padding-right: 20px;
      }

      .xl\:pr-\[60px\] {
        padding-right: 60px;
      }

      .xl\:pt-\[80px\] {
        padding-top: 80px;
      }

      .xl\:text-\[16px\] {
        font-size: 16px;
      }

      .xl\:text-\[18px\] {
        font-size: 18px;
      }

      .xl\:text-\[20px\] {
        font-size: 20px;
      }

      .xl\:text-\[22px\] {
        font-size: 22px;
      }

      .xl\:text-\[25px\] {
        font-size: 25px;
      }

      .xl\:text-\[28px\] {
        font-size: 28px;
      }

      .xl\:text-\[35px\] {
        font-size: 35px;
      }

      .xl\:text-\[36px\] {
        font-size: 36px;
      }

      .xl\:text-\[40px\] {
        font-size: 40px;
      }

      .xl\:text-\[50px\] {
        font-size: 50px;
      }

      .xl\:leading-\[34px\] {
        line-height: 34px;
      }

      .xl\:leading-\[40px\] {
        line-height: 40px;
      }
    }

    @media (min-width: 1536px) {
      .\32xl\:top-\[125px\] {
        top: 125px;
      }

      .\32xl\:top-\[177px\] {
        top: 177px;
      }

      .\32xl\:hidden {
        display: none;
      }

      .\32xl\:h-\[120px\] {
        height: 120px;
      }

      .\32xl\:h-\[125px\] {
        height: 125px;
      }

      .\32xl\:w-\[80px\] {
        width: 80px;
      }

      .\32xl\:border-r {
        border-right-width: 1px;
      }
    }

    @media (min-width: 1782px) {
      .\33xl\:bottom-\[40px\] {
        bottom: 40px;
      }

      .\33xl\:ml-\[100px\] {
        margin-left: 100px;
      }

      .\33xl\:hidden {
        display: none;
      }

      .\33xl\:h-\[100px\] {
        height: 100px;
      }

      .\33xl\:h-\[140px\] {
        height: 140px;
      }

      .\33xl\:border-r {
        border-right-width: 1px;
      }

      .\33xl\:text-\[18px\] {
        font-size: 18px;
      }

      .\33xl\:text-\[22px\] {
        font-size: 22px;
      }

      .\33xl\:text-\[46px\] {
        font-size: 46px;
      }

      .\33xl\:text-\[70px\] {
        font-size: 70px;
      }
    }

    a,
    abbr,
    acronym,
    address,
    applet,
    article,
    aside,
    audio,
    b,
    big,
    blockquote,
    body,
    canvas,
    caption,
    center,
    cite,
    code,
    dd,
    del,
    details,
    dfn,
    div,
    dl,
    dt,
    em,
    embed,
    fieldset,
    figcaption,
    figure,
    footer,
    form,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    header,
    hgroup,
    html,
    i,
    iframe,
    img,
    ins,
    kbd,
    label,
    legend,
    li,
    main,
    mark,
    menu,
    nav,
    object,
    ol,
    output,
    p,
    pre,
    q,
    ruby,
    s,
    samp,
    section,
    small,
    span,
    strike,
    strong,
    sub,
    summary,
    sup,
    table,
    tbody,
    td,
    tfoot,
    th,
    thead,
    time,
    tr,
    tt,
    u,
    ul,
    var,
    video {
      border: 0;
      font-size: 100%;
      font: inherit;
      margin: 0;
      padding: 0;
      vertical-align: baseline;
    }

    article,
    aside,
    details,
    figcaption,
    figure,
    footer,
    header,
    hgroup,
    main,
    menu,
    nav,
    section {
      display: block;
    }

    [hidden] {
      display: none;
    }

    body {
      line-height: 1;
    }

    menu,
    ol,
    ul {
      list-style: none;
    }

    blockquote,
    q {
      quotes: none;
    }

    blockquote:after,
    blockquote:before,
    q:after,
    q:before {
      content: '';
      content: none;
    }

    table {
      border-collapse: collapse;
      border-spacing: 0;
    }

    *,
    :after,
    :before {
      --tw-border-spacing-x: 0;
      --tw-border-spacing-y: 0;
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-rotate: 0;
      --tw-skew-x: 0;
      --tw-skew-y: 0;
      --tw-scale-x: 1;
      --tw-scale-y: 1;
      --tw-pan-x: ;
      --tw-pan-y: ;
      --tw-pinch-zoom: ;
      --tw-scroll-snap-strictness: proximity;
      --tw-gradient-from-position: ;
      --tw-gradient-via-position: ;
      --tw-gradient-to-position: ;
      --tw-ordinal: ;
      --tw-slashed-zero: ;
      --tw-numeric-figure: ;
      --tw-numeric-spacing: ;
      --tw-numeric-fraction: ;
      --tw-ring-inset: ;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-color: rgba(59, 130, 246, 0.5);
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-ring-shadow: 0 0 #0000;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-colored: 0 0 #0000;
      --tw-blur: ;
      --tw-brightness: ;
      --tw-contrast: ;
      --tw-grayscale: ;
      --tw-hue-rotate: ;
      --tw-invert: ;
      --tw-saturate: ;
      --tw-sepia: ;
      --tw-drop-shadow: ;
      --tw-backdrop-blur: ;
      --tw-backdrop-brightness: ;
      --tw-backdrop-contrast: ;
      --tw-backdrop-grayscale: ;
      --tw-backdrop-hue-rotate: ;
      --tw-backdrop-invert: ;
      --tw-backdrop-opacity: ;
      --tw-backdrop-saturate: ;
      --tw-backdrop-sepia: ;
      --tw-contain-size: ;
      --tw-contain-layout: ;
      --tw-contain-paint: ;
      --tw-contain-style: ;
    }

    ::backdrop {
      --tw-border-spacing-x: 0;
      --tw-border-spacing-y: 0;
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-rotate: 0;
      --tw-skew-x: 0;
      --tw-skew-y: 0;
      --tw-scale-x: 1;
      --tw-scale-y: 1;
      --tw-pan-x: ;
      --tw-pan-y: ;
      --tw-pinch-zoom: ;
      --tw-scroll-snap-strictness: proximity;
      --tw-gradient-from-position: ;
      --tw-gradient-via-position: ;
      --tw-gradient-to-position: ;
      --tw-ordinal: ;
      --tw-slashed-zero: ;
      --tw-numeric-figure: ;
      --tw-numeric-spacing: ;
      --tw-numeric-fraction: ;
      --tw-ring-inset: ;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-color: rgba(59, 130, 246, 0.5);
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-ring-shadow: 0 0 #0000;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-colored: 0 0 #0000;
      --tw-blur: ;
      --tw-brightness: ;
      --tw-contrast: ;
      --tw-grayscale: ;
      --tw-hue-rotate: ;
      --tw-invert: ;
      --tw-saturate: ;
      --tw-sepia: ;
      --tw-drop-shadow: ;
      --tw-backdrop-blur: ;
      --tw-backdrop-brightness: ;
      --tw-backdrop-contrast: ;
      --tw-backdrop-grayscale: ;
      --tw-backdrop-hue-rotate: ;
      --tw-backdrop-invert: ;
      --tw-backdrop-opacity: ;
      --tw-backdrop-saturate: ;
      --tw-backdrop-sepia: ;
      --tw-contain-size: ;
      --tw-contain-layout: ;
      --tw-contain-paint: ;
      --tw-contain-style: ;
    }

    /*! tailwindcss v3.4.14 | MIT License | https://tailwindcss.com*/
    *,
    :after,
    :before {
      border: 0 solid;
      box-sizing: border-box;
    }

    :after,
    :before {
      --tw-content: '';
    }

    :host,
    html {
      line-height: 1.5;
      -webkit-text-size-adjust: 100%;
      font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji,
        Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
      font-feature-settings: normal;
      font-variation-settings: normal;
      -moz-tab-size: 4;
      -o-tab-size: 4;
      tab-size: 4;
      -webkit-tap-highlight-color: transparent;
    }

    body {
      line-height: inherit;
      margin: 0;
    }

    hr {
      border-top-width: 1px;
      color: inherit;
      height: 0;
    }

    abbr:where([title]) {
      -webkit-text-decoration: underline dotted;
      text-decoration: underline dotted;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-size: inherit;
      font-weight: inherit;
    }

    a {
      color: inherit;
      text-decoration: inherit;
    }

    b,
    strong {
      font-weight: bolder;
    }

    code,
    kbd,
    pre,
    samp {
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        Liberation Mono, Courier New, monospace;
      font-feature-settings: normal;
      font-size: 1em;
      font-variation-settings: normal;
    }

    small {
      font-size: 80%;
    }

    sub,
    sup {
      font-size: 75%;
      line-height: 0;
      position: relative;
      vertical-align: baseline;
    }

    sub {
      bottom: -0.25em;
    }

    sup {
      top: -0.5em;
    }

    table {
      border-collapse: collapse;
      border-color: inherit;
      text-indent: 0;
    }

    button,
    input,
    optgroup,
    select,
    textarea {
      color: inherit;
      font-family: inherit;
      font-feature-settings: inherit;
      font-size: 100%;
      font-variation-settings: inherit;
      font-weight: inherit;
      letter-spacing: inherit;
      line-height: inherit;
      margin: 0;
      padding: 0;
    }

    button,
    select {
      text-transform: none;
    }

    button,
    input:where([type='button']),
    input:where([type='reset']),
    input:where([type='submit']) {
      -webkit-appearance: button;
      background-color: transparent;
      background-image: none;
    }

    :-moz-focusring {
      outline: auto;
    }

    :-moz-ui-invalid {
      box-shadow: none;
    }

    progress {
      vertical-align: baseline;
    }

    ::-webkit-inner-spin-button,
    ::-webkit-outer-spin-button {
      height: auto;
    }

    [type='search'] {
      -webkit-appearance: textfield;
      outline-offset: -2px;
    }

    ::-webkit-search-decoration {
      -webkit-appearance: none;
    }

    ::-webkit-file-upload-button {
      -webkit-appearance: button;
      font: inherit;
    }

    summary {
      display: list-item;
    }

    blockquote,
    dd,
    dl,
    figure,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    hr,
    p,
    pre {
      margin: 0;
    }

    fieldset {
      margin: 0;
    }

    fieldset,
    legend {
      padding: 0;
    }

    menu,
    ol,
    ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    dialog {
      padding: 0;
    }

    textarea {
      resize: vertical;
    }

    input::-moz-placeholder,
    textarea::-moz-placeholder {
      color: #9ca3af;
      opacity: 1;
    }

    input::placeholder,
    textarea::placeholder {
      color: #9ca3af;
      opacity: 1;
    }

    [role='button'],
    button {
      cursor: pointer;
    }

    :disabled {
      cursor: default;
    }

    audio,
    canvas,
    embed,
    iframe,
    img,
    object,
    svg,
    video {
      display: block;
      vertical-align: middle;
    }

    img,
    video {
      height: auto;
      max-width: 100%;
    }

    [hidden]:where(:not([hidden='until-found'])) {
      display: none;
    }

    [type='button'],
    [type='reset'],
    [type='submit'],
    button {
      background-color: var(--n-color);
    }

    .container {
      margin-left: auto;
      margin-right: auto;
      padding-left: 1rem;
      padding-right: 1rem;
      width: 100%;
    }

    @media (min-width: 200px) {
      .container {
        max-width: 200px;
      }
    }

    @media (min-width: 640px) {
      .container {
        max-width: 640px;
        padding-left: 2rem;
        padding-right: 2rem;
      }
    }

    @media (min-width: 768px) {
      .container {
        max-width: 768px;
      }
    }

    @media (min-width: 1024px) {
      .container {
        max-width: 1024px;
        padding-left: 4rem;
        padding-right: 4rem;
      }
    }

    @media (min-width: 1280px) {
      .container {
        max-width: 1280px;
        padding-left: 5rem;
        padding-right: 5rem;
      }
    }

    @media (min-width: 1536px) {
      .container {
        max-width: 1536px;
        padding-left: 6rem;
        padding-right: 6rem;
      }
    }

    @media (min-width: 1782px) {
      .container {
        max-width: 1782px;
        padding-left: 6rem;
        padding-right: 6rem;
      }
    }

    .visible {
      visibility: visible;
    }

    .fixed {
      position: fixed;
    }

    .absolute {
      position: absolute;
    }

    .relative {
      position: relative;
    }

    .sticky {
      position: sticky;
    }

    .bottom-0 {
      bottom: 0;
    }

    .bottom-\[100\%\] {
      bottom: 100%;
    }

    .left-0 {
      left: 0;
    }

    .left-1\/2,
    .left-\[50\%\] {
      left: 50%;
    }

    .right-0,
    .right-\[0px\] {
      right: 0;
    }

    .right-\[30px\] {
      right: 30px;
    }

    .right-\[5\%\] {
      right: 5%;
    }

    .top-0 {
      top: 0;
    }

    .top-1\/2 {
      top: 50%;
    }

    .top-\[-20px\] {
      top: -20px;
    }

    .top-\[15\%\] {
      top: 15%;
    }

    .top-\[30px\] {
      top: 30px;
    }

    .top-\[5\%\] {
      top: 5%;
    }

    .top-\[50\%\] {
      top: 50%;
    }

    .top-\[60\%\] {
      top: 60%;
    }

    .top-\[73\%\] {
      top: 73%;
    }

    .top-\[96\%\] {
      top: 96%;
    }

    .\!z-10 {
      z-index: 10 !important;
    }

    .z-10 {
      z-index: 10;
    }

    .z-30 {
      z-index: 30;
    }

    .z-\[0\] {
      z-index: 0;
    }

    .z-\[1000000\] {
      z-index: 1000000;
    }

    .z-\[1000\] {
      z-index: 1000;
    }

    .z-\[1\] {
      z-index: 1;
    }

    .z-\[2\] {
      z-index: 2;
    }

    .z-\[999999999\] {
      z-index: 999999999;
    }

    .z-\[99999999\] {
      z-index: 99999999;
    }

    .z-\[9999999\] {
      z-index: 9999999;
    }

    .z-\[999999\] {
      z-index: 999999;
    }

    .z-\[999\] {
      z-index: 999;
    }

    .z-\[99\] {
      z-index: 99;
    }

    .\!my-\[12px\] {
      margin-bottom: 12px !important;
      margin-top: 12px !important;
    }

    .mx-\[10px\] {
      margin-left: 10px;
      margin-right: 10px;
    }

    .mx-\[20px\] {
      margin-left: 20px;
      margin-right: 20px;
    }

    .mx-\[50px\] {
      margin-left: 50px;
      margin-right: 50px;
    }

    .mx-\[5px\] {
      margin-left: 5px;
      margin-right: 5px;
    }

    .mx-auto {
      margin-left: auto;
      margin-right: auto;
    }

    .\!mt-\[130px\] {
      margin-top: 130px !important;
    }

    .mb-\[10px\] {
      margin-bottom: 10px;
    }

    .mb-\[20px\] {
      margin-bottom: 20px;
    }

    .mb-\[30px\] {
      margin-bottom: 30px;
    }

    .mb-\[40px\] {
      margin-bottom: 40px;
    }

    .ml-\[10px\] {
      margin-left: 10px;
    }

    .ml-\[5px\] {
      margin-left: 5px;
    }

    .ml-\[6px\] {
      margin-left: 6px;
    }

    .ml-auto {
      margin-left: auto;
    }

    .mt-\[10px\] {
      margin-top: 10px;
    }

    .mt-\[20px\] {
      margin-top: 20px;
    }

    .mt-\[3\%\] {
      margin-top: 3%;
    }

    .mt-\[30px\] {
      margin-top: 30px;
    }

    .mt-\[40px\] {
      margin-top: 40px;
    }

    .mt-\[50px\] {
      margin-top: 50px;
    }

    .block {
      display: block;
    }

    .inline-block {
      display: inline-block;
    }

    .\!flex {
      display: flex !important;
    }

    .flex {
      display: flex;
    }

    .grid {
      display: grid;
    }

    .hidden {
      display: none;
    }

    .\!h-\[450px\] {
      height: 450px !important;
    }

    .\!h-\[490px\] {
      height: 490px !important;
    }

    .\!h-full {
      height: 100% !important;
    }

    .h-\[100vh\] {
      height: 100vh;
    }

    .h-\[14px\] {
      height: 14px;
    }

    .h-\[15px\] {
      height: 15px;
    }

    .h-\[1em\] {
      height: 1em;
    }

    .h-\[1px\] {
      height: 1px;
    }

    .h-\[20px\] {
      height: 20px;
    }

    .h-\[30px\] {
      height: 30px;
    }

    .h-\[50px\] {
      height: 50px;
    }

    .h-\[5px\] {
      height: 5px;
    }

    .h-full {
      height: 100%;
    }

    .max-h-\[490px\] {
      max-height: 490px;
    }

    .min-h-\[100vh\] {
      min-height: 100vh;
    }

    .min-h-\[30\%\] {
      min-height: 30%;
    }

    .\!w-full {
      width: 100% !important;
    }

    .w-\[100px\] {
      width: 100px;
    }

    .w-\[120px\] {
      width: 120px;
    }

    .w-\[14px\] {
      width: 14px;
    }

    .w-\[15px\] {
      width: 15px;
    }

    .w-\[200px\] {
      width: 200px;
    }

    .w-\[20px\] {
      width: 20px;
    }

    .w-\[250px\] {
      width: 250px;
    }

    .w-\[300px\] {
      width: 300px;
    }

    .w-\[30px\] {
      width: 30px;
    }

    .w-\[33\%\] {
      width: 33%;
    }

    .w-\[340px\] {
      width: 340px;
    }

    .w-\[380px\] {
      width: 380px;
    }

    .w-\[40px\] {
      width: 40px;
    }

    .w-\[42px\] {
      width: 42px;
    }

    .w-\[490px\] {
      width: 490px;
    }

    .w-\[520px\] {
      width: 520px;
    }

    .w-\[57px\] {
      width: 57px;
    }

    .w-\[60\%\] {
      width: 60%;
    }

    .w-\[65\%\] {
      width: 65%;
    }

    .w-\[80\%\] {
      width: 80%;
    }

    .w-\[80px\] {
      width: 80px;
    }

    .w-\[90\%\] {
      width: 90%;
    }

    .w-fit {
      width: -moz-fit-content;
      width: fit-content;
    }

    .w-full {
      width: 100%;
    }

    .w-max {
      width: -moz-max-content;
      width: max-content;
    }

    .\!max-w-full {
      max-width: 100% !important;
    }

    .max-w-none {
      max-width: none;
    }

    .flex-1 {
      flex: 1 1 0%;
    }

    .flex-\[1\] {
      flex: 1;
    }

    .\!-translate-x-1\/2 {
      --tw-translate-x: -50% !important;
      transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
    }

    .-translate-x-1\/2 {
      --tw-translate-x: -50%;
    }

    .-translate-x-1\/2,
    .-translate-y-1\/2 {
      transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    }

    .-translate-y-1\/2 {
      --tw-translate-y: -50%;
    }

    .\!scale-\[0\.8\] {
      --tw-scale-x: 0.8 !important;
      --tw-scale-y: 0.8 !important;
      transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
    }

    .scale-\[0\.85\] {
      --tw-scale-x: 0.85;
      --tw-scale-y: 0.85;
    }

    .scale-\[0\.85\],
    .scale-\[0\.8\] {
      transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    }

    .scale-\[0\.8\] {
      --tw-scale-x: 0.8;
      --tw-scale-y: 0.8;
    }

    .transform {
      transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    }

    .cursor-pointer {
      cursor: pointer;
    }

    .select-none {
      -webkit-user-select: none;
      -moz-user-select: none;
      user-select: none;
    }

    .grid-cols-1 {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .flex-row-reverse {
      flex-direction: row-reverse;
    }

    .flex-col {
      flex-direction: column;
    }

    .flex-nowrap {
      flex-wrap: nowrap;
    }

    .items-start {
      align-items: flex-start;
    }

    .items-center {
      align-items: center;
    }

    .items-stretch {
      align-items: stretch;
    }

    .justify-end {
      justify-content: flex-end;
    }

    .justify-center {
      justify-content: center;
    }

    .justify-between {
      justify-content: space-between;
    }

    .justify-around {
      justify-content: space-around;
    }

    .justify-items-center {
      justify-items: center;
    }

    .gap-4 {
      gap: 1rem;
    }

    .gap-x-10 {
      -moz-column-gap: 2.5rem;
      column-gap: 2.5rem;
    }

    .gap-y-6 {
      row-gap: 1.5rem;
    }

    .overflow-hidden {
      overflow: hidden;
    }

    .overflow-y-auto {
      overflow-y: auto;
    }

    .overflow-x-hidden {
      overflow-x: hidden;
    }

    .whitespace-pre-line {
      white-space: pre-line;
    }

    .\!rounded-3xl {
      border-radius: 1.5rem !important;
    }

    .rounded-3xl {
      border-radius: 1.5rem;
    }

    .rounded-full {
      border-radius: 9999px;
    }

    .rounded-lg {
      border-radius: 0.5rem;
    }

    .rounded-md {
      border-radius: 0.375rem;
    }

    .rounded-xl {
      border-radius: 0.75rem;
    }

    .rounded-br-xl {
      border-bottom-right-radius: 0.75rem;
    }

    .\!border-0 {
      border-width: 0 !important;
    }

    .border {
      border-width: 1px;
    }

    .border-\[10px\] {
      border-width: 10px;
    }

    .border-b {
      border-bottom-width: 1px;
    }

    .border-t {
      border-top-width: 1px;
    }

    .border-solid {
      border-style: solid;
    }

    .border-dashed {
      border-style: dashed;
    }

    .\!border-none {
      border-style: none !important;
    }

    .border-\[\#D8D0C8\]\/50 {
      border-color: hsla(30, 17%, 82%, 0.5);
    }

    .border-\[\#FFFAC0\] {
      --tw-border-opacity: 1;
      border-color: rgb(255 250 192 / var(--tw-border-opacity));
    }

    .border-\[\#ccc\]\/40 {
      border-color: hsla(0, 0%, 80%, 0.4);
    }

    .border-\[\#fff\] {
      --tw-border-opacity: 1;
      border-color: rgb(255 255 255 / var(--tw-border-opacity));
    }

    .border-\[\#fff\]\/50 {
      border-color: hsla(0, 0%, 100%, 0.5);
    }

    .border-\[transparent\] {
      border-color: transparent;
    }

    .border-light-primary {
      --tw-border-opacity: 1;
      border-color: rgb(255 234 191 / var(--tw-border-opacity));
    }

    .border-primary {
      --tw-border-opacity: 1;
      border-color: rgb(176 111 43 / var(--tw-border-opacity));
    }

    .border-l-\[transparent\] {
      border-left-color: transparent;
    }

    .border-r-\[transparent\] {
      border-right-color: transparent;
    }

    .border-t-\[transparent\] {
      border-top-color: transparent;
    }

    .\!bg-\[\#fff\] {
      --tw-bg-opacity: 1 !important;
      background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
    }

    .\!bg-primary\/100 {
      background-color: #b06f2b !important;
    }

    .\!bg-primary\/20 {
      background-color: rgba(176, 111, 43, 0.2) !important;
    }

    .bg-\[\#000\] {
      --tw-bg-opacity: 1;
      background-color: rgb(0 0 0 / var(--tw-bg-opacity));
    }

    .bg-\[\#7F4B28\] {
      --tw-bg-opacity: 1;
      background-color: rgb(127 75 40 / var(--tw-bg-opacity));
    }

    .bg-\[\#FEF7E0\]\/80 {
      background-color: hsla(46, 94%, 94%, 0.8);
    }

    .bg-\[\#FFFEFA\] {
      --tw-bg-opacity: 1;
      background-color: rgb(255 254 250 / var(--tw-bg-opacity));
    }

    .bg-\[\#fff\] {
      --tw-bg-opacity: 1;
      background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    }

    .bg-\[rgba\(0\2c 0\2c 0\2c 0\.5\)\],
    .bg-\[rgba\(0\2c 0\2c 0\2c \.5\)\] {
      background-color: rgba(0, 0, 0, 0.5);
    }

    .bg-\[rgba\(255\2c 255\2c 255\2c 0\.5\)\] {
      background-color: hsla(0, 0%, 100%, 0.5);
    }

    .bg-\[rgba\(255\2c 255\2c 255\2c 0\.7\)\] {
      background-color: hsla(0, 0%, 100%, 0.7);
    }

    .bg-light-primary {
      --tw-bg-opacity: 1;
      background-color: rgb(255 234 191 / var(--tw-bg-opacity));
    }

    .bg-primary {
      --tw-bg-opacity: 1;
      background-color: rgb(176 111 43 / var(--tw-bg-opacity));
    }

    .bg-primary\/50 {
      background-color: rgba(176, 111, 43, 0.5);
    }

    .bg-gradient-to-b {
      background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
    }

    .bg-gradient-to-r {
      background-image: linear-gradient(to right, var(--tw-gradient-stops));
    }

    .bg-gradient-to-t {
      background-image: linear-gradient(to top, var(--tw-gradient-stops));
    }

    .from-\[\#8A5022\] {
      --tw-gradient-from: #8a5022 var(--tw-gradient-from-position);
      --tw-gradient-to: rgba(138, 80, 34, 0) var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#8B5122\] {
      --tw-gradient-from: #8b5122 var(--tw-gradient-from-position);
      --tw-gradient-to: rgba(139, 81, 34, 0) var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#8D5222\] {
      --tw-gradient-from: #8d5222 var(--tw-gradient-from-position);
      --tw-gradient-to: rgba(141, 82, 34, 0) var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#9D4A01\] {
      --tw-gradient-from: #9d4a01 var(--tw-gradient-from-position);
      --tw-gradient-to: rgba(157, 74, 1, 0) var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#9E5118\] {
      --tw-gradient-from: #9e5118 var(--tw-gradient-from-position);
      --tw-gradient-to: rgba(158, 81, 24, 0) var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#A05217\] {
      --tw-gradient-from: #a05217 var(--tw-gradient-from-position);
      --tw-gradient-to: rgba(160, 82, 23, 0) var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#D57F1E\] {
      --tw-gradient-from: #d57f1e var(--tw-gradient-from-position);
      --tw-gradient-to: rgba(213, 127, 30, 0) var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#FFBF6E\] {
      --tw-gradient-from: #ffbf6e var(--tw-gradient-from-position);
      --tw-gradient-to: rgba(255, 191, 110, 0) var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#FFD88E\] {
      --tw-gradient-from: #ffd88e var(--tw-gradient-from-position);
      --tw-gradient-to: rgba(255, 216, 142, 0) var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#FFE39E\] {
      --tw-gradient-from: #ffe39e var(--tw-gradient-from-position);
      --tw-gradient-to: rgba(255, 227, 158, 0) var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#FFE6BA\] {
      --tw-gradient-from: #ffe6ba var(--tw-gradient-from-position);
      --tw-gradient-to: rgba(255, 230, 186, 0) var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .to-\[\#B57223\] {
      --tw-gradient-to: #b57223 var(--tw-gradient-to-position);
    }

    .to-\[\#B87120\] {
      --tw-gradient-to: #b87120 var(--tw-gradient-to-position);
    }

    .to-\[\#BB731F\] {
      --tw-gradient-to: #bb731f var(--tw-gradient-to-position);
    }

    .to-\[\#BE751F\] {
      --tw-gradient-to: #be751f var(--tw-gradient-to-position);
    }

    .to-\[\#C8471A\] {
      --tw-gradient-to: #c8471a var(--tw-gradient-to-position);
    }

    .to-\[\#D07408\] {
      --tw-gradient-to: #d07408 var(--tw-gradient-to-position);
    }

    .to-\[\#D27508\] {
      --tw-gradient-to: #d27508 var(--tw-gradient-to-position);
    }

    .to-\[\#DA8E25\] {
      --tw-gradient-to: #da8e25 var(--tw-gradient-to-position);
    }

    .to-\[\#FFBD67\] {
      --tw-gradient-to: #ffbd67 var(--tw-gradient-to-position);
    }

    .to-\[\#FFD88E\] {
      --tw-gradient-to: #ffd88e var(--tw-gradient-to-position);
    }

    .to-\[\#FFEAC1\] {
      --tw-gradient-to: #ffeac1 var(--tw-gradient-to-position);
    }

    .to-\[\#FFFBE1\] {
      --tw-gradient-to: #fffbe1 var(--tw-gradient-to-position);
    }

    .bg-cover {
      background-size: cover;
    }

    .bg-clip-text {
      -webkit-background-clip: text;
      background-clip: text;
    }

    .bg-no-repeat {
      background-repeat: no-repeat;
    }

    .object-cover {
      -o-object-fit: cover;
      object-fit: cover;
    }

    .\!px-\[10px\] {
      padding-left: 10px !important;
      padding-right: 10px !important;
    }

    .\!py-\[5px\] {
      padding-bottom: 5px !important;
      padding-top: 5px !important;
    }

    .px-10 {
      padding-left: 2.5rem;
      padding-right: 2.5rem;
    }

    .px-3 {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
    }

    .px-\[15px\] {
      padding-left: 15px;
      padding-right: 15px;
    }

    .px-\[18px\] {
      padding-left: 18px;
      padding-right: 18px;
    }

    .px-\[3px\] {
      padding-left: 3px;
      padding-right: 3px;
    }

    .px-\[5px\] {
      padding-left: 5px;
      padding-right: 5px;
    }

    .py-\[100px\] {
      padding-bottom: 100px;
      padding-top: 100px;
    }

    .py-\[10px\] {
      padding-bottom: 10px;
      padding-top: 10px;
    }

    .py-\[2px\] {
      padding-bottom: 2px;
      padding-top: 2px;
    }

    .py-\[3px\] {
      padding-bottom: 3px;
      padding-top: 3px;
    }

    .py-\[45px\] {
      padding-bottom: 45px;
      padding-top: 45px;
    }

    .py-\[5px\] {
      padding-bottom: 5px;
      padding-top: 5px;
    }

    .py-\[70px\] {
      padding-bottom: 70px;
      padding-top: 70px;
    }

    .\!pb-\[12\%\] {
      padding-bottom: 12% !important;
    }

    .\!pt-0 {
      padding-top: 0 !important;
    }

    .\!pt-\[40px\] {
      padding-top: 40px !important;
    }

    .pb-\[5\%\] {
      padding-bottom: 5%;
    }

    .pb-\[50px\] {
      padding-bottom: 50px;
    }

    .pb-\[60px\] {
      padding-bottom: 60px;
    }

    .pl-\[0px\] {
      padding-left: 0;
    }

    .pr-\[30px\] {
      padding-right: 30px;
    }

    .pr-\[50px\] {
      padding-right: 50px;
    }

    .pt-\[100px\] {
      padding-top: 100px;
    }

    .pt-\[80px\] {
      padding-top: 80px;
    }

    .pt-\[90px\] {
      padding-top: 90px;
    }

    .text-center {
      text-align: center;
    }

    .text-right {
      text-align: right;
    }

    .align-middle {
      vertical-align: middle;
    }

    .font-\[\'AlibabaPuHuiTiMedium\'\] {
      font-family: AlibabaPuHuiTiMedium;
    }

    .font-\[\'HarmonyOSSansSCBold\'\] {
      font-family: HarmonyOSSansSCBold;
    }

    .font-\[\'HarmonyOSSansSCLight\'\] {
      font-family: HarmonyOSSansSCLight;
    }

    .font-\[\'HarmonyOSSansSCMedium\'\] {
      font-family: HarmonyOSSansSCMedium;
    }

    .font-\[\'HarmonyOSSansSCRegular\'\] {
      font-family: HarmonyOSSansSCRegular;
    }

    .font-\[\'SourceHanSansCNBold\'\] {
      font-family: SourceHanSansCNBold;
    }

    .font-\[\'SourceHanSansCNRegular\'\] {
      font-family: SourceHanSansCNRegular;
    }

    .font-\[\'SourceHanSerifCNBold\'\] {
      font-family: 'SourceHanSerifCNBold';
    }

    .font-\[\'SourceHanSerifCNHeavy\'\] {
      font-family: 'SourceHanSerifCNHeavy';
    }

    .font-\[\'SourceHanSerifSCSemiBold\'\] {
      font-family: 'SourceHanSerifSCSemiBold';
    }

    .font-\[\'impact\'\] {
      font-family: impact;
    }

    .font-\[\'\9ed1\4f53\'\] {
      font-family: 黑体;
    }

    .\!text-\[28px\] {
      font-size: 28px !important;
    }

    .\!text-\[50px\] {
      font-size: 50px !important;
    }

    .text-\[12px\] {
      font-size: 12px;
    }

    .text-\[14px\] {
      font-size: 14px;
    }

    .text-\[16px\] {
      font-size: 16px;
    }

    .text-\[18px\] {
      font-size: 18px;
    }

    .text-\[25px\] {
      font-size: 25px;
    }

    .text-\[28px\] {
      font-size: 28px;
    }

    .text-\[35px\] {
      font-size: 35px;
    }

    .text-\[40px\] {
      font-size: 40px;
    }

    .font-\[800\] {
      font-weight: 800;
    }

    .font-bold {
      font-weight: 700;
    }

    .leading-\[1\] {
      line-height: 1;
    }

    .leading-\[2\] {
      line-height: 2;
    }

    .\!text-\[\#70441F\]\/100 {
      color: #70441f !important;
    }

    .\!text-\[\#D06600\] {
      --tw-text-opacity: 1 !important;
      color: rgb(208 102 0 / var(--tw-text-opacity)) !important;
    }

    .text-\[\#664627\] {
      --tw-text-opacity: 1;
      color: rgb(102 70 39 / var(--tw-text-opacity));
    }

    .text-\[\#6A2E00\] {
      --tw-text-opacity: 1;
      color: rgb(106 46 0 / var(--tw-text-opacity));
    }

    .text-\[\#70441F\]\/40 {
      color: rgba(112, 68, 31, 0.4);
    }

    .text-\[\#854315\] {
      --tw-text-opacity: 1;
      color: rgb(133 67 21 / var(--tw-text-opacity));
    }

    .text-\[\#944600\] {
      --tw-text-opacity: 1;
      color: rgb(148 70 0 / var(--tw-text-opacity));
    }

    .text-\[\#97613F\] {
      --tw-text-opacity: 1;
      color: rgb(151 97 63 / var(--tw-text-opacity));
    }

    .text-\[\#9F6C4C\] {
      --tw-text-opacity: 1;
      color: rgb(159 108 76 / var(--tw-text-opacity));
    }

    .text-\[\#BB9C82\] {
      --tw-text-opacity: 1;
      color: rgb(187 156 130 / var(--tw-text-opacity));
    }

    .text-\[\#FAF3E6\] {
      --tw-text-opacity: 1;
      color: rgb(250 243 230 / var(--tw-text-opacity));
    }

    .text-\[\#FBF5CA\] {
      --tw-text-opacity: 1;
      color: rgb(251 245 202 / var(--tw-text-opacity));
    }

    .text-\[\#FFD88E\] {
      --tw-text-opacity: 1;
      color: rgb(255 216 142 / var(--tw-text-opacity));
    }

    .text-\[\#FFF9DE\] {
      --tw-text-opacity: 1;
      color: rgb(255 249 222 / var(--tw-text-opacity));
    }

    .text-\[\#fff\] {
      --tw-text-opacity: 1;
      color: rgb(255 255 255 / var(--tw-text-opacity));
    }

    .text-\[\#fff\]\/50 {
      color: hsla(0, 0%, 100%, 0.5);
    }

    .text-\[\#fff\]\/70 {
      color: hsla(0, 0%, 100%, 0.7);
    }

    .text-\[transparent\] {
      color: transparent;
    }

    .text-light-primary {
      --tw-text-opacity: 1;
      color: rgb(255 234 191 / var(--tw-text-opacity));
    }

    .text-primary {
      --tw-text-opacity: 1;
      color: rgb(176 111 43 / var(--tw-text-opacity));
    }

    .opacity-50 {
      opacity: 0.5;
    }

    .shadow {
      --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px -1px rgba(0, 0, 0, 0.1);
      --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color),
        0 1px 2px -1px var(--tw-shadow-color);
    }

    .shadow,
    .shadow-lg {
      box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
        var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }

    .shadow-lg {
      --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
      --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
        0 4px 6px -4px var(--tw-shadow-color);
    }

    .shadow-xl {
      --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
      --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color),
        0 8px 10px -6px var(--tw-shadow-color);
      box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
        var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }

    .shadow-\[rgba\(0\2c 0\2c 0\2c 0\.05\)\] {
      --tw-shadow-color: rgba(0, 0, 0, 0.05);
      --tw-shadow: var(--tw-shadow-colored);
    }

    .blur {
      --tw-blur: blur(8px);
      filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
    }

    .transition {
      transition-duration: 0.15s;
      transition-property: color, background-color, border-color,
        text-decoration-color, fill, stroke, opacity, box-shadow, transform,
        filter, -webkit-backdrop-filter;
      transition-property: color, background-color, border-color,
        text-decoration-color, fill, stroke, opacity, box-shadow, transform,
        filter, backdrop-filter;
      transition-property: color, background-color, border-color,
        text-decoration-color, fill, stroke, opacity, box-shadow, transform,
        filter, backdrop-filter, -webkit-backdrop-filter;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }

    .transition-all {
      transition-duration: 0.15s;
      transition-property: all;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }

    .delay-500 {
      transition-delay: 0.5s;
    }

    .container {
      margin: 0 auto;
      max-width: 1600px;
    }

    body,
    html {
      font-family: AlibabaPuHuiTiMedium;
    }

    .last\:\!mb-0:last-child {
      margin-bottom: 0 !important;
    }

    .hover\:\!scale-\[1\.2\]:hover {
      --tw-scale-x: 1.2 !important;
      --tw-scale-y: 1.2 !important;
      transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
    }

    .hover\:scale-\[1\.2\]:hover {
      --tw-scale-x: 1.2;
      --tw-scale-y: 1.2;
    }

    .hover\:scale-\[1\.2\]:hover,
    .hover\:scale-\[1\]:hover {
      transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    }

    .hover\:scale-\[1\]:hover {
      --tw-scale-x: 1;
      --tw-scale-y: 1;
    }

    .hover\:\!bg-primary:hover {
      --tw-bg-opacity: 1 !important;
      background-color: rgb(176 111 43 / var(--tw-bg-opacity)) !important;
    }

    .hover\:bg-\[\#fff\]:hover {
      --tw-bg-opacity: 1;
      background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    }

    .hover\:\!text-\[28px\]:hover {
      font-size: 28px !important;
    }

    .hover\:font-bold:hover {
      font-weight: 700;
    }

    .hover\:\!text-\[\#D06600\]:hover {
      --tw-text-opacity: 1 !important;
      color: rgb(208 102 0 / var(--tw-text-opacity)) !important;
    }

    .hover\:text-\[\#000\]\/70:hover {
      color: rgba(0, 0, 0, 0.7);
    }

    .hover\:opacity-100:hover {
      opacity: 1;
    }

    .hover\:opacity-80:hover {
      opacity: 0.8;
    }

    .active\:\!bg-primary:active {
      --tw-bg-opacity: 1 !important;
      background-color: rgb(176 111 43 / var(--tw-bg-opacity)) !important;
    }

    @media (min-width: 200px) {
      .xs\:\!relative {
        position: relative !important;
      }

      .xs\:bottom-\[10px\] {
        bottom: 10px;
      }

      .xs\:bottom-\[5px\] {
        bottom: 5px;
      }

      .xs\:top-1\/2 {
        top: 50%;
      }

      .xs\:top-\[5\%\] {
        top: 5%;
      }

      .xs\:top-\[50px\] {
        top: 50px;
      }

      .xs\:top-\[92px\] {
        top: 92px;
      }

      .xs\:mx-\[10px\] {
        margin-left: 10px;
        margin-right: 10px;
      }

      .xs\:my-\[10px\] {
        margin-bottom: 10px;
        margin-top: 10px;
      }

      .xs\:\!mb-\[20px\] {
        margin-bottom: 20px !important;
      }

      .xs\:\!mt-\[10px\] {
        margin-top: 10px !important;
      }

      .xs\:\!mt-\[20px\] {
        margin-top: 20px !important;
      }

      .xs\:mb-\[50px\] {
        margin-bottom: 50px;
      }

      .xs\:ml-\[0px\] {
        margin-left: 0;
      }

      .xs\:ml-\[10px\] {
        margin-left: 10px;
      }

      .xs\:mt-\[0px\] {
        margin-top: 0;
      }

      .xs\:mt-\[100px\] {
        margin-top: 100px;
      }

      .xs\:mt-\[10px\] {
        margin-top: 10px;
      }

      .xs\:mt-\[20px\] {
        margin-top: 20px;
      }

      .xs\:mt-\[30px\] {
        margin-top: 30px;
      }

      .xs\:mt-\[50px\] {
        margin-top: 50px;
      }

      .xs\:mt-\[5px\] {
        margin-top: 5px;
      }

      .xs\:block {
        display: block;
      }

      .xs\:\!flex {
        display: flex !important;
      }

      .xs\:hidden {
        display: none;
      }

      .xs\:\!h-\[100vh\] {
        height: 100vh !important;
      }

      .xs\:h-\[104px\] {
        height: 104px;
      }

      .xs\:h-\[200px\] {
        height: 200px;
      }

      .xs\:h-\[250px\] {
        height: 250px;
      }

      .xs\:h-\[25px\] {
        height: 25px;
      }

      .xs\:h-\[300px\] {
        height: 300px;
      }

      .xs\:h-\[30px\] {
        height: 30px;
      }

      .xs\:h-\[40px\] {
        height: 40px;
      }

      .xs\:h-\[42px\] {
        height: 42px;
      }

      .xs\:h-\[50px\] {
        height: 50px;
      }

      .xs\:h-\[5px\] {
        height: 5px;
      }

      .xs\:h-full {
        height: 100%;
      }

      .xs\:min-h-\[110px\] {
        min-height: 110px;
      }

      .xs\:\!w-\[100\%\] {
        width: 100% !important;
      }

      .xs\:w-\[100\%\] {
        width: 100%;
      }

      .xs\:w-\[100px\] {
        width: 100px;
      }

      .xs\:w-\[150px\] {
        width: 150px;
      }

      .xs\:w-\[24px\] {
        width: 24px;
      }

      .xs\:w-\[25px\] {
        width: 25px;
      }

      .xs\:w-\[30px\] {
        width: 30px;
      }

      .xs\:w-\[40px\] {
        width: 40px;
      }

      .xs\:w-\[4px\] {
        width: 4px;
      }

      .xs\:w-\[50px\] {
        width: 50px;
      }

      .xs\:w-\[70px\] {
        width: 70px;
      }

      .xs\:w-\[80px\] {
        width: 80px;
      }

      .xs\:w-\[90\%\] {
        width: 90%;
      }

      .xs\:w-full {
        width: 100%;
      }

      .xs\:flex-\[1\] {
        flex: 1;
      }

      .xs\:scale-\[1\] {
        --tw-scale-x: 1;
        --tw-scale-y: 1;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
      }

      .xs\:grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
      }

      .xs\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .xs\:flex-row-reverse {
        flex-direction: row-reverse;
      }

      .xs\:flex-col {
        flex-direction: column;
      }

      .xs\:items-center {
        align-items: center;
      }

      .xs\:justify-between {
        justify-content: space-between;
      }

      .xs\:gap-4 {
        gap: 1rem;
      }

      .xs\:rounded-md {
        border-radius: 0.375rem;
      }

      .xs\:rounded-xl {
        border-radius: 0.75rem;
      }

      .xs\:px-\[10px\] {
        padding-left: 10px;
        padding-right: 10px;
      }

      .xs\:px-\[15px\] {
        padding-left: 15px;
        padding-right: 15px;
      }

      .xs\:px-\[5px\] {
        padding-left: 5px;
        padding-right: 5px;
      }

      .xs\:py-\[0px\] {
        padding-bottom: 0;
        padding-top: 0;
      }

      .xs\:py-\[10px\] {
        padding-bottom: 10px;
        padding-top: 10px;
      }

      .xs\:py-\[20px\] {
        padding-bottom: 20px;
        padding-top: 20px;
      }

      .xs\:py-\[30px\] {
        padding-bottom: 30px;
        padding-top: 30px;
      }

      .xs\:py-\[5px\] {
        padding-bottom: 5px;
        padding-top: 5px;
      }

      .xs\:pb-\[20px\] {
        padding-bottom: 20px;
      }

      .xs\:pr-\[10px\] {
        padding-right: 10px;
      }

      .xs\:pt-\[30px\] {
        padding-top: 30px;
      }

      .xs\:text-\[10px\] {
        font-size: 10px;
      }

      .xs\:text-\[12px\] {
        font-size: 12px;
      }

      .xs\:text-\[14px\] {
        font-size: 14px;
      }

      .xs\:text-\[16px\] {
        font-size: 16px;
      }

      .xs\:text-\[18px\] {
        font-size: 18px;
      }

      .xs\:text-\[20px\] {
        font-size: 20px;
      }

      .xs\:text-\[30px\] {
        font-size: 30px;
      }

      .xs\:leading-\[20px\] {
        line-height: 20px;
      }

      .xs\:leading-\[24px\] {
        line-height: 24px;
      }
    }

    @media (min-width: 640px) {
      .sm\:bottom-\[10px\] {
        bottom: 10px;
      }

      .sm\:top-1\/2 {
        top: 50%;
      }

      .sm\:top-\[102px\] {
        top: 102px;
      }

      .sm\:top-\[60px\] {
        top: 60px;
      }

      .sm\:mt-\[10px\] {
        margin-top: 10px;
      }

      .sm\:mt-\[40px\] {
        margin-top: 40px;
      }

      .sm\:block {
        display: block;
      }

      .sm\:\!flex {
        display: flex !important;
      }

      .sm\:hidden {
        display: none;
      }

      .sm\:h-\[250px\] {
        height: 250px;
      }

      .sm\:h-\[300px\] {
        height: 300px;
      }

      .sm\:h-\[30px\] {
        height: 30px;
      }

      .sm\:h-\[40px\] {
        height: 40px;
      }

      .sm\:h-\[42px\] {
        height: 42px;
      }

      .sm\:h-\[60px\] {
        height: 60px;
      }

      .sm\:h-auto {
        height: auto;
      }

      .sm\:w-\[100px\] {
        width: 100px;
      }

      .sm\:w-\[40px\] {
        width: 40px;
      }

      .sm\:w-\[50px\] {
        width: 50px;
      }

      .sm\:scale-\[0\.85\] {
        --tw-scale-x: 0.85;
        --tw-scale-y: 0.85;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
      }

      .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .sm\:flex-col {
        flex-direction: column;
      }

      .sm\:justify-between {
        justify-content: space-between;
      }

      .sm\:px-\[15px\] {
        padding-left: 15px;
        padding-right: 15px;
      }

      .sm\:text-\[12px\] {
        font-size: 12px;
      }

      .sm\:text-\[14px\] {
        font-size: 14px;
      }

      .sm\:text-\[16px\] {
        font-size: 16px;
      }

      .sm\:text-\[18px\] {
        font-size: 18px;
      }

      .sm\:text-\[20px\] {
        font-size: 20px;
      }

      .sm\:text-\[25px\] {
        font-size: 25px;
      }

      .sm\:text-\[30px\] {
        font-size: 30px;
      }
    }

    @media (min-width: 768px) {
      .md\:bottom-\[20px\] {
        bottom: 20px;
      }

      .md\:top-1\/2 {
        top: 50%;
      }

      .md\:top-\[112px\] {
        top: 112px;
      }

      .md\:top-\[40\%\] {
        top: 40%;
      }

      .md\:top-\[70px\] {
        top: 70px;
      }

      .md\:mx-\[20px\] {
        margin-left: 20px;
        margin-right: 20px;
      }

      .md\:my-\[50px\] {
        margin-bottom: 50px;
        margin-top: 50px;
      }

      .md\:\!mt-\[20px\] {
        margin-top: 20px !important;
      }

      .md\:\!mt-\[40px\] {
        margin-top: 40px !important;
      }

      .md\:ml-\[10px\] {
        margin-left: 10px;
      }

      .md\:mt-\[10px\] {
        margin-top: 10px;
      }

      .md\:mt-\[20\] {
        margin-top: 20;
      }

      .md\:mt-\[20px\] {
        margin-top: 20px;
      }

      .md\:mt-\[40\] {
        margin-top: 40;
      }

      .md\:mt-\[50px\] {
        margin-top: 50px;
      }

      .md\:mt-\[60px\] {
        margin-top: 60px;
      }

      .md\:block {
        display: block;
      }

      .md\:\!flex {
        display: flex !important;
      }

      .md\:hidden {
        display: none;
      }

      .md\:h-\[300px\] {
        height: 300px;
      }

      .md\:h-\[400px\] {
        height: 400px;
      }

      .md\:h-\[40px\] {
        height: 40px;
      }

      .md\:h-\[42px\] {
        height: 42px;
      }

      .md\:h-\[70px\] {
        height: 70px;
      }

      .md\:h-\[80px\] {
        height: 80px;
      }

      .md\:h-auto {
        height: auto;
      }

      .md\:w-\[100px\] {
        width: 100px;
      }

      .md\:w-\[200px\] {
        width: 200px;
      }

      .md\:w-\[30px\] {
        width: 30px;
      }

      .md\:w-\[50px\] {
        width: 50px;
      }

      .md\:w-\[6px\] {
        width: 6px;
      }

      .md\:-translate-y-1\/2 {
        --tw-translate-y: -50%;
      }

      .md\:-translate-y-1\/2,
      .md\:scale-\[0\.85\] {
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
      }

      .md\:scale-\[0\.85\] {
        --tw-scale-x: 0.85;
        --tw-scale-y: 0.85;
      }

      .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .md\:flex-col {
        flex-direction: column;
      }

      .md\:justify-between {
        justify-content: space-between;
      }

      .md\:px-\[10px\] {
        padding-left: 10px;
        padding-right: 10px;
      }

      .md\:px-\[30px\] {
        padding-left: 30px;
        padding-right: 30px;
      }

      .md\:py-\[10px\] {
        padding-bottom: 10px;
        padding-top: 10px;
      }

      .md\:py-\[2px\] {
        padding-bottom: 2px;
        padding-top: 2px;
      }

      .md\:py-\[50px\] {
        padding-bottom: 50px;
        padding-top: 50px;
      }

      .md\:pt-\[40px\] {
        padding-top: 40px;
      }

      .md\:text-\[12px\] {
        font-size: 12px;
      }

      .md\:text-\[14px\] {
        font-size: 14px;
      }

      .md\:text-\[16px\] {
        font-size: 16px;
      }

      .md\:text-\[18px\] {
        font-size: 18px;
      }

      .md\:text-\[20px\] {
        font-size: 20px;
      }

      .md\:text-\[22px\] {
        font-size: 22px;
      }

      .md\:text-\[25px\] {
        font-size: 25px;
      }

      .md\:text-\[30px\] {
        font-size: 30px;
      }

      .md\:text-\[36px\] {
        font-size: 36px;
      }

      .md\:leading-\[30px\] {
        line-height: 30px;
      }
    }

    @media (min-width: 1024px) {
      .lg\:\!absolute {
        position: absolute !important;
      }

      .lg\:bottom-\[20px\] {
        bottom: 20px;
      }

      .lg\:bottom-\[30px\] {
        bottom: 30px;
      }

      .lg\:top-1\/2 {
        top: 50%;
      }

      .lg\:top-\[132px\] {
        top: 132px;
      }

      .lg\:top-\[80px\] {
        top: 80px;
      }

      .lg\:\!mx-\[100px\] {
        margin-left: 100px !important;
        margin-right: 100px !important;
      }

      .lg\:\!mt-\[30px\] {
        margin-top: 30px !important;
      }

      .lg\:mb-\[10px\] {
        margin-bottom: 10px;
      }

      .lg\:mb-\[15px\] {
        margin-bottom: 15px;
      }

      .lg\:mb-\[20px\] {
        margin-bottom: 20px;
      }

      .lg\:ml-\[30px\] {
        margin-left: 30px;
      }

      .lg\:ml-\[50px\] {
        margin-left: 50px;
      }

      .lg\:mr-\[50px\] {
        margin-right: 50px;
      }

      .lg\:mt-\[0\] {
        margin-top: 0;
      }

      .lg\:mt-\[100px\] {
        margin-top: 100px;
      }

      .lg\:mt-\[20px\] {
        margin-top: 20px;
      }

      .lg\:mt-\[30px\] {
        margin-top: 30px;
      }

      .lg\:mt-\[40px\] {
        margin-top: 40px;
      }

      .lg\:mt-\[60px\] {
        margin-top: 60px;
      }

      .lg\:mt-\[70px\] {
        margin-top: 70px;
      }

      .lg\:mt-\[80px\] {
        margin-top: 80px;
      }

      .lg\:mt-\[auto\] {
        margin-top: auto;
      }

      .lg\:block {
        display: block;
      }

      .lg\:flex {
        display: flex;
      }

      .lg\:\!hidden {
        display: none !important;
      }

      .lg\:hidden {
        display: none;
      }

      .lg\:h-\[100px\] {
        height: 100px;
      }

      .lg\:h-\[370px\] {
        height: 370px;
      }

      .lg\:h-\[400px\] {
        height: 400px;
      }

      .lg\:h-\[40px\] {
        height: 40px;
      }

      .lg\:h-\[490px\] {
        height: 490px;
      }

      .lg\:h-\[50px\] {
        height: 50px;
      }

      .lg\:h-\[510px\] {
        height: 510px;
      }

      .lg\:h-\[52px\] {
        height: 52px;
      }

      .lg\:h-\[60px\] {
        height: 60px;
      }

      .lg\:h-\[6px\] {
        height: 6px;
      }

      .lg\:h-\[80px\] {
        height: 80px;
      }

      .lg\:h-auto {
        height: auto;
      }

      .lg\:\!max-h-\[490px\] {
        max-height: 490px !important;
      }

      .lg\:\!min-h-\[490px\] {
        min-height: 490px !important;
      }

      .lg\:w-\[100px\] {
        width: 100px;
      }

      .lg\:w-\[185px\] {
        width: 185px;
      }

      .lg\:w-\[300px\] {
        width: 300px;
      }

      .lg\:w-\[30px\] {
        width: 30px;
      }

      .lg\:w-\[34px\] {
        width: 34px;
      }

      .lg\:w-\[400px\] {
        width: 400px;
      }

      .lg\:w-\[40px\] {
        width: 40px;
      }

      .lg\:w-\[500px\] {
        width: 500px;
      }

      .lg\:w-\[520px\] {
        width: 520px;
      }

      .lg\:w-\[60px\] {
        width: 60px;
      }

      .lg\:w-\[80\%\] {
        width: 80%;
      }

      .lg\:w-\[80px\] {
        width: 80px;
      }

      .lg\:w-\[8px\] {
        width: 8px;
      }

      .lg\:w-\[auto\],
      .lg\:w-auto {
        width: auto;
      }

      .lg\:flex-\[2\] {
        flex: 2;
      }

      .lg\:flex-\[3\] {
        flex: 3;
      }

      .lg\:scale-\[0\.85\] {
        --tw-scale-x: 0.85;
        --tw-scale-y: 0.85;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
      }

      .lg\:\!grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      }

      .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .lg\:flex-row {
        flex-direction: row;
      }

      .lg\:rounded-xl {
        border-radius: 0.75rem;
      }

      .lg\:px-\[25px\] {
        padding-left: 25px;
        padding-right: 25px;
      }

      .lg\:px-\[30px\] {
        padding-left: 30px;
        padding-right: 30px;
      }

      .lg\:px-\[60px\] {
        padding-left: 60px;
        padding-right: 60px;
      }

      .lg\:py-\[20px\] {
        padding-bottom: 20px;
        padding-top: 20px;
      }

      .lg\:py-\[30px\] {
        padding-bottom: 30px;
        padding-top: 30px;
      }

      .lg\:py-\[50px\] {
        padding-bottom: 50px;
        padding-top: 50px;
      }

      .lg\:py-\[5px\] {
        padding-bottom: 5px;
        padding-top: 5px;
      }

      .lg\:py-\[80px\] {
        padding-bottom: 80px;
        padding-top: 80px;
      }

      .lg\:pb-\[100px\] {
        padding-bottom: 100px;
      }

      .lg\:pl-\[170px\] {
        padding-left: 170px;
      }

      .lg\:pl-\[200px\] {
        padding-left: 200px;
      }

      .lg\:pr-\[50px\] {
        padding-right: 50px;
      }

      .lg\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
      }

      .lg\:text-\[13px\] {
        font-size: 13px;
      }

      .lg\:text-\[14px\] {
        font-size: 14px;
      }

      .lg\:text-\[16px\] {
        font-size: 16px;
      }

      .lg\:text-\[18px\] {
        font-size: 18px;
      }

      .lg\:text-\[20px\] {
        font-size: 20px;
      }

      .lg\:text-\[25px\] {
        font-size: 25px;
      }

      .lg\:text-\[26px\] {
        font-size: 26px;
      }

      .lg\:text-\[30px\] {
        font-size: 30px;
      }

      .lg\:text-\[35px\] {
        font-size: 35px;
      }

      .lg\:text-\[36px\] {
        font-size: 36px;
      }

      .lg\:text-\[40px\] {
        font-size: 40px;
      }

      .lg\:text-\[50px\] {
        font-size: 50px;
      }

      .lg\:leading-\[34px\] {
        line-height: 34px;
      }

      .lg\:hover\:scale-\[1\.2\]:hover {
        --tw-scale-x: 1.2;
        --tw-scale-y: 1.2;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
      }
    }

    @media (min-width: 1280px) {
      .xl\:bottom-\[30px\] {
        bottom: 30px;
      }

      .xl\:top-\[100px\] {
        top: 100px;
      }

      .xl\:top-\[152px\] {
        top: 152px;
      }

      .xl\:\!mb-\[40px\] {
        margin-bottom: 40px !important;
      }

      .xl\:\!mt-\[40px\] {
        margin-top: 40px !important;
      }

      .xl\:ml-\[30px\] {
        margin-left: 30px;
      }

      .xl\:ml-\[70px\] {
        margin-left: 70px;
      }

      .xl\:mt-\[10px\] {
        margin-top: 10px;
      }

      .xl\:mt-\[30px\] {
        margin-top: 30px;
      }

      .xl\:mt-\[40px\] {
        margin-top: 40px;
      }

      .xl\:flex {
        display: flex;
      }

      .xl\:hidden {
        display: none;
      }

      .xl\:h-\[100px\] {
        height: 100px;
      }

      .xl\:h-\[164px\] {
        height: 164px;
      }

      .xl\:h-\[174px\] {
        height: 174px;
      }

      .xl\:h-\[470px\] {
        height: 470px;
      }

      .xl\:h-\[600px\] {
        height: 600px;
      }

      .xl\:h-\[60px\] {
        height: 60px;
      }

      .xl\:max-h-\[1200px\] {
        max-height: 1200px;
      }

      .xl\:min-h-\[310px\] {
        min-height: 310px;
      }

      .xl\:w-\[185px\] {
        width: 185px;
      }

      .xl\:w-\[256px\] {
        width: 256px;
      }

      .xl\:w-\[70px\] {
        width: 70px;
      }

      .xl\:w-\[auto\] {
        width: auto;
      }

      .xl\:max-w-\[1100px\] {
        max-width: 1100px;
      }

      .xl\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .xl\:flex-row {
        flex-direction: row;
      }

      .xl\:items-stretch {
        align-items: stretch;
      }

      .xl\:gap-10 {
        gap: 2.5rem;
      }

      .xl\:rounded-3xl {
        border-radius: 1.5rem;
      }

      .xl\:border-r {
        border-right-width: 1px;
      }

      .xl\:px-\[0px\] {
        padding-left: 0;
        padding-right: 0;
      }

      .xl\:px-\[20px\] {
        padding-left: 20px;
        padding-right: 20px;
      }

      .xl\:px-\[70px\] {
        padding-left: 70px;
        padding-right: 70px;
      }

      .xl\:py-\[100px\] {
        padding-bottom: 100px;
        padding-top: 100px;
      }

      .xl\:py-\[20px\] {
        padding-bottom: 20px;
        padding-top: 20px;
      }

      .xl\:py-\[80px\] {
        padding-bottom: 80px;
        padding-top: 80px;
      }

      .xl\:pr-\[20px\] {
        padding-right: 20px;
      }

      .xl\:pr-\[60px\] {
        padding-right: 60px;
      }

      .xl\:pt-\[80px\] {
        padding-top: 80px;
      }

      .xl\:text-\[16px\] {
        font-size: 16px;
      }

      .xl\:text-\[18px\] {
        font-size: 18px;
      }

      .xl\:text-\[20px\] {
        font-size: 20px;
      }

      .xl\:text-\[22px\] {
        font-size: 22px;
      }

      .xl\:text-\[25px\] {
        font-size: 25px;
      }

      .xl\:text-\[28px\] {
        font-size: 28px;
      }

      .xl\:text-\[35px\] {
        font-size: 35px;
      }

      .xl\:text-\[36px\] {
        font-size: 36px;
      }

      .xl\:text-\[40px\] {
        font-size: 40px;
      }

      .xl\:text-\[50px\] {
        font-size: 50px;
      }

      .xl\:leading-\[34px\] {
        line-height: 34px;
      }

      .xl\:leading-\[40px\] {
        line-height: 40px;
      }
    }

    @media (min-width: 1536px) {
      .\32xl\:top-\[125px\] {
        top: 125px;
      }

      .\32xl\:top-\[177px\] {
        top: 177px;
      }

      .\32xl\:hidden {
        display: none;
      }

      .\32xl\:h-\[120px\] {
        height: 120px;
      }

      .\32xl\:h-\[125px\] {
        height: 125px;
      }

      .\32xl\:w-\[80px\] {
        width: 80px;
      }

      .\32xl\:border-r {
        border-right-width: 1px;
      }
    }

    @media (min-width: 1782px) {
      .\33xl\:bottom-\[40px\] {
        bottom: 40px;
      }

      .\33xl\:ml-\[100px\] {
        margin-left: 100px;
      }

      .\33xl\:hidden {
        display: none;
      }

      .\33xl\:h-\[100px\] {
        height: 100px;
      }

      .\33xl\:h-\[140px\] {
        height: 140px;
      }

      .\33xl\:border-r {
        border-right-width: 1px;
      }

      .\33xl\:text-\[18px\] {
        font-size: 18px;
      }

      .\33xl\:text-\[22px\] {
        font-size: 22px;
      }

      .\33xl\:text-\[46px\] {
        font-size: 46px;
      }

      .\33xl\:text-\[70px\] {
        font-size: 70px;
      }
    }

    @font-face {
      font-family: SourceHanSansCNBold;
      font-weight: 400;
      src: url(https://jnfile.jiuniudianshang.com:4430/yuanming/fonts/Alibaba-PuHuiTi-Bold.ttf) format('truetype');
    }

    @font-face {
      font-family: SourceHanSansCNRegular;
      font-weight: 400;
      src: url(https://jnfile.jiuniudianshang.com:4430/yuanming/fonts/SourceHanSansCN-Regular.ttf) format('truetype');
    }

    @font-face {
      font-family: impact;
      font-weight: 400;
      src: url(/_nuxt/impact.C5IAp9Ei.ttf) format('truetype');
    }

    @font-face {
      font-family: HarmonyOSSansSCBold;
      font-weight: 400;
      src: url(https://jnfile.jiuniudianshang.com:4430/yuanming/fonts/HarmonyOS_Sans_SC_Bold.ttf) format('truetype');
    }

    @font-face {
      font-family: HarmonyOSSansSCMedium;
      font-weight: 400;
      src: url(https://jnfile.jiuniudianshang.com:4430/yuanming/fonts/HarmonyOS_Sans_SC_Medium.ttf) format('truetype');
    }

    @font-face {
      font-family: HarmonyOSSansSCRegular;
      font-weight: 400;
      src: url(https://jnfile.jiuniudianshang.com:4430/yuanming/fonts/HarmonyOS_Sans_SC_Regular.ttf) format('truetype');
    }

    @font-face {
      font-family: HarmonyOSSansSCLight;
      font-weight: 400;
      src: url(https://jnfile.jiuniudianshang.com:4430/yuanming/fonts/HarmonyOS_Sans_SC_Light.ttf) format('truetype');
    }

    @font-face {
      font-family: AlibabaPuHuiTiMedium;
      font-weight: 400;
      src: url(https://jnfile.jiuniudianshang.com:4430/yuanming/fonts/Alibaba-PuHuiTi-Medium.ttf) format('truetype');
    }

    @font-face {
      font-family: 'SourceHanSerifSCSemiBold';
      font-weight: 400;
      src: url(https://jnfile.jiuniudianshang.com:4430/yuanming/fonts/SourceHanSerifSC-SemiBold.ttf) format('truetype');
    }

    @font-face {
      font-family: 'SourceHanSerifCNHeavy';
      font-weight: 400;
      src: url(https://jnfile.jiuniudianshang.com:4430/yuanming/fonts/SourceHanSerifCN-Heavy.ttf) format('truetype');
    }

    @font-face {
      font-family: 'SourceHanSerifCNMedium';
      font-weight: 400;
      src: url(https://jnfile.jiuniudianshang.com:4430/yuanming/fonts/SourceHanSerifCN-Medium-6.ttf) format('truetype');
    }

    @font-face {
      font-family: 'SourceHanSerifCNBold';
      font-weight: 400;
      src: url(https://jnfile.jiuniudianshang.com:4430/yuanming/fonts/SourceHanSerifCN-Bold-2.ttf) format('truetype');
    }

    [data-aos][data-aos][data-aos-duration='50'],
    body[data-aos-duration='50'] [data-aos] {
      transition-duration: 50ms;
    }

    [data-aos][data-aos][data-aos-delay='50'],
    body[data-aos-delay='50'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='50'].aos-animate,
    body[data-aos-delay='50'] [data-aos].aos-animate {
      transition-delay: 50ms;
    }

    [data-aos][data-aos][data-aos-duration='100'],
    body[data-aos-duration='100'] [data-aos] {
      transition-duration: 0.1s;
    }

    [data-aos][data-aos][data-aos-delay='100'],
    body[data-aos-delay='100'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='100'].aos-animate,
    body[data-aos-delay='100'] [data-aos].aos-animate {
      transition-delay: 0.1s;
    }

    [data-aos][data-aos][data-aos-duration='150'],
    body[data-aos-duration='150'] [data-aos] {
      transition-duration: 0.15s;
    }

    [data-aos][data-aos][data-aos-delay='150'],
    body[data-aos-delay='150'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='150'].aos-animate,
    body[data-aos-delay='150'] [data-aos].aos-animate {
      transition-delay: 0.15s;
    }

    [data-aos][data-aos][data-aos-duration='200'],
    body[data-aos-duration='200'] [data-aos] {
      transition-duration: 0.2s;
    }

    [data-aos][data-aos][data-aos-delay='200'],
    body[data-aos-delay='200'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='200'].aos-animate,
    body[data-aos-delay='200'] [data-aos].aos-animate {
      transition-delay: 0.2s;
    }

    [data-aos][data-aos][data-aos-duration='250'],
    body[data-aos-duration='250'] [data-aos] {
      transition-duration: 0.25s;
    }

    [data-aos][data-aos][data-aos-delay='250'],
    body[data-aos-delay='250'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='250'].aos-animate,
    body[data-aos-delay='250'] [data-aos].aos-animate {
      transition-delay: 0.25s;
    }

    [data-aos][data-aos][data-aos-duration='300'],
    body[data-aos-duration='300'] [data-aos] {
      transition-duration: 0.3s;
    }

    [data-aos][data-aos][data-aos-delay='300'],
    body[data-aos-delay='300'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='300'].aos-animate,
    body[data-aos-delay='300'] [data-aos].aos-animate {
      transition-delay: 0.3s;
    }

    [data-aos][data-aos][data-aos-duration='350'],
    body[data-aos-duration='350'] [data-aos] {
      transition-duration: 0.35s;
    }

    [data-aos][data-aos][data-aos-delay='350'],
    body[data-aos-delay='350'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='350'].aos-animate,
    body[data-aos-delay='350'] [data-aos].aos-animate {
      transition-delay: 0.35s;
    }

    [data-aos][data-aos][data-aos-duration='400'],
    body[data-aos-duration='400'] [data-aos] {
      transition-duration: 0.4s;
    }

    [data-aos][data-aos][data-aos-delay='400'],
    body[data-aos-delay='400'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='400'].aos-animate,
    body[data-aos-delay='400'] [data-aos].aos-animate {
      transition-delay: 0.4s;
    }

    [data-aos][data-aos][data-aos-duration='450'],
    body[data-aos-duration='450'] [data-aos] {
      transition-duration: 0.45s;
    }

    [data-aos][data-aos][data-aos-delay='450'],
    body[data-aos-delay='450'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='450'].aos-animate,
    body[data-aos-delay='450'] [data-aos].aos-animate {
      transition-delay: 0.45s;
    }

    [data-aos][data-aos][data-aos-duration='500'],
    body[data-aos-duration='500'] [data-aos] {
      transition-duration: 0.5s;
    }

    [data-aos][data-aos][data-aos-delay='500'],
    body[data-aos-delay='500'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='500'].aos-animate,
    body[data-aos-delay='500'] [data-aos].aos-animate {
      transition-delay: 0.5s;
    }

    [data-aos][data-aos][data-aos-duration='550'],
    body[data-aos-duration='550'] [data-aos] {
      transition-duration: 0.55s;
    }

    [data-aos][data-aos][data-aos-delay='550'],
    body[data-aos-delay='550'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='550'].aos-animate,
    body[data-aos-delay='550'] [data-aos].aos-animate {
      transition-delay: 0.55s;
    }

    [data-aos][data-aos][data-aos-duration='600'],
    body[data-aos-duration='600'] [data-aos] {
      transition-duration: 0.6s;
    }

    [data-aos][data-aos][data-aos-delay='600'],
    body[data-aos-delay='600'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='600'].aos-animate,
    body[data-aos-delay='600'] [data-aos].aos-animate {
      transition-delay: 0.6s;
    }

    [data-aos][data-aos][data-aos-duration='650'],
    body[data-aos-duration='650'] [data-aos] {
      transition-duration: 0.65s;
    }

    [data-aos][data-aos][data-aos-delay='650'],
    body[data-aos-delay='650'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='650'].aos-animate,
    body[data-aos-delay='650'] [data-aos].aos-animate {
      transition-delay: 0.65s;
    }

    [data-aos][data-aos][data-aos-duration='700'],
    body[data-aos-duration='700'] [data-aos] {
      transition-duration: 0.7s;
    }

    [data-aos][data-aos][data-aos-delay='700'],
    body[data-aos-delay='700'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='700'].aos-animate,
    body[data-aos-delay='700'] [data-aos].aos-animate {
      transition-delay: 0.7s;
    }

    [data-aos][data-aos][data-aos-duration='750'],
    body[data-aos-duration='750'] [data-aos] {
      transition-duration: 0.75s;
    }

    [data-aos][data-aos][data-aos-delay='750'],
    body[data-aos-delay='750'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='750'].aos-animate,
    body[data-aos-delay='750'] [data-aos].aos-animate {
      transition-delay: 0.75s;
    }

    [data-aos][data-aos][data-aos-duration='800'],
    body[data-aos-duration='800'] [data-aos] {
      transition-duration: 0.8s;
    }

    [data-aos][data-aos][data-aos-delay='800'],
    body[data-aos-delay='800'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='800'].aos-animate,
    body[data-aos-delay='800'] [data-aos].aos-animate {
      transition-delay: 0.8s;
    }

    [data-aos][data-aos][data-aos-duration='850'],
    body[data-aos-duration='850'] [data-aos] {
      transition-duration: 0.85s;
    }

    [data-aos][data-aos][data-aos-delay='850'],
    body[data-aos-delay='850'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='850'].aos-animate,
    body[data-aos-delay='850'] [data-aos].aos-animate {
      transition-delay: 0.85s;
    }

    [data-aos][data-aos][data-aos-duration='900'],
    body[data-aos-duration='900'] [data-aos] {
      transition-duration: 0.9s;
    }

    [data-aos][data-aos][data-aos-delay='900'],
    body[data-aos-delay='900'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='900'].aos-animate,
    body[data-aos-delay='900'] [data-aos].aos-animate {
      transition-delay: 0.9s;
    }

    [data-aos][data-aos][data-aos-duration='950'],
    body[data-aos-duration='950'] [data-aos] {
      transition-duration: 0.95s;
    }

    [data-aos][data-aos][data-aos-delay='950'],
    body[data-aos-delay='950'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='950'].aos-animate,
    body[data-aos-delay='950'] [data-aos].aos-animate {
      transition-delay: 0.95s;
    }

    [data-aos][data-aos][data-aos-duration='1000'],
    body[data-aos-duration='1000'] [data-aos] {
      transition-duration: 1s;
    }

    [data-aos][data-aos][data-aos-delay='1000'],
    body[data-aos-delay='1000'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='1000'].aos-animate,
    body[data-aos-delay='1000'] [data-aos].aos-animate {
      transition-delay: 1s;
    }

    [data-aos][data-aos][data-aos-duration='1050'],
    body[data-aos-duration='1050'] [data-aos] {
      transition-duration: 1.05s;
    }

    [data-aos][data-aos][data-aos-delay='1050'],
    body[data-aos-delay='1050'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='1050'].aos-animate,
    body[data-aos-delay='1050'] [data-aos].aos-animate {
      transition-delay: 1.05s;
    }

    [data-aos][data-aos][data-aos-duration='1100'],
    body[data-aos-duration='1100'] [data-aos] {
      transition-duration: 1.1s;
    }

    [data-aos][data-aos][data-aos-delay='1100'],
    body[data-aos-delay='1100'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='1100'].aos-animate,
    body[data-aos-delay='1100'] [data-aos].aos-animate {
      transition-delay: 1.1s;
    }

    [data-aos][data-aos][data-aos-duration='1150'],
    body[data-aos-duration='1150'] [data-aos] {
      transition-duration: 1.15s;
    }

    [data-aos][data-aos][data-aos-delay='1150'],
    body[data-aos-delay='1150'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='1150'].aos-animate,
    body[data-aos-delay='1150'] [data-aos].aos-animate {
      transition-delay: 1.15s;
    }

    [data-aos][data-aos][data-aos-duration='1200'],
    body[data-aos-duration='1200'] [data-aos] {
      transition-duration: 1.2s;
    }

    [data-aos][data-aos][data-aos-delay='1200'],
    body[data-aos-delay='1200'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='1200'].aos-animate,
    body[data-aos-delay='1200'] [data-aos].aos-animate {
      transition-delay: 1.2s;
    }

    [data-aos][data-aos][data-aos-duration='1250'],
    body[data-aos-duration='1250'] [data-aos] {
      transition-duration: 1.25s;
    }

    [data-aos][data-aos][data-aos-delay='1250'],
    body[data-aos-delay='1250'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='1250'].aos-animate,
    body[data-aos-delay='1250'] [data-aos].aos-animate {
      transition-delay: 1.25s;
    }

    [data-aos][data-aos][data-aos-duration='1300'],
    body[data-aos-duration='1300'] [data-aos] {
      transition-duration: 1.3s;
    }

    [data-aos][data-aos][data-aos-delay='1300'],
    body[data-aos-delay='1300'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='1300'].aos-animate,
    body[data-aos-delay='1300'] [data-aos].aos-animate {
      transition-delay: 1.3s;
    }

    [data-aos][data-aos][data-aos-duration='1350'],
    body[data-aos-duration='1350'] [data-aos] {
      transition-duration: 1.35s;
    }

    [data-aos][data-aos][data-aos-delay='1350'],
    body[data-aos-delay='1350'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='1350'].aos-animate,
    body[data-aos-delay='1350'] [data-aos].aos-animate {
      transition-delay: 1.35s;
    }

    [data-aos][data-aos][data-aos-duration='1400'],
    body[data-aos-duration='1400'] [data-aos] {
      transition-duration: 1.4s;
    }

    [data-aos][data-aos][data-aos-delay='1400'],
    body[data-aos-delay='1400'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='1400'].aos-animate,
    body[data-aos-delay='1400'] [data-aos].aos-animate {
      transition-delay: 1.4s;
    }

    [data-aos][data-aos][data-aos-duration='1450'],
    body[data-aos-duration='1450'] [data-aos] {
      transition-duration: 1.45s;
    }

    [data-aos][data-aos][data-aos-delay='1450'],
    body[data-aos-delay='1450'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='1450'].aos-animate,
    body[data-aos-delay='1450'] [data-aos].aos-animate {
      transition-delay: 1.45s;
    }

    [data-aos][data-aos][data-aos-duration='1500'],
    body[data-aos-duration='1500'] [data-aos] {
      transition-duration: 1.5s;
    }

    [data-aos][data-aos][data-aos-delay='1500'],
    body[data-aos-delay='1500'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='1500'].aos-animate,
    body[data-aos-delay='1500'] [data-aos].aos-animate {
      transition-delay: 1.5s;
    }

    [data-aos][data-aos][data-aos-duration='1550'],
    body[data-aos-duration='1550'] [data-aos] {
      transition-duration: 1.55s;
    }

    [data-aos][data-aos][data-aos-delay='1550'],
    body[data-aos-delay='1550'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='1550'].aos-animate,
    body[data-aos-delay='1550'] [data-aos].aos-animate {
      transition-delay: 1.55s;
    }

    [data-aos][data-aos][data-aos-duration='1600'],
    body[data-aos-duration='1600'] [data-aos] {
      transition-duration: 1.6s;
    }

    [data-aos][data-aos][data-aos-delay='1600'],
    body[data-aos-delay='1600'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='1600'].aos-animate,
    body[data-aos-delay='1600'] [data-aos].aos-animate {
      transition-delay: 1.6s;
    }

    [data-aos][data-aos][data-aos-duration='1650'],
    body[data-aos-duration='1650'] [data-aos] {
      transition-duration: 1.65s;
    }

    [data-aos][data-aos][data-aos-delay='1650'],
    body[data-aos-delay='1650'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='1650'].aos-animate,
    body[data-aos-delay='1650'] [data-aos].aos-animate {
      transition-delay: 1.65s;
    }

    [data-aos][data-aos][data-aos-duration='1700'],
    body[data-aos-duration='1700'] [data-aos] {
      transition-duration: 1.7s;
    }

    [data-aos][data-aos][data-aos-delay='1700'],
    body[data-aos-delay='1700'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='1700'].aos-animate,
    body[data-aos-delay='1700'] [data-aos].aos-animate {
      transition-delay: 1.7s;
    }

    [data-aos][data-aos][data-aos-duration='1750'],
    body[data-aos-duration='1750'] [data-aos] {
      transition-duration: 1.75s;
    }

    [data-aos][data-aos][data-aos-delay='1750'],
    body[data-aos-delay='1750'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='1750'].aos-animate,
    body[data-aos-delay='1750'] [data-aos].aos-animate {
      transition-delay: 1.75s;
    }

    [data-aos][data-aos][data-aos-duration='1800'],
    body[data-aos-duration='1800'] [data-aos] {
      transition-duration: 1.8s;
    }

    [data-aos][data-aos][data-aos-delay='1800'],
    body[data-aos-delay='1800'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='1800'].aos-animate,
    body[data-aos-delay='1800'] [data-aos].aos-animate {
      transition-delay: 1.8s;
    }

    [data-aos][data-aos][data-aos-duration='1850'],
    body[data-aos-duration='1850'] [data-aos] {
      transition-duration: 1.85s;
    }

    [data-aos][data-aos][data-aos-delay='1850'],
    body[data-aos-delay='1850'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='1850'].aos-animate,
    body[data-aos-delay='1850'] [data-aos].aos-animate {
      transition-delay: 1.85s;
    }

    [data-aos][data-aos][data-aos-duration='1900'],
    body[data-aos-duration='1900'] [data-aos] {
      transition-duration: 1.9s;
    }

    [data-aos][data-aos][data-aos-delay='1900'],
    body[data-aos-delay='1900'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='1900'].aos-animate,
    body[data-aos-delay='1900'] [data-aos].aos-animate {
      transition-delay: 1.9s;
    }

    [data-aos][data-aos][data-aos-duration='1950'],
    body[data-aos-duration='1950'] [data-aos] {
      transition-duration: 1.95s;
    }

    [data-aos][data-aos][data-aos-delay='1950'],
    body[data-aos-delay='1950'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='1950'].aos-animate,
    body[data-aos-delay='1950'] [data-aos].aos-animate {
      transition-delay: 1.95s;
    }

    [data-aos][data-aos][data-aos-duration='2000'],
    body[data-aos-duration='2000'] [data-aos] {
      transition-duration: 2s;
    }

    [data-aos][data-aos][data-aos-delay='2000'],
    body[data-aos-delay='2000'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='2000'].aos-animate,
    body[data-aos-delay='2000'] [data-aos].aos-animate {
      transition-delay: 2s;
    }

    [data-aos][data-aos][data-aos-duration='2050'],
    body[data-aos-duration='2050'] [data-aos] {
      transition-duration: 2.05s;
    }

    [data-aos][data-aos][data-aos-delay='2050'],
    body[data-aos-delay='2050'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='2050'].aos-animate,
    body[data-aos-delay='2050'] [data-aos].aos-animate {
      transition-delay: 2.05s;
    }

    [data-aos][data-aos][data-aos-duration='2100'],
    body[data-aos-duration='2100'] [data-aos] {
      transition-duration: 2.1s;
    }

    [data-aos][data-aos][data-aos-delay='2100'],
    body[data-aos-delay='2100'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='2100'].aos-animate,
    body[data-aos-delay='2100'] [data-aos].aos-animate {
      transition-delay: 2.1s;
    }

    [data-aos][data-aos][data-aos-duration='2150'],
    body[data-aos-duration='2150'] [data-aos] {
      transition-duration: 2.15s;
    }

    [data-aos][data-aos][data-aos-delay='2150'],
    body[data-aos-delay='2150'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='2150'].aos-animate,
    body[data-aos-delay='2150'] [data-aos].aos-animate {
      transition-delay: 2.15s;
    }

    [data-aos][data-aos][data-aos-duration='2200'],
    body[data-aos-duration='2200'] [data-aos] {
      transition-duration: 2.2s;
    }

    [data-aos][data-aos][data-aos-delay='2200'],
    body[data-aos-delay='2200'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='2200'].aos-animate,
    body[data-aos-delay='2200'] [data-aos].aos-animate {
      transition-delay: 2.2s;
    }

    [data-aos][data-aos][data-aos-duration='2250'],
    body[data-aos-duration='2250'] [data-aos] {
      transition-duration: 2.25s;
    }

    [data-aos][data-aos][data-aos-delay='2250'],
    body[data-aos-delay='2250'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='2250'].aos-animate,
    body[data-aos-delay='2250'] [data-aos].aos-animate {
      transition-delay: 2.25s;
    }

    [data-aos][data-aos][data-aos-duration='2300'],
    body[data-aos-duration='2300'] [data-aos] {
      transition-duration: 2.3s;
    }

    [data-aos][data-aos][data-aos-delay='2300'],
    body[data-aos-delay='2300'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='2300'].aos-animate,
    body[data-aos-delay='2300'] [data-aos].aos-animate {
      transition-delay: 2.3s;
    }

    [data-aos][data-aos][data-aos-duration='2350'],
    body[data-aos-duration='2350'] [data-aos] {
      transition-duration: 2.35s;
    }

    [data-aos][data-aos][data-aos-delay='2350'],
    body[data-aos-delay='2350'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='2350'].aos-animate,
    body[data-aos-delay='2350'] [data-aos].aos-animate {
      transition-delay: 2.35s;
    }

    [data-aos][data-aos][data-aos-duration='2400'],
    body[data-aos-duration='2400'] [data-aos] {
      transition-duration: 2.4s;
    }

    [data-aos][data-aos][data-aos-delay='2400'],
    body[data-aos-delay='2400'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='2400'].aos-animate,
    body[data-aos-delay='2400'] [data-aos].aos-animate {
      transition-delay: 2.4s;
    }

    [data-aos][data-aos][data-aos-duration='2450'],
    body[data-aos-duration='2450'] [data-aos] {
      transition-duration: 2.45s;
    }

    [data-aos][data-aos][data-aos-delay='2450'],
    body[data-aos-delay='2450'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='2450'].aos-animate,
    body[data-aos-delay='2450'] [data-aos].aos-animate {
      transition-delay: 2.45s;
    }

    [data-aos][data-aos][data-aos-duration='2500'],
    body[data-aos-duration='2500'] [data-aos] {
      transition-duration: 2.5s;
    }

    [data-aos][data-aos][data-aos-delay='2500'],
    body[data-aos-delay='2500'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='2500'].aos-animate,
    body[data-aos-delay='2500'] [data-aos].aos-animate {
      transition-delay: 2.5s;
    }

    [data-aos][data-aos][data-aos-duration='2550'],
    body[data-aos-duration='2550'] [data-aos] {
      transition-duration: 2.55s;
    }

    [data-aos][data-aos][data-aos-delay='2550'],
    body[data-aos-delay='2550'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='2550'].aos-animate,
    body[data-aos-delay='2550'] [data-aos].aos-animate {
      transition-delay: 2.55s;
    }

    [data-aos][data-aos][data-aos-duration='2600'],
    body[data-aos-duration='2600'] [data-aos] {
      transition-duration: 2.6s;
    }

    [data-aos][data-aos][data-aos-delay='2600'],
    body[data-aos-delay='2600'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='2600'].aos-animate,
    body[data-aos-delay='2600'] [data-aos].aos-animate {
      transition-delay: 2.6s;
    }

    [data-aos][data-aos][data-aos-duration='2650'],
    body[data-aos-duration='2650'] [data-aos] {
      transition-duration: 2.65s;
    }

    [data-aos][data-aos][data-aos-delay='2650'],
    body[data-aos-delay='2650'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='2650'].aos-animate,
    body[data-aos-delay='2650'] [data-aos].aos-animate {
      transition-delay: 2.65s;
    }

    [data-aos][data-aos][data-aos-duration='2700'],
    body[data-aos-duration='2700'] [data-aos] {
      transition-duration: 2.7s;
    }

    [data-aos][data-aos][data-aos-delay='2700'],
    body[data-aos-delay='2700'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='2700'].aos-animate,
    body[data-aos-delay='2700'] [data-aos].aos-animate {
      transition-delay: 2.7s;
    }

    [data-aos][data-aos][data-aos-duration='2750'],
    body[data-aos-duration='2750'] [data-aos] {
      transition-duration: 2.75s;
    }

    [data-aos][data-aos][data-aos-delay='2750'],
    body[data-aos-delay='2750'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='2750'].aos-animate,
    body[data-aos-delay='2750'] [data-aos].aos-animate {
      transition-delay: 2.75s;
    }

    [data-aos][data-aos][data-aos-duration='2800'],
    body[data-aos-duration='2800'] [data-aos] {
      transition-duration: 2.8s;
    }

    [data-aos][data-aos][data-aos-delay='2800'],
    body[data-aos-delay='2800'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='2800'].aos-animate,
    body[data-aos-delay='2800'] [data-aos].aos-animate {
      transition-delay: 2.8s;
    }

    [data-aos][data-aos][data-aos-duration='2850'],
    body[data-aos-duration='2850'] [data-aos] {
      transition-duration: 2.85s;
    }

    [data-aos][data-aos][data-aos-delay='2850'],
    body[data-aos-delay='2850'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='2850'].aos-animate,
    body[data-aos-delay='2850'] [data-aos].aos-animate {
      transition-delay: 2.85s;
    }

    [data-aos][data-aos][data-aos-duration='2900'],
    body[data-aos-duration='2900'] [data-aos] {
      transition-duration: 2.9s;
    }

    [data-aos][data-aos][data-aos-delay='2900'],
    body[data-aos-delay='2900'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='2900'].aos-animate,
    body[data-aos-delay='2900'] [data-aos].aos-animate {
      transition-delay: 2.9s;
    }

    [data-aos][data-aos][data-aos-duration='2950'],
    body[data-aos-duration='2950'] [data-aos] {
      transition-duration: 2.95s;
    }

    [data-aos][data-aos][data-aos-delay='2950'],
    body[data-aos-delay='2950'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='2950'].aos-animate,
    body[data-aos-delay='2950'] [data-aos].aos-animate {
      transition-delay: 2.95s;
    }

    [data-aos][data-aos][data-aos-duration='3000'],
    body[data-aos-duration='3000'] [data-aos] {
      transition-duration: 3s;
    }

    [data-aos][data-aos][data-aos-delay='3000'],
    body[data-aos-delay='3000'] [data-aos] {
      transition-delay: 0;
    }

    [data-aos][data-aos][data-aos-delay='3000'].aos-animate,
    body[data-aos-delay='3000'] [data-aos].aos-animate {
      transition-delay: 3s;
    }

    [data-aos][data-aos][data-aos-easing='linear'],
    body[data-aos-easing='linear'] [data-aos] {
      transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
    }

    [data-aos][data-aos][data-aos-easing='ease'],
    body[data-aos-easing='ease'] [data-aos] {
      transition-timing-function: ease;
    }

    [data-aos][data-aos][data-aos-easing='ease-in'],
    body[data-aos-easing='ease-in'] [data-aos] {
      transition-timing-function: ease-in;
    }

    [data-aos][data-aos][data-aos-easing='ease-out'],
    body[data-aos-easing='ease-out'] [data-aos] {
      transition-timing-function: ease-out;
    }

    [data-aos][data-aos][data-aos-easing='ease-in-out'],
    body[data-aos-easing='ease-in-out'] [data-aos] {
      transition-timing-function: ease-in-out;
    }

    [data-aos][data-aos][data-aos-easing='ease-in-back'],
    body[data-aos-easing='ease-in-back'] [data-aos] {
      transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
    }

    [data-aos][data-aos][data-aos-easing='ease-out-back'],
    body[data-aos-easing='ease-out-back'] [data-aos] {
      transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    [data-aos][data-aos][data-aos-easing='ease-in-out-back'],
    body[data-aos-easing='ease-in-out-back'] [data-aos] {
      transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    [data-aos][data-aos][data-aos-easing='ease-in-sine'],
    body[data-aos-easing='ease-in-sine'] [data-aos] {
      transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    }

    [data-aos][data-aos][data-aos-easing='ease-out-sine'],
    body[data-aos-easing='ease-out-sine'] [data-aos] {
      transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
    }

    [data-aos][data-aos][data-aos-easing='ease-in-out-sine'],
    body[data-aos-easing='ease-in-out-sine'] [data-aos] {
      transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
    }

    [data-aos][data-aos][data-aos-easing='ease-in-quad'],
    body[data-aos-easing='ease-in-quad'] [data-aos] {
      transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    }

    [data-aos][data-aos][data-aos-easing='ease-out-quad'],
    body[data-aos-easing='ease-out-quad'] [data-aos] {
      transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    [data-aos][data-aos][data-aos-easing='ease-in-out-quad'],
    body[data-aos-easing='ease-in-out-quad'] [data-aos] {
      transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    }

    [data-aos][data-aos][data-aos-easing='ease-in-cubic'],
    body[data-aos-easing='ease-in-cubic'] [data-aos] {
      transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    }

    [data-aos][data-aos][data-aos-easing='ease-out-cubic'],
    body[data-aos-easing='ease-out-cubic'] [data-aos] {
      transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    [data-aos][data-aos][data-aos-easing='ease-in-out-cubic'],
    body[data-aos-easing='ease-in-out-cubic'] [data-aos] {
      transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    }

    [data-aos][data-aos][data-aos-easing='ease-in-quart'],
    body[data-aos-easing='ease-in-quart'] [data-aos] {
      transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    }

    [data-aos][data-aos][data-aos-easing='ease-out-quart'],
    body[data-aos-easing='ease-out-quart'] [data-aos] {
      transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    [data-aos][data-aos][data-aos-easing='ease-in-out-quart'],
    body[data-aos-easing='ease-in-out-quart'] [data-aos] {
      transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    }

    [data-aos^='fade'][data-aos^='fade'] {
      opacity: 0;
      transition-property: opacity, transform;
    }

    [data-aos^='fade'][data-aos^='fade'].aos-animate {
      opacity: 1;
      transform: translateZ(0);
    }

    [data-aos='fade-up'] {
      transform: translate3d(0, 100px, 0);
    }

    [data-aos='fade-down'] {
      transform: translate3d(0, -100px, 0);
    }

    [data-aos='fade-right'] {
      transform: translate3d(-100px, 0, 0);
    }

    [data-aos='fade-left'] {
      transform: translate3d(100px, 0, 0);
    }

    [data-aos='fade-up-right'] {
      transform: translate3d(-100px, 100px, 0);
    }

    [data-aos='fade-up-left'] {
      transform: translate3d(100px, 100px, 0);
    }

    [data-aos='fade-down-right'] {
      transform: translate3d(-100px, -100px, 0);
    }

    [data-aos='fade-down-left'] {
      transform: translate3d(100px, -100px, 0);
    }

    [data-aos^='zoom'][data-aos^='zoom'] {
      opacity: 0;
      transition-property: opacity, transform;
    }

    [data-aos^='zoom'][data-aos^='zoom'].aos-animate {
      opacity: 1;
      transform: translateZ(0) scale(1);
    }

    [data-aos='zoom-in'] {
      transform: scale(0.6);
    }

    [data-aos='zoom-in-up'] {
      transform: translate3d(0, 100px, 0) scale(0.6);
    }

    [data-aos='zoom-in-down'] {
      transform: translate3d(0, -100px, 0) scale(0.6);
    }

    [data-aos='zoom-in-right'] {
      transform: translate3d(-100px, 0, 0) scale(0.6);
    }

    [data-aos='zoom-in-left'] {
      transform: translate3d(100px, 0, 0) scale(0.6);
    }

    [data-aos='zoom-out'] {
      transform: scale(1.2);
    }

    [data-aos='zoom-out-up'] {
      transform: translate3d(0, 100px, 0) scale(1.2);
    }

    [data-aos='zoom-out-down'] {
      transform: translate3d(0, -100px, 0) scale(1.2);
    }

    [data-aos='zoom-out-right'] {
      transform: translate3d(-100px, 0, 0) scale(1.2);
    }

    [data-aos='zoom-out-left'] {
      transform: translate3d(100px, 0, 0) scale(1.2);
    }

    [data-aos^='slide'][data-aos^='slide'] {
      transition-property: transform;
    }

    [data-aos^='slide'][data-aos^='slide'].aos-animate {
      transform: translateZ(0);
    }

    [data-aos='slide-up'] {
      transform: translate3d(0, 100%, 0);
    }

    [data-aos='slide-down'] {
      transform: translate3d(0, -100%, 0);
    }

    [data-aos='slide-right'] {
      transform: translate3d(-100%, 0, 0);
    }

    [data-aos='slide-left'] {
      transform: translate3d(100%, 0, 0);
    }

    [data-aos^='flip'][data-aos^='flip'] {
      backface-visibility: hidden;
      transition-property: transform;
    }

    [data-aos='flip-left'] {
      transform: perspective(2500px) rotateY(-100deg);
    }

    [data-aos='flip-left'].aos-animate {
      transform: perspective(2500px) rotateY(0);
    }

    [data-aos='flip-right'] {
      transform: perspective(2500px) rotateY(100deg);
    }

    [data-aos='flip-right'].aos-animate {
      transform: perspective(2500px) rotateY(0);
    }

    [data-aos='flip-up'] {
      transform: perspective(2500px) rotateX(-100deg);
    }

    [data-aos='flip-up'].aos-animate {
      transform: perspective(2500px) rotateX(0);
    }

    [data-aos='flip-down'] {
      transform: perspective(2500px) rotateX(100deg);
    }

    [data-aos='flip-down'].aos-animate {
      transform: perspective(2500px) rotateX(0);
    }

    @font-face {
      font-family: swiper-icons;
      font-style: normal;
      font-weight: 400;
      src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
    }

    :root {
      --swiper-theme-color: #007aff;
    }

    :host {
      display: block;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 1;
    }

    .swiper {
      display: block;
      list-style: none;
      margin-left: auto;
      margin-right: auto;
      overflow: hidden;
      overflow: clip;
      padding: 0;
      position: relative;
      z-index: 1;
    }

    .swiper-vertical>.swiper-wrapper {
      flex-direction: column;
    }

    .swiper-wrapper {
      box-sizing: content-box;
      display: flex;
      height: 100%;
      position: relative;
      transition-property: transform;
      transition-timing-function: var(--swiper-wrapper-transition-timing-function,
          initial);
      width: 100%;
      z-index: 1;
    }

    .swiper-android .swiper-slide,
    .swiper-ios .swiper-slide,
    .swiper-wrapper {
      transform: translateZ(0);
    }

    .swiper-horizontal {
      touch-action: pan-y;
    }

    .swiper-vertical {
      touch-action: pan-x;
    }

    .swiper-slide {
      display: block;
      flex-shrink: 0;
      height: 100%;
      position: relative;
      transition-property: transform;
      width: 100%;
    }

    .swiper-slide-invisible-blank {
      visibility: hidden;
    }

    .swiper-autoheight,
    .swiper-autoheight .swiper-slide {
      height: auto;
    }

    .swiper-autoheight .swiper-wrapper {
      align-items: flex-start;
      transition-property: transform, height;
    }

    .swiper-backface-hidden .swiper-slide {
      backface-visibility: hidden;
      transform: translateZ(0);
    }

    .swiper-3d.swiper-css-mode .swiper-wrapper {
      perspective: 1200px;
    }

    .swiper-3d .swiper-wrapper {
      transform-style: preserve-3d;
    }

    .swiper-3d {
      perspective: 1200px;
    }

    .swiper-3d .swiper-cube-shadow,
    .swiper-3d .swiper-slide {
      transform-style: preserve-3d;
    }

    .swiper-css-mode>.swiper-wrapper {
      overflow: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
      display: none;
    }

    .swiper-css-mode>.swiper-wrapper>.swiper-slide {
      scroll-snap-align: start start;
    }

    .swiper-css-mode.swiper-horizontal>.swiper-wrapper {
      scroll-snap-type: x mandatory;
    }

    .swiper-css-mode.swiper-vertical>.swiper-wrapper {
      scroll-snap-type: y mandatory;
    }

    .swiper-css-mode.swiper-free-mode>.swiper-wrapper {
      scroll-snap-type: none;
    }

    .swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
      scroll-snap-align: none;
    }

    .swiper-css-mode.swiper-centered>.swiper-wrapper:before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }

    .swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }

    .swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }

    .swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }

    .swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }

    .swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before {
      height: var(--swiper-centered-offset-after);
      min-width: 1px;
      width: 100%;
    }

    .swiper-3d .swiper-slide-shadow,
    .swiper-3d .swiper-slide-shadow-bottom,
    .swiper-3d .swiper-slide-shadow-left,
    .swiper-3d .swiper-slide-shadow-right,
    .swiper-3d .swiper-slide-shadow-top {
      height: 100%;
      left: 0;
      pointer-events: none;
      position: absolute;
      top: 0;
      width: 100%;
      z-index: 10;
    }

    .swiper-3d .swiper-slide-shadow {
      background: rgba(0, 0, 0, 0.15);
    }

    .swiper-3d .swiper-slide-shadow-left {
      background-image: linear-gradient(270deg,
          rgba(0, 0, 0, 0.5),
          transparent);
    }

    .swiper-3d .swiper-slide-shadow-right {
      background-image: linear-gradient(90deg,
          rgba(0, 0, 0, 0.5),
          transparent);
    }

    .swiper-3d .swiper-slide-shadow-top {
      background-image: linear-gradient(0deg,
          rgba(0, 0, 0, 0.5),
          transparent);
    }

    .swiper-3d .swiper-slide-shadow-bottom {
      background-image: linear-gradient(180deg,
          rgba(0, 0, 0, 0.5),
          transparent);
    }

    .swiper-lazy-preloader {
      border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
      border-radius: 50%;
      border-top: 4px solid transparent;
      box-sizing: border-box;
      height: 42px;
      left: 50%;
      margin-left: -21px;
      margin-top: -21px;
      position: absolute;
      top: 50%;
      transform-origin: 50%;
      width: 42px;
      z-index: 10;
    }

    .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
    .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
      animation: swiper-preloader-spin 1s linear infinite;
    }

    .swiper-lazy-preloader-white {
      --swiper-preloader-color: #fff;
    }

    .swiper-lazy-preloader-black {
      --swiper-preloader-color: #000;
    }

    @keyframes swiper-preloader-spin {
      0% {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(1turn);
      }
    }

    .swiper .swiper-notification {
      left: 0;
      opacity: 0;
      pointer-events: none;
      position: absolute;
      top: 0;
      z-index: -1000;
    }

    .swiper-cards {
      overflow: visible;
    }

    .swiper-cards .swiper-slide {
      backface-visibility: hidden;
      overflow: hidden;
      transform-origin: center bottom;
    }

    .swiper-creative .swiper-slide {
      backface-visibility: hidden;
      overflow: hidden;
      transition-property: transform, opacity, height;
    }

    .swiper-cube {
      overflow: visible;
    }

    .swiper-cube .swiper-slide {
      backface-visibility: hidden;
      height: 100%;
      pointer-events: none;
      transform-origin: 0 0;
      visibility: hidden;
      width: 100%;
      z-index: 1;
    }

    .swiper-cube .swiper-slide .swiper-slide {
      pointer-events: none;
    }

    .swiper-cube.swiper-rtl .swiper-slide {
      transform-origin: 100% 0;
    }

    .swiper-cube .swiper-slide-active,
    .swiper-cube .swiper-slide-active .swiper-slide-active {
      pointer-events: auto;
    }

    .swiper-cube .swiper-slide-active,
    .swiper-cube .swiper-slide-next,
    .swiper-cube .swiper-slide-prev {
      pointer-events: auto;
      visibility: visible;
    }

    .swiper-cube .swiper-cube-shadow {
      bottom: 0;
      height: 100%;
      left: 0;
      opacity: 0.6;
      position: absolute;
      width: 100%;
      z-index: 0;
    }

    .swiper-cube .swiper-cube-shadow:before {
      background: #000;
      bottom: 0;
      content: '';
      filter: blur(50px);
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
    }

    .swiper-cube .swiper-slide-next+.swiper-slide {
      pointer-events: auto;
      visibility: visible;
    }

    .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
    .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
    .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
    .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
      backface-visibility: hidden;
      z-index: 0;
    }

    .swiper-fade.swiper-free-mode .swiper-slide {
      transition-timing-function: ease-out;
    }

    .swiper-fade .swiper-slide {
      pointer-events: none;
      transition-property: opacity;
    }

    .swiper-fade .swiper-slide .swiper-slide {
      pointer-events: none;
    }

    .swiper-fade .swiper-slide-active,
    .swiper-fade .swiper-slide-active .swiper-slide-active {
      pointer-events: auto;
    }

    .swiper-flip {
      overflow: visible;
    }

    .swiper-flip .swiper-slide {
      backface-visibility: hidden;
      pointer-events: none;
      z-index: 1;
    }

    .swiper-flip .swiper-slide .swiper-slide {
      pointer-events: none;
    }

    .swiper-flip .swiper-slide-active,
    .swiper-flip .swiper-slide-active .swiper-slide-active {
      pointer-events: auto;
    }

    .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
    .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
    .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
    .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
      backface-visibility: hidden;
      z-index: 0;
    }

    .swiper-free-mode>.swiper-wrapper {
      margin: 0 auto;
      transition-timing-function: ease-out;
    }

    .swiper-grid>.swiper-wrapper {
      flex-wrap: wrap;
    }

    .swiper-grid-column>.swiper-wrapper {
      flex-direction: column;
      flex-wrap: wrap;
    }

    :root {
      --swiper-navigation-size: 44px;
    }

    .swiper-button-next,
    .swiper-button-prev {
      align-items: center;
      color: var(--swiper-navigation-color, var(--swiper-theme-color));
      cursor: pointer;
      display: flex;
      height: var(--swiper-navigation-size);
      justify-content: center;
      margin-top: calc(0px - var(--swiper-navigation-size) / 2);
      position: absolute;
      top: var(--swiper-navigation-top-offset, 50%);
      width: calc(var(--swiper-navigation-size) / 44 * 27);
      z-index: 10;
    }

    .swiper-button-next.swiper-button-disabled,
    .swiper-button-prev.swiper-button-disabled {
      cursor: auto;
      opacity: 0.35;
      pointer-events: none;
    }

    .swiper-button-next.swiper-button-hidden,
    .swiper-button-prev.swiper-button-hidden {
      cursor: auto;
      opacity: 0;
      pointer-events: none;
    }

    .swiper-navigation-disabled .swiper-button-next,
    .swiper-navigation-disabled .swiper-button-prev {
      display: none !important;
    }

    .swiper-button-next svg,
    .swiper-button-prev svg {
      height: 100%;
      -o-object-fit: contain;
      object-fit: contain;
      transform-origin: center;
      width: 100%;
    }

    .swiper-rtl .swiper-button-next svg,
    .swiper-rtl .swiper-button-prev svg {
      transform: rotate(180deg);
    }

    .swiper-button-prev,
    .swiper-rtl .swiper-button-next {
      left: var(--swiper-navigation-sides-offset, 10px);
      right: auto;
    }

    .swiper-button-lock {
      display: none;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
      font-family: swiper-icons;
      font-size: var(--swiper-navigation-size);
      font-variant: normal;
      letter-spacing: 0;
      line-height: 1;
      text-transform: none !important;
    }

    .swiper-button-prev:after,
    .swiper-rtl .swiper-button-next:after {
      content: 'prev';
    }

    .swiper-button-next,
    .swiper-rtl .swiper-button-prev {
      left: auto;
      right: var(--swiper-navigation-sides-offset, 10px);
    }

    .swiper-button-next:after,
    .swiper-rtl .swiper-button-prev:after {
      content: 'next';
    }

    .swiper-pagination {
      position: absolute;
      text-align: center;
      transform: translateZ(0);
      transition: opacity 0.3s;
      z-index: 10;
    }

    .swiper-pagination.swiper-pagination-hidden {
      opacity: 0;
    }

    .swiper-pagination-disabled>.swiper-pagination,
    .swiper-pagination.swiper-pagination-disabled {
      display: none !important;
    }

    .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
      bottom: var(--swiper-pagination-bottom, 8px);
      left: 0;
      top: var(--swiper-pagination-top, auto);
      width: 100%;
    }

    .swiper-pagination-bullets-dynamic {
      font-size: 0;
      overflow: hidden;
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
      position: relative;
      transform: scale(0.33);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
      transform: scale(1);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
      transform: scale(0.66);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
      transform: scale(0.33);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
      transform: scale(0.66);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
      transform: scale(0.33);
    }

    .swiper-pagination-bullet {
      background: var(--swiper-pagination-bullet-inactive-color, #000);
      border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
      display: inline-block;
      height: var(--swiper-pagination-bullet-height,
          var(--swiper-pagination-bullet-size, 8px));
      opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
      width: var(--swiper-pagination-bullet-width,
          var(--swiper-pagination-bullet-size, 8px));
    }

    button.swiper-pagination-bullet {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border: none;
      box-shadow: none;
      margin: 0;
      padding: 0;
    }

    .swiper-pagination-clickable .swiper-pagination-bullet {
      cursor: pointer;
    }

    .swiper-pagination-bullet:only-child {
      display: none !important;
    }

    .swiper-pagination-bullet-active {
      background: var(--swiper-pagination-color, var(--swiper-theme-color));
      opacity: var(--swiper-pagination-bullet-opacity, 1);
    }

    .swiper-pagination-vertical.swiper-pagination-bullets,
    .swiper-vertical>.swiper-pagination-bullets {
      left: var(--swiper-pagination-left, auto);
      right: var(--swiper-pagination-right, 8px);
      top: 50%;
      transform: translate3d(0, -50%, 0);
    }

    .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
    .swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
      display: block;
      margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    }

    .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
    .swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
      top: 50%;
      transform: translateY(-50%);
      width: 8px;
    }

    .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
    .swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
      display: inline-block;
      transition: transform 0.2s, top 0.2s;
    }

    .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
    .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
      margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
    }

    .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
    .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
    }

    .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
    .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
      transition: transform 0.2s, left 0.2s;
    }

    .swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
      transition: transform 0.2s, right 0.2s;
    }

    .swiper-pagination-fraction {
      color: var(--swiper-pagination-fraction-color, inherit);
    }

    .swiper-pagination-progressbar {
      background: var(--swiper-pagination-progressbar-bg-color,
          rgba(0, 0, 0, 0.25));
      position: absolute;
    }

    .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
      background: var(--swiper-pagination-color, var(--swiper-theme-color));
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      transform: scale(0);
      transform-origin: left top;
      width: 100%;
    }

    .swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
      transform-origin: right top;
    }

    .swiper-horizontal>.swiper-pagination-progressbar,
    .swiper-pagination-progressbar.swiper-pagination-horizontal,
    .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
    .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
      height: var(--swiper-pagination-progressbar-size, 4px);
      left: 0;
      top: 0;
      width: 100%;
    }

    .swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
    .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
    .swiper-pagination-progressbar.swiper-pagination-vertical,
    .swiper-vertical>.swiper-pagination-progressbar {
      height: 100%;
      left: 0;
      top: 0;
      width: var(--swiper-pagination-progressbar-size, 4px);
    }

    .swiper-pagination-lock {
      display: none;
    }

    .swiper-scrollbar {
      background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
      border-radius: var(--swiper-scrollbar-border-radius, 10px);
      position: relative;
      touch-action: none;
    }

    .swiper-scrollbar-disabled>.swiper-scrollbar,
    .swiper-scrollbar.swiper-scrollbar-disabled {
      display: none !important;
    }

    .swiper-horizontal>.swiper-scrollbar,
    .swiper-scrollbar.swiper-scrollbar-horizontal {
      bottom: var(--swiper-scrollbar-bottom, 4px);
      height: var(--swiper-scrollbar-size, 4px);
      left: var(--swiper-scrollbar-sides-offset, 1%);
      position: absolute;
      top: var(--swiper-scrollbar-top, auto);
      width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
      z-index: 50;
    }

    .swiper-scrollbar.swiper-scrollbar-vertical,
    .swiper-vertical>.swiper-scrollbar {
      height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
      left: var(--swiper-scrollbar-left, auto);
      position: absolute;
      right: var(--swiper-scrollbar-right, 4px);
      top: var(--swiper-scrollbar-sides-offset, 1%);
      width: var(--swiper-scrollbar-size, 4px);
      z-index: 50;
    }

    .swiper-scrollbar-drag {
      background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
      border-radius: var(--swiper-scrollbar-border-radius, 10px);
      height: 100%;
      left: 0;
      position: relative;
      top: 0;
      width: 100%;
    }

    .swiper-scrollbar-cursor-drag {
      cursor: move;
    }

    .swiper-scrollbar-lock {
      display: none;
    }

    .swiper-virtual .swiper-slide {
      -webkit-backface-visibility: hidden;
      transform: translateZ(0);
    }

    .swiper-virtual.swiper-css-mode .swiper-wrapper:after {
      content: '';
      left: 0;
      pointer-events: none;
      position: absolute;
      top: 0;
    }

    .swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
      height: 1px;
      width: var(--swiper-virtual-size);
    }

    .swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
      height: var(--swiper-virtual-size);
      width: 1px;
    }

    .swiper-zoom-container {
      align-items: center;
      display: flex;
      height: 100%;
      justify-content: center;
      text-align: center;
      width: 100%;
    }

    .swiper-zoom-container>canvas,
    .swiper-zoom-container>img,
    .swiper-zoom-container>svg {
      max-height: 100%;
      max-width: 100%;
      -o-object-fit: contain;
      object-fit: contain;
    }

    .swiper-slide-zoomed {
      cursor: move;
      touch-action: none;
    }

    .n-layout-scroll-container {
      overflow: hidden !important;
    }

    .menu[data-v-64d8756a] {
      height: 100%;
    }

    .menu>li[data-v-64d8756a] {
      align-items: center;
      align-self: stretch;
      box-sizing: border-box;
      cursor: pointer;
      display: flex;
      padding: 0 20px;
    }

    .menu .menu-item:hover .son-menu[data-v-64d8756a] {
      display: flex;
      flex-direction: column;
    }

    [data-v-64d8756a] .n-menu {
      --n-item-text-color-active: #9f6c4c !important;
      --n-item-text-color-child-active: #9f6c4c !important;
      --n-arrow-color-child-active: #9f6c4c !important;
      --n-item-icon-color-active-hover-horizontal: #9f6c4c !important;
      --n-item-icon-color-child-active-hover-horizontal: #9f6c4c !important;
      --n-arrow-color-child-active-hover: #9f6c4c !important;
      --n-arrow-color-active: #9f6c4c;
      --n-item-icon-color-hover-horizontal: #9f6c4c;
      --n-item-icon-color-active-horizontal: #9f6c4c;
      --n-item-text-color-hover-horizontal: #9f6c4c;
      --n-item-text-color-active-horizontal: #9f6c4c;
      --n-item-text-color-child-active-horizontal: #9f6c4c;
      --n-item-text-color-child-active-hover-horizontal: #9f6c4c;
      --n-item-text-color-active-hover-horizontal: #9f6c4c;
      --n-item-text-color-child-active-hover: #9f6c4c;
      --n-item-text-color-active-hover: #9f6c4c;
      --n-item-icon-color-active: #9f6c4c;
      --n-item-icon-color-active-hover: #9f6c4c;
      --n-item-icon-color-child-active: #9f6c4c;
      --n-item-icon-color-child-active-hover: #9f6c4c;
      --n-arrow-color-active-hover: #9f6c4c;
      --n-item-color-active-hover: rgba(160, 82, 23, 0.2) !important;
      --n-item-color-active: rgba(160, 82, 23, 0.2) !important;
    }

    .carousel[data-v-b5e30efa] {
      --n-dot-color-active: #8d5222;
      --n-dot-color: rgba(141, 82, 34, 0.5);
      --n-dot-color-focus: rgba(141, 82, 34, 0.5);
      --n-dot-line-width: 30px;
      --n-dot-line-width-active: 30px;
    }

    .carousel[data-v-b5e30efa] .n-carousel__dot {
      height: 6px !important;
    }

    .carousel.carousel_10[data-v-b5e30efa] .n-carousel__dots {
      bottom: 10px;
      --n-dot-line-width: 20px;
      --n-dot-line-width-active: 20px;
    }

    .carousel.carousel_10[data-v-b5e30efa] .n-carousel__dots .n-carousel__dot {
      height: 4px !important;
    }

    .carousel.carousel_30[data-v-b5e30efa] .n-carousel__dots {
      bottom: 30px;
    }

    .mask:hover .content[data-v-13287614] {
      top: 70%;
      transition: all 0.5s;
    }

    .qrCodeBox[data-v-e6a01e56] {
      align-items: center;
      display: flex;
      flex-direction: column;
      margin-left: 10px;
      margin-right: 10px;
    }

    .__icon-d {
      --n-bezier: cubic-bezier(0.4, 0, 0.2, 1);
      --n-color: ;
      --n-opacity: ;
    }

    .__carousel {
      --n-bezier: cubic-bezier(0.4, 0, 0.2, 1);
      --n-dot-color: rgba(255, 255, 255, 0.3);
      --n-dot-color-focus: rgba(255, 255, 255, 0.5);
      --n-dot-color-active: rgba(255, 255, 255, 1);
      --n-dot-size: 8px;
      --n-dot-line-width: 16px;
      --n-dot-line-width-active: 24px;
      --n-arrow-color: #eee;
    }

    .__divider {
      --n-bezier: cubic-bezier(0.4, 0, 0.2, 1);
      --n-color: rgb(239, 239, 245);
      --n-text-color: rgb(31, 34, 37);
      --n-font-weight: 500;
    }

    .__form-item-ll {
      --n-bezier: cubic-bezier(0.4, 0, 0.2, 1);
      --n-line-height: 1.6;
      --n-blank-height: 40px;
      --n-label-font-size: 15px;
      --n-label-text-align: right;
      --n-label-height: 28px;
      --n-label-padding: 0 12px 0 0;
      --n-label-font-weight: 400;
      --n-asterisk-color: #d03050;
      --n-label-text-color: rgb(31, 34, 37);
      --n-feedback-padding: 4px 0 0 2px;
      --n-feedback-font-size: 14px;
      --n-feedback-height: 26px;
      --n-feedback-text-color: rgb(118, 124, 130);
      --n-feedback-text-color-warning: #f0a020;
      --n-feedback-text-color-error: #d03050;
    }
    .__input-l {
      --n-bezier: cubic-bezier(0.4, 0, 0.2, 1);
      --n-count-text-color: rgb(118, 124, 130);
      --n-count-text-color-disabled: rgba(194, 194, 194, 1);
      --n-color: rgba(255, 255, 255, 1);
      --n-font-size: 15px;
      --n-border-radius: 3px;
      --n-height: 40px;
      --n-padding-left: 14px;
      --n-padding-right: 14px;
      --n-text-color: rgb(51, 54, 57);
      --n-caret-color: #18a058;
      --n-text-decoration-color: rgb(51, 54, 57);
      --n-border: 1px solid rgb(224, 224, 230);
      --n-border-disabled: 1px solid rgb(224, 224, 230);
      --n-border-hover: 1px solid #36ad6a;
      --n-border-focus: 1px solid #36ad6a;
      --n-placeholder-color: rgba(194, 194, 194, 1);
      --n-placeholder-color-disabled: rgba(209, 209, 209, 1);
      --n-icon-size: 16px;
      --n-line-height-textarea: 1.6;
      --n-color-disabled: rgb(250, 250, 252);
      --n-color-focus: rgba(255, 255, 255, 1);
      --n-text-color-disabled: rgba(194, 194, 194, 1);
      --n-box-shadow-focus: 0 0 0 2px rgba(24, 160, 88, 0.2);
      --n-loading-color: #18a058;
      --n-caret-color-warning: #f0a020;
      --n-color-focus-warning: rgba(255, 255, 255, 1);
      --n-box-shadow-focus-warning: 0 0 0 2px rgba(240, 160, 32, 0.2);
      --n-border-warning: 1px solid #f0a020;
      --n-border-focus-warning: 1px solid #fcb040;
      --n-border-hover-warning: 1px solid #fcb040;
      --n-loading-color-warning: #f0a020;
      --n-caret-color-error: #d03050;
      --n-color-focus-error: rgba(255, 255, 255, 1);
      --n-box-shadow-focus-error: 0 0 0 2px rgba(208, 48, 80, 0.2);
      --n-border-error: 1px solid #d03050;
      --n-border-focus-error: 1px solid #de576d;
      --n-border-hover-error: 1px solid #de576d;
      --n-loading-color-error: #d03050;
      --n-clear-color: rgba(194, 194, 194, 1);
      --n-clear-size: 16px;
      --n-clear-color-hover: rgba(146, 146, 146, 1);
      --n-clear-color-pressed: rgba(175, 175, 175, 1);
      --n-icon-color: rgba(194, 194, 194, 1);
      --n-icon-color-hover: rgba(146, 146, 146, 1);
      --n-icon-color-pressed: rgba(175, 175, 175, 1);
      --n-icon-color-disabled: rgba(209, 209, 209, 1);
      --n-suffix-text-color: rgb(51, 54, 57);
    }
    .__scrollbar {
      --n-scrollbar-bezier: cubic-bezier(0.4, 0, 0.2, 1);
      --n-scrollbar-color: rgba(0, 0, 0, 0.25);
      --n-scrollbar-color-hover: rgba(0, 0, 0, 0.4);
      --n-scrollbar-border-radius: 5px;
      --n-scrollbar-width: 5px;
      --n-scrollbar-height: 5px;
      --n-scrollbar-rail-inset-horizontal-top: 4px 2px auto 2px;
      --n-scrollbar-rail-inset-horizontal-bottom: auto 2px 4px 2px;
      --n-scrollbar-rail-inset-vertical-right: 2px 4px 2px auto;
      --n-scrollbar-rail-inset-vertical-left: 2px auto 2px 4px;
      --n-scrollbar-rail-color: transparent;
    }
    .__button-llmd {
      --n-bezier: cubic-bezier(0.4, 0, 0.2, 1);
      --n-bezier-ease-out: cubic-bezier(0, 0, 0.2, 1);
      --n-ripple-duration: 0.6s;
      --n-opacity-disabled: 0.5;
      --n-wave-opacity: 0.6;
      --n-font-weight: 400;
      --n-color: #0000;
      --n-color-hover: #0000;
      --n-color-pressed: #0000;
      --n-color-focus: #0000;
      --n-color-disabled: #0000;
      --n-ripple-color: #18a058;
      --n-text-color: rgb(51, 54, 57);
      --n-text-color-hover: #36ad6a;
      --n-text-color-pressed: #0c7a43;
      --n-text-color-focus: #36ad6a;
      --n-text-color-disabled: rgb(51, 54, 57);
      --n-border: 1px solid rgb(224, 224, 230);
      --n-border-hover: 1px solid #36ad6a;
      --n-border-pressed: 1px solid #0c7a43;
      --n-border-focus: 1px solid #36ad6a;
      --n-border-disabled: 1px solid rgb(224, 224, 230);
      --n-width: initial;
      --n-height: 40px;
      --n-font-size: 15px;
      --n-padding: 0 18px;
      --n-icon-size: 20px;
      --n-icon-margin: 6px;
      --n-border-radius: 3px;
    }