:root {
  --van-black: #000;
  --van-white: #fff;
  --van-gray-1: #f7f8fa;
  --van-gray-2: #f2f3f5;
  --van-gray-3: #ebedf0;
  --van-gray-4: #dcdee0;
  --van-gray-5: #c8c9cc;
  --van-gray-6: #969799;
  --van-gray-7: #646566;
  --van-gray-8: #323233;
  --van-red: #ee0a24;
  --van-blue: #1989fa;
  --van-orange: #ff976a;
  --van-orange-dark: #ed6a0c;
  --van-orange-light: #fffbe8;
  --van-green: #07c160;
  --van-gradient-red: linear-gradient(to right, #ff6034, #ee0a24);
  --van-gradient-orange: linear-gradient(to right, #ffd01e, #ff8917);
  --van-primary-color: var(--van-blue);
  --van-success-color: var(--van-green);
  --van-danger-color: var(--van-red);
  --van-warning-color: var(--van-orange);
  --van-text-color: var(--van-gray-8);
  --van-text-color-2: var(--van-gray-6);
  --van-text-color-3: var(--van-gray-5);
  --van-link-color: #576b95;
  --van-active-color: var(--van-gray-2);
  --van-active-opacity: .6;
  --van-disabled-opacity: .5;
  --van-background: var(--van-gray-1);
  --van-background-2: var(--van-white);
  --van-background-3: var(--van-white);
  --van-padding-base: .96618vw;
  --van-padding-xs: 1.93237vw;
  --van-padding-sm: 2.89855vw;
  --van-padding-md: 3.86473vw;
  --van-padding-lg: 5.7971vw;
  --van-padding-xl: 7.72947vw;
  --van-font-bold: 600;
  --van-font-size-xs: 2.41546vw;
  --van-font-size-sm: 2.89855vw;
  --van-font-size-md: 3.38164vw;
  --van-font-size-lg: 3.86473vw;
  --van-line-height-xs: 3.38164vw;
  --van-line-height-sm: 4.34783vw;
  --van-line-height-md: 4.83092vw;
  --van-line-height-lg: 5.31401vw;
  --van-base-font: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Segoe UI, Arial, Roboto, "PingFang SC", "miui", "Hiragino Sans GB", "Microsoft Yahei", sans-serif;
  --van-price-font: avenir-heavy, "PingFang SC", helvetica neue, arial, sans-serif;
  --van-duration-base: .3s;
  --van-duration-fast: .2s;
  --van-ease-out: ease-out;
  --van-ease-in: ease-in;
  --van-border-color: var(--van-gray-3);
  --van-border-width: 1px;
  --van-radius-sm: .48309vw;
  --van-radius-md: .96618vw;
  --van-radius-lg: 1.93237vw;
  --van-radius-max: 241.30435vw
}
.van-theme-dark {
  --van-text-color: #f5f5f5;
  --van-text-color-2: #707070;
  --van-text-color-3: #4d4d4d;
  --van-border-color: #3a3a3c;
  --van-active-color: #3a3a3c;
  --van-background: #000;
  --van-background-2: #1c1c1e;
  --van-background-3: #37363b
}
html {
  -webkit-tap-highlight-color: transparent
}
body {
  margin: 0;
  font-family: var(--van-base-font)
}
a {
  text-decoration: none
}
input, button, textarea {
  color: inherit;
  font: inherit
}
a:focus, input:focus, button:focus, textarea:focus, [class*=van-]:focus {
  outline: none
}
ol, ul {
  margin: 0;
  padding: 0;
  list-style: none
}
@-webkit-keyframes van-slide-up-enter {
  0% {
    transform: translate3d(0, 100%, 0)
  }
}
@keyframes van-slide-up-enter {
  0% {
    transform: translate3d(0, 100%, 0)
  }
}
@-webkit-keyframes van-slide-up-leave {
  to {
    transform: translate3d(0, 100%, 0)
  }
}
@keyframes van-slide-up-leave {
  to {
    transform: translate3d(0, 100%, 0)
  }
}
@-webkit-keyframes van-slide-down-enter {
  0% {
    transform: translate3d(0, -100%, 0)
  }
}
@keyframes van-slide-down-enter {
  0% {
    transform: translate3d(0, -100%, 0)
  }
}
@-webkit-keyframes van-slide-down-leave {
  to {
    transform: translate3d(0, -100%, 0)
  }
}
@keyframes van-slide-down-leave {
  to {
    transform: translate3d(0, -100%, 0)
  }
}
@-webkit-keyframes van-slide-left-enter {
  0% {
    transform: translate3d(-100%, 0, 0)
  }
}
@keyframes van-slide-left-enter {
  0% {
    transform: translate3d(-100%, 0, 0)
  }
}
@-webkit-keyframes van-slide-left-leave {
  to {
    transform: translate3d(-100%, 0, 0)
  }
}
@keyframes van-slide-left-leave {
  to {
    transform: translate3d(-100%, 0, 0)
  }
}
@-webkit-keyframes van-slide-right-enter {
  0% {
    transform: translate3d(100%, 0, 0)
  }
}
@keyframes van-slide-right-enter {
  0% {
    transform: translate3d(100%, 0, 0)
  }
}
@-webkit-keyframes van-slide-right-leave {
  to {
    transform: translate3d(100%, 0, 0)
  }
}
@keyframes van-slide-right-leave {
  to {
    transform: translate3d(100%, 0, 0)
  }
}
@-webkit-keyframes van-fade-in {
  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
@keyframes van-fade-in {
  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
@-webkit-keyframes van-fade-out {
  0% {
    opacity: 1
  }
  to {
    opacity: 0
  }
}
@keyframes van-fade-out {
  0% {
    opacity: 1
  }
  to {
    opacity: 0
  }
}
@-webkit-keyframes van-rotate {
  0% {
    transform: rotate(0)
  }
  to {
    transform: rotate(360deg)
  }
}
@keyframes van-rotate {
  0% {
    transform: rotate(0)
  }
  to {
    transform: rotate(360deg)
  }
}
.van-fade-enter-active {
  -webkit-animation: var(--van-duration-base) van-fade-in both var(--van-ease-out);
  animation: var(--van-duration-base) van-fade-in both var(--van-ease-out)
}
.van-fade-leave-active {
  -webkit-animation: var(--van-duration-base) van-fade-out both var(--van-ease-in);
  animation: var(--van-duration-base) van-fade-out both var(--van-ease-in)
}
.van-slide-up-enter-active {
  -webkit-animation: van-slide-up-enter var(--van-duration-base) both var(--van-ease-out);
  animation: van-slide-up-enter var(--van-duration-base) both var(--van-ease-out)
}
.van-slide-up-leave-active {
  -webkit-animation: van-slide-up-leave var(--van-duration-base) both var(--van-ease-in);
  animation: van-slide-up-leave var(--van-duration-base) both var(--van-ease-in)
}
.van-slide-down-enter-active {
  -webkit-animation: van-slide-down-enter var(--van-duration-base) both var(--van-ease-out);
  animation: van-slide-down-enter var(--van-duration-base) both var(--van-ease-out)
}
.van-slide-down-leave-active {
  -webkit-animation: van-slide-down-leave var(--van-duration-base) both var(--van-ease-in);
  animation: van-slide-down-leave var(--van-duration-base) both var(--van-ease-in)
}
.van-slide-left-enter-active {
  -webkit-animation: van-slide-left-enter var(--van-duration-base) both var(--van-ease-out);
  animation: van-slide-left-enter var(--van-duration-base) both var(--van-ease-out)
}
.van-slide-left-leave-active {
  -webkit-animation: van-slide-left-leave var(--van-duration-base) both var(--van-ease-in);
  animation: van-slide-left-leave var(--van-duration-base) both var(--van-ease-in)
}
.van-slide-right-enter-active {
  -webkit-animation: van-slide-right-enter var(--van-duration-base) both var(--van-ease-out);
  animation: van-slide-right-enter var(--van-duration-base) both var(--van-ease-out)
}
.van-slide-right-leave-active {
  -webkit-animation: van-slide-right-leave var(--van-duration-base) both var(--van-ease-in);
  animation: van-slide-right-leave var(--van-duration-base) both var(--van-ease-in)
}
.van-clearfix:after {
  display: table;
  clear: both;
  content: ""
}
.van-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis
}
.van-multi-ellipsis--l2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical
}
.van-multi-ellipsis--l3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical
}
.van-safe-area-top {
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top)
}
.van-safe-area-bottom {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom)
}
.van-haptics-feedback {
  cursor: pointer
}
.van-haptics-feedback:active {
  opacity: var(--van-active-opacity)
}
[class*=van-hairline]:after {
  position: absolute;
  box-sizing: border-box;
  content: " ";
  pointer-events: none;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  border: 0 solid var(--van-border-color);
  transform: scale(.5)
}
.van-hairline, .van-hairline--top, .van-hairline--left, .van-hairline--right, .van-hairline--bottom, .van-hairline--surround, .van-hairline--top-bottom {
  position: relative
}
.van-hairline--top:after {
  border-top-width: var(--van-border-width)
}
.van-hairline--left:after {
  border-left-width: var(--van-border-width)
}
.van-hairline--right:after {
  border-right-width: var(--van-border-width)
}
.van-hairline--bottom:after {
  border-bottom-width: var(--van-border-width)
}
.van-hairline--top-bottom:after, .van-hairline-unset--top-bottom:after {
  border-width: var(--van-border-width) 0
}
.van-hairline--surround:after {
  border-width: var(--van-border-width)
}
:root {
  --van-badge-size: 3.86473vw;
  --van-badge-color: var(--van-white);
  --van-badge-padding: 0 .72464vw;
  --van-badge-font-size: var(--van-font-size-sm);
  --van-badge-font-weight: var(--van-font-bold);
  --van-badge-border-width: var(--van-border-width);
  --van-badge-background: var(--van-danger-color);
  --van-badge-dot-color: var(--van-danger-color);
  --van-badge-dot-size: 1.93237vw;
  --van-badge-font: -apple-system-font, helvetica neue, arial, sans-serif
}
.van-badge {
  display: inline-block;
  box-sizing: border-box;
  min-width: var(--van-badge-size);
  padding: var(--van-badge-padding);
  color: var(--van-badge-color);
  font-weight: var(--van-badge-font-weight);
  font-size: var(--van-badge-font-size);
  font-family: var(--van-badge-font);
  line-height: 1.2;
  text-align: center;
  background: var(--van-badge-background);
  border: var(--van-badge-border-width) solid var(--van-background-2);
  border-radius: var(--van-radius-max)
}
.van-badge--fixed {
  position: absolute;
  transform-origin: 100%
}
.van-badge--top-left {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%)
}
.van-badge--top-right {
  top: 0;
  right: 0;
  transform: translate(50%, -50%)
}
.van-badge--bottom-left {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%)
}
.van-badge--bottom-right {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%)
}
.van-badge--dot {
  width: var(--van-badge-dot-size);
  min-width: 0;
  height: var(--van-badge-dot-size);
  background: var(--van-badge-dot-color);
  border-radius: 100%;
  border: none;
  padding: 0
}
.van-badge__wrapper {
  position: relative;
  display: inline-block
}
.van-icon {
  position: relative;
  display: inline-block;
  font: 3.38164vw/1 vant-icon;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased
}
.van-icon:before {
  display: inline-block
}
.van-icon-exchange:before {
  content: "\e6af"
}
.van-icon-eye:before {
  content: "\e6b0"
}
.van-icon-enlarge:before {
  content: "\e6b1"
}
.van-icon-expand-o:before {
  content: "\e6b2"
}
.van-icon-eye-o:before {
  content: "\e6b3"
}
.van-icon-expand:before {
  content: "\e6b4"
}
.van-icon-filter-o:before {
  content: "\e6b5"
}
.van-icon-fire:before {
  content: "\e6b6"
}
.van-icon-fail:before {
  content: "\e6b7"
}
.van-icon-failure:before {
  content: "\e6b8"
}
.van-icon-fire-o:before {
  content: "\e6b9"
}
.van-icon-flag-o:before {
  content: "\e6ba"
}
.van-icon-font:before {
  content: "\e6bb"
}
.van-icon-font-o:before {
  content: "\e6bc"
}
.van-icon-gem-o:before {
  content: "\e6bd"
}
.van-icon-flower-o:before {
  content: "\e6be"
}
.van-icon-gem:before {
  content: "\e6bf"
}
.van-icon-gift-card:before {
  content: "\e6c0"
}
.van-icon-friends:before {
  content: "\e6c1"
}
.van-icon-friends-o:before {
  content: "\e6c2"
}
.van-icon-gold-coin:before {
  content: "\e6c3"
}
.van-icon-gold-coin-o:before {
  content: "\e6c4"
}
.van-icon-good-job-o:before {
  content: "\e6c5"
}
.van-icon-gift:before {
  content: "\e6c6"
}
.van-icon-gift-o:before {
  content: "\e6c7"
}
.van-icon-gift-card-o:before {
  content: "\e6c8"
}
.van-icon-good-job:before {
  content: "\e6c9"
}
.van-icon-home-o:before {
  content: "\e6ca"
}
.van-icon-goods-collect:before {
  content: "\e6cb"
}
.van-icon-graphic:before {
  content: "\e6cc"
}
.van-icon-goods-collect-o:before {
  content: "\e6cd"
}
.van-icon-hot-o:before {
  content: "\e6ce"
}
.van-icon-info:before {
  content: "\e6cf"
}
.van-icon-hotel-o:before {
  content: "\e6d0"
}
.van-icon-info-o:before {
  content: "\e6d1"
}
.van-icon-hot-sale-o:before {
  content: "\e6d2"
}
.van-icon-hot:before {
  content: "\e6d3"
}
.van-icon-like:before {
  content: "\e6d4"
}
.van-icon-idcard:before {
  content: "\e6d5"
}
.van-icon-invitation:before {
  content: "\e6d6"
}
.van-icon-like-o:before {
  content: "\e6d7"
}
.van-icon-hot-sale:before {
  content: "\e6d8"
}
.van-icon-location-o:before {
  content: "\e6d9"
}
.van-icon-location:before {
  content: "\e6da"
}
.van-icon-label:before {
  content: "\e6db"
}
.van-icon-lock:before {
  content: "\e6dc"
}
.van-icon-label-o:before {
  content: "\e6dd"
}
.van-icon-map-marked:before {
  content: "\e6de"
}
.van-icon-logistics:before {
  content: "\e6df"
}
.van-icon-manager:before {
  content: "\e6e0"
}
.van-icon-more:before {
  content: "\e6e1"
}
.van-icon-live:before {
  content: "\e6e2"
}
.van-icon-manager-o:before {
  content: "\e6e3"
}
.van-icon-medal:before {
  content: "\e6e4"
}
.van-icon-more-o:before {
  content: "\e6e5"
}
.van-icon-music-o:before {
  content: "\e6e6"
}
.van-icon-music:before {
  content: "\e6e7"
}
.van-icon-new-arrival-o:before {
  content: "\e6e8"
}
.van-icon-medal-o:before {
  content: "\e6e9"
}
.van-icon-new-o:before {
  content: "\e6ea"
}
.van-icon-free-postage:before {
  content: "\e6eb"
}
.van-icon-newspaper-o:before {
  content: "\e6ec"
}
.van-icon-new-arrival:before {
  content: "\e6ed"
}
.van-icon-minus:before {
  content: "\e6ee"
}
.van-icon-orders-o:before {
  content: "\e6ef"
}
.van-icon-new:before {
  content: "\e6f0"
}
.van-icon-paid:before {
  content: "\e6f1"
}
.van-icon-notes-o:before {
  content: "\e6f2"
}
.van-icon-other-pay:before {
  content: "\e6f3"
}
.van-icon-pause-circle:before {
  content: "\e6f4"
}
.van-icon-pause:before {
  content: "\e6f5"
}
.van-icon-pause-circle-o:before {
  content: "\e6f6"
}
.van-icon-peer-pay:before {
  content: "\e6f7"
}
.van-icon-pending-payment:before {
  content: "\e6f8"
}
.van-icon-passed:before {
  content: "\e6f9"
}
.van-icon-plus:before {
  content: "\e6fa"
}
.van-icon-phone-circle-o:before {
  content: "\e6fb"
}
.van-icon-phone-o:before {
  content: "\e6fc"
}
.van-icon-printer:before {
  content: "\e6fd"
}
.van-icon-photo-fail:before {
  content: "\e6fe"
}
.van-icon-phone:before {
  content: "\e6ff"
}
.van-icon-photo-o:before {
  content: "\e700"
}
.van-icon-play-circle:before {
  content: "\e701"
}
.van-icon-play:before {
  content: "\e702"
}
.van-icon-phone-circle:before {
  content: "\e703"
}
.van-icon-point-gift-o:before {
  content: "\e704"
}
.van-icon-point-gift:before {
  content: "\e705"
}
.van-icon-play-circle-o:before {
  content: "\e706"
}
.van-icon-shrink:before {
  content: "\e707"
}
.van-icon-photo:before {
  content: "\e708"
}
.van-icon-qr:before {
  content: "\e709"
}
.van-icon-qr-invalid:before {
  content: "\e70a"
}
.van-icon-question-o:before {
  content: "\e70b"
}
.van-icon-revoke:before {
  content: "\e70c"
}
.van-icon-replay:before {
  content: "\e70d"
}
.van-icon-service:before {
  content: "\e70e"
}
.van-icon-question:before {
  content: "\e70f"
}
.van-icon-search:before {
  content: "\e710"
}
.van-icon-refund-o:before {
  content: "\e711"
}
.van-icon-service-o:before {
  content: "\e712"
}
.van-icon-scan:before {
  content: "\e713"
}
.van-icon-share:before {
  content: "\e714"
}
.van-icon-send-gift-o:before {
  content: "\e715"
}
.van-icon-share-o:before {
  content: "\e716"
}
.van-icon-setting:before {
  content: "\e717"
}
.van-icon-points:before {
  content: "\e718"
}
.van-icon-photograph:before {
  content: "\e719"
}
.van-icon-shop:before {
  content: "\e71a"
}
.van-icon-shop-o:before {
  content: "\e71b"
}
.van-icon-shop-collect-o:before {
  content: "\e71c"
}
.van-icon-shop-collect:before {
  content: "\e71d"
}
.van-icon-smile:before {
  content: "\e71e"
}
.van-icon-shopping-cart-o:before {
  content: "\e71f"
}
.van-icon-sign:before {
  content: "\e720"
}
.van-icon-sort:before {
  content: "\e721"
}
.van-icon-star-o:before {
  content: "\e722"
}
.van-icon-smile-comment-o:before {
  content: "\e723"
}
.van-icon-stop:before {
  content: "\e724"
}
.van-icon-stop-circle-o:before {
  content: "\e725"
}
.van-icon-smile-o:before {
  content: "\e726"
}
.van-icon-star:before {
  content: "\e727"
}
.van-icon-success:before {
  content: "\e728"
}
.van-icon-stop-circle:before {
  content: "\e729"
}
.van-icon-records:before {
  content: "\e72a"
}
.van-icon-shopping-cart:before {
  content: "\e72b"
}
.van-icon-tosend:before {
  content: "\e72c"
}
.van-icon-todo-list:before {
  content: "\e72d"
}
.van-icon-thumb-circle-o:before {
  content: "\e72e"
}
.van-icon-thumb-circle:before {
  content: "\e72f"
}
.van-icon-umbrella-circle:before {
  content: "\e730"
}
.van-icon-underway:before {
  content: "\e731"
}
.van-icon-upgrade:before {
  content: "\e732"
}
.van-icon-todo-list-o:before {
  content: "\e733"
}
.van-icon-tv-o:before {
  content: "\e734"
}
.van-icon-underway-o:before {
  content: "\e735"
}
.van-icon-user-o:before {
  content: "\e736"
}
.van-icon-vip-card-o:before {
  content: "\e737"
}
.van-icon-vip-card:before {
  content: "\e738"
}
.van-icon-send-gift:before {
  content: "\e739"
}
.van-icon-wap-home:before {
  content: "\e73a"
}
.van-icon-wap-nav:before {
  content: "\e73b"
}
.van-icon-volume-o:before {
  content: "\e73c"
}
.van-icon-video:before {
  content: "\e73d"
}
.van-icon-wap-home-o:before {
  content: "\e73e"
}
.van-icon-volume:before {
  content: "\e73f"
}
.van-icon-warning:before {
  content: "\e740"
}
.van-icon-weapp-nav:before {
  content: "\e741"
}
.van-icon-wechat-pay:before {
  content: "\e742"
}
.van-icon-warning-o:before {
  content: "\e743"
}
.van-icon-wechat:before {
  content: "\e744"
}
.van-icon-setting-o:before {
  content: "\e745"
}
.van-icon-youzan-shield:before {
  content: "\e746"
}
.van-icon-warn-o:before {
  content: "\e747"
}
.van-icon-smile-comment:before {
  content: "\e748"
}
.van-icon-user-circle-o:before {
  content: "\e749"
}
.van-icon-video-o:before {
  content: "\e74a"
}
.van-icon-add-square:before {
  content: "\e65c"
}
.van-icon-add:before {
  content: "\e65d"
}
.van-icon-arrow-down:before {
  content: "\e65e"
}
.van-icon-arrow-up:before {
  content: "\e65f"
}
.van-icon-arrow:before {
  content: "\e660"
}
.van-icon-after-sale:before {
  content: "\e661"
}
.van-icon-add-o:before {
  content: "\e662"
}
.van-icon-alipay:before {
  content: "\e663"
}
.van-icon-ascending:before {
  content: "\e664"
}
.van-icon-apps-o:before {
  content: "\e665"
}
.van-icon-aim:before {
  content: "\e666"
}
.van-icon-award:before {
  content: "\e667"
}
.van-icon-arrow-left:before {
  content: "\e668"
}
.van-icon-award-o:before {
  content: "\e669"
}
.van-icon-audio:before {
  content: "\e66a"
}
.van-icon-bag-o:before {
  content: "\e66b"
}
.van-icon-balance-list:before {
  content: "\e66c"
}
.van-icon-back-top:before {
  content: "\e66d"
}
.van-icon-bag:before {
  content: "\e66e"
}
.van-icon-balance-pay:before {
  content: "\e66f"
}
.van-icon-balance-o:before {
  content: "\e670"
}
.van-icon-bar-chart-o:before {
  content: "\e671"
}
.van-icon-bars:before {
  content: "\e672"
}
.van-icon-balance-list-o:before {
  content: "\e673"
}
.van-icon-birthday-cake-o:before {
  content: "\e674"
}
.van-icon-bookmark:before {
  content: "\e675"
}
.van-icon-bill:before {
  content: "\e676"
}
.van-icon-bell:before {
  content: "\e677"
}
.van-icon-browsing-history-o:before {
  content: "\e678"
}
.van-icon-browsing-history:before {
  content: "\e679"
}
.van-icon-bookmark-o:before {
  content: "\e67a"
}
.van-icon-bulb-o:before {
  content: "\e67b"
}
.van-icon-bullhorn-o:before {
  content: "\e67c"
}
.van-icon-bill-o:before {
  content: "\e67d"
}
.van-icon-calendar-o:before {
  content: "\e67e"
}
.van-icon-brush-o:before {
  content: "\e67f"
}
.van-icon-card:before {
  content: "\e680"
}
.van-icon-cart-o:before {
  content: "\e681"
}
.van-icon-cart-circle:before {
  content: "\e682"
}
.van-icon-cart-circle-o:before {
  content: "\e683"
}
.van-icon-cart:before {
  content: "\e684"
}
.van-icon-cash-on-deliver:before {
  content: "\e685"
}
.van-icon-cash-back-record:before {
  content: "\e686"
}
.van-icon-cashier-o:before {
  content: "\e687"
}
.van-icon-chart-trending-o:before {
  content: "\e688"
}
.van-icon-certificate:before {
  content: "\e689"
}
.van-icon-chat:before {
  content: "\e68a"
}
.van-icon-clear:before {
  content: "\e68b"
}
.van-icon-chat-o:before {
  content: "\e68c"
}
.van-icon-checked:before {
  content: "\e68d"
}
.van-icon-clock:before {
  content: "\e68e"
}
.van-icon-clock-o:before {
  content: "\e68f"
}
.van-icon-close:before {
  content: "\e690"
}
.van-icon-closed-eye:before {
  content: "\e691"
}
.van-icon-circle:before {
  content: "\e692"
}
.van-icon-cluster-o:before {
  content: "\e693"
}
.van-icon-column:before {
  content: "\e694"
}
.van-icon-comment-circle-o:before {
  content: "\e695"
}
.van-icon-cluster:before {
  content: "\e696"
}
.van-icon-comment:before {
  content: "\e697"
}
.van-icon-comment-o:before {
  content: "\e698"
}
.van-icon-comment-circle:before {
  content: "\e699"
}
.van-icon-completed:before {
  content: "\e69a"
}
.van-icon-credit-pay:before {
  content: "\e69b"
}
.van-icon-coupon:before {
  content: "\e69c"
}
.van-icon-debit-pay:before {
  content: "\e69d"
}
.van-icon-coupon-o:before {
  content: "\e69e"
}
.van-icon-contact:before {
  content: "\e69f"
}
.van-icon-descending:before {
  content: "\e6a0"
}
.van-icon-desktop-o:before {
  content: "\e6a1"
}
.van-icon-diamond-o:before {
  content: "\e6a2"
}
.van-icon-description:before {
  content: "\e6a3"
}
.van-icon-delete:before {
  content: "\e6a4"
}
.van-icon-diamond:before {
  content: "\e6a5"
}
.van-icon-delete-o:before {
  content: "\e6a6"
}
.van-icon-cross:before {
  content: "\e6a7"
}
.van-icon-edit:before {
  content: "\e6a8"
}
.van-icon-ellipsis:before {
  content: "\e6a9"
}
.van-icon-down:before {
  content: "\e6aa"
}
.van-icon-discount:before {
  content: "\e6ab"
}
.van-icon-ecard-pay:before {
  content: "\e6ac"
}
.van-icon-envelop-o:before {
  content: "\e6ae"
}
.van-icon-shield-o:before {
  content: "\e74b"
}
.van-icon-guide-o:before {
  content: "\e74c"
}
.van-icon-cash-o:before {
  content: "\e74d"
}
.van-icon-qq:before {
  content: "\e74e"
}
.van-icon-wechat-moments:before {
  content: "\e74f"
}
.van-icon-weibo:before {
  content: "\e750"
}
.van-icon-link-o:before {
  content: "\e751"
}
.van-icon-miniprogram-o:before {
  content: "\e752"
}
@font-face {
  font-weight: 400;
  font-family: vant-icon;
  font-style: normal;
  font-display: auto;
  src: url(data:font/woff2;charset=utf-8;base64,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) format("woff2"), url(//at.alicdn.com/t/font_2553510_iv4v8nulyz.woff?t=1649083952952) format("woff"), url(//at.alicdn.com/t/font_2553510_iv4v8nulyz.ttf?t=1649083952952) format("truetype")
}
.van-icon__image {
  display: block;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
  object-fit: contain
}
:root {
  --van-loading-text-color: var(--van-text-color-2);
  --van-loading-text-font-size: var(--van-font-size-md);
  --van-loading-spinner-color: var(--van-gray-5);
  --van-loading-spinner-size: 7.24638vw;
  --van-loading-spinner-duration: .8s
}
.van-loading {
  position: relative;
  color: var(--van-loading-spinner-color);
  font-size: 0;
  vertical-align: middle
}
.van-loading__spinner {
  position: relative;
  display: inline-block;
  width: var(--van-loading-spinner-size);
  max-width: 100%;
  height: var(--van-loading-spinner-size);
  max-height: 100%;
  vertical-align: middle;
  -webkit-animation: van-rotate var(--van-loading-spinner-duration) linear infinite;
  animation: van-rotate var(--van-loading-spinner-duration) linear infinite
}
.van-loading__spinner--spinner {
  -webkit-animation-timing-function: steps(12);
  animation-timing-function: steps(12)
}
.van-loading__spinner--circular {
  -webkit-animation-duration: 2s;
  animation-duration: 2s
}
.van-loading__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}
.van-loading__line:before {
  display: block;
  width: .48309vw;
  height: 25%;
  margin: 0 auto;
  background-color: currentColor;
  border-radius: 40%;
  content: " "
}
.van-loading__circular {
  display: block;
  width: 100%;
  height: 100%
}
.van-loading__circular circle {
  -webkit-animation: van-circular 1.5s ease-in-out infinite;
  animation: van-circular 1.5s ease-in-out infinite;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round
}
.van-loading__text {
  display: inline-block;
  margin-left: var(--van-padding-xs);
  color: var(--van-loading-text-color);
  font-size: var(--van-loading-text-font-size);
  vertical-align: middle
}
.van-loading--vertical {
  display: flex;
  flex-direction: column;
  align-items: center
}
.van-loading--vertical .van-loading__text {
  margin: var(--van-padding-xs) 0 0
}
@-webkit-keyframes van-circular {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40
  }
  to {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120
  }
}
@keyframes van-circular {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40
  }
  to {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120
  }
}
.van-loading__line--1 {
  transform: rotate(30deg);
  opacity: 1
}
.van-loading__line--2 {
  transform: rotate(60deg);
  opacity: .9375
}
.van-loading__line--3 {
  transform: rotate(90deg);
  opacity: .875
}
.van-loading__line--4 {
  transform: rotate(120deg);
  opacity: .8125
}
.van-loading__line--5 {
  transform: rotate(150deg);
  opacity: .75
}
.van-loading__line--6 {
  transform: rotate(180deg);
  opacity: .6875
}
.van-loading__line--7 {
  transform: rotate(210deg);
  opacity: .625
}
.van-loading__line--8 {
  transform: rotate(240deg);
  opacity: .5625
}
.van-loading__line--9 {
  transform: rotate(270deg);
  opacity: .5
}
.van-loading__line--10 {
  transform: rotate(300deg);
  opacity: .4375
}
.van-loading__line--11 {
  transform: rotate(330deg);
  opacity: .375
}
.van-loading__line--12 {
  transform: rotate(360deg);
  opacity: .3125
}
:root {
  --van-button-mini-height: 5.7971vw;
  --van-button-mini-padding: 0 var(--van-padding-base);
  --van-button-mini-font-size: var(--van-font-size-xs);
  --van-button-small-height: 7.72947vw;
  --van-button-small-padding: 0 var(--van-padding-xs);
  --van-button-small-font-size: var(--van-font-size-sm);
  --van-button-normal-padding: 0 3.62319vw;
  --van-button-normal-font-size: var(--van-font-size-md);
  --van-button-large-height: 12.07729vw;
  --van-button-default-height: 10.62802vw;
  --van-button-default-line-height: 1.2;
  --van-button-default-font-size: var(--van-font-size-lg);
  --van-button-default-color: var(--van-text-color);
  --van-button-default-background: var(--van-background-2);
  --van-button-default-border-color: var(--van-gray-4);
  --van-button-primary-color: var(--van-white);
  --van-button-primary-background: var(--van-primary-color);
  --van-button-primary-border-color: var(--van-primary-color);
  --van-button-success-color: var(--van-white);
  --van-button-success-background: var(--van-success-color);
  --van-button-success-border-color: var(--van-success-color);
  --van-button-danger-color: var(--van-white);
  --van-button-danger-background: var(--van-danger-color);
  --van-button-danger-border-color: var(--van-danger-color);
  --van-button-warning-color: var(--van-white);
  --van-button-warning-background: var(--van-warning-color);
  --van-button-warning-border-color: var(--van-warning-color);
  --van-button-border-width: var(--van-border-width);
  --van-button-radius: var(--van-radius-md);
  --van-button-round-radius: var(--van-radius-max);
  --van-button-plain-background: var(--van-white);
  --van-button-disabled-opacity: var(--van-disabled-opacity);
  --van-button-icon-size: 1.2em;
  --van-button-loading-icon-size: 4.83092vw
}
.van-theme-dark {
  --van-button-plain-background: transparent
}
.van-button {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  height: var(--van-button-default-height);
  margin: 0;
  padding: 0;
  font-size: var(--van-button-default-font-size);
  line-height: var(--van-button-default-line-height);
  text-align: center;
  border-radius: var(--van-button-radius);
  cursor: pointer;
  transition: opacity var(--van-duration-fast);
  -webkit-appearance: none;
  -webkit-font-smoothing: auto
}
.van-button:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: var(--van-black);
  border: inherit;
  border-color: var(--van-black);
  border-radius: inherit;
  transform: translate(-50%, -50%);
  opacity: 0;
  content: " "
}
.van-button:active:before {
  opacity: .1
}
.van-button--loading:before, .van-button--disabled:before {
  display: none
}
.van-button--default {
  color: var(--van-button-default-color);
  background: var(--van-button-default-background);
  border: var(--van-button-border-width) solid var(--van-button-default-border-color)
}
.van-button--primary {
  color: var(--van-button-primary-color);
  background: var(--van-button-primary-background);
  border: var(--van-button-border-width) solid var(--van-button-primary-border-color)
}
.van-button--success {
  color: var(--van-button-success-color);
  background: var(--van-button-success-background);
  border: var(--van-button-border-width) solid var(--van-button-success-border-color)
}
.van-button--danger {
  color: var(--van-button-danger-color);
  background: var(--van-button-danger-background);
  border: var(--van-button-border-width) solid var(--van-button-danger-border-color)
}
.van-button--warning {
  color: var(--van-button-warning-color);
  background: var(--van-button-warning-background);
  border: var(--van-button-border-width) solid var(--van-button-warning-border-color)
}
.van-button--plain {
  background: var(--van-button-plain-background)
}
.van-button--plain.van-button--primary {
  color: var(--van-button-primary-background)
}
.van-button--plain.van-button--success {
  color: var(--van-button-success-background)
}
.van-button--plain.van-button--danger {
  color: var(--van-button-danger-background)
}
.van-button--plain.van-button--warning {
  color: var(--van-button-warning-background)
}
.van-button--large {
  width: 100%;
  height: var(--van-button-large-height)
}
.van-button--normal {
  padding: var(--van-button-normal-padding);
  font-size: var(--van-button-normal-font-size)
}
.van-button--small {
  height: var(--van-button-small-height);
  padding: var(--van-button-small-padding);
  font-size: var(--van-button-small-font-size)
}
.van-button__loading {
  color: inherit;
  font-size: inherit
}
.van-button__loading .van-loading__spinner {
  color: currentColor;
  width: var(--van-button-loading-icon-size);
  height: var(--van-button-loading-icon-size)
}
.van-button--mini {
  height: var(--van-button-mini-height);
  padding: var(--van-button-mini-padding);
  font-size: var(--van-button-mini-font-size)
}
.van-button--mini + .van-button--mini {
  margin-left: var(--van-padding-base)
}
.van-button--block {
  display: block;
  width: 100%
}
.van-button--disabled {
  cursor: not-allowed;
  opacity: var(--van-button-disabled-opacity)
}
.van-button--loading {
  cursor: default
}
.van-button--round {
  border-radius: var(--van-button-round-radius)
}
.van-button--square {
  border-radius: 0
}
.van-button__content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%
}
.van-button__content:before {
  content: " "
}
.van-button__icon {
  font-size: var(--van-button-icon-size);
  line-height: inherit
}
.van-button__icon + .van-button__text, .van-button__loading + .van-button__text, .van-button__text + .van-button__icon, .van-button__text + .van-button__loading {
  margin-left: var(--van-padding-base)
}
.van-button--hairline {
  border-width: 0
}
.van-button--hairline:after {
  border-color: inherit;
  border-radius: calc(var(--van-button-radius) * 2)
}
.van-button--hairline.van-button--round:after {
  border-radius: var(--van-button-round-radius)
}
.van-button--hairline.van-button--square:after {
  border-radius: 0
}
.main-btn[data-v-fb16c6a1] {
  box-shadow: 0 1.20773vw 2.41546vw rgba(195, 167, 105, .2)
}
.app-result[data-v-f3070ca6] {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column
}
.app-result-img[data-v-f3070ca6] {
  width: 48.30918vw;
  height: 36.23188vw
}
.app-result-title[data-v-f3070ca6] {
  width: 48.30918vw;
  font-size: 5.31401vw;
  font-weight: 600;
  color: #070c17;
  line-height: 7.24638vw;
  text-align: center;
  margin: 4.10628vw auto 1.69082vw
}
.app-result-subtitle[data-v-f3070ca6] {
  text-align: center;
  width: 48.30918vw;
  font-size: 3.38164vw;
  font-weight: 600;
  color: rgba(7, 12, 23, .3);
  line-height: 4.83092vw;
  margin-bottom: 3.86473vw
}
.app-result-btn[data-v-f3070ca6] {
  min-width: 28.98551vw;
  margin-bottom: 3.86473vw
}
.app-result img[data-v-f3070ca6] {
  width: 100%;
  height: 100%;
  display: block
}
:root {
  --van-nav-bar-height: 11.11111vw;
  --van-nav-bar-background: var(--van-background-2);
  --van-nav-bar-arrow-size: 3.86473vw;
  --van-nav-bar-icon-color: var(--van-primary-color);
  --van-nav-bar-text-color: var(--van-primary-color);
  --van-nav-bar-title-font-size: var(--van-font-size-lg);
  --van-nav-bar-title-text-color: var(--van-text-color);
  --van-nav-bar-z-index: 1
}
.van-nav-bar {
  position: relative;
  z-index: var(--van-nav-bar-z-index);
  line-height: var(--van-line-height-lg);
  text-align: center;
  background: var(--van-nav-bar-background);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}
.van-nav-bar--fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}
.van-nav-bar--safe-area-inset-top {
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top)
}
.van-nav-bar .van-icon {
  color: var(--van-nav-bar-icon-color)
}
.van-nav-bar__content {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--van-nav-bar-height)
}
.van-nav-bar__arrow {
  margin-right: var(--van-padding-base);
  font-size: var(--van-nav-bar-arrow-size)
}
.van-nav-bar__title {
  max-width: 60%;
  margin: 0 auto;
  color: var(--van-nav-bar-title-text-color);
  font-weight: var(--van-font-bold);
  font-size: var(--van-nav-bar-title-font-size)
}
.van-nav-bar__left, .van-nav-bar__right {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 0 var(--van-padding-md);
  font-size: var(--van-font-size-md)
}
.van-nav-bar__left {
  left: 0
}
.van-nav-bar__right {
  right: 0
}
.van-nav-bar__text {
  color: var(--van-nav-bar-text-color)
}
.app-nav-bar .van-nav-bar__right {
  font-size: 3.86473vw
}
.hairline-none.van-hairline--bottom:after {
  border-bottom-width: 0 !important
}
.agreement-container[data-v-1584be89] {
  height: 100vh;
  overflow-x: hidden
}
.iframe[data-v-1584be89] {
  width: 100%;
  height: calc(100% - 12.07729vw);
  margin: 0;
  padding: 0;
  border: 0;
  overflow-x: hidden
}
.iframe.header-show[data-v-1584be89] {
  margin-top: 9.66184vw
}
:root {
  --van-overlay-z-index: 1;
  --van-overlay-background: rgba(0, 0, 0, .7)
}
.van-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--van-overlay-z-index);
  width: 100%;
  height: 100%;
  background: var(--van-overlay-background)
}
:root {
  --van-popup-background: var(--van-background-2);
  --van-popup-transition: transform var(--van-duration-base);
  --van-popup-round-radius: 3.86473vw;
  --van-popup-close-icon-size: 5.31401vw;
  --van-popup-close-icon-color: var(--van-gray-5);
  --van-popup-close-icon-margin: 3.86473vw;
  --van-popup-close-icon-z-index: 1
}
.van-overflow-hidden {
  overflow: hidden !important
}
.van-popup {
  position: fixed;
  max-height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
  background: var(--van-popup-background);
  transition: var(--van-popup-transition);
  -webkit-overflow-scrolling: touch
}
.van-popup--center {
  top: 50%;
  left: 0;
  right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100vw - var(--van-padding-md) * 2);
  margin: 0 auto;
  transform: translateY(-50%)
}
.van-popup--center.van-popup--round {
  border-radius: var(--van-popup-round-radius)
}
.van-popup--top {
  top: 0;
  left: 0;
  width: 100%
}
.van-popup--top.van-popup--round {
  border-radius: 0 0 var(--van-popup-round-radius) var(--van-popup-round-radius)
}
.van-popup--right {
  top: 50%;
  right: 0;
  transform: translate3d(0, -50%, 0)
}
.van-popup--right.van-popup--round {
  border-radius: var(--van-popup-round-radius) 0 0 var(--van-popup-round-radius)
}
.van-popup--bottom {
  bottom: 0;
  left: 0;
  width: 100%
}
.van-popup--bottom.van-popup--round {
  border-radius: var(--van-popup-round-radius) var(--van-popup-round-radius) 0 0
}
.van-popup--left {
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0)
}
.van-popup--left.van-popup--round {
  border-radius: 0 var(--van-popup-round-radius) var(--van-popup-round-radius) 0
}
.van-popup-slide-top-enter-active, .van-popup-slide-left-enter-active, .van-popup-slide-right-enter-active, .van-popup-slide-bottom-enter-active {
  transition-timing-function: var(--van-ease-out)
}
.van-popup-slide-top-leave-active, .van-popup-slide-left-leave-active, .van-popup-slide-right-leave-active, .van-popup-slide-bottom-leave-active {
  transition-timing-function: var(--van-ease-in)
}
.van-popup-slide-top-enter-from, .van-popup-slide-top-leave-active {
  transform: translate3d(0, -100%, 0)
}
.van-popup-slide-right-enter-from, .van-popup-slide-right-leave-active {
  transform: translate3d(100%, -50%, 0)
}
.van-popup-slide-bottom-enter-from, .van-popup-slide-bottom-leave-active {
  transform: translate3d(0, 100%, 0)
}
.van-popup-slide-left-enter-from, .van-popup-slide-left-leave-active {
  transform: translate3d(-100%, -50%, 0)
}
.van-popup__close-icon {
  position: absolute;
  z-index: var(--van-popup-close-icon-z-index);
  color: var(--van-popup-close-icon-color);
  font-size: var(--van-popup-close-icon-size)
}
.van-popup__close-icon--top-left {
  top: var(--van-popup-close-icon-margin);
  left: var(--van-popup-close-icon-margin)
}
.van-popup__close-icon--top-right {
  top: var(--van-popup-close-icon-margin);
  right: var(--van-popup-close-icon-margin)
}
.van-popup__close-icon--bottom-left {
  bottom: var(--van-popup-close-icon-margin);
  left: var(--van-popup-close-icon-margin)
}
.van-popup__close-icon--bottom-right {
  right: var(--van-popup-close-icon-margin);
  bottom: var(--van-popup-close-icon-margin)
}
:root {
  --van-toast-max-width: 70%;
  --van-toast-font-size: var(--van-font-size-md);
  --van-toast-text-color: var(--van-white);
  --van-toast-loading-icon-color: var(--van-white);
  --van-toast-line-height: var(--van-line-height-md);
  --van-toast-radius: var(--van-radius-lg);
  --van-toast-background: rgba(0, 0, 0, .7);
  --van-toast-icon-size: 8.69565vw;
  --van-toast-text-min-width: 23.18841vw;
  --van-toast-text-padding: var(--van-padding-xs) var(--van-padding-sm);
  --van-toast-default-padding: var(--van-padding-md);
  --van-toast-default-width: 21.25604vw;
  --van-toast-default-min-height: 21.25604vw;
  --van-toast-position-top-distance: 20%;
  --van-toast-position-bottom-distance: 20%
}
.van-toast {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: content-box;
  transition: all var(--van-duration-fast);
  width: var(--van-toast-default-width);
  max-width: var(--van-toast-max-width);
  min-height: var(--van-toast-default-min-height);
  padding: var(--van-toast-default-padding);
  color: var(--van-toast-text-color);
  font-size: var(--van-toast-font-size);
  line-height: var(--van-toast-line-height);
  white-space: pre-wrap;
  word-break: break-all;
  text-align: center;
  background: var(--van-toast-background);
  border-radius: var(--van-toast-radius)
}
.van-toast--break-normal {
  word-break: normal;
  word-wrap: normal
}
.van-toast--break-word {
  word-break: normal;
  word-wrap: break-word
}
.van-toast--unclickable {
  overflow: hidden;
  cursor: not-allowed
}
.van-toast--unclickable * {
  pointer-events: none
}
.van-toast--text, .van-toast--html {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: var(--van-toast-text-min-width);
  min-height: 0;
  padding: var(--van-toast-text-padding)
}
.van-toast--text .van-toast__text, .van-toast--html .van-toast__text {
  margin-top: 0
}
.van-toast--top {
  top: var(--van-toast-position-top-distance)
}
.van-toast--bottom {
  top: auto;
  bottom: var(--van-toast-position-bottom-distance)
}
.van-toast__icon {
  font-size: var(--van-toast-icon-size)
}
.van-toast__loading {
  padding: var(--van-padding-base);
  color: var(--van-toast-loading-icon-color)
}
.van-toast__text {
  margin-top: var(--van-padding-xs)
}
:root {
  --van-action-bar-background: var(--van-background-2);
  --van-action-bar-height: 12.07729vw
}
.van-action-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  box-sizing: content-box;
  height: var(--van-action-bar-height);
  background: var(--van-action-bar-background)
}
:root {
  --van-action-bar-button-height: 9.66184vw;
  --van-action-bar-button-warning-color: var(--van-gradient-orange);
  --van-action-bar-button-danger-color: var(--van-gradient-red)
}
.van-action-bar-button {
  flex: 1;
  height: var(--van-action-bar-button-height);
  font-weight: var(--van-font-bold);
  font-size: var(--van-font-size-md);
  border: none;
  border-radius: 0
}
.van-action-bar-button--first {
  margin-left: 1.20773vw;
  border-top-left-radius: var(--van-radius-max);
  border-bottom-left-radius: var(--van-radius-max)
}
.van-action-bar-button--last {
  margin-right: 1.20773vw;
  border-top-right-radius: var(--van-radius-max);
  border-bottom-right-radius: var(--van-radius-max)
}
.van-action-bar-button--warning {
  background: var(--van-action-bar-button-warning-color)
}
.van-action-bar-button--danger {
  background: var(--van-action-bar-button-danger-color)
}
@media (max-width: 321px) {
  .van-action-bar-button {
    font-size: 13px
  }
}
:root {
  --van-dialog-width: 77.29469vw;
  --van-dialog-small-screen-width: 90%;
  --van-dialog-font-size: var(--van-font-size-lg);
  --van-dialog-transition: var(--van-duration-base);
  --van-dialog-radius: 3.86473vw;
  --van-dialog-background: var(--van-background-2);
  --van-dialog-header-font-weight: var(--van-font-bold);
  --van-dialog-header-line-height: 5.7971vw;
  --van-dialog-header-padding-top: 6.28019vw;
  --van-dialog-header-isolated-padding: var(--van-padding-lg) 0;
  --van-dialog-message-padding: var(--van-padding-lg);
  --van-dialog-message-font-size: var(--van-font-size-md);
  --van-dialog-message-line-height: var(--van-line-height-md);
  --van-dialog-message-max-height: 60vh;
  --van-dialog-has-title-message-text-color: var(--van-gray-7);
  --van-dialog-has-title-message-padding-top: var(--van-padding-xs);
  --van-dialog-button-height: 11.5942vw;
  --van-dialog-round-button-height: 8.69565vw;
  --van-dialog-confirm-button-text-color: var(--van-primary-color)
}
.van-dialog {
  top: 45%;
  width: var(--van-dialog-width);
  overflow: hidden;
  font-size: var(--van-dialog-font-size);
  background: var(--van-dialog-background);
  border-radius: var(--van-dialog-radius);
  backface-visibility: hidden;
  transition: var(--van-dialog-transition);
  transition-property: transform, opacity
}
@media (max-width: 321px) {
  .van-dialog {
    width: var(--van-dialog-small-screen-width)
  }
}
.van-dialog__header {
  color: var(--van-text-color);
  padding-top: var(--van-dialog-header-padding-top);
  font-weight: var(--van-dialog-header-font-weight);
  line-height: var(--van-dialog-header-line-height);
  text-align: center
}
.van-dialog__header--isolated {
  padding: var(--van-dialog-header-isolated-padding)
}
.van-dialog__content--isolated {
  display: flex;
  align-items: center;
  min-height: 25.12077vw
}
.van-dialog__message {
  color: var(--van-text-color);
  flex: 1;
  max-height: var(--van-dialog-message-max-height);
  padding: 6.28019vw var(--van-dialog-message-padding);
  overflow-y: auto;
  font-size: var(--van-dialog-message-font-size);
  line-height: var(--van-dialog-message-line-height);
  white-space: pre-wrap;
  text-align: center;
  word-wrap: break-word;
  -webkit-overflow-scrolling: touch
}
.van-dialog__message--has-title {
  padding-top: var(--van-dialog-has-title-message-padding-top);
  color: var(--van-dialog-has-title-message-text-color)
}
.van-dialog__message--left {
  text-align: left
}
.van-dialog__message--right {
  text-align: right
}
.van-dialog__message--justify {
  text-align: justify
}
.van-dialog__footer {
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}
.van-dialog__confirm, .van-dialog__cancel {
  flex: 1;
  height: var(--van-dialog-button-height);
  margin: 0;
  border: 0
}
.van-dialog__confirm, .van-dialog__confirm:active {
  color: var(--van-dialog-confirm-button-text-color)
}
.van-dialog--round-button .van-dialog__footer {
  position: relative;
  height: auto;
  padding: var(--van-padding-xs) var(--van-padding-lg) var(--van-padding-md)
}
.van-dialog--round-button .van-dialog__message {
  padding-bottom: var(--van-padding-md);
  color: var(--van-text-color)
}
.van-dialog--round-button .van-dialog__confirm, .van-dialog--round-button .van-dialog__cancel {
  height: var(--van-dialog-round-button-height)
}
.van-dialog--round-button .van-dialog__confirm {
  color: var(--van-white)
}
.van-dialog-bounce-enter-from {
  transform: translate3d(0, -50%, 0) scale(.7);
  opacity: 0
}
.van-dialog-bounce-leave-active {
  transform: translate3d(0, -50%, 0) scale(.9);
  opacity: 0
}
:root {
  --van-notify-text-color: var(--van-white);
  --van-notify-padding: var(--van-padding-xs) var(--van-padding-md);
  --van-notify-font-size: var(--van-font-size-md);
  --van-notify-line-height: var(--van-line-height-md);
  --van-notify-primary-background: var(--van-primary-color);
  --van-notify-success-background: var(--van-success-color);
  --van-notify-danger-background: var(--van-danger-color);
  --van-notify-warning-background: var(--van-warning-color)
}
.van-notify {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: var(--van-notify-padding);
  color: var(--van-notify-text-color);
  font-size: var(--van-notify-font-size);
  line-height: var(--van-notify-line-height);
  white-space: pre-wrap;
  text-align: center;
  word-wrap: break-word
}
.van-notify--primary {
  background: var(--van-notify-primary-background)
}
.van-notify--success {
  background: var(--van-notify-success-background)
}
.van-notify--danger {
  background: var(--van-notify-danger-background)
}
.van-notify--warning {
  background: var(--van-notify-warning-background)
}
:root {
  --van-image-placeholder-text-color: var(--van-text-color-2);
  --van-image-placeholder-font-size: var(--van-font-size-md);
  --van-image-placeholder-background: var(--van-background);
  --van-image-loading-icon-size: 7.72947vw;
  --van-image-loading-icon-color: var(--van-gray-4);
  --van-image-error-icon-size: 7.72947vw;
  --van-image-error-icon-color: var(--van-gray-4)
}
.van-image {
  position: relative;
  display: inline-block
}
.van-image--round {
  overflow: hidden;
  border-radius: var(--van-radius-max)
}
.van-image--round .van-image__img {
  border-radius: inherit
}
.van-image--block {
  display: block
}
.van-image__img, .van-image__error, .van-image__loading {
  display: block;
  width: 100%;
  height: 100%
}
.van-image__error, .van-image__loading {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--van-image-placeholder-text-color);
  font-size: var(--van-image-placeholder-font-size);
  background: var(--van-image-placeholder-background)
}
.van-image__loading-icon {
  color: var(--van-image-loading-icon-color);
  font-size: var(--van-image-loading-icon-size)
}
.van-image__error-icon {
  color: var(--van-image-error-icon-color);
  font-size: var(--van-image-error-icon-size)
}
:root {
  --van-swipe-indicator-size: 1.44928vw;
  --van-swipe-indicator-margin: var(--van-padding-sm);
  --van-swipe-indicator-active-opacity: 1;
  --van-swipe-indicator-inactive-opacity: .3;
  --van-swipe-indicator-active-background: var(--van-primary-color);
  --van-swipe-indicator-inactive-background: var(--van-border-color)
}
.van-swipe {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}
.van-swipe__track {
  display: flex;
  height: 100%
}
.van-swipe__track--vertical {
  flex-direction: column
}
.van-swipe__indicators {
  position: absolute;
  bottom: var(--van-swipe-indicator-margin);
  left: 50%;
  display: flex;
  transform: translate(-50%)
}
.van-swipe__indicators--vertical {
  top: 50%;
  bottom: auto;
  left: var(--van-swipe-indicator-margin);
  flex-direction: column;
  transform: translateY(-50%)
}
.van-swipe__indicators--vertical .van-swipe__indicator:not(:last-child) {
  margin-bottom: var(--van-swipe-indicator-size)
}
.van-swipe__indicator {
  width: var(--van-swipe-indicator-size);
  height: var(--van-swipe-indicator-size);
  background-color: var(--van-swipe-indicator-inactive-background);
  border-radius: 100%;
  opacity: var(--van-swipe-indicator-inactive-opacity);
  transition: opacity var(--van-duration-fast), background-color var(--van-duration-fast)
}
.van-swipe__indicator:not(:last-child) {
  margin-right: var(--van-swipe-indicator-size)
}
.van-swipe__indicator--active {
  background-color: var(--van-swipe-indicator-active-background);
  opacity: var(--van-swipe-indicator-active-opacity)
}
.van-swipe-item {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 100%
}
:root {
  --van-image-preview-index-text-color: var(--van-white);
  --van-image-preview-index-font-size: var(--van-font-size-md);
  --van-image-preview-index-line-height: var(--van-line-height-md);
  --van-image-preview-index-text-shadow: 0 1px 1px var(--van-gray-8);
  --van-image-preview-overlay-background: rgba(0, 0, 0, .9);
  --van-image-preview-close-icon-size: 5.31401vw;
  --van-image-preview-close-icon-color: var(--van-gray-5);
  --van-image-preview-close-icon-margin: var(--van-padding-md);
  --van-image-preview-close-icon-z-index: 1
}
.van-image-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  background-color: transparent;
  transform: none
}
.van-image-preview__swipe {
  height: 100%
}
.van-image-preview__swipe-item {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}
.van-image-preview__cover {
  position: absolute;
  top: 0;
  left: 0
}
.van-image-preview__image, .van-image-preview__image-wrap {
  width: 100%;
  transition-property: transform
}
.van-image-preview__image--vertical, .van-image-preview__image-wrap--vertical {
  width: auto;
  height: 100%
}
.van-image-preview__image img, .van-image-preview__image-wrap img, .van-image-preview__image video, .van-image-preview__image-wrap video {
  -webkit-user-drag: none
}
.van-image-preview__image .van-image__error, .van-image-preview__image-wrap .van-image__error {
  top: 30%;
  height: 40%
}
.van-image-preview__image .van-image__error-icon, .van-image-preview__image-wrap .van-image__error-icon {
  font-size: 8.69565vw
}
.van-image-preview__image .van-image__loading, .van-image-preview__image-wrap .van-image__loading {
  background-color: transparent
}
.van-image-preview__index {
  position: absolute;
  top: var(--van-padding-md);
  left: 50%;
  color: var(--van-image-preview-index-text-color);
  font-size: var(--van-image-preview-index-font-size);
  line-height: var(--van-image-preview-index-line-height);
  text-shadow: var(--van-image-preview-index-text-shadow);
  transform: translate(-50%)
}
.van-image-preview__overlay {
  background: var(--van-image-preview-overlay-background)
}
.van-image-preview__close-icon {
  position: absolute;
  z-index: var(--van-image-preview-close-icon-z-index);
  color: var(--van-image-preview-close-icon-color);
  font-size: var(--van-image-preview-close-icon-size)
}
.van-image-preview__close-icon--top-left {
  top: var(--van-image-preview-close-icon-margin);
  left: var(--van-image-preview-close-icon-margin)
}
.van-image-preview__close-icon--top-right {
  top: var(--van-image-preview-close-icon-margin);
  right: var(--van-image-preview-close-icon-margin)
}
.van-image-preview__close-icon--bottom-left {
  bottom: var(--van-image-preview-close-icon-margin);
  left: var(--van-image-preview-close-icon-margin)
}
.van-image-preview__close-icon--bottom-right {
  right: var(--van-image-preview-close-icon-margin);
  bottom: var(--van-image-preview-close-icon-margin)
}
:root {
  --van-text-color: #070C17 !important;
  --van-nav-bar-background: white !important;
  --van-nav-bar-arrow-size: 5.7971vw !important;
  --van-nav-bar-icon-color: #070C17FF !important;
  --van-field-placeholder-text-color: #070C1740 !important;
  --van-search-input-height: 10.62802vw !important;
  --van-search-content-background: #FFFF !important;
  --van-search-action-text-color: #C3A769 !important;
  --van-search-action-font-size: 3.86473vw !important;
  --van-tab-font-size: 3.86473vw !important;
  --van-tabs-bottom-bar-color: linear-gradient(90deg, #D4B98C 0%, #A58964 100%) !important;
  --van-swipe-indicator-active-background: #C3A769FF;
  --van-nav-bar-text-color: #C3A769FF;
  --van-nav-bar-title-font-size: 4.58937vw !important;
  --van-checkbox-checked-icon-color: #C3A769FF !important;
  --van-nav-bar-background: transparent !important;
  --van-field-icon-size: 5.7971vw !important
}
[data-theme=dark], [data-theme=dark] * {
  color-scheme: dark !important
}
[data-theme=light], [data-theme=light] * {
  color-scheme: light !important
}
[data-theme=light] body {
  background-color: green !important
}
[data-theme=event] {
  -webkit-filter: grayscale(1);
  filter: grayscale(1)
}
[disabled] {
  pointer-events: none
}
#nprogress .spinner {
  display: none
}
#nprogress .bar {
  background: #C3A769
}
#nprogress .peg {
  box-shadow: 0 0 2.41546vw #c3a769, 0 0 1.20773vw #c3a769
}
.van-field__control[type=search] {
  font-size: 3.86473vw
}
.van-search__content {
  box-shadow: 0 0 2.41546vw rgba(0, 0, 0, .1)
}
.van-search__action {
  color: #c3a769
}
.page-container {
  padding: 3.62319vw 3.62319vw 0
}
.page-container.pt-none {
  padding-top: 0
}
*, :before, :after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb
}
* {
  --tw-ring-inset: var(--tw-empty, );
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, .5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000
}
:root {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4
}
:-moz-focusring {
  outline: 1px dotted ButtonText
}
:-moz-ui-invalid {
  box-shadow: none
}
::moz-focus-inner {
  border-style: none;
  padding: 0
}
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
  height: auto
}
::-webkit-search-decoration {
  -webkit-appearance: none
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -.48309vw
}
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted
}
a {
  color: inherit;
  text-decoration: inherit
}
body {
  margin: 0;
  font-family: inherit;
  line-height: inherit
}
html {
  -webkit-text-size-adjust: 100%;
  font-family: ui-sans-serif, system-ui, -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";
  line-height: 1.5
}
hr {
  height: 0;
  color: inherit;
  border-top-width: 1px
}
h1, h2, h3 {
  font-size: inherit;
  font-weight: inherit
}
img {
  border-style: solid;
  max-width: 100%;
  height: auto
}
img, svg, iframe {
  display: block;
  vertical-align: middle
}
pre, code {
  font-size: 1em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace
}
pre, h1, h2, hr, p, blockquote, h3 {
  margin: 0
}
ul {
  list-style: none;
  margin: 0;
  padding: 0
}
.hflex {
  display: flex;
  align-items: center
}
.vflex-center {
  display: flex;
  flex-direction: column;
  align-items: center
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center
}
.container {
  width: 100%
}
@media (min-width: 640px) {
  .container {
    max-width: 640px
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px
  }
}
.rounded-full {
  border-radius: 2415.21739vw
}
.block {
  display: block
}
.inline-block {
  display: inline-block
}
.inline {
  display: inline
}
.flex {
  display: flex
}
.table {
  display: table
}
.grid {
  display: grid
}
.hidden {
  display: none
}
.flex-col {
  flex-direction: column
}
.flex-wrap {
  flex-wrap: wrap
}
.items-center {
  align-items: center
}
.justify-end {
  justify-content: flex-end
}
.justify-center {
  justify-content: center
}
.justify-between {
  justify-content: space-between
}
.justify-evenly {
  justify-content: space-evenly
}
.flex-1 {
  flex: 1 1 0%
}
.h-full {
  height: 100%
}
.h-6px {
  height: 1.44928vw
}
.h-22px {
  height: 5.31401vw
}
.h-60px {
  height: 14.49275vw
}
.h-16px {
  height: 3.86473vw
}
.h-28px {
  height: 6.76329vw
}
.h-24px {
  height: 5.7971vw
}
.h-36px {
  height: 8.69565vw
}
.h-8px {
  height: 1.93237vw
}
.h-26px {
  height: 6.28019vw
}
.h-14px {
  height: 3.38164vw
}
.h-40px {
  height: 9.66184vw
}
.h-12px {
  height: 2.89855vw
}
.m-364\.928 {
  margin: 91.232rem
}
.m-189\.888 {
  margin: 47.472rem
}
.m-16px {
  margin: 3.86473vw
}
.ml-4px {
  margin-left: .96618vw
}
.mt-18px {
  margin-top: 4.34783vw
}
.mb-16px {
  margin-bottom: 3.86473vw
}
.ml-30px {
  margin-left: 7.24638vw
}
.ml-2px {
  margin-left: .48309vw
}
.ml-8px {
  margin-left: 1.93237vw
}
.ml-20px {
  margin-left: 4.83092vw
}
.mr-24px {
  margin-right: 5.7971vw
}
.ml-24px {
  margin-left: 5.7971vw
}
.mb-3px {
  margin-bottom: .72464vw
}
.mt-30px {
  margin-top: 7.24638vw
}
.mt-10px {
  margin-top: 2.41546vw
}
.mr-14px {
  margin-right: 3.38164vw
}
.mt-6px {
  margin-top: 1.44928vw
}
.mt-42px {
  margin-top: 10.14493vw
}
.mb-25px {
  margin-bottom: 6.03865vw
}
.mr-6px {
  margin-right: 1.44928vw
}
.mt-22px {
  margin-top: 5.31401vw
}
.mt-40px {
  margin-top: 9.66184vw
}
.overflow-visible {
  overflow: visible
}
.p-1px {
  padding: 1px
}
.pr-10px {
  padding-right: 2.41546vw
}
.pl-40px {
  padding-left: 9.66184vw
}
.pr-40px {
  padding-right: 9.66184vw
}
.pr-16px {
  padding-right: 3.86473vw
}
.tab {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4
}
.fixed {
  position: fixed
}
.absolute {
  position: absolute
}
.relative {
  position: relative
}
.right-0 {
  right: 0px
}
.text-center {
  text-align: center
}
.w-full {
  width: 100%
}
.w-20px {
  width: 4.83092vw
}
.w-6px {
  width: 1.44928vw
}
.w-22px {
  width: 5.31401vw
}
.w-80px {
  width: 19.32367vw
}
.w-16px {
  width: 3.86473vw
}
.w-5px {
  width: 1.20773vw
}
.w-28px {
  width: 6.76329vw
}
.w-24px {
  width: 5.7971vw
}
.w-36px {
  width: 8.69565vw
}
.w-8px {
  width: 1.93237vw
}
.w-100px {
  width: 24.15459vw
}
.w-26px {
  width: 6.28019vw
}
.w-14px {
  width: 3.38164vw
}
.w-120px {
  width: 28.98551vw
}
.w-40px {
  width: 9.66184vw
}
.w-60px {
  width: 14.49275vw
}
.z-99999 {
  z-index: 99999
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}
.transform {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-translate-z: 0;
  --tw-rotate: 0;
  --tw-rotate-x: 0;
  --tw-rotate-y: 0;
  --tw-rotate-z: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-scale-z: 1;
  transform: translate(var(--tw-translate-x)) translateY(var(--tw-translate-y)) translateZ(var(--tw-translate-z)) rotate(var(--tw-rotate)) rotateX(var(--tw-rotate-x)) rotateY(var(--tw-rotate-y)) rotate(var(--tw-rotate-z)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) scaleZ(var(--tw-scale-z))
}
.\<transition, .transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .15s
}
@font-face {
  font-family: DIN-Regular;
  src: url(/web/static/otf/DINPro-Regular-617311af.otf?t=1622683187517) format("truetype")
}
@font-face {
  font-family: DIN-Medium;
  src: url(DINPro-Medium-4f353e87.otf?t=1622683187517) format("truetype")
}
.quote-page[data-v-07e49904], .container .home[data-v-07e49904] {
  /*lfq隐藏上下滚动条区域 overflow: hidden !important*/
}
.page-memo[data-v-07e49904] {
  padding: 16px 0;
  box-sizing: border-box
}
.page-memo li[data-v-07e49904] {
  padding: 0 10px;
  font-size: 14px;
  line-height: 1.6
}
.page-memo li .tel[data-v-07e49904] {
  text-decoration: none;
  color: #fff
}
.page-memo li .tel[data-v-07e49904]:active, .page-memo li .tel[data-v-07e49904]:visited {
  color: #fff
}
.chart-wrap .chart-wrap-null[data-v-07e49904] {
  text-align: center;
  font-size: 18px;
  padding-top: 32px;
  padding-bottom: 32px
}
.chart-wrap .chart-content[data-v-07e49904] {
  height: 340px
}
.chart-wrap .chart-tabs-wrap[data-v-07e49904] {
  padding: 10px 0
}
.chart-wrap .chart-tabs-wrap .chart-tabs-row[data-v-07e49904] {
  display: flex;
  justify-content: center;
  align-content: stretch
}
.chart-wrap .chart-tabs-wrap .chart-tabs-row .button-close[data-v-07e49904] {
  margin-right: 5px;
  margin-top: 5px
}
.chart-wrap .chart-tabs-wrap .chart-tabs-row .chart-tabs[data-v-07e49904] {
  margin: 0 auto;
  width: 160px;
  display: flex;
  justify-content: center
}
.chart-wrap .chart-tabs-wrap .chart-tabs-row .chart-tabs .chart-tab-item[data-v-07e49904] {
  font-size: 14px;
  width: 50%;
  text-align: center;
  line-height: 2;
  position: relative;
  border: #39454b;
  border-style: solid
}
.chart-wrap .chart-tabs-wrap .chart-tabs-row .chart-tabs .chart-tab-item.active[data-v-07e49904] {
  color: #ffc400
}
.step1-form .el-form-item[data-v-07e49904] {
  margin-bottom: 8px
}
.step2-form .el-tag[data-v-07e49904] {
  margin-right: 8px;
  margin-bottom: 8px
}
.step2-form .step2-form-content .el-input[data-v-07e49904] {
  width: 190px
}
.step2-form .step2-form-content .el-form-item[data-v-07e49904] {
  margin-bottom: 14px
}
.sms-dialog[data-v-07e49904] {
  z-index: 3000 !important;
  margin-top: 5vh !important
}
@media (max-width: 380px) {
  .sms-dialog[data-v-07e49904] {
    margin-top: 2vh !important
  }
}
.sms-dialog .el-dialog__body[data-v-07e49904] {
  padding: 10px 20px
}
.filter-dialog[data-v-07e49904] {
  z-index: 3000 !important;
  margin-top: 5vh !important
}
@media (max-width: 380px) {
  .filter-dialog[data-v-07e49904] {
    margin-top: 2vh !important
  }
}
.filter-dialog .el-dialog__body[data-v-07e49904] {
  padding: 10px 20px
}
.filter-dialog .filter-form-content .el-input[data-v-07e49904] {
  width: 190px
}
.filter-dialog .filter-form-content .el-form-item[data-v-07e49904] {
  margin-bottom: 14px
}
.quote-page[data-v-07e49904] {
  background: #18293a;
  min-height: 100%;
  /*lfq隐藏上下滚动条区域 height: 100%;*/ 
  overflow: auto;
  padding: 3px 0;
  box-sizing: border-box;
  position: relative
}
.quote-page[data-v-07e49904] ::-webkit-scrollbar {
  width: .7px;
  height: 5px
}
.quote-page[data-v-07e49904] ::-webkit-scrollbar-thumb {
  background-color: #f4f4f4;
  border-radius: 1px
}
.quote-page .quote-marquee[data-v-07e49904] {
  margin: 5px 0;
  color: #ffc400;
  font-weight: 700;
  border: 1px solid #fa0e0e
}
.quote-page .page-title[data-v-07e49904] {
  margin: 0;
  font-size: 28px;
  color: #ffc400;
  letter-spacing: 1px;
  text-align: center
}
.quote-page .price-table-header[data-v-07e49904] {
  background: #000;
  font-weight: 700;
  font-size: 21px;
  width: 100%
}
.quote-page .price-table-header .el-col[data-v-07e49904] {
  padding: 12px 0;
  line-height: 23px
}
.quote-page .price-table-header .el-col[data-v-07e49904], .quote-page .price-table-row .el-col[data-v-07e49904] {
  border-right: 1px solid #444;
  text-align: center
}
.quote-page .price-table-header .el-col[data-v-07e49904]:last-child, .quote-page .price-table-row .el-col[data-v-07e49904]:last-child {
  border-right: none
}
.quote-page .quote-page-content[data-v-07e49904] {
  height: calc(100% - 47px);
    overflow-y: auto;
}
.quote-page .quote-price-table[data-v-07e49904] {
  color: #eee;
  font-size: 21px;
  font-family: sans-serif;
  min-height: 300px
}
.quote-page .quote-price-table .price-table-row .el-col[data-v-07e49904] {
  padding: 3px 0;
  line-height: 23px
}
.quote-page .quote-price-table .price-table-row .el-col .y-middle[data-v-07e49904] {
  transform: translateY(50%);
  display: inline-block
}
.quote-page .quote-price-table .price-table-row[data-v-07e49904]:nth-child(2n) {
  background: #000 !important
}
.quote-page .quote-price-table .price-table-row[data-v-07e49904]:last-child {
  border-bottom: 1px solid #444
}
.quote-page .quote-price-table .symbole-price[data-v-07e49904] {
  font-size: 19px;
  font-family: moonfont
}
.quote-page .quote-price-table .symbole-price .symbol-price-rise[data-v-07e49904] {
  color: #38bd8a
}
.quote-page .quote-price-table .symbole-price .symbol-price-fall[data-v-07e49904] {
  color: #fe5555
}
.quote-page .quote-price-table .symbole-price .symbol-price-normal[data-v-07e49904] {
  color: #e8e8e8
}
.quote-page .quote-price-table .symbole-price-field[data-v-07e49904] {
  padding-left: 5px
}
.quote-page .quote-price-table .symbol-name[data-v-07e49904] {
  font-family: Microsoft YaHei, Arial, Helvetica, sans-serif;
  font-size: 20px;
  margin-left: 8px;
  color: #ffbf24
}
.page-footer[data-v-07e49904] {
  background: #142130;
  color: #d4dee3;
  padding: 5px 0 8px;
  box-shadow: 0 3px 10px #000;
  position: relative;
  background: #2b3036 !important
}
.page-footer .tab-icon[data-v-07e49904] {
  font-size: 22px
}
.page-footer .active-tab[data-v-07e49904] {
  color: #29b6f6
}
.container[data-v-07e49904] {
  /*lfq隐藏上下滚动条区域 height: 100%;*/
  display: flex;
  flex-direction: column
}
.container .quote-page-header[data-v-07e49904] {
  background: #18293a
}
.container .quote-page-header .page-logo[data-v-07e49904] {
  height: 100px
}
.container .quote-status[data-v-07e49904] {
  text-align: right;
  background: #18293a;
  padding-top: 3px;
  padding-right: 10px;
  display: inline-block;
  color: #fe5555;
  font-size: 15px
}
.container .quote-status.red .quote-status[data-v-07e49904] {
  border-color: #fe5555
}
.container .quote-status.green .quote-status[data-v-07e49904] {
  border-color: #38bd8a
}
.container .page-time[data-v-07e49904] {
  min-width: 76px;
  text-align: center;
  font-size: 14px;
  margin-left: 2px
}
.container .quote-divider[data-v-07e49904] {
  margin: 1px 0
}
.container .home[data-v-07e49904] {
  height: 100%;
  flex-grow: 1;
  overflow: auto;
  color: #fff
}
.container .home .home-iframe[data-v-07e49904] {
  height: calc(100% - 2px);
  width: 100%;
  border: none
}
.__nuxt-error-page[data-v-07e49904] {
  padding: 1rem;
  background: #f7f8fb;
  color: #47494e;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: sans-serif;
  font-weight: 100 !important;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0
}
.__nuxt-error-page .error[data-v-07e49904] {
  max-width: 450px
}
.__nuxt-error-page .title[data-v-07e49904] {
  font-size: 1.5rem;
  margin-top: 15px;
  color: #47494e;
  margin-bottom: 8px
}
.__nuxt-error-page .description[data-v-07e49904] {
  color: #7f828b;
  line-height: 21px;
  margin-bottom: 10px
}
.__nuxt-error-page a[data-v-07e49904] {
  color: #7f828b !important;
  text-decoration: none
}
.__nuxt-error-page .logo[data-v-07e49904] {
  position: fixed;
  left: 12px;
  bottom: 12px
}
.nuxt-progress[data-v-07e49904] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  width: 0;
  opacity: 1;
  transition: width .1s, opacity .4s;
  background-color: #fff;
  z-index: 999999
}
.nuxt-progress.nuxt-progress-notransition[data-v-07e49904] {
  transition: none
}
.nuxt-progress-failed[data-v-07e49904] {
  background-color: red
}
#__layout[data-v-07e49904], #__nuxt[data-v-07e49904], body[data-v-07e49904], html[data-v-07e49904] {
  min-height: 100%;
  height: 100%
}
body[data-v-07e49904] {
  margin: 0;
  font-size: 14px;
  font-family: PingFangSC-Regular, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, Helvetica, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch
}
ul[data-v-07e49904] {
  list-style: none;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0
}
.moonfont[data-v-07e49904] {
  font-family: moonfont
}
*[data-v-07e49904] {
  outline: none !important
}
input[data-v-07e49904]::-webkit-inner-spin-button, input[data-v-07e49904]::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0
}
.right[data-v-07e49904] {
  float: right
}
.left[data-v-07e49904] {
  float: left
}
.bold[data-v-07e49904] {
  font-weight: 700
}
.inline[data-v-07e49904] {
  display: inline
}
.clear[data-v-07e49904] {
  clear: both
}
.mt-1[data-v-07e49904] {
  margin-top: 1rem !important
}
.mb-1[data-v-07e49904] {
  margin-bottom: 1rem !important
}
.full-height[data-v-07e49904] {
  height: 100% !important
}
.full-width[data-v-07e49904] {
  width: 100%
}
.no-transform[data-v-07e49904] {
  text-transform: none
}
.text-center[data-v-07e49904] {
  text-align: center
}
.text-left[data-v-07e49904] {
  text-align: left
}
.text-right[data-v-07e49904] {
  text-align: right
}
.ellipse[data-v-07e49904] {
  white-space: nowrap
}
.ellipse[data-v-07e49904], .multi-ellipse[data-v-07e49904] {
  overflow: hidden;
  text-overflow: ellipsis
}
.multi-ellipse[data-v-07e49904] {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2
}
.amount[data-v-07e49904] {
  font-family: Helvetica Neue
}
.grey[data-v-07e49904] {
  color: rgba(0, 0, 0, .45) !important
}
.black[data-v-07e49904] {
  color: #303133 !important
}
.red[data-v-07e49904] {
  color: #fe5555 !important;
  color: red !important
}
.green[data-v-07e49904] {
  color: #38bd8a !important;
  color: #0f0 !important
}
.blue[data-v-07e49904] {
  color: #007bff !important
}
.yellow[data-v-07e49904] {
  color: #ffc74c !important
}
.quote-page[data-v-07e49904], .quote-page-header[data-v-07e49904] {
  background: #252525 !important
}
.quote-price-table .symbole-price .symbol-price-rise[data-v-07e49904] {
  color: red !important
}
.quote-price-table .symbole-price .symbol-price-fall[data-v-07e49904] {
  color: #0f0 !important
}
.quote-status[data-v-07e49904] {
  color: red !important;
  background: #252525 !important
}
.quote-status.red .quote-status[data-v-07e49904] {
  border-color: red !important
}
.quote-status.green .quote-status[data-v-07e49904] {
  border-color: #0f0 !important
}
.container[data-v-07e49904] {
  max-width: 100% !important
}
.marquee[data-v-07e49904] {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 26px
}
.marquee-content[data-v-07e49904] {
  position: absolute;
  top: 0;
  right: 0;
  white-space: nowrap;
  -webkit-animation: marquee-07e49904 10s linear infinite;
  animation: marquee-07e49904 10s linear infinite
}
@-webkit-keyframes marquee-07e49904 {
  0% {
    transform: translate(100%)
  }
  to {
    transform: translate(-130%)
  }
}
@keyframes marquee-07e49904 {
  0% {
    transform: translate(100%)
  }
  to {
    transform: translate(-130%)
  }
}
.container .quote-page-header[data-v-07e49904] {
  position: relative;
  display: flex;
  align-items: center;
  padding: 3px 10px 3px;
  justify-content: center;
}
.container .quote-page-header .logo[data-v-07e49904] {
  width: 180px;
  height: 52px
}
.container .quote-page-header .qr-code[data-v-07e49904] {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 70px
}
.quote-status span[data-v-07e49904]:first-child {
  margin-right: 4px
}
.download-btn[data-v-07e49904] {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 298px;
  height: 44px;
  background: linear-gradient(270deg, #53DCFB 0%, #29B6F6 100%);
  border-radius: 27px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 25px;
  text-decoration: none
}
.download-btn img[data-v-07e49904] {
  width: 8px;
  height: 13px;
  margin-left: 15px
}
.download-section[data-v-07e49904] {
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #252525
}
.download-section.hide[data-v-07e49904] {
  display: none !important
}
.tab-icon[data-v-07e49904] {
  width: 22px;
  height: 22px;
  margin: auto
}
.quote-page .quote-price-table .symbole-price[data-v-07e49904] {
  font-family: DIN-Medium, DIN
}
#app {
  height: 100%
}
*, *:before, *:after {
  box-sizing: border-box
}
* {
  padding: 0;
  margin: 0
}
.sms-btn[data-v-1b80c039] {
  height: 8.21256vw;
  background: #FFF5E4;
  border-radius: 1.44928vw;
  border: 1px solid #C3A769;
  width: 27.53623vw;
  font-size: 3.86473vw;
  font-weight: 400;
  color: #c3a769;
  line-height: 5.31401vw
}
.sms-btn.sending[data-v-1b80c039] {
  pointer-events: none;
  background: #EEEEEE;
  border-color: #eee
}
.sms-btn.disabled[data-v-1b80c039] {
  pointer-events: none;
  background: #EEEEEE
}
.sms-count[data-v-1b80c039], .van-count-down[data-v-1b80c039] {
  font-size: 3.86473vw;
  font-weight: 400;
  color: rgba(7, 12, 23, .3)
}
.app-logo img[data-v-a3184405] {
  width: 38.88889vw;
  height: 9.66184vw
}
.app-logo-title[data-v-a3184405] {
  font-size: 5.07246vw;
  font-weight: 600;
  color: rgba(7, 12, 23, .7);
  line-height: 7.00483vw;
  margin-top: 3.1401vw
}
.login {
  height: 100%;
  background: #F8F8F8 url(/web/static/png/top_bg-692f3ce2.png) no-repeat
}
:root {
  --van-cell-group-background: var(--van-background-2);
  --van-cell-group-title-color: var(--van-text-color-2);
  --van-cell-group-title-padding: var(--van-padding-md) var(--van-padding-md);
  --van-cell-group-title-font-size: var(--van-font-size-md);
  --van-cell-group-title-line-height: 3.86473vw;
  --van-cell-group-inset-padding: 0 var(--van-padding-md);
  --van-cell-group-inset-radius: var(--van-radius-lg);
  --van-cell-group-inset-title-padding: var(--van-padding-md) var(--van-padding-md)
}
.van-cell-group {
  background: var(--van-cell-group-background)
}
.van-cell-group--inset {
  margin: var(--van-cell-group-inset-padding);
  border-radius: var(--van-cell-group-inset-radius);
  overflow: hidden
}
.van-cell-group__title {
  padding: var(--van-cell-group-title-padding);
  color: var(--van-cell-group-title-color);
  font-size: var(--van-cell-group-title-font-size);
  line-height: var(--van-cell-group-title-line-height)
}
.van-cell-group__title--inset {
  padding: var(--van-cell-group-inset-title-padding)
}
:root {
  --van-cell-font-size: var(--van-font-size-md);
  --van-cell-line-height: 5.7971vw;
  --van-cell-vertical-padding: 2.41546vw;
  --van-cell-horizontal-padding: var(--van-padding-md);
  --van-cell-text-color: var(--van-text-color);
  --van-cell-background: var(--van-background-2);
  --van-cell-border-color: var(--van-border-color);
  --van-cell-active-color: var(--van-active-color);
  --van-cell-required-color: var(--van-danger-color);
  --van-cell-label-color: var(--van-text-color-2);
  --van-cell-label-font-size: var(--van-font-size-sm);
  --van-cell-label-line-height: var(--van-line-height-sm);
  --van-cell-label-margin-top: var(--van-padding-base);
  --van-cell-value-color: var(--van-text-color-2);
  --van-cell-icon-size: 3.86473vw;
  --van-cell-right-icon-color: var(--van-gray-6);
  --van-cell-large-vertical-padding: var(--van-padding-sm);
  --van-cell-large-title-font-size: var(--van-font-size-lg);
  --van-cell-large-label-font-size: var(--van-font-size-md)
}
.van-cell {
  position: relative;
  display: flex;
  box-sizing: border-box;
  width: 100%;
  padding: var(--van-cell-vertical-padding) var(--van-cell-horizontal-padding);
  overflow: hidden;
  color: var(--van-cell-text-color);
  font-size: var(--van-cell-font-size);
  line-height: var(--van-cell-line-height);
  background: var(--van-cell-background)
}
.van-cell:after {
  position: absolute;
  box-sizing: border-box;
  content: " ";
  pointer-events: none;
  right: var(--van-padding-md);
  bottom: 0;
  left: var(--van-padding-md);
  border-bottom: 1px solid var(--van-cell-border-color);
  transform: scaleY(.5)
}
.van-cell:last-child:after, .van-cell--borderless:after {
  display: none
}
.van-cell__label {
  margin-top: var(--van-cell-label-margin-top);
  color: var(--van-cell-label-color);
  font-size: var(--van-cell-label-font-size);
  line-height: var(--van-cell-label-line-height)
}
.van-cell__title, .van-cell__value {
  flex: 1
}
.van-cell__value {
  position: relative;
  overflow: hidden;
  color: var(--van-cell-value-color);
  text-align: right;
  vertical-align: middle;
  word-wrap: break-word
}
.van-cell__left-icon, .van-cell__right-icon {
  height: var(--van-cell-line-height);
  font-size: var(--van-cell-icon-size);
  line-height: var(--van-cell-line-height)
}
.van-cell__left-icon {
  margin-right: var(--van-padding-base)
}
.van-cell__right-icon {
  margin-left: var(--van-padding-base);
  color: var(--van-cell-right-icon-color)
}
.van-cell--clickable {
  cursor: pointer
}
.van-cell--clickable:active {
  background-color: var(--van-cell-active-color)
}
.van-cell--required {
  overflow: visible
}
.van-cell--required:before {
  position: absolute;
  left: var(--van-padding-xs);
  color: var(--van-cell-required-color);
  font-size: var(--van-cell-font-size);
  content: "*"
}
.van-cell--center {
  align-items: center
}
.van-cell--large {
  padding-top: var(--van-cell-large-vertical-padding);
  padding-bottom: var(--van-cell-large-vertical-padding)
}
.van-cell--large .van-cell__title {
  font-size: var(--van-cell-large-title-font-size)
}
.van-cell--large .van-cell__label {
  font-size: var(--van-cell-large-label-font-size)
}
:root {
  --van-field-label-width: 6.2em;
  --van-field-label-color: var(--van-text-color);
  --van-field-label-margin-right: var(--van-padding-sm);
  --van-field-input-text-color: var(--van-text-color);
  --van-field-input-error-text-color: var(--van-danger-color);
  --van-field-input-disabled-text-color: var(--van-text-color-3);
  --van-field-placeholder-text-color: var(--van-text-color-3);
  --van-field-icon-size: 3.86473vw;
  --van-field-clear-icon-size: 3.86473vw;
  --van-field-clear-icon-color: var(--van-gray-5);
  --van-field-right-icon-color: var(--van-gray-6);
  --van-field-error-message-color: var(--van-danger-color);
  --van-field-error-message-font-size: 2.89855vw;
  --van-field-text-area-min-height: 14.49275vw;
  --van-field-word-limit-color: var(--van-gray-7);
  --van-field-word-limit-font-size: var(--van-font-size-sm);
  --van-field-word-limit-line-height: 3.86473vw;
  --van-field-disabled-text-color: var(--van-text-color-3);
  --van-field-required-mark-color: var(--van-red)
}
.van-field {
  flex-wrap: wrap
}
.van-field__label {
  flex: none;
  box-sizing: border-box;
  width: var(--van-field-label-width);
  margin-right: var(--van-field-label-margin-right);
  color: var(--van-field-label-color);
  text-align: left;
  word-wrap: break-word
}
.van-field__label--center {
  text-align: center
}
.van-field__label--right {
  text-align: right
}
.van-field__label--top {
  display: flex;
  width: 100%;
  text-align: left;
  margin-bottom: var(--van-padding-base)
}
.van-field__label--required:before {
  margin-right: .48309vw;
  color: var(--van-field-required-mark-color);
  content: "*"
}
.van-field--disabled .van-field__label {
  color: var(--van-field-disabled-text-color)
}
.van-field__value {
  overflow: visible
}
.van-field__body {
  display: flex;
  align-items: center
}
.van-field__control {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  color: var(--van-field-input-text-color);
  line-height: inherit;
  text-align: left;
  background-color: transparent;
  border: 0;
  resize: none;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  user-select: auto
}
.van-field__control::-webkit-input-placeholder {
  color: var(--van-field-placeholder-text-color)
}
.van-field__control::-moz-placeholder {
  color: var(--van-field-placeholder-text-color)
}
.van-field__control::placeholder {
  color: var(--van-field-placeholder-text-color)
}
.van-field__control:disabled {
  color: var(--van-field-input-disabled-text-color);
  cursor: not-allowed;
  opacity: 1;
  -webkit-text-fill-color: var(--van-field-input-disabled-text-color)
}
.van-field__control:-moz-read-only {
  cursor: default
}
.van-field__control:read-only {
  cursor: default
}
.van-field__control--center {
  justify-content: center;
  text-align: center
}
.van-field__control--right {
  justify-content: flex-end;
  text-align: right
}
.van-field__control--custom {
  display: flex;
  align-items: center;
  min-height: var(--van-cell-line-height)
}
.van-field__control--error::-webkit-input-placeholder {
  color: var(--van-field-input-error-text-color);
  -webkit-text-fill-color: currentColor
}
.van-field__control--error::-moz-placeholder {
  color: var(--van-field-input-error-text-color);
  -webkit-text-fill-color: currentColor
}
.van-field__control--error, .van-field__control--error::placeholder {
  color: var(--van-field-input-error-text-color);
  -webkit-text-fill-color: currentColor
}
.van-field__control--min-height {
  min-height: var(--van-field-text-area-min-height)
}
.van-field__control[type=date], .van-field__control[type=time], .van-field__control[type=datetime-local] {
  min-height: var(--van-cell-line-height)
}
.van-field__control[type=search] {
  -webkit-appearance: none
}
.van-field__clear, .van-field__icon, .van-field__button, .van-field__right-icon {
  flex-shrink: 0
}
.van-field__clear, .van-field__right-icon {
  margin-right: calc(var(--van-padding-xs) * -1);
  padding: 0 var(--van-padding-xs);
  line-height: inherit
}
.van-field__clear {
  color: var(--van-field-clear-icon-color);
  font-size: var(--van-field-clear-icon-size);
  cursor: pointer
}
.van-field__left-icon .van-icon, .van-field__right-icon .van-icon {
  display: block;
  font-size: var(--van-field-icon-size);
  line-height: inherit
}
.van-field__left-icon {
  margin-right: var(--van-padding-base)
}
.van-field__right-icon {
  color: var(--van-field-right-icon-color)
}
.van-field__button {
  padding-left: var(--van-padding-xs)
}
.van-field__error-message {
  color: var(--van-field-error-message-color);
  font-size: var(--van-field-error-message-font-size);
  text-align: left
}
.van-field__error-message--center {
  text-align: center
}
.van-field__error-message--right {
  text-align: right
}
.van-field__word-limit {
  margin-top: var(--van-padding-base);
  color: var(--van-field-word-limit-color);
  font-size: var(--van-field-word-limit-font-size);
  line-height: var(--van-field-word-limit-line-height);
  text-align: right
}
:root {
  --van-count-down-text-color: var(--van-text-color);
  --van-count-down-font-size: var(--van-font-size-md);
  --van-count-down-line-height: var(--van-line-height-md)
}
.van-count-down {
  color: var(--van-count-down-text-color);
  font-size: var(--van-count-down-font-size);
  line-height: var(--van-count-down-line-height)
}
.login {
  height: 100%;
  background: #F8F8F8 url(/web/static/png/top_bg-692f3ce2.png) no-repeat
}
.login-container {
  margin: 18.59903vw 5.7971vw
}
.login-form {
  margin-top: 9.90338vw
}
.login-form-item {
  background: #FFFFFF;
  border-radius: 1.44928vw;
  margin-bottom: 2.89855vw;
  padding: .96618vw 2.89855vw;
  height: 13.04348vw
}
.login-form-item-input {
  font-size: 4.34783vw;
  font-family: DIN-Medium, DIN;
  font-weight: 600;
  line-height: 5.31401vw
}
.login-form-item img {
  width: 5.31401vw;
  height: 5.31401vw
}
.login-form-type {
  margin: 0 4.34783vw
}
.login-form-type a, .login-form-type span {
  font-size: 3.86473vw;
  font-weight: 400;
  color: #55668b;
  line-height: 5.31401vw
}
.login-btn {
  font-size: 4.83092vw;
  font-weight: 500;
  color: #fff;
  line-height: 6.76329vw;
  text-shadow: 0 1.20773vw 2.41546vw rgba(195, 167, 105, .2)
}
.login .van-cell-group {
  background: #F8F8F8
}
.login .van-field__right-icon {
  margin-top: .96618vw
}
.login-bottom {
  margin-top: 24.15459vw;
  padding: 0 4.83092vw;
  position: relative
}
.login-bottom-tips {
  position: absolute;
  top: -13.04348vw;
  background: #2A2F41;
  border-radius: .96618vw .96618vw .96618vw 0;
  padding: 2.41546vw 2.89855vw;
  font-size: 3.62319vw;
  font-weight: 400;
  color: rgba(255, 255, 255, .7);
  line-height: 5.07246vw
}
.login-bottom-tips:after {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 3.86473vw solid #2A2F41;
  border-right: 3.86473vw solid transparent;
  left: 0;
  bottom: -2.41546vw
}
.login .text-group_1 {
  overflow-wrap: break-word;
  text-align: left;
  line-height: 5.7971vw
}
.login .text-group_1 .text_8 {
  width: 75.12077vw;
  height: 9.66184vw;
  overflow-wrap: break-word;
  color: rgba(7, 12, 23, .7);
  font-size: 3.38164vw;
  text-align: left
}
.login .text-group_1 .agreement-url {
  width: 75.12077vw;
  height: 9.66184vw;
  overflow-wrap: break-word;
  color: #c3a769;
  font-size: 3.38164vw;
  text-align: left
}
.imgCode {
  width: 18.59903vw !important;
  height: 7.24638vw !important
}
.sms-input {
  padding-right: 0
}
.sms-btn {
  height: 8.21256vw;
  background: #FFF5E4;
  border-radius: 1.44928vw;
  border: 1px solid #C3A769;
  width: 27.53623vw;
  font-size: 3.86473vw;
  font-weight: 400;
  color: #c3a769;
  line-height: 5.31401vw
}
.sms-btn.sending {
  pointer-events: none;
  background: #EEEEEE;
  border-color: #eee
}
.sms-btn.disabled {
  pointer-events: none;
  background: #EEEEEE
}
.sms-count, .van-count-down {
  font-size: 3.86473vw;
  font-weight: 400;
  color: rgba(7, 12, 23, .3)
}
.login-reset-pwd {
  font-size: 2.657vw;
  font-weight: 400;
  color: #c3a769;
  line-height: 3.86473vw
}
.login-reset-pwd.error {
  color: #e50113
}
.live-header-fill {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: constant(safe-area-inset-top) !important;
  height: env(safe-area-inset-top) !important;
  background: white !important
}
:root {
  --van-sticky-z-index: 99
}
.van-sticky--fixed {
  position: fixed;
  z-index: var(--van-sticky-z-index)
}
:root {
  --van-tab-text-color: var(--van-gray-7);
  --van-tab-active-text-color: var(--van-text-color);
  --van-tab-disabled-text-color: var(--van-text-color-3);
  --van-tab-font-size: var(--van-font-size-md);
  --van-tab-line-height: var(--van-line-height-md);
  --van-tabs-default-color: var(--van-primary-color);
  --van-tabs-line-height: 10.62802vw;
  --van-tabs-card-height: 7.24638vw;
  --van-tabs-nav-background: var(--van-background-2);
  --van-tabs-bottom-bar-width: 9.66184vw;
  --van-tabs-bottom-bar-height: .72464vw;
  --van-tabs-bottom-bar-color: var(--van-primary-color)
}
.van-tab {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 var(--van-padding-base);
  color: var(--van-tab-text-color);
  font-size: var(--van-tab-font-size);
  line-height: var(--van-tab-line-height);
  cursor: pointer
}
.van-tab--active {
  color: var(--van-tab-active-text-color);
  font-weight: var(--van-font-bold)
}
.van-tab--disabled {
  color: var(--van-tab-disabled-text-color);
  cursor: not-allowed
}
.van-tab--grow {
  flex: 1 0 auto;
  padding: 0 var(--van-padding-sm)
}
.van-tab--shrink {
  flex: none;
  padding: 0 var(--van-padding-xs)
}
.van-tab--card {
  color: var(--van-tabs-default-color);
  border-right: var(--van-border-width) solid var(--van-tabs-default-color)
}
.van-tab--card:last-child {
  border-right: none
}
.van-tab--card.van-tab--active {
  color: var(--van-white);
  background-color: var(--van-tabs-default-color)
}
.van-tab--card--disabled {
  color: var(--van-tab-disabled-text-color)
}
.van-tab__text--ellipsis {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical
}
.van-tabs {
  position: relative
}
.van-tabs__wrap {
  overflow: hidden
}
.van-tabs__wrap--page-top {
  position: fixed
}
.van-tabs__wrap--content-bottom {
  top: auto;
  bottom: 0
}
.van-tabs__nav {
  position: relative;
  display: flex;
  background: var(--van-tabs-nav-background);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}
.van-tabs__nav--complete {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch
}
.van-tabs__nav--complete::-webkit-scrollbar {
  display: none
}
.van-tabs__nav--line {
  box-sizing: content-box;
  height: 100%;
  padding-bottom: 3.62319vw
}
.van-tabs__nav--line.van-tabs__nav--shrink, .van-tabs__nav--line.van-tabs__nav--complete {
  padding-right: var(--van-padding-xs);
  padding-left: var(--van-padding-xs)
}
.van-tabs__nav--card {
  box-sizing: border-box;
  height: var(--van-tabs-card-height);
  margin: 0 var(--van-padding-md);
  border: var(--van-border-width) solid var(--van-tabs-default-color);
  border-radius: var(--van-border-radius-sm)
}
.van-tabs__nav--card.van-tabs__nav--shrink {
  display: inline-flex
}
.van-tabs__line {
  position: absolute;
  bottom: 3.62319vw;
  left: 0;
  z-index: 1;
  width: var(--van-tabs-bottom-bar-width);
  height: var(--van-tabs-bottom-bar-height);
  background: var(--van-tabs-bottom-bar-color);
  border-radius: var(--van-tabs-bottom-bar-height)
}
.van-tabs__track {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  will-change: left
}
.van-tabs__content--animated {
  overflow: hidden
}
.van-tabs--line .van-tabs__wrap {
  height: var(--van-tabs-line-height)
}
.van-tabs--card > .van-tabs__wrap {
  height: var(--van-tabs-card-height)
}
.van-tab__panel, .van-tab__panel-wrapper {
  flex-shrink: 0;
  box-sizing: border-box;
  width: 100%
}
.van-tab__panel-wrapper--inactive {
  height: 0;
  overflow: visible
}
:root {
  --van-list-text-color: var(--van-text-color-2);
  --van-list-text-font-size: var(--van-font-size-md);
  --van-list-text-line-height: 12.07729vw;
  --van-list-loading-icon-size: 3.86473vw
}
.van-list__loading, .van-list__finished-text, .van-list__error-text {
  color: var(--van-list-text-color);
  font-size: var(--van-list-text-font-size);
  line-height: var(--van-list-text-line-height);
  text-align: center
}
.van-list__placeholder {
  height: 0;
  pointer-events: none
}
.van-list__loading-icon .van-loading__spinner {
  width: var(--van-list-loading-icon-size);
  height: var(--van-list-loading-icon-size)
}
:root {
  --van-action-sheet-max-height: 80%;
  --van-action-sheet-header-height: 11.5942vw;
  --van-action-sheet-header-font-size: var(--van-font-size-lg);
  --van-action-sheet-description-color: var(--van-text-color-2);
  --van-action-sheet-description-font-size: var(--van-font-size-md);
  --van-action-sheet-description-line-height: var(--van-line-height-md);
  --van-action-sheet-item-background: var(--van-background-2);
  --van-action-sheet-item-font-size: var(--van-font-size-lg);
  --van-action-sheet-item-line-height: var(--van-line-height-lg);
  --van-action-sheet-item-text-color: var(--van-text-color);
  --van-action-sheet-item-disabled-text-color: var(--van-text-color-3);
  --van-action-sheet-subname-color: var(--van-text-color-2);
  --van-action-sheet-subname-font-size: var(--van-font-size-sm);
  --van-action-sheet-subname-line-height: var(--van-line-height-sm);
  --van-action-sheet-close-icon-size: 5.31401vw;
  --van-action-sheet-close-icon-color: var(--van-gray-5);
  --van-action-sheet-close-icon-padding: 0 var(--van-padding-md);
  --van-action-sheet-cancel-text-color: var(--van-gray-7);
  --van-action-sheet-cancel-padding-top: var(--van-padding-xs);
  --van-action-sheet-cancel-padding-color: var(--van-background);
  --van-action-sheet-loading-icon-size: 5.31401vw
}
.van-action-sheet {
  display: flex;
  flex-direction: column;
  max-height: var(--van-action-sheet-max-height);
  overflow: hidden;
  color: var(--van-action-sheet-item-text-color)
}
.van-action-sheet__content {
  flex: 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch
}
.van-action-sheet__item, .van-action-sheet__cancel {
  display: block;
  width: 100%;
  padding: 3.38164vw var(--van-padding-md);
  font-size: var(--van-action-sheet-item-font-size);
  background: var(--van-action-sheet-item-background);
  border: none;
  cursor: pointer
}
.van-action-sheet__item:active, .van-action-sheet__cancel:active {
  background-color: var(--van-active-color)
}
.van-action-sheet__item {
  line-height: var(--van-action-sheet-item-line-height)
}
.van-action-sheet__item--loading, .van-action-sheet__item--disabled {
  color: var(--van-action-sheet-item-disabled-text-color)
}
.van-action-sheet__item--loading:active, .van-action-sheet__item--disabled:active {
  background-color: var(--van-action-sheet-item-background)
}
.van-action-sheet__item--disabled {
  cursor: not-allowed
}
.van-action-sheet__item--loading {
  cursor: default
}
.van-action-sheet__cancel {
  flex-shrink: 0;
  box-sizing: border-box;
  color: var(--van-action-sheet-cancel-text-color)
}
.van-action-sheet__subname {
  margin-top: var(--van-padding-xs);
  color: var(--van-action-sheet-subname-color);
  font-size: var(--van-action-sheet-subname-font-size);
  line-height: var(--van-action-sheet-subname-line-height)
}
.van-action-sheet__gap {
  display: block;
  height: var(--van-action-sheet-cancel-padding-top);
  background: var(--van-action-sheet-cancel-padding-color)
}
.van-action-sheet__header {
  flex-shrink: 0;
  font-weight: var(--van-font-bold);
  font-size: var(--van-action-sheet-header-font-size);
  line-height: var(--van-action-sheet-header-height);
  text-align: center
}
.van-action-sheet__description {
  position: relative;
  flex-shrink: 0;
  padding: 4.83092vw var(--van-padding-md);
  color: var(--van-action-sheet-description-color);
  font-size: var(--van-action-sheet-description-font-size);
  line-height: var(--van-action-sheet-description-line-height);
  text-align: center
}
.van-action-sheet__description:after {
  position: absolute;
  box-sizing: border-box;
  content: " ";
  pointer-events: none;
  right: var(--van-padding-md);
  bottom: 0;
  left: var(--van-padding-md);
  border-bottom: 1px solid var(--van-border-color);
  transform: scaleY(.5)
}
.van-action-sheet__loading-icon .van-loading__spinner {
  width: var(--van-action-sheet-loading-icon-size);
  height: var(--van-action-sheet-loading-icon-size)
}
.van-action-sheet__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  padding: var(--van-action-sheet-close-icon-padding);
  color: var(--van-action-sheet-close-icon-color);
  font-size: var(--van-action-sheet-close-icon-size);
  line-height: inherit
}
.ios-safe-area-top {
  position: relative;
  padding-top: constant(safe-area-inset-top) !important;
  padding-top: env(safe-area-inset-top) !important
}
.live-header-fill {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  height: constant(safe-area-inset-top) !important;
  height: env(safe-area-inset-top) !important;
  background: white !important
}
.ios-safe-area-bottom {
  padding-bottom: calc(constant(safe-area-inset-bottom)*.6) !important;
  padding-bottom: calc(env(safe-area-inset-bottom)*.6) !important
}
.article-container {
  padding-top: calc(constant(safe-area-inset-top) + 12.07729vw) !important;
  padding-top: calc(env(safe-area-inset-top) + 12.07729vw) !important
}
.article-container.android {
  padding-top: 12.07729vw !important
}
.article-nav-bar {
  left: 0;
  right: 0
}
.article-gap {
  height: 1.20773vw;
  background: #F4F4F4
}
.article-title {
  font-size: 5.7971vw;
  font-weight: 600;
  color: #070c17;
  line-height: 7.97101vw
}
.article-ctime {
  font-size: 3.86473vw;
  font-family: DIN-Regular, DIN;
  font-weight: 400;
  color: rgba(7, 12, 23, .5);
  line-height: 4.83092vw;
  margin: 2.41546vw 0 7.24638vw
}
.article-tips {
  font-size: 3.1401vw;
  font-weight: 400;
  color: rgba(7, 12, 23, .3);
  line-height: 4.34783vw;
  margin: 4.83092vw 0
}
.article-recommend-title {
  font-size: 4.58937vw;
  font-weight: 600;
  color: #070c17;
  line-height: 6.28019vw;
  margin-bottom: 4.83092vw
}
.article .van-nav-bar {
  background: white !important
}
.article-font-content {
  padding: 6.03865vw
}
.article-font-group {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8.69565vw;
  font-size: 3.86473vw;
  font-weight: 600;
  color: #31353a;
  line-height: 5.31401vw
}
.article-font-progress div:nth-child(2), .article-font-progress-header div:nth-child(2) {
  text-align: center
}
.article-font-progress div:nth-child(3), .article-font-progress-header div:nth-child(3) {
  text-align: right
}
.article-font-progress-header {
  font-size: 3.86473vw;
  font-weight: 400;
  color: rgba(49, 53, 58, .314);
  line-height: 5.31401vw
}
.article-font-progress-header .active {
  font-size: 4.34783vw;
  font-weight: 500;
  color: #31353a;
  line-height: 6.03865vw
}
.article-font-progress {
  position: relative
}
.article-font-progress:after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #31353A
}
.article-font-progress-small img {
  position: absolute;
  left: -2.89855vw
}
.article-font-progress-big img {
  position: absolute;
  right: -2.89855vw
}
.article-font-progress > div {
  position: relative;
  height: 8.69565vw
}
.article-font-progress > div:nth-child(1):before {
  position: absolute;
  content: " ";
  width: 1px;
  top: 25%;
  height: 50%;
  background: #31353A
}
.article-font-progress > div:nth-child(3):after, .article-font-progress > div:nth-child(2):after {
  position: absolute;
  content: " ";
  width: 1px;
  top: 25%;
  height: 50%;
  background: #31353A
}
.article-font-progress > div img {
  display: block;
  z-index: 10
}
.article-content table {
  display: inherit !important;
  max-width: 100% !important
}
.van-checkbox-group--horizontal {
  display: flex;
  flex-wrap: wrap
}
:root {
  --van-checkbox-size: 4.83092vw;
  --van-checkbox-border-color: var(--van-gray-5);
  --van-checkbox-duration: var(--van-duration-fast);
  --van-checkbox-label-margin: var(--van-padding-xs);
  --van-checkbox-label-color: var(--van-text-color);
  --van-checkbox-checked-icon-color: var(--van-primary-color);
  --van-checkbox-disabled-icon-color: var(--van-gray-5);
  --van-checkbox-disabled-label-color: var(--van-text-color-3);
  --van-checkbox-disabled-background: var(--van-border-color)
}
.van-checkbox {
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}
.van-checkbox--disabled {
  cursor: not-allowed
}
.van-checkbox--label-disabled {
  cursor: default
}
.van-checkbox--horizontal {
  margin-right: var(--van-padding-sm)
}
.van-checkbox__icon {
  flex: none;
  height: 1em;
  font-size: var(--van-checkbox-size);
  line-height: 1em;
  cursor: pointer
}
.van-checkbox__icon .van-icon {
  display: block;
  box-sizing: border-box;
  width: 1.25em;
  height: 1.25em;
  color: transparent;
  font-size: .8em;
  line-height: 1.25;
  text-align: center;
  border: 1px solid var(--van-checkbox-border-color);
  transition-duration: var(--van-checkbox-duration);
  transition-property: color, border-color, background-color
}
.van-checkbox__icon--round .van-icon {
  border-radius: 100%
}
.van-checkbox__icon--checked .van-icon {
  color: var(--van-white);
  background-color: var(--van-checkbox-checked-icon-color);
  border-color: var(--van-checkbox-checked-icon-color)
}
.van-checkbox__icon--disabled {
  cursor: not-allowed
}
.van-checkbox__icon--disabled .van-icon {
  background-color: var(--van-checkbox-disabled-background);
  border-color: var(--van-checkbox-disabled-icon-color)
}
.van-checkbox__icon--disabled.van-checkbox__icon--checked .van-icon {
  color: var(--van-checkbox-disabled-icon-color)
}
.van-checkbox__label {
  margin-left: var(--van-checkbox-label-margin);
  color: var(--van-checkbox-label-color);
  line-height: var(--van-checkbox-size)
}
.van-checkbox__label--left {
  margin: 0 var(--van-checkbox-label-margin) 0 0
}
.van-checkbox__label--disabled {
  color: var(--van-checkbox-disabled-label-color)
}
.quotation-item[data-v-5ff50faa] {
  height: 10.62802vw
}
.flip-list-move[data-v-5ff50faa] {
  transition: transform .5s
}
.no-move[data-v-5ff50faa] {
  transition: transform 0s
}
.ghost[data-v-5ff50faa] {
  opacity: .5;
  background: #C3A76920
}
.personal-edit[data-v-6eac6d6d] {
  padding: 3.62319vw
}
.recommend[data-v-6eac6d6d] {
  font-size: 3.86473vw;
  font-weight: 400;
  color: rgba(7, 12, 23, .7);
  line-height: 5.31401vw;
  margin-top: 9.17874vw;
  padding-bottom: 3.38164vw
}
.recommend .main-btn[data-v-6eac6d6d] {
  border-radius: 7.24638vw 0 0 7.24638vw;
  height: 7.24638vw;
  margin-right: -3.62319vw
}
.quotelist[data-v-4b408cc6] {
  overflow: auto
}
.quotelist-item[data-v-4b408cc6] {
  align-items: center;
  height: 12.80193vw
}
.quotelist-item-title[data-v-4b408cc6] {
  flex: 1
}
.quotelist-item-name[data-v-4b408cc6] {
  font-size: 3.86473vw;
  font-weight: 600;
  color: #070c17;
  line-height: 5.31401vw
}
.quotelist-item-code[data-v-4b408cc6] {
  margin-left: 1.44928vw;
  font-size: 3.38164vw;
  font-weight: 500;
  color: rgba(7, 12, 23, .5);
  line-height: 4.83092vw
}
:root {
  --van-popover-arrow-size: 1.44928vw;
  --van-popover-radius: var(--van-radius-lg);
  --van-popover-action-width: 30.91787vw;
  --van-popover-action-height: 10.62802vw;
  --van-popover-action-font-size: var(--van-font-size-md);
  --van-popover-action-line-height: var(--van-line-height-md);
  --van-popover-action-icon-size: 4.83092vw;
  --van-popover-light-text-color: var(--van-text-color);
  --van-popover-light-background: var(--van-background-2);
  --van-popover-light-action-disabled-text-color: var(--van-text-color-3);
  --van-popover-dark-text-color: var(--van-white);
  --van-popover-dark-background: #4a4a4a;
  --van-popover-dark-action-disabled-text-color: var(--van-text-color-2)
}
.van-popover {
  position: absolute;
  overflow: visible;
  background-color: transparent;
  transition: opacity .15s, transform .15s
}
.van-popover__wrapper {
  display: inline-block
}
.van-popover__arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: var(--van-popover-arrow-size)
}
.van-popover__content {
  overflow: hidden;
  border-radius: var(--van-popover-radius)
}
.van-popover__action {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: var(--van-popover-action-width);
  height: var(--van-popover-action-height);
  padding: 0 var(--van-padding-md);
  font-size: var(--van-popover-action-font-size);
  line-height: var(--van-line-height-md);
  cursor: pointer
}
.van-popover__action:last-child .van-popover__action-text:after {
  display: none
}
.van-popover__action-text {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  height: 100%
}
.van-popover__action-icon {
  margin-right: var(--van-padding-xs);
  font-size: var(--van-popover-action-icon-size)
}
.van-popover__action--with-icon .van-popover__action-text {
  justify-content: flex-start
}
.van-popover[data-popper-placement^=top] .van-popover__arrow {
  bottom: 0;
  border-top-color: currentColor;
  border-bottom-width: 0;
  transform: translate(-50%);
  margin-bottom: calc(var(--van-popover-arrow-size) * -1)
}
.van-popover[data-popper-placement=top] {
  transform-origin: 50% 100%
}
.van-popover[data-popper-placement=top] .van-popover__arrow {
  left: 50%
}
.van-popover[data-popper-placement=top-start] {
  transform-origin: 0 100%
}
.van-popover[data-popper-placement=top-start] .van-popover__arrow {
  left: var(--van-padding-md)
}
.van-popover[data-popper-placement=top-end] {
  transform-origin: 100% 100%
}
.van-popover[data-popper-placement=top-end] .van-popover__arrow {
  right: var(--van-padding-md)
}
.van-popover[data-popper-placement^=left] .van-popover__arrow {
  right: 0;
  border-right-width: 0;
  border-left-color: currentColor;
  transform: translateY(-50%);
  margin-right: calc(var(--van-popover-arrow-size) * -1)
}
.van-popover[data-popper-placement=left] {
  transform-origin: 100% 50%
}
.van-popover[data-popper-placement=left] .van-popover__arrow {
  top: 50%
}
.van-popover[data-popper-placement=left-start] {
  transform-origin: 100% 0
}
.van-popover[data-popper-placement=left-start] .van-popover__arrow {
  top: var(--van-padding-md)
}
.van-popover[data-popper-placement=left-end] {
  transform-origin: 100% 100%
}
.van-popover[data-popper-placement=left-end] .van-popover__arrow {
  bottom: var(--van-padding-md)
}
.van-popover[data-popper-placement^=right] .van-popover__arrow {
  left: 0;
  border-right-color: currentColor;
  border-left-width: 0;
  transform: translateY(-50%);
  margin-left: calc(var(--van-popover-arrow-size) * -1)
}
.van-popover[data-popper-placement=right] {
  transform-origin: 0 50%
}
.van-popover[data-popper-placement=right] .van-popover__arrow {
  top: 50%
}
.van-popover[data-popper-placement=right-start] {
  transform-origin: 0 0
}
.van-popover[data-popper-placement=right-start] .van-popover__arrow {
  top: var(--van-padding-md)
}
.van-popover[data-popper-placement=right-end] {
  transform-origin: 0 100%
}
.van-popover[data-popper-placement=right-end] .van-popover__arrow {
  bottom: var(--van-padding-md)
}
.van-popover[data-popper-placement^=bottom] .van-popover__arrow {
  top: 0;
  border-top-width: 0;
  border-bottom-color: currentColor;
  transform: translate(-50%);
  margin-top: calc(var(--van-popover-arrow-size) * -1)
}
.van-popover[data-popper-placement=bottom] {
  transform-origin: 50% 0
}
.van-popover[data-popper-placement=bottom] .van-popover__arrow {
  left: 50%
}
.van-popover[data-popper-placement=bottom-start] {
  transform-origin: 0 0
}
.van-popover[data-popper-placement=bottom-start] .van-popover__arrow {
  left: var(--van-padding-md)
}
.van-popover[data-popper-placement=bottom-end] {
  transform-origin: 100% 0
}
.van-popover[data-popper-placement=bottom-end] .van-popover__arrow {
  right: var(--van-padding-md)
}
.van-popover--light {
  color: var(--van-popover-light-text-color)
}
.van-popover--light .van-popover__content {
  background: var(--van-popover-light-background);
  box-shadow: 0 .48309vw 2.89855vw rgba(50, 50, 51, .12)
}
.van-popover--light .van-popover__arrow {
  color: var(--van-popover-light-background)
}
.van-popover--light .van-popover__action:active {
  background-color: var(--van-active-color)
}
.van-popover--light .van-popover__action--disabled {
  color: var(--van-popover-light-action-disabled-text-color);
  cursor: not-allowed
}
.van-popover--light .van-popover__action--disabled:active {
  background-color: transparent
}
.van-popover--dark {
  color: var(--van-popover-dark-text-color)
}
.van-popover--dark .van-popover__content {
  background: var(--van-popover-dark-background)
}
.van-popover--dark .van-popover__arrow {
  color: var(--van-popover-dark-background)
}
.van-popover--dark .van-popover__action:active {
  background-color: rgba(0, 0, 0, .2)
}
.van-popover--dark .van-popover__action--disabled {
  color: var(--van-popover-dark-action-disabled-text-color)
}
.van-popover--dark .van-popover__action--disabled:active {
  background-color: transparent
}
.van-popover--dark .van-popover__action-text:after {
  border-color: var(--van-gray-7)
}
.van-popover-zoom-enter-from, .van-popover-zoom-leave-active {
  transform: scale(.8);
  opacity: 0
}
.van-popover-zoom-enter-active {
  transition-timing-function: var(--van-ease-out)
}
.van-popover-zoom-leave-active {
  transition-timing-function: var(--van-ease-in)
}
.trade-info-container .up[data-v-f0439ddf] {
  color: #e64c32
}
.trade-info-container .down[data-v-f0439ddf] {
  color: #529702
}
.trade-info[data-v-f0439ddf] {
  font-size: 2.89855vw;
  overflow: auto
}
.trade-ratio[data-v-f0439ddf] {
  width: .48309vw
}
.contract[data-v-f0439ddf] {
  padding: 3.62319vw 2.41546vw
}
.contract-name[data-v-f0439ddf] {
  width: 21.25604vw;
  height: 6.76329vw;
  font-size: 5.31401vw;
  font-weight: 700;
  color: var(--theme-trade-contract);
  line-height: 6.76329vw
}
.contract-code[data-v-f0439ddf] {
  width: 13.28502vw;
  height: 4.58937vw;
  font-size: 3.86473vw;
  font-weight: 500;
  color: var(--theme-trade-contract);
  line-height: 4.58937vw;
  margin: 0 1.20773vw 0 2.41546vw
}
.contract-detail[data-v-f0439ddf] {
  margin-top: 1.20773vw
}
.contract-detail-price[data-v-f0439ddf] {
  font-size: 6.28019vw;
  font-weight: 500;
  margin-right: 3.62319vw
}
.contract-detail-state[data-v-f0439ddf] {
  margin-right: 2.41546vw
}
.trade[data-v-f0439ddf] {
  display: grid;
  grid-template-columns: 48% 48%;
  grid-template-rows: 3.62319vw 3.62319vw;
  grid-gap: 2.657vw 3.62319vw;
  padding: 2.41546vw
}
.trade > div[data-v-f0439ddf] {
  display: flex;
  justify-content: space-between
}
.trade-title[data-v-f0439ddf] {
  color: var(--theme-trade-title);
  font-weight: 700;
  font-size: 3.38164vw
}
.trade-value[data-v-f0439ddf] {
  color: var(--theme-trade-value);
  font-size: 3.38164vw
}
.detail[data-v-f0439ddf] {
  background: #F8F8F8;
  padding: 0 .72464vw
}
.detail-type[data-v-f0439ddf] {
  display: block;
  width: 80%;
  margin: 0 auto 2.89855vw
}
.detail-type-item[data-v-f0439ddf] {
  width: 50%
}
.detail .trade-ten[data-v-f0439ddf] {
  color: var(--theme-trade-contract)
}
.detail .trade-ten-item[data-v-f0439ddf] {
  display: flex;
  justify-content: space-between;
  align-items: center
}
.detail .trade-ten-title[data-v-f0439ddf] {
  color: rgba(7, 12, 23, .7);
  margin-right: .96618vw
}
.detail .trade-ten-title[data-v-f0439ddf], .detail .trade-ten-vol[data-v-f0439ddf], .detail .trade-ten-price[data-v-f0439ddf] {
  display: inline-block;
  font-size: 2.89855vw;
  transform: scale(.88)
}
.detail .trade-ten-num[data-v-f0439ddf], .detail .trade-ten-title[data-v-f0439ddf] {
  display: inline-block
}
.detail .trade-ten-vol[data-v-f0439ddf] {
  flex: 2;
  font-family: DIN-Medium, DIN
}
.detail .trade-ten-price[data-v-f0439ddf] {
  text-align: right;
  flex: 1
}
.detail .trade-ten.sell .trade-ten-vol[data-v-f0439ddf] {
  color: #529702
}
.detail .trade-ten.buy .trade-ten-vol[data-v-f0439ddf] {
  color: #e64c32
}
.detail .split-bar[data-v-f0439ddf] {
  width: 100%;
  height: 2.41546vw;
  border-radius: 1.44928vw
}
.trade-list[data-v-f0439ddf] {
  border-radius: 1px;
  border: 1px solid #EBEBEB;
  z-index: 11;
  border-bottom-width: 0
}
.trade-list-title[data-v-f0439ddf] {
  font-size: 2.89855vw;
  font-weight: 400;
  color: #070c17;
  line-height: 4.10628vw;
  height: 7.24638vw;
  background: white
}
.trade-list-item span[data-v-f0439ddf] {
  padding: .48309vw
}
.trade-list-item span[data-v-f0439ddf]:first-child {
  font-size: 2.89855vw;
  font-family: DIN-Regular, DIN;
  font-weight: 400;
  color: rgba(7, 12, 23, .5);
  line-height: 3.62319vw
}
.trade-list-item span[data-v-f0439ddf]:last-child {
  font-size: 2.89855vw;
  font-family: DIN-Regular, DIN;
  font-weight: 500;
  line-height: 3.86473vw
}
.trade-list-container[data-v-f0439ddf] {
  padding: 0 .72464vw;
  background: white
}
.bottom-line[data-v-f0439ddf] {
  border-bottom: 1px solid var(--periodbar-boder)
}
.stockkline .van-tab {
  flex: 1
}
.stockkline .van-tab--grow {
  padding: 0 1px
}
.trade-rtj {
  display: flex;
  justify-content: space-between
}
.trade-rtj div {
  font-size: 2.89855vw;
  transform: scale(.88)
}
.klineframe-toolbar, .index_change {
  display: none !important
}
.preiod-ext .van-popover__wrapper {
  width: 100%
}
.stockkline[data-v-841fd55e] {
  width: 100%;
  height: 100%;
  color: #000
}
.stockkline .dialogMask[data-v-841fd55e] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000
}
.stockkline .divchart[data-v-841fd55e] {
  position: relative
}
.stockkline .divchart .bottomToolForChart[data-v-841fd55e] {
  width: 50%;
  height: 19.32367vw;
  position: absolute;
  bottom: 0;
  left: 25%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 999
}
.stockkline .divchart .bottomToolForChart .iconBg[data-v-841fd55e] {
  width: 6.76329vw;
  height: 6.76329vw;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #929291;
  margin-right: 2.41546vw;
  display: inline-flex;
  opacity: 0;
  transition: opacity .4s
}
.stockkline .divchart .bottomToolForChart .iconBg i[data-v-841fd55e] {
  color: #fff
}
.stockkline .divchart .bottomToolForChart:hover .iconBg[data-v-841fd55e] {
  opacity: .7
}
.stockkline .divchart .bottomToolForChart:hover .iconBg[data-v-841fd55e]:hover {
  opacity: 1
}
.stockkline .divchart .bottomToolForChart:hover .iconBg.iconDisabled[data-v-841fd55e] {
  background-color: #929291;
  opacity: 0
}
.minute[data-v-841fd55e], .kline[data-v-841fd55e] {
  left: 0px;
  top: 0px;
  position: relative;
  width: 100%;
  height: 100%;
  border-top: 1px solid var(--periodbar-boder)
}
.periodbar[data-v-841fd55e] {
  display: flex;
  height: 10.62802vw;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box
}
.periodbar .item[data-v-841fd55e] {
  color: var(--theme-font-color);
  display: inline-block;
  font-size: 4.34783vw;
  margin-right: 6.28019vw
}
.periodbar .item.active[data-v-841fd55e] {
  color: var(--theme-font-active-color)
}
.periodbar .preiod[data-v-841fd55e] {
  position: relative
}
.periodbar .preiod-ext[data-v-841fd55e] {
  position: absolute;
  right: 0;
  top: 0;
  height: 10.62802vw;
  width: 17%;
  color: transparent
}
.kline-btn-group[data-v-841fd55e] {
  display: flex;
  justify-content: center;
  align-items: center
}
.kline-btn-back[data-v-841fd55e] {
  width: 22.70531vw;
  height: 9.66184vw;
  background: linear-gradient(306deg, #2E7DC8 0%, #55A6F4 100%);
  border-radius: .96618vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.86473vw;
  font-weight: 600;
  color: #fff;
  line-height: 5.31401vw;
  cursor: pointer
}
.kline-btn-back img[data-v-841fd55e] {
  width: 3.86473vw;
  height: 3.1401vw
}
.kline-btn-home[data-v-841fd55e] {
  width: 9.66184vw;
  height: 9.66184vw;
  background: #2886E010;
  border-radius: .96618vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 2.41546vw;
  cursor: pointer
}
.kline-btn-home img[data-v-841fd55e] {
  width: 5.7971vw;
  height: 5.7971vw
}
.indexbar[data-v-841fd55e] {
  display: flex;
  align-items: center;
  width: 100%;
  height: 7.24638vw;
  background: #2886E010;
  padding: 0 2.41546vw;
  overflow: hidden
}
.indexbar-title[data-v-841fd55e] {
  color: var(--theme-font-color);
  font-size: 3.86473vw
}
.indexbar span[data-v-841fd55e] {
  width: 14.49275vw;
  height: 7.24638vw;
  line-height: 7.24638vw;
  text-align: center;
  cursor: pointer;
  font-size: 3.86473vw;
  color: var(--theme-font-color)
}
.indexbar span.active[data-v-841fd55e] {
  background: linear-gradient(306deg, #2E7DC8 0%, #55A6F4 100%);
  color: #fff
}
.brushTool[data-v-841fd55e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 7.24638vw;
  padding: 0 2.41546vw;
  color: #fff
}
.preiod-ext .van-popover__wrapper[data-v-841fd55e] {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%
}
.stockkline .van-tabs__nav[data-v-841fd55e] {
  padding-right: 0;
  padding-left: 0
}
.stockkline .jschart-tooltip[data-v-841fd55e] {
  display: none !important;
  opacity: 0 !important
}
.stockkline .van-tabs__line[data-v-841fd55e] {
  bottom: 4.83092vw;
  width: 4.83092vw
}
.kline-menu-container[data-v-841fd55e] {
  background: #C3A76920
}
.kline-index-container[data-v-841fd55e] {
  transition: all .1s;
  position: absolute;
  background: white;
  border-radius: 2.89855vw 2.89855vw 0 0;
  bottom: -24.15459vw;
  left: 0;
  right: 0
}
.kline-index-container.active[data-v-841fd55e] {
  bottom: 0
}
.kline-index-title[data-v-841fd55e] {
  background: #C3A76920;
  height: 10.86957vw;
  font-size: 3.86473vw;
  font-weight: 500;
  color: #070c17;
  line-height: 5.31401vw
}
.kline-index-list > div[data-v-841fd55e] {
  padding: 1.44928vw;
  font-size: 3.38164vw;
  font-weight: 400;
  color: #070c17;
  line-height: 4.83092vw
}
.kline-index-list > div.active[data-v-841fd55e] {
  font-size: 4.58937vw;
  font-weight: 600;
  color: #c3a769;
  line-height: 6.28019vw
}
.kline-menu div[data-v-841fd55e] {
  height: 7.72947vw;
  border-radius: 4.83092vw;
  border: 1px solid #C3A769;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.44928vw 4.34783vw;
  font-size: 3.38164vw;
  font-weight: 600;
  color: #c3a769;
  line-height: 4.83092vw
}
.kline-menu div.active[data-v-841fd55e] {
  background: linear-gradient(90deg, #D4B98C 0%, #A58964 100%);
  box-shadow: 0 1.20773vw 2.41546vw rgba(195, 167, 105, .2);
  color: #fff
}
.kline-menu div[data-v-841fd55e]:nth-child(even) {
  width: 19.32367vw
}
.divstockmain[data-v-847ee335] {
  display: flex;
  justify-content: space-between
}
.personal[data-v-847ee335] {
  width: 62.80193vw;
  border-right: 1px solid var(--body-bgcolor)
}
.divtradeinfo[data-v-847ee335] {
  border-left: 1px solid var(--body-bgcolor)
}
.divstockfull[data-v-7305ab7f] {
  height: 100%;
  width: 100%
}
.stock[data-v-7ee98e01] {
  padding: 1.20773vw 3.62319vw 2.41546vw
}
.stock-info-last[data-v-7ee98e01] {
  font-size: 7.24638vw;
  font-family: DINEngschrift;
  font-weight: 700;
  color: #070c17
}
.stock-info-update[data-v-7ee98e01] {
  min-width: 14.49275vw
}
.stock-info-update span[data-v-7ee98e01] {
  font-size: 3.38164vw;
  font-family: DIN-Medium, DIN;
  font-weight: 500
}
.stock-info-update span[data-v-7ee98e01]:nth-child(1) {
  margin-right: 4.10628vw
}
.stock-info-list > div[data-v-7ee98e01] {
  width: 50%;
  display: flex
}
.stock-info-list span[data-v-7ee98e01] {
  font-size: 3.38164vw;
  font-family: DIN-Medium, DIN;
  font-weight: 500;
  text-align: right
}
.stock-info-list .trade-title[data-v-7ee98e01] {
  display: inline-block;
  min-width: 13.28502vw;
  color: rgba(7, 12, 23, .5)
}
.stock-info-list .trade-value[data-v-7ee98e01] {
  display: inline-block;
  flex: 1;
  text-align: right
}
.stock-info-list-ext[data-v-7ee98e01] {
  position: absolute;
  width: 4.83092vw;
  height: 4.83092vw;
  right: -1.44928vw;
  bottom: 0px
}
.stock-info-list-ext img[data-v-7ee98e01] {
  position: absolute;
  bottom: 0px;
  right: 0
}
.stock-info-more[data-v-7ee98e01] {
  padding: 3.62319vw
}
.stock-info-more-title[data-v-7ee98e01] {
  font-size: 3.38164vw;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 600;
  color: #070c17;
  line-height: 4.83092vw;
  margin-bottom: 2.41546vw
}
.stock-info-more-list[data-v-7ee98e01] {
  border: 1px solid #EBEBEB;
  border-bottom-width: 0
}
.stock-info-more-list > div[data-v-7ee98e01] {
  width: 50%;
  display: flex;
  justify-content: space-between;
  padding: 2.41546vw
}
.stock-info-more-list > div > span[data-v-7ee98e01] {
  font-size: 3.38164vw;
  font-weight: 400;
  color: #070c17;
  line-height: 4.83092vw
}
.stock-info-more-list > div > span[data-v-7ee98e01]:last-child {
  font-size: 3.38164vw;
  font-family: DIN-Medium, DIN;
  font-weight: 500;
  color: #070c17;
  line-height: 4.10628vw
}
.stock-info-more-list > div[data-v-7ee98e01]:nth-child(odd) {
  border-bottom: 1px solid #EBEBEB;
  border-right: 1px solid #EBEBEB
}
.stock-info-more-list > div[data-v-7ee98e01]:nth-child(even) {
  border-bottom: 1px solid #EBEBEB
}
.stock-info-more-close[data-v-7ee98e01] {
  position: absolute;
  bottom: -12.07729vw;
  left: calc(50% - 2.89855vw)
}
.up .stock-info-update span[data-v-7ee98e01], .up .stock-info-last[data-v-7ee98e01] {
  color: #e50113
}
.down .stock-info-update span[data-v-7ee98e01], .down .stock-info-last[data-v-7ee98e01] {
  color: #109a00
}
.tup[data-v-7ee98e01] {
  color: #e50113 !important
}
.tdown[data-v-7ee98e01] {
  color: #109a00 !important
}
.stock-tab[data-v-160924e8] {
  text-align: center
}
.stock-tab .sale[data-v-160924e8], .stock-tab .buy[data-v-160924e8] {
  border: 1px solid #8793A5;
  display: inline-block;
  padding: 1.44928vw 5.07246vw;
  font-size: 3.62319vw;
  font-weight: 600;
  color: #8793a5;
  line-height: 5.07246vw
}
.stock-tab .sale[data-v-160924e8] {
  border-radius: 1.44928vw 0 0 1.44928vw
}
.stock-tab .sale.active[data-v-160924e8] {
  background: linear-gradient(90deg, #FB664E 0%, #E82525 100%);
  box-sizing: content-box;
  border-color: #fb664e
}
.stock-tab .buy[data-v-160924e8] {
  border-radius: 0 1.44928vw 1.44928vw 0;
  border-left-width: 0
}
.stock-tab .buy.active[data-v-160924e8] {
  background: linear-gradient(90deg, #35BE72 0%, #0F8C00 100%);
  box-sizing: content-box;
  border-color: #35be72
}
.stock-tab .active[data-v-160924e8] {
  font-size: 3.62319vw;
  font-weight: 600;
  color: #fff;
  line-height: 5.07246vw
}
.stock-optional[data-v-160924e8] {
  padding-top: 1.20773vw;
  font-size: 3.1401vw;
  color: #070c17;
  line-height: 4.34783vw
}
.search-result-title {
  margin-top: 3.1401vw;
  font-size: 3.86473vw;
  font-weight: 600;
  color: #070c17;
  line-height: 5.07246vw;
  text-align: center
}
.search-result-title:after {
  content: "";
  display: block;
  text-align: center;
  margin: 1.93237vw auto 0;
  border-radius: 2.41546vw;
  height: .72464vw;
  width: 9.66184vw;
  background: linear-gradient(90deg, #D4B98C 0%, #A58964 100%)
}
.sys-search .van-search__action {
  margin: 0 1.93237vw
}
.sys-search .search-options-content {
  min-height: calc(80vh - 26.57005vw);
  overflow: auto
}
.sys-search .recommend {
  font-size: 3.86473vw;
  font-weight: 400;
  color: rgba(7, 12, 23, .7);
  line-height: 5.31401vw;
  margin-top: 17.8744vw;
  padding-bottom: 3.38164vw
}
.search-container {
  padding-top: 0 !important
}
:root {
  --van-search-padding: 2.41546vw var(--van-padding-sm);
  --van-search-background: var(--van-background-2);
  --van-search-content-background: var(--van-background);
  --van-search-input-height: 8.21256vw;
  --van-search-label-padding: 0 1.20773vw;
  --van-search-label-color: var(--van-text-color);
  --van-search-label-font-size: var(--van-font-size-md);
  --van-search-left-icon-color: var(--van-gray-6);
  --van-search-action-padding: 0 var(--van-padding-xs);
  --van-search-action-text-color: var(--van-text-color);
  --van-search-action-font-size: var(--van-font-size-md)
}
.van-search {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: var(--van-search-padding);
  background: var(--van-search-background)
}
.van-search__content {
  display: flex;
  flex: 1;
  padding-left: var(--van-padding-sm);
  background: var(--van-search-content-background);
  border-radius: var(--van-radius-sm)
}
.van-search__content--round {
  border-radius: var(--van-radius-max)
}
.van-search__label {
  padding: var(--van-search-label-padding);
  color: var(--van-search-label-color);
  font-size: var(--van-search-label-font-size);
  line-height: var(--van-search-input-height)
}
.van-search__field {
  flex: 1;
  align-items: center;
  padding: 0 var(--van-padding-xs) 0 0;
  height: var(--van-search-input-height);
  background-color: transparent
}
.van-search__field .van-field__left-icon {
  color: var(--van-search-left-icon-color)
}
.van-search--show-action {
  padding-right: 0
}
.van-search input::-webkit-search-decoration, .van-search input::-webkit-search-cancel-button, .van-search input::-webkit-search-results-button, .van-search input::-webkit-search-results-decoration {
  display: none
}
.van-search__action {
  padding: var(--van-search-action-padding);
  color: var(--van-search-action-text-color);
  font-size: var(--van-search-action-font-size);
  line-height: var(--van-search-input-height);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}
.van-search__action:active {
  background-color: var(--van-active-color)
}
:root {
  --van-notice-bar-height: 9.66184vw;
  --van-notice-bar-padding: 0 var(--van-padding-md);
  --van-notice-bar-wrapable-padding: var(--van-padding-xs) var(--van-padding-md);
  --van-notice-bar-text-color: var(--van-orange-dark);
  --van-notice-bar-font-size: var(--van-font-size-md);
  --van-notice-bar-line-height: 5.7971vw;
  --van-notice-bar-background: var(--van-orange-light);
  --van-notice-bar-icon-size: 3.86473vw;
  --van-notice-bar-icon-min-width: 5.7971vw
}
.van-notice-bar {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--van-notice-bar-height);
  padding: var(--van-notice-bar-padding);
  color: var(--van-notice-bar-text-color);
  font-size: var(--van-notice-bar-font-size);
  line-height: var(--van-notice-bar-line-height);
  background: var(--van-notice-bar-background)
}
.van-notice-bar__left-icon, .van-notice-bar__right-icon {
  min-width: var(--van-notice-bar-icon-min-width);
  font-size: var(--van-notice-bar-icon-size)
}
.van-notice-bar__right-icon {
  text-align: right;
  cursor: pointer
}
.van-notice-bar__wrap {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  height: 100%;
  overflow: hidden
}
.van-notice-bar__content {
  position: absolute;
  white-space: nowrap;
  transition-timing-function: linear
}
.van-notice-bar__content.van-ellipsis {
  max-width: 100%
}
.van-notice-bar--wrapable {
  height: auto;
  padding: var(--van-notice-bar-wrapable-padding)
}
.van-notice-bar--wrapable .van-notice-bar__wrap {
  height: auto
}
.van-notice-bar--wrapable .van-notice-bar__content {
  position: relative;
  white-space: normal;
  word-wrap: break-word
}
.notice-swipe[data-v-c2ccbd27] {
  height: 7.24638vw;
  line-height: 7.24638vw
}
.quotation[data-v-ceeae452] {
  padding: 2.89855vw
}
.quotation-title[data-v-ceeae452] {
  font-size: 3.86473vw;
  font-weight: 600 !important;
  color: #070c17 !important;
  line-height: 5.31401vw
}
.quotation-num[data-v-ceeae452] {
  font-size: 5.07246vw;
  font-family: DIN-Bold, DIN;
  font-weight: 700;
  line-height: 6.03865vw;
  margin: .72464vw 0
}
.quotation-uprate[data-v-ceeae452], .quotation-up[data-v-ceeae452] {
  flex: 1;
  font-size: 3.1401vw;
  font-family: DIN-Medium, DIN;
  line-height: 3.86473vw
}
.quotation-up[data-v-ceeae452] {
  text-align: right
}
.quotation-uprate[data-v-ceeae452] {
  text-align: left
}
.quotation.up .quotation-uprate[data-v-ceeae452], .quotation.up .quotation-up[data-v-ceeae452], .quotation.up .quotation-num[data-v-ceeae452] {
  color: #e50113
}
.quotation.down .quotation-uprate[data-v-ceeae452], .quotation.down .quotation-up[data-v-ceeae452], .quotation.down .quotation-num[data-v-ceeae452] {
  color: #109a00
}
.quotation-edit[data-v-ceeae452] {
  color: rgba(42, 47, 65, .25);
  font-size: 3.38164vw
}
@-webkit-keyframes ani_breathe {
  0% {
    background: rgba(16, 154, 0, 0)
  }
  25% {
    background: rgba(16, 154, 0, .05)
  }
  50% {
    background: rgba(16, 154, 0, .1)
  }
  75% {
    background: rgba(16, 154, 0, .05)
  }
  to {
    background: rgba(16, 154, 0, 0)
  }
}
@keyframes ani_breathe {
  0% {
    background: rgba(16, 154, 0, 0)
  }
  25% {
    background: rgba(16, 154, 0, .05)
  }
  50% {
    background: rgba(16, 154, 0, .1)
  }
  75% {
    background: rgba(16, 154, 0, .05)
  }
  to {
    background: rgba(16, 154, 0, 0)
  }
}
@-webkit-keyframes ani_breathe2 {
  0% {
    background: rgba(16, 154, 0, 0)
  }
  25% {
    background: rgba(16, 154, 0, .05)
  }
  50% {
    background: rgba(16, 154, 0, .1)
  }
  75% {
    background: rgba(16, 154, 0, .05)
  }
  to {
    background: rgba(16, 154, 0, 0)
  }
}
@keyframes ani_breathe2 {
  0% {
    background: rgba(16, 154, 0, 0)
  }
  25% {
    background: rgba(16, 154, 0, .05)
  }
  50% {
    background: rgba(16, 154, 0, .1)
  }
  75% {
    background: rgba(16, 154, 0, .05)
  }
  to {
    background: rgba(16, 154, 0, 0)
  }
}
.breathe_down {
  -webkit-animation: 1s ani_breathe;
  animation: 1s ani_breathe
}
.breathe_down2 {
  -webkit-animation: 1s ani_breathe2;
  animation: 1s ani_breathe2
}
@-webkit-keyframes ani_breathe_up {
  0% {
    background: rgba(229, 1, 19, 0)
  }
  25% {
    background: rgba(229, 1, 19, .05)
  }
  50% {
    background: rgba(229, 1, 19, .1)
  }
  75% {
    background: rgba(229, 1, 19, .05)
  }
  to {
    background: rgba(229, 1, 19, 0)
  }
}
@keyframes ani_breathe_up {
  0% {
    background: rgba(229, 1, 19, 0)
  }
  25% {
    background: rgba(229, 1, 19, .05)
  }
  50% {
    background: rgba(229, 1, 19, .1)
  }
  75% {
    background: rgba(229, 1, 19, .05)
  }
  to {
    background: rgba(229, 1, 19, 0)
  }
}
@-webkit-keyframes ani_breathe2_up {
  0% {
    background: rgba(229, 1, 19, 0)
  }
  25% {
    background: rgba(229, 1, 19, .05)
  }
  50% {
    background: rgba(229, 1, 19, .1)
  }
  75% {
    background: rgba(229, 1, 19, .05)
  }
  to {
    background: rgba(229, 1, 19, 0)
  }
}
@keyframes ani_breathe2_up {
  0% {
    background: rgba(229, 1, 19, 0)
  }
  25% {
    background: rgba(229, 1, 19, .05)
  }
  50% {
    background: rgba(229, 1, 19, .1)
  }
  75% {
    background: rgba(229, 1, 19, .05)
  }
  to {
    background: rgba(229, 1, 19, 0)
  }
}
.breathe_up {
  -webkit-animation: 1s ani_breathe_up;
  animation: 1s ani_breathe_up
}
.breathe_up2 {
  -webkit-animation: 1s ani_breathe2_up;
  animation: 1s ani_breathe2_up
}
.van-swipe img[data-v-4f80108a] {
  display: block;
  box-sizing: border-box;
  width: 100%;
  background-color: var(--van-white);
  pointer-events: none;
  border-radius: 2.41546vw
}
.news-header {
  margin-bottom: 2.41546vw
}
.news-title {
  font-size: 4.58937vw;
  font-weight: 600;
  color: #2a2f41;
  line-height: 6.28019vw
}
.news-more {
  font-size: 3.38164vw;
  font-weight: 400;
  color: #c3a769;
  line-height: 4.83092vw
}
.news-item {
  padding: 2.89855vw 0
}
.news-item-title {
  font-size: 3.86473vw;
  font-weight: 600;
  color: #070c17;
  line-height: 5.31401vw;
  margin-bottom: 2.41546vw
}
.news-item-content {
  width: 70%
}
.news-item-append span {
  font-size: 3.1401vw;
  font-weight: 400;
  color: rgba(7, 12, 23, .4);
  line-height: 4.34783vw;
  margin-right: 2.41546vw
}
.home[data-v-402de442] {
  height: 100%;
  padding: 0 3.86473vw
}
.home-top[data-v-402de442] {
  left: 0;
  right: 0;
  background: white url(/web/static/png/top_bg@2x-e460d7fe.png) no-repeat;
  background-size: cover;
  z-index: 99
}
.home-top-search[data-v-402de442] {
  padding: 0 3.62319vw
}
.home-container[data-v-402de442] {
  padding-top: 28.98551vw
}
.home-header[data-v-402de442] {
  padding: 4.83092vw 0 2.41546vw
}
.home-header img[data-v-402de442] {
  width: 28.98551vw;
  height: 7.24638vw
}
.home-user span[data-v-402de442] {
  font-size: 3.86473vw;
  font-weight: 600;
  color: #070c17;
  line-height: 5.31401vw
}
.home-notice[data-v-402de442] {
  padding: 0
}
.home-search[data-v-402de442] {
  padding-right: 0 !important
}
.home-search-area[data-v-402de442] {
  position: relative
}
.home-search-mask[data-v-402de442] {
  position: absolute;
  top: 2.41546vw;
  left: 4.83092vw;
  right: 2.41546vw;
  bottom: 2.41546vw;
  background: transparent;
  z-index: 10
}
@keyframes myfirst {
  0% {
    background: red
  }
  to {
    background: yellow
  }
}
@-webkit-keyframes myfirst {
  0% {
    background: red
  }
  to {
    background: yellow
  }
}
.quotation-container {
  padding: 3.62319vw 3.62319vw 0
}
.quotation-tab-list .van-tabs__wrap {
  height: 0
}
.quotation-tab-content .quotation-list {
  max-height: 144.92754vw;
  min-height: 120.77295vw;
  overflow: scroll
}
.quotation-tab {
  position: fixed;
  bottom: 14.25121vw;
  left: 0;
  right: 0
}
.quotation-tab .van-tab {
  background: rgba(7, 12, 23, .8)
}
.quotation-tab .van-tab__text {
  font-size: 3.38164vw;
  font-weight: 400;
  color: rgba(255, 255, 255, .7)
}
.quotation-tab .van-tab--active .van-tab__text {
  font-size: 3.38164vw;
  font-weight: 600;
  color: #fff
}
.quotation-tab .van-tabs__line {
  bottom: 4.83092vw;
  width: 4.83092vw
}
.quotation-tab .van-tab--line:after {
  content: "";
  position: absolute;
  right: -1px;
  display: block;
  height: 3.38164vw;
  width: .48309vw;
  background: rgba(255, 255, 255, .1)
}
.quotation-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.62319vw !important;
  font-weight: 400 !important;
  color: rgba(7, 12, 23, .5) !important;
  line-height: 5.07246vw
}
.quotation-title img {
  width: 3.38164vw;
  height: 3.38164vw;
  display: block;
  margin-left: .96618vw
}
.quotation-item {
  padding: 1.69082vw 0
}
.quotation-item .quotation-rate {
  background: linear-gradient(270deg, #C0C5D0 0%, #D8DAE1 100%)
}
.quotation-item .quotation-last {
  color: #8793a5
}
.quotation-item.up .quotation-last {
  color: #e50113
}
.quotation-item.up .quotation-rate {
  background: linear-gradient(90deg, #FB664E 0%, #E82525 100%)
}
.quotation-item.down .quotation-last {
  color: #109a00
}
.quotation-item.down .quotation-rate {
  background: linear-gradient(90deg, #35BE72 0%, #0F8C00 100%)
}
.quotation-code {
  flex: 2;
  justify-content: flex-start;
  font-size: 4.34783vw;
  font-weight: 600;
  color: #070c17;
  line-height: 6.03865vw
}
.quotation-code > div:last-child {
  font-size: 3.1401vw;
  font-weight: 500;
  color: rgba(7, 12, 23, .5);
  line-height: 4.34783vw
}
.quotation-last, .quotation-rate {
  text-align: right;
  justify-content: flex-end;
  font-size: 4.58937vw;
  font-family: DIN-Medium, DIN;
  font-weight: 500;
  line-height: 5.55556vw
}
.quotation-last {
  flex: 1
}
.quotation-rate {
  width: 21.25604vw;
  font-size: 4.34783vw;
  color: #fff;
  padding: .48309vw 1.93237vw;
  border-radius: 1.44928vw;
  margin-left: 4.83092vw
}
.flip-list-move {
  transition: transform .5s
}
.no-move {
  transition: transform 0s
}
.ghost {
  opacity: .5;
  background: #c8ebfb
}
.quotation-header span[data-v-fc272d51] {
  color: rgba(7, 12, 23, .5);
  font-size: 3.62319vw;
  padding: 0 0 2.41546vw
}
.recommend {
  font-size: 3.86473vw;
  font-weight: 400;
  color: rgba(7, 12, 23, .7);
  line-height: 5.31401vw;
  margin-top: 9.17874vw;
  padding-bottom: 3.38164vw
}
.recommend .main-btn {
  border-radius: 7.24638vw 0 0 7.24638vw;
  height: 7.24638vw;
  margin-right: -3.62319vw
}
.iframe[data-v-2b5aad67] {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  overflow-x: hidden
}
.iframe.header-show[data-v-2b5aad67] {
  margin-top: 9.66184vw
}
.contract-us-content[data-v-91b17c2e] {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  font-size: 4.10628vw;
  font-weight: 600;
  color: #070c17;
  line-height: 5.7971vw;
  padding: 3.86473vw 3.86473vw 7.24638vw
}
.contract-us-btn[data-v-91b17c2e] {
  margin-top: 6.76329vw;
  height: 9.66184vw;
  background: linear-gradient(90deg, #D4B98C 0%, #A58964 100%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.86473vw;
  font-weight: 400;
  color: #fff;
  line-height: 5.31401vw;
  border-radius: 1.44928vw
}
.profile[data-v-91b17c2e] {
  height: 100vh;
  background: #F8F8F8 url(/web/static/png/top_bg-692f3ce2.png) no-repeat
}
.profile-container[data-v-91b17c2e] {
  padding: 0 3.62319vw;
  margin-top: 5.7971vw;
  margin-bottom: 8.21256vw
}
.profile-feature[data-v-91b17c2e] {
  margin-top: 7.24638vw
}
.profile-feature img[data-v-91b17c2e] {
  width: 6.76329vw;
  height: 6.76329vw;
  display: block
}
.userinfo-login[data-v-91b17c2e] {
  margin-left: 2.89855vw;
  font-size: 4.58937vw;
  font-weight: 600;
  color: #0c2135;
  line-height: 6.28019vw
}
.feature-title[data-v-91b17c2e] {
  font-size: 3.86473vw;
  font-weight: 600;
  color: #070c17;
  line-height: 5.31401vw;
  margin-left: 2.41546vw
}
.van-cell-group--inset[data-v-91b17c2e] {
  margin-left: 0;
  margin-right: 0
}
.van-cell[data-v-91b17c2e] {
  padding: 4.83092vw 3.86473vw
}
:root {
  --van-uploader-size: 19.32367vw;
  --van-uploader-icon-size: 5.7971vw;
  --van-uploader-icon-color: var(--van-gray-4);
  --van-uploader-text-color: var(--van-text-color-2);
  --van-uploader-text-font-size: var(--van-font-size-sm);
  --van-uploader-upload-background: var(--van-gray-1);
  --van-uploader-upload-active-color: var(--van-active-color);
  --van-uploader-delete-color: var(--van-white);
  --van-uploader-delete-icon-size: 3.38164vw;
  --van-uploader-delete-background: rgba(0, 0, 0, .7);
  --van-uploader-file-background: var(--van-background);
  --van-uploader-file-icon-size: 4.83092vw;
  --van-uploader-file-icon-color: var(--van-gray-7);
  --van-uploader-file-name-padding: 0 var(--van-padding-base);
  --van-uploader-file-name-margin-top: var(--van-padding-xs);
  --van-uploader-file-name-font-size: var(--van-font-size-sm);
  --van-uploader-file-name-text-color: var(--van-gray-7);
  --van-uploader-mask-text-color: var(--van-white);
  --van-uploader-mask-background: rgba(50, 50, 51, .88);
  --van-uploader-mask-icon-size: 5.31401vw;
  --van-uploader-mask-message-font-size: var(--van-font-size-sm);
  --van-uploader-mask-message-line-height: var(--van-line-height-xs);
  --van-uploader-loading-icon-size: 5.31401vw;
  --van-uploader-loading-icon-color: var(--van-white);
  --van-uploader-disabled-opacity: var(--van-disabled-opacity)
}
.van-uploader {
  position: relative;
  display: inline-block
}
.van-uploader__wrapper {
  display: flex;
  flex-wrap: wrap
}
.van-uploader__wrapper--disabled {
  opacity: var(--van-uploader-disabled-opacity)
}
.van-uploader__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  opacity: 0
}
.van-uploader__input-wrapper {
  position: relative
}
.van-uploader__input:disabled {
  cursor: not-allowed
}
.van-uploader__upload {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: var(--van-uploader-size);
  height: var(--van-uploader-size);
  margin: 0 var(--van-padding-xs) var(--van-padding-xs) 0;
  background: var(--van-uploader-upload-background)
}
.van-uploader__upload:active {
  background-color: var(--van-uploader-upload-active-color)
}
.van-uploader__upload--readonly:active {
  background-color: var(--van-uploader-upload-background)
}
.van-uploader__upload-icon {
  color: var(--van-uploader-icon-color);
  font-size: var(--van-uploader-icon-size)
}
.van-uploader__upload-text {
  margin-top: var(--van-padding-xs);
  color: var(--van-uploader-text-color);
  font-size: var(--van-uploader-text-font-size)
}
.van-uploader__preview {
  position: relative;
  margin: 0 var(--van-padding-xs) var(--van-padding-xs) 0;
  cursor: pointer
}
.van-uploader__preview-image {
  display: block;
  width: var(--van-uploader-size);
  height: var(--van-uploader-size);
  overflow: hidden
}
.van-uploader__preview-delete {
  position: absolute;
  top: 0;
  right: 0
}
.van-uploader__preview-delete--shadow {
  width: var(--van-uploader-delete-icon-size);
  height: var(--van-uploader-delete-icon-size);
  background: var(--van-uploader-delete-background);
  border-radius: 0 0 0 2.89855vw
}
.van-uploader__preview-delete-icon {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--van-uploader-delete-color);
  font-size: var(--van-uploader-delete-icon-size);
  transform: scale(.7) translate(10%, -10%)
}
.van-uploader__preview-cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}
.van-uploader__mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--van-uploader-mask-text-color);
  background: var(--van-uploader-mask-background)
}
.van-uploader__mask-icon {
  font-size: var(--van-uploader-mask-icon-size)
}
.van-uploader__mask-message {
  margin-top: 1.44928vw;
  padding: 0 var(--van-padding-base);
  font-size: var(--van-uploader-mask-message-font-size);
  line-height: var(--van-uploader-mask-message-line-height)
}
.van-uploader__loading {
  width: var(--van-uploader-loading-icon-size);
  height: var(--van-uploader-loading-icon-size);
  color: var(--van-uploader-loading-icon-color)
}
.van-uploader__file {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--van-uploader-size);
  height: var(--van-uploader-size);
  background: var(--van-uploader-file-background)
}
.van-uploader__file-icon {
  color: var(--van-uploader-file-icon-color);
  font-size: var(--van-uploader-file-icon-size)
}
.van-uploader__file-name {
  box-sizing: border-box;
  width: 100%;
  margin-top: var(--van-uploader-file-name-margin-top);
  padding: var(--van-uploader-file-name-padding);
  color: var(--van-uploader-file-name-text-color);
  font-size: var(--van-uploader-file-name-font-size);
  text-align: center
}
.vue-cropper[data-v-48aab112] {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  direction: ltr;
  touch-action: none;
  text-align: left;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC)
}
.cropper-box-canvas[data-v-48aab112], .cropper-box[data-v-48aab112], .cropper-crop-box[data-v-48aab112], .cropper-drag-box[data-v-48aab112], .cropper-face[data-v-48aab112] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}
.cropper-box-canvas img[data-v-48aab112] {
  position: relative;
  text-align: left;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transform: none;
  max-width: none;
  max-height: none
}
.cropper-box[data-v-48aab112] {
  overflow: hidden
}
.cropper-move[data-v-48aab112] {
  cursor: move
}
.cropper-crop[data-v-48aab112] {
  cursor: crosshair
}
.cropper-modal[data-v-48aab112] {
  background: rgba(0, 0, 0, .5)
}
.cropper-view-box[data-v-48aab112] {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, .75);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}
.cropper-view-box img[data-v-48aab112] {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-align: left;
  max-width: none;
  max-height: none
}
.cropper-face[data-v-48aab112] {
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: .1
}
.crop-info[data-v-48aab112] {
  position: absolute;
  left: 0;
  min-width: 15.70048vw;
  text-align: center;
  color: #fff;
  line-height: 4.83092vw;
  background-color: rgba(0, 0, 0, .8);
  font-size: 2.89855vw
}
.crop-line[data-v-48aab112] {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  opacity: .1
}
.line-w[data-v-48aab112] {
  top: -.72464vw;
  left: 0;
  height: 1.20773vw;
  cursor: n-resize
}
.line-a[data-v-48aab112] {
  top: 0;
  left: -.72464vw;
  width: 1.20773vw;
  cursor: w-resize
}
.line-s[data-v-48aab112] {
  bottom: -.72464vw;
  left: 0;
  height: 1.20773vw;
  cursor: s-resize
}
.line-d[data-v-48aab112] {
  top: 0;
  right: -.72464vw;
  width: 1.20773vw;
  cursor: e-resize
}
.crop-point[data-v-48aab112] {
  position: absolute;
  width: 1.93237vw;
  height: 1.93237vw;
  opacity: .75;
  background-color: #39f;
  border-radius: 100%
}
.point1[data-v-48aab112] {
  top: -.96618vw;
  left: -.96618vw;
  cursor: nw-resize
}
.point2[data-v-48aab112] {
  top: -1.20773vw;
  left: 50%;
  margin-left: -.72464vw;
  cursor: n-resize
}
.point3[data-v-48aab112] {
  top: -.96618vw;
  right: -.96618vw;
  cursor: ne-resize
}
.point4[data-v-48aab112] {
  top: 50%;
  left: -.96618vw;
  margin-top: -.72464vw;
  cursor: w-resize
}
.point5[data-v-48aab112] {
  top: 50%;
  right: -.96618vw;
  margin-top: -.72464vw;
  cursor: e-resize
}
.point6[data-v-48aab112] {
  bottom: -1.20773vw;
  left: -.96618vw;
  cursor: sw-resize
}
.point7[data-v-48aab112] {
  bottom: -1.20773vw;
  left: 50%;
  margin-left: -.72464vw;
  cursor: s-resize
}
.point8[data-v-48aab112] {
  bottom: -1.20773vw;
  right: -.96618vw;
  cursor: se-resize
}
@media screen and (max-width:500px) {
  .crop-point[data-v-48aab112] {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: .45;
    background-color: #39f;
    border-radius: 100%
  }
  .point1[data-v-48aab112] {
    top: -10px;
    left: -10px
  }
  .point2[data-v-48aab112], .point4[data-v-48aab112], .point5[data-v-48aab112], .point7[data-v-48aab112] {
    display: none
  }
  .point3[data-v-48aab112] {
    top: -10px;
    right: -10px
  }
  .point4[data-v-48aab112] {
    top: 0;
    left: 0
  }
  .point6[data-v-48aab112] {
    bottom: -10px;
    left: -10px
  }
  .point8[data-v-48aab112] {
    bottom: -10px;
    right: -10px
  }
}
.upbtn[data-v-3cb67fea] {
  width: 100%;
  height: 100%
}
.bg[data-v-3cb67fea] {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: #000;
  left: 0;
  z-index: 521
}
.btn[data-v-3cb67fea] {
  height: 8vw;
  line-height: 8vw;
  font-size: 4vw;
  padding: 0 3.5vw;
  border-radius: 1.333vw;
  text-align: center
}
.btn1[data-v-3cb67fea] {
  height: 8vw;
  line-height: 8vw;
  font-size: 4vw;
  padding: 0 4vw;
  border-radius: 1.333vw;
  text-align: center;
  background-color: #5b6e96
}
.img[data-v-3cb67fea] {
  height: 8vw;
  width: 8vw;
  position: absolute;
  left: calc(50% - 4vw);
  top: 2.667vw;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eAAAZrElEQVR4Xu1dCbBtRXVdC4SAoggOcR6CCkbjbOKAE2iBqAE0kRLFGUVxiCZGVAzOChogDpiIEAaljEMciBGHoFFU1ERRSo0WGnHAKaJoYrRiuVLr/75Vl/f/e+/0cPoMt3fVrff+f717WLvX7dN9du9NNGkINATWRYANm4ZAQ2B9BBpB2uxoCGyAQCNImx4NgUaQNgcaAmkItBUkDbemtSIINIKsiKHbMNMQaARJw61prQgCjSArYug2zDQEGkHScGtaK4JAI8iKGLoNMw2BRpA03JrWiiDQCFLR0JJ+B8A1wmf3pd8X/+eflivW+5D035pUQqARpDDQkvYEcEsAt1j6ufjdfyshlwJY+/n24v9I/qpEI60OoBEkYxZI2gnAvQAcAOA+gRClSJDRM3wBwPkAPgbgMyR/nFPZKus2gkRaX9KdAewLYD8ABwLYObKKIYp/CsAnTZZAmO8O0YkpttkIsonVJHmv8CAA+wdi3GqKhl7T53MBbPmQ/MEMxtPbEBpBtgOtpF0CKUwMf67bmwWGrfjnC6IEsvxy2O6Mr/VGkGATSTsAOGiJGDcen7l67ZEfuxarygd6bWlCla88QSTdBMATABweTp4mZL7euvpRAGf7Q/I3vbUygYpXliCSfPT6xECOa0/AVkN08cuBKGeR/P4QHRi6zZUjiKTbBFKYHFcf2gATaf9HSyvKFyfS5yLdXBmCSLpTIIYfp/xGu0kaAicBOJHkShwVz54gkrxKPC980qZE01qLgMlhkpgss5ZZE0TSYYEYt5+1FYcb3KcBnETyHcN1od+WZ0kQSfsEYjy6X/g6126/qW+Ej3//GYCfhp/Lv/v/fGq065qP38v4/64JwC8qFx/7fN20cy/6K2iCmCgmzKxkdgSR9OxAjiFOpn4I4CMAPrtEiEv6PCoNHsImzF0BPCC87b/RQLP0hSRfNlDbvTQ7G4JIuieAFweXkF7A2k6l9pq9IHzOI2lfp8FF0h0B3BfA3cOnJmH8ktFE+ffBgSjQgVkQRNLRAE4AcNUCmGxWhR+R/MbZL9M+RvLyzRSG/rukhcvMgwHU8BDwnRWT5HVDjz23/UkTRNIegRh+p9Gn2ODvW3LFmOR9i+BjZpIsCHOdPkED8A8AjiV5Sc/t9Fb9ZAki6X6BHHfpDZ2tK8UWYpD0/mI2Er5cDgXwKADGsi/5DoBjSJ7TVwN91jtJgoSNuB+pduwBHJ8qnQHgTJIX9VD/6KqU9MBAFPuj9SXPI/mqvirvq95JEUTS1QC8EcARPQDyLZPC5CDp31dOJN0hEMWryu/2AMAbST61h3p7q3IyBJF0MwBnhSuuJQHxKrEghlePlRdJNwTw9PApffDxfpLeB01CJkEQST7jfzsAk6SU/BeAV5P0o1qT7SAg6baBJE8qDNDFJG9XuM5eqhs9QST5EtN7AVylIAKne4NP8msF65xtVZIcmOJpAB5ecJBXkLRnwKhl1ASR9FgAf18QQQcuMDF8MtUkEgFJhwB4CYA/iFTdqPhuJP+nYH1FqxotQSQ9Jxzjlhiw71q/uD1O5UMp6VqBJCU329cb6zH6KAki6SkATsk355YaPg/gWSQ/Xqi+Vg0ASY8Irj12mCwhe5H8ZomKStYxOoJIcgA2BzwrIX45ZXL4RlyTwghIso+XH7keV6jq25G8uFBdRaoZFUGCk52/8UvIcSRtvCY9IyDJj1tvKNTMPcbkNj8agkjaC8BXCkQqvCysGj4WblIJAUn3BvAuACWuGexN8uuVur5hM6MgiCQ7zZ0HwPfGc8QXdo4i+aWcSppuGgIhcLdPCH31IFd2JPnb3Epy9QcnSLjw824A9gfKEX97PZnkT3Iqabr5CEg6DcDjM2v6F5L3z6wjW30MBLH7SK5vlf2nSm0Us0FtFWw55XoRgOMysRj8huKgBAleuX+dCeLrSD4js46m3gMChUjyWJL2lRtEBiNIuM/x4UyX9VeSfP4gyLVGOyFQiCT7k3S+k+oyCEHCZZ0PAci57PR6kvY4bTJyBAqQxCdaB5L8z9pDHYogp4a4uKnjdYCE3E19attNLwGBAiR5K0nfU6kq1QkSAiy8PmOUDpTQ5xXRjK411Y0QkJR7IHM0yVIuSJ2MVZUgITSPH61SL+FcSNKhbJpMFAFJfkeV6g3sCDL7kawWQLs2QRxUzanMUsSgPISkgwA0mSgCkvzl6Iy89gpOEQfQ+OMUxRSdagTJPNK1+8gD2xvyFBOPT0fSwQDek9GzagEgqhAkxMr9RIafzmEkm29Vxowam6ok31BMDSzn+MU++u39CkMtgvhFT2og6eaVO7bZXag/kl4D4M8Tq/sgSafh7lV6J0hIQfC2xFGcQ/KRibpNbeQISHKcAb8sdhzhFHkiSft99Sa9EiQkr/GjVUp+Dt8L8b6jXXbqzfzDVyzpjwJJUtLhOYei7484nXUv0jdBXpGY2cl3yE2O3p8xe0G1VRqFQOaFqxeRdFT/XqQ3goScgKkh8J/bAiz0Yu/RVprhIu/V4+4kfdmuuPRJEF/BTIl88UmS+xYfaatw1AiES3Pej6Q8jp9GspcI/70QJKRa9uqRkk324Ba3atRzubfOSfK9ILujpIidGT+YoriRTl8EOdH3whM6ezpJp2lusqIISHLKiZTYve8gWTLy4xYLFCeIpFuEWFSxpxKOlbtvCwe6oswIw5ZkVyS7JKXIbUrvRfogiHNAPDdhdG1jngDaHFUk/R2AlIDZxU+0ihJE0k0AeO8RG/rlIpJOPNmkIeD77LcG4Ag1u0fC8WWSjkhfTEoTxOfRf5XQO0c/PDlBr6nMFAFJDvjgwA+x8nCSztteRIoRRNIOAJxOwHuQGHE2pzuSbMlrYlCbeVlJzsbrp5HYRKNFN+slCeKTB59AxIqjrqd8U8S208pPDAFJqfvZYpv1kgRx7sCjIm3gVcOrR285ASWlOsJFDiWuOMmoAN1zGUcMSpIcOd4+ebvF6IVUF0W+dIsQJOTfduSJ2CT1J5NMeV/SGS9JH83wFu3cTmTB6Hv1cxlHJE7esHtv+sxIvWKHPqUI8jAA74wchIt79eg11fJcJtZcxhE7RyT5/rpXkdgUfAeQdPyDLClFEOf8iw39WeVu8Vwm1lzGkTJbJf2t4y5H6p5C8uhInW2KZxNEks+q/Xh13cjOHEnyzZE60cXnMrHmMo5oA27NZvUAALGrwfcA3JrkL1LaXOiUIMjhAN4a2YkrADgHxA8j9aKLz2VizWUc0QYMCpK+AOAOkfpHkHxLpM6VipcgiLPQOhttjJxNMvWOekw7/vZpm/QoxKIKRx82RNW+VFiSs4W9MFL/nST/NFKnOEGcePHmkZ0o+rZzo7YbQSItE1e8JkEcx/lzcd3D/wHYJyc5aNYKIukeAJx7PEYuDZ3+VYxSatlGkFTkOulVI4h7I8kR3mPDzj6O5BmdRrOdQrkEORbASyMbrxqVvREk0jpxxWsT5M8AnBTXRbyBpGNwJUkuQXxFMjZN1qEkc6LqRQ20ESQKrtjCtQliL9/Yu+efIXm32IEtyicTRNLOAP4bwE4Rjf8vgBvUdExsBImwTnzRqgQJj1mxp1mOwrgHSc/VaMkhiPNz/HNki1VeDi73qREk0kJxxYcgyN8AiE25l5yhKocgzi347Dg8Uf3eRwJB7EQYG2fJdxdinCKjJ9ZcxhE5X7YpLulPAMTe90gOdp1DkAsBOCpejPTue7W2MykTKzZBT2sjZgrklZV0PQDfj6zl3SQfGqmzpXgOQZyPfM+IRi8jecOI8kWKtsnbHcYaWHXvzfolE96qf4/kjVLaTiKIJBPDBImRs0g+JkahRNkaRm9tlLBU9zok+ajXR74xsntKDN9UgvjRyo9YMfJMkq+NUShRtk3e7ijWwKp7bzZcQR4PIDaqe9Itw1SCOCVBrBPYg0m+vwRAMXXUMHprI8Yi+WVDrssLImtKiryYSpCUiBN2Pf6PyEFlF2+TtzuENbDq3psNVxCHlfpxZF1JuURSCeLVIzaxzU4k/dKmqtQwemujqkm3NCZJka0mBQdJJUjsEe+lJG8WOaAixdvk7Q5jDay692bjkpL8NLJ3RH1JEeBTCRJ7xHs+ydT0zxEYbFu0htFbG1kmSlKW9F4AMemgk3IaRhNEklMaxLqqn0oyJdZqEnjLSm3ydoewBlbde7O1pCRfyHMgdKfi8+cHAHwT1Q6IfxlRX1JY0hSCONJdbN7AY0m+PGIwxYrWMHpro5i5tqkoxHv2HaJccSaqEwDYYdYff8kvf35N0vdNriQpBNkLwCWRvX0aSWecqi4pk3cuvlhjdJlJmQAZ6dm6Nvc+kgdvr3AKQe4UYqZ2bdzlHknynBiFUmUTCFKq6Y3qqeKsOCOC2EXpuz0Zxm7w+5Hc7nXeFILYa9WBEGLkQSRjXeNj6l+3bCNIdxgTsIomevfeXLmkpDcBODJVfwO9Y0gev97fUwjikwOfIMTIPUl+KkahVNkEo5dquq0gBZGUdH0AlxWs0lV9iOQBG9WZQpBHATg7sqO/T/KrkTpFijeCdIcxAatqK4hHISklQPp6APzWASBIfrw0QZzaOXbD7Wu2sT783S27QckEoxdpd5NKoidWwjhG2UYOuJIcvbNUsMFO6dpSVpBjALwycqC7kox9dxLZxPaLJ0ysIu02gvQDoyR/OftLOkfs6OjVY1PXp0aQHJjTdUf57Z7wZRI9jnTItmpKuhYAZ0TOkc6R31MI0h6xckyzVTd6YtWYvDXayIduC0l8r+jpiXWdQLJzFuYUgrRNeqJlltQaQTIwlLQHgMsTqnDOw/vGhABKIUg75k2wzBqVRpBMDBOv3R5CMuoVRQpB2ovCTOO2R6x8ACVdA4DTaHSVl5KMTlGeQpDmatLVJOuXaytIPobei3SNzeYA63602vTUam23UggyNWfFmIBuqWYbZeC4ufhirWcUSc5+2yWDVNJ9dLebQpBJubunzvgYvRqnP3NpIwbXLmUl2YX9ORuUfTXJmHsjV6oqhSCTujDVBeTcMnOZvDXGkYv1Wn1JuwL45Tr1OtD1fXLyFEYTxB2RNJkrt6UNsr36akysubTRhz0k2bPDHh5rJfrUKnsPEggymaANfRhkO99isXkQ2ya9oGFCKo5fr6mySKKm1BVkMmF/Ctph3arm8u1eYxx92UPSywC8INT/NQD3IhkbO2ub7qUS5EUAfHITI4MEjovpYGrZGhNrLm2kYryZnqSrAFuSdloeQfJtm+l0+XsqQSYTerQLCLll5jJ5a4wjF+uN9CU5r8uNSD6hVDupBJlM8OpSQG1imLYHqQH0Jm1I8nw2Qb5TqjupBJlM+oNSQDWCbBeB6MOGGvYo2UYSQdyBhKPeQRLolARrvbpqPJrMpY0a9ijZRg5BYo963e/qKdhKgtUIsg0CbQXZYFJ0dRRbrmKIJJ4r64s1xgB4Nb6wSraRs4K0NNDploj+5k14xErvXXfN6HF0r3ocJXMIsjMAR6XbKWIojonqCCc/i9DJKjqXiTWXcWQZcwDlZIKEjfqHAdw/st+HknxPpE5y8blMrLmMI9mQAynmEuRYAC+N7HsRH5mubc5lYs1lHF3tNpZyuQS5BwDf1ooRh7Lfp1acrLlMrLmMI2aijKFsFkHCY9Y3Adw8cjAPJ/mOSJ2k4nOZWHMZR5IRB1QqQRBnAHps5BjOJvnoSJ2k4nOZWHMZR5IRB1QqQZDDAbw1cgyORrE3yVJxVtdtfi4Tay7jiJwngxcvQZDdAXwdgAMLx8iRJN8co5BSdi4Tay7jSLHhkDrZBAn7kNMBPC5yIOeSjMlSGln91uJzmVhzGUeSEQdUKkWQhwF4Z8I4evfNmsvEmss4EubIoCqlCLJLeMy6ceRoTib5rEidqOJzmVhzGUeU8UZQuAhBwqNMSvYfu5x4FflWX1hIquGsGN19kh+LUZrLOGLGPIayJQnyYADnJgzqxSR9x71JQ2B0CJQkyA4AHE3iFpGj9OrhVaSaA2Nk/1rxFUagGEHCY5YvzUdH0AZQ/Z7ICtu8DT0CgdIEuQkAJym5dkQfXPQikneM1GnFGwK9I1CUIGEVeRWAzimulkb4XJIORNykITAaBPogiPcgnwdw9chROjHjviS9j2nSEBgFAsUJElaRE72vSBjh6SWDfiW031QGRkCSIyKeRtKX8QaXvghym7AXcaqEWDmY5PtilVr56SMg6TEAzggj8Xu1E0leMuTIeiFIWEVSE75/kuS+Q4LS2q6PgKSbAfjSmkfzHwB4DYDXklzE3a3auT4JkpLLcDH4tmGvOg2Gb0zSuwA8dJ2e+NbqSSRdpqr0RpCwirwCwPMSRuSMQQ8k+fEE3aYyMQQkPRWAnzg2k7MAOKbB5zYrWOrvfRPEJ1mfAHD7hA77JMwk+VGCblOZCAKS/P7LUTodRqqL/NyPXIEovV+465UgYRU5DEBqroZzSDrVQpOZIiDp/QAOShie9yvHkPxAgm5nld4JEkhyJoDUO+jHkXxJ5xG1gpNBQJIzQjkzVIq8juQzUhRjdGoRZJ/wqBXrgrIYy2Ek3x4zsFZ23AhIOhTAPyb28usk907UjVKrQpCwijwbgANep8hlYT/iZbXJxBGQ5Gic7wawW+JQDur70WrRr2oECST5CID9E0H5IoCHlMwelNiPppaBgCR/8zsj1/UTq6nyaDUUQe4J4EMArpoIzoUk756o29RGgIAkR8C5ZWJXvkDS79eqSdUVJKwiR/uILmOEsw+5n4HNqFUl+SpEzgSv9mg1yAqyaFTSqQCemGHN80g6P0mTiSAg6V8B3Duju8eTPCZDP0m1+goSVpE9wqPWXZJ6vVWpapT4jH6uvKqk0wA8PgOIC0jeK0M/WXUQggSS3A+AXZp3TO498EqSz8/Qb6o9IyAp1d1ouWf7kfTGvroMRpBAkpyj3wVYVU81qltowg1Ksu/UEZlDOILkWzLrSFYflCCBJCVAPINkbOjTZNCa4sYISPJTgZ8O/JSQI08m+aacCnJ1x0AQX6ryS6PcTbddoQ3oT3JBafrpCEj6PQDnZRzlLhofRaSbwQkSVpHrBFBzjgBd1acBHEWyvXFPn+PJmpK8Ytj5cNfkSrYqvoCk9y6DyygIEkiyF4CvRLg9rwee3VL87dN8typOL0lOouRkSrnSe7zmmA6OhiCBJL4b4HsgJaR5AZdAsUMdkhw69rgORTcr8h6SdmIcjYyKIIEk9wEQFdh5AzTPCatJu3TVw5STdLeQ5Tg2Ffj2ejPK4IGjI0ggyVMAnFLIpl6R/MjVru8WAjTY6C8A+J5O7n7D1f2MpF8ej05GSZBggOcAKBVp0XfcHUW+VH2jM2StDkm6bVg1DinU5i9IXqNQXcWrGS1BAklKbfwWwDk6xgkt7lbaPJJ0VFg1fOpYQr5G0pfpRiujJkggie8rvxfAVQqi6JyKJkoLc9oBVEk3D8R4VIfiXYucTzL1blDXNrLLjZ4ggSR3BeBjWwcXKyWOBfzq9ti1PpySfKnpyQCOBHCDUsADeAvJXBeUgt1Zv6pJECSQxOSwW0ppr86LADiohN1VWhKfrZmB+yKGTemVOyX6fxVCrG1kMgQJJLkaAMds7ePbx5muFkTpLWfiIFbu2GggxpMA+FNyxVj04JkkHdNqMjIpgixQlWQvYJ9I5bjKr2ckryIOoHwmSa8us5eeVwzjd3nwk0tJFT4o/pMkSFhN7PdjkuRcutoMfCcldaT5c0n2HsVvs86U/LskH3ocCOCAEBO3jxXDXfaXzNEkP1Wy/7XqmixBAkn8cskkybm+2wXrKxZECWT5VRelsZWR5GAZC1KYGDftuY/OE/MSksZvkjJpgiw9cjkQhImSGi0lxniXhnTXvuHmABJ+fBitSLpmWCUWxEgNtxMzRgeXNjH+KUZpjGVnQZCwmjikkLPs1jxb90pyAQC/gPwAyc8MbWRJTqR65xAw/HYhUMK1Kvbr+EAOey9MXmZDkKXVxBt4p1xIDXOaY1TvUxwc77MAvhE+l5D8TU6l6+lK8iOm3xH9YQinY0L42sAQ4j2GV40PDtF4X23OjiBhNbH7gkmSGjC7NN5+LFsQxr/7pOyn4efy7/6/HQD4G3+9j4nvvzlZamoAttLjcwBqk2OQLFClB7Nc3ywJsrSaOPWCiZKSn6RP3OdSt2NdmRjnz2VAa8cxa4KE1cRJfEySlExXc7V77rgcIfFNQwdUyB1EF/3ZE2RpNfF99yeET0r23S54zr3MyhBjYciVIcgSUZyi2kTxuxOvLk02R2DliLGyBFkiije5JonJMsSJ1+bTcvgSK0uMlSfIElH83sAkOTycDA0/LYfvwcoToxFkzSSU5ONVX856UPjcePh5WrUHXwXgdxiOnD+rdxk5KK7cHqQLWJJ2WSKKCXPdLnoTLOMAewtSzPaoNscujSCboCdp90AWu7DsC+BWOYCPQNePTwtSOId9kw0QaASJnB6S7OdkouwXPGN3jqyidvFLAHiluDg8Pl1YuwNTbq8RJMN6knYKV4DtOu6Ad3b92DOjylzVbwOwJ61jgZkQF5NcyduRuUC2TXopBLfd7JsgJsrCV8o/F7+XII/9tRYfxyH+t/D5Isnv9TSsla22rSAVTS/Jb/AdJM0f720Wvy//1BIBlsnwU5L+d5OKCDSCVAS7NTU9BBpBpmez1uOKCDSCVAS7NTU9BBpBpmez1uOKCDSCVAS7NTU9BBpBpmez1uOKCDSCVAS7NTU9BBpBpmez1uOKCDSCVAS7NTU9BBpBpmez1uOKCDSCVAS7NTU9BBpBpmez1uOKCPw/JjUpXx7VFvoAAAAASUVORK5CYII=);
  background-size: 100% 100%
}
.btndiv[data-v-3cb67fea] {
  height: 13.333vw;
  color: #fff;
  justify-content: space-between;
  display: flex;
  align-items: center;
  padding: 0 4vw;
  line-height: 13.333vw;
  font-size: 4vw;
  position: relative
}
.wrapper[data-v-3cb67fea] .crop-point {
  opacity: 0;
  z-index: 523
}
.wrapper[data-v-3cb67fea] .cropper-view-box {
  outline: 1px solid #fff;
  border: 1px solid #fff
}
.wrapper[data-v-3cb67fea] .vue-cropper {
  background-color: #000;
  background-image: none
}
.wrapper[data-v-3cb67fea] {
  height: calc(100vh - 21.333vw);
  padding: 4vw
}
.cropper-container .btn:last-child {
  background: linear-gradient(90deg, #D4B98C 0%, #A58964 100%) !important;
  box-shadow: 0 1.20773vw 2.41546vw rgba(195, 167, 105, .2) !important
}
.cropper[data-v-bd009209] {
  width: 100%;
  height: 100%
}
.cropper[data-v-bd009209] .van-loading {
  margin-top: 20%
}
.cropper-container[data-v-bd009209] {
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 100%
}
.user-profile .profile-title {
  font-size: 3.86473vw;
  font-weight: 600;
  color: #c3a769;
  line-height: 5.31401vw;
  margin: 4.83092vw auto 2.41546vw
}
.user-profile .feature-title {
  font-size: 3.86473vw;
  font-weight: 600;
  color: #070c17
}
.user-profile .van-cell-group:after {
  border-top-width: 0 !important
}
.user-profile .van-cell {
  padding-left: 0;
  padding-right: 0;
  height: 13.28502vw;
  display: flex;
  align-items: center
}
.user-profile .van-cell:after {
  right: 0;
  left: 0
}
.user-profile .van-cell__value {
  display: flex;
  justify-content: flex-end;
  align-items: center
}
.user-profile .van-field-1-label {
  font-size: 3.86473vw;
  font-weight: 400;
  color: #070c17;
  line-height: 5.31401vw
}
.van-cell-group:after {
  border-top-width: 0 !important
}
:root {
  --van-tabbar-height: 12.07729vw;
  --van-tabbar-z-index: 1;
  --van-tabbar-background: var(--van-background-2)
}
.van-tabbar {
  z-index: var(--van-tabbar-z-index);
  display: flex;
  box-sizing: content-box;
  width: 100%;
  height: var(--van-tabbar-height);
  background: var(--van-tabbar-background)
}
.van-tabbar--fixed {
  position: fixed;
  bottom: 0;
  left: 0
}
:root {
  --van-tabbar-item-font-size: var(--van-font-size-sm);
  --van-tabbar-item-text-color: var(--van-text-color);
  --van-tabbar-item-active-color: var(--van-primary-color);
  --van-tabbar-item-active-background: var(--van-background-2);
  --van-tabbar-item-line-height: 1;
  --van-tabbar-item-icon-size: 5.31401vw;
  --van-tabbar-item-icon-margin-bottom: var(--van-padding-base)
}
.van-tabbar-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--van-tabbar-item-text-color);
  font-size: var(--van-tabbar-item-font-size);
  line-height: var(--van-tabbar-item-line-height);
  cursor: pointer
}
.van-tabbar-item__icon {
  margin-bottom: var(--van-tabbar-item-icon-margin-bottom);
  font-size: var(--van-tabbar-item-icon-size)
}
.van-tabbar-item__icon .van-icon {
  display: block
}
.van-tabbar-item__icon .van-badge {
  margin-top: var(--van-padding-base)
}
.van-tabbar-item__icon img {
  display: block;
  height: 4.83092vw
}
.van-tabbar-item--active {
  color: var(--van-tabbar-item-active-color);
  background-color: var(--van-tabbar-item-active-background)
}
.main-container[data-v-79406a61] {
  position: relative;
  overflow: auto
}
.van-tabbar-item--active img[data-v-79406a61] {
  width: 9.66184vw;
  height: 9.66184vw;
  background-size: cover
}
.van-tabbar-item__text span[data-v-79406a61] {
  font-size: 3.1401vw;
  font-weight: 400;
  color: #070c17;
  line-height: 4.34783vw
}
.page-tab[data-v-79406a61] {
  height: 14.49275vw
}