@charset "UTF-8";.footer-content[data-v-4896eafd] {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  height: 4.25rem;
  background-color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -0.0625rem 0.25rem rgba(0, 0, 0, 0.1);
}
.footer-item[data-v-4896eafd] {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.footer-item .text[data-v-4896eafd] {
  font-size: 0.875rem;
}
.footer-item.active[data-v-4896eafd] {
  color: #ff5f00;
}.app-container[data-v-7a7a37b1] {
  width: 100%;
  min-height: 100vh;
}
/**
 * 工具类样式
 * @description 常用的 CSS 工具类
 */
/* 滚动条样式 */
/* 单行文本省略 */
/* Flex 居中布局 */
/* Flex 两端对齐布局 */
/* 清除浮动 */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* 单行文本省略 */
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 多行文本省略 */
.ellipsis-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

/*  flex 布局 */
.flex {
  display: flex;
}

.flex-inline {
  display: inline-flex;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.align-center {
  align-items: center;
}

.align-stretch {
  align-items: stretch;
}

.flex-1 {
  flex: 1;
}

/* 定位 */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

/* 显示/隐藏 */
.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.hidden {
  display: none;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

/* 溢出 */
.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.overflow-scroll {
  overflow: scroll;
}

/* 文字对齐 */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* 文字粗细 */
.font-normal {
  font-weight: normal;
}

.font-bold {
  font-weight: bold;
}

/* 安全区域适配 */
.safe-area-top {
  padding-top: env(safe-area-inset-top);
}

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

.safe-area-left {
  padding-left: env(safe-area-inset-left);
}

.safe-area-right {
  padding-right: env(safe-area-inset-right);
}

/* 点击效果 */
.active-opacity:active {
  opacity: 0.7;
}

/* 禁用状态 */
.disabled {
  pointer-events: none;
  opacity: 0.5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  color: #333333;
  background-color: #f5f5f5;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#app {
  width: 100%;
  height: 100%;
}

a {
  color: #1989fa;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

ul,
ol,
li {
  list-style: none;
}

img {
  display: block;
  margin: 0;
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

input,
textarea,
select {
  outline: none;
  border: none;
}

.scrollbar::-webkit-scrollbar {
  width: 0.375rem;
  height: 0.375rem;
}
.scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.1875rem;
}
.scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
.scrollbar::-webkit-scrollbar-track {
  background-color: transparent;
}

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

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}*,::before,::after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0;--un-ring-offset-color:#fff;--un-ring-width:0;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0;--un-ring-offset-color:#fff;--un-ring-width:0;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}.flex-end{display:flex;align-items:center;justify-content:flex-end;}.flex-start{display:flex;align-items:center;justify-content:flex-start;}.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.visible{visibility:visible;}.absolute{position:absolute;}.fixed{position:fixed;}.relative{position:relative;}.sticky,[sticky=""]{position:sticky;}.grid{display:grid;}.block,[block=""]{display:block;}.hidden{display:none;}[size~="\31 4"]{width:3.5rem;height:3.5rem;}[size~="\31 6"]{width:4rem;height:4rem;}[size~="\31 8"]{width:4.5rem;height:4.5rem;}[size~="\32 0"]{width:5rem;height:5rem;}[size~="\32 4"]{width:6rem;height:6rem;}[size~="\34 8"]{width:12rem;height:12rem;}.flex{display:flex;}.transform{transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.items-center{align-items:center;}.justify-center{justify-content:center;}.border{border-width:0.0625rem;}.bg-danger{--un-bg-opacity:1;background-color:rgb(245 108 108 / var(--un-bg-opacity)) /* #f56c6c */;}.bg-primary{--un-bg-opacity:1;background-color:rgb(64 158 255 / var(--un-bg-opacity)) /* #409eff */;}.bg-success{--un-bg-opacity:1;background-color:rgb(103 194 58 / var(--un-bg-opacity)) /* #67c23a */;}.bg-warning{--un-bg-opacity:1;background-color:rgb(230 162 60 / var(--un-bg-opacity)) /* #e6a23c */;}.bg-white{--un-bg-opacity:1;background-color:rgb(255 255 255 / var(--un-bg-opacity)) /* #fff */;}.pie{padding-inline-end:1rem;}.text-danger{--un-text-opacity:1;color:rgb(245 108 108 / var(--un-text-opacity)) /* #f56c6c */;}.text-primary{--un-text-opacity:1;color:rgb(64 158 255 / var(--un-text-opacity)) /* #409eff */;}.text-success{--un-text-opacity:1;color:rgb(103 194 58 / var(--un-text-opacity)) /* #67c23a */;}.text-white{--un-text-opacity:1;color:rgb(255 255 255 / var(--un-text-opacity)) /* #fff */;}.text-shadow{--un-text-shadow:0 0 0.0625rem var(--un-text-shadow-color, rgb(0 0 0 / 0.2)),0 0 0.0625rem var(--un-text-shadow-color, rgb(1 0 5 / 0.1));text-shadow:var(--un-text-shadow);}.backdrop-filter{backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.ease,.ease-in-out{transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);}.h-68{height:4.25rem;}.h-rem-3{height:3rem;}.p-rem-0\.75{padding:0.75rem;}.mr-rem-0\.5{margin-right:0.5rem;}.ml-rem-1{margin-left:1rem;}.fw-600{font-weight:600;}.fs-rem-0\.75{font-size:0.75rem;}.fs-rem-0\.875{font-size:0.875rem;}.fs-rem-1\.25{font-size:1.25rem;}.color-\#1b6bc2{color:#1b6bc2;}.color-\#409eff{color:#409eff;}.color-\#666{color:#666;}.color-\#999,[color~="\#999"]{color:#999;}[color~="\#fff"]{color:#fff;}.bg-\#409eff{background-color:#409eff;}.bg-\#67c23a{background-color:#67c23a;}.bg-\#e1f3d8{background-color:#e1f3d8;}.bg-\#e6a23c{background-color:#e6a23c;}.bg-\#f56c6c{background-color:#f56c6c;}.bg-\#fdf6ec{background-color:#fdf6ec;}.bg-\#fef0f0{background-color:#fef0f0;}.nav-bar[data-v-c3ceb15a] {
  width: 100%;
  box-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.1);
}
.nav-bar[data-v-c3ceb15a] .van-nav-bar__content {
  height: 3rem;
}
.nav-bar[data-v-c3ceb15a] .van-nav-bar__title {
  color: #666;
  font-size: 1rem;
}
.nav-bar[data-v-c3ceb15a] .van-nav-bar__left {
  color: #666;
}
.nav-bar[data-v-c3ceb15a] .van-nav-bar__arrow {
  color: #666;
}
.nav-bar[data-v-c3ceb15a] .van-nav-bar__text {
  color: #666;
}