/* [project]/node_modules/.pnpm/react-vant@3.3.5_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-vant/es/styles/base.css [app-client] (css) */
:root {
  --rv-brand-color: #3f45ff;
  --rv-black: #000;
  --rv-white: #fff;
  --rv-gray-1: #f7f8fa;
  --rv-gray-2: #f2f3f5;
  --rv-gray-3: #ebedf0;
  --rv-gray-4: #dcdee0;
  --rv-gray-5: #c8c9cc;
  --rv-gray-6: #969799;
  --rv-gray-7: #646566;
  --rv-gray-8: #323232;
  --rv-red: #f44336;
  --rv-blue: #3f45ff;
  --rv-orange: #ff976a;
  --rv-orange-dark: #ff590d;
  --rv-orange-light: #fffbe8;
  --rv-green: #00c853;
  --rv-gradient-red: linear-gradient(to right, #ff6034, #ee0a24);
  --rv-gradient-orange: linear-gradient(to right, #ffd01e, #ff8917);
  --rv-primary-color: var(--rv-blue);
  --rv-success-color: var(--rv-green);
  --rv-danger-color: var(--rv-red);
  --rv-warning-color: var(--rv-orange);
  --rv-text-color: var(--rv-gray-8);
  --rv-text-color-weak: #969799;
  --rv-active-color: var(--rv-gray-2);
  --rv-active-opacity: .7;
  --rv-disabled-opacity: .5;
  --rv-background-color: var(--rv-gray-1);
  --rv-background-color-light: #fafafa;
  --rv-text-link-color: #576b95;
  --rv-padding-base: 4px;
  --rv-padding-xs: 8px;
  --rv-padding-sm: 12px;
  --rv-padding-md: 16px;
  --rv-padding-lg: 24px;
  --rv-padding-xl: 32px;
  --rv-font-size-xs: 10px;
  --rv-font-size-sm: 12px;
  --rv-font-size-md: 14px;
  --rv-font-size-lg: 16px;
  --rv-font-size-xl: 18px;
  --rv-font-size-xxl: 20px;
  --rv-font-size-xxxl: 24px;
  --rv-font-weight-bold: 500;
  --rv-line-height-xs: 14px;
  --rv-line-height-sm: 18px;
  --rv-line-height-md: 20px;
  --rv-line-height-lg: 22px;
  --rv-line-height-xl: 24px;
  --rv-line-height-xxl: 28px;
  --rv-line-height-xxxl: 32px;
  --rv-base-font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Segoe UI, Arial, Roboto, "PingFang SC", "miui", "Hiragino Sans GB", "Microsoft Yahei", sans-serif;
  --rv-price-integer-font-family: Avenir-Heavy, PingFang SC, Helvetica Neue, Arial, sans-serif;
  --rv-animation-duration-base: .3s;
  --rv-animation-duration-fast: .2s;
  --rv-animation-timing-function-enter: ease-out;
  --rv-animation-timing-function-leave: ease-in;
  --rv-border-color: var(--rv-gray-3);
  --rv-border-width-base: 1px;
  --rv-border-radius-sm: 2px;
  --rv-border-radius-md: 4px;
  --rv-border-radius-lg: 8px;
  --rv-border-radius-max: 999px;
}

html {
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, Segoe UI, Arial, Roboto, PingFang SC, miui, Hiragino Sans GB, Microsoft Yahei, sans-serif;
}

a {
  text-decoration: none;
}

input, button, textarea {
  color: inherit;
  font: inherit;
}

a:focus, input:focus, button:focus, textarea:focus, [class*="rv-"]:focus {
  outline: none;
}

ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@keyframes rv-spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(359deg);
  }
}

@keyframes rv-slide-up-enter {
  from {
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes rv-slide-up-leave {
  to {
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes rv-slide-down-enter {
  from {
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes rv-slide-down-leave {
  to {
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes rv-slide-left-enter {
  from {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes rv-slide-left-leave {
  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes rv-slide-right-enter {
  from {
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes rv-slide-right-leave {
  to {
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes rv-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes rv-fade-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes rv-zoom-in {
  from {
    opacity: 0;
    transform: scale(.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rv-zoom-out {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(.8);
  }
}

@keyframes rv-rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.rv-fade-enter-active {
  animation: .3s ease-out both rv-fade-in;
}

.rv-fade-exit-active {
  animation: .3s ease-in both rv-fade-out;
}

.rv-slide-up-enter-active {
  animation: .3s ease-out both rv-slide-up-enter;
}

.rv-slide-up-exit-active {
  animation: .3s ease-in both rv-slide-up-leave;
}

.rv-slide-down-enter-active {
  animation: .3s ease-out both rv-slide-down-enter;
}

.rv-slide-down-exit-active {
  animation: .3s ease-in both rv-slide-down-leave;
}

.rv-slide-left-enter-active {
  animation: .3s ease-out both rv-slide-left-enter;
}

.rv-slide-left-exit-active {
  animation: .3s ease-in both rv-slide-left-leave;
}

.rv-slide-right-enter-active {
  animation: .3s ease-out both rv-slide-right-enter;
}

.rv-slide-right-exit-active {
  animation: .3s ease-in both rv-slide-right-leave;
}

.rv-zoom-enter-active {
  animation: .3s ease-out both rv-zoom-in;
}

.rv-zoom-exit-active {
  animation: .3s ease-in both rv-zoom-out;
}

.rv-ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.rv-multi-ellipsis--l2 {
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box !important;
}

.rv-multi-ellipsis--l3 {
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box !important;
}

.rv-safe-area-top {
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}

.rv-safe-area-bottom {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}

[class*="rv-hairline"]:after {
  box-sizing: border-box;
  content: " ";
  pointer-events: none;
  border: 0 solid var(--rv-gray-3);
  position: absolute;
  inset: -50%;
  transform: scale(.5);
}

.rv-hairline, .rv-hairline--top, .rv-hairline--left, .rv-hairline--right, .rv-hairline--bottom, .rv-hairline--surround, .rv-hairline--top-bottom {
  position: relative;
}

.rv-hairline--top:after {
  border-top-width: 1px;
}

.rv-hairline--left:after {
  border-left-width: 1px;
}

.rv-hairline--right:after {
  border-right-width: 1px;
}

.rv-hairline--bottom:after {
  border-bottom-width: 1px;
}

.rv-hairline--top-bottom:after, .rv-hairline-unset--top-bottom:after {
  border-width: 1px 0;
}

.rv-hairline--surround:after {
  border-width: 1px;
}

[class*="rv-shadow"]:hover, [class*="rv-shadow"]:active {
  box-shadow: 0 2px 4px -1px #0003, 0 4px 5px #00000024, 0 1px 10px #0000001f;
}

.rv-shadow--1 {
  box-shadow: 0 2px 1px -1px #0003, 0 1px 1px #00000024, 0 1px 3px #0000001f;
}

.rv-shadow--2 {
  box-shadow: 0 3px 1px -2px #0003, 0 2px 2px #00000024, 0 1px 5px #0000001f;
}

.rv-shadow--3 {
  box-shadow: 0 3px 3px -2px #0003, 0 3px 4px #00000024, 0 1px 8px #0000001f;
}

.rv-icon--spin {
  animation: 1.5s linear infinite rv-spin;
}

/* [project]/node_modules/.pnpm/react-vant@3.3.5_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-vant/es/tabs/style/index.css [app-client] (css) */
:root {
  --rv-tab-text-color: var(--rv-gray-7);
  --rv-tab-active-text-color: var(--rv-primary-color);
  --rv-tab-disabled-text-color: var(--rv-gray-5);
  --rv-tab-font-size: var(--rv-font-size-md);
  --rv-tab-line-height: var(--rv-line-height-md);
  --rv-tabs-default-color: var(--rv-primary-color);
  --rv-tabs-line-height: 44px;
  --rv-tabs-card-height: 30px;
  --rv-tabs-nav-background-color: var(--rv-white);
  --rv-tabs-bottom-bar-width: 40px;
  --rv-tabs-bottom-bar-height: 3px;
  --rv-tabs-bottom-bar-color: var(--rv-primary-color);
  --rv-tab-capsule-padding: var(--rv-padding-xs) var(--rv-padding-sm);
  --rv-tabs-jumbo-height: 64px;
  --rv-tab-jumbo-title-size: var(--rv-font-size-lg);
  --rv-tab-description-font-size: var(--rv-font-size-sm);
  --rv-tab-description-color: #969799;
  --rv-tab-description-background-color: #ebedf0;
}

.rv-tab {
  box-sizing: border-box;
  padding: 0 var(--rv-padding-base);
  color: var(--rv-tab-text-color);
  font-size: var(--rv-tab-font-size);
  line-height: var(--rv-tab-line-height);
  cursor: pointer;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.rv-tab__pane {
  height: 100%;
}

.rv-tab__pane, .rv-tab__pane-wrapper {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
}

.rv-tab__pane-wrapper--inactive {
  height: 0;
  overflow: visible;
}

.rv-tab--active {
  color: var(--rv-tab-active-text-color);
  font-weight: var(--rv-font-weight-bold);
}

.rv-tab--disabled {
  color: var(--rv-tab-disabled-text-color);
  cursor: not-allowed;
}

.rv-tab__text--ellipsis {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.rv-tab__description {
  padding: 2px var(--rv-padding-xs);
  color: var(--rv-tab-description-color);
  font-size: var(--rv-tab-description-font-size);
  line-height: var(--rv-tab-description-font-size);
  background-color: var(--rv-tab-description-background-color);
  border-radius: 10px;
  font-weight: normal;
}

.rv-tabs {
  position: relative;
}

.rv-tabs__wrap {
  overflow: hidden;
}

.rv-tabs__wrap--page-top {
  position: fixed;
}

.rv-tabs__wrap--content-bottom {
  top: auto;
  bottom: 0;
}

.rv-tabs__wrap--scrollable .rv-tab {
  padding: 0 var(--rv-padding-sm);
  flex: 1 0 auto;
}

.rv-tabs__wrap--scrollable .rv-tabs__nav {
  -webkit-overflow-scrolling: touch;
  overflow: auto hidden;
}

.rv-tabs__wrap--scrollable .rv-tabs__nav::-webkit-scrollbar {
  display: none;
}

.rv-tabs__nav {
  background-color: var(--rv-tabs-nav-background-color);
  -webkit-user-select: none;
  user-select: none;
  display: flex;
  position: relative;
}

.rv-tabs__nav--line, .rv-tabs__nav--capsule, .rv-tabs__nav--jumbo {
  box-sizing: content-box;
  height: 100%;
  padding-bottom: 15px;
}

.rv-tabs__nav--line.rv-tabs__nav--complete {
  padding-right: var(--rv-padding-xs);
  padding-left: var(--rv-padding-xs);
}

.rv-tabs__nav--start .rv-tab {
  padding: 0 var(--rv-padding-sm);
  flex: none;
}

.rv-tabs__nav--card {
  box-sizing: border-box;
  height: var(--rv-tabs-card-height);
  margin: 0 var(--rv-padding-md);
  border: var(--rv-border-width-base) solid var(--rv-tabs-default-color);
  border-radius: var(--rv-border-radius-sm);
}

.rv-tabs__nav--card .rv-tab {
  color: var(--rv-tabs-default-color);
  border-right: var(--rv-border-width-base) solid var(--rv-tabs-default-color);
}

.rv-tabs__nav--card .rv-tab:last-child {
  border-right: none;
}

.rv-tabs__nav--card .rv-tab.rv-tab--active {
  color: var(--rv-white);
  background-color: var(--rv-tabs-default-color);
}

.rv-tabs__nav--card .rv-tab--disabled {
  color: var(--rv-tab-disabled-text-color);
}

.rv-tabs__nav--capsule .rv-tab {
  padding: var(--rv-tab-capsule-padding);
}

.rv-tabs__nav--capsule .rv-tab__text {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.rv-tabs__nav--capsule .rv-tab.rv-tab--active {
  color: var(--rv-white);
}

.rv-tabs__nav--capsule .rv-tab.rv-tab--active .rv-tab__text {
  background-color: var(--rv-tabs-bottom-bar-color);
  border-radius: 22px;
}

.rv-tabs__nav--jumbo .rv-tab {
  flex-direction: column;
  align-items: center;
}

.rv-tabs__nav--jumbo .rv-tab__text {
  font-size: var(--rv-tab-jumbo-title-size);
  line-height: 1.6em;
}

.rv-tabs__nav--jumbo .rv-tab--active .rv-tab__description {
  color: var(--rv-white);
  background-color: var(--rv-tab-active-text-color);
}

.rv-tabs__line {
  z-index: 1;
  width: var(--rv-tabs-bottom-bar-width);
  height: var(--rv-tabs-bottom-bar-height);
  background-color: var(--rv-tabs-bottom-bar-color);
  border-radius: var(--rv-tabs-bottom-bar-height);
  position: absolute;
  bottom: 15px;
  left: 0;
}

.rv-tabs__track {
  will-change: left;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.rv-tabs__content--animated {
  overflow: hidden;
}

.rv-tabs--line .rv-tabs__wrap, .rv-tabs--capsule .rv-tabs__wrap {
  height: var(--rv-tabs-line-height);
}

.rv-tabs--card > .rv-tabs__wrap {
  height: var(--rv-tabs-card-height);
}

.rv-tabs--jumbo .rv-tabs__wrap {
  height: var(--rv-tabs-jumbo-height);
}

.rv-tabs--jumbo .rv-badge__wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}

/* [project]/node_modules/.pnpm/react-vant@3.3.5_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-vant/es/sticky/style/index.css [app-client] (css) */
:root {
  --rv-sticky-z-index: 99;
}

.rv-sticky--fixed {
  z-index: var(--rv-sticky-z-index);
  position: fixed;
}

/* [project]/node_modules/.pnpm/react-vant@3.3.5_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-vant/es/badge/style/index.css [app-client] (css) */
:root {
  --rv-badge-size: 16px;
  --rv-badge-color: var(--rv-white);
  --rv-badge-padding: 0 3px;
  --rv-badge-font-size: var(--rv-font-size-sm);
  --rv-badge-font-weight: var(--rv-font-weight-bold);
  --rv-badge-border-width: var(--rv-border-width-base);
  --rv-badge-background-color: var(--rv-danger-color);
  --rv-badge-dot-color: var(--rv-danger-color);
  --rv-badge-dot-size: 8px;
  --rv-badge-font-family: -apple-system-font, Helvetica Neue, Arial, sans-serif;
}

.rv-badge {
  box-sizing: border-box;
  min-width: var(--rv-badge-size);
  padding: var(--rv-badge-padding);
  color: var(--rv-badge-color);
  font-weight: var(--rv-badge-font-weight);
  font-size: var(--rv-badge-font-size);
  font-family: var(--rv-badge-font-family);
  text-align: center;
  background-color: var(--rv-badge-background-color);
  border: var(--rv-badge-border-width) solid var(--rv-white);
  border-radius: var(--rv-border-radius-max);
  line-height: 1.2;
  display: inline-block;
}

.rv-badge--fixed {
  transform-origin: 100%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.rv-badge--dot {
  width: var(--rv-badge-dot-size);
  min-width: 0;
  height: var(--rv-badge-dot-size);
  background-color: var(--rv-badge-dot-color);
  border-radius: 100%;
}

.rv-badge__wrapper {
  display: inline-block;
  position: relative;
}

/* [project]/node_modules/.pnpm/react-vant@3.3.5_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-vant/es/swiper/style/index.css [app-client] (css) */
:root {
  --rv-swipe-slide-size: 100%;
  --rv-swipe-track-offset: 0%;
  --rv-swipe-border-radius: 0;
  --rv-swipe-indicator-size: 6px;
  --rv-swipe-indicator-margin: var(--rv-padding-sm);
  --rv-swipe-indicator-active-opacity: 1;
  --rv-swipe-indicator-inactive-opacity: .3;
  --rv-swipe-indicator-active-background-color: var(--rv-white);
  --rv-swipe-indicator-inactive-background-color: var(--rv-border-color);
}

.rv-swiper {
  z-index: 0;
  border-radius: var(--rv-swipe-border-radius);
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  overflow: hidden;
}

.rv-swiper--vertical .rv-swiper__track--allow-touch-move {
  touch-action: pan-x;
}

.rv-swiper--vertical .rv-swiper__track {
  transform: translateY(var(--rv-swipe-track-offset));
}

.rv-swiper--vertical .rv-swiper__track-inner {
  width: 100%;
  height: var(--rv-swipe-slide-width, var(--rv-swipe-slide-size));
  flex-direction: column;
}

.rv-swiper__track {
  white-space: nowrap;
  width: 100%;
  height: 100%;
  transform: translateX(var(--rv-swipe-track-offset));
  padding: 0;
}

.rv-swiper__track--allow-touch-move {
  cursor: grab;
  touch-action: pan-y;
}

.rv-swiper__track-inner {
  width: var(--rv-swipe-slide-width, var(--rv-swipe-slide-size));
  flex-wrap: nowrap;
  height: 100%;
  display: flex;
  position: relative;
  overflow: visible;
}

.rv-swiper__slide {
  width: 100%;
  height: 100%;
  white-space: unset;
  flex: none;
  display: block;
  position: relative;
}

.rv-swiper__indicator {
  bottom: var(--rv-swipe-indicator-margin);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.rv-swiper__indicator--vertical {
  top: 50%;
  bottom: auto;
  left: var(--rv-swipe-indicator-margin);
  transform: translateY(-50%);
}

.rv-swiper-item {
  white-space: normal;
  width: 100%;
  height: 100%;
  display: block;
}

.rv-swiper-item--hidden {
  content-visibility: hidden;
}

.rv-indicator {
  width: fit-content;
  display: flex;
}

.rv-indicator--vertical {
  flex-direction: column;
}

.rv-indicator--vertical .rv-indicator__dot:not(:last-child) {
  margin-right: 0;
  margin-bottom: var(--rv-swipe-indicator-size);
}

.rv-indicator__dot {
  width: var(--rv-swipe-indicator-size);
  height: var(--rv-swipe-indicator-size);
  margin-right: var(--rv-swipe-indicator-size);
  background-color: var(--rv-swipe-indicator-inactive-background-color);
  opacity: var(--rv-swipe-indicator-inactive-opacity);
  transition: opacity var(--rv-animation-duration-fast), background-color var(--rv-animation-duration-fast);
  border-radius: 100%;
  display: block;
}

.rv-indicator__dot:last-child {
  margin-right: 0;
}

.rv-indicator__dot--active {
  background-color: var(--rv-swipe-indicator-active-background-color);
  opacity: var(--rv-swipe-indicator-active-opacity);
}

/*# sourceMappingURL=0cye_react-vant_es_11lo2c0._.css.map*/