uni-tabbar {
  display: block;
  box-sizing: border-box;
  width: 100%;
  z-index: 998;
}
uni-tabbar .uni-tabbar {
  display: flex;
  z-index: 998;
  box-sizing: border-box;
}
uni-tabbar.uni-tabbar-bottom,
uni-tabbar.uni-tabbar-bottom .uni-tabbar {
  position: fixed;
  left: var(--window-left);
  right: var(--window-right);
}
uni-tabbar.uni-tabbar-bottom .uni-tabbar {
  bottom: 0;
  padding-bottom: env(safe-area-inset-bottom);
}
uni-tabbar .uni-tabbar ~ .uni-placeholder {
  width: 100%;
  margin-bottom: env(safe-area-inset-bottom);
}
uni-tabbar .uni-tabbar * {
  box-sizing: border-box;
}
uni-tabbar .uni-tabbar__item {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  font-size: 0;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
uni-tabbar .uni-tabbar__bd,
uni-tabbar .uni-tabbar__item {
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}
uni-tabbar .uni-tabbar__bd {
  position: relative;
  -webkit-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
}
uni-tabbar .uni-tabbar__icon {
  position: relative;
  display: inline-block;
  margin-top: 5px;
}
uni-tabbar .uni-tabbar__icon img {
  width: 100%;
  height: 100%;
}
uni-tabbar .uni-tabbar__label {
  position: relative;
  text-align: center;
}
uni-tabbar .uni-tabbar-border {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
}
uni-toast {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  display: block;
  box-sizing: border-box;
  pointer-events: none;
  font-size: 16px;
}
uni-toast .uni-mask {
  pointer-events: auto;
}
uni-toast .uni-toast {
  position: fixed;
  z-index: 999;
  width: 8em;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(17, 17, 17, 0.7);
  text-align: center;
  border-radius: 5px;
  color: #fff;
}
uni-toast .uni-toast * {
  box-sizing: border-box;
}
uni-toast .uni-icon_toast.uni-loading {
  margin: 20px 0 0;
  width: 38px;
  height: 38px;
  vertical-align: baseline;
}
uni-toast .uni-toast__content {
  margin: 0 0 15px;
}
uni-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  box-sizing: border-box;
}
uni-actionsheet {
  display: block;
  box-sizing: border-box;
}
uni-actionsheet .uni-actionsheet {
  position: fixed;
  left: 6px;
  right: 6px;
  bottom: 6px;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 999;
  visibility: hidden;
  -webkit-transition:
    visibility 0.3s,
    -webkit-transform 0.3s;
  transition:
    transform 0.3s,
    visibility 0.3s,
    -webkit-transform 0.3s;
}
uni-actionsheet .uni-actionsheet * {
  box-sizing: border-box;
}
uni-actionsheet .uni-actionsheet__action,
uni-actionsheet .uni-actionsheet__menu {
  border-radius: 5px;
  background-color: #fcfcfd;
}
uni-actionsheet .uni-actionsheet__action {
  margin-top: 6px;
}
@media screen and (min-width: 500px) and (min-height: 500px) {
  .uni-mask.uni-actionsheet__mask {
    background: none;
  }
  uni-actionsheet .uni-actionsheet {
    width: 300px;
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition:
      opacity 0.3s,
      visibility 0.3s;
    transition:
      opacity 0.3s,
      visibility 0.3s;
  }
  uni-actionsheet .uni-actionsheet__menu {
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
  }
  uni-actionsheet .uni-actionsheet__action {
    display: none;
  }
}
* {
  margin: 0;
  -webkit-tap-highlight-color: transparent;
}
body,
html {
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
  height: 100%;
}
body {
  overflow-x: hidden;
}
body,
uni-page-body {
  background-color: var(--UI-BG-0);
  color: var(--UI-FG-0);
}
.uni-loading {
  background: rgba(0, 0, 0, 0) url('../assets/350ae087bd12.svg') no-repeat;
}
.uni-loading {
  display: inline-block;
  -webkit-animation: uni-loading 1s steps(12) infinite;
  animation: uni-loading 1s steps(12) infinite;
  background-size: 100%;
}
@-webkit-keyframes uni-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes uni-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.uni-mask {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
html {
  --UI-BG: #fff;
  --UI-BG-1: #f7f7f7;
  --UI-BG-2: #fff;
  --UI-BG-3: #f7f7f7;
  --UI-BG-4: #4c4c4c;
  --UI-BG-5: #fff;
  --UI-FG: #000;
  --UI-FG-0: rgba(0, 0, 0, 0.9);
  --UI-FG-HALF: rgba(0, 0, 0, 0.9);
  --UI-FG-1: rgba(0, 0, 0, 0.5);
  --UI-FG-2: rgba(0, 0, 0, 0.3);
  --UI-FG-3: rgba(0, 0, 0, 0.1);
}
uni-app {
  width: 100%;
  height: 100%;
}
uni-app {
  display: block;
  box-sizing: border-box;
}
uni-page-wrapper {
  position: relative;
}
uni-page-body {
  display: block;
  box-sizing: border-box;
  width: 100%;
}
@-webkit-keyframes uni-page-refresh-rotate {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes uni-page-refresh-rotate {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@-webkit-keyframes uni-page-refresh-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  to {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes uni-page-refresh-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  to {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
uni-page {
  display: block;
  width: 100%;
  height: 100%;
}
uni-image {
  display: inline-block;
  overflow: hidden;
  position: relative;
}
uni-image > div,
uni-image > img {
  width: 100%;
  height: 100%;
}
uni-image > img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
@-webkit-keyframes once-show {
  0% {
    top: 0;
  }
}
@keyframes once-show {
  0% {
    top: 0;
  }
}
uni-resize-sensor,
uni-resize-sensor > div {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
uni-resize-sensor {
  display: block;
  z-index: -1;
  visibility: hidden;
  -webkit-animation: once-show 1ms;
  animation: once-show 1ms;
}
uni-resize-sensor > div > div {
  position: absolute;
  left: 0;
  top: 0;
}
uni-resize-sensor > div:first-child > div {
  width: 100000px;
  height: 100000px;
}
uni-resize-sensor > div:last-child > div {
  width: 200%;
  height: 200%;
}
@-webkit-keyframes uni-scroll-view-refresh-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes uni-scroll-view-refresh-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@-webkit-keyframes uni-scroll-view-refresh-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  to {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes uni-scroll-view-refresh-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  to {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
uni-swiper-item {
  display: block;
  overflow: hidden;
  will-change: transform;
  cursor: grab;
}
uni-swiper {
  display: block;
}
uni-swiper .uni-swiper-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
uni-swiper .uni-swiper-slides {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
uni-swiper .uni-swiper-slide-frame {
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform;
}
uni-swiper .uni-swiper-dots {
  position: absolute;
  font-size: 0;
}
uni-swiper .uni-swiper-dots-horizontal {
  left: 50%;
  bottom: 10px;
  text-align: center;
  white-space: nowrap;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}
uni-swiper .uni-swiper-dots-horizontal .uni-swiper-dot {
  margin-right: 8px;
}
uni-swiper .uni-swiper-dots-horizontal .uni-swiper-dot:last-child {
  margin-right: 0;
}
uni-swiper .uni-swiper-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  cursor: pointer;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  border-radius: 50%;
}
uni-swiper .uni-swiper-dot-active {
  background-color: #000;
}
uni-view {
  display: block;
}
body::after {
  position: fixed;
  content: '';
  left: -1000px;
  top: -1000px;
  -webkit-animation: shadow-preload 0.1s;
  -webkit-animation-delay: 3s;
  animation: shadow-preload 0.1s;
  animation-delay: 3s;
}
@-webkit-keyframes shadow-preload {
  0% {
    background-image: url(https://cdn.dcloud.net.cn/img/shadow-grey.png);
  }
  100% {
    background-image: url(https://cdn.dcloud.net.cn/img/shadow-grey.png);
  }
}
@keyframes shadow-preload {
  0% {
    background-image: url(https://cdn.dcloud.net.cn/img/shadow-grey.png);
  }
  100% {
    background-image: url(https://cdn.dcloud.net.cn/img/shadow-grey.png);
  }
}
