@charset "UTF-8";
:root,
:host {
  --golden: #ff8917;
  --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-active-color: var(--van-gray-2);
  --van-active-opacity: 0.6;
  --van-disabled-opacity: 0.5;
  --van-background: var(--van-gray-1);
  --van-background-2: var(--van-white);
  --van-background-3: var(--van-white);
  --van-padding-base: 4px;
  --van-padding-xs: 8px;
  --van-padding-sm: 12px;
  --van-padding-md: 16px;
  --van-padding-lg: 24px;
  --van-padding-xl: 32px;
  --van-font-bold: 600;
  --van-font-size-xs: 10px;
  --van-font-size-sm: 12px;
  --van-font-size-md: 14px;
  --van-font-size-lg: 16px;
  --van-line-height-xs: 14px;
  --van-line-height-sm: 18px;
  --van-line-height-md: 20px;
  --van-line-height-lg: 22px;
  --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: 0.3s;
  --van-duration-fast: 0.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: 2px;
  --van-radius-md: 4px;
  --van-radius-lg: 8px;
  --van-radius-max: 999px;
}
.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;
  overscroll-behavior: contain;
    background-color: black;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
body {
  margin: 0;
  font-family: var(--van-base-font);
  background-color: black;
    padding: 0;
    width: 100%;
    height: 100%;
} */
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;
}
@keyframes van-slide-up-enter {
  0% {
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes van-slide-up-leave {
  to {
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes van-slide-down-enter {
  0% {
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes van-slide-down-leave {
  to {
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes van-slide-left-enter {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes van-slide-left-leave {
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes van-slide-right-enter {
  0% {
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes van-slide-right-leave {
  to {
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes van-fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes van-fade-out {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes van-rotate {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.van-fade-enter-active {
  animation: var(--van-duration-base) van-fade-in both var(--van-ease-out);
}
.van-fade-leave-active {
  animation: var(--van-duration-base) van-fade-out both var(--van-ease-in);
}
.van-slide-up-enter-active {
  animation: van-slide-up-enter var(--van-duration-base) both
    var(--van-ease-out);
}
.van-slide-up-leave-active {
  animation: van-slide-up-leave var(--van-duration-base) both var(--van-ease-in);
}
.van-slide-down-enter-active {
  animation: van-slide-down-enter var(--van-duration-base) both
    var(--van-ease-out);
}
.van-slide-down-leave-active {
  animation: van-slide-down-leave var(--van-duration-base) both
    var(--van-ease-in);
}
.van-slide-left-enter-active {
  animation: van-slide-left-enter var(--van-duration-base) both
    var(--van-ease-out);
}
.van-slide-left-leave-active {
  animation: van-slide-left-leave var(--van-duration-base) both
    var(--van-ease-in);
}
.van-slide-right-enter-active {
  animation: van-slide-right-enter var(--van-duration-base) both
    var(--van-ease-out);
}
.van-slide-right-leave-active {
  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;
  line-break: anywhere;
  -webkit-box-orient: vertical;
}
.van-multi-ellipsis--l3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  line-break: anywhere;
  -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(0.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);
}
.svg-icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: middle;
}
:root,
:host {
  --van-badge-size: 16px;
  --van-badge-color: var(--van-white);
  --van-badge-padding: 0 3px;
  --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: 8px;
  --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: 14px/1 vant-icon;
  font: normal normal normal 14px/1 var(--van-icon-font-family, "vant-icon");
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.van-icon:before {
  display: inline-block;
}
.van-icon-arrow-double-left:before {
  content: "";
}
.van-icon-arrow-double-right:before {
  content: "";
}
.van-icon-contact:before {
  content: "";
}
.van-icon-notes:before {
  content: "";
}
.van-icon-records:before {
  content: "";
}
.van-icon-cash-back-record:before {
  content: "";
}
.van-icon-newspaper:before {
  content: "";
}
.van-icon-discount:before {
  content: "";
}
.van-icon-completed:before {
  content: "";
}
.van-icon-user:before {
  content: "";
}
.van-icon-description:before {
  content: "";
}
.van-icon-list-switch:before {
  content: "";
}
.van-icon-list-switching:before {
  content: "";
}
.van-icon-link-o:before {
  content: "";
}
.van-icon-miniprogram-o:before {
  content: "";
}
.van-icon-qq:before {
  content: "";
}
.van-icon-wechat-moments:before {
  content: "";
}
.van-icon-weibo:before {
  content: "";
}
.van-icon-cash-o:before {
  content: "";
}
.van-icon-guide-o:before {
  content: "";
}
.van-icon-invitation:before {
  content: "";
}
.van-icon-shield-o:before {
  content: "";
}
.van-icon-exchange:before {
  content: "";
}
.van-icon-eye:before {
  content: "";
}
.van-icon-enlarge:before {
  content: "";
}
.van-icon-expand-o:before {
  content: "";
}
.van-icon-eye-o:before {
  content: "";
}
.van-icon-expand:before {
  content: "";
}
.van-icon-filter-o:before {
  content: "";
}
.van-icon-fire:before {
  content: "";
}
.van-icon-fail:before {
  content: "";
}
.van-icon-failure:before {
  content: "";
}
.van-icon-fire-o:before {
  content: "";
}
.van-icon-flag-o:before {
  content: "";
}
.van-icon-font:before {
  content: "";
}
.van-icon-font-o:before {
  content: "";
}
.van-icon-gem-o:before {
  content: "";
}
.van-icon-flower-o:before {
  content: "";
}
.van-icon-gem:before {
  content: "";
}
.van-icon-gift-card:before {
  content: "";
}
.van-icon-friends:before {
  content: "";
}
.van-icon-friends-o:before {
  content: "";
}
.van-icon-gold-coin:before {
  content: "";
}
.van-icon-gold-coin-o:before {
  content: "";
}
.van-icon-good-job-o:before {
  content: "";
}
.van-icon-gift:before {
  content: "";
}
.van-icon-gift-o:before {
  content: "";
}
.van-icon-gift-card-o:before {
  content: "";
}
.van-icon-good-job:before {
  content: "";
}
.van-icon-home-o:before {
  content: "";
}
.van-icon-goods-collect:before {
  content: "";
}
.van-icon-graphic:before {
  content: "";
}
.van-icon-goods-collect-o:before {
  content: "";
}
.van-icon-hot-o:before {
  content: "";
}
.van-icon-info:before {
  content: "";
}
.van-icon-hotel-o:before {
  content: "";
}
.van-icon-info-o:before {
  content: "";
}
.van-icon-hot-sale-o:before {
  content: "";
}
.van-icon-hot:before {
  content: "";
}
.van-icon-like:before {
  content: "";
}
.van-icon-idcard:before {
  content: "";
}
.van-icon-like-o:before {
  content: "";
}
.van-icon-hot-sale:before {
  content: "";
}
.van-icon-location-o:before {
  content: "";
}
.van-icon-location:before {
  content: "";
}
.van-icon-label:before {
  content: "";
}
.van-icon-lock:before {
  content: "";
}
.van-icon-label-o:before {
  content: "";
}
.van-icon-map-marked:before {
  content: "";
}
.van-icon-logistics:before {
  content: "";
}
.van-icon-manager:before {
  content: "";
}
.van-icon-more:before {
  content: "";
}
.van-icon-live:before {
  content: "";
}
.van-icon-manager-o:before {
  content: "";
}
.van-icon-medal:before {
  content: "";
}
.van-icon-more-o:before {
  content: "";
}
.van-icon-music-o:before {
  content: "";
}
.van-icon-music:before {
  content: "";
}
.van-icon-new-arrival-o:before {
  content: "";
}
.van-icon-medal-o:before {
  content: "";
}
.van-icon-new-o:before {
  content: "";
}
.van-icon-free-postage:before {
  content: "";
}
.van-icon-newspaper-o:before {
  content: "";
}
.van-icon-new-arrival:before {
  content: "";
}
.van-icon-minus:before {
  content: "";
}
.van-icon-orders-o:before {
  content: "";
}
.van-icon-new:before {
  content: "";
}
.van-icon-paid:before {
  content: "";
}
.van-icon-notes-o:before {
  content: "";
}
.van-icon-other-pay:before {
  content: "";
}
.van-icon-pause-circle:before {
  content: "";
}
.van-icon-pause:before {
  content: "";
}
.van-icon-pause-circle-o:before {
  content: "";
}
.van-icon-peer-pay:before {
  content: "";
}
.van-icon-pending-payment:before {
  content: "";
}
.van-icon-passed:before {
  content: "";
}
.van-icon-plus:before {
  content: "";
}
.van-icon-phone-circle-o:before {
  content: "";
}
.van-icon-phone-o:before {
  content: "";
}
.van-icon-printer:before {
  content: "";
}
.van-icon-photo-fail:before {
  content: "";
}
.van-icon-phone:before {
  content: "";
}
.van-icon-photo-o:before {
  content: "";
}
.van-icon-play-circle:before {
  content: "";
}
.van-icon-play:before {
  content: "";
}
.van-icon-phone-circle:before {
  content: "";
}
.van-icon-point-gift-o:before {
  content: "";
}
.van-icon-point-gift:before {
  content: "";
}
.van-icon-play-circle-o:before {
  content: "";
}
.van-icon-shrink:before {
  content: "";
}
.van-icon-photo:before {
  content: "";
}
.van-icon-qr:before {
  content: "";
}
.van-icon-qr-invalid:before {
  content: "";
}
.van-icon-question-o:before {
  content: "";
}
.van-icon-revoke:before {
  content: "";
}
.van-icon-replay:before {
  content: "";
}
.van-icon-service:before {
  content: "";
}
.van-icon-question:before {
  content: "";
}
.van-icon-search:before {
  content: "";
}
.van-icon-refund-o:before {
  content: "";
}
.van-icon-service-o:before {
  content: "";
}
.van-icon-scan:before {
  content: "";
}
.van-icon-share:before {
  content: "";
}
.van-icon-send-gift-o:before {
  content: "";
}
.van-icon-share-o:before {
  content: "";
}
.van-icon-setting:before {
  content: "";
}
.van-icon-points:before {
  content: "";
}
.van-icon-photograph:before {
  content: "";
}
.van-icon-shop:before {
  content: "";
}
.van-icon-shop-o:before {
  content: "";
}
.van-icon-shop-collect-o:before {
  content: "";
}
.van-icon-shop-collect:before {
  content: "";
}
.van-icon-smile:before {
  content: "";
}
.van-icon-shopping-cart-o:before {
  content: "";
}
.van-icon-sign:before {
  content: "";
}
.van-icon-sort:before {
  content: "";
}
.van-icon-star-o:before {
  content: "";
}
.van-icon-smile-comment-o:before {
  content: "";
}
.van-icon-stop:before {
  content: "";
}
.van-icon-stop-circle-o:before {
  content: "";
}
.van-icon-smile-o:before {
  content: "";
}
.van-icon-star:before {
  content: "";
}
.van-icon-success:before {
  content: "";
}
.van-icon-stop-circle:before {
  content: "";
}
.van-icon-records-o:before {
  content: "";
}
.van-icon-shopping-cart:before {
  content: "";
}
.van-icon-tosend:before {
  content: "";
}
.van-icon-todo-list:before {
  content: "";
}
.van-icon-thumb-circle-o:before {
  content: "";
}
.van-icon-thumb-circle:before {
  content: "";
}
.van-icon-umbrella-circle:before {
  content: "";
}
.van-icon-underway:before {
  content: "";
}
.van-icon-upgrade:before {
  content: "";
}
.van-icon-todo-list-o:before {
  content: "";
}
.van-icon-tv-o:before {
  content: "";
}
.van-icon-underway-o:before {
  content: "";
}
.van-icon-user-o:before {
  content: "";
}
.van-icon-vip-card-o:before {
  content: "";
}
.van-icon-vip-card:before {
  content: "";
}
.van-icon-send-gift:before {
  content: "";
}
.van-icon-wap-home:before {
  content: "";
}
.van-icon-wap-nav:before {
  content: "";
}
.van-icon-volume-o:before {
  content: "";
}
.van-icon-video:before {
  content: "";
}
.van-icon-wap-home-o:before {
  content: "";
}
.van-icon-volume:before {
  content: "";
}
.van-icon-warning:before {
  content: "";
}
.van-icon-weapp-nav:before {
  content: "";
}
.van-icon-wechat-pay:before {
  content: "";
}
.van-icon-warning-o:before {
  content: "";
}
.van-icon-wechat:before {
  content: "";
}
.van-icon-setting-o:before {
  content: "";
}
.van-icon-youzan-shield:before {
  content: "";
}
.van-icon-warn-o:before {
  content: "";
}
.van-icon-smile-comment:before {
  content: "";
}
.van-icon-user-circle-o:before {
  content: "";
}
.van-icon-video-o:before {
  content: "";
}
.van-icon-add-square:before {
  content: "";
}
.van-icon-add:before {
  content: "";
}
.van-icon-arrow-down:before {
  content: "";
}
.van-icon-arrow-up:before {
  content: "";
}
.van-icon-arrow:before {
  content: "";
}
.van-icon-after-sale:before {
  content: "";
}
.van-icon-add-o:before {
  content: "";
}
.van-icon-alipay:before {
  content: "";
}
.van-icon-ascending:before {
  content: "";
}
.van-icon-apps-o:before {
  content: "";
}
.van-icon-aim:before {
  content: "";
}
.van-icon-award:before {
  content: "";
}
.van-icon-arrow-left:before {
  content: "";
}
.van-icon-award-o:before {
  content: "";
}
.van-icon-audio:before {
  content: "";
}
.van-icon-bag-o:before {
  content: "";
}
.van-icon-balance-list:before {
  content: "";
}
.van-icon-back-top:before {
  content: "";
}
.van-icon-bag:before {
  content: "";
}
.van-icon-balance-pay:before {
  content: "";
}
.van-icon-balance-o:before {
  content: "";
}
.van-icon-bar-chart-o:before {
  content: "";
}
.van-icon-bars:before {
  content: "";
}
.van-icon-balance-list-o:before {
  content: "";
}
.van-icon-birthday-cake-o:before {
  content: "";
}
.van-icon-bookmark:before {
  content: "";
}
.van-icon-bill:before {
  content: "";
}
.van-icon-bell:before {
  content: "";
}
.van-icon-browsing-history-o:before {
  content: "";
}
.van-icon-browsing-history:before {
  content: "";
}
.van-icon-bookmark-o:before {
  content: "";
}
.van-icon-bulb-o:before {
  content: "";
}
.van-icon-bullhorn-o:before {
  content: "";
}
.van-icon-bill-o:before {
  content: "";
}
.van-icon-calendar-o:before {
  content: "";
}
.van-icon-brush-o:before {
  content: "";
}
.van-icon-card:before {
  content: "";
}
.van-icon-cart-o:before {
  content: "";
}
.van-icon-cart-circle:before {
  content: "";
}
.van-icon-cart-circle-o:before {
  content: "";
}
.van-icon-cart:before {
  content: "";
}
.van-icon-cash-on-deliver:before {
  content: "";
}
.van-icon-cash-back-record-o:before {
  content: "";
}
.van-icon-cashier-o:before {
  content: "";
}
.van-icon-chart-trending-o:before {
  content: "";
}
.van-icon-certificate:before {
  content: "";
}
.van-icon-chat:before {
  content: "";
}
.van-icon-clear:before {
  content: "";
}
.van-icon-chat-o:before {
  content: "";
}
.van-icon-checked:before {
  content: "";
}
.van-icon-clock:before {
  content: "";
}
.van-icon-clock-o:before {
  content: "";
}
.van-icon-close:before {
  content: "";
}
.van-icon-closed-eye:before {
  content: "";
}
.van-icon-circle:before {
  content: "";
}
.van-icon-cluster-o:before {
  content: "";
}
.van-icon-column:before {
  content: "";
}
.van-icon-comment-circle-o:before {
  content: "";
}
.van-icon-cluster:before {
  content: "";
}
.van-icon-comment:before {
  content: "";
}
.van-icon-comment-o:before {
  content: "";
}
.van-icon-comment-circle:before {
  content: "";
}
.van-icon-completed-o:before {
  content: "";
}
.van-icon-credit-pay:before {
  content: "";
}
.van-icon-coupon:before {
  content: "";
}
.van-icon-debit-pay:before {
  content: "";
}
.van-icon-coupon-o:before {
  content: "";
}
.van-icon-contact-o:before {
  content: "";
}
.van-icon-descending:before {
  content: "";
}
.van-icon-desktop-o:before {
  content: "";
}
.van-icon-diamond-o:before {
  content: "";
}
.van-icon-description-o:before {
  content: "";
}
.van-icon-delete:before {
  content: "";
}
.van-icon-diamond:before {
  content: "";
}
.van-icon-delete-o:before {
  content: "";
}
.van-icon-cross:before {
  content: "";
}
.van-icon-edit:before {
  content: "";
}
.van-icon-ellipsis:before {
  content: "";
}
.van-icon-down:before {
  content: "";
}
.van-icon-discount-o:before {
  content: "";
}
.van-icon-ecard-pay:before {
  content: "";
}
.van-icon-envelop-o:before {
  content: "";
}
@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/c/font_2553510_ciljc7axaw7.woff?t=1705587463221)
      format("woff");
}
.van-icon__image {
  display: block;
  width: 1em;
  height: 1em;
  object-fit: contain;
}
:root,
:host {
  --van-overlay-z-index: 1;
  --van-overlay-background: rgba(0, 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,
:host {
  --van-popup-background: var(--van-background-2);
  --van-popup-transition: transform var(--van-duration-base);
  --van-popup-round-radius: 16px;
  --van-popup-close-icon-size: 22px;
  --van-popup-close-icon-color: var(--van-gray-5);
  --van-popup-close-icon-margin: 16px;
  --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: 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);
}
.base-dialog[data-v-7728167d] {
  display: flex;
  justify-content: center;
  align-items: center;
}
.base-dialog .dialog-wrap[data-v-7728167d] {
  position: relative;
  width: 90%;
  max-width: 350px;
  min-height: 200px;
  max-height: 600px;
  overflow-y: auto;
  background: var(--bg);
  margin: 0 auto;
  padding: 10px;
  border-radius: var(--card-radius);
}
.base-dialog .dialog-wrap .close-btn[data-v-7728167d] {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
  color: var(--text-gray);
}
.base-dialog .dialog-wrap .dialog-content[data-v-7728167d] {
  padding: 10px;
  height: 100%;
  border-radius: var(--card-radius);
}
.base-dialog .dialog-wrap .dialog-content .dialog-title[data-v-7728167d] {
  width: 100%;
  font-size: 24px;
  text-align: center;
  padding: 16px 0 10px;
  font-weight: 700;
  color: var(--btn-text);
}
.base-main-btn {
  background: var(--primary);
}
.base-main-btn.disable,
.base-main-btn.loading {
  pointer-events: none;
  cursor: not-allowed;
}
.base-main-btn.loading {
  opacity: 0.8;
}
.base-main-btn.disable {
  filter: grayscale(100%);
  color: #ccc;
}
.base-input {
  font-size: 16px;
  line-height: 22px;
  position: relative;
}
.base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.base-input.is-password input {
  padding-right: 35px;
}
.base-input .input-box .input-left-slot {
  display: flex;
  cursor: pointer;
  align-items: center;
}
.base-input .input-box .input-right-slot {
  position: absolute;
  bottom: 1px;
  right: 12px;
  top: 1px;
  padding-left: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.base-input .input-box .input-pwd-eye-slot {
  position: absolute;
  bottom: 0;
  right: 12px;
  top: 0;
  display: flex;
  align-items: center;
  padding: 0 8px;
  cursor: pointer;
}
.base-input .input-box .input-pwd-eye-slot .input-pwd-eye {
  font-size: 18px;
  color: var(--btn-text);
}
.base-input .input-box input,
.base-input .input-box textarea {
  width: 100%;
  height: 100%;
  background: transparent;
  font-size: 14px;
}
.base-input .input-box input::-webkit-input-placeholder,
.base-input .input-box textarea::-webkit-input-placeholder {
  color: var(--btn-text);
  opacity: 0.5;
}
.base-input .input-box input:disabled,
.base-input .input-box textarea:disabled {
  color: var(--btn-text) !important;
  opacity: 1;
}
.base-input .base-input-pwd-check-wrap {
  display: flex;
  align-items: center;
  padding-left: 16px;
  margin-top: 6px;
}
.base-input .base-input-pwd-check-wrap .base-input-pwd-check-step {
  margin-right: 2px;
  border-radius: 10px;
  width: 20px;
  height: 4px;
  background: var(--text-gray);
  transition: all 0.3s ease-in-out;
}
.base-input .base-input-pwd-check-wrap .base-input-pwd-check-text {
  font-size: 10px;
  margin-left: 4px;
  color: var(--btn-text);
}
.lang-select-wrap[data-v-49ee58e5] {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang-select-wrap .box[data-v-49ee58e5] {
  width: 100%;
  min-height: 380px;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
}
.container-card {
  background: var(--bg-weight);
}
.rich-text[data-v-18049dad] p {
  max-width: 100% !important;
  word-break: break-all;
}
.rich-text[data-v-18049dad] table {
  max-width: 100% !important;
  border: 1px solid #ccc;
  margin: 10px 0;
}
.rich-text[data-v-18049dad] table th,
.rich-text[data-v-18049dad] table td {
  border: 1px solid #ccc;
}
.rich-text[data-v-18049dad] table td {
  padding: 0 5px;
  word-break: break-all;
}
.rich-text[data-v-18049dad] p {
  font-size: 14px;
  line-height: 1.6;
}
.rich-text[data-v-18049dad] h1 {
  font-size: 32px;
  font-weight: 700;
}
.rich-text[data-v-18049dad] h2 {
  font-size: 24px;
  font-weight: 700;
}
.rich-text[data-v-18049dad] a {
  color: var(--primary);
  text-decoration: underline;
}
.rich-text[data-v-18049dad] a:hover {
  text-decoration: none;
}
.rich-text[data-v-18049dad] p > img {
  max-width: 90% !important;
  height: auto !important;
  margin: 0 auto;
}
.rich-text2[data-v-18049dad] table {
  max-width: 100% !important;
  border: 1px solid #ccc;
  margin: 10px 0;
}
.rich-text2[data-v-18049dad] table th,
.rich-text2[data-v-18049dad] table td {
  border: 1px solid #ccc;
}
.rich-text2[data-v-18049dad] table td {
  padding: 0 5px;
  word-break: break-all;
}
.rich-text2[data-v-18049dad] p {
  font-size: 12px;
  line-height: 1.6;
}
.rich-text2[data-v-18049dad] h1 {
  font-size: 32px;
  font-weight: 700;
}
.rich-text2[data-v-18049dad] h2 {
  font-size: 24px;
  font-weight: 700;
}
.rich-text2[data-v-18049dad] a {
  color: var(--primary);
  text-decoration: underline;
}
.rich-text2[data-v-18049dad] a:hover {
  text-decoration: none;
}
.rich-text2[data-v-18049dad] p > img {
  max-width: 90% !important;
  height: auto !important;
  margin: 0 auto;
}
.shake[data-v-68d3b47c] {
  animation: shakebox-68d3b47c 0.4s linear infinite;
}
@keyframes shakebox-68d3b47c {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-68d3b47c] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-68d3b47c] {
  position: relative;
  width: 100%;
}
.overlay[data-v-68d3b47c] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-68d3b47c] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-68d3b47c] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-68d3b47c {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-68d3b47c] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg1-REg-Mwk9.png);
}
.prize[data-v-68d3b47c] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 34px;
  box-sizing: border-box;
}
.prize-color[data-v-68d3b47c] {
  color: #000;
}
.roulette-bg[data-v-68d3b47c] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-68d3b47c] {
  width: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-68d3b47c] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-68d3b47c] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-68d3b47c] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-68d3b47c] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-68d3b47c] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-2ad2aa17] {
  animation: shakebox-2ad2aa17 0.4s linear infinite;
}
@keyframes shakebox-2ad2aa17 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-2ad2aa17] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-2ad2aa17] {
  position: relative;
  width: 100%;
}
.overlay[data-v-2ad2aa17] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-2ad2aa17] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-2ad2aa17] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-2ad2aa17 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-2ad2aa17] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg2-P-e6B7MY.png);
}
.prize[data-v-2ad2aa17] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 30px;
  box-sizing: border-box;
}
.prize-color[data-v-2ad2aa17] {
  color: #000;
}
.roulette-bg[data-v-2ad2aa17] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-2ad2aa17] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-2ad2aa17] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-2ad2aa17] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-2ad2aa17] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-2ad2aa17] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-2ad2aa17] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-c7dac85d] {
  animation: shakebox-c7dac85d 0.4s linear infinite;
}
@keyframes shakebox-c7dac85d {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-c7dac85d] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-c7dac85d] {
  position: relative;
  width: 100%;
}
.overlay[data-v-c7dac85d] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-c7dac85d] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-c7dac85d] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-c7dac85d {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-c7dac85d] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg3-Um-lyCI5.png);
}
.prize[data-v-c7dac85d] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 30px;
  box-sizing: border-box;
}
.prize-color[data-v-c7dac85d] {
  color: #000;
}
.roulette-bg[data-v-c7dac85d] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-c7dac85d] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-c7dac85d] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-c7dac85d] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-c7dac85d] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-c7dac85d] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-c7dac85d] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-3984af65] {
  animation: shakebox-3984af65 0.4s linear infinite;
}
@keyframes shakebox-3984af65 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-3984af65] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-3984af65] {
  position: relative;
  width: 100%;
}
.overlay[data-v-3984af65] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-3984af65] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-3984af65] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-3984af65 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-3984af65] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg4-Bj8sR95Y.png);
}
.prize[data-v-3984af65] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 30px;
  box-sizing: border-box;
}
.prize-color[data-v-3984af65] {
  color: #000;
}
.roulette-bg[data-v-3984af65] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-3984af65] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-3984af65] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-3984af65] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-3984af65] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-3984af65] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-3984af65] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-4fe90f2b] {
  animation: shakebox-4fe90f2b 0.4s linear infinite;
}
@keyframes shakebox-4fe90f2b {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-4fe90f2b] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-4fe90f2b] {
  position: relative;
  width: 100%;
}
.overlay[data-v-4fe90f2b] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-4fe90f2b] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-4fe90f2b] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-4fe90f2b {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-4fe90f2b] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg5-BkL35qKR.png);
}
.prize[data-v-4fe90f2b] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 30px;
  box-sizing: border-box;
}
.prize-color[data-v-4fe90f2b] {
  color: #000;
}
.roulette-bg[data-v-4fe90f2b] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-4fe90f2b] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-4fe90f2b] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-4fe90f2b] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-4fe90f2b] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-4fe90f2b] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-4fe90f2b] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-02215f24] {
  animation: shakebox-02215f24 0.4s linear infinite;
}
@keyframes shakebox-02215f24 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-02215f24] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-02215f24] {
  position: relative;
  width: 100%;
}
.overlay[data-v-02215f24] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-02215f24] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-02215f24] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-02215f24 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-02215f24] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg6-0DObFxvt.png);
}
.prize[data-v-02215f24] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 30px;
  box-sizing: border-box;
}
.prize-color[data-v-02215f24] {
  color: #000;
}
.roulette-bg[data-v-02215f24] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-02215f24] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-02215f24] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-02215f24] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-02215f24] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-02215f24] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-02215f24] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-61428479] {
  animation: shakebox-61428479 0.4s linear infinite;
}
@keyframes shakebox-61428479 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-61428479] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-61428479] {
  position: relative;
  width: 100%;
}
.overlay[data-v-61428479] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-61428479] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-61428479] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-61428479 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-61428479] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg7-MD4bahoq.png);
}
.prize[data-v-61428479] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 30px;
  box-sizing: border-box;
}
.prize-color[data-v-61428479] {
  color: red;
}
.roulette-bg[data-v-61428479] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-61428479] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-61428479] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-61428479] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-61428479] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-61428479] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-61428479] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-af0a6abe] {
  animation: shakebox-af0a6abe 0.4s linear infinite;
}
@keyframes shakebox-af0a6abe {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-af0a6abe] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-af0a6abe] {
  position: relative;
  width: 100%;
}
.overlay[data-v-af0a6abe] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-af0a6abe] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-af0a6abe] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-af0a6abe {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-af0a6abe] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg1-REg-Mwk9.png);
}
.prize[data-v-af0a6abe] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 40px;
  box-sizing: border-box;
}
.prize-color[data-v-af0a6abe] {
  color: #000;
}
.roulette-bg[data-v-af0a6abe] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-af0a6abe] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-af0a6abe] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-af0a6abe] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-af0a6abe] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-af0a6abe] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-af0a6abe] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-9cdeaf8f] {
  animation: shakebox-9cdeaf8f 0.4s linear infinite;
}
@keyframes shakebox-9cdeaf8f {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-9cdeaf8f] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-9cdeaf8f] {
  position: relative;
  width: 100%;
}
.overlay[data-v-9cdeaf8f] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-9cdeaf8f] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-9cdeaf8f] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-9cdeaf8f {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-9cdeaf8f] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg9-OqOKcFkJ.png);
}
.prize[data-v-9cdeaf8f] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 35px;
  box-sizing: border-box;
}
.prize-color[data-v-9cdeaf8f] {
  color: #000;
}
.roulette-bg[data-v-9cdeaf8f] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-9cdeaf8f] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-9cdeaf8f] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-9cdeaf8f] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-9cdeaf8f] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-9cdeaf8f] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-9cdeaf8f] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-c2df27ce] {
  animation: shakebox-c2df27ce 0.4s linear infinite;
}
@keyframes shakebox-c2df27ce {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-c2df27ce] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-c2df27ce] {
  position: relative;
  width: 100%;
}
.overlay[data-v-c2df27ce] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-c2df27ce] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-c2df27ce] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-c2df27ce {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-c2df27ce] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg1-REg-Mwk9.png);
}
.prize[data-v-c2df27ce] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 40px;
  box-sizing: border-box;
}
.prize-color[data-v-c2df27ce] {
  color: #cc4e01;
}
.roulette-bg[data-v-c2df27ce] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-c2df27ce] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-c2df27ce] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-c2df27ce] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-c2df27ce] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-c2df27ce] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-c2df27ce] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-a94c2308] {
  animation: shakebox-a94c2308 0.4s linear infinite;
}
@keyframes shakebox-a94c2308 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-a94c2308] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-a94c2308] {
  position: relative;
  width: 100%;
}
.overlay[data-v-a94c2308] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-a94c2308] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-a94c2308] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-a94c2308 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-a94c2308] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg11-CQhfMzSM.png);
}
.prize[data-v-a94c2308] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 40px;
  box-sizing: border-box;
}
.prize-color[data-v-a94c2308] {
  color: #000;
}
.roulette-bg[data-v-a94c2308] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-a94c2308] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-a94c2308] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-a94c2308] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-a94c2308] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-a94c2308] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-a94c2308] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-55ebb5c1] {
  animation: shakebox-55ebb5c1 0.4s linear infinite;
}
@keyframes shakebox-55ebb5c1 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-55ebb5c1] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-55ebb5c1] {
  position: relative;
  width: 100%;
}
.overlay[data-v-55ebb5c1] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-55ebb5c1] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-55ebb5c1] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-55ebb5c1 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-55ebb5c1] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg12-BtjeoFVX.png);
}
.prize[data-v-55ebb5c1] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 30px;
  box-sizing: border-box;
}
.prize-color[data-v-55ebb5c1] {
  color: #000;
}
.roulette-bg[data-v-55ebb5c1] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-55ebb5c1] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-55ebb5c1] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-55ebb5c1] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-55ebb5c1] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-55ebb5c1] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-55ebb5c1] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-7ef2f76a] {
  animation: shakebox-7ef2f76a 0.4s linear infinite;
}
@keyframes shakebox-7ef2f76a {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-7ef2f76a] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-7ef2f76a] {
  position: relative;
  width: 100%;
}
.overlay[data-v-7ef2f76a] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-7ef2f76a] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-7ef2f76a] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-7ef2f76a {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-7ef2f76a] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg13-y3iTPcYj.png);
}
.prize[data-v-7ef2f76a] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 30px;
  box-sizing: border-box;
}
.prize-color[data-v-7ef2f76a] {
  color: #000;
}
.roulette-bg[data-v-7ef2f76a] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-7ef2f76a] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-7ef2f76a] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-7ef2f76a] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-7ef2f76a] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-7ef2f76a] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-7ef2f76a] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-1a52c814] {
  animation: shakebox-1a52c814 0.4s linear infinite;
}
@keyframes shakebox-1a52c814 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-1a52c814] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-1a52c814] {
  position: relative;
  width: 100%;
}
.overlay[data-v-1a52c814] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-1a52c814] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-1a52c814] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-1a52c814 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-1a52c814] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg1-REg-Mwk9.png);
}
.prize[data-v-1a52c814] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 40px;
  box-sizing: border-box;
}
.prize-color[data-v-1a52c814] {
  color: #000;
}
.roulette-bg[data-v-1a52c814] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-1a52c814] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-1a52c814] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-1a52c814] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-1a52c814] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-1a52c814] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-1a52c814] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-7f6e6b09] {
  animation: shakebox-7f6e6b09 0.4s linear infinite;
}
@keyframes shakebox-7f6e6b09 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-7f6e6b09] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-7f6e6b09] {
  position: relative;
  width: 100%;
}
.overlay[data-v-7f6e6b09] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-7f6e6b09] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-7f6e6b09] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-7f6e6b09 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-7f6e6b09] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg15-aN4Cm4rv.png);
}
.prize[data-v-7f6e6b09] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 30px;
  box-sizing: border-box;
}
.prize-color[data-v-7f6e6b09] {
  color: #000;
}
.roulette-bg[data-v-7f6e6b09] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-7f6e6b09] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-7f6e6b09] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-7f6e6b09] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-7f6e6b09] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-7f6e6b09] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-7f6e6b09] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-1d5934d4] {
  animation: shakebox-1d5934d4 0.4s linear infinite;
}
@keyframes shakebox-1d5934d4 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-1d5934d4] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-1d5934d4] {
  position: relative;
  width: 100%;
}
.overlay[data-v-1d5934d4] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-1d5934d4] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-1d5934d4] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-1d5934d4 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-1d5934d4] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg13-y3iTPcYj.png);
}
.prize[data-v-1d5934d4] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 30px;
  box-sizing: border-box;
}
.prize-color[data-v-1d5934d4] {
  color: #000;
}
.roulette-bg[data-v-1d5934d4] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-1d5934d4] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-1d5934d4] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-1d5934d4] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-1d5934d4] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-1d5934d4] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-1d5934d4] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-2057affc] {
  animation: shakebox-2057affc 0.4s linear infinite;
}
@keyframes shakebox-2057affc {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-2057affc] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-2057affc] {
  position: relative;
  width: 100%;
}
.overlay[data-v-2057affc] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-2057affc] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-2057affc] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-2057affc {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-2057affc] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg17-Ba81qGS8.png);
}
.prize[data-v-2057affc] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 34px;
  box-sizing: border-box;
}
.prize-color[data-v-2057affc] {
  color: red;
}
.roulette-bg[data-v-2057affc] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-2057affc] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-2057affc] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-2057affc] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-2057affc] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-2057affc] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-2057affc] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-89571ec3] {
  animation: shakebox-89571ec3 0.4s linear infinite;
}
@keyframes shakebox-89571ec3 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-89571ec3] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-89571ec3] {
  position: relative;
  width: 100%;
}
.overlay[data-v-89571ec3] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-89571ec3] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-89571ec3] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-89571ec3 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-89571ec3] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg1-REg-Mwk9.png);
}
.prize[data-v-89571ec3] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 40px;
  box-sizing: border-box;
}
.prize-color[data-v-89571ec3] {
  color: #cc4e01;
}
.roulette-bg[data-v-89571ec3] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-89571ec3] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-89571ec3] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-89571ec3] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-89571ec3] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-89571ec3] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-89571ec3] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-332f38af] {
  animation: shakebox-332f38af 0.4s linear infinite;
}
@keyframes shakebox-332f38af {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-332f38af] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-332f38af] {
  position: relative;
  width: 100%;
}
.overlay[data-v-332f38af] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-332f38af] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-332f38af] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-332f38af {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-332f38af] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg19-DgjL10TI.png);
}
.prize[data-v-332f38af] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 40px;
  box-sizing: border-box;
}
.prize-color[data-v-332f38af] {
  color: #cc4e01;
}
.roulette-bg[data-v-332f38af] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-332f38af] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-332f38af] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-332f38af] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-332f38af] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-332f38af] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-332f38af] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-e139ac66] {
  animation: shakebox-e139ac66 0.4s linear infinite;
}
@keyframes shakebox-e139ac66 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-e139ac66] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-e139ac66] {
  position: relative;
  width: 100%;
}
.overlay[data-v-e139ac66] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-e139ac66] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-e139ac66] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-e139ac66 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-e139ac66] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg20-DzttodGV.png);
}
.prize[data-v-e139ac66] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 25px;
  box-sizing: border-box;
}
.prize-color[data-v-e139ac66] {
  color: #000;
}
.roulette-bg[data-v-e139ac66] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-e139ac66] {
  position: absolute;
  width: 100px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-e139ac66] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-e139ac66] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-e139ac66] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-e139ac66] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-e139ac66] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-a18ac63c] {
  animation: shakebox-a18ac63c 0.4s linear infinite;
}
@keyframes shakebox-a18ac63c {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-a18ac63c] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-a18ac63c] {
  position: relative;
  width: 100%;
}
.overlay[data-v-a18ac63c] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-a18ac63c] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-a18ac63c] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-a18ac63c {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-a18ac63c] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg21-DnBfZ659.png);
}
.prize[data-v-a18ac63c] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 34px;
  box-sizing: border-box;
}
.prize-color[data-v-a18ac63c] {
  color: #000;
}
.roulette-bg[data-v-a18ac63c] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-a18ac63c] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-a18ac63c] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-a18ac63c] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-a18ac63c] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-a18ac63c] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-a18ac63c] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-4f0a760b] {
  animation: shakebox-4f0a760b 0.4s linear infinite;
}
@keyframes shakebox-4f0a760b {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-4f0a760b] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-4f0a760b] {
  position: relative;
  width: 100%;
}
.overlay[data-v-4f0a760b] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-4f0a760b] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-4f0a760b] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-4f0a760b {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-4f0a760b] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg22-CldVBypg.png);
}
.prize[data-v-4f0a760b] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 40px;
  box-sizing: border-box;
}
.prize-color[data-v-4f0a760b] {
  color: #000;
}
.roulette-bg[data-v-4f0a760b] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-4f0a760b] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-4f0a760b] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-4f0a760b] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-4f0a760b] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-4f0a760b] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-4f0a760b] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-6835d3be] {
  animation: shakebox-6835d3be 0.4s linear infinite;
}
@keyframes shakebox-6835d3be {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-6835d3be] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-6835d3be] {
  position: relative;
  width: 100%;
}
.overlay[data-v-6835d3be] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-6835d3be] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-6835d3be] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-6835d3be {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-6835d3be] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg23-BYz2uGci.png);
}
.prize[data-v-6835d3be] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 34px;
  box-sizing: border-box;
}
.prize-color[data-v-6835d3be] {
  color: #000;
}
.roulette-bg[data-v-6835d3be] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-6835d3be] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-6835d3be] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-6835d3be] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-6835d3be] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-6835d3be] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-6835d3be] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-e50c05ef] {
  animation: shakebox-e50c05ef 0.4s linear infinite;
}
@keyframes shakebox-e50c05ef {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-e50c05ef] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-e50c05ef] {
  position: relative;
  width: 100%;
}
.overlay[data-v-e50c05ef] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-e50c05ef] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-e50c05ef] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-e50c05ef {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-e50c05ef] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg24-CTunODXZ.png);
}
.prize[data-v-e50c05ef] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 20px;
  box-sizing: border-box;
}
.prize-color[data-v-e50c05ef] {
  color: #000;
}
.roulette-bg[data-v-e50c05ef] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-e50c05ef] {
  position: absolute;
  width: 110px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-e50c05ef] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-e50c05ef] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-e50c05ef] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-e50c05ef] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-e50c05ef] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-ce3e310d] {
  animation: shakebox-ce3e310d 0.4s linear infinite;
}
@keyframes shakebox-ce3e310d {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-ce3e310d] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-ce3e310d] {
  position: relative;
  width: 100%;
}
.overlay[data-v-ce3e310d] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-ce3e310d] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-ce3e310d] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-ce3e310d {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-ce3e310d] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg25-lBFlctdY.png);
}
.prize[data-v-ce3e310d] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 30px;
  box-sizing: border-box;
}
.prize-color[data-v-ce3e310d] {
  color: #000;
}
.roulette-bg[data-v-ce3e310d] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-ce3e310d] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-ce3e310d] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-ce3e310d] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-ce3e310d] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-ce3e310d] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-ce3e310d] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-6bb62d38] {
  animation: shakebox-6bb62d38 0.4s linear infinite;
}
@keyframes shakebox-6bb62d38 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-6bb62d38] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-6bb62d38] {
  position: relative;
  width: 100%;
}
.overlay[data-v-6bb62d38] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-6bb62d38] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-6bb62d38] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-6bb62d38 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-6bb62d38] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg26-CW5s5ZkS.png);
}
.prize[data-v-6bb62d38] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 30px;
  box-sizing: border-box;
}
.prize-color[data-v-6bb62d38] {
  color: #000;
}
.roulette-bg[data-v-6bb62d38] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-6bb62d38] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-6bb62d38] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-6bb62d38] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-6bb62d38] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-6bb62d38] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-6bb62d38] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-de6e1070] {
  animation: shakebox-de6e1070 0.4s linear infinite;
}
@keyframes shakebox-de6e1070 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-de6e1070] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-de6e1070] {
  position: relative;
  width: 100%;
}
.overlay[data-v-de6e1070] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-de6e1070] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-de6e1070] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-de6e1070 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-de6e1070] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg27-C2tcaz6k.png);
}
.prize[data-v-de6e1070] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 40px;
  box-sizing: border-box;
}
.prize-color[data-v-de6e1070] {
  color: red;
}
.roulette-bg[data-v-de6e1070] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-de6e1070] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-de6e1070] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-de6e1070] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-de6e1070] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-de6e1070] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-de6e1070] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-5fc531ed] {
  animation: shakebox-5fc531ed 0.4s linear infinite;
}
@keyframes shakebox-5fc531ed {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-5fc531ed] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-5fc531ed] {
  position: relative;
  width: 100%;
}
.overlay[data-v-5fc531ed] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-5fc531ed] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-5fc531ed] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-5fc531ed {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-5fc531ed] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg28-YXKxU-_F.png);
}
.prize[data-v-5fc531ed] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 30px;
  box-sizing: border-box;
}
.prize-color[data-v-5fc531ed] {
  color: #000;
}
.roulette-bg[data-v-5fc531ed] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-5fc531ed] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-5fc531ed] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-5fc531ed] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-5fc531ed] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-5fc531ed] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-5fc531ed] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-499db081] {
  animation: shakebox-499db081 0.4s linear infinite;
}
@keyframes shakebox-499db081 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-499db081] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-499db081] {
  position: relative;
  width: 100%;
}
.overlay[data-v-499db081] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-499db081] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-499db081] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-499db081 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-499db081] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg15-aN4Cm4rv.png);
}
.prize[data-v-499db081] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 30px;
  box-sizing: border-box;
}
.prize-color[data-v-499db081] {
  color: var(--primary);
}
.roulette-bg[data-v-499db081] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-499db081] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-499db081] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-499db081] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-499db081] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-499db081] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-499db081] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-560d75b2] {
  animation: shakebox-560d75b2 0.4s linear infinite;
}
@keyframes shakebox-560d75b2 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-560d75b2] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-560d75b2] {
  position: relative;
  width: 100%;
}
.overlay[data-v-560d75b2] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-560d75b2] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-560d75b2] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-560d75b2 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-560d75b2] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg30-BAVtvxt-.png);
}
.prize[data-v-560d75b2] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 40px;
  box-sizing: border-box;
}
.prize-color[data-v-560d75b2] {
  color: #000;
}
.roulette-bg[data-v-560d75b2] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-560d75b2] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-560d75b2] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-560d75b2] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-560d75b2] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-560d75b2] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-560d75b2] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-ba300b45] {
  animation: shakebox-ba300b45 0.4s linear infinite;
}
@keyframes shakebox-ba300b45 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-ba300b45] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-ba300b45] {
  position: relative;
  width: 100%;
}
.overlay[data-v-ba300b45] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-ba300b45] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-ba300b45] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-ba300b45 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-ba300b45] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg1-REg-Mwk9.png);
}
.prize[data-v-ba300b45] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 40px;
  box-sizing: border-box;
}
.prize-color[data-v-ba300b45] {
  color: #cc4e01;
}
.roulette-bg[data-v-ba300b45] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-ba300b45] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-ba300b45] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-ba300b45] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-ba300b45] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-ba300b45] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-ba300b45] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-6a846285] {
  animation: shakebox-6a846285 0.4s linear infinite;
}
@keyframes shakebox-6a846285 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-6a846285] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-6a846285] {
  position: relative;
  width: 100%;
}
.overlay[data-v-6a846285] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-6a846285] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-6a846285] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-6a846285 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-6a846285] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  overflow: hidden;
  background-image: url(./bg32-CrAijcHD.png);
}
.prize[data-v-6a846285] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 30px;
  box-sizing: border-box;
}
.prize-color[data-v-6a846285] {
  color: #000;
}
.roulette-bg[data-v-6a846285] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-6a846285] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-6a846285] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-6a846285] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-6a846285] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-6a846285] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-6a846285] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-6d0cdba4] {
  animation: shakebox-6d0cdba4 0.4s linear infinite;
}
@keyframes shakebox-6d0cdba4 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-6d0cdba4] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-6d0cdba4] {
  position: relative;
  width: 100%;
}
.overlay[data-v-6d0cdba4] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-6d0cdba4] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-6d0cdba4] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-6d0cdba4 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-6d0cdba4] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg1-REg-Mwk9.png);
}
.prize[data-v-6d0cdba4] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 40px;
  box-sizing: border-box;
}
.prize-color[data-v-6d0cdba4] {
  color: #000;
}
.roulette-bg[data-v-6d0cdba4] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-6d0cdba4] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-6d0cdba4] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-6d0cdba4] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-6d0cdba4] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-6d0cdba4] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-6d0cdba4] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-e6ee2930] {
  animation: shakebox-e6ee2930 0.4s linear infinite;
}
@keyframes shakebox-e6ee2930 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-e6ee2930] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-e6ee2930] {
  position: relative;
  width: 100%;
}
.overlay[data-v-e6ee2930] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-e6ee2930] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-e6ee2930] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-e6ee2930 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-e6ee2930] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg26-CW5s5ZkS.png);
}
.prize[data-v-e6ee2930] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 30px;
  box-sizing: border-box;
}
.prize-color[data-v-e6ee2930] {
  color: #000;
}
.roulette-bg[data-v-e6ee2930] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-e6ee2930] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-e6ee2930] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-e6ee2930] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-e6ee2930] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-e6ee2930] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-e6ee2930] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-fda29357] {
  animation: shakebox-fda29357 0.4s linear infinite;
}
@keyframes shakebox-fda29357 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-fda29357] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-fda29357] {
  position: relative;
  width: 100%;
}
.overlay[data-v-fda29357] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-fda29357] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-fda29357] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-fda29357 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-fda29357] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  overflow: hidden;
  background-image: url(./bg32-CrAijcHD.png);
}
.prize[data-v-fda29357] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 30px;
  box-sizing: border-box;
}
.prize-color[data-v-fda29357] {
  color: #000;
}
.roulette-bg[data-v-fda29357] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-fda29357] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-fda29357] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-fda29357] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-fda29357] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-fda29357] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-fda29357] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-32084fcc] {
  animation: shakebox-32084fcc 0.4s linear infinite;
}
@keyframes shakebox-32084fcc {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-32084fcc] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-32084fcc] {
  position: relative;
  width: 100%;
}
.overlay[data-v-32084fcc] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-32084fcc] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-32084fcc] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-32084fcc {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-32084fcc] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg6-0DObFxvt.png);
}
.prize[data-v-32084fcc] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 40px;
  box-sizing: border-box;
}
.prize-color[data-v-32084fcc] {
  color: #000;
}
.roulette-bg[data-v-32084fcc] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-32084fcc] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-32084fcc] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-32084fcc] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-32084fcc] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-32084fcc] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-32084fcc] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-b79b0867] {
  animation: shakebox-b79b0867 0.4s linear infinite;
}
@keyframes shakebox-b79b0867 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-b79b0867] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-b79b0867] {
  position: relative;
  width: 100%;
}
.overlay[data-v-b79b0867] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-b79b0867] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-b79b0867] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-b79b0867 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-b79b0867] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg4-Bj8sR95Y.png);
}
.prize[data-v-b79b0867] {
  position: absolute;
  width: 90px;
  height: 120px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 30px;
  box-sizing: border-box;
}
.prize-color[data-v-b79b0867] {
  color: #000;
}
.roulette-bg[data-v-b79b0867] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-b79b0867] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-b79b0867] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-b79b0867] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-b79b0867] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-b79b0867] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-b79b0867] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-3ec638b9] {
  animation: shakebox-3ec638b9 0.4s linear infinite;
}
@keyframes shakebox-3ec638b9 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-3ec638b9] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-3ec638b9] {
  position: relative;
  width: 100%;
}
.overlay[data-v-3ec638b9] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-3ec638b9] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-3ec638b9] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-3ec638b9 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-3ec638b9] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg6-0DObFxvt.png);
}
.prize[data-v-3ec638b9] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 40px;
  box-sizing: border-box;
}
.prize-color[data-v-3ec638b9] {
  color: #000;
}
.roulette-bg[data-v-3ec638b9] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-3ec638b9] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-3ec638b9] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-3ec638b9] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-3ec638b9] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-3ec638b9] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-3ec638b9] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-fbba75b1] {
  animation: shakebox-fbba75b1 0.4s linear infinite;
}
@keyframes shakebox-fbba75b1 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-fbba75b1] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-fbba75b1] {
  position: relative;
  width: 100%;
}
.overlay[data-v-fbba75b1] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-fbba75b1] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-fbba75b1] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-fbba75b1 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-fbba75b1] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg1-REg-Mwk9.png);
}
.prize[data-v-fbba75b1] {
  position: absolute;
  width: 90px;
  height: 120px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 30px;
  box-sizing: border-box;
}
.prize-color[data-v-fbba75b1] {
  color: #000;
}
.roulette-bg[data-v-fbba75b1] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-fbba75b1] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-fbba75b1] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-fbba75b1] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-fbba75b1] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-fbba75b1] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-fbba75b1] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-db6808a4] {
  animation: shakebox-db6808a4 0.4s linear infinite;
}
@keyframes shakebox-db6808a4 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-db6808a4] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-db6808a4] {
  position: relative;
  width: 100%;
}
.overlay[data-v-db6808a4] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-db6808a4] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-db6808a4] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-db6808a4 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-db6808a4] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg1-REg-Mwk9.png);
}
.prize[data-v-db6808a4] {
  position: absolute;
  width: 90px;
  height: 120px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 30px;
  box-sizing: border-box;
}
.prize-color[data-v-db6808a4] {
  color: #000;
}
.roulette-bg[data-v-db6808a4] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-db6808a4] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-db6808a4] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-db6808a4] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-db6808a4] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-db6808a4] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-db6808a4] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-0e557387] {
  animation: shakebox-0e557387 0.4s linear infinite;
}
@keyframes shakebox-0e557387 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-0e557387] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-0e557387] {
  position: relative;
  width: 100%;
}
.overlay[data-v-0e557387] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-0e557387] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-0e557387] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-0e557387 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-0e557387] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg6-0DObFxvt.png);
}
.prize[data-v-0e557387] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 40px;
  box-sizing: border-box;
}
.prize-color[data-v-0e557387] {
  color: #000;
}
.roulette-bg[data-v-0e557387] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-0e557387] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-0e557387] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-0e557387] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-0e557387] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-0e557387] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-0e557387] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-13006d42] {
  animation: shakebox-13006d42 0.4s linear infinite;
}
@keyframes shakebox-13006d42 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-13006d42] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-13006d42] {
  position: relative;
  width: 100%;
}
.overlay[data-v-13006d42] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-13006d42] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-13006d42] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-13006d42 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-13006d42] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg3-Um-lyCI5.png);
}
.prize[data-v-13006d42] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 40px;
  box-sizing: border-box;
}
.prize-color[data-v-13006d42] {
  color: #000;
}
.roulette-bg[data-v-13006d42] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-13006d42] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-13006d42] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-13006d42] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-13006d42] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-13006d42] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-13006d42] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-7dd66de1] {
  animation: shakebox-7dd66de1 0.4s linear infinite;
}
@keyframes shakebox-7dd66de1 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-7dd66de1] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-7dd66de1] {
  position: relative;
  width: 100%;
}
.overlay[data-v-7dd66de1] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-7dd66de1] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-7dd66de1] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-7dd66de1 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-7dd66de1] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg2-P-e6B7MY.png);
}
.prize[data-v-7dd66de1] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 40px;
  box-sizing: border-box;
}
.prize-color[data-v-7dd66de1] {
  color: #000;
}
.roulette-bg[data-v-7dd66de1] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-7dd66de1] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-7dd66de1] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-7dd66de1] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-7dd66de1] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-7dd66de1] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-7dd66de1] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-f9414108] {
  animation: shakebox-f9414108 0.4s linear infinite;
}
@keyframes shakebox-f9414108 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-f9414108] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-f9414108] {
  position: relative;
  width: 100%;
}
.overlay[data-v-f9414108] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-f9414108] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-f9414108] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-f9414108 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-f9414108] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg12-BtjeoFVX.png);
}
.prize[data-v-f9414108] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 40px;
  box-sizing: border-box;
}
.prize-color[data-v-f9414108] {
  color: #000;
}
.roulette-bg[data-v-f9414108] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-f9414108] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-f9414108] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-f9414108] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-f9414108] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-f9414108] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-f9414108] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-2e6d3ff9] {
  animation: shakebox-2e6d3ff9 0.4s linear infinite;
}
@keyframes shakebox-2e6d3ff9 {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-2e6d3ff9] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-2e6d3ff9] {
  position: relative;
  width: 100%;
}
.overlay[data-v-2e6d3ff9] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-2e6d3ff9] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-2e6d3ff9] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-2e6d3ff9 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-2e6d3ff9] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg13-y3iTPcYj.png);
}
.prize[data-v-2e6d3ff9] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 40px;
  box-sizing: border-box;
}
.prize-color[data-v-2e6d3ff9] {
  color: #cc4e01;
}
.roulette-bg[data-v-2e6d3ff9] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-2e6d3ff9] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-2e6d3ff9] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-2e6d3ff9] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-2e6d3ff9] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-2e6d3ff9] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-2e6d3ff9] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.shake[data-v-4f7db61a] {
  animation: shakebox-4f7db61a 0.4s linear infinite;
}
@keyframes shakebox-4f7db61a {
  0% {
    transform: translateZ(0);
  }
  5% {
    transform: translate3d(5px, 5px, 0);
  }
  15% {
    transform: translate3d(-5px, -5px, 0);
  }
  25% {
    transform: translate3d(5px, 5px, 0);
  }
  45% {
    transform: translate3d(-5px, -5px, 0);
  }
  55% {
    transform: translate3d(5px, -5px, 0);
  }
  65% {
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    transform: translate3d(5px, 5px, 0);
  }
  to {
    transform: translate3d(-5px, -5px, 0);
  }
}
.popup[data-v-4f7db61a] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-content[data-v-4f7db61a] {
  position: relative;
  width: 100%;
}
.overlay[data-v-4f7db61a] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 9999;
  display: block;
}
.draw-box-wrap[data-v-4f7db61a] {
  position: relative;
  width: 375px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
}
.draw-wheel-box[data-v-4f7db61a] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  overflow: hidden;
}
@keyframes rotate-4f7db61a {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.draw-wheel[data-v-4f7db61a] {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform-origin: center center;
  transform: rotate(-22.5deg);
  overflow: hidden;
  background-image: url(./bg13-y3iTPcYj.png);
}
.prize[data-v-4f7db61a] {
  position: absolute;
  width: 90px;
  height: 125px;
  top: 1px;
  transform: translate(50%);
  transform-origin: bottom center;
  padding-top: 40px;
  box-sizing: border-box;
}
.prize-color[data-v-4f7db61a] {
  color: #cc4e01;
}
.roulette-bg[data-v-4f7db61a] {
  width: 250px;
  height: 250px;
}
.roulette-pointer[data-v-4f7db61a] {
  position: absolute;
  width: 62px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.lottery-tip[data-v-4f7db61a] {
  color: #fff;
  position: absolute;
  top: 120px;
}
.lottery-tip2[data-v-4f7db61a] {
  color: #fff;
  position: absolute;
  bottom: 100px;
  text-align: center;
}
.icon-close[data-v-4f7db61a] {
  position: absolute;
  top: 20px;
  right: 50px;
}
.btn-invite[data-v-4f7db61a] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.pointer-btn[data-v-4f7db61a] {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
}
.base-lottery-wrap[data-v-72791ba4] {
  background: transparent !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.base-lottery-wrap .container-wrap[data-v-72791ba4] {
  position: relative;
  box-sizing: border-box;
  padding: 0 20px;
  overflow: hidden;
}
:root,
:host {
  --van-floating-bubble-size: 48px;
  --van-floating-bubble-initial-gap: 24px;
  --van-floating-bubble-icon-size: 28px;
  --van-floating-bubble-background: var(--van-primary-color);
  --van-floating-bubble-color: var(--van-background-2);
  --van-floating-bubble-z-index: 999;
  --van-floating-bubble-border-radius: var(--van-radius-max);
}
.van-floating-bubble {
  position: fixed;
  left: 0;
  top: 0;
  right: var(--van-floating-bubble-initial-gap);
  bottom: var(--van-floating-bubble-initial-gap);
  width: var(--van-floating-bubble-size);
  height: var(--van-floating-bubble-size);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  touch-action: none;
  background: var(--van-floating-bubble-background);
  color: var(--van-floating-bubble-color);
  border-radius: var(--van-floating-bubble-border-radius);
  z-index: var(--van-floating-bubble-z-index);
  transition: transform var(--van-duration-base);
}
.van-floating-bubble:active {
  opacity: 0.8;
}
.van-floating-bubble__icon {
  font-size: var(--van-floating-bubble-icon-size);
}
.van-popup-customer[data-v-3a224a8c] {
  height: 100%;
  display: flex;
  align-items: center;
}
.announce-wrap[data-v-3a224a8c] {
  margin: 0 auto;
  width: 100%;
  height: 432px;
  opacity: 1;
  border-radius: 8px;
  background: var(--bg);
  box-sizing: border-box;
}
.announce-wrap .announce-header35[data-v-3a224a8c] {
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  border-radius: 8px 8px 0 0;
}
.announce-wrap .announce-header35[data-v-3a224a8c]:after {
  content: "";
  position: absolute;
  top: -20px;
  left: 10px;
  width: 70px;
  height: 70px;
  background: var(--2e82253e);
}
.announce-wrap .announce-content[data-v-3a224a8c] {
  height: calc(100% - 30px);
  padding: 10px;
  overflow-y: auto;
  overflow-x: hidden;
}
.announce-wrap .announce-footer[data-v-3a224a8c] {
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--btn-text);
  background: var(--bg);
  border-top: 1px solid var(--text-gray);
  padding: 10px;
  border-radius: 0 0 8px 8px;
}
.rich-text[data-v-3a224a8c] {
  direction: var(--9cff753a);
}
.rich-text[data-v-3a224a8c] table {
  max-width: 100% !important;
  border: 1px solid #ccc;
  margin: 10px 0;
}
.rich-text[data-v-3a224a8c] table th,
.rich-text[data-v-3a224a8c] table td {
  border: 1px solid #ccc;
}
.rich-text[data-v-3a224a8c] table td {
  padding: 0 5px;
  word-break: break-all;
}
.rich-text[data-v-3a224a8c] p {
  font-size: 14px;
  line-height: 1.6;
}
.rich-text[data-v-3a224a8c] h1 {
  font-size: 32px;
  font-weight: 700;
}
.rich-text[data-v-3a224a8c] h2 {
  font-size: 24px;
  font-weight: 700;
}
.rich-text[data-v-3a224a8c] a {
  color: var(--primary);
  text-decoration: underline;
}
.rich-text[data-v-3a224a8c] a:hover {
  text-decoration: none;
}
.rich-text[data-v-3a224a8c] p > img {
  max-width: 90% !important;
  height: auto !important;
  margin: 0 auto;
}
.van-popup-customer[data-v-744b752c] {
  height: 100%;
  display: flex;
  align-items: center;
}
.announce-wrap[data-v-744b752c] {
  margin: 0 auto;
  width: 100%;
  height: 432px;
  opacity: 1;
  border-radius: 8px;
  background: var(--bg);
  box-sizing: border-box;
}
.announce-wrap .announce-header[data-v-744b752c] {
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--btn-text);
  background: var(--primary);
  position: relative;
  border-radius: 8px 8px 0 0;
}
.announce-wrap .announce-header[data-v-744b752c]:after {
  content: "";
  position: absolute;
  top: -40px;
  left: 20px;
  width: 120px;
  height: 120px;
  background: url(./images/announce.png) no-repeat 0 0 / contain;
}
.announce-wrap .announce-header2[data-v-744b752c] {
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--btn-text);
  background: var(--primary);
  position: relative;
  border-radius: 8px 8px 0 0;
}
.announce-wrap .announce-header2[data-v-744b752c]:after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 80px;
  height: 80px;
  background: url(./announce-top-qWK_5zXY.png) no-repeat 0 0 / contain;
}
.announce-wrap .announce-header3[data-v-744b752c],
.announce-wrap .announce-header4[data-v-744b752c] {
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  background: var(--primary);
  position: relative;
  border-radius: 8px 8px 0 0;
}
.announce-wrap .announce-header4[data-v-744b752c]:after {
  content: "";
  position: absolute;
  top: -60px;
  left: 10px;
  width: 100px;
  height: 100px;
  background: url(./announce-header-3Mu53U62.png) no-repeat 0 0 / contain;
}
.announce-wrap .announce-header25[data-v-744b752c] {
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--btn-text);
  background: var(--primary);
  position: relative;
  border-radius: 8px 8px 0 0;
}
.announce-wrap .announce-header25[data-v-744b752c]:after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 80px;
  height: 80px;
  background: url(./announce-top-qWK_5zXY.png) no-repeat 0 0 / contain;
}
.announce-wrap .announce-header35[data-v-744b752c] {
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  border-radius: 8px 8px 0 0;
}
.announce-wrap .announce-header35[data-v-744b752c]:after {
  content: "";
  position: absolute;
  top: -20px;
  left: 10px;
  width: 70px;
  height: 70px;
  background: var(--53948c1c);
}
.announce-wrap .announce-content[data-v-744b752c] {
  height: calc(100% - 120px);
  padding: 10px;
  overflow-y: auto;
  overflow-x: hidden;
}
.announce-wrap .announce-footer[data-v-744b752c] {
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--btn-text);
  background: var(--bg);
  border-top: 1px solid var(--text-gray);
  padding: 10px;
  border-radius: 0 0 8px 8px;
}
.announce-wrap .announce-footer2[data-v-744b752c] {
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--btn-text);
  border-top: 1px solid var(--text-gray);
  padding: 10px;
  border-radius: 0 0 8px 8px;
}
.announce-wrap .theme2-btn[data-v-744b752c] {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #0268f9 0, #13d0fa) !important;
  color: #cbe7f4 !important;
  border: 2px solid transparent !important;
  box-sizing: border-box;
}
.announce-wrap .theme2-btn[data-v-744b752c]:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #000;
  border: inherit;
  border-color: #000;
  border-radius: inherit;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.rich-text[data-v-744b752c] {
  direction: var(--088acda2);
}
.rich-text[data-v-744b752c] table {
  max-width: 100% !important;
  border: 1px solid #ccc;
  margin: 10px 0;
}
.rich-text[data-v-744b752c] table th,
.rich-text[data-v-744b752c] table td {
  border: 1px solid #ccc;
}
.rich-text[data-v-744b752c] table td {
  padding: 0 5px;
  word-break: break-all;
}
.rich-text[data-v-744b752c] p {
  font-size: 14px;
  line-height: 1.6;
}
.rich-text[data-v-744b752c] h1 {
  font-size: 32px;
  font-weight: 700;
}
.rich-text[data-v-744b752c] h2 {
  font-size: 24px;
  font-weight: 700;
}
.rich-text[data-v-744b752c] a {
  color: var(--primary);
  text-decoration: underline;
}
.rich-text[data-v-744b752c] a:hover {
  text-decoration: none;
}
.rich-text[data-v-744b752c] p > img {
  max-width: 90% !important;
  height: auto !important;
  margin: 0 auto;
}
.rich-text :deep(table) {
  max-width: 100% !important;
  border: 1px solid #ccc;
  margin: 10px 0;
}
.rich-text :deep(table) th,
.rich-text :deep(table) td {
  border: 1px solid #ccc;
}
.rich-text :deep(table) td {
  padding: 0 5px;
  word-break: break-all;
}
.rich-text :deep(p) {
  font-size: 14px;
  line-height: 1.6;
}
.rich-text :deep(h1) {
  font-size: 32px;
  font-weight: 700;
}
.rich-text :deep(h2) {
  font-size: 24px;
  font-weight: 700;
}
.rich-text :deep(a) {
  color: var(--primary);
  text-decoration: underline;
}
.rich-text :deep(a:hover) {
  text-decoration: none;
}
.rich-text :deep(p > img) {
  max-width: 90% !important;
  height: auto !important;
  margin: 0 auto;
}
*,
:before,
:after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: var(--un-default-border-color, #e5e7eb);
}
html,
:host {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}
/* body {
  margin: 0;
  line-height: inherit;
} */
hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}
abbr:where([title]) {
  text-decoration: underline dotted;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
  text-decoration: inherit;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    Liberation Mono, Courier New, monospace;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}
button,
select {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  background-image: none;
}
:-moz-focusring {
  outline: auto;
}
:-moz-ui-invalid {
  box-shadow: none;
}
progress {
  vertical-align: baseline;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
summary {
  display: list-item;
}
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
dialog {
  padding: 0;
}
textarea {
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}
button,
[role="button"] {
  cursor: pointer;
}
:disabled {
  cursor: default;
}
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}
img,
video {
  max-width: 100%;
  height: auto;
}
[hidden] {
  display: none;
}
*,
:before,
:after {
  --un-rotate: 0;
  --un-rotate-x: 0;
  --un-rotate-y: 0;
  --un-rotate-z: 0;
  --un-scale-x: 1;
  --un-scale-y: 1;
  --un-scale-z: 1;
  --un-skew-x: 0;
  --un-skew-y: 0;
  --un-translate-x: 0;
  --un-translate-y: 0;
  --un-translate-z: 0;
  --un-pan-x: ;
  --un-pan-y: ;
  --un-pinch-zoom: ;
  --un-scroll-snap-strictness: proximity;
  --un-ordinal: ;
  --un-slashed-zero: ;
  --un-numeric-figure: ;
  --un-numeric-spacing: ;
  --un-numeric-fraction: ;
  --un-border-spacing-x: 0;
  --un-border-spacing-y: 0;
  --un-ring-offset-shadow: 0 0 rgb(0 0 0 / 0);
  --un-ring-shadow: 0 0 rgb(0 0 0 / 0);
  --un-shadow-inset: ;
  --un-shadow: 0 0 rgb(0 0 0 / 0);
  --un-ring-inset: ;
  --un-ring-offset-width: 0px;
  --un-ring-offset-color: #fff;
  --un-ring-width: 0px;
  --un-ring-color: rgb(147 197 253 / 0.5);
  --un-blur: ;
  --un-brightness: ;
  --un-contrast: ;
  --un-drop-shadow: ;
  --un-grayscale: ;
  --un-hue-rotate: ;
  --un-invert: ;
  --un-saturate: ;
  --un-sepia: ;
  --un-backdrop-blur: ;
  --un-backdrop-brightness: ;
  --un-backdrop-contrast: ;
  --un-backdrop-grayscale: ;
  --un-backdrop-hue-rotate: ;
  --un-backdrop-invert: ;
  --un-backdrop-opacity: ;
  --un-backdrop-saturate: ;
  --un-backdrop-sepia: ;
}
::backdrop {
  --un-rotate: 0;
  --un-rotate-x: 0;
  --un-rotate-y: 0;
  --un-rotate-z: 0;
  --un-scale-x: 1;
  --un-scale-y: 1;
  --un-scale-z: 1;
  --un-skew-x: 0;
  --un-skew-y: 0;
  --un-translate-x: 0;
  --un-translate-y: 0;
  --un-translate-z: 0;
  --un-pan-x: ;
  --un-pan-y: ;
  --un-pinch-zoom: ;
  --un-scroll-snap-strictness: proximity;
  --un-ordinal: ;
  --un-slashed-zero: ;
  --un-numeric-figure: ;
  --un-numeric-spacing: ;
  --un-numeric-fraction: ;
  --un-border-spacing-x: 0;
  --un-border-spacing-y: 0;
  --un-ring-offset-shadow: 0 0 rgb(0 0 0 / 0);
  --un-ring-shadow: 0 0 rgb(0 0 0 / 0);
  --un-shadow-inset: ;
  --un-shadow: 0 0 rgb(0 0 0 / 0);
  --un-ring-inset: ;
  --un-ring-offset-width: 0px;
  --un-ring-offset-color: #fff;
  --un-ring-width: 0px;
  --un-ring-color: rgb(147 197 253 / 0.5);
  --un-blur: ;
  --un-brightness: ;
  --un-contrast: ;
  --un-drop-shadow: ;
  --un-grayscale: ;
  --un-hue-rotate: ;
  --un-invert: ;
  --un-saturate: ;
  --un-sepia: ;
  --un-backdrop-blur: ;
  --un-backdrop-brightness: ;
  --un-backdrop-contrast: ;
  --un-backdrop-grayscale: ;
  --un-backdrop-hue-rotate: ;
  --un-backdrop-invert: ;
  --un-backdrop-opacity: ;
  --un-backdrop-saturate: ;
  --un-backdrop-sepia: ;
}
@font-face {
  font-family: DM Sans;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxRR232VGM.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: DM Sans;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxRSW32.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmserifdisplay/v15/-nFnOHM81r4j6k0gjAW3mujVU2B2G_5x0ujy.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmserifdisplay/v15/-nFnOHM81r4j6k0gjAW3mujVU2B2G_Bx0g.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZJhiI2B.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZthiI2B.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZNhiI2B.woff2)
    format("woff2");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZxhiI2B.woff2)
    format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
    U+03A3-03FF;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZBhiI2B.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZFhiI2B.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZ9hiA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fAZJhiI2B.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fAZthiI2B.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fAZNhiI2B.woff2)
    format("woff2");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fAZxhiI2B.woff2)
    format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
    U+03A3-03FF;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fAZBhiI2B.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fAZFhiI2B.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fAZ9hiA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYAZJhiI2B.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYAZthiI2B.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYAZNhiI2B.woff2)
    format("woff2");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYAZxhiI2B.woff2)
    format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
    U+03A3-03FF;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYAZBhiI2B.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYAZFhiI2B.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYAZ9hiA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYAZJhiI2B.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYAZthiI2B.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYAZNhiI2B.woff2)
    format("woff2");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYAZxhiI2B.woff2)
    format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
    U+03A3-03FF;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYAZBhiI2B.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYAZFhiI2B.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYAZ9hiA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTN1OVgaY.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTPlOVgaY.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTOVOVgaY.woff2)
    format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
    U+03A3-03FF;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTNVOVgaY.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTNFOVgaY.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTOlOV.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxTN1OVgaY.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxTPlOVgaY.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxTOVOVgaY.woff2)
    format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
    U+03A3-03FF;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxTNVOVgaY.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxTNFOVgaY.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxTOlOV.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8FqtTN1OVgaY.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8FqtTPlOVgaY.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8FqtTOVOVgaY.woff2)
    format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
    U+03A3-03FF;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8FqtTNVOVgaY.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8FqtTNFOVgaY.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8FqtTOlOV.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tTN1OVgaY.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tTPlOVgaY.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tTOVOVgaY.woff2)
    format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
    U+03A3-03FF;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tTNVOVgaY.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tTNFOVgaY.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tTOlOV.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw0aXpsog.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw9aXpsog.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw2aXpsog.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw3aXpsog.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aXo.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrJJnecmNE.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrJJfecg.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgoKcg72j00.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgoKew72j00.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgoKcw72j00.woff2)
    format("woff2");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgoKfA72j00.woff2)
    format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
    U+03A3-03FF;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgoKcQ72j00.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgoKfw72.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3jvWyNL4U.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3jtGyNL4U.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3jvGyNL4U.woff2)
    format("woff2");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3js2yNL4U.woff2)
    format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
    U+03A3-03FF;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3jvmyNL4U.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3jsGyN.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvjvWyNL4U.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvjtGyNL4U.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvjvGyNL4U.woff2)
    format("woff2");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvjs2yNL4U.woff2)
    format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
    U+03A3-03FF;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvjvmyNL4U.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvjsGyN.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
.i-ant-design\:linkedin-filled {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 1024 1024' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M880 112H144c-17.7 0-32 14.3-32 32v736c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V144c0-17.7-14.3-32-32-32M349.3 793.7H230.6V411.9h118.7zm-59.3-434a68.8 68.8 0 1 1 68.8-68.8c-.1 38-30.9 68.8-68.8 68.8m503.7 434H675.1V608c0-44.3-.8-101.2-61.7-101.2c-61.7 0-71.2 48.2-71.2 98v188.9H423.7V411.9h113.8v52.2h1.6c15.8-30 54.5-61.7 112.3-61.7c120.2 0 142.3 79.1 142.3 181.9z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ant-design\:safety-outlined {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 1024 1024' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M512 64L128 192v384c0 212.1 171.9 384 384 384s384-171.9 384-384V192zm312 512c0 172.3-139.7 312-312 312S200 748.3 200 576V246l312-110l312 110z'/%3E%3Cpath fill='currentColor' d='M378.4 475.1a35.91 35.91 0 0 0-50.9 0a35.91 35.91 0 0 0 0 50.9l129.4 129.4l2.1 2.1a33.98 33.98 0 0 0 48.1 0L730.6 434a33.98 33.98 0 0 0 0-48.1l-2.8-2.8a33.98 33.98 0 0 0-48.1 0L483 579.7z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-arcticons\:kwai {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 48 48' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' d='M20.85 42.5h13.478a5.39 5.39 0 0 0 5.39-5.391v-7.764a5.39 5.39 0 0 0-5.39-5.391H20.85a5.39 5.39 0 0 0-5.39 5.39v7.765a5.39 5.39 0 0 0 5.39 5.391'/%3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='18.328' cy='13.261' r='7.761'/%3E%3Ccircle cx='32.904' cy='14.206' r='6.815'/%3E%3C/g%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' d='m15.46 30.594l-4.483-2.588c-1.198-.692-2.696.173-2.696 1.556v7.353c0 1.383 1.498 2.248 2.696 1.556l4.482-2.588'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-basil\:telegram-solid {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M18.483 19.79v-.002l.018-.043L21.5 4.625v-.048c0-.377-.14-.706-.442-.903c-.265-.173-.57-.185-.784-.169a2.7 2.7 0 0 0-.586.12a3 3 0 0 0-.24.088l-.013.005l-16.72 6.559l-.005.002a1 1 0 0 0-.149.061a2.3 2.3 0 0 0-.341.19c-.215.148-.624.496-.555 1.048c.057.458.372.748.585.899a2 2 0 0 0 .403.22l.032.014l.01.003l.007.003l2.926.985q-.016.276.057.555l1.465 5.559a1.5 1.5 0 0 0 2.834.196l2.288-2.446l3.929 3.012l.056.024c.357.156.69.205.995.164c.305-.042.547-.17.729-.315a1.74 1.74 0 0 0 .49-.635l.008-.017l.003-.006zM7.135 13.875a.3.3 0 0 1 .13-.33l9.921-6.3s.584-.355.563 0c0 0 .104.062-.209.353c-.296.277-7.071 6.818-7.757 7.48a.3.3 0 0 0-.077.136L8.6 19.434z' clip-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-bi\:patch-question {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 16 16' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='currentColor'%3E%3Cpath d='M8.05 9.6c.336 0 .504-.24.554-.627c.04-.534.198-.815.847-1.26c.673-.475 1.049-1.09 1.049-1.986c0-1.325-.92-2.227-2.262-2.227c-1.02 0-1.792.492-2.1 1.29A1.7 1.7 0 0 0 6 5.48c0 .393.203.64.545.64c.272 0 .455-.147.564-.51c.158-.592.525-.915 1.074-.915c.61 0 1.03.446 1.03 1.084c0 .563-.208.885-.822 1.325c-.619.433-.926.914-.926 1.64v.111c0 .428.208.745.585.745'/%3E%3Cpath d='m10.273 2.513l-.921-.944l.715-.698l.622.637l.89-.011a2.89 2.89 0 0 1 2.924 2.924l-.01.89l.636.622a2.89 2.89 0 0 1 0 4.134l-.637.622l.011.89a2.89 2.89 0 0 1-2.924 2.924l-.89-.01l-.622.636a2.89 2.89 0 0 1-4.134 0l-.622-.637l-.89.011a2.89 2.89 0 0 1-2.924-2.924l.01-.89l-.636-.622a2.89 2.89 0 0 1 0-4.134l.637-.622l-.011-.89a2.89 2.89 0 0 1 2.924-2.924l.89.01l.622-.636a2.89 2.89 0 0 1 4.134 0l-.715.698a1.89 1.89 0 0 0-2.704 0l-.92.944l-1.32-.016a1.89 1.89 0 0 0-1.911 1.912l.016 1.318l-.944.921a1.89 1.89 0 0 0 0 2.704l.944.92l-.016 1.32a1.89 1.89 0 0 0 1.912 1.911l1.318-.016l.921.944a1.89 1.89 0 0 0 2.704 0l.92-.944l1.32.016a1.89 1.89 0 0 0 1.911-1.912l-.016-1.318l.944-.921a1.89 1.89 0 0 0 0-2.704l-.944-.92l.016-1.32a1.89 1.89 0 0 0-1.912-1.911z'/%3E%3Cpath d='M7.001 11a1 1 0 1 1 2 0a1 1 0 0 1-2 0'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-bi\:twitter-x {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 16 16' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12.6.75h2.454l-5.36 6.142L16 15.25h-4.937l-3.867-5.07l-4.425 5.07H.316l5.733-6.57L0 .75h5.063l3.495 4.633L12.601.75Zm-.86 13.028h1.36L4.323 2.145H2.865z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-bi\:whatsapp {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 16 16' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M13.601 2.326A7.85 7.85 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.965L0 16l4.204-1.102a7.9 7.9 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93A7.9 7.9 0 0 0 13.6 2.326zM7.994 14.521a6.6 6.6 0 0 1-3.356-.92l-.24-.144l-2.494.654l.666-2.433l-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931a6.56 6.56 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592m3.615-4.934c-.197-.099-1.17-.578-1.353-.646c-.182-.065-.315-.099-.445.099c-.133.197-.513.646-.627.775c-.114.133-.232.148-.43.05c-.197-.1-.836-.308-1.592-.985c-.59-.525-.985-1.175-1.103-1.372c-.114-.198-.011-.304.088-.403c.087-.088.197-.232.296-.346c.1-.114.133-.198.198-.33c.065-.134.034-.248-.015-.347c-.05-.099-.445-1.076-.612-1.47c-.16-.389-.323-.335-.445-.34c-.114-.007-.247-.007-.38-.007a.73.73 0 0 0-.529.247c-.182.198-.691.677-.691 1.654s.71 1.916.81 2.049c.098.133 1.394 2.132 3.383 2.992c.47.205.84.326 1.129.418c.475.152.904.129 1.246.08c.38-.058 1.171-.48 1.338-.943c.164-.464.164-.86.114-.943c-.049-.084-.182-.133-.38-.232'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-bx\:bxs-food-menu {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath d='M3 2h2v20H3zm16 0H6v20h13c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2zm-1 10H9v-2h9v2zm0-4H9V6h9v2z' fill='currentColor'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-bx\:money-withdraw {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 15c-1.84 0-2-.86-2-1H8c0 .92.66 2.55 3 2.92V18h2v-1.08c2-.34 3-1.63 3-2.92c0-1.12-.52-3-4-3c-2 0-2-.63-2-1s.7-1 2-1s1.39.64 1.4 1h2A3 3 0 0 0 13 7.12V6h-2v1.09C9 7.42 8 8.71 8 10c0 1.12.52 3 4 3c2 0 2 .68 2 1s-.62 1-2 1'/%3E%3Cpath fill='currentColor' d='M5 2H2v2h2v17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V4h2V2zm13 18H6V4h12z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-bx\:transfer {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m15 12l5-4l-5-4v2.999H2v2h13zm7 3H9v-3l-5 4l5 4v-3h13z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-bxs\:message-alt-dots {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M19 2H5c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3.5l3.5 4l3.5-4H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2M9 12a2 2 0 1 1 .001-4.001A2 2 0 0 1 9 12m6 0a2 2 0 1 1 .001-4.001A2 2 0 0 1 15 12'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-bxs\:message-square-detail {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6m-2 13H7v-2h7zm3-4H7V9h10z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-carbon\:application-virtual {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M17 19h4v4h-4zm-6 0h4v4h-4zm6 6h4v4h-4zm-6 0h4v4h-4z'/%3E%3Cpath fill='currentColor' d='M24.5 25H24v-2h.5a5.496 5.496 0 0 0 .377-10.98l-.836-.056l-.09-.834a7.998 7.998 0 0 0-15.902 0l-.09.834l-.836.057A5.496 5.496 0 0 0 7.5 23H8v2h-.5a7.496 7.496 0 0 1-1.322-14.876a10 10 0 0 1 19.644 0A7.496 7.496 0 0 1 24.5 25'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-carbon\:close-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M16 2C8.2 2 2 8.2 2 16s6.2 14 14 14s14-6.2 14-14S23.8 2 16 2m0 26C9.4 28 4 22.6 4 16S9.4 4 16 4s12 5.4 12 12s-5.4 12-12 12'/%3E%3Cpath fill='currentColor' d='M21.4 23L16 17.6L10.6 23L9 21.4l5.4-5.4L9 10.6L10.6 9l5.4 5.4L21.4 9l1.6 1.6l-5.4 5.4l5.4 5.4z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-carbon\:heat-map-stocks {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M27 3H5a2 2 0 0 0-2 2v22a2 2 0 0 0 2 2h22a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M9 21H5v-4h4Zm2 2h4v4h-4Zm6 0h4v4h-4Zm0-8v-4h4v4Zm4-6h-4V5h4Zm2 2h4v4h-4Zm-8-6v10H5V5Zm8 22V17h4v10Z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-carbon\:ibm-watson-machine-learning {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M3.6 22.5c-1-2-1.6-4.2-1.6-6.5C2 8.3 8.3 2 16 2v2C9.4 4 4 9.4 4 16c0 2 .5 3.8 1.4 5.5zM28 16c0 6.6-5.4 12-12 12c-2.9 0-5.6-1-7.7-2.8l5.7-5.7l-1.4-1.5l-6.5 6.5c-.4.4-.4 1 0 1.4C8.7 28.5 12.3 30 16 30c7.7 0 14-6.3 14-14z'/%3E%3Cpath fill='currentColor' d='M18 25c-.1 0-.3 0-.4-.1c-.3-.1-.6-.4-.6-.8l-.7-5l2-.3l.4 3.3l2.2-1.7V15c0-.3.1-.5.3-.7l3.2-3.2c.9-.9 1.5-2.2 1.5-3.5V6h-1.5c-1.3 0-2.6.5-3.5 1.5l-3.2 3.2c-.2.2-.4.3-.7.3h-5.5l-1.7 2.2l3.3.4l-.3 2l-5-.7c-.4 0-.7-.3-.8-.6s-.1-.7.1-1l3-4q.45-.3.9-.3h5.6l3-3c1.3-1.3 3.1-2 4.9-2H26c1.1 0 2 .9 2 2v1.5c0 1.9-.7 3.6-2 4.9l-3 3V21c0 .3-.1.6-.4.8l-4 3c-.2.1-.4.2-.6.2'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-carbon\:machine-learning-model {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M27 19c1.654 0 3-1.346 3-3s-1.346-3-3-3a2.995 2.995 0 0 0-2.816 2h-5.77l7.3-7.3c.392.187.824.3 1.286.3c1.654 0 3-1.346 3-3s-1.346-3-3-3s-3 1.346-3 3c0 .462.114.894.3 1.285L16 14.586V8c0-1.102.897-2 2-2h2V4h-2c-1.2 0-2.266.543-3 1.382A3.98 3.98 0 0 0 12 4h-1c-4.962 0-9 4.037-9 9v6c0 4.963 4.038 9 9 9h1c1.2 0 2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382h2v-2h-2c-1.103 0-2-.897-2-2v-6.586l8.3 8.301c-.187.391-.3.823-.3 1.285c0 1.655 1.346 3 3 3s3-1.345 3-3s-1.346-3-3-3a2.96 2.96 0 0 0-1.285.301l-7.301-7.3h5.77A2.995 2.995 0 0 0 27 19m0-4a1 1 0 0 1 0 2a1 1 0 0 1 0-2m0-11a1.001 1.001 0 0 1 0 2a1 1 0 0 1 0-2m-13 8h-2v2h2v4h-2c-1.654 0-3 1.346-3 3v2h2v-2a1 1 0 0 1 1-1h2v4c0 1.103-.897 2-2 2h-1c-3.52 0-6.432-2.613-6.92-6H6v-2H4v-4h3c1.654 0 3-1.346 3-3V9H8v2a1 1 0 0 1-1 1H4.08c.488-3.387 3.4-6 6.92-6h1c1.103 0 2 .898 2 2zm14 15a1.001 1.001 0 0 1-2 0c0-.551.449-1 1-1s1 .449 1 1'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-carbon\:user-avatar-filled {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' d='M8.007 24.93A4.996 4.996 0 0 1 13 20h6a4.996 4.996 0 0 1 4.993 4.93a11.94 11.94 0 0 1-15.986 0M20.5 12.5A4.5 4.5 0 1 1 16 8a4.5 4.5 0 0 1 4.5 4.5'/%3E%3Cpath fill='currentColor' d='M26.749 24.93A13.99 13.99 0 1 0 2 16a13.9 13.9 0 0 0 3.251 8.93l-.02.017c.07.084.15.156.222.239c.09.103.187.2.28.3q.418.457.87.87q.14.124.28.242q.48.415.99.782c.044.03.084.069.128.1v-.012a13.9 13.9 0 0 0 16 0v.012c.044-.031.083-.07.128-.1q.51-.368.99-.782q.14-.119.28-.242q.451-.413.87-.87c.093-.1.189-.197.28-.3c.071-.083.152-.155.222-.24ZM16 8a4.5 4.5 0 1 1-4.5 4.5A4.5 4.5 0 0 1 16 8M8.007 24.93A4.996 4.996 0 0 1 13 20h6a4.996 4.996 0 0 1 4.993 4.93a11.94 11.94 0 0 1-15.986 0'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-carbon\:user-avatar-filled-alt {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M16 8a5 5 0 1 0 5 5a5 5 0 0 0-5-5'/%3E%3Cpath fill='currentColor' d='M16 2a14 14 0 1 0 14 14A14.016 14.016 0 0 0 16 2m7.993 22.926A5 5 0 0 0 19 20h-6a5 5 0 0 0-4.992 4.926a12 12 0 1 1 15.985 0'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ci\:linkedin {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M13 21H9V9h4v2a4.618 4.618 0 0 1 3.525-1.763A4.5 4.5 0 0 1 21 13.75V21h-4v-6.75a2.265 2.265 0 0 0-2.247-1.944A1.815 1.815 0 0 0 13 14.25V21Zm-6 0H3V9h4v12ZM5 7a2 2 0 1 1 0-4a2 2 0 0 1 0 4Z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ci\:notification-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 22a2 2 0 0 1-2-2h4a2 2 0 0 1-2 2Zm8-3H4v-2l2-1v-5.5c0-3.462 1.421-5.707 4-6.32V2h4v2.18c2.579.612 4 2.856 4 6.32V16l2 1v2ZM12 5.75A3.6 3.6 0 0 0 8.875 7.2A5.692 5.692 0 0 0 8 10.5V17h8v-6.5a5.693 5.693 0 0 0-.875-3.3A3.6 3.6 0 0 0 12 5.75Z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-cil\:newspaper {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M88 72v316a20 20 0 0 1-40 0V152H16v236a52.06 52.06 0 0 0 52 52h376a52.06 52.06 0 0 0 52-52V72Zm376 316a20.023 20.023 0 0 1-20 20H116a51.7 51.7 0 0 0 4-20V104h344Z'/%3E%3Cpath fill='currentColor' d='M296 136H152v160h144Zm-32 128h-80v-96h80Zm64-128h104v32H328zm0 64h104v32H328zm0 64h104v32H328z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-clarity\:avatar-solid {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 36 36' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M30.61 24.52a17.16 17.16 0 0 0-25.22 0a1.5 1.5 0 0 0-.39 1v6A1.5 1.5 0 0 0 6.5 33h23a1.5 1.5 0 0 0 1.5-1.5v-6a1.5 1.5 0 0 0-.39-.98' class='clr-i-solid clr-i-solid-path-1'/%3E%3Ccircle cx='18' cy='10' r='7' fill='currentColor' class='clr-i-solid clr-i-solid-path-2'/%3E%3Cpath fill='none' d='M0 0h36v36H0z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-clarity\:avatar-solid-alerted {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 36 36' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M30.61 24.52a17.16 17.16 0 0 0-25.22 0a1.5 1.5 0 0 0-.39 1v6A1.5 1.5 0 0 0 6.5 33h23a1.5 1.5 0 0 0 1.5-1.5v-6a1.5 1.5 0 0 0-.39-.98' class='clr-i-solid--alerted clr-i-solid-path-1--alerted'/%3E%3Cpath fill='currentColor' d='M18 17a7 7 0 0 0 4.45-1.6h-.22A3.68 3.68 0 0 1 19 9.89l3.16-5.47A7 7 0 1 0 18 17' class='clr-i-solid--alerted clr-i-solid-path-2--alerted'/%3E%3Cpath fill='currentColor' d='M26.85 1.14L21.13 11a1.28 1.28 0 0 0 1.1 2h11.45a1.28 1.28 0 0 0 1.1-2l-5.72-9.86a1.28 1.28 0 0 0-2.21 0' class='clr-i-solid--alerted clr-i-solid-path-3--alerted clr-i-alert'/%3E%3Cpath fill='none' d='M0 0h36v36H0z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-clarity\:notification-line {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 36 36' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M32.51 27.83A14.4 14.4 0 0 1 30 24.9a12.6 12.6 0 0 1-1.35-4.81v-4.94A10.81 10.81 0 0 0 19.21 4.4V3.11a1.33 1.33 0 1 0-2.67 0v1.31a10.81 10.81 0 0 0-9.33 10.73v4.94a12.6 12.6 0 0 1-1.35 4.81a14.4 14.4 0 0 1-2.47 2.93a1 1 0 0 0-.34.75v1.36a1 1 0 0 0 1 1h27.8a1 1 0 0 0 1-1v-1.36a1 1 0 0 0-.34-.75M5.13 28.94a16.2 16.2 0 0 0 2.44-3a14.2 14.2 0 0 0 1.65-5.85v-4.94a8.74 8.74 0 1 1 17.47 0v4.94a14.2 14.2 0 0 0 1.65 5.85a16.2 16.2 0 0 0 2.44 3Z' class='clr-i-outline clr-i-outline-path-1'/%3E%3Cpath fill='currentColor' d='M18 34.28A2.67 2.67 0 0 0 20.58 32h-5.26A2.67 2.67 0 0 0 18 34.28' class='clr-i-outline clr-i-outline-path-2'/%3E%3Cpath fill='none' d='M0 0h36v36H0z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-clarity\:notification-solid {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 36 36' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m32.85 28.13l-.34-.3A14.4 14.4 0 0 1 30 24.9a12.6 12.6 0 0 1-1.35-4.81v-4.94A10.81 10.81 0 0 0 19.21 4.4V3.11a1.33 1.33 0 1 0-2.67 0v1.31a10.81 10.81 0 0 0-9.33 10.73v4.94a12.6 12.6 0 0 1-1.35 4.81a14.4 14.4 0 0 1-2.47 2.93l-.34.3v2.82h29.8Z' class='clr-i-solid clr-i-solid-path-1'/%3E%3Cpath fill='currentColor' d='M15.32 32a2.65 2.65 0 0 0 5.25 0Z' class='clr-i-solid clr-i-solid-path-2'/%3E%3Cpath fill='none' d='M0 0h36v36H0z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-cryptocurrency-color\:usdt {
  background: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='16' cy='16' r='16' fill='%2326A17B'/%3E%3Cpath fill='%23FFF' d='M17.922 17.383v-.002c-.11.008-.677.042-1.942.042c-1.01 0-1.721-.03-1.971-.042v.003c-3.888-.171-6.79-.848-6.79-1.658s2.902-1.486 6.79-1.66v2.644c.254.018.982.061 1.988.061c1.207 0 1.812-.05 1.925-.06v-2.643c3.88.173 6.775.85 6.775 1.658c0 .81-2.895 1.485-6.775 1.657m0-3.59v-2.366h5.414V7.819H8.595v3.608h5.414v2.365c-4.4.202-7.709 1.074-7.709 2.118s3.309 1.915 7.709 2.118v7.582h3.913v-7.584c4.393-.202 7.694-1.073 7.694-2.116s-3.301-1.914-7.694-2.117'/%3E%3C/g%3E%3C/svg%3E")
    no-repeat;
  background-size: 100% 100%;
  background-color: transparent;
  width: 1em;
  height: 1em;
}
.i-cryptocurrency\:abt {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M16 32C7.163 32 0 24.837 0 16S7.163 0 16 0s16 7.163 16 16s-7.163 16-16 16M6.5 10.487v11.026L16 27l9.5-5.487V10.487L16 5zm.912 9.97v-8.913l5.743 3.323l-1.933 3.385zm.457.791l3.664-2.12l4.038 2.313v4.256zm16.719-9.673v8.85l-3.76-2.175l-1.932-3.382zm-.43-.808l-5.715 3.307l-1.96-3.431V6.334zm-6.047 4.555l1.153 2.023L16.939 16zm-.453-.794l-1.175.68v-2.74zm-4.864 2.815l1.151-2.02l1.17.677zm-.346 1.256l3.123-1.807v3.595L12.448 18.6zm-4.58-7.847l7.703-4.449v4.334l-1.962 3.436l-5.74-3.321zm16.29 10.481l-7.675 4.433V21.47l4.04-2.34zm-4.548-2.632l-3.127 1.813v-3.622zm-5.212-4.071l1.173-2.057v2.735z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-eos-icons-loading {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 2A10 10 0 1 0 22 12A10 10 0 0 0 12 2Zm0 18a8 8 0 1 1 8-8A8 8 0 0 1 12 20Z' opacity='.5'/%3E%3Cpath fill='currentColor' d='M20 12h2A10 10 0 0 0 12 2V4A8 8 0 0 1 20 12Z'%3E%3CanimateTransform attributeName='transform' dur='1s' from='0 12 12' repeatCount='indefinite' to='360 12 12' type='rotate'/%3E%3C/path%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ep\:document {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 1024 1024' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M832 384H576V128H192v768h640zm-26.496-64L640 154.496V320zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m160 448h384v64H320zm0-192h160v64H320zm0 384h384v64H320z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ep\:service {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 1024 1024' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M864 409.6a192 192 0 0 1-37.888 349.44A256.064 256.064 0 0 1 576 960h-96a32 32 0 1 1 0-64h96a192.06 192.06 0 0 0 181.12-128H736a32 32 0 0 1-32-32V416a32 32 0 0 1 32-32h32c10.368 0 20.544.832 30.528 2.432a288 288 0 0 0-573.056 0A193 193 0 0 1 256 384h32a32 32 0 0 1 32 32v320a32 32 0 0 1-32 32h-32a192 192 0 0 1-96-358.4a352 352 0 0 1 704 0M256 448a128 128 0 1 0 0 256zm640 128a128 128 0 0 0-128-128v256a128 128 0 0 0 128-128'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ep\:trend-charts {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 1024 1024' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M128 896V128h768v768zm291.712-327.296l128 102.4l180.16-201.792l-47.744-42.624l-139.84 156.608l-128-102.4l-180.16 201.792l47.744 42.624zM816 352a48 48 0 1 0-96 0a48 48 0 0 0 96 0'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-fa6-brands\:square-whatsapp {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 448 512' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M92.1 254.6c0 24.9 7 49.2 20.2 70.1l3.1 5l-13.3 48.6l49.9-13.1l4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8c0-35.2-15.2-68.3-40.1-93.2c-25-25-58-38.7-93.2-38.7c-72.7 0-131.8 59.1-131.9 131.8M274.8 330c-12.6 1.9-22.4.9-47.5-9.9c-36.8-15.9-61.8-51.5-66.9-58.7c-.4-.6-.7-.9-.8-1.1c-2-2.6-16.2-21.5-16.2-41c0-18.4 9-27.9 13.2-32.3c.3-.3.5-.5.7-.8c3.6-4 7.9-5 10.6-5c2.6 0 5.3 0 7.6.1h.8c2.3 0 5.2 0 8.1 6.8c1.2 2.9 3 7.3 4.9 11.8c3.3 8 6.7 16.3 7.3 17.6c1 2 1.7 4.3.3 6.9c-3.4 6.8-6.9 10.4-9.3 13c-3.1 3.2-4.5 4.7-2.3 8.6c15.3 26.3 30.6 35.4 53.9 47.1c4 2 6.3 1.7 8.6-1c2.3-2.6 9.9-11.6 12.5-15.5c2.6-4 5.3-3.3 8.9-2s23.1 10.9 27.1 12.9c.8.4 1.5.7 2.1 1c2.8 1.4 4.7 2.3 5.5 3.6c.9 1.9.9 9.9-2.4 19.1c-3.3 9.3-19.1 17.7-26.7 18.8M448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64zM148.1 393.9L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5c29.9 30 47.9 69.8 47.9 112.2c0 87.4-72.7 158.5-160.1 158.5c-26.6 0-52.7-6.7-75.8-19.3'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-fa6-solid\:filter {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M3.9 54.9C10.5 40.9 24.5 32 40 32h432c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L320 320.9V448c0 12.1-6.8 23.2-17.7 28.6s-23.8 4.3-33.5-3l-64-48c-8.1-6-12.8-15.5-12.8-25.6v-79.1L9 97.3C-.7 85.4-2.8 68.8 3.9 54.9'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-fa6-solid\:money-bill-wave {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 576 512' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M0 112.5v309.8c0 18 10.1 35 27 41.3c87 32.5 174 10.3 261-11.9c79.8-20.3 159.6-40.7 239.3-18.9c23 6.3 48.7-9.5 48.7-33.4V89.5c0-18-10.1-35-27-41.3c-87-32.3-174-10.1-261 12.1c-79.8 20.3-159.6 40.6-239.3 18.8C25.6 72.8 0 88.6 0 112.5M288 352c-44.2 0-80-43-80-96s35.8-96 80-96s80 43 80 96s-35.8 96-80 96m-224 0c35.3 0 64 28.7 64 64H64zm64-208c0 35.3-28.7 64-64 64v-64zm384 160v64h-64c0-35.3 28.7-64 64-64M448 96h64v64c-35.3 0-64-28.7-64-64'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-flowbite\:share-nodes-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-width='2' d='M7.926 10.898L15 7.727m-7.074 5.39L15 16.29M8 12a2.5 2.5 0 1 1-5 0a2.5 2.5 0 0 1 5 0Zm12 5.5a2.5 2.5 0 1 1-5 0a2.5 2.5 0 0 1 5 0Zm0-11a2.5 2.5 0 1 1-5 0a2.5 2.5 0 0 1 5 0Z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-fluent\:arrow-trending-lines-20-regular {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 20 20' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M14.5 2a.5.5 0 0 0 0 1h1.793L11.5 7.793L8.854 5.146a.5.5 0 0 0-.708 0l-5 5a.5.5 0 0 0 .708.708L8.5 6.207l2.646 2.647a.5.5 0 0 0 .708 0L17 3.707V5.5a.5.5 0 0 0 1 0v-3a.5.5 0 0 0-.5-.5zm1 7a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 1 0v-8a.5.5 0 0 0-.5-.5m-8 2a.5.5 0 0 0-.5.5v6a.5.5 0 0 0 1 0v-6a.5.5 0 0 0-.5-.5m3.5 2.5a.5.5 0 0 1 1 0v4a.5.5 0 0 1-1 0zm-8 1a.5.5 0 0 1 1 0v3a.5.5 0 0 1-1 0z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-fluent\:calendar-24-regular {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M17.75 3A3.25 3.25 0 0 1 21 6.25v11.5A3.25 3.25 0 0 1 17.75 21H6.25A3.25 3.25 0 0 1 3 17.75V6.25A3.25 3.25 0 0 1 6.25 3zm1.75 5.5h-15v9.25c0 .966.784 1.75 1.75 1.75h11.5a1.75 1.75 0 0 0 1.75-1.75zm-11.75 6a1.25 1.25 0 1 1 0 2.5a1.25 1.25 0 0 1 0-2.5m4.25 0a1.25 1.25 0 1 1 0 2.5a1.25 1.25 0 0 1 0-2.5m-4.25-4a1.25 1.25 0 1 1 0 2.5a1.25 1.25 0 0 1 0-2.5m4.25 0a1.25 1.25 0 1 1 0 2.5a1.25 1.25 0 0 1 0-2.5m4.25 0a1.25 1.25 0 1 1 0 2.5a1.25 1.25 0 0 1 0-2.5m1.5-6H6.25A1.75 1.75 0 0 0 4.5 6.25V7h15v-.75a1.75 1.75 0 0 0-1.75-1.75'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-fluent\:password-16-filled {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 16 16' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M1 5.5A2.5 2.5 0 0 1 3.5 3h9A2.5 2.5 0 0 1 15 5.5v4a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 9.5zm4.146.646l-.646.647l-.646-.647a.5.5 0 1 0-.708.708l.647.646l-.647.646a.5.5 0 1 0 .708.708l.646-.647l.646.647a.5.5 0 1 0 .708-.708L5.207 7.5l.647-.646a.5.5 0 1 0-.708-.708m4 0l-.646.647l-.646-.647a.5.5 0 1 0-.708.708l.647.646l-.647.646a.5.5 0 1 0 .708.708l.646-.647l.646.647a.5.5 0 1 0 .708-.708L9.207 7.5l.647-.646a.5.5 0 0 0-.708-.708M11 8.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 0-1h-1a.5.5 0 0 0-.5.5'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-fluent\:people-community-20-filled {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 20 20' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M7.879 7.5c.504-.61 1.267-1 2.121-1s1.617.39 2.121 1a2.75 2.75 0 1 1-4.243 0m5.871 1.75c0-.632-.156-1.228-.432-1.75H17.5A1.5 1.5 0 0 1 19 9v.5c0 1.587-1.206 3.212-3.315 3.784A2.5 2.5 0 0 0 13.5 12h-.95a3.74 3.74 0 0 0 1.2-2.75M13.5 13a1.496 1.496 0 0 1 1.5 1.5v.5c0 1.971-1.86 4-5 4s-5-2.029-5-4v-.5A1.496 1.496 0 0 1 6.5 13zM1 9.5c0 1.587 1.206 3.212 3.315 3.784A2.5 2.5 0 0 1 6.5 12h.95a3.74 3.74 0 0 1-1.2-2.75c0-.632.156-1.228.433-1.75H2.5A1.5 1.5 0 0 0 1 9zm7.75-5.75a2.75 2.75 0 1 0-5.5 0a2.75 2.75 0 0 0 5.5 0m8 0a2.75 2.75 0 1 0-5.5 0a2.75 2.75 0 0 0 5.5 0'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-fluent\:people-team-20-filled {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 20 20' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12.5 4.5a2.5 2.5 0 1 1-5 0a2.5 2.5 0 0 1 5 0m5 .5a2 2 0 1 1-4 0a2 2 0 0 1 4 0m-13 2a2 2 0 1 0 0-4a2 2 0 0 0 0 4M6 9.25C6 8.56 6.56 8 7.25 8h5.5c.69 0 1.25.56 1.25 1.25V14a4 4 0 0 1-8 0zm-1 0c0-.463.14-.892.379-1.25H3.25C2.56 8 2 8.56 2 9.25V13a3 3 0 0 0 3.404 2.973A5 5 0 0 1 5 14zM15 14c0 .7-.144 1.368-.404 1.973Q14.794 16 15 16a3 3 0 0 0 3-3V9.25C18 8.56 17.44 8 16.75 8h-2.129c.24.358.379.787.379 1.25z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-fluent\:people-team-24-filled {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M14.754 10c.966 0 1.75.784 1.75 1.75v4.749a4.501 4.501 0 0 1-9.002 0V11.75c0-.966.783-1.75 1.75-1.75zm-7.623 0a2.7 2.7 0 0 0-.62 1.53l-.01.22v4.749c0 .847.192 1.649.534 2.365Q6.539 18.999 6 19a4 4 0 0 1-4-4.001V11.75a1.75 1.75 0 0 1 1.606-1.744L3.75 10zm9.744 0h3.375c.966 0 1.75.784 1.75 1.75V15a4 4 0 0 1-5.03 3.866c.3-.628.484-1.32.525-2.052l.009-.315V11.75c0-.665-.236-1.275-.63-1.75M12 3a3 3 0 1 1 0 6a3 3 0 0 1 0-6m6.5 1a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0-5m-13 0a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0-5'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-fluent\:people-team-28-regular {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 28 28' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M17.254 11a2.25 2.25 0 0 1 2.25 2.25v6.249a5.501 5.501 0 0 1-11.002 0V13.25a2.25 2.25 0 0 1 2.25-2.25zm0 1.5h-6.502a.75.75 0 0 0-.75.75v6.249a4.001 4.001 0 0 0 8.002 0V13.25a.75.75 0 0 0-.75-.75M4.25 11h4.156a3.24 3.24 0 0 0-.817 1.5H4.25a.75.75 0 0 0-.75.75v5.249a3 3 0 0 0 4.238 2.735c.133.49.324.956.564 1.392A4.5 4.5 0 0 1 2 18.499V13.25A2.25 2.25 0 0 1 4.25 11m19.5 0A2.25 2.25 0 0 1 26 13.25v5.25a4.5 4.5 0 0 1-6.298 4.127l.056-.102c.214-.406.387-.837.511-1.289A3 3 0 0 0 24.5 18.5v-5.25a.75.75 0 0 0-.749-.75h-3.333A3.24 3.24 0 0 0 19.6 11zM14 3a3.5 3.5 0 1 1 0 7a3.5 3.5 0 0 1 0-7m8.003 1a3 3 0 1 1 0 6a3 3 0 0 1 0-6M5.997 4a3 3 0 1 1 0 6a3 3 0 0 1 0-6M14 4.5a2 2 0 1 0 0 4a2 2 0 0 0 0-4m8.003 1a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0-3m-16.006 0a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0-3'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-fluent\:people-team-32-filled {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M16 11a4 4 0 1 0 0-8a4 4 0 0 0 0 8m-6-3.5a3.5 3.5 0 1 1-7 0a3.5 3.5 0 0 1 7 0m19 0a3.5 3.5 0 1 1-7 0a3.5 3.5 0 0 1 7 0M9.377 13a3.98 3.98 0 0 0-.877 2.5V23c0 1.235.298 2.4.827 3.427A5 5 0 0 1 2 22v-6.5A2.5 2.5 0 0 1 4.5 13zm13.296 13.427A7.5 7.5 0 0 0 23.5 23v-7.5c0-.946-.328-1.815-.877-2.5H27.5a2.5 2.5 0 0 1 2.5 2.5V22a5 5 0 0 1-7.327 4.427M12.5 13a2.5 2.5 0 0 0-2.5 2.5V23a6 6 0 0 0 12 0v-7.5a2.5 2.5 0 0 0-2.5-2.5z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-healthicons\:i-exam-qualification {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 48 48' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='currentColor'%3E%3Cpath d='M20 18.6L17.75 24h4.5z'/%3E%3Cpath fill-rule='evenodd' d='M38 15L28 4H14a4 4 0 0 0-4 4v32a4 4 0 0 0 4 4h20a4 4 0 0 0 4-4zm-18 0a1 1 0 0 1 .923.615l5 12a1 1 0 0 1-1.846.77L23.083 26h-6.166l-.994 2.385a1 1 0 0 1-1.846-.77l5-12A1 1 0 0 1 20 15m-5 17a1 1 0 1 0 0 2h18a1 1 0 1 0 0-2zm-1 5a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H15a1 1 0 0 1-1-1m17-15a1 1 0 1 0-2 0v2h-2a1 1 0 1 0 0 2h2v2a1 1 0 1 0 2 0v-2h2a1 1 0 1 0 0-2h-2zM28 7l7 8h-6a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3E%3Cpath fill-rule='evenodd' d='M25.923 27.614v.001q.043.104.062.209a3 3 0 0 1-1.2-.8q-.086.018-.17.053a1 1 0 0 0-.538 1.306L23.083 26h-6.166l-.994 2.384a1 1 0 0 1-1.846-.769l.993-2.384l4.007-9.616a1 1 0 0 1 1.846 0l.923 2.214v.002l2.25 5.4v.001zm-.077-5.384l-3.077-7.384a3 3 0 0 0-5.538 0l-5 12A3 3 0 0 0 12 27.93V8a2 2 0 0 1 2-2h12.268c-.172.298-.268.64-.268 1v7a3 3 0 0 0 3 3h6a2 2 0 0 0 1-.268V25a3 3 0 0 0-3-3a3 3 0 1 0-6 0a3 3 0 0 0-1.154.23m.77 1.847A1 1 0 0 0 27 26h2v2a1 1 0 1 0 2 0v-2h2a1 1 0 1 0 0-2h-2v-2a1 1 0 1 0-2 0v2h-2a1 1 0 0 0-.385.077m.884 5.582q.12.18.264.341h-.527q.144-.162.263-.341m-5.27-.505c.134.319.315.602.533.846zm.533.846h-5.526c.218-.244.4-.527.532-.846L18.25 28h3.5l.48 1.154M13.34 30.5A3 3 0 0 1 12 28.067V33c0-1.043.533-1.962 1.34-2.499m-.576 4.5a3 3 0 0 1-.764-2V37c0-.768.29-1.468.764-1.999m19.472-5c.475-.53.764-1.232.764-2a3 3 0 0 0 3-3v8a3 3 0 0 0-3-3zm-2.407 6H33a3 3 0 0 0 3-3v7a2 2 0 0 1-2 2H14a2 2 0 0 1-2-2v-2.999A3 3 0 0 0 15 40h12a3 3 0 0 0 2.83-4m-2.826-2H33a1 1 0 1 0 0-2H15a1 1 0 1 0 0 2h12.003M38 15v25a4 4 0 0 1-4 4H14a4 4 0 0 1-4-4V8a4 4 0 0 1 4-4h14zM28 7l7 8h-6a1 1 0 0 1-1-1zm-5.75 17h-4.5L20 18.6zm1.827 4.385v-.002zM15 36a1 1 0 1 0 0 2h12a1 1 0 1 0 0-2z' clip-rule='evenodd'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-heroicons\:banknotes-16-solid {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 16 16' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M1 3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1zm9 3a2 2 0 1 1-4 0a2 2 0 0 1 4 0m-6.25-.75a.75.75 0 1 0 0 1.5a.75.75 0 0 0 0-1.5M11.5 6A.75.75 0 1 1 13 6a.75.75 0 0 1-1.5 0' clip-rule='evenodd'/%3E%3Cpath d='M13 11.75a.75.75 0 0 0-1.5 0v.179c0 .15-.138.28-.306.255A65 65 0 0 0 1.75 11.5a.75.75 0 0 0 0 1.5c3.135 0 6.215.228 9.227.668A1.764 1.764 0 0 0 13 11.928z'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-hugeicons\:globe-02 {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' color='currentColor'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M8 12c0 6 4 10 4 10s4-4 4-10s-4-10-4-10s-4 4-4 10m13 3H3m18-6H3'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic-round-keyboard-arrow-right {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M9.29 15.88L13.17 12L9.29 8.12a.996.996 0 1 1 1.41-1.41l4.59 4.59c.39.39.39 1.02 0 1.41L10.7 17.3a.996.996 0 0 1-1.41 0c-.38-.39-.39-1.03 0-1.42'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:baseline-access-alarms {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m22 5.7l-4.6-3.9l-1.3 1.5l4.6 3.9zM7.9 3.4L6.6 1.9L2 5.7l1.3 1.5zM12.5 8H11v6l4.7 2.9l.8-1.2l-4-2.4zM12 4c-5 0-9 4-9 9s4 9 9 9s9-4 9-9s-4-9-9-9m0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7s7 3.1 7 7s-3.1 7-7 7'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:baseline-access-time-filled {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2m3.3 14.71L11 12.41V7h2v4.59l3.71 3.71z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:baseline-account-balance {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M4 10h3v7H4zm6.5 0h3v7h-3zM2 19h20v3H2zm15-9h3v7h-3zm-5-9L2 6v2h20V6z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:baseline-arrow-forward-ios,
.i-ic\:outline-arrow-forward-ios,
.i-ic\:sharp-arrow-forward-ios {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M6.23 20.23L8 22l10-10L8 2L6.23 3.77L14.46 12z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:baseline-auto-graph {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M14.06 9.94L12 9l2.06-.94L15 6l.94 2.06L18 9l-2.06.94L15 12zM4 14l.94-2.06L7 11l-2.06-.94L4 8l-.94 2.06L1 11l2.06.94zm4.5-5l1.09-2.41L12 5.5L9.59 4.41L8.5 2L7.41 4.41L5 5.5l2.41 1.09zm-4 11.5l6-6.01l4 4L23 8.93l-1.41-1.41l-7.09 7.97l-4-4L3 19z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:baseline-facebook {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:baseline-group {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3s1.34 3 3 3m-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5S5 6.34 5 8s1.34 3 3 3m0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5m8 0c-.29 0-.62.02-.97.05c1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:baseline-hive {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m13.79 8l1.8-3l-1.8-3h-3.58l-1.8 3l1.8 3zm-3.58 1l-1.8 3l1.8 3h3.58l1.8-3l-1.8-3zm6.24 2.51h3.59l1.79-3l-1.79-3h-3.59l-1.8 3zm3.59 1h-3.59l-1.8 3l1.8 3h3.59l1.79-3zm-12.49-1l1.8-3l-1.8-3H3.96l-1.79 3l1.79 3zm0 1H3.96l-1.79 3l1.79 3h3.59l1.8-3zM10.21 16l-1.8 3l1.8 3h3.58l1.8-3l-1.8-3z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:baseline-language {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2m6.93 6h-2.95a15.7 15.7 0 0 0-1.38-3.56A8.03 8.03 0 0 1 18.92 8M12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96M4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56A8 8 0 0 1 5.08 16m2.95-8H5.08a8 8 0 0 1 4.33-3.56A15.7 15.7 0 0 0 8.03 8M12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96M14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2m.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95a8.03 8.03 0 0 1-4.33 3.56M16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:baseline-local-police {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12c5.16-1.26 9-6.45 9-12V5zm2.5 11.59l.9 3.88l-3.4-2.05l-3.4 2.05l.9-3.87l-3-2.59l3.96-.34L12 6.02l1.54 3.64l3.96.34z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:baseline-newspaper {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m22 3l-1.67 1.67L18.67 3L17 4.67L15.33 3l-1.66 1.67L12 3l-1.67 1.67L8.67 3L7 4.67L5.33 3L3.67 4.67L2 3v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2zM11 19H4v-6h7zm9 0h-7v-2h7zm0-4h-7v-2h7zm0-4H4V8h16z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:baseline-play-arrow,
.i-ic\:sharp-play-arrow {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:baseline-repeat-on {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2M7 7h10v3l4-4l-4-4v3H5v6h2zm10 10H7v-3l-4 4l4 4v-3h12v-6h-2z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:baseline-share {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81c1.66 0 3-1.34 3-3s-1.34-3-3-3s-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65c0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92s-1.31-2.92-2.92-2.92'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:outline-app-shortcut {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2zM7 3h10v1H7zm10 18H7v-1h10zm3.38-11.38L21 11l.62-1.38L23 9l-1.38-.62L21 7l-.62 1.38L19 9z'/%3E%3Cpath fill='currentColor' d='m16 8l-1.25 2.75L12 12l2.75 1.25L16 16l1.25-2.75L20 12l-2.75-1.25zm5 5l-.62 1.38L19 15l1.38.62L21 17l.62-1.38L23 15l-1.38-.62z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:outline-currency-exchange {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12.89 11.1c-1.78-.59-2.64-.96-2.64-1.9c0-1.02 1.11-1.39 1.81-1.39c1.31 0 1.79.99 1.9 1.34l1.58-.67c-.15-.45-.82-1.92-2.54-2.24V5h-2v1.26c-2.48.56-2.49 2.86-2.49 2.96c0 2.27 2.25 2.91 3.35 3.31c1.58.56 2.28 1.07 2.28 2.03c0 1.13-1.05 1.61-1.98 1.61c-1.82 0-2.34-1.87-2.4-2.09l-1.66.67c.63 2.19 2.28 2.78 2.9 2.96V19h2v-1.24c.4-.09 2.9-.59 2.9-3.22c0-1.39-.61-2.61-3.01-3.44M3 21H1v-6h6v2H4.52c1.61 2.41 4.36 4 7.48 4a9 9 0 0 0 9-9h2c0 6.08-4.92 11-11 11c-3.72 0-7.01-1.85-9-4.67zm-2-9C1 5.92 5.92 1 12 1c3.72 0 7.01 1.85 9 4.67V3h2v6h-6V7h2.48C17.87 4.59 15.12 3 12 3a9 9 0 0 0-9 9z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:outline-keyboard-arrow-right,
.i-ic\:sharp-keyboard-arrow-right {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M8.59 16.59L13.17 12L8.59 7.41L10 6l6 6l-6 6z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:outline-message {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M4 4h16v12H5.17L4 17.17zm0-2c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm2 10h12v2H6zm0-3h12v2H6zm0-3h12v2H6z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:outline-people-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5M4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5S5.5 6.57 5.5 8.5S7.07 12 9 12m0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7m7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44M15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35c.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:outline-play-circle-filled-white {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8s8 3.59 8 8s-3.59 8-8 8m-2-3.5l6-4.5l-6-4.5z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:outline-radio-button-unchecked,
.i-ic\:twotone-radio-button-unchecked {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2m0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8s8 3.58 8 8s-3.58 8-8 8'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:outline-stacked-line-chart {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m2 19.99l7.5-7.51l4 4l7.09-7.97L22 9.92l-8.5 9.56l-4-4l-6 6.01zm1.5-4.5l6-6.01l4 4L22 3.92l-1.41-1.41l-7.09 7.97l-4-4L2 13.99z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:outline-support-agent {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M21 12.22C21 6.73 16.74 3 12 3c-4.69 0-9 3.65-9 9.28c-.6.34-1 .98-1 1.72v2c0 1.1.9 2 2 2h1v-6.1c0-3.87 3.13-7 7-7s7 3.13 7 7V19h-8v2h8c1.1 0 2-.9 2-2v-1.22c.59-.31 1-.92 1-1.64v-2.3c0-.7-.41-1.31-1-1.62'/%3E%3Ccircle cx='9' cy='13' r='1' fill='currentColor'/%3E%3Ccircle cx='15' cy='13' r='1' fill='currentColor'/%3E%3Cpath fill='currentColor' d='M18 11.03A6.04 6.04 0 0 0 12.05 6c-3.03 0-6.29 2.51-6.03 6.45a8.07 8.07 0 0 0 4.86-5.89c1.31 2.63 4 4.44 7.12 4.47'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:outline-visibility {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 6a9.77 9.77 0 0 1 8.82 5.5C19.17 14.87 15.79 17 12 17s-7.17-2.13-8.82-5.5A9.77 9.77 0 0 1 12 6m0-2C7 4 2.73 7.11 1 11.5C2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4m0 5a2.5 2.5 0 0 1 0 5a2.5 2.5 0 0 1 0-5m0-2c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:outline-visibility-off {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 6a9.77 9.77 0 0 1 8.82 5.5a9.65 9.65 0 0 1-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6m-1.07 1.14L13 9.21c.57.25 1.03.71 1.28 1.28l2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.05-1.07.14M2.01 3.87l2.68 2.68A11.74 11.74 0 0 0 1 11.5C2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42l1.41-1.41L3.42 2.45zm7.5 7.5l2.61 2.61c-.04.01-.08.02-.12.02a2.5 2.5 0 0 1-2.5-2.5c0-.05.01-.08.01-.13m-3.4-3.4l1.75 1.75a4.6 4.6 0 0 0-.36 1.78a4.507 4.507 0 0 0 6.27 4.14l.98.98c-.88.24-1.8.38-2.75.38a9.77 9.77 0 0 1-8.82-5.5c.7-1.43 1.72-2.61 2.93-3.53'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:round-arrow-right {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m11.71 15.29l2.59-2.59a.996.996 0 0 0 0-1.41L11.71 8.7c-.63-.62-1.71-.18-1.71.71v5.17c0 .9 1.08 1.34 1.71.71'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:round-check {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M9 16.17L5.53 12.7a.996.996 0 1 0-1.41 1.41l4.18 4.18c.39.39 1.02.39 1.41 0L20.29 7.71a.996.996 0 1 0-1.41-1.41z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:round-confirmation-number {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M22 8.54V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.89-1.99 2v2.54c0 .69.33 1.37.94 1.69C3.58 10.58 4 11.24 4 12s-.43 1.43-1.06 1.76c-.6.33-.94 1.01-.94 1.7V18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-2.54c0-.69-.34-1.37-.94-1.7c-.63-.34-1.06-1-1.06-1.76s.43-1.42 1.06-1.76c.6-.33.94-1.01.94-1.7m-9 8.96h-2v-2h2zm0-4.5h-2v-2h2zm0-4.5h-2v-2h2z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:round-data-exploration {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 1.33.26 2.61.74 3.77l4.61-4.62a1 1 0 0 1 1.35-.06l2.6 2.19L14.58 10H14c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1s-1-.45-1-1v-.58l-3.94 3.93a.99.99 0 0 1-1.35.05l-2.59-2.19l-4.4 4.4A10 10 0 0 0 12 22h8c1.1 0 2-.9 2-2zm-2.5 8.5c-.55 0-1-.45-1-1s.45-1 1-1s1 .45 1 1s-.45 1-1 1'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:round-file-copy {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M15 1H4c-1.1 0-2 .9-2 2v13c0 .55.45 1 1 1s1-.45 1-1V4c0-.55.45-1 1-1h10c.55 0 1-.45 1-1s-.45-1-1-1m.59 4.59l4.83 4.83c.37.37.58.88.58 1.41V21c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h6.17c.53 0 1.04.21 1.42.59M15 12h4.5L14 6.5V11c0 .55.45 1 1 1'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:round-mark-unread-chat-alt {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Ccircle cx='19' cy='3' r='3' fill='currentColor'/%3E%3Cpath fill='currentColor' d='M7 8c-.55 0-1-.45-1-1s.45-1 1-1h8.03a4.9 4.9 0 0 1-.92-4H4.01a2 2 0 0 0-2 2L2 19.58c0 .89 1.08 1.34 1.71.71L6 18h14c1.1 0 2-.9 2-2V6.97C21.16 7.61 20.13 8 19 8zm6 6H7c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1m4-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:round-phone-android {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3m-2.5 20h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h3c.28 0 .5.22.5.5s-.22.5-.5.5m3.5-3H7V4h10z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:round-question-answer {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M20 6h-1v8c0 .55-.45 1-1 1H6v1c0 1.1.9 2 2 2h10l4 4V8c0-1.1-.9-2-2-2m-3 5V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v13l4-4h9c1.1 0 2-.9 2-2'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:round-vertical-align-top {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M9.21 11H11v9c0 .55.45 1 1 1s1-.45 1-1v-9h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0l-2.79 2.79a.5.5 0 0 0 .36.85M4 4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:sharp-account-circle {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2m0 4c1.93 0 3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5S10.07 6 12 6m0 14c-2.03 0-4.43-.82-6.14-2.88a9.95 9.95 0 0 1 12.28 0C16.43 19.18 14.03 20 12 20'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:sharp-arrow-drop-down {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m7 10l5 5l5-5z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:sharp-energy-savings-leaf {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 3c-4.8 0-9 3.86-9 9c0 2.12.74 4.07 1.97 5.61L3 19.59L4.41 21l1.97-1.97A9 9 0 0 0 12 21c2.3 0 4.61-.88 6.36-2.64A8.95 8.95 0 0 0 21 12V3zm-1.5 14l-.5-.5l2.5-3.5l-5-.5l6-5.5l.5.5l-2.5 3.5l5 .5z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:sharp-groups {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 12.75c1.63 0 3.07.39 4.24.9c1.08.48 1.76 1.56 1.76 2.73V18H6v-1.61c0-1.18.68-2.26 1.76-2.73c1.17-.52 2.61-.91 4.24-.91M4 13c1.1 0 2-.9 2-2s-.9-2-2-2s-2 .9-2 2s.9 2 2 2m1.13 1.1c-.37-.06-.74-.1-1.13-.1c-.99 0-1.93.21-2.78.58A2.01 2.01 0 0 0 0 16.43V18h4.5v-1.61c0-.83.23-1.61.63-2.29M20 13c1.1 0 2-.9 2-2s-.9-2-2-2s-2 .9-2 2s.9 2 2 2m4 3.43c0-.81-.48-1.53-1.22-1.85A6.95 6.95 0 0 0 20 14c-.39 0-.76.04-1.13.1c.4.68.63 1.46.63 2.29V18H24zM12 6c1.66 0 3 1.34 3 3s-1.34 3-3 3s-3-1.34-3-3s1.34-3 3-3'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:sharp-keyboard-arrow-down {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6l-6-6z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:sharp-live-help {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M21 2H3v18h6l3 3l3-3h6zm-8 16h-2v-2h2zm2.07-7.75l-.9.92C13.45 11.9 13 12.5 13 14h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41c0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:sharp-message {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M22 2H2.01L2 22l4-4h16zm-4 12H6v-2h12zm0-3H6V9h12zm0-3H6V6h12z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:sharp-notifications-none {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2m6-6v-5c0-3.07-1.63-5.64-4.5-6.32V2.5h-3v2.18C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:sharp-settings {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m19.44 12.99l-.01.02c.04-.33.08-.67.08-1.01s-.03-.66-.07-.99l.01.02l2.44-1.92l-2.43-4.22l-2.87 1.16l.01.01c-.52-.4-1.09-.74-1.71-1h.01L14.44 2H9.57l-.44 3.07h.01c-.62.26-1.19.6-1.71 1l.01-.01l-2.88-1.17l-2.44 4.22l2.44 1.92l.01-.02c-.04.33-.07.65-.07.99s.03.68.08 1.01l-.01-.02l-2.1 1.65l-.33.26l2.43 4.2l2.88-1.15l-.02-.04c.53.41 1.1.75 1.73 1.01h-.03L9.58 22h4.85s.03-.18.06-.42l.38-2.65h-.01c.62-.26 1.2-.6 1.73-1.01l-.02.04l2.88 1.15l2.43-4.2s-.14-.12-.33-.26zM12 15.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5s-1.57 3.5-3.5 3.5'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:sharp-tour {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M21 4H7V2H5v20h2v-8h14l-2-5zm-6 5c0 1.1-.9 2-2 2s-2-.9-2-2s.9-2 2-2s2 .9 2 2'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:twotone-check-circle {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8s8-3.59 8-8s-3.59-8-8-8m-2 13l-4-4l1.41-1.41L10 14.17l6.59-6.59L18 9z' opacity='.3'/%3E%3Cpath fill='currentColor' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8s8 3.59 8 8s-3.59 8-8 8m4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4l8-8z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:twotone-cloud-download {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m19.21 12.04l-1.53-.11l-.3-1.5A5.484 5.484 0 0 0 12 6C9.94 6 8.08 7.14 7.12 8.96l-.5.95l-1.07.11A3.99 3.99 0 0 0 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3c0-1.55-1.22-2.86-2.79-2.96M12 17l-4-4h2.55v-3h2.91v3H16z' opacity='.3'/%3E%3Cpath fill='currentColor' d='M19.35 10.04A7.49 7.49 0 0 0 12 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 0 0 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5c0-2.64-2.05-4.78-4.65-4.96M19 18H6c-2.21 0-4-1.79-4-4c0-2.05 1.53-3.76 3.56-3.97l1.07-.11l.5-.95A5.47 5.47 0 0 1 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5l1.53.11A2.98 2.98 0 0 1 22 15c0 1.65-1.35 3-3 3m-5.55-8h-2.9v3H8l4 4l4-4h-2.55z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:twotone-lock-open {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M6 20h12V10H6zm6-7c1.1 0 2 .9 2 2s-.9 2-2 2s-2-.9-2-2s.9-2 2-2' opacity='.3'/%3E%3Cpath fill='currentColor' d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2m0 12H6V10h12zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2s-2 .9-2 2s.9 2 2 2'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:twotone-policy {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M5 6.3V11c0 4.52 2.98 8.69 7 9.93c1.74-.53 3.28-1.62 4.47-3.04l-1.72-1.72a4.994 4.994 0 0 1-6.29-.64a5.003 5.003 0 0 1 0-7.07a5.003 5.003 0 0 1 7.07 0a5.006 5.006 0 0 1 .64 6.29l1.45 1.45C18.49 14.65 19 12.85 19 11V6.3l-7-3.11z' opacity='.3'/%3E%3Cpath fill='currentColor' d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12c.65-.16 1.27-.38 1.87-.65c1.8-.82 3.36-2.13 4.57-3.74C20.04 16.46 21 13.77 21 11V5zm7 10c0 1.85-.51 3.65-1.38 5.21l-1.45-1.45a4.994 4.994 0 0 0-.64-6.29a5.003 5.003 0 0 0-7.07 0a5.003 5.003 0 0 0 0 7.07a5.006 5.006 0 0 0 6.29.64l1.72 1.72c-1.19 1.42-2.73 2.51-4.47 3.04c-4.02-1.25-7-5.42-7-9.94V6.3l7-3.11l7 3.11zm-4 1c0 1.66-1.34 3-3 3s-3-1.34-3-3s1.34-3 3-3s3 1.34 3 3'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:twotone-security {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 3.19L5 6.3V12h7v8.93c3.72-1.15 6.47-4.82 7-8.94h-7z' opacity='.3'/%3E%3Cpath fill='currentColor' d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12c5.16-1.26 9-6.45 9-12V5zm0 19.93V12H5V6.3l7-3.11v8.8h7c-.53 4.12-3.28 7.79-7 8.94'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:twotone-task-alt {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M22 5.18L10.59 16.6l-4.24-4.24l1.41-1.41l2.83 2.83l10-10zm-2.21 5.04c.13.57.21 1.17.21 1.78c0 4.42-3.58 8-8 8s-8-3.58-8-8s3.58-8 8-8c1.58 0 3.04.46 4.28 1.25l1.44-1.44A9.9 9.9 0 0 0 12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10c0-1.19-.22-2.33-.6-3.39z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:twotone-telegram {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2m4.64 6.8c-.15 1.58-.8 5.42-1.13 7.19c-.14.75-.42 1-.68 1.03c-.58.05-1.02-.38-1.58-.75c-.88-.58-1.38-.94-2.23-1.5c-.99-.65-.35-1.01.22-1.59c.15-.15 2.71-2.48 2.76-2.69a.2.2 0 0 0-.05-.18c-.06-.05-.14-.03-.21-.02c-.09.02-1.49.95-4.22 2.79c-.4.27-.76.41-1.08.4c-.36-.01-1.04-.2-1.55-.37c-.63-.2-1.12-.31-1.08-.66c.02-.18.27-.36.74-.55c2.92-1.27 4.86-2.11 5.83-2.51c2.78-1.16 3.35-1.36 3.73-1.36c.08 0 .27.02.39.12c.1.08.13.19.14.27c-.01.06.01.24 0 .38'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ic\:twotone-volume-up {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M5 13h2.83L10 15.17V8.83L7.83 11H5z' opacity='.3'/%3E%3Cpath fill='currentColor' d='M3 9v6h4l5 5V4L7 9zm7-.17v6.34L7.83 13H5v-2h2.83zm4-.86v8.05c1.48-.73 2.5-2.25 2.5-4.02A4.5 4.5 0 0 0 14 7.97m0-4.74v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-icon-park-outline\:discovery-index {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 48 48' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linejoin='round' stroke-width='4'%3E%3Cpath stroke-linecap='round' d='M16 6H8a2 2 0 0 0-2 2v8m10 26H8a2 2 0 0 1-2-2v-8m26 10h8a2 2 0 0 0 2-2v-8M32 6h8a2 2 0 0 1 2 2v8'/%3E%3Cpath d='M19 18h10v12H19z'/%3E%3Cpath stroke-linecap='round' d='M24 18v-6m0 24v-6'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-icon-park-outline\:financing {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 48 48' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linejoin='round' stroke-width='4'%3E%3Cpath d='M24 44c11.046 0 20-8.954 20-20S35.046 4 24 4S4 12.954 4 24s8.954 20 20 20Z'/%3E%3Crect width='10' height='10' x='24' y='16.929' rx='2' transform='rotate(45 24 16.929)'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-icon-park-outline\:level {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 48 48' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='4'%3E%3Cpath d='M24 42L4 18.5L9.695 6h28.61L44 18.5z'/%3E%3Cpath d='m32 18l-8 9l-8-9'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-icon-park-outline\:telegram {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 48 48' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M41.42 7.309s3.885-1.515 3.56 2.164c-.107 1.515-1.078 6.818-1.834 12.553l-2.59 16.99s-.216 2.489-2.159 2.922c-1.942.432-4.856-1.515-5.396-1.948c-.432-.325-8.094-5.195-10.792-7.575c-.756-.65-1.62-1.948.108-3.463L33.649 18.13c1.295-1.3 2.59-4.33-2.806-.65l-15.11 10.28s-1.727 1.083-4.964.109l-7.016-2.165s-2.59-1.623 1.835-3.246c10.793-5.086 24.068-10.28 35.831-15.15'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-icon-park-solid\:announcement {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 48 48' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cdefs%3E%3Cmask id='ipSAnnouncement0'%3E%3Cg fill='none' stroke-linejoin='round' stroke-width='4'%3E%3Crect width='40' height='26' x='4' y='15' fill='%23fff' stroke='%23fff' rx='2'/%3E%3Cpath fill='%23fff' stroke='%23fff' stroke-linecap='round' d='m24 7l-8 8h16z'/%3E%3Cpath stroke='%23000' stroke-linecap='round' d='M12 24h18m-18 8h8'/%3E%3C/g%3E%3C/mask%3E%3C/defs%3E%3Cpath fill='currentColor' d='M0 0h48v48H0z' mask='url(%23ipSAnnouncement0)'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-icon-park-solid\:avatar {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 48 48' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' stroke='currentColor' stroke-linejoin='round' stroke-width='4' d='M5.004 42.231a.78.78 0 0 0 .791.769h36.407a.78.78 0 0 0 .792-.769v-.918c.018-.277.055-1.657-.855-3.184c-.574-.963-1.407-1.794-2.476-2.472c-1.293-.82-2.938-1.413-4.928-1.77a29 29 0 0 1-3.002-.584c-2.632-.672-2.862-1.267-2.864-1.273a.8.8 0 0 0-.066-.169c-.022-.11-.075-.528.027-1.647c.258-2.843 1.783-4.523 3.008-5.873c.386-.425.751-.828 1.032-1.222c1.213-1.7 1.325-3.635 1.33-3.755a2 2 0 0 0-.087-.628c-.12-.37-.343-.6-.507-.77a3 3 0 0 1-.113-.12c-.012-.014-.044-.052-.015-.243a19 19 0 0 0 .203-1.857c.056-1.002.099-2.5-.16-3.959a6 6 0 0 0-.172-.825q-.408-1.507-1.32-2.57c-.105-.115-2.653-2.8-10.05-3.35c-1.023-.076-2.034-.035-3.03.016a4.4 4.4 0 0 0-.875.108c-.764.197-.968.681-1.021.952c-.089.45.067.798.17 1.03c.015.033.034.074.001.182c-.171.266-.442.506-.717.733c-.08.067-1.934 1.667-2.036 3.756c-.275 1.589-.255 4.064.07 5.775c.02.095.047.235.002.33c-.35.313-.746.668-.745 1.478c.004.082.117 2.016 1.33 3.717c.28.394.645.796 1.03 1.221l.002.001c1.225 1.35 2.75 3.03 3.008 5.872c.101 1.12.048 1.537.027 1.648a.8.8 0 0 0-.067.169c-.001.006-.23.599-2.85 1.27c-1.512.387-3 .585-3.045.59c-1.934.327-3.569.906-4.86 1.721c-1.065.673-1.9 1.507-2.48 2.477c-.928 1.55-.903 2.962-.89 3.22z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-icon-park-solid\:crown-two {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 48 48' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cdefs%3E%3Cmask id='ipSCrownTwo0'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round' stroke-width='4'%3E%3Cpath fill='%23fff' stroke='%23fff' d='M24 44c11.046 0 20-8.954 20-20S35.046 4 24 4S4 12.954 4 24s8.954 20 20 20'/%3E%3Cpath fill='%23000' stroke='%23000' d='M13 29V19l6 3l5-7l5 7l6-3v10z'/%3E%3C/g%3E%3C/mask%3E%3C/defs%3E%3Cpath fill='currentColor' d='M0 0h48v48H0z' mask='url(%23ipSCrownTwo0)'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-icon-park-solid\:friends-circle {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 48 48' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none'%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M24 44c11.046 0 20-8.954 20-20S35.046 4 24 4S4 12.954 4 24s8.954 20 20 20'/%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M31 7v17z' clip-rule='evenodd'/%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M31 7v17'/%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='m16.636 6.636l14.142 14.142z' clip-rule='evenodd'/%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='m16.636 6.636l14.142 14.142'/%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M7 17h17z' clip-rule='evenodd'/%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M7 17h17'/%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M20.364 17.636L6.222 31.778z' clip-rule='evenodd'/%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M20.364 17.636L6.222 31.778'/%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M17 25v17z' clip-rule='evenodd'/%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M17 25v17'/%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='m17.636 27.636l14.142 14.142z' clip-rule='evenodd'/%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='m17.636 27.636l14.142 14.142'/%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M24 31h18z' clip-rule='evenodd'/%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M24 31h18'/%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M42.364 16.636L28.222 30.778z' clip-rule='evenodd'/%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M42.364 16.636L28.222 30.778'/%3E%3Cpath fill='currentColor' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M24 31a7 7 0 1 0 0-14a7 7 0 0 0 0 14'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-icon-park-solid\:thinking-problem {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 48 48' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cdefs%3E%3Cmask id='ipSThinkingProblem0'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round' stroke-width='4'%3E%3Cpath fill='%23fff' stroke='%23fff' d='m38 21l5 9l-5 1v6h-3l-6-1l-1 7H13l-2-10.381C7.92 29.703 6 25.576 6 21c0-8.837 7.163-16 16-16s16 7.163 16 16'/%3E%3Cpath stroke='%23000' d='M17 19a5 5 0 1 1 5 5v3m0 6v1'/%3E%3C/g%3E%3C/mask%3E%3C/defs%3E%3Cpath fill='currentColor' d='M0 0h48v48H0z' mask='url(%23ipSThinkingProblem0)'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-icon-park-solid\:vip-one {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 48 48' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cdefs%3E%3Cmask id='ipSVipOne0'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round' stroke-width='4'%3E%3Cpath fill='%23fff' stroke='%23fff' d='m4.503 16.366l8.013-8.694A2.13 2.13 0 0 1 14.082 7h19.836a2.13 2.13 0 0 1 1.566.672l8.013 8.694a1.85 1.85 0 0 1-.035 2.572L24.75 40.15a1 1 0 0 1-1.5 0L4.538 18.938a1.85 1.85 0 0 1-.035-2.572'/%3E%3Cpath stroke='%23000' d='m16 20l8 9l8-9'/%3E%3C/g%3E%3C/mask%3E%3C/defs%3E%3Cpath fill='currentColor' d='M0 0h48v48H0z' mask='url(%23ipSVipOne0)'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-icon-park-twotone\:announcement {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 48 48' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cdefs%3E%3Cmask id='ipTAnnouncement0'%3E%3Cg fill='none' stroke='%23fff' stroke-linejoin='round' stroke-width='4'%3E%3Crect width='40' height='26' x='4' y='15' fill='%23555' rx='2'/%3E%3Cpath fill='%23555' stroke-linecap='round' d='m24 7l-8 8h16z'/%3E%3Cpath stroke-linecap='round' d='M12 24h18m-18 8h8'/%3E%3C/g%3E%3C/mask%3E%3C/defs%3E%3Cpath fill='currentColor' d='M0 0h48v48H0z' mask='url(%23ipTAnnouncement0)'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-icon-park-twotone\:wallet-one {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 48 48' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cdefs%3E%3Cmask id='ipTWalletOne0'%3E%3Cg fill='none'%3E%3Crect width='38' height='26' x='5' y='13' fill='%23555' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' rx='2'/%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M25 20h18v11H25zm18-2v15M32 13c0-5-3.5-6-5-6H12.5C8.9 7 8 9.866 8 11.299V13'/%3E%3Ccircle cx='33.5' cy='25.5' r='1.5' fill='%23fff'/%3E%3C/g%3E%3C/mask%3E%3C/defs%3E%3Cpath fill='currentColor' d='M0 0h48v48H0z' mask='url(%23ipTWalletOne0)'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-iconoir\:home-sale {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Cpath d='M14 9.846c-1-.923-3.667-1.23-3.667.616S14 11.385 14 13.23s-3 1.846-4 .615m2 .857V16m0-6.887V8M2 8l9.732-4.866a.6.6 0 0 1 .536 0L22 8'/%3E%3Cpath d='M20 11v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ion\:globe-sharp {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-miterlimit='10' stroke-width='44' d='M256 48C141.13 48 48 141.13 48 256s93.13 208 208 208s208-93.13 208-208S370.87 48 256 48Z'/%3E%3Cpath fill='none' stroke='currentColor' stroke-miterlimit='10' stroke-width='44' d='M256 48c-58.07 0-112.67 93.13-112.67 208S197.93 464 256 464s112.67-93.13 112.67-208S314.07 48 256 48Z'/%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='44' d='M117.33 121.33c38.24 27.15 86.38 43.34 138.67 43.34s100.43-16.19 138.67-43.34m0 269.34c-38.24-27.15-86.38-43.34-138.67-43.34s-100.43 16.19-138.67 43.34'/%3E%3Cpath fill='none' stroke='currentColor' stroke-miterlimit='10' stroke-width='44' d='M256 48v416m208-208H48'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ion\:ios-trending-up {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath d='M464.9 128H344.1c-8.3 0-15.1 6.6-15.1 14.8s6.8 14.8 15.1 14.8h83.7l-138 142.2-85.9-84.1c-2.9-2.8-6.6-4.3-10.7-4.3-4 0-7.8 1.5-10.7 4.3L36.2 358.8c-1.9 1.9-4.2 5.2-4.2 10.7 0 4.1 1.4 7.5 4.2 10.2 2.9 2.8 6.6 4.3 10.7 4.3 4 0 7.8-1.5 10.7-4.3L193.2 247l85.9 84.1c2.9 2.8 6.6 4.3 10.7 4.3 4 0 7.8-1.5 10.7-4.3l149.4-151.9v81.7c0 8.1 6.8 14.8 15.1 14.8s15.1-6.6 15.1-14.8V142.8c-.1-8.2-6.9-14.8-15.2-14.8z' fill='currentColor'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ion\:logo-linkedin {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M444.17 32H70.28C49.85 32 32 46.7 32 66.89v374.72C32 461.91 49.85 480 70.28 480h373.78c20.54 0 35.94-18.21 35.94-38.39V66.89C480.12 46.7 464.6 32 444.17 32m-273.3 373.43h-64.18V205.88h64.18ZM141 175.54h-.46c-20.54 0-33.84-15.29-33.84-34.43c0-19.49 13.65-34.42 34.65-34.42s33.85 14.82 34.31 34.42c-.01 19.14-13.31 34.43-34.66 34.43m264.43 229.89h-64.18V296.32c0-26.14-9.34-44-32.56-44c-17.74 0-28.24 12-32.91 23.69c-1.75 4.2-2.22 9.92-2.22 15.76v113.66h-64.18V205.88h64.18v27.77c9.34-13.3 23.93-32.44 57.88-32.44c42.13 0 74 27.77 74 87.64Z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ion\:md-cloud-download {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath d='M403.002 217.001C388.998 148.002 328.998 96 256 96c-57.998 0-107.998 32.998-132.998 81.001C63.002 183.002 16 233.998 16 296c0 65.996 53.999 120 120 120h260c55 0 100-45 100-100 0-52.998-40.996-96.001-92.998-98.999zM224 268v-76h64v76h68L256 368 156 268h68z' fill='currentColor'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ion\:remove-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='32' d='M400 256H112'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ion\:wallet {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M95.5 104h320a88 88 0 0 1 11.18.71a66 66 0 0 0-77.51-55.56L86 94.08h-.3a66 66 0 0 0-41.07 26.13A87.57 87.57 0 0 1 95.5 104m320 24h-320a64.07 64.07 0 0 0-64 64v192a64.07 64.07 0 0 0 64 64h320a64.07 64.07 0 0 0 64-64V192a64.07 64.07 0 0 0-64-64M368 320a32 32 0 1 1 32-32a32 32 0 0 1-32 32'/%3E%3Cpath fill='currentColor' d='M32 259.5V160c0-21.67 12-58 53.65-65.87C121 87.5 156 87.5 156 87.5s23 16 4 16s-18.5 24.5 0 24.5s0 23.5 0 23.5L85.5 236Z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-jam\:database-f {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='-2 -2 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M3 10a3 3 0 0 1-3-3V3a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v4a3 3 0 0 1-3 3a3 3 0 0 1 3 3v4a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3v-4a3 3 0 0 1 3-3m5 6a1 1 0 1 0 0-2a1 1 0 0 0 0 2m-3 0a1 1 0 1 0 0-2a1 1 0 0 0 0 2M5 6a1 1 0 1 0 0-2a1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2a1 1 0 0 0 0 2'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-jam\:task-list-f {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='-2 -2 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M6 0h8a6 6 0 0 1 6 6v8a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6V6a6 6 0 0 1 6-6m6 9a1 1 0 0 0 0 2h3a1 1 0 1 0 0-2zm-2 4a1 1 0 0 0 0 2h5a1 1 0 1 0 0-2zm0-8a1 1 0 1 0 0 2h5a1 1 0 0 0 0-2zm-4.172 5.243l-.707-.707a1 1 0 1 0-1.414 1.414l1.414 1.414a1 1 0 0 0 1.415 0l2.828-2.828A1 1 0 0 0 7.95 8.12l-2.122 2.122z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-lets-icons\:group-share {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none'%3E%3Cpath stroke='currentColor' stroke-width='2' d='M9 6a3 3 0 1 0 6 0a3 3 0 0 0-6 0Zm-4.562 7.902a3 3 0 1 0 3 5.195a3 3 0 0 0-3-5.196Zm15.124 0a2.999 2.999 0 1 1-2.998 5.194a2.999 2.999 0 0 1 2.998-5.194Z'/%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M9.07 6.643a3 3 0 0 1 .42-2.286a9 9 0 0 0-6.23 10.79a3 3 0 0 1 1.77-1.506a7 7 0 0 1 4.04-6.998m5.86 0a7 7 0 0 1 4.04 6.998a3 3 0 0 1 1.77 1.507a9 9 0 0 0-6.23-10.79a3 3 0 0 1 .42 2.285m3.3 12.852a3 3 0 0 1-2.19-.779a7 7 0 0 1-8.08 0a3 3 0 0 1-2.19.78a9 9 0 0 0 12.46 0' clip-rule='evenodd'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-lets-icons\:transfer-long-right {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-width='2' d='M2 10h12V6.435a.2.2 0 0 1 .33-.152L21 12l-6.67 5.717a.2.2 0 0 1-.33-.152V14H2'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-lets-icons\:transfer-right {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-width='2' d='M5 9h7V5.483a.2.2 0 0 1 .341-.142L19 12l-6.659 6.659a.2.2 0 0 1-.341-.142V15H5'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-line-md-confirm-circle-twotone {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath fill='currentColor' fill-opacity='0' stroke-dasharray='64' stroke-dashoffset='64' d='M3 12c0 -4.97 4.03 -9 9 -9c4.97 0 9 4.03 9 9c0 4.97 -4.03 9 -9 9c-4.97 0 -9 -4.03 -9 -9Z'%3E%3Canimate fill='freeze' attributeName='fill-opacity' begin='0.6s' dur='0.15s' values='0;0.3'/%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='0.6s' values='64;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='14' stroke-dashoffset='14' d='M8 12l3 3l5 -5'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='0.75s' dur='0.2s' values='14;0'/%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-line-md-loading-twotone-loop,
.i-line-md\:loading-twotone-loop {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath stroke-dasharray='16' stroke-dashoffset='16' d='M12 3c4.97 0 9 4.03 9 9'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='0.3s' values='16;0'/%3E%3CanimateTransform attributeName='transform' dur='1.5s' repeatCount='indefinite' type='rotate' values='0 12 12;360 12 12'/%3E%3C/path%3E%3Cpath stroke-dasharray='64' stroke-dashoffset='64' stroke-opacity='.3' d='M12 3c4.97 0 9 4.03 9 9c0 4.97 -4.03 9 -9 9c-4.97 0 -9 -4.03 -9 -9c0 -4.97 4.03 -9 9 -9Z'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='1.2s' values='64;0'/%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-line-md\:clipboard-list {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath stroke-dasharray='72' stroke-dashoffset='72' d='M12 3h7v18h-14v-18h7Z'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='0.6s' values='72;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='12' stroke-dashoffset='12' stroke-width='1' d='M14.5 3.5v3h-5v-3'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='0.7s' dur='0.2s' values='12;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='4' stroke-dashoffset='4' d='M9 10h3'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='0.9s' dur='0.2s' values='4;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='6' stroke-dashoffset='6' d='M9 13h5'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='1.1s' dur='0.2s' values='6;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='8' stroke-dashoffset='8' d='M9 16h6'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='1.3s' dur='0.2s' values='8;0'/%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-line-md\:email-twotone-alt {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-opacity='0' d='M12 13l-8 -5v10h16v-10l-8 5Z'%3E%3Canimate fill='freeze' attributeName='fill-opacity' begin='0.8s' dur='0.15s' values='0;0.3'/%3E%3C/path%3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath stroke-dasharray='64' stroke-dashoffset='64' d='M4 5h16c0.55 0 1 0.45 1 1v12c0 0.55 -0.45 1 -1 1h-16c-0.55 0 -1 -0.45 -1 -1v-12c0 -0.55 0.45 -1 1 -1Z'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='0.6s' values='64;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='24' stroke-dashoffset='24' d='M3 6.5l9 5.5l9 -5.5'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='0.6s' dur='0.2s' values='24;0'/%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-line-md\:facebook {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='4'%3E%3Cpath stroke-dasharray='24' stroke-dashoffset='24' d='M17 4l-2 0c-2.5 0 -4 1.5 -4 4v12'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='0.4s' values='24;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='8' stroke-dashoffset='8' d='M8 12h7'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='0.5s' dur='0.2s' values='8;0'/%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-line-md\:instagram {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Ccircle cx='17' cy='7' r='1.5' fill='currentColor' fill-opacity='0'%3E%3Canimate fill='freeze' attributeName='fill-opacity' begin='1.3s' dur='0.15s' values='0;1'/%3E%3C/circle%3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath stroke-dasharray='72' stroke-dashoffset='72' d='M16 3c2.76 0 5 2.24 5 5v8c0 2.76 -2.24 5 -5 5h-8c-2.76 0 -5 -2.24 -5 -5v-8c0 -2.76 2.24 -5 5 -5h4Z'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='0.6s' values='72;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='28' stroke-dashoffset='28' d='M12 8c2.21 0 4 1.79 4 4c0 2.21 -1.79 4 -4 4c-2.21 0 -4 -1.79 -4 -4c0 -2.21 1.79 -4 4 -4'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='0.7s' dur='0.6s' values='28;0'/%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-line-md\:linkedin {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Ccircle cx='4' cy='4' r='2' fill='currentColor' fill-opacity='0'%3E%3Canimate fill='freeze' attributeName='fill-opacity' dur='0.15s' values='0;1'/%3E%3C/circle%3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='4'%3E%3Cpath stroke-dasharray='12' stroke-dashoffset='12' d='M4 10v10'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='0.15s' dur='0.2s' values='12;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='12' stroke-dashoffset='12' d='M10 10v10'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='0.45s' dur='0.2s' values='12;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='24' stroke-dashoffset='24' d='M10 15c0 -2.76 2.24 -5 5 -5c2.76 0 5 2.24 5 5v5'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='0.65s' dur='0.2s' values='24;0'/%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-line-md\:loading-loop {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-dasharray='16' stroke-dashoffset='16' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 3c4.97 0 9 4.03 9 9'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='0.2s' values='16;0'/%3E%3CanimateTransform attributeName='transform' dur='1.5s' repeatCount='indefinite' type='rotate' values='0 12 12;360 12 12'/%3E%3C/path%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-line-md\:telegram {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath stroke-dasharray='20' stroke-dashoffset='20' d='M21 5l-2.5 15M21 5l-12 8.5'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='0.4s' values='20;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='24' stroke-dashoffset='24' d='M21 5l-19 7.5'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='0.4s' values='24;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='14' stroke-dashoffset='14' d='M18.5 20l-9.5 -6.5'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='0.4s' dur='0.3s' values='14;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='10' stroke-dashoffset='10' d='M2 12.5l7 1'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='0.4s' dur='0.3s' values='10;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='8' stroke-dashoffset='8' d='M12 16l-3 3M9 13.5l0 5.5'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='0.7s' dur='0.3s' values='8;0'/%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-line-md\:tiktok {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cmask id='lineMdTiktok0'%3E%3Cg fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath fill='%23fff' stroke='none' d='M16.6 5.82c-0.68 -0.78 -1.06 -1.78 -1.06 -2.82h-3.09v12.4c-0.02 0.67 -0.31 1.31 -0.79 1.77c-0.48 0.47 -1.13 0.73 -1.8 0.73c-1.42 0 -2.6 -1.16 -2.6 -2.6c0 -1.72 1.66 -3.01 3.37 -2.48v-3.16c-3.45 -0.46 -6.47 2.22 -6.47 5.64c0 3.33 2.76 5.7 5.69 5.7c3.14 0 5.69 -2.55 5.69 -5.7v-6.29c1.25 0.9 2.76 1.38 4.3 1.38v-3.09c0 0 -1.88 0.09 -3.24 -1.48Z'/%3E%3Cpath stroke='%23000' stroke-dasharray='36' stroke-dashoffset='72' stroke-width='4' d='M11 11h-1c-2.21 0 -4.5 1.79 -4.5 4c0 2.21 1.5 4.5 4.5 4.5c2.21 0 4 -2.29 4 -4.5v-12.5'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='0.6s' values='72;36'/%3E%3C/path%3E%3Cpath stroke='%23000' stroke-dasharray='10' stroke-dashoffset='20' stroke-width='4' d='M18 2.5v8'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='0.5s' dur='0.1s' values='20;10'/%3E%3C/path%3E%3C/g%3E%3C/mask%3E%3Crect width='24' height='24' fill='currentColor' mask='url(%23lineMdTiktok0)'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-line-md\:twitter-x {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='currentColor'%3E%3Cpath d='M1 2h2.5L3.5 2h-2.5zM5.5 2h2.5L7.2 2h-2.5z'%3E%3Canimate fill='freeze' attributeName='d' dur='0.4s' values='M1 2h2.5L3.5 2h-2.5zM5.5 2h2.5L7.2 2h-2.5z;M1 2h2.5L18.5 22h-2.5zM5.5 2h2.5L23 22h-2.5z'/%3E%3C/path%3E%3Cpath d='M3 2h5v0h-5zM16 22h5v0h-5z'%3E%3Canimate fill='freeze' attributeName='d' begin='0.4s' dur='0.4s' values='M3 2h5v0h-5zM16 22h5v0h-5z;M3 2h5v2h-5zM16 22h5v-2h-5z'/%3E%3C/path%3E%3Cpath d='M18.5 2h3.5L22 2h-3.5z'%3E%3Canimate fill='freeze' attributeName='d' begin='0.5s' dur='0.4s' values='M18.5 2h3.5L22 2h-3.5z;M18.5 2h3.5L5 22h-3.5z'/%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-logos-android-vertical {
  background: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 157' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='%23202124' d='M226.335 39.703c0-6.72 4.876-12.046 11.022-12.046s10.653 5.162 10.653 12.046s-4.548 12.21-10.653 12.21s-11.022-5.409-11.022-12.21m-21.1 18.766h8.604v-37.45h-8.605zm-1.353-49.947c0 3.237 2.622 5.86 5.695 5.86s5.614-2.623 5.614-5.86c0-2.99-2.54-5.531-5.614-5.531s-5.695 2.54-5.695 5.531M170.12 39.621c0-6.72 4.958-11.964 11.309-11.964s11.309 5.244 11.309 11.964s-5 12.292-11.31 12.292c-6.309-.041-11.308-5.49-11.308-12.292m-8.768 0c0 11.227 8.85 20.077 20.077 20.077s20.077-8.85 20.077-20.077s-8.687-19.75-20.077-19.75c-11.39-.04-20.077 8.564-20.077 19.75M138.08 58.469h8.605V38.843c0-7.785 4.138-11.227 11.022-11.227c1.27 0 2.253.082 3.154.287v-7.58c-.901-.287-2.458-.533-4.179-.533c-11.677 0-18.56 7.334-18.56 19.012v19.667zm-34.54-18.766c0-6.72 4.876-12.046 11.022-12.046s10.653 5.162 10.653 12.046s-4.548 12.21-10.653 12.21s-11.022-5.409-11.022-12.21m-8.768 0c0 10.858 8.686 19.995 18.93 19.995c4.26 0 8.153-1.721 10.489-4.548h.368v3.36h8.605V0h-8.605v24.092h-.368c-2.254-2.704-6.146-4.261-10.49-4.261c-10.284 0-18.93 9.055-18.93 19.872M57.035 58.469h8.604V36.548c0-5.245 3.524-8.891 8.4-8.891c4.875 0 8.399 3.687 8.399 8.891v21.92h8.604v-21.92c0-9.137-7.252-16.717-17.004-16.717c-9.751 0-17.003 7.58-17.003 16.717zm-39.54-22.454l9.301-26.591h.451l9.301 26.591zM0 58.47h9.752l4.875-13.931h24.871l4.876 13.93h9.67L32.41 0H21.634zm236.538 1.229c4.261 0 8.153-1.721 10.489-4.548h.369v3.36H256V0h-8.604v24.092h-.37c-2.253-2.704-6.145-4.261-10.488-4.261c-10.325 0-18.93 9.055-18.93 19.831c0 10.817 8.686 20.036 18.93 20.036'/%3E%3Cpath fill='%2334A853' d='M195.36 153.977c-.041-.287-.082-.533-.123-.82a73 73 0 0 0-1.024-5.04a63 63 0 0 0-2.664-8.44a63 63 0 0 0-3.073-6.76a71 71 0 0 0-4.957-8.072c-2.254-3.155-4.753-6.064-7.458-8.81a54 54 0 0 0-3.564-3.277a66 66 0 0 0-8.482-6.228c.041-.04.041-.082.082-.123c1.352-2.376 2.746-4.712 4.098-7.088c1.352-2.295 2.663-4.59 4.015-6.925c.942-1.639 1.926-3.318 2.868-4.957c.246-.41.41-.779.533-1.23a6.1 6.1 0 0 0 .082-3.523c-.082-.287-.164-.574-.287-.82a4.7 4.7 0 0 0-.41-.778a5.7 5.7 0 0 0-2.171-2.13a6.2 6.2 0 0 0-2.664-.861a5.8 5.8 0 0 0-1.188 0a6 6 0 0 0-.942.164a6 6 0 0 0-2.991 1.802a6.4 6.4 0 0 0-.779 1.066c-.942 1.639-1.926 3.319-2.868 4.958l-4.015 6.924c-1.352 2.376-2.745 4.712-4.098 7.088c-.163.246-.286.533-.45.779l-.615-.246c-7.539-2.868-15.693-4.425-24.256-4.425h-.697a68.3 68.3 0 0 0-21.715 3.77l-2.336.86c-.123-.246-.287-.492-.41-.738c-1.352-2.376-2.745-4.712-4.097-7.088c-1.352-2.295-2.663-4.589-4.015-6.924c-.943-1.64-1.926-3.32-2.868-4.958a7 7 0 0 0-.779-1.066a6.15 6.15 0 0 0-2.99-1.802c-.329-.082-.656-.123-.943-.164a5.8 5.8 0 0 0-1.188 0a6.2 6.2 0 0 0-2.664.86a6.36 6.36 0 0 0-2.171 2.13a4.7 4.7 0 0 0-.41.78a6.5 6.5 0 0 0-.287.819a6.45 6.45 0 0 0 .082 3.523c.123.41.328.82.533 1.23c.942 1.639 1.926 3.318 2.868 4.957c1.352 2.295 2.663 4.59 4.015 6.925c1.352 2.376 2.746 4.712 4.098 7.088l.04.041a71 71 0 0 0-7.866 5.695a64 64 0 0 0-4.261 3.893c-2.746 2.704-5.204 5.654-7.458 8.81a68 68 0 0 0-4.957 8.07a63 63 0 0 0-3.073 6.761a67 67 0 0 0-2.664 8.44a65 65 0 0 0-1.024 5.04c-.04.287-.082.533-.123.82a66 66 0 0 0-.41 2.991h135.417c0-1.024-.123-2.008-.246-2.991'/%3E%3Cpath fill='%23202124' d='M163.237 138.202c2.704-1.803 3.114-5.982.86-9.3c-2.212-3.36-6.228-4.59-8.932-2.787s-3.114 5.982-.86 9.301c2.212 3.36 6.228 4.59 8.932 2.786m-61.377-2.745c2.212-3.36 1.843-7.498-.861-9.3c-2.705-1.804-6.72-.574-8.932 2.785s-1.844 7.498.86 9.301s6.679.533 8.932-2.786'/%3E%3C/svg%3E")
    no-repeat;
  background-size: 100% 100%;
  background-color: transparent;
  width: 1em;
  height: 1em;
}
.i-majesticons\:chip {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 3a1 1 0 0 0-2 0v1H7a3 3 0 0 0-3 3v1H3a1 1 0 0 0 0 2h1v4H3a1 1 0 1 0 0 2h1v1a3 3 0 0 0 3 3h1v1a1 1 0 1 0 2 0v-1h4v1a1 1 0 1 0 2 0v-1h1a3 3 0 0 0 3-3v-1h1a1 1 0 1 0 0-2h-1v-4h1a1 1 0 1 0 0-2h-1V7a3 3 0 0 0-3-3h-1V3a1 1 0 1 0-2 0v1h-4V3zm-.25 6a.75.75 0 0 0-.75.75v4.5c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75v-4.5a.75.75 0 0 0-.75-.75h-4.5zM12 11a1 1 0 1 0 0 2a1 1 0 0 0 0-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-majesticons\:globe {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.059 2.188a10.016 10.016 0 0 0-7.242 5.847h4.616a16.98 16.98 0 0 1 2.19-5.162l.436-.685zM2.202 9.99a10.04 10.04 0 0 0 0 4.021c.094-.029.194-.044.298-.044h4.579a17.026 17.026 0 0 1 0-3.931H2.5a.978.978 0 0 1-.298-.046zm.615 5.976a10.017 10.017 0 0 0 7.242 5.847l-.436-.685a16.98 16.98 0 0 1-2.19-5.161H2.817zm11.124 5.847a10.017 10.017 0 0 0 7.242-5.847h-4.616a16.98 16.98 0 0 1-2.19 5.162l-.436.685zm7.857-7.802a10.037 10.037 0 0 0 0-4.02a1.009 1.009 0 0 1-.298.044h-4.579a17.023 17.023 0 0 1 0 3.931H21.5c.104 0 .204.016.298.046zm-.615-5.975h-4.616a16.98 16.98 0 0 0-2.19-5.162l-.436-.685a10.017 10.017 0 0 1 7.242 5.847zM12.69 3.947a14.987 14.987 0 0 1 1.812 4.088H9.498c.39-1.424.994-2.803 1.812-4.088L12 2.863l.69 1.084zM9.094 13.966a15.023 15.023 0 0 1 0-3.931h5.812a15.02 15.02 0 0 1 0 3.93H9.094zm2.216 6.087a14.986 14.986 0 0 1-1.812-4.088h5.004a14.986 14.986 0 0 1-1.812 4.088L12 21.137l-.69-1.084z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-majesticons\:globe-earth-2-line {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M16 4a2 2 0 0 1-2 2h-.5A1.5 1.5 0 0 0 12 7.5V8a1 1 0 0 1-1 1v0a1 1 0 0 0-1 1v1a2 2 0 0 0 2 2h2a2 2 0 0 1 2 2v0a2 2 0 0 0 2 2h1m-8 4v-2.5c0-.828-.685-1.5-1.513-1.5v0C8.673 17 8 16.34 8 15.526v0c0-.34-.118-.67-.333-.933L3.5 9.5'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-majesticons\:globe-grid {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M20.5 9.035a9.004 9.004 0 0 0-17 0m17 0c.324.928.5 1.926.5 2.965a9 9 0 0 1-.5 2.966m0-5.931h-17m0 0A9 9 0 0 0 3 12a9 9 0 0 0 .5 2.966m0 0a9.004 9.004 0 0 0 17 0m-17 0h17'/%3E%3Cpath d='M12 21c4.97-4.97 4.97-13.03 0-18c-4.97 4.97-4.97 13.03 0 18'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols-arrow-back-ios-new-rounded,
[i-material-symbols-arrow-back-ios-new-rounded=""] {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m9.55 12l7.35 7.35q.375.375.363.875t-.388.875t-.875.375t-.875-.375l-7.7-7.675q-.3-.3-.45-.675t-.15-.75t.15-.75t.45-.675l7.7-7.7q.375-.375.888-.363t.887.388t.375.875t-.375.875z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols-arrow-forward-ios,
.i-material-symbols\:arrow-forward-ios {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M8.025 22L6.25 20.225L14.475 12L6.25 3.775L8.025 2l10 10z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols-light\:arrow-forward-ios {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m8.006 21.308l-1.064-1.064L15.187 12L6.942 3.756l1.064-1.064L17.314 12z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols-light\:arrow-forward-ios-rounded {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M15.187 12L7.47 4.285q-.221-.221-.218-.532q.003-.31.224-.532Q7.698 3 8.009 3q.31 0 .532.221l7.636 7.643q.242.242.354.54t.111.596t-.111.596t-.354.54L8.535 20.78q-.222.221-.53.218q-.307-.003-.528-.224t-.221-.532t.221-.531z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols-light\:arrow-right-alt {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m13.692 17.308l-.707-.72l4.088-4.088H5v-1h12.073l-4.088-4.088l.707-.72L19 12z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols-light\:check-circle-rounded {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m10.562 14.492l-2.496-2.496q-.141-.14-.345-.15t-.363.15t-.16.354t.16.354l2.638 2.638q.242.243.565.243t.566-.243l5.477-5.476q.14-.141.15-.345t-.15-.363t-.354-.16t-.354.16zM12.003 21q-1.866 0-3.51-.708q-1.643-.709-2.859-1.924t-1.925-2.856T3 12.003t.709-3.51Q4.417 6.85 5.63 5.634t2.857-1.925T11.997 3t3.51.709q1.643.708 2.859 1.922t1.925 2.857t.709 3.509t-.708 3.51t-1.924 2.859t-2.856 1.925t-3.509.709'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols-light\:list-alt {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M8.117 16.539q.327 0 .548-.222q.22-.221.22-.549t-.222-.548t-.549-.22t-.548.222t-.22.549t.222.547t.549.22m0-3.769q.327 0 .548-.221q.22-.222.22-.55t-.222-.547t-.549-.22t-.548.221t-.22.55t.222.547t.549.22m0-3.769q.327 0 .548-.221q.22-.222.22-.55t-.222-.547t-.549-.22t-.548.221q-.22.222-.22.549t.222.548t.549.22m3.075 7.27h5.385v-1h-5.385zm0-3.77h5.385v-1h-5.385zm0-3.77h5.385v-1h-5.385zM5.616 20q-.691 0-1.153-.462T4 18.384V5.616q0-.691.463-1.153T5.616 4h12.769q.69 0 1.153.463T20 5.616v12.769q0 .69-.462 1.153T18.384 20z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols-light\:notifications {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M5 18.77v-1h1.616V9.845q0-1.96 1.24-3.447T11 4.546V4q0-.417.291-.708q.291-.292.707-.292t.709.292T13 4v.546q1.904.365 3.144 1.853t1.24 3.447v7.923H19v1zm6.997 2.615q-.668 0-1.14-.475t-.472-1.14h3.23q0 .67-.475 1.142q-.476.472-1.143.472'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:account-balance-rounded {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M5 16v-5q0-.425.288-.712T6 10t.713.288T7 11v5q0 .425-.288.713T6 17t-.712-.288T5 16m6 0v-5q0-.425.288-.712T12 10t.713.288T13 11v5q0 .425-.288.713T12 17t-.712-.288T11 16m-8 5q-.425 0-.712-.288T2 20t.288-.712T3 19h18q.425 0 .713.288T22 20t-.288.713T21 21zm14-5v-5q0-.425.288-.712T18 10t.713.288T19 11v5q0 .425-.288.713T18 17t-.712-.288T17 16m4-8H2.9q-.375 0-.638-.262T2 7.1v-.55q0-.275.138-.475T2.5 5.75l8.6-4.3q.425-.2.9-.2t.9.2l8.55 4.275q.275.125.413.375t.137.525V7q0 .425-.287.713T21 8'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:account-box-outline-sharp {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M5 17.85q1.35-1.325 3.138-2.087T12 15t3.863.763T19 17.85V5H5zM12 13q1.45 0 2.475-1.025T15.5 9.5t-1.025-2.475T12 6T9.525 7.025T8.5 9.5t1.025 2.475T12 13m-9 8V3h18v18zm9-10q-.625 0-1.062-.437T10.5 9.5t.438-1.062T12 8t1.063.438T13.5 9.5t-.437 1.063T12 11m-5.275 8h10.55q-1.1-.975-2.487-1.487T12 17t-2.812.513T6.725 19'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:account-circle {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M5.85 17.1q1.275-.975 2.85-1.537T12 15t3.3.563t2.85 1.537q.875-1.025 1.363-2.325T20 12q0-3.325-2.337-5.663T12 4T6.337 6.338T4 12q0 1.475.488 2.775T5.85 17.1M12 13q-1.475 0-2.488-1.012T8.5 9.5t1.013-2.488T12 6t2.488 1.013T15.5 9.5t-1.012 2.488T12 13m0 9q-2.075 0-3.9-.788t-3.175-2.137T2.788 15.9T2 12t.788-3.9t2.137-3.175T8.1 2.788T12 2t3.9.788t3.175 2.137T21.213 8.1T22 12t-.788 3.9t-2.137 3.175t-3.175 2.138T12 22'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:add {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M11 13H5v-2h6V5h2v6h6v2h-6v6h-2z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:android {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M1 18q.225-2.675 1.638-4.925T6.4 9.5L4.55 6.3q-.15-.225-.075-.475T4.8 5.45q.2-.125.45-.05t.4.3L7.5 8.9Q9.65 8 12 8t4.5.9l1.85-3.2q.15-.225.4-.3t.45.05q.25.125.325.375t-.075.475L17.6 9.5q2.35 1.325 3.762 3.575T23 18zm6-2.75q.525 0 .888-.363T8.25 14t-.363-.888T7 12.75t-.888.363T5.75 14t.363.888t.887.362m10 0q.525 0 .888-.363T18.25 14t-.363-.888T17 12.75t-.888.363t-.362.887t.363.888t.887.362'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:arrow-forward-ios-rounded {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m14.475 12l-7.35-7.35q-.375-.375-.363-.888t.388-.887t.888-.375t.887.375l7.675 7.7q.3.3.45.675t.15.75t-.15.75t-.45.675l-7.7 7.7q-.375.375-.875.363T7.15 21.1t-.375-.888t.375-.887z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:arrow-right {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M10 17V7l5 5z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:attach-money {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M11.025 21v-2.15q-1.325-.3-2.287-1.15t-1.413-2.4l1.85-.75q.375 1.2 1.113 1.825t1.937.625q1.025 0 1.738-.462t.712-1.438q0-.875-.55-1.387t-2.55-1.163q-2.15-.675-2.95-1.612t-.8-2.288q0-1.625 1.05-2.525t2.15-1.025V3h2v2.1q1.25.2 2.063.913t1.187 1.737l-1.85.8q-.3-.8-.85-1.2t-1.5-.4q-1.1 0-1.675.488T9.825 8.65q0 .825.75 1.3t2.6 1q1.725.5 2.613 1.588t.887 2.512q0 1.775-1.05 2.7t-2.6 1.15V21z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:auto-activity-zone-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m12 16l-1.25-2.75L8 12l2.75-1.25L12 8l1.25 2.75L16 12l-2.75 1.25L12 16Zm-7 6q-1.25 0-2.125-.875T2 19q0-.975.563-1.738T4 16.175v-8.35Q3.125 7.5 2.562 6.737T2 5q0-1.25.875-2.125T5 2q.975 0 1.738.563T7.824 4h8.35q.3-.875 1.063-1.438T19 2q1.25 0 2.125.875T22 5q0 1-.563 1.763T20 7.825v8.35q.875.325 1.438 1.088T22 19q0 1.25-.875 2.125T19 22q-.975 0-1.738-.563T16.175 20h-8.35q-.325.875-1.088 1.438T5 22ZM5 6q.425 0 .713-.288T6 5q0-.425-.288-.713T5 4q-.425 0-.713.288T4 5q0 .425.288.713T5 6Zm14 0q.425 0 .713-.288T20 5q0-.425-.288-.713T19 4q-.425 0-.713.288T18 5q0 .425.288.713T19 6ZM7.825 18h8.35q.225-.65.7-1.125t1.125-.7v-8.35q-.65-.225-1.125-.7T16.175 6h-8.35q-.225.65-.7 1.125T6 7.825v8.35q.65.225 1.125.7t.7 1.125ZM19 20q.425 0 .713-.288T20 19q0-.425-.288-.713T19 18q-.425 0-.713.288T18 19q0 .425.288.713T19 20ZM5 20q.425 0 .713-.288T6 19q0-.425-.288-.713T5 18q-.425 0-.713.288T4 19q0 .425.288.713T5 20ZM5 5Zm14 0Zm0 14ZM5 19Z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:auto-awesome-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m19 9l-1.25-2.75L15 5l2.75-1.25L19 1l1.25 2.75L23 5l-2.75 1.25L19 9Zm0 14l-1.25-2.75L15 19l2.75-1.25L19 15l1.25 2.75L23 19l-2.75 1.25L19 23ZM9 20l-2.5-5.5L1 12l5.5-2.5L9 4l2.5 5.5L17 12l-5.5 2.5L9 20Zm0-4.85L10 13l2.15-1L10 11L9 8.85L8 11l-2.15 1L8 13l1 2.15ZM9 12Z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:book {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M6 22q-.825 0-1.412-.587T4 20V4q0-.825.588-1.412T6 2h12q.825 0 1.413.588T20 4v16q0 .825-.587 1.413T18 22zm5-11l2.5-1.5L16 11V4h-5z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:book-2 {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M7.5 22q-1.45 0-2.475-1.025T4 18.5v-13q0-1.45 1.025-2.475T7.5 2H20v15q-.625 0-1.062.438T18.5 18.5t.438 1.063T20 20v2zm.5-7h2V4H8zm-.5 5h9.325q-.15-.35-.237-.712T16.5 18.5q0-.4.075-.775t.25-.725H7.5q-.65 0-1.075.438T6 18.5q0 .65.425 1.075T7.5 20'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:book-4-rounded {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M8 16q.425 0 .713-.288T9 15V5q0-.425-.288-.712T8 4t-.712.288T7 5v10q0 .425.288.713T8 16m-2 6q-1.25 0-2.125-.875T3 19V5q0-1.25.875-2.125T6 2h9q.825 0 1.413.588T17 4v12q0 .825-.587 1.413T15 18H6q-.425 0-.712.288T5 19t.288.713T6 20h13V5q0-.425.288-.712T20 4t.713.288T21 5v15q0 .825-.587 1.413T19 22z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:book-5-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M6.75 22q-1.125 0-1.937-.763T4 19.35V5.4q0-.95.588-1.7t1.537-.95L16 .8v16l-9.475 1.9q-.225.05-.375.238T6 19.35q0 .275.225.463T6.75 20H18V4h2v18zM9 16.175l5-.975V3.25l-5 .975zm-2 .4V4.625l-.375.075q-.275.05-.45.238T6 5.4v11.425q.125-.05.263-.087t.262-.063zm-1-11.8v12.05z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:breaking-news {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M7 17q.425 0 .713-.288T8 16t-.288-.712T7 15t-.712.288T6 16t.288.713T7 17m-1-4h2V7H6zm5 4h7v-2h-7zm0-4h7v-2h-7zm0-4h7V7h-7zM4 21q-.825 0-1.412-.587T2 19V5q0-.825.588-1.412T4 3h16q.825 0 1.413.588T22 5v14q0 .825-.587 1.413T20 21z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:broadcast-on-home {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M22 7.775q-.45-.35-.95-.65T20 6.6V4H4V2h16q.825 0 1.413.588T22 4zM3 18q-.425 0-.712-.288T2 17V8q0-.425.288-.712T3 7h5q.425 0 .713.288T9 8v9q0 .425-.288.713T8 18zm13.25 2v-5q-.225-.2-.363-.462T15.75 14q0-.525.375-.888T17 12.75q.525 0 .888.363t.362.887q0 .275-.112.55t-.388.45v5zm-2.075-3.175q-.55-.575-.862-1.3T13 14q0-1.675 1.175-2.838T17 10q1.675 0 2.838 1.163T21 14q0 .775-.288 1.5t-.862 1.3l-1.075-1.05q.35-.35.538-.8T19.5 14q0-1.05-.725-1.775T17 11.5t-1.775.725T14.5 14q0 .5.2.95t.55.8zM12.4 18.6q-.875-.95-1.388-2.138T10.5 14q0-2.725 1.9-4.612T17 7.5q2.725 0 4.613 1.888T23.5 14q0 1.275-.475 2.463t-1.4 2.112L20.55 17.5q.725-.725 1.088-1.625T22 14q0-2.1-1.45-3.55T17 9q-2.075 0-3.537 1.45T12 14q0 .975.388 1.888t1.087 1.637z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:broken-image-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M5 21q-.825 0-1.412-.587T3 19V5q0-.825.588-1.412T5 3h14q.825 0 1.413.588T21 5v14q0 .825-.587 1.413T19 21zm1-8.425l4-4l4 4l4-4l1 1V5H5v6.575zM5 19h14v-6.6l-1-1l-4 4l-4-4l-4 4l-1-1zm0 0v-6.6v2V5z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:chat-info-rounded {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 7q.425 0 .713-.288T13 6t-.288-.712T12 5t-.712.288T11 6t.288.713T12 7m0 8q.425 0 .713-.288T13 14v-4q0-.425-.288-.712T12 9t-.712.288T11 10v4q0 .425.288.713T12 15m-6 3l-2.3 2.3q-.475.475-1.088.213T2 19.575V4q0-.825.588-1.412T4 2h16q.825 0 1.413.588T22 4v12q0 .825-.587 1.413T20 18z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:check-circle {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m10.6 16.6l7.05-7.05l-1.4-1.4l-5.65 5.65l-2.85-2.85l-1.4 1.4zM12 22q-2.075 0-3.9-.788t-3.175-2.137T2.788 15.9T2 12t.788-3.9t2.137-3.175T8.1 2.788T12 2t3.9.788t3.175 2.137T21.213 8.1T22 12t-.788 3.9t-2.137 3.175t-3.175 2.138T12 22'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:close-rounded {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m12 13.4l-4.9 4.9q-.275.275-.7.275t-.7-.275t-.275-.7t.275-.7l4.9-4.9l-4.9-4.9q-.275-.275-.275-.7t.275-.7t.7-.275t.7.275l4.9 4.9l4.9-4.9q.275-.275.7-.275t.7.275t.275.7t-.275.7L13.4 12l4.9 4.9q.275.275.275.7t-.275.7t-.7.275t-.7-.275z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:cloud-download-outline-rounded {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M11 12.15V6.1q-1.9.35-2.95 1.838T7 11h-.5q-1.45 0-2.475 1.025T3 14.5t1.025 2.475T6.5 18h12q1.05 0 1.775-.725T21 15.5t-.725-1.775T18.5 13H17v-2q0-1.2-.55-2.238T15 7V4.675q1.85.875 2.925 2.588T19 11q1.725.2 2.863 1.488T23 15.5q0 1.875-1.312 3.188T18.5 20h-12q-2.275 0-3.887-1.575T1 14.575q0-1.95 1.175-3.475T5.25 9.15q.425-1.8 2.125-3.425T11 4.1q.825 0 1.413.588T13 6.1v6.05l.9-.875q.275-.275.688-.275t.712.3q.275.275.275.7t-.275.7l-2.6 2.6q-.3.3-.7.3t-.7-.3l-2.6-2.6q-.275-.275-.287-.687T8.7 11.3q.275-.275.688-.288t.712.263zm1-1.1'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:confirmation-number-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 17q.425 0 .713-.288T13 16t-.288-.712T12 15t-.712.288T11 16t.288.713T12 17m0-4q.425 0 .713-.288T13 12t-.288-.712T12 11t-.712.288T11 12t.288.713T12 13m0-4q.425 0 .713-.288T13 8t-.288-.712T12 7t-.712.288T11 8t.288.713T12 9m8 11H4q-.825 0-1.412-.587T2 18v-4q.825 0 1.413-.587T4 12t-.587-1.412T2 10V6q0-.825.588-1.412T4 4h16q.825 0 1.413.588T22 6v4q-.825 0-1.412.588T20 12t.588 1.413T22 14v4q0 .825-.587 1.413T20 20m0-2v-2.55q-.925-.55-1.463-1.462T18 12t.538-1.987T20 8.55V6H4v2.55q.925.55 1.463 1.463T6 12t-.537 1.988T4 15.45V18zm-8-6'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:content-copy {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M9 18q-.825 0-1.412-.587T7 16V4q0-.825.588-1.412T9 2h9q.825 0 1.413.588T20 4v12q0 .825-.587 1.413T18 18zm-4 4q-.825 0-1.412-.587T3 20V6h2v14h11v2z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:content-copy-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M9 18q-.825 0-1.412-.587T7 16V4q0-.825.588-1.412T9 2h9q.825 0 1.413.588T20 4v12q0 .825-.587 1.413T18 18zm0-2h9V4H9zm-4 6q-.825 0-1.412-.587T3 20V6h2v14h11v2zm4-6V4z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:dashboard-rounded {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M14 9q-.425 0-.712-.288T13 8V4q0-.425.288-.712T14 3h6q.425 0 .713.288T21 4v4q0 .425-.288.713T20 9zM4 13q-.425 0-.712-.288T3 12V4q0-.425.288-.712T4 3h6q.425 0 .713.288T11 4v8q0 .425-.288.713T10 13zm10 8q-.425 0-.712-.288T13 20v-8q0-.425.288-.712T14 11h6q.425 0 .713.288T21 12v8q0 .425-.288.713T20 21zM4 21q-.425 0-.712-.288T3 20v-4q0-.425.288-.712T4 15h6q.425 0 .713.288T11 16v4q0 .425-.288.713T10 21z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:donut-small-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M13.025 2.05q3.575.35 6.088 2.863T21.975 11h-7.15q-.225-.65-.687-1.137t-1.113-.713zm2 2.55V8q.275.225.525.475t.475.525h3.4q-.6-1.5-1.75-2.65t-2.65-1.75m-4-2.55v7.1q-.9.325-1.45 1.113T9.025 12t.55 1.713t1.45 1.087v7.15q-3.85-.375-6.425-3.225T2.025 12T4.6 5.275t6.425-3.225m-2 2.55q-2.275.875-3.637 2.9T4.024 12t1.363 4.5t3.637 2.95V16q-.95-.725-1.475-1.763T7.025 12t.525-2.238T9.025 8zm5.8 8.4h7.15q-.35 3.575-2.863 6.088t-6.087 2.862V14.8q.65-.225 1.113-.687T14.825 13m1.2 2q-.2.275-.462.525t-.538.475v3.4q1.5-.6 2.65-1.75t1.75-2.65zm0 0'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:download-2-rounded {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M5 20h14q.425 0 .713.288T20 21t-.288.713T19 22H5q-.425 0-.712-.288T4 21t.288-.712T5 20m7-2.625q-.225 0-.437-.1t-.363-.3l-4.95-6.35q-.375-.5-.1-1.062T7.05 9H9V3q0-.425.288-.712T10 2h4q.425 0 .713.288T15 3v6h1.95q.625 0 .9.563t-.1 1.062l-4.95 6.35q-.15.2-.363.3t-.437.1'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:exit-to-app-rounded {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M5 21q-.825 0-1.412-.587T3 19v-3q0-.425.288-.712T4 15t.713.288T5 16v3h14V5H5v3q0 .425-.288.713T4 9t-.712-.288T3 8V5q0-.825.588-1.412T5 3h14q.825 0 1.413.588T21 5v14q0 .825-.587 1.413T19 21zm6.65-8H4q-.425 0-.712-.288T3 12t.288-.712T4 11h7.65L9.8 9.15q-.3-.3-.288-.7t.288-.7q.3-.3.713-.312t.712.287L14.8 11.3q.15.15.213.325t.062.375t-.062.375t-.213.325l-3.575 3.575q-.3.3-.712.288T9.8 16.25q-.275-.3-.288-.7t.288-.7z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:featured-play-list-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M6 13h9v-2H6zm0-3h9V8H6zM4 20q-.825 0-1.412-.587T2 18V6q0-.825.588-1.412T4 4h16q.825 0 1.413.588T22 6v12q0 .825-.587 1.413T20 20zm0-2h16V6H4zm0 0V6z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:finance-mode-rounded {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M8 11.75V7.5q0-.625.438-1.062T9.5 6t1.063.438T11 7.5v4.25q0 .625-.437 1.063T9.5 13.25t-1.062-.437T8 11.75m5-.225V3.5q0-.625.438-1.062T14.5 2t1.063.438T16 3.5v8.025q0 .75-.462 1.125t-1.038.375t-1.037-.375T13 11.525m-10 3.45V11.5q0-.625.438-1.062T4.5 10t1.063.438T6 11.5v3.475q0 .75-.462 1.125t-1.038.375t-1.037-.375T3 14.975m2.4 6.075q-.65 0-.913-.612T4.7 19.35l4.1-4.1q.275-.275.663-.3t.687.25L13 17.65l5.6-5.6H18q-.425 0-.712-.288T17 11.05t.288-.712t.712-.288h3q.425 0 .713.288t.287.712v3q0 .425-.288.713T21 15.05t-.712-.288T20 14.05v-.6l-6.25 6.25q-.275.275-.663.3t-.687-.25L9.55 17.3L6.1 20.75q-.125.125-.312.213t-.388.087'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:fitbit-arrow-downward-sharp {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m12 18l-6-6l1.4-1.4l3.6 3.575V6h2v8.175l3.6-3.575L18 12Z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:globe {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 22q-2.075 0-3.9-.788t-3.175-2.137T2.788 15.9T2 12t.788-3.9t2.137-3.175T8.1 2.788T12 2t3.9.788t3.175 2.137T21.213 8.1T22 12t-.788 3.9t-2.137 3.175t-3.175 2.138T12 22m0-2q3.35 0 5.675-2.325T20 12q0-.175-.012-.363t-.013-.312q-.125.725-.675 1.2T18 13h-2q-.825 0-1.412-.587T14 11v-1h-4V8q0-.825.588-1.412T12 6h1q0-.575.313-1.012t.762-.713q-.5-.125-1.012-.2T12 4Q8.65 4 6.325 6.325T4 12h5q1.65 0 2.825 1.175T13 16v1h-3v2.75q.5.125.988.188T12 20'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:globe-asia-sharp {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m11.8 20.025l.15-4.225l3.05-3h1.95v1.85l2.275.35q.275-.7.438-1.45t.162-1.55q0-2.225-1.112-4.062T15.8 5.05V8h-3v3h-2v3H8.775L6.8 11h-1v1l-1.775 1.975q.65 2.6 2.813 4.325t4.962 1.725m4-6.025h-3v-2h3zm0-6h2.025l-1 3h-2.05zm-4 14q-2.075 0-3.9-.788t-3.175-2.137T2.588 15.9T1.8 12t.788-3.9t2.137-3.175T7.9 2.788T11.8 2t3.9.788t3.175 2.137T21.013 8.1T21.8 12t-.788 3.9t-2.137 3.175t-3.175 2.138t-3.9.787'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:google-guarantee {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12.025 21.025q-3.425 0-5.725-2.475T4 12.725V5.5q0-.825.588-1.413Q5.175 3.5 6 3.5h12q.825 0 1.413.587Q20 4.675 20 5.5v1.75q0 .4-.15.762q-.15.363-.425.638l-5.775 5.775q-.575.575-1.412.575q-.838 0-1.413-.575L8 11.6l1.4-1.425L12.25 13L18 7.25V5.5H6v7.3q0 2.55 1.725 4.375Q9.45 19 12.025 19q2.5 0 4.237-1.75Q18 15.5 18 13h2q0 3.35-2.312 5.688q-2.313 2.337-5.663 2.337Z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:group {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M1 20v-2.8q0-.85.438-1.562T2.6 14.55q1.55-.775 3.15-1.162T9 13t3.25.388t3.15 1.162q.725.375 1.163 1.088T17 17.2V20zm18 0v-3q0-1.1-.612-2.113T16.65 13.15q1.275.15 2.4.513t2.1.887q.9.5 1.375 1.112T23 17v3zM9 12q-1.65 0-2.825-1.175T5 8t1.175-2.825T9 4t2.825 1.175T13 8t-1.175 2.825T9 12m10-4q0 1.65-1.175 2.825T15 12q-.275 0-.7-.062t-.7-.138q.675-.8 1.038-1.775T15 8t-.362-2.025T13.6 4.2q.35-.125.7-.163T15 4q1.65 0 2.825 1.175T19 8'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:group-work {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M8 16q.825 0 1.413-.587T10 14t-.587-1.412T8 12t-1.412.588T6 14t.588 1.413T8 16m8 0q.825 0 1.413-.587T18 14t-.587-1.412T16 12t-1.412.588T14 14t.588 1.413T16 16m-4-6q.825 0 1.413-.587T14 8t-.587-1.412T12 6t-1.412.588T10 8t.588 1.413T12 10m0 12q-2.075 0-3.9-.788t-3.175-2.137T2.788 15.9T2 12t.788-3.9t2.137-3.175T8.1 2.788T12 2t3.9.788t3.175 2.137T21.213 8.1T22 12t-.788 3.9t-2.137 3.175t-3.175 2.138T12 22'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:health-and-safety-rounded {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M10.5 13v1.5q0 .425.288.713t.712.287h1q.425 0 .713-.288t.287-.712V13H15q.425 0 .713-.288T16 12v-1q0-.425-.288-.712T15 10h-1.5V8.5q0-.425-.288-.712T12.5 7.5h-1q-.425 0-.712.288T10.5 8.5V10H9q-.425 0-.712.288T8 11v1q0 .425.288.713T9 13zm1.5 8.9q-.175 0-.325-.025t-.3-.075Q8 20.675 6 17.637T4 11.1V6.375q0-.625.363-1.125t.937-.725l6-2.25q.35-.125.7-.125t.7.125l6 2.25q.575.225.938.725T20 6.375V11.1q0 3.5-2 6.538T12.625 21.8q-.15.05-.3.075T12 21.9'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:home {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M4 21V9l8-6l8 6v12h-6v-7h-4v7z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:home-app-logo {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M4.5 21q-.625 0-1.062-.437T3 19.5v-1.9l4-3.55V21zM8 21v-4h8v4zm9 0v-8.2L12.725 9l3.025-2.675l4.75 4.225q.25.225.375.513t.125.612V19.5q0 .625-.437 1.063T19.5 21zM3 16.25v-4.575q0-.325.125-.625t.375-.5L11 3.9q.2-.2.463-.287T12 3.525t.538.088T13 3.9l2 1.775z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:info-rounded {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 17q.425 0 .713-.288T13 16v-4q0-.425-.288-.712T12 11t-.712.288T11 12v4q0 .425.288.713T12 17m0-8q.425 0 .713-.288T13 8t-.288-.712T12 7t-.712.288T11 8t.288.713T12 9m0 13q-2.075 0-3.9-.788t-3.175-2.137T2.788 15.9T2 12t.788-3.9t2.137-3.175T8.1 2.788T12 2t3.9.788t3.175 2.137T21.213 8.1T22 12t-.788 3.9t-2.137 3.175t-3.175 2.138T12 22'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:keyboard-double-arrow-right {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M9.575 12L5 7.4L6.4 6l6 6l-6 6L5 16.6zm6.6 0L11.6 7.4L13 6l6 6l-6 6l-1.4-1.4z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:language {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 22q-2.05 0-3.875-.788t-3.187-2.15t-2.15-3.187T2 12q0-2.075.788-3.887t2.15-3.175t3.187-2.15T12 2q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 12q0 2.05-.788 3.875t-2.15 3.188t-3.175 2.15T12 22m0-2.05q.65-.9 1.125-1.875T13.9 16h-3.8q.3 1.1.775 2.075T12 19.95m-2.6-.4q-.45-.825-.787-1.713T8.05 16H5.1q.725 1.25 1.813 2.175T9.4 19.55m5.2 0q1.4-.45 2.488-1.375T18.9 16h-2.95q-.225.95-.562 1.838T14.6 19.55M4.25 14h3.4q-.075-.5-.112-.987T7.5 12t.038-1.012T7.65 10h-3.4q-.125.5-.187.988T4 12t.063 1.013t.187.987m5.4 0h4.7q.075-.5.113-.987T14.5 12t-.038-1.012T14.35 10h-4.7q-.075.5-.112.988T9.5 12t.038 1.013t.112.987m6.7 0h3.4q.125-.5.188-.987T20 12t-.062-1.012T19.75 10h-3.4q.075.5.113.988T16.5 12t-.038 1.013t-.112.987m-.4-6h2.95q-.725-1.25-1.812-2.175T14.6 4.45q.45.825.788 1.713T15.95 8M10.1 8h3.8q-.3-1.1-.775-2.075T12 4.05q-.65.9-1.125 1.875T10.1 8m-5 0h2.95q.225-.95.563-1.838T9.4 4.45Q8 4.9 6.912 5.825T5.1 8'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:library-books-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M10 14h4v-2h-4zm0-3h8V9h-8zm0-3h8V6h-8zM8 18q-.825 0-1.412-.587T6 16V4q0-.825.588-1.412T8 2h12q.825 0 1.413.588T22 4v12q0 .825-.587 1.413T20 18zm0-2h12V4H8zm-4 6q-.825 0-1.412-.587T2 20V6h2v14h14v2zM8 4v12z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:lightning-stand {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 22q-3.425 0-5.212-.888T5 18.5q0-.725.325-1.325T6.3 16.15q-.15.2-.237.488t-.088.637q0 .95.688 1.5t1.65.825t1.987.338T12 20t1.7-.062t1.988-.338t1.65-.825t.687-1.5q0-.35-.088-.637t-.237-.488q.65.425.975 1.025T19 18.5q0 1.725-1.787 2.613T12 22m0-3q-2.3 0-3.65-.537T7 17q0-.875 1.388-1.437T12 15q2.3 0 3.65.538T17 17t-1.35 1.463T12 19m-1-5V9H9l4-7v5h2z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:list-alt-outline-sharp {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M7 17h2v-2H7zm0-4h2v-2H7zm0-4h2V7H7zm4 8h6v-2h-6zm0-4h6v-2h-6zm0-4h6V7h-6zM3 21V3h18v18zm2-2h14V5H5zm0 0V5z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:local-activity-rounded {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m12 13.9l1.5 1.15q.275.225.6.013t.2-.563l-.6-1.9l1.675-1.3q.275-.225.15-.563t-.475-.337H13.1l-.625-1.925q-.125-.35-.475-.35t-.475.35L10.9 10.4H8.925q-.35 0-.462.338t.162.562l1.625 1.3l-.6 1.925q-.125.35.175.563t.6-.013zM4 20q-.825 0-1.412-.587T2 18v-3.375q0-.275.175-.475t.45-.25q.6-.2.988-.725T4 12t-.387-1.175t-.988-.725q-.275-.05-.45-.25T2 9.375V6q0-.825.588-1.412T4 4h16q.825 0 1.413.588T22 6v3.375q0 .275-.175.475t-.45.25q-.6.2-.987.725T20 12t.388 1.175t.987.725q.275.05.45.25t.175.475V18q0 .825-.587 1.413T20 20z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:lock-open-outline-sharp {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M4 22V8h11V6q0-1.25-.875-2.125T12 3t-2.125.875T9 6H7q0-2.075 1.463-3.537T12 1t3.538 1.463T17 6v2h3v14zm2-2h12V10H6zm6-3q.825 0 1.413-.587T14 15t-.587-1.412T12 13t-1.412.588T10 15t.588 1.413T12 17m-6 3V10z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:mail-outline-rounded {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M4 20q-.825 0-1.412-.587T2 18V6q0-.825.588-1.412T4 4h16q.825 0 1.413.588T22 6v12q0 .825-.587 1.413T20 20zM20 8l-7.475 4.675q-.125.075-.262.113t-.263.037t-.262-.037t-.263-.113L4 8v10h16zm-8 3l8-5H4zM4 8v.25v-1.475v.025V6v.8v-.012V8.25zv10z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:mail-sharp {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M2 20V4h20v16zm10-7l8-5V6l-8 5l-8-5v2z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:newsmode-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M4 21q-.825 0-1.412-.587T2 19V5q0-.825.588-1.412T4 3h16q.825 0 1.413.588T22 5v14q0 .825-.587 1.413T20 21zm0-2h16V5H4zm2-2h12v-2H6zm0-4h4V7H6zm6 0h6v-2h-6zm0-4h6V7h-6zM4 19V5z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:other-houses {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M4 21v-9.375L2.2 13L1 11.4L12 3l11 8.4l-1.2 1.575l-1.8-1.35V21zm4-6q-.425 0-.712-.288T7 14t.288-.712T8 13t.713.288T9 14t-.288.713T8 15m4 0q-.425 0-.712-.288T11 14t.288-.712T12 13t.713.288T13 14t-.288.713T12 15m4 0q-.425 0-.712-.288T15 14t.288-.712T16 13t.713.288T17 14t-.288.713T16 15'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:other-houses-rounded {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M4 19v-7.375L3 12.4q-.35.25-.75.2t-.65-.4t-.187-.75t.387-.65l8.975-6.875q.275-.2.588-.3t.637-.1t.638.1t.587.3l9 6.875q.325.25.375.65t-.2.75q-.25.325-.65.375t-.725-.2L20 11.625V19q0 .825-.587 1.413T18 21H6q-.825 0-1.412-.587T4 19m4-4q.425 0 .713-.288T9 14t-.288-.712T8 13t-.712.288T7 14t.288.713T8 15m4 0q.425 0 .713-.288T13 14t-.288-.712T12 13t-.712.288T11 14t.288.713T12 15m4 0q.425 0 .713-.288T17 14t-.288-.712T16 13t-.712.288T15 14t.288.713T16 15'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:playlist-add-check-circle-rounded {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m14.05 15.55l-.7-.7q-.3-.3-.712-.312t-.713.287t-.3.713t.3.712l1.425 1.425q.3.3.7.3t.7-.3l3.575-3.575q.3-.3.288-.7t-.313-.7q-.3-.275-.7-.287t-.7.287zM8 15h1q.425 0 .713-.288T10 14t-.288-.712T9 13H8q-.425 0-.712.288T7 14t.288.713T8 15m0-3h5q.425 0 .713-.288T14 11t-.288-.712T13 10H8q-.425 0-.712.288T7 11t.288.713T8 12m0-3h5q.425 0 .713-.288T14 8t-.288-.712T13 7H8q-.425 0-.712.288T7 8t.288.713T8 9m4 13q-2.075 0-3.9-.788t-3.175-2.137T2.788 15.9T2 12t.788-3.9t2.137-3.175T8.1 2.788T12 2t3.9.788t3.175 2.137T21.213 8.1T22 12t-.788 3.9t-2.137 3.175t-3.175 2.138T12 22'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:policy {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 22q-3.475-.875-5.738-3.988T4 11.1V5l8-3l8 3v6.1q0 1.575-.413 3.063T18.4 17l-2.95-2.95q.275-.475.413-.987T16 12q0-1.65-1.175-2.825T12 8T9.175 9.175T8 12t1.175 2.825T12 16q.525 0 1.038-.137T14 15.45l3.225 3.2q-1.05 1.225-2.363 2.1T12 22m0-8q-.825 0-1.412-.587T10 12t.588-1.412T12 10t1.413.588T14 12t-.587 1.413T12 14'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:real-estate-agent {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M7 20.025V11h1.6q.175 0 .35.038t.35.087l6.925 2.575q.35.125.563.45t.212.675q0 .525-.363.85T15.8 16h-2.625q-.125 0-.187-.012t-.163-.063l-1.6-.625l-.325.975l1.925.675q.05.025.15.038t.175.012H20q.8 0 1.4.575T22 19l-7.975 3zM1 22V11h4v11zM14.5 8h1V7h-1zm-2 0h1V7h-1zm2 2h1V9h-1zm-2 0h1V9h-1zm6.025 4q-.35-.825-1-1.45t-1.6-.975L9 9H7V6.5l7-5l7 5V14z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:receipt {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M3 22V2l1.5 1.5L6 2l1.5 1.5L9 2l1.5 1.5L12 2l1.5 1.5L15 2l1.5 1.5L18 2l1.5 1.5L21 2v20l-1.5-1.5L18 22l-1.5-1.5L15 22l-1.5-1.5L12 22l-1.5-1.5L9 22l-1.5-1.5L6 22l-1.5-1.5zm3-5h12v-2H6zm0-4h12v-2H6zm0-4h12V7H6z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:straighten {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M4 18q-.825 0-1.412-.587T2 16V8q0-.825.588-1.412T4 6h3v6h2V6h2v6h2V6h2v6h2V6h3q.825 0 1.413.588T22 8v8q0 .825-.587 1.413T20 18z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-material-symbols\:trending-up {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M3.4 18L2 16.6l7.4-7.45l4 4L18.6 8H16V6h6v6h-2V9.4L13.4 16l-4-4z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mdi-eye-off-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M2 5.27L3.28 4L20 20.72L18.73 22l-3.08-3.08c-1.15.38-2.37.58-3.65.58c-5 0-9.27-3.11-11-7.5c.69-1.76 1.79-3.31 3.19-4.54zM12 9a3 3 0 0 1 3 3a3 3 0 0 1-.17 1L11 9.17A3 3 0 0 1 12 9m0-4.5c5 0 9.27 3.11 11 7.5a11.8 11.8 0 0 1-4 5.19l-1.42-1.43A9.86 9.86 0 0 0 20.82 12A9.82 9.82 0 0 0 12 6.5c-1.09 0-2.16.18-3.16.5L7.3 5.47c1.44-.62 3.03-.97 4.7-.97M3.18 12A9.82 9.82 0 0 0 12 17.5c.69 0 1.37-.07 2-.21L11.72 15A3.064 3.064 0 0 1 9 12.28L5.6 8.87c-.99.85-1.82 1.91-2.42 3.13'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mdi-eye-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 9a3 3 0 0 1 3 3a3 3 0 0 1-3 3a3 3 0 0 1-3-3a3 3 0 0 1 3-3m0-4.5c5 0 9.27 3.11 11 7.5c-1.73 4.39-6 7.5-11 7.5S2.73 16.39 1 12c1.73-4.39 6-7.5 11-7.5M3.18 12a9.821 9.821 0 0 0 17.64 0a9.821 9.821 0 0 0-17.64 0'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mdi\:arrow-right-drop-circle {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M2 12A10 10 0 0 1 12 2a10 10 0 0 1 10 10a10 10 0 0 1-10 10A10 10 0 0 1 2 12m8 5l5-5l-5-5z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mdi\:book-lock {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M14.2 14.5v.24c-.7.6-1.2 1.5-1.2 2.46v3.5c0 .46.1.9.27 1.3H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v6.11c-.32-.07-.66-.11-1-.11c-2.6 0-4.8 2.06-4.8 4.5m8.8 2.8v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mdi\:book-lock-open {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M14.2 13.5v1.24c-.7.6-1.2 1.5-1.2 2.46v3.5c0 .46.1.9.27 1.3H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v5.11c-.32-.07-.66-.11-1-.11c-2.6 0-4.8 2.06-4.8 4.5m7.6 2.5h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mdi\:book-multiple-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M19 2a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 2h-3v6l-2.5-2.25L11 10V4H9v12h10M3 20a2 2 0 0 0 2 2h12v-2H5V6H3Z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mdi\:bullhorn-variant-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M20 2v2L4 8V6H2v12h2v-2l2 .5v2C6 20.4 7.6 22 9.5 22s3.5-1.6 3.5-3.5v-.2l7 1.7v2h2V2zm-9 16.5c0 .8-.7 1.5-1.5 1.5S8 19.3 8 18.5V17l3 .8zm9-.5L4 14v-4l16-4z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mdi\:check {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M21 7L9 19l-5.5-5.5l1.41-1.41L9 16.17L19.59 5.59z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mdi\:dharmachakra {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M11 2v1c-1.73.2-3.31.9-4.6 1.94l-.76-.76L4.22 5.6l.78.75A9.04 9.04 0 0 0 3 11H2v2h1c.21 1.68.9 3.26 2 4.56l-.78.76l1.42 1.42l.75-.74A9.3 9.3 0 0 0 11 21v1h2v-1a9.27 9.27 0 0 0 4.6-2l.76.74l1.42-1.42l-.78-.75c1.1-1.3 1.79-2.89 2-4.57h1v-2h-1a9 9 0 0 0-2-4.64l.78-.76l-1.42-1.42l-.75.76A9 9 0 0 0 13 3V2zm0 3v3l-1 .5l-2.19-2.15c.91-.68 2-1.18 3.19-1.35m2 0c1.16.18 2.26.64 3.2 1.35L14 8.5L13 8zM6.4 7.76L8.5 10L8 11H5c.16-1.16.7-2.3 1.39-3.25zm11.2 0c.73.95 1.21 2.06 1.4 3.24h-3l-.5-1l2.11-2.24zM12 10c1.12 0 2 .88 2 2s-.88 2-2 2s-2-.88-2-2s.88-2 2-2m-7 3h3l.57 1l-2.18 2.15C5.67 15.24 5.19 14.16 5 13m11 0h3a7 7 0 0 1-1.39 3.16L15.5 14zm-6 2.5l1 .5v3a7.04 7.04 0 0 1-3.2-1.43zm4 0l2.19 2.07c-.91.68-2 1.26-3.19 1.43v-3z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mdi\:download-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M13 5v6h1.17L12 13.17L9.83 11H11V5zm2-2H9v6H5l7 7l7-7h-4zm4 15H5v2h14z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mdi\:facebook-box {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath d='M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m13 2h-2.5A3.5 3.5 0 0 0 12 8.5V11h-2v3h2v7h3v-7h3v-3h-3V9a1 1 0 0 1 1-1h2V5z' fill='currentColor'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mdi\:home-circle {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M19.07 4.93C17.22 3 14.66 1.96 12 2c-2.66-.04-5.21 1-7.06 2.93C3 6.78 1.96 9.34 2 12c-.04 2.66 1 5.21 2.93 7.06C6.78 21 9.34 22.04 12 22c2.66.04 5.21-1 7.06-2.93C21 17.22 22.04 14.66 22 12c.04-2.66-1-5.22-2.93-7.07M17 12v6h-3.5v-5h-3v5H7v-6H5l7-7l7.5 7z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mdi\:home-circle-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 20c-4.4 0-8-3.6-8-8s3.6-8 8-8s8 3.6 8 8s-3.6 8-8 8m0-18C6.5 2 2 6.5 2 12s4.5 10 10 10s10-4.5 10-10S17.5 2 12 2m-1 12h2v3h3v-5h2l-6-5l-6 5h2v5h3z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mdi\:security {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 12h7c-.53 4.11-3.28 7.78-7 8.92zH5V6.3l7-3.11M12 1L3 5v6c0 5.55 3.84 10.73 9 12c5.16-1.27 9-6.45 9-12V5z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mdi\:state-machine {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M6.27 17.05A2.991 2.991 0 0 1 4 22c-1.66 0-3-1.34-3-3s1.34-3 3-3c.18 0 .36 0 .53.05l3.07-5.36l-1.74-.99l4.09-1.12l1.12 4.09l-1.74-.99zM20 16c-1.3 0-2.4.84-2.82 2H11v-2l-3 3l3 3v-2h6.18c.42 1.16 1.52 2 2.82 2c1.66 0 3-1.34 3-3s-1.34-3-3-3m-8-8c.18 0 .36 0 .53-.05l3.07 5.36l-1.74.99l4.09 1.12l1.12-4.09l-1.74.99l-3.06-5.37A2.991 2.991 0 0 0 12 2c-1.66 0-3 1.34-3 3s1.34 3 3 3'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mdi\:transfer-right {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M3 8h2v8H3zm4 0h2v8H7zm4 0h2v8h-2zm4 11.25V4.75L22.25 12z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mingcute\:announcement-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='currentColor' d='M15.992 3.013C17.326 2.236 19 3.197 19 4.741V8a3 3 0 1 1 0 6v3c0 1.648-1.881 2.589-3.2 1.6l-2.06-1.546A8.66 8.66 0 0 0 10 15.446v2.844a2.71 2.71 0 0 1-5.316.744l-1.57-5.496a4.7 4.7 0 0 1 3.326-7.73l3.018-.168a9.34 9.34 0 0 0 4.19-1.259zM5.634 15.078l.973 3.407A.71.71 0 0 0 8 18.29v-3.01l-1.56-.087a5 5 0 0 1-.806-.115M20 11a1 1 0 0 0-1-1v2a1 1 0 0 0 1-1'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mingcute\:download-3-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='currentColor' d='M12 11a1 1 0 0 1 1 1v6.584l1.293-1.292a1 1 0 0 1 1.414 1.416l-2.824 2.819c-.253.252-.5.473-.883.473c-.336 0-.566-.169-.788-.38l-2.919-2.912a1 1 0 0 1 1.414-1.416L11 18.584V12a1 1 0 0 1 1-1m-.5-9c2.784 0 5.16 1.75 6.086 4.212a6.003 6.003 0 0 1 .395 11.453a3 3 0 0 0-.858-1.785a3 3 0 0 0-1.914-.873L15 15v-3a3 3 0 0 0-5.995-.176L9 12v3a3 3 0 0 0-2.123.88a3 3 0 0 0-.875 2.02A5.002 5.002 0 0 1 5 8.416A6.5 6.5 0 0 1 11.5 2'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mingcute\:game-2-line {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='currentColor' d='M17 4c.763 0 1.394.434 1.856.89c.481.473.922 1.109 1.314 1.81c.787 1.406 1.472 3.243 1.925 5.058c.45 1.801.699 3.682.54 5.161C22.475 18.404 21.71 20 20 20c-1.476 0-2.652-.76-3.614-1.531l-.351-.289l-.492-.415l-.444-.368C14.08 16.572 13.175 16 12 16s-2.08.572-3.099 1.397l-.444.368l-.492.415l-.35.289C6.651 19.24 5.475 20 4 20c-1.711 0-2.476-1.596-2.635-3.081c-.158-1.48.09-3.36.54-5.161c.453-1.815 1.138-3.652 1.925-5.059c.392-.7.833-1.336 1.314-1.81C5.606 4.434 6.237 4 7 4c.515 0 1.018.123 1.513.27l.592.181q.148.046.295.087c.865.248 1.75.462 2.6.462s1.735-.214 2.6-.462l.885-.267C15.983 4.124 16.49 4 17 4m0 2c-.383 0-.783.116-1.171.243l-.458.151l-.221.068c-.885.252-2 .538-3.15.538s-2.265-.286-3.15-.538l-.22-.068l-.459-.151C7.783 6.115 7.383 6 7 6c-.418.078-.793.585-1.076 1.055l-.158.275l-.19.346c-.682 1.218-1.31 2.88-1.73 4.567c-.395 1.576-.587 3.086-.514 4.21l.026.293l.02.176l.03.208c.069.401.218.87.592.87c.812 0 1.49-.404 2.333-1.074l.403-.328l.76-.636l.344-.28C8.904 14.839 10.235 14 12 14s3.096.84 4.16 1.682l.345.28l.76.636l.402.328C18.51 17.596 19.187 18 20 18c.34 0 .494-.387.571-.759l.038-.218l.037-.317c.123-1.146-.067-2.765-.491-4.463c-.386-1.546-.946-3.072-1.562-4.254l-.359-.66l-.158-.273C17.793 6.585 17.418 6.078 17 6M8.5 8a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0-5m7 0a1 1 0 0 1 .993.883L16.5 9v.5h.5a1 1 0 0 1 .117 1.993L17 11.5h-.5v.5a1 1 0 0 1-1.993.117L14.5 12v-.5H14a1 1 0 0 1-.117-1.993L14 9.5h.5V9a1 1 0 0 1 1-1m-7 2a.5.5 0 1 0 0 1a.5.5 0 0 0 0-1'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mingcute\:home-6-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='currentColor' d='M13.228 2.688a2 2 0 0 0-2.456 0l-8.384 6.52C1.636 9.795 2.05 11 3.003 11H4v8a2 2 0 0 0 2 2h5v-7a1 1 0 0 1 2 0v7h5a2 2 0 0 0 2-2v-8h.997c.952 0 1.368-1.205.615-1.791z'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mingcute\:invite-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='currentColor' d='M17 3a3 3 0 0 1 2.995 2.824L20 6v4.35l.594-.264c.614-.273 1.322.15 1.4.798L22 11v8a2 2 0 0 1-1.85 1.995L20 21H4a2 2 0 0 1-1.995-1.85L2 19v-8c0-.672.675-1.147 1.297-.955l.11.041l.593.264V6a3 3 0 0 1 2.824-2.995L7 3zm0 2H7a1 1 0 0 0-1 1v5.239l6 2.667l6-2.667V6a1 1 0 0 0-1-1m-5 3a1 1 0 0 1 .117 1.993L12 10h-2a1 1 0 0 1-.117-1.993L10 8z'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mingcute\:message-1-line {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='currentColor' d='M19 3a3 3 0 0 1 2.995 2.824L22 6v10a3 3 0 0 1-2.824 2.995L19 19h-3.697l-2.61 1.74a1.25 1.25 0 0 1-1.257.075l-.13-.075L8.698 19H5a3 3 0 0 1-2.995-2.824L2 16V6a3 3 0 0 1 2.824-2.995L5 3zm0 2H5a1 1 0 0 0-.993.883L4 6v10a1 1 0 0 0 .883.993L5 17h3.697a2 2 0 0 1 .965.248l.145.088L12 18.798l2.193-1.462a2 2 0 0 1 .941-.329l.169-.007H19a1 1 0 0 0 .993-.883L20 16V6a1 1 0 0 0-.883-.993zM8.5 10a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0-3m7 0a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0-3'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mingcute\:profile-line {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='currentColor' d='M20 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm0 2H4v14h16zm-3 10a1 1 0 0 1 .117 1.993L17 17H7a1 1 0 0 1-.117-1.993L7 15zm-7-8a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2zm7 4a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2zm-7-2H8v2h2zm7-2a1 1 0 0 1 .117 1.993L17 9h-3a1 1 0 0 1-.117-1.993L14 7z'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mingcute\:receive-money-line {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='currentColor' d='M17 2a3 3 0 0 1 3 3v12a1 1 0 0 1 .351 1.936l-8 3a1 1 0 0 1-.702 0l-8-3A1 1 0 0 1 4 17V5a3 3 0 0 1 3-3zm0 2H7a1 1 0 0 0-.993.883L6 5v12.682l6 2.25l6-2.25V5a1 1 0 0 0-.883-.993zm-5 1a1 1 0 0 1 .993.883L13 6v1h2a1 1 0 0 1 .117 1.993L15 9h-5a.5.5 0 0 0-.09.992L10 10h4a2.5 2.5 0 0 1 .164 4.995L14 15h-1v1a1 1 0 0 1-1.993.117L11 16v-1H9a1 1 0 0 1-.117-1.993L9 13h5a.5.5 0 0 0 .09-.992L14 12h-4a2.5 2.5 0 0 1-.164-4.995L10 7h1V6a1 1 0 0 1 1-1'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mingcute\:service-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='currentColor' d='M5 9a7 7 0 0 1 14 0v1.035c1.696.243 3 1.702 3 3.465v.25c0 1.775-1.531 3.331-3.332 3.248c-.74 2.12-2.622 3.549-4.653 3.911c-.47.172-1.026.091-1.515.091a1.5 1.5 0 0 1 0-3c.793 0 1.671-.115 2.207.609C16.003 17.992 17 16.689 17 15V9A5 5 0 0 0 7 9v6.25A1.75 1.75 0 0 1 5.25 17A3.25 3.25 0 0 1 2 13.75v-.25a3.5 3.5 0 0 1 3-3.465z'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mingcute\:stock-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='currentColor' d='M8 2a1 1 0 0 1 1 1v2a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3v4a1 1 0 1 1-2 0v-4a3 3 0 0 1-3-3V8a3 3 0 0 1 3-3V3a1 1 0 0 1 1-1m9 0a1 1 0 0 1 .993.883L18 3v4a3 3 0 0 1 2.995 2.824L21 10v6a3 3 0 0 1-2.824 2.995L18 19v2a1 1 0 0 1-1.993.117L16 21v-2a3 3 0 0 1-2.995-2.824L13 16v-6a3 3 0 0 1 2.824-2.995L16 7V3a1 1 0 0 1 1-1'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mingcute\:task-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='m12.594 23.258l-.012.002l-.071.035l-.02.004l-.014-.004l-.071-.036q-.016-.004-.024.006l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.016-.018m.264-.113l-.014.002l-.184.093l-.01.01l-.003.011l.018.43l.005.012l.008.008l.201.092q.019.005.029-.008l.004-.014l-.034-.614q-.005-.019-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.003-.011l.018-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='currentColor' d='M15 2a2 2 0 0 1 1.732 1H18a2 2 0 0 1 2 2v12a5 5 0 0 1-5 5H6a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h1.268A2 2 0 0 1 9 2zm-.176 7.379l-4.242 4.243l-1.415-1.415a1 1 0 0 0-1.414 1.414l2.05 2.051a1.1 1.1 0 0 0 1.556 0l4.88-4.879a1 1 0 1 0-1.415-1.414M14.5 4h-5a.5.5 0 0 0-.492.41L9 4.5v1a.5.5 0 0 0 .41.492L9.5 6h5a.5.5 0 0 0 .492-.41L15 5.5v-1a.5.5 0 0 0-.41-.492z'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mingcute\:user-3-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='currentColor' d='M12 13c2.396 0 4.575.694 6.178 1.672c.8.488 1.484 1.064 1.978 1.69c.486.615.844 1.351.844 2.138c0 .845-.411 1.511-1.003 1.986c-.56.45-1.299.748-2.084.956c-1.578.417-3.684.558-5.913.558s-4.335-.14-5.913-.558c-.785-.208-1.524-.506-2.084-.956C3.41 20.01 3 19.345 3 18.5c0-.787.358-1.523.844-2.139c.494-.625 1.177-1.2 1.978-1.69C7.425 13.695 9.605 13 12 13m0-11a5 5 0 1 1 0 10a5 5 0 0 1 0-10'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mingcute\:vip-1-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='currentColor' d='M17.42 3a2 2 0 0 1 1.649.868l.087.14L22.49 9.84a2 2 0 0 1-.208 2.283l-.114.123l-9.283 9.283a1.25 1.25 0 0 1-1.666.091l-.102-.09l-9.283-9.284a2 2 0 0 1-.4-2.257l.078-.15l3.333-5.832a2 2 0 0 1 1.572-1.001L6.58 3zM7.293 9.293a1 1 0 0 0 0 1.414l3.823 3.823a1.25 1.25 0 0 0 1.768 0l3.823-3.823a1 1 0 1 0-1.414-1.414L12 12.586L8.707 9.293a1 1 0 0 0-1.414 0'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mingcute\:wallet-4-line {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='currentColor' fill-rule='nonzero' d='M17 13a1.5 1.5 0 1 1-3 0a1.5 1.5 0 0 1 3 0'/%3E%3Cpath fill='currentColor' d='m4.813 5.728l11-3.143A2.5 2.5 0 0 1 19 4.989V6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8c0-1.045.835-1.993 1.813-2.272m11.55-1.22a.5.5 0 0 1 .637.48V6h-5.86zM5 8h14v10H5z'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-mingcute\:whatsapp-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='currentColor' d='M12 2C6.477 2 2 6.477 2 12c0 1.89.525 3.66 1.438 5.168L2.546 20.2A1.01 1.01 0 0 0 3.8 21.454l3.032-.892A9.96 9.96 0 0 0 12 22c5.523 0 10-4.477 10-10S17.523 2 12 2M9.738 14.263c2.023 2.022 3.954 2.289 4.636 2.314c1.037.038 2.047-.754 2.44-1.673a.7.7 0 0 0-.088-.703c-.548-.7-1.289-1.203-2.013-1.703a.71.71 0 0 0-.973.158l-.6.915a.23.23 0 0 1-.305.076c-.407-.233-1-.629-1.426-1.055s-.798-.992-1.007-1.373a.23.23 0 0 1 .067-.291l.924-.686a.71.71 0 0 0 .12-.94c-.448-.656-.97-1.49-1.727-2.043a.7.7 0 0 0-.684-.075c-.92.394-1.716 1.404-1.678 2.443c.025.682.292 2.613 2.314 4.636'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-nimbus\:user-group {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 16 16' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M5.1 7.93A2.87 2.87 0 0 0 7.87 5A2.88 2.88 0 0 0 5.1 2a2.88 2.88 0 0 0-2.78 3A2.88 2.88 0 0 0 5.1 7.93m0-4.67A1.62 1.62 0 0 1 6.62 5A1.63 1.63 0 0 1 5.1 6.68A1.63 1.63 0 0 1 3.58 5A1.62 1.62 0 0 1 5.1 3.26m7.19 5.05a2.39 2.39 0 0 0 2.3-2.46a2.39 2.39 0 0 0-2.3-2.47A2.39 2.39 0 0 0 10 5.85a2.39 2.39 0 0 0 2.29 2.46m0-3.68a1.15 1.15 0 0 1 1.05 1.22a1.15 1.15 0 0 1-1.05 1.21a1.15 1.15 0 0 1-1.06-1.21a1.15 1.15 0 0 1 1.06-1.22m-.07 4.93a3.85 3.85 0 0 0-3.07 1.51A5.21 5.21 0 0 0 5.1 9.18A5 5 0 0 0 0 14h1.25a3.72 3.72 0 0 1 3.85-3.57A3.71 3.71 0 0 1 8.94 14h1.25a4.5 4.5 0 0 0-.32-1.69a2.54 2.54 0 0 1 2.35-1.5a2.44 2.44 0 0 1 2.53 2.33V14H16v-.86a3.69 3.69 0 0 0-3.78-3.58'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ooui\:download {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 20 20' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M17 12v5H3v-5H1v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5z'/%3E%3Cpath fill='currentColor' d='M15 9h-4V1H9v8H5l5 6z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-pepicons-pop\:bulletin-notice {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 20 20' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='currentColor' fill-rule='evenodd' clip-rule='evenodd'%3E%3Cpath d='M0 7a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm18 0H2v11h16z'/%3E%3Cpath d='M5.75 9.5a.75.75 0 0 1 .75-.75h7a.75.75 0 0 1 0 1.5h-7a.75.75 0 0 1-.75-.75m-1 3a.75.75 0 0 1 .75-.75h9a.75.75 0 0 1 0 1.5h-9a.75.75 0 0 1-.75-.75m1 3a.75.75 0 0 1 .75-.75h7a.75.75 0 0 1 0 1.5h-7a.75.75 0 0 1-.75-.75m5.664-12.672a2 2 0 0 0-2.828 0l-3.879 3.88a1 1 0 1 1-1.414-1.415l3.879-3.879a4 4 0 0 1 5.656 0l3.88 3.879a1 1 0 0 1-1.415 1.414z'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ph-envelope-simple {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M224 48H32a8 8 0 0 0-8 8v136a16 16 0 0 0 16 16h176a16 16 0 0 0 16-16V56a8 8 0 0 0-8-8m-20.57 16L128 133.15L52.57 64ZM216 192H40V74.19l82.59 75.71a8 8 0 0 0 10.82 0L216 74.19z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ph-magnifying-glass-bold {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M232.49 215.51L185 168a92.12 92.12 0 1 0-17 17l47.53 47.54a12 12 0 0 0 17-17ZM44 112a68 68 0 1 1 68 68a68.07 68.07 0 0 1-68-68'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ph\:circle-bold {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M128 20a108 108 0 1 0 108 108A108.12 108.12 0 0 0 128 20m0 192a84 84 0 1 1 84-84a84.09 84.09 0 0 1-84 84'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ph\:coins-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M184 89.57V84c0-25.08-37.83-44-88-44S8 58.92 8 84v40c0 20.89 26.25 37.49 64 42.46V172c0 25.08 37.83 44 88 44s88-18.92 88-44v-40c0-20.7-25.42-37.32-64-42.43m-128 57.3C36.41 141.4 24 132.39 24 124v-14.07c8.16 5.78 19.09 10.44 32 13.57Zm80-23.37c12.91-3.13 23.84-7.79 32-13.57V124c0 8.39-12.41 17.4-32 22.87Zm-16 71.37c-19.59-5.47-32-14.48-32-22.87v-4.17c2.63.1 5.29.17 8 .17c3.88 0 7.67-.13 11.39-.35a122 122 0 0 0 12.61 3.76Zm0-44.62A163 163 0 0 1 96 152a163 163 0 0 1-24-1.75v-23.79A184 184 0 0 0 96 128a184 184 0 0 0 24-1.54Zm64 48a165.5 165.5 0 0 1-48 0V174.4a179.5 179.5 0 0 0 24 1.6a184 184 0 0 0 24-1.54ZM232 172c0 8.39-12.41 17.4-32 22.87V171.5c12.91-3.13 23.84-7.79 32-13.57Z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ph\:currency-dollar-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M160 152a16 16 0 0 1-16 16h-8v-32h8a16 16 0 0 1 16 16m72-24A104 104 0 1 1 128 24a104.11 104.11 0 0 1 104 104m-56 24a32 32 0 0 0-32-32h-8V88h4a16 16 0 0 1 16 16a8 8 0 0 0 16 0a32 32 0 0 0-32-32h-4v-8a8 8 0 0 0-16 0v8h-4a32 32 0 0 0 0 64h4v32h-8a16 16 0 0 1-16-16a8 8 0 0 0-16 0a32 32 0 0 0 32 32h8v8a8 8 0 0 0 16 0v-8h8a32 32 0 0 0 32-32m-76-48a16 16 0 0 0 16 16h4V88h-4a16 16 0 0 0-16 16'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ph\:download-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M74.34 85.66a8 8 0 0 1 11.32-11.32L120 108.69V24a8 8 0 0 1 16 0v84.69l34.34-34.35a8 8 0 0 1 11.32 11.32l-48 48a8 8 0 0 1-11.32 0ZM240 136v64a16 16 0 0 1-16 16H32a16 16 0 0 1-16-16v-64a16 16 0 0 1 16-16h52.4a4 4 0 0 1 2.83 1.17L111 145a24 24 0 0 0 34 0l23.8-23.8a4 4 0 0 1 2.8-1.2H224a16 16 0 0 1 16 16m-40 32a12 12 0 1 0-12 12a12 12 0 0 0 12-12'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ph\:house-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M224 120v96a8 8 0 0 1-8 8h-56a8 8 0 0 1-8-8v-52a4 4 0 0 0-4-4h-40a4 4 0 0 0-4 4v52a8 8 0 0 1-8 8H40a8 8 0 0 1-8-8v-96a16 16 0 0 1 4.69-11.31l80-80a16 16 0 0 1 22.62 0l80 80A16 16 0 0 1 224 120'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ph\:list-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M208 32H48a16 16 0 0 0-16 16v160a16 16 0 0 0 16 16h160a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16m-16 152H64a8 8 0 0 1 0-16h128a8 8 0 0 1 0 16m0-48H64a8 8 0 0 1 0-16h128a8 8 0 0 1 0 16m0-48H64a8 8 0 0 1 0-16h128a8 8 0 0 1 0 16'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ph\:password-light {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M46 56v144a6 6 0 0 1-12 0V56a6 6 0 0 1 12 0m94.58 56.41L118 119.74V96a6 6 0 0 0-12 0v23.74l-22.58-7.33a6 6 0 1 0-3.71 11.41l22.58 7.33l-14 19.21a6 6 0 1 0 9.7 7.06l14-19.21l14 19.21a6 6 0 0 0 9.7-7.06l-14-19.21l22.58-7.33a6 6 0 1 0-3.71-11.41Zm103.56 3.85a6 6 0 0 0-7.56-3.85L214 119.74V96a6 6 0 0 0-12 0v23.74l-22.58-7.33a6 6 0 1 0-3.71 11.41l22.58 7.33l-13.95 19.21a6 6 0 1 0 9.7 7.06l14-19.21l14 19.21a6 6 0 0 0 9.7-7.06l-13.95-19.21l22.58-7.33a6 6 0 0 0 3.77-7.56'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ph\:read-cv-logo-bold {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m211.48 35.32l-130.25-23a20 20 0 0 0-23.18 16.22l-29.75 169a20 20 0 0 0 16.22 23.16l130.25 23a20 20 0 0 0 3.52.31A20 20 0 0 0 198 227.46l29.75-169a20 20 0 0 0-16.27-23.14M175 219.36L52.63 197.75L81 36.64l122.37 21.61ZM91.9 67a12 12 0 0 1 13.9-9.73L173 69.14A12 12 0 0 1 171 93a12.6 12.6 0 0 1-2.1-.18L101.63 80.9A12 12 0 0 1 91.9 67M85 106.39a12 12 0 0 1 13.91-9.73l67.22 11.88a12 12 0 0 1-2.13 23.81a12.5 12.5 0 0 1-2.1-.18l-67.21-11.88a12 12 0 0 1-9.69-13.9m-7 39.39a12 12 0 0 1 13.9-9.73l33.64 5.95a12 12 0 0 1-2.07 23.82a11.6 11.6 0 0 1-2.1-.19l-33.61-5.93A12 12 0 0 1 78 145.78'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ph\:read-cv-logo-duotone {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='currentColor'%3E%3Cpath d='m215.88 56.39l-29.75 169a8 8 0 0 1-9.27 6.49l-130.25-23a8 8 0 0 1-6.49-9.26l29.75-169a8 8 0 0 1 9.27-6.49l130.25 23a8 8 0 0 1 6.49 9.26' opacity='.2'/%3E%3Cpath d='m210.78 39.25l-130.25-23A16 16 0 0 0 62 29.23l-29.75 169a16 16 0 0 0 13 18.53l130.25 23a16 16 0 0 0 18.54-13l29.75-169a16 16 0 0 0-13.01-18.51M178.26 224L48 201L77.75 32L208 55ZM89.34 58.42a8 8 0 0 1 9.27-6.48l83 14.65a8 8 0 0 1-1.39 15.88a8.4 8.4 0 0 1-1.4-.12l-83-14.66a8 8 0 0 1-6.48-9.27M83.8 89.94a8 8 0 0 1 9.27-6.49l83 14.66a8 8 0 0 1-1.4 15.89a7.6 7.6 0 0 1-1.41-.13l-83-14.65a8 8 0 0 1-6.46-9.28m-5.55 31.51a8 8 0 0 1 9.27-6.45l41.48 7.29a8 8 0 0 1-1.38 15.88a8.3 8.3 0 0 1-1.4-.12l-41.5-7.33a8 8 0 0 1-6.47-9.27'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ph\:sign-out-bold {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M124 216a12 12 0 0 1-12 12H48a12 12 0 0 1-12-12V40a12 12 0 0 1 12-12h64a12 12 0 0 1 0 24H60v152h52a12 12 0 0 1 12 12m108.49-96.49l-40-40a12 12 0 0 0-17 17L195 116h-83a12 12 0 0 0 0 24h83l-19.52 19.51a12 12 0 0 0 17 17l40-40a12 12 0 0 0 .01-17'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ph\:telegram-logo-bold {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M231.49 23.16a13 13 0 0 0-13.23-2.26L15.6 100.21a18.22 18.22 0 0 0 3.12 34.86L68 144.74V200a20 20 0 0 0 34.4 13.88l22.67-23.51L162.35 223a20 20 0 0 0 32.7-10.54l40.62-176.55a13 13 0 0 0-4.18-12.75m-92.08 54.36l-62.19 44.57l-34.43-6.75ZM92 190.06v-28.71l15 13.15Zm81.16 10.52l-73.88-64.77l106.31-76.18Z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ph\:thumbs-up {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M234 80.12A24 24 0 0 0 216 72h-56V56a40 40 0 0 0-40-40a8 8 0 0 0-7.16 4.42L75.06 96H32a16 16 0 0 0-16 16v88a16 16 0 0 0 16 16h172a24 24 0 0 0 23.82-21l12-96A24 24 0 0 0 234 80.12M32 112h40v88H32Zm191.94-15l-12 96a8 8 0 0 1-7.94 7H88v-94.11l36.71-73.43A24 24 0 0 1 144 56v24a8 8 0 0 0 8 8h64a8 8 0 0 1 7.94 9'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ph\:washing-machine-bold {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M160 80a16 16 0 1 1 16 16a16 16 0 0 1-16-16m72-36v168a20 20 0 0 1-20 20H44a20 20 0 0 1-20-20V44a20 20 0 0 1 20-20h168a20 20 0 0 1 20 20m-24 4H48v160h160Zm-68.49 75.51l-16 16a12 12 0 0 0 17 17l16-16a12 12 0 1 0-17-17m-15-16a12 12 0 0 0-17 0l-8 8a12 12 0 0 0 17 17l8-8a12 12 0 0 0-.02-17ZM128 196a68.05 68.05 0 0 0 67.19-78.52a12 12 0 0 0-23.72 3.69a44 44 0 1 1-36.64-36.64a12 12 0 0 0 3.69-23.72A68 68 0 1 0 128 196'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ri\:customer-service-2-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M21 8a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-1.062A8 8 0 0 1 12 23v-2a6 6 0 0 0 6-6V9A6 6 0 0 0 6 9v7H3a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1.062a8.001 8.001 0 0 1 15.876 0zM7.76 15.785l1.06-1.696A5.97 5.97 0 0 0 12 15a5.97 5.97 0 0 0 3.18-.911l1.06 1.696A7.96 7.96 0 0 1 12 17a7.96 7.96 0 0 1-4.24-1.215'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ri\:dashboard-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M3 12a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1zm0 8a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1zm10 0a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1zm1-17a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ri\:exchange-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12.005 22.003c-5.523 0-10-4.477-10-10s4.477-10 10-10s10 4.477 10 10s-4.477 10-10 10m0-13h-4v2h9l-5-5zm-5 4l5 5v-3h4v-2z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ri\:file-list-3-line {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M19 22H5a3 3 0 0 1-3-3V3a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v12h4v4a3 3 0 0 1-3 3m-1-5v2a1 1 0 1 0 2 0v-2zm-2 3V4H4v15a1 1 0 0 0 1 1zM6 7h8v2H6zm0 4h8v2H6zm0 4h5v2H6z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ri\:global-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M2.05 13h5.477a17.9 17.9 0 0 0 2.925 8.88A10.005 10.005 0 0 1 2.049 13m0-2a10.005 10.005 0 0 1 8.402-8.881a17.9 17.9 0 0 0-2.925 8.88zm19.9 0h-5.477a17.9 17.9 0 0 0-2.925-8.881a10.005 10.005 0 0 1 8.403 8.88m0 2a10.005 10.005 0 0 1-8.402 8.88A17.9 17.9 0 0 0 16.473 13zM9.53 13h4.94A15.9 15.9 0 0 1 12 20.592A15.9 15.9 0 0 1 9.53 13m0-2A15.9 15.9 0 0 1 12 3.408A15.9 15.9 0 0 1 14.47 11z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ri\:group-2-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M10 19.748V16.4c0-1.283.995-2.292 2.467-2.868A8.5 8.5 0 0 0 9.5 13c-1.89 0-3.636.617-5.047 1.66A8.02 8.02 0 0 0 10 19.748m8.88-3.662C18.485 15.553 17.17 15 15.5 15c-2.006 0-3.5.797-3.5 1.4V20a8 8 0 0 0 6.88-3.914M9.55 11.5a2.25 2.25 0 1 0 0-4.5a2.25 2.25 0 0 0 0 4.5m5.95 1a2 2 0 1 0 0-4a2 2 0 0 0 0 4M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10s-4.477 10-10 10'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ri\:menu-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M3 4h18v2H3zm0 7h18v2H3zm0 7h18v2H3z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ri\:message-2-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M6.455 19L2 22.5V4a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1zM7 10v2h2v-2zm4 0v2h2v-2zm4 0v2h2v-2z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ri\:money-dollar-box-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M3.005 3.003h18a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-18a1 1 0 0 1-1-1v-16a1 1 0 0 1 1-1m5.5 11v2h2.5v2h2v-2h1a2.5 2.5 0 1 0 0-5h-4a.5.5 0 1 1 0-1h5.5v-2h-2.5v-2h-2v2h-1a2.5 2.5 0 1 0 0 5h4a.5.5 0 0 1 0 1z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ri\:stock-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M8.005 5.003h3v9h-3v3h-2v-3h-3v-9h3v-3h2zm10 5h3v9h-3v3h-2v-3h-3v-9h3v-3h2z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ri\:team-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 10a4 4 0 1 0 0-8a4 4 0 0 0 0 8m-6.5 3a2.5 2.5 0 1 0 0-5a2.5 2.5 0 0 0 0 5M21 10.5a2.5 2.5 0 1 1-5 0a2.5 2.5 0 0 1 5 0m-9 .5a5 5 0 0 1 5 5v6H7v-6a5 5 0 0 1 5-5m-7 5c0-.693.1-1.362.288-1.994l-.17.014A3.5 3.5 0 0 0 2 17.5V22h3zm17 6v-4.5a3.5 3.5 0 0 0-3.288-3.494c.187.632.288 1.301.288 1.994v6z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ri\:twitter-x-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m17.687 3.063l-4.996 5.711l-4.32-5.711H2.112l7.477 9.776l-7.086 8.099h3.034l5.469-6.25l4.78 6.25h6.102l-7.794-10.304l6.625-7.571zm-1.064 16.06L5.654 4.782h1.803l10.846 14.34z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ri\:vip-crown-2-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M2.806 5.2L7.005 8l4.186-5.861a1 1 0 0 1 1.628 0l4.186 5.86l4.2-2.799a1 1 0 0 1 1.547.949L21.11 20.116a1 1 0 0 1-.993.884H3.894a1 1 0 0 1-.993-.884L1.258 6.15a1 1 0 0 1 1.548-.95m9.2 9.8a2 2 0 1 0 0-4a2 2 0 0 0 0 4'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ri\:vip-crown-2-line {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M3.497 8.065L4.784 19h14.443l1.286-10.935l-4.01 2.673l-4.498-6.297l-4.498 6.297zM2.806 5.2L7.005 8l4.186-5.861a1 1 0 0 1 1.628 0l4.186 5.86l4.2-2.799a1 1 0 0 1 1.547.949L21.11 20.116a1 1 0 0 1-.993.884H3.894a1 1 0 0 1-.993-.884L1.258 6.15a1 1 0 0 1 1.548-.95m9.2 9.8a2 2 0 1 1-.001-4a2 2 0 0 1 0 4'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ri\:vip-crown-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M2.005 19h20v2h-20zm0-14l5 3l5-6l5 6l5-3v12h-20z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-ri\:whatsapp-fill {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12.001 2c5.523 0 10 4.477 10 10s-4.477 10-10 10a9.95 9.95 0 0 1-5.03-1.355L2.005 22l1.352-4.968A9.95 9.95 0 0 1 2.001 12c0-5.523 4.477-10 10-10M8.593 7.3l-.2.008a1 1 0 0 0-.372.1a1.3 1.3 0 0 0-.294.228c-.12.113-.188.211-.261.306A2.73 2.73 0 0 0 6.9 9.62c.002.49.13.967.33 1.413c.409.902 1.082 1.857 1.97 2.742c.214.213.424.427.65.626a9.45 9.45 0 0 0 3.84 2.046l.568.087c.185.01.37-.004.556-.013a2 2 0 0 0 .833-.231a5 5 0 0 0 .383-.22q.001.002.125-.09c.135-.1.218-.171.33-.288q.126-.13.21-.302c.078-.163.156-.474.188-.733c.024-.198.017-.306.014-.373c-.004-.107-.093-.218-.19-.265l-.582-.261s-.87-.379-1.402-.621a.5.5 0 0 0-.176-.041a.48.48 0 0 0-.378.127c-.005-.002-.072.055-.795.931a.35.35 0 0 1-.368.13a1.4 1.4 0 0 1-.191-.066c-.124-.052-.167-.072-.252-.108a6 6 0 0 1-1.575-1.003c-.126-.11-.243-.23-.363-.346a6.3 6.3 0 0 1-1.02-1.268l-.059-.095a1 1 0 0 1-.102-.205c-.038-.147.061-.265.061-.265s.243-.266.356-.41c.11-.14.203-.276.263-.373c.118-.19.155-.385.093-.536q-.42-1.026-.868-2.041c-.059-.134-.234-.23-.393-.249q-.081-.01-.162-.016a3 3 0 0 0-.403.004z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar-close-circle-linear,
.i-solar\:close-circle-linear {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath stroke-linecap='round' d='m14.5 9.5l-5 5m0-5l5 5'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:battery-charge-minimalistic-bold {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M2 12c0-3.771 0-5.657 1.172-6.828S6.229 4 10 4h1.5c3.771 0 5.657 0 6.828 1.172S19.5 8.229 19.5 12s0 5.657-1.172 6.828S15.271 20 11.5 20H10c-3.771 0-5.657 0-6.828-1.172S2 15.771 2 12m9.98-3.576a.75.75 0 0 1 .096 1.056l-1.475 1.77H12.5a.75.75 0 0 1 .576 1.23l-2.5 3a.75.75 0 0 1-1.152-.96l1.475-1.77H9a.75.75 0 0 1-.576-1.23l2.5-3a.75.75 0 0 1 1.056-.096' clip-rule='evenodd'/%3E%3Cpath fill='currentColor' d='M21.25 14a.75.75 0 0 0 1.5 0v-4a.75.75 0 0 0-1.5 0z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:bell-bold {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M8.352 20.242A4.63 4.63 0 0 0 12 22a4.63 4.63 0 0 0 3.648-1.758a27.2 27.2 0 0 1-7.296 0M18.75 9v.704c0 .845.24 1.671.692 2.374l1.108 1.723c1.011 1.574.239 3.713-1.52 4.21a25.8 25.8 0 0 1-14.06 0c-1.759-.497-2.531-2.636-1.52-4.21l1.108-1.723a4.4 4.4 0 0 0 .693-2.374V9c0-3.866 3.022-7 6.749-7s6.75 3.134 6.75 7'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:checklist-linear {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-width='1.5'%3E%3Cpath stroke-linejoin='round' d='M2 5.5L3.214 7L7.5 3M2 12.5L3.214 14L7.5 10M2 19.5L3.214 21L7.5 17'/%3E%3Cpath d='M22 19H12m10-7H12m10-7H12'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:document-text-broken {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-width='1.5' d='M8 12h1m7 0h-4m4-4h-1m-3 0H8m0 8h5M3 14v-4c0-3.771 0-5.657 1.172-6.828S7.229 2 11 2h2c3.771 0 5.657 0 6.828 1.172c.654.653.943 1.528 1.07 2.828M21 10v4c0 3.771 0 5.657-1.172 6.828S16.771 22 13 22h-2c-3.771 0-5.657 0-6.828-1.172c-.654-.653-.943-1.528-1.07-2.828'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:documents-linear {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath d='M5 8c0-2.828 0-4.243.879-5.121C6.757 2 8.172 2 11 2h2c2.828 0 4.243 0 5.121.879C19 3.757 19 5.172 19 8v8c0 2.828 0 4.243-.879 5.121C17.243 22 15.828 22 13 22h-2c-2.828 0-4.243 0-5.121-.879C5 20.243 5 18.828 5 16zm0-3.924c-.975.096-1.631.313-2.121.803C2 5.757 2 7.172 2 10v4c0 2.828 0 4.243.879 5.121c.49.49 1.146.707 2.121.803M19 4.076c.975.096 1.631.313 2.121.803C22 5.757 22 7.172 22 10v4c0 2.828 0 4.243-.879 5.121c-.49.49-1.146.707-2.121.803'/%3E%3Cpath stroke-linecap='round' d='M9 13h6M9 9h6m-6 8h3'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:dollar-minimalistic-bold {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2S2 6.477 2 12s4.477 10 10 10m.75-16a.75.75 0 0 0-1.5 0v.317c-1.63.292-3 1.517-3 3.183c0 1.917 1.813 3.25 3.75 3.25c1.377 0 2.25.906 2.25 1.75s-.873 1.75-2.25 1.75c-1.376 0-2.25-.906-2.25-1.75a.75.75 0 0 0-1.5 0c0 1.666 1.37 2.891 3 3.183V18a.75.75 0 0 0 1.5 0v-.317c1.63-.292 3-1.517 3-3.183c0-1.917-1.813-3.25-3.75-3.25c-1.376 0-2.25-.906-2.25-1.75s.874-1.75 2.25-1.75c1.377 0 2.25.906 2.25 1.75a.75.75 0 0 0 1.5 0c0-1.666-1.37-2.891-3-3.183z' clip-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:filter-bold-duotone {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M5 3h14L8.816 13.184a2.7 2.7 0 0 0-.778-1.086c-.228-.198-.547-.377-1.183-.736l-2.913-1.64c-.949-.533-1.423-.8-1.682-1.23C2 8.061 2 7.541 2 6.503v-.69c0-1.326 0-1.99.44-2.402C2.878 3 3.585 3 5 3' clip-rule='evenodd'/%3E%3Cpath fill='currentColor' d='M22 6.504v-.69c0-1.326 0-1.99-.44-2.402C21.122 3 20.415 3 19 3L8.815 13.184q.075.193.121.403c.064.285.064.619.064 1.286v2.67c0 .909 0 1.364.252 1.718c.252.355.7.53 1.594.88c1.879.734 2.818 1.101 3.486.683S15 19.452 15 17.542v-2.67c0-.666 0-1 .063-1.285a2.68 2.68 0 0 1 .9-1.49c.227-.197.545-.376 1.182-.735l2.913-1.64c.948-.533 1.423-.8 1.682-1.23c.26-.43.26-.95.26-1.988' opacity='.5'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:filters-broken {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none'%3E%3Cpath stroke='currentColor' stroke-width='1.5' d='M12 20.283A6 6 0 1 0 17.5 10'/%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-width='1.5' d='M9 2.803A6 6 0 1 1 6.341 6'/%3E%3Cpath fill='currentColor' d='M8 22v-.75zm-6-6h-.75zm.153 3.375a.75.75 0 1 0 1.299-.75zm4.097 1.576a.75.75 0 0 0-.5 1.415zm7-4.951c0 2.9-2.35 5.25-5.25 5.25v1.5A6.75 6.75 0 0 0 14.75 16zm-10.5 0a5.25 5.25 0 0 1 3.937-5.085l-.374-1.452A6.75 6.75 0 0 0 1.25 16zm10.156-1.874c.222.58.344 1.212.344 1.874h1.5c0-.848-.157-1.66-.443-2.41zm-9.454 4.498A5.2 5.2 0 0 1 2.75 16h-1.5c0 1.228.329 2.382.903 3.375zM8 21.25a5.2 5.2 0 0 1-1.75-.299l-.5 1.415A6.7 6.7 0 0 0 8 22.75z'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:hand-money-bold {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M6.26 21.388H6c-.943 0-1.414 0-1.707-.293C4 20.804 4 20.332 4 19.389v-1.112c0-.518 0-.777.133-1.009s.334-.348.736-.582c2.646-1.539 6.403-2.405 8.91-.91q.253.151.45.368a1.49 1.49 0 0 1-.126 2.134a1 1 0 0 1-.427.24q.18-.021.345-.047c.911-.145 1.676-.633 2.376-1.162l1.808-1.365a1.89 1.89 0 0 1 2.22 0c.573.433.749 1.146.386 1.728c-.423.678-1.019 1.545-1.591 2.075s-1.426 1.004-2.122 1.34c-.772.373-1.624.587-2.491.728c-1.758.284-3.59.24-5.33-.118a15 15 0 0 0-3.017-.308m.326-18.803c-.367.367-.504.873-.555 1.664A2.25 2.25 0 0 0 8.25 2.03c-.79.052-1.297.189-1.664.556m10.828 0c-.367-.367-.873-.504-1.664-.555a2.25 2.25 0 0 0 2.22 2.219c-.052-.79-.189-1.297-.556-1.664m0 6.828c-.367.367-.873.504-1.664.555a2.25 2.25 0 0 1 2.22-2.219c-.052.79-.189 1.297-.556 1.664m-10.828 0c.367.367.873.504 1.664.555A2.25 2.25 0 0 0 6.03 7.75c.052.79.189 1.297.556 1.664'/%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M6 5.75A3.75 3.75 0 0 0 9.75 2h4.5A3.75 3.75 0 0 0 18 5.75v.5A3.75 3.75 0 0 0 14.25 10h-4.5A3.75 3.75 0 0 0 6 6.25zM12 7a1 1 0 1 0 0-2a1 1 0 0 0 0 2' clip-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:hand-money-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M14.325 3.75h-4.65A3.75 3.75 0 0 1 6.75 6.675v.65a3.75 3.75 0 0 1 2.925 2.925h4.65a3.75 3.75 0 0 1 2.925-2.925v-.65a3.75 3.75 0 0 1-2.925-2.925m.605-1.497q-.412-.004-.878-.003H9.948q-.466 0-.877.003a1 1 0 0 0-.164.003c-.452.008-.853.027-1.201.074c-.628.084-1.195.27-1.65.725c-.456.456-.642 1.023-.726 1.65c-.047.349-.066.75-.074 1.202a1 1 0 0 0-.003.163q-.004.413-.003.878v.104q0 .465.003.878a1 1 0 0 0 .003.163c.008.453.027.853.074 1.201c.084.628.27 1.195.726 1.65c.455.456 1.022.642 1.65.726c.348.047.749.066 1.201.074a1 1 0 0 0 .164.003q.411.004.877.003h4.104q.465 0 .878-.003a1 1 0 0 0 .163-.003c.453-.008.854-.027 1.201-.074c.628-.084 1.195-.27 1.65-.726c.456-.455.642-1.022.726-1.65a11 11 0 0 0 .074-1.201a1 1 0 0 0 .003-.163q.004-.413.003-.878v-.104q0-.465-.003-.878a1 1 0 0 0-.003-.163a11 11 0 0 0-.074-1.201c-.084-.628-.27-1.195-.725-1.65c-.456-.456-1.023-.642-1.65-.726a11 11 0 0 0-1.202-.074a1 1 0 0 0-.163-.003m.964 1.541a2.26 2.26 0 0 0 1.312 1.312a5 5 0 0 0-.023-.2c-.061-.462-.169-.66-.3-.79s-.327-.237-.788-.3a5 5 0 0 0-.2-.022m1.312 5.1a2.26 2.26 0 0 0-1.312 1.312q.105-.01.2-.022c.462-.063.66-.17.79-.3s.238-.328.3-.79q.012-.095.022-.2m-9.1 1.312a2.26 2.26 0 0 0-1.312-1.312q.01.105.023.2c.062.462.169.66.3.79s.327.237.788.3q.096.012.201.022m-1.312-5.1a2.26 2.26 0 0 0 1.312-1.312q-.105.01-.2.023c-.462.062-.66.169-.79.3s-.237.327-.3.788zM12 6.75a.25.25 0 1 0 0 .5a.25.25 0 0 0 0-.5M10.25 7a1.75 1.75 0 1 1 3.5 0a1.75 1.75 0 0 1-3.5 0m-1.566 7.448c1.866-.361 3.863-.28 5.48.684c.226.135.44.304.625.512c.376.423.57.947.579 1.473q.286-.186.577-.407l1.808-1.365a2.64 2.64 0 0 1 3.124 0c.835.63 1.169 1.763.57 2.723c-.425.681-1.065 1.624-1.717 2.228c-.66.61-1.597 1.124-2.306 1.466c-.862.416-1.792.646-2.697.792c-1.85.3-3.774.254-5.602-.123a14.3 14.3 0 0 0-2.865-.293H4a.75.75 0 0 1 0-1.5h2.26c1.062 0 2.135.111 3.168.324a14.1 14.1 0 0 0 5.06.111c.828-.134 1.602-.333 2.284-.662c.683-.33 1.451-.764 1.938-1.215c.493-.457 1.044-1.248 1.465-1.922c.127-.204.109-.497-.202-.732c-.37-.28-.947-.28-1.316 0l-1.807 1.365c-.722.545-1.61 1.128-2.711 1.304a9 9 0 0 1-.347.048q-.086.015-.179.02a10 10 0 0 1-1.932 0a.75.75 0 1 1 .141-1.493a8.5 8.5 0 0 0 1.668-.003l.03-.003a.742.742 0 0 0 .15-1.138a1.2 1.2 0 0 0-.275-.222c-1.181-.705-2.759-.822-4.426-.5a12.1 12.1 0 0 0-4.535 1.935a.75.75 0 0 1-.868-1.224a13.6 13.6 0 0 1 5.118-2.183' clip-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:home-angle-2-bold {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M2.335 7.875c-.54 1.127-.35 2.446.03 5.083l.278 1.937c.487 3.388.731 5.081 1.906 6.093S7.447 22 10.894 22h2.212c3.447 0 5.17 0 6.345-1.012s1.419-2.705 1.906-6.093l.279-1.937c.38-2.637.57-3.956.029-5.083s-1.691-1.813-3.992-3.183l-1.385-.825C14.2 2.622 13.154 2 12 2s-2.199.622-4.288 1.867l-1.385.825c-2.3 1.37-3.451 2.056-3.992 3.183M12 18.75a.75.75 0 0 1-.75-.75v-3a.75.75 0 0 1 1.5 0v3a.75.75 0 0 1-.75.75' clip-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:home-smile-bold {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M2.52 7.823C2 8.77 2 9.915 2 12.203v1.522c0 3.9 0 5.851 1.172 7.063S6.229 22 10 22h4c3.771 0 5.657 0 6.828-1.212S22 17.626 22 13.725v-1.521c0-2.289 0-3.433-.52-4.381c-.518-.949-1.467-1.537-3.364-2.715l-2-1.241C14.111 2.622 13.108 2 12 2s-2.11.622-4.116 1.867l-2 1.241C3.987 6.286 3.038 6.874 2.519 7.823m6.927 7.575a.75.75 0 1 0-.894 1.204A5.77 5.77 0 0 0 12 17.75a5.77 5.77 0 0 0 3.447-1.148a.75.75 0 1 0-.894-1.204A4.27 4.27 0 0 1 12 16.25a4.27 4.27 0 0 1-2.553-.852' clip-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:password-minimalistic-input-linear {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none'%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-width='1.5' d='M12 4h-2C6.229 4 4.343 4 3.172 5.172S2 8.229 2 12s0 5.657 1.172 6.828S6.229 20 10 20h2m3-16c3.114.01 4.765.108 5.828 1.172C22 6.343 22 8.229 22 12s0 5.657-1.172 6.828C19.765 19.892 18.114 19.99 15 20'/%3E%3Cpath fill='currentColor' d='M9 12a1 1 0 1 1-2 0a1 1 0 0 1 2 0m4 0a1 1 0 1 1-2 0a1 1 0 0 1 2 0'/%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-width='1.5' d='M15 2v20'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:phone-linear {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m16.1 13.359l-.528-.532zm.456-.453l.529.532zm2.417-.317l-.358.66zm1.91 1.039l-.358.659zm.539 3.255l.529.532zm-1.42 1.412l-.53-.531zm-1.326.67l.07.747zm-9.86-4.238l.528-.532zM4.002 5.746l-.749.042zm6.474 1.451l.53.532zm.157-2.654l.6-.449zM9.374 2.86l-.601.45zM6.26 2.575l.53.532zm-1.57 1.56l-.528-.531zm7.372 7.362l.529-.532zm4.567 2.394l.455-.453l-1.058-1.064l-.455.453zm1.985-.643l1.91 1.039l.716-1.318l-1.91-1.038zm2.278 3.103l-1.42 1.413l1.057 1.063l1.42-1.412zm-2.286 1.867c-1.45.136-5.201.015-9.263-4.023l-1.057 1.063c4.432 4.407 8.65 4.623 10.459 4.454zm-9.263-4.023c-3.871-3.85-4.512-7.087-4.592-8.492l-1.498.085c.1 1.768.895 5.356 5.033 9.47zm1.376-6.18l.286-.286L9.95 6.666l-.287.285zm.515-3.921L9.974 2.41l-1.201.899l1.26 1.684zM5.733 2.043l-1.57 1.56l1.058 1.064l1.57-1.56zm4.458 5.44c-.53-.532-.53-.532-.53-.53h-.002l-.003.004a1 1 0 0 0-.127.157c-.054.08-.113.185-.163.318a2.1 2.1 0 0 0-.088 1.071c.134.865.73 2.008 2.256 3.526l1.058-1.064c-1.429-1.42-1.769-2.284-1.832-2.692c-.03-.194.001-.29.01-.312q.009-.02 0-.006a.3.3 0 0 1-.03.039l-.01.01l-.01.009zm1.343 4.546c1.527 1.518 2.676 2.11 3.542 2.242c.443.068.8.014 1.071-.087a1.5 1.5 0 0 0 .42-.236l.05-.045l.007-.006l.003-.003l.001-.002s.002-.001-.527-.533c-.53-.532-.528-.533-.528-.533l.002-.002l.002-.002l.006-.005l.01-.01l.038-.03q.014-.009-.007.002c-.025.009-.123.04-.32.01c-.414-.064-1.284-.404-2.712-1.824zm-1.56-9.62C8.954 1.049 6.95.834 5.733 2.044L6.79 3.107c.532-.529 1.476-.475 1.983.202zM4.752 5.704c-.02-.346.139-.708.469-1.036L4.163 3.604c-.537.534-.96 1.29-.909 2.184zm14.72 12.06c-.274.274-.57.428-.865.455l.139 1.494c.735-.069 1.336-.44 1.784-.885zM11.006 7.73c.985-.979 1.058-2.527.229-3.635l-1.201.899c.403.539.343 1.246-.085 1.673zm9.52 6.558c.817.444.944 1.49.367 2.064l1.058 1.064c1.34-1.333.927-3.557-.71-4.446zm-3.441-.849c.384-.382 1.002-.476 1.53-.19l.716-1.317c-1.084-.59-2.428-.427-3.304.443z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:ranking-broken {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' d='M16 22v-9c0-1.414 0-2.121-.44-2.56C15.122 10 14.415 10 13 10h-2c-1.414 0-2.121 0-2.56.44C8 10.878 8 11.585 8 13m0 9v-5m0 5c0-1.414 0-2.121-.44-2.56C7.122 19 6.415 19 5 19s-2.121 0-2.56.44C2 19.878 2 20.585 2 22m20 0v-3c0-1.414 0-2.121-.44-2.56C21.122 16 20.415 16 19 16s-2.121 0-2.56.44C16 16.878 16 17.585 16 19v3'/%3E%3Cpath d='M11.146 3.023C11.526 2.34 11.716 2 12 2s.474.34.854 1.023l.098.176c.108.194.162.29.246.354c.085.064.19.088.4.135l.19.044c.738.167 1.107.25 1.195.532s-.164.577-.667 1.165l-.13.152c-.143.167-.215.25-.247.354s-.021.215 0 .438l.02.203c.076.785.114 1.178-.115 1.352c-.23.175-.576.015-1.267-.303l-.178-.082c-.197-.09-.295-.136-.399-.136s-.202.046-.399.136l-.178.082c-.691.318-1.037.478-1.267.303c-.23-.174-.191-.567-.115-1.352l.02-.203c.021-.223.032-.334 0-.438s-.104-.187-.247-.354l-.13-.152c-.503-.588-.755-.882-.667-1.165c.088-.282.457-.365 1.195-.532l.19-.044c.21-.047.315-.07.4-.135c.084-.064.138-.16.246-.354z'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:server-minimalistic-bold {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M3.516 15.725c.271-.019.618-.02 1.116-.02h14.736c.498 0 .845.001 1.117.02c.266.018.422.052.54.102c.387.161.695.47.855.86c.049.119.083.275.101.543c.019.273.019.622.019 1.123c0 .5 0 .85-.019 1.123c-.018.268-.052.424-.101.544c-.16.389-.468.698-.855.86c-.118.049-.274.083-.54.101c-.272.019-.619.019-1.117.019H4.632c-.498 0-.845 0-1.116-.019c-.267-.018-.423-.053-.541-.102a1.58 1.58 0 0 1-.855-.86c-.049-.119-.083-.275-.101-.543A18 18 0 0 1 2 18.353c0-.5 0-.85.019-1.123c.018-.268.052-.424.101-.544c.16-.389.468-.698.855-.86c.118-.049.274-.083.54-.101m1.116 3.687c.58 0 1.052-.474 1.052-1.06c0-.584-.471-1.058-1.052-1.058s-1.053.474-1.053 1.059s.471 1.059 1.053 1.059m.001-11.118c-.498 0-.845 0-1.116-.019c-.267-.018-.423-.052-.541-.102a1.58 1.58 0 0 1-.855-.86c-.049-.119-.083-.275-.101-.543A18 18 0 0 1 2 5.647c0-.5 0-.85.019-1.123c.018-.268.052-.424.101-.544c.16-.389.468-.698.855-.86c.118-.049.274-.083.54-.101A18 18 0 0 1 4.633 3h14.736c.498 0 .845 0 1.117.019c.266.018.422.052.54.102c.387.161.695.47.855.86c.049.119.083.275.101.543c.019.274.019.622.019 1.123c0 .5 0 .85-.019 1.123c-.018.268-.052.424-.101.544c-.16.389-.468.698-.855.86c-.118.049-.274.083-.54.101a18 18 0 0 1-1.117.02zm0 1.059c-.498 0-.845 0-1.116.019c-.267.018-.423.052-.541.102a1.58 1.58 0 0 0-.855.86c-.049.119-.083.275-.101.543C2 11.15 2 11.5 2 12s0 .85.019 1.123c.018.268.052.424.101.544c.16.389.468.698.855.86c.118.049.274.083.54.101c.272.019.619.02 1.117.02h14.736c.498 0 .845-.001 1.117-.02c.266-.018.422-.052.54-.102a1.58 1.58 0 0 0 .855-.86c.049-.119.083-.275.101-.543C22 12.85 22 12.5 22 12s0-.85-.019-1.123c-.018-.268-.052-.424-.101-.544a1.58 1.58 0 0 0-.855-.86c-.118-.049-.274-.083-.54-.101a18 18 0 0 0-1.117-.02zM5.684 12c0 .585-.471 1.059-1.052 1.059A1.056 1.056 0 0 1 3.579 12c0-.585.471-1.059 1.053-1.059c.58 0 1.052.474 1.052 1.059M4.632 6.706c.58 0 1.052-.474 1.052-1.059s-.471-1.059-1.052-1.059s-1.053.474-1.053 1.06c0 .584.471 1.058 1.053 1.058' clip-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:spedometer-max-bold {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M12.752 3.975a.752.752 0 0 1-1.504 0V2A10 10 0 0 0 5.46 4.394l1.556 1.553A.75.75 0 1 1 5.953 7.01L4.397 5.456A9.96 9.96 0 0 0 2 11.236h1.978a.752.752 0 1 1 0 1.501H2a9.96 9.96 0 0 0 2.397 5.78l1.556-1.554a.753.753 0 0 1 1.064 0a.75.75 0 0 1 0 1.062L5.46 19.578A10 10 0 0 0 12 22a10 10 0 0 0 6.54-2.422l-1.556-1.553a.75.75 0 0 1 0-1.062a.753.753 0 0 1 1.063 0l1.556 1.553A9.96 9.96 0 0 0 22 12.737h-1.978a.752.752 0 1 1 0-1.502H22a9.96 9.96 0 0 0-2.397-5.779L18.047 7.01a.75.75 0 1 1-1.064-1.062l1.556-1.554A10 10 0 0 0 12.752 2zm-2.637 6.13a3 3 0 0 0 0 4.248c.447.446 1.374.758 2.352.973c1.463.32 2.194.481 2.777-.1c.582-.582.421-1.312.1-2.773c-.216-.976-.528-1.903-.975-2.349a3.01 3.01 0 0 0-4.254 0' clip-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:square-share-line-bold {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M3.464 3.464C4.93 2 7.286 2 12 2c1.023 0 1.934 0 2.75.015c.004.57.223 1.14.659 1.576l1.159 1.159H14c-2.617 0-4.252 1.298-4.914 1.963L8.9 6.9l-.187.186C8.048 7.748 6.75 9.383 6.75 12v3a2.25 2.25 0 0 0 4.5 0v-3c0-1.02.488-1.576.637-1.725l.192-.19l.196-.198c.149-.149.705-.637 1.725-.637h2.568l-1.159 1.159a2.25 2.25 0 1 0 3.182 3.182l3.405-3.405q.005.843.004 1.814c0 4.714 0 7.071-1.465 8.535C19.072 22 16.714 22 12 22s-7.071 0-8.536-1.465C2 19.072 2 16.714 2 12s0-7.071 1.464-8.536'/%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M16.47 1.47a.75.75 0 0 1 1.06 0l5 5a.75.75 0 0 1 0 1.06l-5 5a.75.75 0 1 1-1.06-1.06l3.72-3.72H14c-1.552 0-2.467.757-2.788 1.08l-.19.191l-.193.191c-.322.32-1.079 1.236-1.079 2.788v3a.75.75 0 0 1-1.5 0v-3c0-2.084 1.027-3.36 1.521-3.851l.19-.189l.188-.189C10.64 7.277 11.916 6.25 14 6.25h6.19l-3.72-3.72a.75.75 0 0 1 0-1.06' clip-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:square-top-down-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 1.25h-.057c-2.309 0-4.118 0-5.53.19c-1.444.194-2.584.6-3.479 1.494c-.895.895-1.3 2.035-1.494 3.48c-.19 1.411-.19 3.22-.19 5.529v.114c0 2.309 0 4.118.19 5.53c.194 1.444.6 2.584 1.494 3.479c.895.895 2.035 1.3 3.48 1.494c1.411.19 3.22.19 5.529.19h.114c2.309 0 4.118 0 5.53-.19c1.444-.194 2.584-.6 3.479-1.494c.895-.895 1.3-2.035 1.494-3.48c.19-1.411.19-3.22.19-5.529V12a.75.75 0 0 0-1.5 0c0 2.378-.002 4.086-.176 5.386c-.172 1.279-.5 2.05-1.069 2.62c-.57.569-1.34.896-2.619 1.068c-1.3.174-3.008.176-5.386.176s-4.086-.002-5.386-.176c-1.279-.172-2.05-.5-2.62-1.069c-.569-.57-.896-1.34-1.068-2.619c-.174-1.3-.176-3.008-.176-5.386s.002-4.086.176-5.386c.172-1.279.5-2.05 1.069-2.62c.57-.569 1.34-.896 2.619-1.068c1.3-.174 3.008-.176 5.386-.176a.75.75 0 0 0 0-1.5'/%3E%3Cpath fill='currentColor' d='M12.47 10.47a.75.75 0 1 0 1.06 1.06l7.72-7.72v3.534a.75.75 0 0 0 1.5 0V2a.75.75 0 0 0-.75-.75h-5.344a.75.75 0 0 0 0 1.5h3.533z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:square-top-up-outline {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 1.25h-.057c-2.309 0-4.118 0-5.53.19c-1.444.194-2.584.6-3.479 1.494c-.895.895-1.3 2.035-1.494 3.48c-.19 1.411-.19 3.22-.19 5.529v.114c0 2.309 0 4.118.19 5.53c.194 1.444.6 2.584 1.494 3.479c.895.895 2.035 1.3 3.48 1.494c1.411.19 3.22.19 5.529.19h.114c2.309 0 4.118 0 5.53-.19c1.444-.194 2.584-.6 3.479-1.494c.895-.895 1.3-2.035 1.494-3.48c.19-1.411.19-3.22.19-5.529V12a.75.75 0 0 0-1.5 0c0 2.378-.002 4.086-.176 5.386c-.172 1.279-.5 2.05-1.069 2.62c-.57.569-1.34.896-2.619 1.068c-1.3.174-3.008.176-5.386.176s-4.086-.002-5.386-.176c-1.279-.172-2.05-.5-2.62-1.069c-.569-.57-.896-1.34-1.068-2.619c-.174-1.3-.176-3.008-.176-5.386s.002-4.086.176-5.386c.172-1.279.5-2.05 1.069-2.62c.57-.569 1.34-.896 2.619-1.068c1.3-.174 3.008-.176 5.386-.176a.75.75 0 0 0 0-1.5'/%3E%3Cpath fill='currentColor' d='M21.53 3.53a.75.75 0 0 0-1.06-1.06l-7.72 7.72V6.655a.75.75 0 0 0-1.5 0V12c0 .414.336.75.75.75h5.344a.75.75 0 0 0 0-1.5H13.81z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:square-transfer-horizontal-bold-duotone {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M20.536 20.536C22 19.07 22 16.714 22 12s0-7.071-1.465-8.536C19.072 2 16.714 2 12 2S4.929 2 3.464 3.464C2 4.93 2 7.286 2 12s0 7.071 1.464 8.535C4.93 22 7.286 22 12 22s7.071 0 8.535-1.465' opacity='.5'/%3E%3Cpath fill='currentColor' d='M7 10.75a.75.75 0 0 1-.493-1.315l3.437-3a.75.75 0 0 1 .987 1.13L9 9.25h8a.75.75 0 0 1 0 1.5zm6.07 5.685a.75.75 0 0 0 .986 1.13l3.437-3A.75.75 0 0 0 17 13.25H7a.75.75 0 0 0 0 1.5h8z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:stars-minimalistic-bold-duotone {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M10.08 7.897C11.157 5.966 11.695 5 12.5 5s1.343.966 2.42 2.897l.278.5c.306.549.46.823.698 1.004s.535.248 1.13.383l.54.122c2.091.473 3.137.71 3.385 1.51c.249.8-.464 1.633-1.89 3.3l-.368.43c-.405.474-.607.711-.699 1.004c-.09.293-.06.609.001 1.24l.056.576c.216 2.224.323 3.336-.328 3.83s-1.63.044-3.587-.857l-.507-.234c-.556-.256-.834-.384-1.129-.384s-.573.128-1.13.384l-.506.234c-1.957.9-2.936 1.352-3.587.857c-.651-.494-.543-1.606-.328-3.83l.056-.575c.061-.632.092-.948 0-1.24c-.09-.294-.293-.53-.698-1.004l-.369-.432c-1.425-1.666-2.138-2.5-1.89-3.3c.25-.8 1.295-1.036 3.386-1.509l.54-.122c.595-.135.892-.202 1.13-.383c.239-.18.392-.455.698-1.004z'/%3E%3Cpath fill='currentColor' d='M4.868 2.5c.03-.105.217-.106.248 0c.14.482.4 1.194.793 1.585c.393.39 1.108.646 1.59.783c.107.03.107.217.002.248c-.482.14-1.195.4-1.586.793c-.39.393-.645 1.108-.782 1.59c-.03.107-.218.107-.249.002c-.14-.482-.4-1.195-.793-1.586c-.393-.39-1.107-.645-1.59-.782c-.106-.03-.107-.218-.001-.249c.482-.14 1.194-.4 1.585-.793c.39-.393.646-1.107.783-1.59' opacity='.5'/%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M19 3.25a.75.75 0 0 1 .75.75v.25H20a.75.75 0 0 1 0 1.5h-.25V6a.75.75 0 0 1-1.5 0v-.25H18a.75.75 0 0 1 0-1.5h.25V4a.75.75 0 0 1 .75-.75' clip-rule='evenodd' opacity='.5'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:transfer-horizontal-bold-duotone {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M10.25 4a.75.75 0 0 0-1.303-.507l-5.5 6A.75.75 0 0 0 4 10.75h16a.75.75 0 0 0 0-1.5h-9.75z'/%3E%3Cpath fill='currentColor' d='M13.75 20v-5.25H4a.75.75 0 0 1 0-1.5h16a.75.75 0 0 1 .553 1.257l-5.5 6A.75.75 0 0 1 13.75 20' opacity='.5'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:transfer-horizontal-linear {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M20 10H4l5.5-6M4 14h16l-5.5 6'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:transfer-vertical-line-duotone {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Cpath d='M10 4v16l-6-5.5'/%3E%3Cpath d='M14 20V4l6 5.5' opacity='.5'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:user-bold {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Ccircle cx='12' cy='6' r='4' fill='currentColor'/%3E%3Cpath fill='currentColor' d='M20 17.5c0 2.485 0 4.5-8 4.5s-8-2.015-8-4.5S7.582 13 12 13s8 2.015 8 4.5'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:user-rounded-linear {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Ccircle cx='12' cy='6' r='4'/%3E%3Cellipse cx='12' cy='17' rx='7' ry='4'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-solar\:users-group-rounded-broken {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Ccircle cx='9' cy='6' r='4'/%3E%3Cpath stroke-linecap='round' d='M15 9a3 3 0 1 0 0-6M5.89 20.584C6.825 20.85 7.882 21 9 21c3.866 0 7-1.79 7-4s-3.134-4-7-4s-7 1.79-7 4c0 .345.077.68.22 1M18 14c1.754.385 3 1.359 3 2.5c0 1.03-1.014 1.923-2.5 2.37'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-streamline\:interface-arrows-data-transfer-horizontal-arrow-square-data-internet-transfer-network-horizontal {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 14 14' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='13' height='13' x='.5' y='.5' rx='3'/%3E%3Cpath d='m6 10.5l-2-2h6m-2-5l2 2H4'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-streamline\:interface-award-crown-reward-social-rating-media-queen-vip-king-crown {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 14 14' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' d='m13.5 4l-3 3L7 2L3.5 7l-3-3v6.5A1.5 1.5 0 0 0 2 12h10a1.5 1.5 0 0 0 1.5-1.5Z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-streamline\:interface-lock-shield-combination-combo-lock-locked-padlock-secure-security-shield-keyhole {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 14 14' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7.36 13.4h0a1 1 0 0 1-.72 0h0A9.59 9.59 0 0 1 .5 4.46V1.54a1 1 0 0 1 1-1h11a1 1 0 0 1 1 1v2.92a9.59 9.59 0 0 1-6.14 8.94Z'/%3E%3Ccircle cx='7' cy='5.04' r='1.5'/%3E%3Cpath d='M7 9.04v-2.5'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-streamline\:interface-login-password-lock-login-padlock-password-secure-security-textbox-type {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 14 14' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='13' height='7' x='.5' y='3.5' rx='1'/%3E%3Ccircle cx='3.5' cy='7' r='.5'/%3E%3Ccircle cx='6.5' cy='7' r='.5'/%3E%3Cpath d='M9.5 8H11'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-streamline\:money-cash-bag-dollar-bag-payment-cash-money-finance {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 14 14' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 10.02v1.01m0-6.02v.94m0 7.54c3.5 0 6-1.24 6-4c0-3-1.5-5-4.5-6.5l1.18-1.52a.66.66 0 0 0-.56-1H4.88a.66.66 0 0 0-.56 1L5.5 3C2.5 4.51 1 6.51 1 9.51c0 2.74 2.5 3.98 6 3.98Z'/%3E%3Cpath d='M6 9.56A1.24 1.24 0 0 0 7 10a1.12 1.12 0 0 0 1.19-1A1.12 1.12 0 0 0 7 8a1.12 1.12 0 0 1-1.19-1A1.11 1.11 0 0 1 7 6a1.26 1.26 0 0 1 1 .4'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-streamline\:money-cash-dollar-coin-accounting-billing-payment-cash-coin-currency-money-finance {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 14 14' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 4.5V3M5.5 8.5c0 .75.67 1 1.5 1s1.5 0 1.5-1c0-1.5-3-1.5-3-3c0-1 .67-1 1.5-1s1.5.38 1.5 1M7 9.5V11'/%3E%3Ccircle cx='7' cy='7' r='6.5'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-streamline\:telegram-solid {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 14 14' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M.25 7a6.75 6.75 0 1 1 13.5 0A6.75 6.75 0 0 1 .25 7m9.002 4.064l1.045-7.932l-8.165 3.935l2.417.876l2.686-2.076a.5.5 0 1 1 .611.792L5.618 8.38v2.726l1.685-1.604z' clip-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-tabler\:brand-telegram {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m15 10l-4 4l6 6l4-16l-18 7l4 2l2 6l3-4'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-tabler\:message-2-question {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 9h8m-8 4h6m.5 5.5L12 21l-3-3H6a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v4.5M19 22v.01M19 19a2.003 2.003 0 0 0 .914-3.782a1.98 1.98 0 0 0-2.414.483'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-tabler\:message-bolt {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 9h8m-8 4h6m-1 5l-5 3v-3H6a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v5.5M19 16l-2 3h4l-2 3'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-tabler\:user-share {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7a4 4 0 1 0 8 0a4 4 0 0 0-8 0M6 21v-2a4 4 0 0 1 4-4h3m3 7l5-5m0 4.5V17h-4.5'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-tdesign\:align-top {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M3 3h18v2H3zm9 2.586l-.707.707l-4 4l-.707.707L8 12.414l.707-.707L11 9.414V21h2V9.414l2.293 2.293l.707.707L17.414 11l-.707-.707l-4-4z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-tdesign\:certificate {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M1 3h22v18H1zm2 2v14h18V5h-2v6.5l-3-2.25l-3 2.25V5zm12 0v2.5l1-.75l1 .75V5zM5 11h6v2H5zm0 4h14v2H5z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-tdesign\:cucumber {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M14.726 2.18c2.16-.683 3.992-.404 5.36.583a5.1 5.1 0 0 1 1.244 1.284c.93 1.38 1.158 3.201.456 5.333c-.693 2.104-2.296 4.545-5.078 7.327c-2.828 2.828-5.304 4.438-7.433 5.112c-2.16.684-3.992.405-5.36-.582a5.1 5.1 0 0 1-1.244-1.284c-.93-1.38-1.158-3.201-.456-5.333c.693-2.104 2.296-4.545 5.078-7.327c2.828-2.828 5.304-4.438 7.433-5.112m.603 1.908c-1.705.54-3.913 1.91-6.621 4.62c-2.664 2.663-4.035 4.843-4.593 6.538a6 6 0 0 0-.305 1.53c3.124-5.112 8.103-9.938 13.188-12.972c-.487 0-1.041.085-1.669.284m3.872.766C13.545 7.884 7.797 13.469 4.746 19.16c2.679-1.493 5.528-3.782 8.11-6.372c2.558-2.566 4.81-5.383 6.345-7.935M6.922 20.196c.507.01 1.087-.074 1.75-.284c1.705-.54 3.913-1.911 6.621-4.62c2.664-2.663 4.035-4.844 4.593-6.538c.215-.653.309-1.228.31-1.732c-1.576 2.391-3.644 4.893-5.923 7.179c-2.297 2.303-4.84 4.42-7.35 5.995'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-tdesign\:home {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m12 1.198l10 8.334V22H2V9.532zM10 20h4v-5h-4zm6 0h4v-9.532l-8-6.666l-8 6.666V20h4v-7h8z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-tdesign\:logo-codesandbox {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M2.34 6.423L12 .845l9.66 5.578v11.154L12 23.155l-9.66-5.578zM12 3.155L9.67 4.5L12 5.845L14.33 4.5zm4.33 2.5L12 8.155l-4.33-2.5L5.34 7L12 10.845L18.66 7zm3.33 3.077L13 12.577v7.69l2.34-1.35v-4.994l4.32-2.495zm0 5.006l-2.32 1.34v2.684l2.32-1.34zm-15.32-2.31l4.32 2.495v4.994l2.34 1.35v-7.69L4.34 8.732zm0 2.31v2.685l2.32 1.34v-2.686z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-tdesign\:money {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 12.5a3.5 3.5 0 1 0 0 7a3.5 3.5 0 0 0 0-7M10.5 16a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0'/%3E%3Cpath fill='currentColor' d='M17.526 5.116L14.347.659L2.658 9.997L2.01 9.99V10H1.5v12h21V10h-.962l-1.914-5.599zM19.425 10H9.397l7.469-2.546l1.522-.487zM15.55 5.79L7.84 8.418l6.106-4.878zM3.5 18.169v-4.34A3 3 0 0 0 5.33 12h13.34a3 3 0 0 0 1.83 1.83v4.34A3 3 0 0 0 18.67 20H5.332A3.01 3.01 0 0 0 3.5 18.169'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-tdesign\:share {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M15.991 1.035a4 4 0 1 1-.855 6.267l-6.28 3.626q.147.533.145 1.072c0 .358-.047.719-.145 1.072l6.28 3.626a4.002 4.002 0 0 1 6.32 4.803a4 4 0 0 1-7.32-3.07l-6.28-3.627a4.002 4.002 0 1 1 0-5.608l6.28-3.626a4 4 0 0 1 1.855-4.535M19.723 3.5a2 2 0 1 0-3.464 2a2 2 0 0 0 3.464-2M3.071 12.527a2.002 2.002 0 0 0 2.93 1.204a2 2 0 1 0-2.93-1.204m15.92 5.242a2 2 0 1 0-2 3.464a2 2 0 0 0 2-3.464'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-tdesign\:stop-circle-stroke {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0-18M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12m7-4h8v8H8zm2 2v4h4v-4z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-tdesign\:user-1 {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12 4a3 3 0 1 0 0 6a3 3 0 0 0 0-6M7 7a5 5 0 1 1 10 0A5 5 0 0 1 7 7M3.5 19a5 5 0 0 1 5-5h7a5 5 0 0 1 5 5v2h-2v-2a3 3 0 0 0-3-3h-7a3 3 0 0 0-3 3v2h-2z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-teenyicons\:telegram-solid {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M14.993 1.582a.5.5 0 0 0-.661-.553l-14 5a.5.5 0 0 0-.056.918l4 2a.5.5 0 0 0 .501-.031l3.32-2.214L6.11 9.188a.5.5 0 0 0 .113.728l6 4a.5.5 0 0 0 .77-.334z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-teenyicons\:whatsapp-solid {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M5 4.768a.5.5 0 0 1 .761.34l.14.836a.5.5 0 0 1-.216.499l-.501.334A4.5 4.5 0 0 1 5 5.5zM9.5 10a4.5 4.5 0 0 1-1.277-.184l.334-.5a.5.5 0 0 1 .499-.217l.836.14a.5.5 0 0 1 .34.761z'/%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M0 7.5a7.5 7.5 0 1 1 3.253 6.182l-2.53 1.265a.5.5 0 0 1-.67-.67l1.265-2.53A7.47 7.47 0 0 1 0 7.5m4.23-3.42l.206-.138a1.5 1.5 0 0 1 2.311 1.001l.14.837a1.5 1.5 0 0 1-.648 1.495l-.658.438A4.5 4.5 0 0 0 7.286 9.42l.44-.658a1.5 1.5 0 0 1 1.494-.648l.837.14a1.5 1.5 0 0 1 1.001 2.311l-.138.207a.5.5 0 0 1-.42.229h-1A5.5 5.5 0 0 1 4 5.5v-1a.5.5 0 0 1 .23-.42' clip-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-twemoji-spiral-calendar {
  background: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 36 36' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='%2366757F' d='M28.815 4h1.996v1h-1.996z'/%3E%3Cpath fill='%23CCD6DD' d='M2 12v20a4 4 0 0 0 4 4h24a4 4 0 0 0 4-4V12z'/%3E%3Cpath fill='%23DD2E44' d='M30 4H6a4 4 0 0 0-4 4v5h32V8a4 4 0 0 0-4-4'/%3E%3Cpath fill='%23292F33' d='M8.836 8.731c-.702 0-1.271-.666-1.271-1.489c0-.822.569-1.489 1.271-1.489c.701 0 1.27.667 1.27 1.489s-.569 1.489-1.27 1.489m6 0c-.702 0-1.271-.666-1.271-1.489c0-.822.569-1.489 1.271-1.489c.701 0 1.27.667 1.27 1.489s-.569 1.489-1.27 1.489m6 0c-.702 0-1.271-.666-1.271-1.489c0-.822.569-1.489 1.271-1.489c.701 0 1.271.667 1.271 1.489c-.001.822-.57 1.489-1.271 1.489m6 0c-.702 0-1.271-.666-1.271-1.489c0-.822.569-1.489 1.271-1.489c.701 0 1.271.667 1.271 1.489c-.001.822-.57 1.489-1.271 1.489'/%3E%3Cpath fill='%2366757F' d='M27.315.179c-1.277 0-2.383.802-2.994 1.97c-.606-1.143-1.717-1.97-3.006-1.97c-1.277 0-2.383.802-2.994 1.97c-.606-1.143-1.717-1.97-3.006-1.97c-1.277 0-2.383.802-2.994 1.97c-.606-1.143-1.717-1.97-3.006-1.97c-1.934 0-3.5 1.819-3.5 4.005c0 1.854 1.045 3.371 2.569 3.926c.759.275 1.224-.447 1.159-1.026c-.055-.48-.374-.793-.729-1.018c-.485-.307-1-1.008-1-1.877c0-1.104.671-2.095 1.5-2.095s1.5.905 1.5 1.905h1.016c-.003.062-.016.121-.016.184c0 1.854 1.045 3.371 2.569 3.926c.759.275 1.224-.447 1.159-1.026c-.055-.479-.374-.792-.729-1.017c-.485-.307-1-1.008-1-1.877c0-1.104.671-2.095 1.5-2.095S16.815 3 16.815 4h1.016c-.003.062-.016.121-.016.184c0 1.854 1.045 3.371 2.569 3.926c.759.275 1.224-.447 1.159-1.026c-.055-.479-.374-.792-.729-1.017c-.485-.307-1-1.008-1-1.877c0-1.104.671-2.095 1.5-2.095S22.815 3 22.815 4h1.016c-.003.062-.016.121-.016.184c0 1.854 1.045 3.371 2.569 3.926c.759.275 1.224-.447 1.159-1.026c-.055-.479-.374-.792-.729-1.017c-.485-.307-1-1.008-1-1.877c0-1.104.671-2.095 1.5-2.095S28.815 3 28.815 4h1.996C30.79 2 29.235.179 27.315.179'/%3E%3Cpath fill='%23FFF' d='M11 15h4v4h-4zm5 0h4v4h-4zm5 0h4v4h-4zm5 0h4v4h-4zM6 20h4v4H6zm5 0h4v4h-4zm5 0h4v4h-4zm5 0h4v4h-4zm5 0h4v4h-4zM6 25h4v4H6zm5 0h4v4h-4zm5 0h4v4h-4zm5 0h4v4h-4zm5 0h4v4h-4zM6 30h4v4H6zm5 0h4v4h-4zm5 0h4v4h-4z'/%3E%3C/svg%3E")
    no-repeat;
  background-size: 100% 100%;
  background-color: transparent;
  width: 1em;
  height: 1em;
}
.i-uil\:comment-alt-message {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M17 7H7a1 1 0 0 0 0 2h10a1 1 0 0 0 0-2m0 4H7a1 1 0 0 0 0 2h10a1 1 0 0 0 0-2m2-9H5a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h11.59l3.7 3.71A1 1 0 0 0 21 22a.84.84 0 0 0 .38-.08A1 1 0 0 0 22 21V5a3 3 0 0 0-3-3m1 16.59l-2.29-2.3A1 1 0 0 0 17 16H5a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1Z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-uil\:money-withdrawal {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M22 2H2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h3v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-9h3a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1M7 20v-2a2 2 0 0 1 2 2Zm10 0h-2a2 2 0 0 1 2-2Zm0-4a4 4 0 0 0-4 4h-2a4 4 0 0 0-4-4V8h10Zm4-6h-2V7a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3H3V4h18Zm-9 5a3 3 0 1 0-3-3a3 3 0 0 0 3 3m0-4a1 1 0 1 1-1 1a1 1 0 0 1 1-1'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-uiw-apple {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 20 20' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M14.122 4.682c1.35 0 2.781.743 3.8 2.028c-3.34 1.851-2.797 6.674.578 7.963c-.465 1.04-.687 1.505-1.285 2.426c-.835 1.284-2.01 2.884-3.469 2.898c-1.295.012-1.628-.853-3.386-.843s-2.125.858-3.42.846c-1.458-.014-2.573-1.458-3.408-2.743C1.198 13.665.954 9.45 2.394 7.21C3.417 5.616 5.03 4.683 6.548 4.683c1.545 0 2.516.857 3.794.857c1.24 0 1.994-.858 3.78-.858M13.73 0c.18 1.215-.314 2.405-.963 3.247c-.695.902-1.892 1.601-3.05 1.565c-.21-1.163.332-2.36.99-3.167C11.43.755 12.67.074 13.73 0'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-uiw\:cloud-download {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 20 20' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M11.5 2.5a4.5 4.5 0 0 1 4.492 4.77H16l-.001 1.227a4 4 0 0 1 3.996 3.799l.005.2a4 4 0 0 1-3.8 3.992l-.2.005h-.001L16 16.5H4a4.01 4.01 0 0 1-4-4.005a4 4 0 0 1 3.198-3.918a3 3 0 0 1 4.313-3.664A4.5 4.5 0 0 1 11.5 2.5m-.046 4h-2v4.922L7 11.42l3.454 4.076l3.464-4.073h-2.464z'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.i-uiw\:facebook {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 20 20' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M18.896 0H1.104C.494 0 0 .494 0 1.104v17.792C0 19.506.494 20 1.104 20h9.578v-7.745H8.076V9.237h2.606V7.01c0-2.584 1.578-3.99 3.883-3.99c1.104 0 2.052.082 2.329.119v2.7h-1.598c-1.254 0-1.496.596-1.496 1.47v1.927h2.989l-.39 3.018h-2.6V20h5.097c.61 0 1.104-.494 1.104-1.104V1.104C20 .494 19.506 0 18.896 0'/%3E%3C/svg%3E");
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 1em;
  height: 1em;
}
.pointer-events-none {
  pointer-events: none;
}
.visible {
  visibility: visible;
}
.invisible\! {
  visibility: hidden !important;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.relative,
[relative=""] {
  position: relative;
}
.sticky {
  position: sticky;
}
.sticky\! {
  position: sticky !important;
}
[static=""] {
  position: static;
}
.-bottom-14 {
  bottom: -3.5rem;
}
.bottom-\$mg {
  bottom: var(--mg);
}
.bottom-0 {
  bottom: 0;
}
.bottom-30px\! {
  bottom: 30px !important;
}
.left-\[50\%\],
.left-50\% {
  left: 50%;
}
.left-0 {
  left: 0;
}
.left-13px {
  left: 13px;
}
.right--10px {
  right: -10px;
}
.right-\$mg {
  right: var(--mg);
}
.right-0 {
  right: 0;
}
.right-10px {
  right: 10px;
}
.right-24px {
  right: 24px;
}
.right-30px {
  right: 30px;
}
.right-4px {
  right: 4px;
}
.top--10px {
  top: -10px;
}
.top--5px {
  top: -5px;
}
.top-\[-16px\] {
  top: -16px;
}
.top-\[-20px\] {
  top: -20px;
}
.top-\[-30px\] {
  top: -30px;
}
.top-\[-40px\] {
  top: -40px;
}
.top-\[5\%\] {
  top: 5%;
}
.top-\[50\%\] {
  top: 50%;
}
.top-\[85\%\] {
  top: 85%;
}
.top-0,
.top-0px {
  top: 0;
}
.top-100px {
  top: 100px;
}
.top-10px {
  top: 10px;
}
.top-14px {
  top: 14px;
}
.top-20px {
  top: 20px;
}
.top-30px {
  top: 30px;
}
.top-34px {
  top: 34px;
}
.top-36px {
  top: 36px;
}
.top-40px {
  top: 40px;
}
.top-45px {
  top: 45px;
}
.top-4px {
  top: 4px;
}
.top-51px {
  top: 51px;
}
.top-52px {
  top: 52px;
}
.top-54px {
  top: 54px;
}
.top-57px {
  top: 57px;
}
.top-5px {
  top: 5px;
}
.top-60px {
  top: 60px;
}
.top-70px {
  top: 70px;
}
.top-71px {
  top: 71px;
}
.top-80px {
  top: 80px;
}
.top-83px {
  top: 83px;
}
.z-\[100\] {
  z-index: 100;
}
.z-\[9999999999\] {
  z-index: 9999999999;
}
.z-1,
[z-1=""] {
  z-index: 1;
}
.z-10000 {
  z-index: 10000;
}
.z-2 {
  z-index: 2;
}
.z-3 {
  z-index: 3;
}
.grid,
[grid=""] {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-12,
[grid-cols-12=""] {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-2\! {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
.grid-cols-3,
[grid-cols-3=""] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-3\! {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-4\! {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
.grid-cols-5,
[grid-cols-5=""] {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.float-left {
  float: left;
}
.clear-both {
  clear: both;
}
.m-\$mg {
  margin: var(--mg);
}
.m-10px {
  margin: 10px;
}
.m-16px {
  margin: 16px;
}
.m176 {
  margin: 44rem;
}
.m181\.66 {
  margin: 45.415rem;
}
.mx-\[-10px\] {
  margin-left: -10px;
  margin-right: -10px;
}
.mx-\[-16px\] {
  margin-left: -16px;
  margin-right: -16px;
}
.mx-\[-18px\] {
  margin-left: -18px;
  margin-right: -18px;
}
.mx-\$mg {
  margin-left: var(--mg);
  margin-right: var(--mg);
}
.mx-\$mg\! {
  margin-left: var(--mg) !important;
  margin-right: var(--mg) !important;
}
.mx-10px {
  margin-left: 10px;
  margin-right: 10px;
}
.mx-11px {
  margin-left: 11px;
  margin-right: 11px;
}
.mx-16px {
  margin-left: 16px;
  margin-right: 16px;
}
.mx-20px {
  margin-left: 20px;
  margin-right: 20px;
}
.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.mx-4px {
  margin-left: 4px;
  margin-right: 4px;
}
.mx-5px,
[mx-5px=""] {
  margin-left: 5px;
  margin-right: 5px;
}
.mx-8px {
  margin-left: 8px;
  margin-right: 8px;
}
.mx-auto,
[mx-auto=""] {
  margin-left: auto;
  margin-right: auto;
}
.my-\$mg {
  margin-top: var(--mg);
  margin-bottom: var(--mg);
}
.my-\$mg\! {
  margin-top: var(--mg) !important;
  margin-bottom: var(--mg) !important;
}
.my-0px\!,
[my-0px\!=""] {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-10px,
[my-10px=""] {
  margin-top: 10px;
  margin-bottom: 10px;
}
.my-11px {
  margin-top: 11px;
  margin-bottom: 11px;
}
.my-15px\! {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}
.my-16px {
  margin-top: 16px;
  margin-bottom: 16px;
}
.my-18px {
  margin-top: 18px;
  margin-bottom: 18px;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-20px {
  margin-top: 20px;
  margin-bottom: 20px;
}
.my-21px {
  margin-top: 21px;
  margin-bottom: 21px;
}
.my-2px {
  margin-top: 2px;
  margin-bottom: 2px;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.my-5px {
  margin-top: 5px;
  margin-bottom: 5px;
}
.my-6px {
  margin-top: 6px;
  margin-bottom: 6px;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.my-8px {
  margin-top: 8px;
  margin-bottom: 8px;
}
[my-11px~="default:"]:default {
  margin-top: 11px;
  margin-bottom: 11px;
}
.-mt-20px {
  margin-top: -20px;
}
.-mt-6 {
  margin-top: -1.5rem;
}
.important-mt-0px,
.mt-0\!,
[important-mt-0px=""],
[mt-0\!=""] {
  margin-top: 0 !important;
}
.important-mt-25px,
[important-mt-25px=""] {
  margin-top: 25px !important;
}
.mb--2 {
  margin-bottom: -0.5rem;
}
.mb-\[2px\],
.mb-2px {
  margin-bottom: 2px;
}
.mb-\$mg {
  margin-bottom: var(--mg);
}
.mb-10px {
  margin-bottom: 10px;
}
.mb-11px {
  margin-bottom: 11px;
}
.mb-12px {
  margin-bottom: 12px;
}
.mb-14px {
  margin-bottom: 14px;
}
.mb-16px {
  margin-bottom: 16px;
}
.mb-16px\! {
  margin-bottom: 16px !important;
}
.mb-17px {
  margin-bottom: 17px;
}
.mb-18px {
  margin-bottom: 18px;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-20px {
  margin-bottom: 20px;
}
.mb-25px {
  margin-bottom: 25px;
}
.mb-32px {
  margin-bottom: 32px;
}
.mb-4px {
  margin-bottom: 4px;
}
.mb-50px {
  margin-bottom: 50px;
}
.mb-5px {
  margin-bottom: 5px;
}
.mb-7,
[mb-7=""] {
  margin-bottom: 1.75rem;
}
.mb-8px,
[mb-8px=""] {
  margin-bottom: 8px;
}
.mb-9 {
  margin-bottom: 2.25rem;
}
.ml--2 {
  margin-left: -0.5rem;
}
.ml-\[calc\(var\(--mg\)\*-1\)\] {
  margin-left: calc(var(--mg) * -1);
}
.ml-\$mg {
  margin-left: var(--mg);
}
.ml-0\! {
  margin-left: 0 !important;
}
.ml-1,
[ml-1=""] {
  margin-left: 0.25rem;
}
.ml-10px {
  margin-left: 10px;
}
.ml-11px {
  margin-left: 11px;
}
.ml-16px {
  margin-left: 16px;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-20px {
  margin-left: 20px;
}
.ml-22px {
  margin-left: 22px;
}
.ml-2px {
  margin-left: 2px;
}
.ml-3 {
  margin-left: 0.75rem;
}
.ml-3px {
  margin-left: 3px;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-4px,
[ml-4px=""] {
  margin-left: 4px;
}
.ml-50\%,
[ml-50\%=""] {
  margin-left: 50%;
}
.ml-5px {
  margin-left: 5px;
}
.ml-6px {
  margin-left: 6px;
}
.ml-8px {
  margin-left: 8px;
}
.ml-auto {
  margin-left: auto;
}
.mr--2 {
  margin-right: -0.5rem;
}
.mr-\$mg {
  margin-right: var(--mg);
}
.mr-0\! {
  margin-right: 0 !important;
}
.mr-100px {
  margin-right: 100px;
}
.mr-10px,
[mr-10px=""] {
  margin-right: 10px;
}
.mr-11px {
  margin-right: 11px;
}
.mr-16px {
  margin-right: 16px;
}
.mr-2,
[mr-2=""] {
  margin-right: 0.5rem;
}
.mr-20px {
  margin-right: 20px;
}
.mr-21px {
  margin-right: 21px;
}
.mr-22px {
  margin-right: 22px;
}
.mr-24 {
  margin-right: 6rem;
}
.mr-2px {
  margin-right: 2px;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-30px {
  margin-right: 30px;
}
.mr-3px {
  margin-right: 3px;
}
.mr-4 {
  margin-right: 1rem;
}
.mr-4px {
  margin-right: 4px;
}
.mr-4px\! {
  margin-right: 4px !important;
}
.mr-5px {
  margin-right: 5px;
}
.mr-6px {
  margin-right: 6px;
}
.mr-8px,
[mr-8px=""] {
  margin-right: 8px;
}
.mr-9px {
  margin-right: 9px;
}
.ms {
  margin-inline-start: 1rem;
}
.mt-\[-8px\] {
  margin-top: -8px;
}
.mt-\$mg {
  margin-top: var(--mg);
}
.mt-\$mg\! {
  margin-top: var(--mg) !important;
}
.mt-\$mt {
  margin-top: var(--mt);
}
.mt-\$mt\! {
  margin-top: var(--mt) !important;
}
.mt-0px {
  margin-top: 0;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-10px,
[mt-10px=""] {
  margin-top: 10px;
}
.mt-10px\!,
[mt-10px\!=""] {
  margin-top: 10px !important;
}
.mt-11px {
  margin-top: 11px;
}
.mt-11px\! {
  margin-top: 11px !important;
}
.mt-12px,
[mt-12px=""] {
  margin-top: 12px;
}
.mt-12px\! {
  margin-top: 12px !important;
}
.mt-14px {
  margin-top: 14px;
}
.mt-15px,
[mt-15px=""] {
  margin-top: 15px;
}
.mt-15px\! {
  margin-top: 15px !important;
}
.mt-16px,
[mt-16px=""] {
  margin-top: 16px;
}
.mt-16px\!,
[mt-16px\!=""] {
  margin-top: 16px !important;
}
.mt-19px {
  margin-top: 19px;
}
.mt-2,
[mt-2=""] {
  margin-top: 0.5rem;
}
.mt-20px,
[mt-20px=""] {
  margin-top: 20px;
}
.mt-20px\!,
[mt-20px\!=""] {
  margin-top: 20px !important;
}
.mt-23px {
  margin-top: 23px;
}
.mt-24px {
  margin-top: 24px;
}
.mt-24px\! {
  margin-top: 24px !important;
}
.mt-25px {
  margin-top: 25px;
}
.mt-26px {
  margin-top: 26px;
}
.mt-27px {
  margin-top: 27px;
}
.mt-2px {
  margin-top: 2px;
}
.mt-3,
[mt-3=""] {
  margin-top: 0.75rem;
}
.mt-30px,
[mt-30px=""] {
  margin-top: 30px;
}
.mt-30px\! {
  margin-top: 30px !important;
}
.mt-31px {
  margin-top: 31px;
}
.mt-3px {
  margin-top: 3px;
}
.mt-4,
[mt-4=""] {
  margin-top: 1rem;
}
.mt-4\!,
[mt\!=""] {
  margin-top: 1rem !important;
}
.mt-40px,
[mt-40px=""] {
  margin-top: 40px;
}
.mt-40px\! {
  margin-top: 40px !important;
}
.mt-44px {
  margin-top: 44px;
}
.mt-4px {
  margin-top: 4px;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-50px {
  margin-top: 50px;
}
.mt-50px\! {
  margin-top: 50px !important;
}
.mt-57px {
  margin-top: 57px;
}
.mt-5px,
[mt-5px=""] {
  margin-top: 5px;
}
.mt-5px\! {
  margin-top: 5px !important;
}
.mt-6,
[mt-6=""] {
  margin-top: 1.5rem;
}
.mt-60px {
  margin-top: 60px;
}
.mt-60px\! {
  margin-top: 60px !important;
}
.mt-6px {
  margin-top: 6px;
}
.mt-7px {
  margin-top: 7px;
}
.mt-8\! {
  margin-top: 2rem !important;
}
.mt-80px {
  margin-top: 80px;
}
.mt-8px,
[mt-8px=""] {
  margin-top: 8px;
}
.mt-8px\! {
  margin-top: 8px !important;
}
[important-mt-25px~="default:"]:default {
  margin-top: 25px !important;
}
[mb-11px~="default:"]:default {
  margin-bottom: 11px;
}
[mt-11px~="default:"]:default {
  margin-top: 11px;
}
[mt-16px\!~="default:"]:default {
  margin-top: 16px !important;
}
[mt-16px~="default:"]:default {
  margin-top: 16px;
}
[mt-19px~="default:"]:default {
  margin-top: 19px;
}
[mt-20px\!~="default:"]:default {
  margin-top: 20px !important;
}
[mt-20px~="default:"]:default {
  margin-top: 20px;
}
[mt-31px~="default:"]:default {
  margin-top: 31px;
}
.first\:mt-2:first-child {
  margin-top: 0.5rem;
}
.box-border {
  box-sizing: border-box;
}
.box-border\! {
  box-sizing: border-box !important;
}
.block,
[block=""] {
  display: block;
}
.inline-block,
[inline-block=""] {
  display: inline-block;
}
.hidden {
  display: none;
}
.after\:hidden:after {
  display: none;
}
[after\:hidden=""]:after {
  display: none;
}
[size~="13px"] {
  width: 13px;
  height: 13px;
}
[size~="15px"] {
  width: 15px;
  height: 15px;
}
.h-\[120px\],
.h-120px {
  height: 120px;
}
.h-\[14px\],
.h-14px {
  height: 14px;
}
.h-\[calc\(100\%-120px\)\] {
  height: calc(100% - 120px);
}
.h-\[calc\(100\%-20px\)\] {
  height: calc(100% - 20px);
}
.h-\[calc\(100vh-200px\)\] {
  height: calc(100vh - 200px);
}
.h-\[calc\(100vh-480px\)\] {
  height: calc(100vh - 480px);
}
.h-\[calc\(var\(--vh\)\*100-44px\)\] {
  height: calc(var(--vh) * 100 - 44px);
}
.h-1,
.h1,
[h-1=""] {
  height: 0.25rem;
}
.h-10,
[h-10=""] {
  height: 2.5rem;
}
.h-100\%,
.h-full,
[h-full=""] {
  height: 100%;
}
.h-100px {
  height: 100px;
}
.h-105px {
  height: 105px;
}
.h-106px {
  height: 106px;
}
.h-108px {
  height: 108px;
}
.h-10px {
  height: 10px;
}
.h-110px {
  height: 110px;
}
.h-12,
[h-12=""] {
  height: 3rem;
}
.h-12px {
  height: 12px;
}
.h-139px,
[h-139px=""] {
  height: 139px;
}
.h-140px {
  height: 140px;
}
.h-150px {
  height: 150px;
}
.h-15px {
  height: 15px;
}
.h-16 {
  height: 4rem;
}
.h-160px {
  height: 160px;
}
.h-164px {
  height: 164px;
}
.h-167px {
  height: 167px;
}
.h-16px {
  height: 16px;
}
.h-170px {
  height: 170px;
}
.h-17px {
  height: 17px;
}
.h-180px {
  height: 180px;
}
.h-18px {
  height: 18px;
}
.h-19px {
  height: 19px;
}
.h-1px {
  height: 1px;
}
.h-2,
[h-2=""] {
  height: 0.5rem;
}
.h-200px {
  height: 200px;
}
.h-209px\! {
  height: 209px !important;
}
.h-20px,
[h-20px=""] {
  height: 20px;
}
.h-22px {
  height: 22px;
}
.h-23px {
  height: 23px;
}
.h-242px {
  height: 242px;
}
.h-24px {
  height: 24px;
}
.h-25px {
  height: 25px;
}
.h-26\.48px {
  height: 26.48px;
}
.h-26px {
  height: 26px;
}
.h-28 {
  height: 7rem;
}
.h-28px {
  height: 28px;
}
.h-2px {
  height: 2px;
}
.h-30px,
[h-30px=""] {
  height: 30px;
}
.h-31px {
  height: 31px;
}
.h-32\.26px {
  height: 32.26px;
}
.h-32px,
[h-32px=""] {
  height: 32px;
}
.h-32px\! {
  height: 32px !important;
}
.h-33px,
[h-33px=""] {
  height: 33px;
}
.h-34px,
[h-34px=""] {
  height: 34px;
}
.h-34px\! {
  height: 34px !important;
}
.h-35px,
[h-35px=""] {
  height: 35px;
}
.h-36\.42px {
  height: 36.42px;
}
.h-36px {
  height: 36px;
}
.h-36px\! {
  height: 36px !important;
}
.h-37\.53px {
  height: 37.53px;
}
.h-37px,
[h-37px=""] {
  height: 37px;
}
.h-37px\! {
  height: 37px !important;
}
.h-38px {
  height: 38px;
}
.h-39px\! {
  height: 39px !important;
}
.h-4 {
  height: 1rem;
}
.h-400px {
  height: 400px;
}
.h-40px {
  height: 40px;
}
.h-40px\!,
[h-40px\!=""] {
  height: 40px !important;
}
.h-42px,
[h-42px=""] {
  height: 42px;
}
.h-42px\! {
  height: 42px !important;
}
.h-44 {
  height: 11rem;
}
.h-44px {
  height: 44px;
}
.h-45px {
  height: 45px;
}
.h-46px {
  height: 46px;
}
.h-48px {
  height: 48px;
}
.h-4px {
  height: 4px;
}
.h-5,
[h-5=""] {
  height: 1.25rem;
}
.h-50\% {
  height: 50%;
}
.h-50px {
  height: 50px;
}
.h-51px,
[h-51px=""] {
  height: 51px;
}
.h-52px {
  height: 52px;
}
.h-53px {
  height: 53px;
}
.h-54px,
[h-54px=""] {
  height: 54px;
}
.h-56 {
  height: 14rem;
}
.h-56px {
  height: 56px;
}
.h-5px {
  height: 5px;
}
.h-6,
[h-6=""] {
  height: 1.5rem;
}
.h-60 {
  height: 15rem;
}
.h-60px,
[h-60px=""] {
  height: 60px;
}
.h-64 {
  height: 16rem;
}
.h-64px {
  height: 64px;
}
.h-65px {
  height: 65px;
}
.h-66px {
  height: 66px;
}
.h-67px {
  height: 67px;
}
.h-68px {
  height: 68px;
}
.h-70px {
  height: 70px;
}
.h-72px {
  height: 72px;
}
.h-77px {
  height: 77px;
}
.h-8 {
  height: 2rem;
}
.h-80px {
  height: 80px;
}
.h-84px {
  height: 84px;
}
.h-85px\! {
  height: 85px !important;
}
.h-89px {
  height: 89px;
}
.h-90\%,
[h-90\%=""] {
  height: 90%;
}
.h-90px {
  height: 90px;
}
.h-90vh {
  height: 90vh;
}
.h-99px {
  height: 99px;
}
.h-9px {
  height: 9px;
}
.h-auto {
  height: auto;
}
.h3 {
  height: 0.75rem;
}
.max-h-130px {
  max-height: 130px;
}
.max-h-160px {
  max-height: 160px;
}
.max-h-160px\! {
  max-height: 160px !important;
}
.max-h-280px {
  max-height: 280px;
}
.max-h-350px {
  max-height: 350px;
}
.max-h-40px {
  max-height: 40px;
}
.max-h-44px {
  max-height: 44px;
}
.max-h-46px {
  max-height: 46px;
}
.max-h-50px {
  max-height: 50px;
}
.max-w-120px {
  max-width: 120px;
}
.max-w-150px {
  max-width: 150px;
}
.max-w-200px {
  max-width: 200px;
}
.max-w-300px\! {
  max-width: 300px !important;
}
.max-w-360px {
  max-width: 360px;
}
.max-w-44px {
  max-width: 44px;
}
.max-w-46px {
  max-width: 46px;
}
.max-w-720px {
  max-width: 720px;
}
.max-w-80\% {
  max-width: 80%;
}
.max-w-88px {
  max-width: 88px;
}
.max-w-90\% {
  max-width: 90%;
}
.max-w-95\% {
  max-width: 95%;
}
.min-h-\[500px\] {
  min-height: 500px;
}
.min-h-100vh {
  min-height: 100vh;
}
.min-h-250px {
  min-height: 250px;
}
.min-h-40px {
  min-height: 40px;
}
.min-h-44px\! {
  min-height: 44px !important;
}
.min-h-full {
  min-height: 100%;
}
.min-w-150px {
  min-width: 150px;
}
.min-w-200px {
  min-width: 200px;
}
.min-w-46px {
  min-width: 46px;
}
.min-w-50px {
  min-width: 50px;
}
.min-w-80px {
  min-width: 80px;
}
.w-\[120px\],
.w-120px {
  width: 120px;
}
.w-\[70\%\],
.w-70\% {
  width: 70%;
}
.w-\[80\%\],
.w-80\% {
  width: 80%;
}
.w-\[calc\(\(100\%-30px\)\/2\)\] {
  width: calc((100% - 30px) / 2);
}
.w-\[calc\(100\%-106px\)\] {
  width: calc(100% - 106px);
}
.w-\[calc\(100\%-130px\)\] {
  width: calc(100% - 130px);
}
.w-\[calc\(100\%-150px\)\] {
  width: calc(100% - 150px);
}
.w-\[calc\(100\%-20px\)\] {
  width: calc(100% - 20px);
}
.w-\[calc\(100\%-34px\)\] {
  width: calc(100% - 34px);
}
.w-\[calc\(100\%\+2\*var\(--mg\)\)\] {
  width: calc(100% + 2 * var(--mg));
}
.w-\[calc\(100\%\+32px\)\] {
  width: calc(100% + 32px);
}
.w-\[calc\(100\%\+36px\)\] {
  width: calc(100% + 36px);
}
.w-\[calc\(100\%\+var\(--mg\)\*2\)\] {
  width: calc(100% + var(--mg) * 2);
}
.w-1,
[w-1=""] {
  width: 0.25rem;
}
.w-1\/2,
.w-50\% {
  width: 50%;
}
.w-10,
[w-10=""] {
  width: 2.5rem;
}
.w-100\%,
.w-full,
[w-full=""] {
  width: 100%;
}
.w-100px {
  width: 100px;
}
.w-104px {
  width: 104px;
}
.w-106px {
  width: 106px;
}
.w-10px {
  width: 10px;
}
.w-114px {
  width: 114px;
}
.w-117px {
  width: 117px;
}
.w-12,
[w-12=""] {
  width: 3rem;
}
.w-12px {
  width: 12px;
}
.w-130px {
  width: 130px;
}
.w-14 {
  width: 3.5rem;
}
.w-140px {
  width: 140px;
}
.w-141px {
  width: 141px;
}
.w-14px {
  width: 14px;
}
.w-150px {
  width: 150px;
}
.w-15px {
  width: 15px;
}
.w-16 {
  width: 4rem;
}
.w-160px {
  width: 160px;
}
.w-164px {
  width: 164px;
}
.w-165px {
  width: 165px;
}
.w-167px {
  width: 167px;
}
.w-16px {
  width: 16px;
}
.w-17px {
  width: 17px;
}
.w-18px,
.w18px {
  width: 18px;
}
.w-190px {
  width: 190px;
}
.w-19px,
[w-19px=""] {
  width: 19px;
}
.w-2,
[w-2=""] {
  width: 0.5rem;
}
.w-2\/3 {
  width: 66.6666666667%;
}
.w-200px {
  width: 200px;
}
.w-20px,
[w-20px=""] {
  width: 20px;
}
.w-21px {
  width: 21px;
}
.w-22px {
  width: 22px;
}
.w-238px {
  width: 238px;
}
.w-23px {
  width: 23px;
}
.w-242px {
  width: 242px;
}
.w-24px {
  width: 24px;
}
.w-250px {
  width: 250px;
}
.w-25px {
  width: 25px;
}
.w-26\.48px {
  width: 26.48px;
}
.w-263px\! {
  width: 263px !important;
}
.w-26px {
  width: 26px;
}
.w-28\.67px {
  width: 28.67px;
}
.w-280px {
  width: 280px;
}
.w-28px {
  width: 28px;
}
.w-30\%,
[w-30\%=""] {
  width: 30%;
}
.w-300px {
  width: 300px;
}
.w-30px,
[w-30px=""] {
  width: 30px;
}
.w-31px {
  width: 31px;
}
.w-32px {
  width: 32px;
}
.w-32px\! {
  width: 32px !important;
}
.w-33\% {
  width: 33%;
}
.w-34px {
  width: 34px;
}
.w-34px\! {
  width: 34px !important;
}
.w-36\.42px {
  width: 36.42px;
}
.w-36px {
  width: 36px;
}
.w-36px\! {
  width: 36px !important;
}
.w-37\.53px {
  width: 37.53px;
}
.w-37px {
  width: 37px;
}
.w-37px\! {
  width: 37px !important;
}
.w-38px {
  width: 38px;
}
.w-390px {
  width: 390px;
}
.w-39px\! {
  width: 39px !important;
}
.w-3px {
  width: 3px;
}
.w-4 {
  width: 1rem;
}
.w-40\% {
  width: 40%;
}
.w-40px {
  width: 40px;
}
.w-42px {
  width: 42px;
}
.w-44px {
  width: 44px;
}
.w-45px {
  width: 45px;
}
.w-46px {
  width: 46px;
}
.w-47px {
  width: 47px;
}
.w-48px {
  width: 48px;
}
.w-5,
[w-5=""] {
  width: 1.25rem;
}
.w-5\% {
  width: 5%;
}
.w-50px {
  width: 50px;
}
.w-52px {
  width: 52px;
}
.w-53px {
  width: 53px;
}
.w-54px {
  width: 54px;
}
.w-55px {
  width: 55px;
}
.w-5px {
  width: 5px;
}
.w-6 {
  width: 1.5rem;
}
.w-60px {
  width: 60px;
}
.w-62px {
  width: 62px;
}
.w-64px {
  width: 64px;
}
.w-66\.23px {
  width: 66.23px;
}
.w-66px {
  width: 66px;
}
.w-70px {
  width: 70px;
}
.w-77px {
  width: 77px;
}
.w-78px {
  width: 78px;
}
.w-7px {
  width: 7px;
}
.w-8 {
  width: 2rem;
}
.w-80\%\!,
[w-80\%\!=""] {
  width: 80% !important;
}
.w-80px,
[w-80px=""] {
  width: 80px;
}
.w-80vw {
  width: 80vw;
}
.w-84px {
  width: 84px;
}
.w-85px\! {
  width: 85px !important;
}
.w-88px {
  width: 88px;
}
.w-90\% {
  width: 90%;
}
.w-90\%\! {
  width: 90% !important;
}
.w-90px {
  width: 90px;
}
.w-99px {
  width: 99px;
}
.w-auto {
  width: auto;
}
.w-full\!,
[w-full\!=""] {
  width: 100% !important;
}
.w\[t\] {
  width: t;
}
[w-full\!~="default:"]:default {
  width: 100% !important;
}
[w-full~="default:"]:default {
  width: 100%;
}
[min-h-44px\!~="placeholder:"]::placeholder {
  min-height: 44px !important;
}
.flex,
[flex=""] {
  display: flex;
}
.flex\! {
  display: flex !important;
}
.inline-flex {
  display: inline-flex;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink,
.shrink,
.shrink-o,
[shrink=""] {
  flex-shrink: 1;
}
.shrink-0,
[shrink-0=""] {
  flex-shrink: 0;
}
.flex-col,
[flex-col=""] {
  flex-direction: column;
}
.flex-wrap,
[flex-wrap=""] {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.translate--50\% {
  --un-translate-x: -50%;
  --un-translate-y: -50%;
  transform: translate(var(--un-translate-x)) translateY(var(--un-translate-y))
    translateZ(var(--un-translate-z)) rotate(var(--un-rotate))
    rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y))
    rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y))
    scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
    scaleZ(var(--un-scale-z));
}
.-translate-y-4 {
  --un-translate-y: -1rem;
  transform: translate(var(--un-translate-x)) translateY(var(--un-translate-y))
    translateZ(var(--un-translate-z)) rotate(var(--un-rotate))
    rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y))
    rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y))
    scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
    scaleZ(var(--un-scale-z));
}
.translate-x-\[-16px\] {
  --un-translate-x: -16px;
  transform: translate(var(--un-translate-x)) translateY(var(--un-translate-y))
    translateZ(var(--un-translate-z)) rotate(var(--un-rotate))
    rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y))
    rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y))
    scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
    scaleZ(var(--un-scale-z));
}
.translate-x-\[-50\%\] {
  --un-translate-x: -50%;
  transform: translate(var(--un-translate-x)) translateY(var(--un-translate-y))
    translateZ(var(--un-translate-z)) rotate(var(--un-rotate))
    rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y))
    rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y))
    scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
    scaleZ(var(--un-scale-z));
}
.translate-x-\[-51\%\] {
  --un-translate-x: -51%;
  transform: translate(var(--un-translate-x)) translateY(var(--un-translate-y))
    translateZ(var(--un-translate-z)) rotate(var(--un-rotate))
    rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y))
    rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y))
    scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
    scaleZ(var(--un-scale-z));
}
.translate-y-\[-50\%\] {
  --un-translate-y: -50%;
  transform: translate(var(--un-translate-x)) translateY(var(--un-translate-y))
    translateZ(var(--un-translate-z)) rotate(var(--un-rotate))
    rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y))
    rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y))
    scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
    scaleZ(var(--un-scale-z));
}
.rotate-90 {
  --un-rotate-x: 0;
  --un-rotate-y: 0;
  --un-rotate-z: 0;
  --un-rotate: 90deg;
  transform: translate(var(--un-translate-x)) translateY(var(--un-translate-y))
    translateZ(var(--un-translate-z)) rotate(var(--un-rotate))
    rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y))
    rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y))
    scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
    scaleZ(var(--un-scale-z));
}
.transform,
[transform=""] {
  transform: translate(var(--un-translate-x)) translateY(var(--un-translate-y))
    translateZ(var(--un-translate-z)) rotate(var(--un-rotate))
    rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y))
    rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y))
    scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
    scaleZ(var(--un-scale-z));
}
@keyframes bounce {
  0%,
  to {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
.animate-bounce {
  animation: bounce 1s linear infinite;
}
.cursor-pointer,
[cursor-pointer=""] {
  cursor: pointer;
}
.resize {
  resize: both;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center,
[items-center=""] {
  align-items: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end,
[justify-end=""] {
  justify-content: flex-end;
}
.justify-center,
[justify-center=""] {
  justify-content: center;
}
.justify-between,
[justify-between=""] {
  justify-content: space-between;
}
[justify-between~="default:"]:default {
  justify-content: space-between;
}
.gap-10px {
  gap: 10px;
}
.gap-2,
[gap-2=""] {
  gap: 0.5rem;
}
.gap-20px {
  gap: 20px;
}
.gap-21px {
  gap: 21px;
}
.gap-3,
[gap-3=""] {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-4px {
  gap: 4px;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-5px {
  gap: 5px;
}
.gap-8px {
  gap: 8px;
}
.gap-9 {
  gap: 2.25rem;
}
[gap~="10"] {
  gap: 2.5rem;
}
.gap-col-10px,
.gap-x-10px {
  column-gap: 10px;
}
.gap-y-10px {
  row-gap: 10px;
}
.gap-y-14px {
  row-gap: 14px;
}
.gap-col-2 {
  column-gap: 0.5rem;
}
.gap-row-4 {
  row-gap: 1rem;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --un-space-x-reverse: 0;
  margin-left: calc(0.25rem * calc(1 - var(--un-space-x-reverse)));
  margin-right: calc(0.25rem * var(--un-space-x-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --un-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--un-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--un-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --un-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--un-space-y-reverse)));
  margin-bottom: calc(1rem * var(--un-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]) {
  --un-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--un-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--un-divide-y-reverse));
}
.divide-\[\#47484B\] > :not([hidden]) ~ :not([hidden]) {
  --un-divide-opacity: 1;
  border-color: rgb(71 72 75 / var(--un-divide-opacity));
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-hidden\! {
  overflow-x: hidden !important;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-y-auto\! {
  overflow-y: auto !important;
}
.text-truncate,
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.break-all {
  word-break: break-all;
}
.b-1px,
.border,
.border-1,
.border-1px,
[b=""],
[border=""] {
  border-width: 1px;
}
.border-0\! {
  border-width: 0px !important;
}
.border-2 {
  border-width: 2px;
}
.border\! {
  border-width: 1px !important;
}
.border-b,
[border-b=""] {
  border-bottom-width: 1px;
}
.border-b-1px\! {
  border-bottom-width: 1px !important;
}
.border-b-2px {
  border-bottom-width: 2px;
}
.border-b-2px\! {
  border-bottom-width: 2px !important;
}
.border-l {
  border-left-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.last\:border-b-0:last-child {
  border-bottom-width: 0px;
}
.last\:border-b-0\!:last-child {
  border-bottom-width: 0px !important;
}
.b-\$btn-text,
.border-\$btn-text {
  border-color: var(--btn-text);
}
.border-\[\#3B3C41\] {
  --un-border-opacity: 1;
  border-color: rgb(59 60 65 / var(--un-border-opacity));
}
.border-\[hsla\(0\,0\%\,100\%\,\.2\)\] {
  --un-border-opacity: 0.2;
  border-color: hsla(0, 0%, 100%, var(--un-border-opacity));
}
.border-\[rgba\(255\,255\,255\,0\.05\)\] {
  --un-border-opacity: 0.05;
  border-color: rgba(255, 255, 255, var(--un-border-opacity));
}
.border-\[rgba\(255\,255\,255\,0\.16\)\] {
  --un-border-opacity: 0.16;
  border-color: rgba(255, 255, 255, var(--un-border-opacity));
}
.border-\[rgba\(255\,255\,255\,0\.3\)\] {
  --un-border-opacity: 0.3;
  border-color: rgba(255, 255, 255, var(--un-border-opacity));
}
.border-\[rgba\(255\,255\,255\,0\.5\)\] {
  --un-border-opacity: 0.5;
  border-color: rgba(255, 255, 255, var(--un-border-opacity));
}
.border-\#232323 {
  --un-border-opacity: 1;
  border-color: rgb(35 35 35 / var(--un-border-opacity));
}
.border-\#2b3139 {
  --un-border-opacity: 1;
  border-color: rgb(43 49 57 / var(--un-border-opacity));
}
.border-\#3a3a3c {
  --un-border-opacity: 1;
  border-color: rgb(58 58 60 / var(--un-border-opacity));
}
.border-\#3a495c {
  --un-border-opacity: 1;
  border-color: rgb(58 73 92 / var(--un-border-opacity));
}
.border-\#4e5167 {
  --un-border-opacity: 1;
  border-color: rgb(78 81 103 / var(--un-border-opacity));
}
.border-\#86909C {
  --un-border-opacity: 1;
  border-color: rgb(134 144 156 / var(--un-border-opacity));
}
.border-\#ABBF42 {
  --un-border-opacity: 1;
  border-color: rgb(171 191 66 / var(--un-border-opacity));
}
.border-\#cacbd2 {
  --un-border-opacity: 1;
  border-color: rgb(202 203 210 / var(--un-border-opacity));
}
.border-\#EAC369 {
  --un-border-opacity: 1;
  border-color: rgb(234 195 105 / var(--un-border-opacity));
}
.border-\#f0f0f0 {
  --un-border-opacity: 1;
  border-color: rgb(240 240 240 / var(--un-border-opacity));
}
.border-\#f59a23 {
  --un-border-opacity: 1;
  border-color: rgb(245 154 35 / var(--un-border-opacity));
}
.border-\#fff,
.border-white {
  --un-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--un-border-opacity));
}
.border-\$bg-weight {
  border-color: var(--bg-weight);
}
.border-\$border-color {
  border-color: var(--border-color);
}
.border-\$border-color\! {
  border-color: var(--border-color) !important;
}
.border-\$border-color2 {
  border-color: var(--border-color2);
}
.border-\$border-color2\! {
  border-color: var(--border-color2) !important;
}
.border-\$btn-bg4 {
  border-color: var(--btn-bg4);
}
.border-\$btn-text2 {
  border-color: var(--btn-text2);
}
.border-\$main-text {
  border-color: var(--main-text);
}
.border-\$primary {
  border-color: var(--primary);
}
.border-\$primary\! {
  border-color: var(--primary) !important;
}
.border-\$text-gary {
  border-color: var(--text-gary);
}
.border-\$text-gray {
  border-color: var(--text-gray);
}
.border-\$text-gray\! {
  border-color: var(--text-gray) !important;
}
.border-\$text-gray6 {
  border-color: var(--text-gray6);
}
.border-\$text-gray6\! {
  border-color: var(--text-gray6) !important;
}
.rd,
.rounded,
[rounded=""] {
  border-radius: 0.25rem;
}
.rd-\$-card-radius {
  border-radius: var(---card-radius);
}
.rd-\$card-radius,
.rounded-\[var\(--card-radius\)\],
.rounded-\$card-radius {
  border-radius: var(--card-radius);
}
.rd-\$radius,
.rounded-\$radius {
  border-radius: var(--radius);
}
.rd-\$radius\! {
  border-radius: var(--radius) !important;
}
.rd-0\! {
  border-radius: 0 !important;
}
.rd-10px,
.rounded-\[10px\],
.rounded-10px {
  border-radius: 10px;
}
.rd-12px,
.rounded-12px,
[rd-12px=""] {
  border-radius: 12px;
}
.rd-15px {
  border-radius: 15px;
}
.rd-15px\! {
  border-radius: 15px !important;
}
.rd-18px,
.rounded-18px,
[rounded-18px=""] {
  border-radius: 18px;
}
.rd-4px,
.rounded-4px {
  border-radius: 4px;
}
.rd-50\% {
  border-radius: 50%;
}
.rd-5px {
  border-radius: 5px;
}
.rd-6px\!,
[rd-6px\!=""] {
  border-radius: 6px !important;
}
.rd-8px,
.rounded-8px,
[rounded-8px=""] {
  border-radius: 8px;
}
.rd-full,
.rounded-full,
[rounded-full=""] {
  border-radius: 9999px;
}
.rd\! {
  border-radius: 0.25rem !important;
}
.rounded-12px\! {
  border-radius: 12px !important;
}
.rounded-20px {
  border-radius: 20px;
}
.rounded-22px,
[rounded-22px=""] {
  border-radius: 22px;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-33px {
  border-radius: 33px;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-9px {
  border-radius: 9px;
}
.rounded-lg,
[rounded-lg=""] {
  border-radius: 0.5rem;
}
.rounded-md,
[rounded-md=""] {
  border-radius: 0.375rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
[rd-6px\!~="default:"]:default {
  border-radius: 6px !important;
}
.rd-b-4px {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.rd-t-20px {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.rounded-b-3xl {
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}
.rounded-b-xl {
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}
.rd-tl-15px {
  border-top-left-radius: 15px;
}
.rd-tr-4px {
  border-top-right-radius: 4px;
}
.b-style-dashed,
.border-dashed,
[border-dashed=""] {
  border-style: dashed;
}
.b-style-solid,
.border-solid,
[border-solid=""] {
  border-style: solid;
}
.border-dashed\! {
  border-style: dashed !important;
}
.border-none\! {
  border-style: none !important;
}
.border-solid\! {
  border-style: solid !important;
}
[last\:b-none~="default:"]:last-child:default {
  border-style: none;
}
.last\:b-none:last-child {
  border-style: none;
}
.last\:border-none:last-child {
  border-style: none;
}
.border-t-none\! {
  border-top-style: none !important;
}
[last\:border-b-none~="default:"]:last-child:default {
  border-bottom-style: none;
}
.last\:border-b-none:last-child {
  border-bottom-style: none;
}
.bg-\[\#000\],
.bg-\#000,
.bg-black {
  --un-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--un-bg-opacity));
}
.bg-\[\#384348\] {
  --un-bg-opacity: 1;
  background-color: rgb(56 67 72 / var(--un-bg-opacity));
}
.bg-\[\#707178\] {
  --un-bg-opacity: 1;
  background-color: rgb(112 113 120 / var(--un-bg-opacity));
}
.bg-\[rbga\(255\,255\,255\,0\.08\)\] {
  background-color: rbga(255, 255, 255, 0.08);
}
.bg-\[rbga\(255\,255\,255\,0\.09\)\] {
  background-color: rbga(255, 255, 255, 0.09);
}
.bg-\[rbga\(255\,255\,255\,0\.1\)\] {
  background-color: rbga(255, 255, 255, 0.1);
}
.bg-\[rgb\(243\,243\,243\)\] {
  --un-bg-opacity: 1;
  background-color: rgb(243 243 243 / var(--un-bg-opacity));
}
.bg-\[rgba\(0\,0\,0\,\.05\)\] {
  --un-bg-opacity: 0.05;
  background-color: rgba(0, 0, 0, var(--un-bg-opacity));
}
.bg-\[rgba\(0\,0\,0\,\.2\)\] {
  --un-bg-opacity: 0.2;
  background-color: rgba(0, 0, 0, var(--un-bg-opacity));
}
.bg-\[rgba\(0\,0\,0\,\.81\)\] {
  --un-bg-opacity: 0.81;
  background-color: rgba(0, 0, 0, var(--un-bg-opacity));
}
.bg-\[rgba\(0\,0\,0\,0\.05\)\] {
  --un-bg-opacity: 0.05;
  background-color: rgba(0, 0, 0, var(--un-bg-opacity));
}
.bg-\[rgba\(243\,243\,243\,0\.1\)\] {
  --un-bg-opacity: 0.1;
  background-color: rgba(243, 243, 243, var(--un-bg-opacity));
}
.bg-\[rgba\(255\,255\,255\,\.05\)\] {
  --un-bg-opacity: 0.05;
  background-color: rgba(255, 255, 255, var(--un-bg-opacity));
}
.bg-\[rgba\(255\,255\,255\,0\.08\)\] {
  --un-bg-opacity: 0.08;
  background-color: rgba(255, 255, 255, var(--un-bg-opacity));
}
.bg-\[rgba\(255\,255\,255\,0\.12\)\] {
  --un-bg-opacity: 0.12;
  background-color: rgba(255, 255, 255, var(--un-bg-opacity));
}
.bg-\[rgba\(255\,255\,255\,0\.13\)\] {
  --un-bg-opacity: 0.13;
  background-color: rgba(255, 255, 255, var(--un-bg-opacity));
}
.bg-\[rgba\(255\,255\,255\,0\.24\)\] {
  --un-bg-opacity: 0.24;
  background-color: rgba(255, 255, 255, var(--un-bg-opacity));
}
.bg-\#003682 {
  --un-bg-opacity: 1;
  background-color: rgb(0 54 130 / var(--un-bg-opacity));
}
.bg-\#01285f\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(1 40 95 / var(--un-bg-opacity)) !important;
}
.bg-\#053270 {
  --un-bg-opacity: 1;
  background-color: rgb(5 50 112 / var(--un-bg-opacity));
}
.bg-\#09c497 {
  --un-bg-opacity: 1;
  background-color: rgb(9 196 151 / var(--un-bg-opacity));
}
.bg-\#09c497\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(9 196 151 / var(--un-bg-opacity)) !important;
}
.bg-\#13d0fa\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(19 208 250 / var(--un-bg-opacity)) !important;
}
.bg-\#143e78\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(20 62 120 / var(--un-bg-opacity)) !important;
}
.bg-\#152928 {
  --un-bg-opacity: 1;
  background-color: rgb(21 41 40 / var(--un-bg-opacity));
}
.bg-\#171e21 {
  --un-bg-opacity: 1;
  background-color: rgb(23 30 33 / var(--un-bg-opacity));
}
.bg-\#17cdaf {
  --un-bg-opacity: 1;
  background-color: rgb(23 205 175 / var(--un-bg-opacity));
}
.bg-\#18283d {
  --un-bg-opacity: 1;
  background-color: rgb(24 40 61 / var(--un-bg-opacity));
}
.bg-\#183539 {
  --un-bg-opacity: 1;
  background-color: rgb(24 53 57 / var(--un-bg-opacity));
}
.bg-\#1f242b\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(31 36 43 / var(--un-bg-opacity)) !important;
}
.bg-\#1f2b30 {
  --un-bg-opacity: 1;
  background-color: rgb(31 43 48 / var(--un-bg-opacity));
}
.bg-\#202020 {
  --un-bg-opacity: 1;
  background-color: rgb(32 32 32 / var(--un-bg-opacity));
}
.bg-\#202020\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(32 32 32 / var(--un-bg-opacity)) !important;
}
.bg-\#222328 {
  --un-bg-opacity: 1;
  background-color: rgb(34 35 40 / var(--un-bg-opacity));
}
.bg-\#252a31 {
  --un-bg-opacity: 1;
  background-color: rgb(37 42 49 / var(--un-bg-opacity));
}
.bg-\#252a31\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(37 42 49 / var(--un-bg-opacity)) !important;
}
.bg-\#254351 {
  --un-bg-opacity: 1;
  background-color: rgb(37 67 81 / var(--un-bg-opacity));
}
.bg-\#294b65\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(41 75 101 / var(--un-bg-opacity)) !important;
}
.bg-\#2b3139 {
  --un-bg-opacity: 1;
  background-color: rgb(43 49 57 / var(--un-bg-opacity));
}
.bg-\#2C2C2C {
  --un-bg-opacity: 1;
  background-color: rgb(44 44 44 / var(--un-bg-opacity));
}
.bg-\#2c2c53\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(44 44 83 / var(--un-bg-opacity)) !important;
}
.bg-\#2DBD87 {
  --un-bg-opacity: 1;
  background-color: rgb(45 189 135 / var(--un-bg-opacity));
}
.bg-\#2de2b4 {
  --un-bg-opacity: 1;
  background-color: rgb(45 226 180 / var(--un-bg-opacity));
}
.bg-\#324765\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(50 71 101 / var(--un-bg-opacity)) !important;
}
.bg-\#3db89a {
  --un-bg-opacity: 1;
  background-color: rgb(61 184 154 / var(--un-bg-opacity));
}
.bg-\#3db89a\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(61 184 154 / var(--un-bg-opacity)) !important;
}
.bg-\#41404D {
  --un-bg-opacity: 1;
  background-color: rgb(65 64 77 / var(--un-bg-opacity));
}
.bg-\#44454b {
  --un-bg-opacity: 1;
  background-color: rgb(68 69 75 / var(--un-bg-opacity));
}
.bg-\#4B4952 {
  --un-bg-opacity: 1;
  background-color: rgb(75 73 82 / var(--un-bg-opacity));
}
.bg-\#5ae9b5 {
  --un-bg-opacity: 1;
  background-color: rgb(90 233 181 / var(--un-bg-opacity));
}
.bg-\#7B59D7 {
  --un-bg-opacity: 1;
  background-color: rgb(123 89 215 / var(--un-bg-opacity));
}
.bg-\#C5F1FF {
  --un-bg-opacity: 1;
  background-color: rgb(197 241 255 / var(--un-bg-opacity));
}
.bg-\#ce4040 {
  --un-bg-opacity: 1;
  background-color: rgb(206 64 64 / var(--un-bg-opacity));
}
.bg-\#ce4040\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(206 64 64 / var(--un-bg-opacity)) !important;
}
.bg-\#D79839 {
  --un-bg-opacity: 1;
  background-color: rgb(215 152 57 / var(--un-bg-opacity));
}
.bg-\#ECF4FE\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(236 244 254 / var(--un-bg-opacity)) !important;
}
.bg-\#f0f4f8 {
  --un-bg-opacity: 1;
  background-color: rgb(240 244 248 / var(--un-bg-opacity));
}
.bg-\#f0f4f8\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(240 244 248 / var(--un-bg-opacity)) !important;
}
.bg-\#f59a23 {
  --un-bg-opacity: 1;
  background-color: rgb(245 154 35 / var(--un-bg-opacity));
}
.bg-\#f5f5f5 {
  --un-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--un-bg-opacity));
}
.bg-\#f5f6f8 {
  --un-bg-opacity: 1;
  background-color: rgb(245 246 248 / var(--un-bg-opacity));
}
.bg-\#F6475C {
  --un-bg-opacity: 1;
  background-color: rgb(246 71 92 / var(--un-bg-opacity));
}
.bg-\#F7F8FA {
  --un-bg-opacity: 1;
  background-color: rgb(247 248 250 / var(--un-bg-opacity));
}
.bg-\#F7FAFF\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(247 250 255 / var(--un-bg-opacity)) !important;
}
.bg-\#f85963\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(248 89 99 / var(--un-bg-opacity)) !important;
}
.bg-\#F8F8F8 {
  --un-bg-opacity: 1;
  background-color: rgb(248 248 248 / var(--un-bg-opacity));
}
.bg-\#F8F8F8\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(248 248 248 / var(--un-bg-opacity)) !important;
}
.bg-\#f9dec9 {
  --un-bg-opacity: 1;
  background-color: rgb(249 222 201 / var(--un-bg-opacity));
}
.bg-\#facc15\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(250 204 21 / var(--un-bg-opacity)) !important;
}
.bg-\#fde047 {
  --un-bg-opacity: 1;
  background-color: rgb(253 224 71 / var(--un-bg-opacity));
}
.bg-\#ff5262\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(255 82 98 / var(--un-bg-opacity)) !important;
}
.bg-\#FFE500 {
  --un-bg-opacity: 1;
  background-color: rgb(255 229 0 / var(--un-bg-opacity));
}
.bg-\#fff,
.bg-white,
[bg-white=""] {
  --un-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--un-bg-opacity));
}
.bg-\$bg {
  background-color: var(--bg);
}
.bg-\$bg-card {
  background-color: var(--bg-card);
}
.bg-\$bg-card\! {
  background-color: var(--bg-card) !important;
}
.bg-\$bg-card2 {
  background-color: var(--bg-card2);
}
.bg-\$bg-card2\! {
  background-color: var(--bg-card2) !important;
}
.bg-\$bg-input {
  background-color: var(--bg-input);
}
.bg-\$bg-input\! {
  background-color: var(--bg-input) !important;
}
.bg-\$bg-second {
  background-color: var(--bg-second);
}
.bg-\$bg-tab {
  background-color: var(--bg-tab);
}
.bg-\$bg-tab\! {
  background-color: var(--bg-tab) !important;
}
.bg-\$bg-vip {
  background-color: var(--bg-vip);
}
.bg-\$bg-weight {
  background-color: var(--bg-weight);
}
.bg-\$bg-weight\! {
  background-color: var(--bg-weight) !important;
}
.bg-\$bg\! {
  background-color: var(--bg) !important;
}
.bg-\$btn-bg3 {
  background-color: var(--btn-bg3);
}
.bg-\$btn-text {
  background-color: var(--btn-text);
}
.bg-\$main-text {
  background-color: var(--main-text);
}
.bg-\$primary {
  background-color: var(--primary);
}
.bg-\$primary-second {
  background-color: var(--primary-second);
}
.bg-\$primary-second\! {
  background-color: var(--primary-second) !important;
}
.bg-\$primary\! {
  background-color: var(--primary) !important;
}
.bg-\$text-gray {
  background-color: var(--text-gray);
}
.bg-\$text-gray\! {
  background-color: var(--text-gray) !important;
}
.bg-\$text-gray6 {
  background-color: var(--text-gray6);
}
.bg-gray-300\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(209 213 219 / var(--un-bg-opacity)) !important;
}
.bg-gray-400\! {
  --un-bg-opacity: 1 !important;
  background-color: rgb(156 163 175 / var(--un-bg-opacity)) !important;
}
.bg-green {
  --un-bg-opacity: 1;
  background-color: rgb(74 222 128 / var(--un-bg-opacity));
}
.bg-transparent {
  background-color: transparent;
}
.bg-transparent\! {
  background-color: transparent !important;
}
.bg-white\!,
[bg-white\!=""] {
  --un-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--un-bg-opacity)) !important;
}
.bg-yellow {
  --un-bg-opacity: 1;
  background-color: rgb(250 204 21 / var(--un-bg-opacity));
}
.bg-zinc-600 {
  --un-bg-opacity: 1;
  background-color: rgb(82 82 91 / var(--un-bg-opacity));
}
.bg-opacity-0 {
  --un-bg-opacity: 0;
}
.bg-opacity-10 {
  --un-bg-opacity: 0.1;
}
.bg-opacity-12,
[bg-opacity-12=""] {
  --un-bg-opacity: 0.12;
}
.bg-opacity-16 {
  --un-bg-opacity: 0.16;
}
.bg-opacity-20 {
  --un-bg-opacity: 0.2;
}
.bg-opacity-5 {
  --un-bg-opacity: 0.05;
}
.bg-opacity-50 {
  --un-bg-opacity: 0.5;
}
.bg-opacity-55,
[bg-opacity-55=""] {
  --un-bg-opacity: 0.55;
}
.bg-opacity-6,
[bg-opacity-6=""] {
  --un-bg-opacity: 0.06;
}
.bg-opacity-9 {
  --un-bg-opacity: 0.09;
}
.bg-cover {
  background-size: cover;
}
.bg-no-repeat {
  background-repeat: no-repeat;
}
[fill-opacity~="0.18"] {
  --un-fill-opacity: 0.0018;
}
[fill-opacity~="0.5"] {
  --un-fill-opacity: 0.005;
}
[fill-opacity~="0.8"] {
  --un-fill-opacity: 0.008;
}
[fill-opacity~="1"] {
  --un-fill-opacity: 0.01;
}
[stroke-width~="4"] {
  stroke-width: 4px;
}
[stroke~="#ffffff"] {
  --un-stroke-opacity: 1;
  stroke: rgb(255 255 255 / var(--un-stroke-opacity));
}
[stroke~="black"] {
  --un-stroke-opacity: 1;
  stroke: rgb(0 0 0 / var(--un-stroke-opacity));
}
.object-contain {
  object-fit: contain;
}
.object-center {
  object-position: center;
}
.p-\$mg {
  padding: var(--mg);
}
.p-0\!,
[p-0\!=""] {
  padding: 0 !important;
}
.p-1,
[p-1=""],
[p~="1"] {
  padding: 0.25rem;
}
.p-10px {
  padding: 10px;
}
.p-10px\! {
  padding: 10px !important;
}
.p-12px {
  padding: 12px;
}
.p-14px {
  padding: 14px;
}
.p-15px {
  padding: 15px;
}
.p-16px,
[p-16px=""] {
  padding: 16px;
}
.p-16px\! {
  padding: 16px !important;
}
.p-1px {
  padding: 1px;
}
.p-2 {
  padding: 0.5rem;
}
.p-2\!,
[p-2\!=""] {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-4px {
  padding: 4px;
}
.p-5 {
  padding: 1.25rem;
}
.p-5px {
  padding: 5px;
}
.p-6px {
  padding: 6px;
}
.p-8px {
  padding: 8px;
}
.p-8px\! {
  padding: 8px !important;
}
.p-9px {
  padding: 9px;
}
[p-0\!~="default:"]:default {
  padding: 0 !important;
}
.px,
.px-4,
[px=""] {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-\$mg {
  padding-left: var(--mg);
  padding-right: var(--mg);
}
.px-\$mg\! {
  padding-left: var(--mg) !important;
  padding-right: var(--mg) !important;
}
.px-0\! {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.px-10px,
[px-10px=""] {
  padding-left: 10px;
  padding-right: 10px;
}
.px-11px {
  padding-left: 11px;
  padding-right: 11px;
}
.px-11px\!,
[px-11px\!=""] {
  padding-left: 11px !important;
  padding-right: 11px !important;
}
.px-12px {
  padding-left: 12px;
  padding-right: 12px;
}
.px-14px,
[px-14px=""] {
  padding-left: 14px;
  padding-right: 14px;
}
.px-15px {
  padding-left: 15px;
  padding-right: 15px;
}
.px-16px {
  padding-left: 16px;
  padding-right: 16px;
}
.px-17px {
  padding-left: 17px;
  padding-right: 17px;
}
.px-18px {
  padding-left: 18px;
  padding-right: 18px;
}
.px-2,
[px-2=""] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-20px {
  padding-left: 20px;
  padding-right: 20px;
}
.px-20px\! {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.px-24px {
  padding-left: 24px;
  padding-right: 24px;
}
.px-25px {
  padding-left: 25px;
  padding-right: 25px;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-32px {
  padding-left: 32px;
  padding-right: 32px;
}
.px-38px {
  padding-left: 38px;
  padding-right: 38px;
}
.px-4px {
  padding-left: 4px;
  padding-right: 4px;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-5px\! {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-6px {
  padding-left: 6px;
  padding-right: 6px;
}
.px-6px\! {
  padding-left: 6px !important;
  padding-right: 6px !important;
}
.px-8px,
[px-8px=""] {
  padding-left: 8px;
  padding-right: 8px;
}
.px-8px\!,
[px-8px\!=""] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.py-\[10px\],
.py-10px,
[py-10px=""] {
  padding-top: 10px;
  padding-bottom: 10px;
}
.py-\$mg {
  padding-top: var(--mg);
  padding-bottom: var(--mg);
}
.py-0\! {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-10px\!,
[py-10px\!=""] {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.py-11px {
  padding-top: 11px;
  padding-bottom: 11px;
}
.py-12px,
[py-12px=""] {
  padding-top: 12px;
  padding-bottom: 12px;
}
.py-13px {
  padding-top: 13px;
  padding-bottom: 13px;
}
.py-14px {
  padding-top: 14px;
  padding-bottom: 14px;
}
.py-14px\! {
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}
.py-15px {
  padding-top: 15px;
  padding-bottom: 15px;
}
.py-16px {
  padding-top: 16px;
  padding-bottom: 16px;
}
.py-18px,
[py-18px=""] {
  padding-top: 18px;
  padding-bottom: 18px;
}
.py-1px {
  padding-top: 1px;
  padding-bottom: 1px;
}
.py-2,
[py-2=""] {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-20px {
  padding-top: 20px;
  padding-bottom: 20px;
}
.py-20px\! {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.py-2px {
  padding-top: 2px;
  padding-bottom: 2px;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-30px {
  padding-top: 30px;
  padding-bottom: 30px;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-4px {
  padding-top: 4px;
  padding-bottom: 4px;
}
.py-4px\! {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-5px {
  padding-top: 5px;
  padding-bottom: 5px;
}
.py-5px\! {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-60px {
  padding-top: 60px;
  padding-bottom: 60px;
}
.py-6px,
[py-6px=""] {
  padding-top: 6px;
  padding-bottom: 6px;
}
.py-6px\! {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}
.py-70px {
  padding-top: 70px;
  padding-bottom: 70px;
}
.py-7px {
  padding-top: 7px;
  padding-bottom: 7px;
}
.py-80px {
  padding-top: 80px;
  padding-bottom: 80px;
}
.py-8px {
  padding-top: 8px;
  padding-bottom: 8px;
}
.py-9px {
  padding-top: 9px;
  padding-bottom: 9px;
}
[py-0\!~="default:"]:default {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
[py-2~="default:"]:default {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
[py-4~="default:"]:default {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
[py-4px\!~="default:"]:default {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
.pb-10 {
  padding-bottom: 2.5rem;
}
.pb-10px {
  padding-bottom: 10px;
}
.pb-10px\! {
  padding-bottom: 10px !important;
}
.pb-120px {
  padding-bottom: 120px;
}
.pb-12px {
  padding-bottom: 12px;
}
.pb-14px {
  padding-bottom: 14px;
}
.pb-17px\! {
  padding-bottom: 17px !important;
}
.pb-22px {
  padding-bottom: 22px;
}
.pb-24px {
  padding-bottom: 24px;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-30px,
[pb-30px=""] {
  padding-bottom: 30px;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-40px {
  padding-bottom: 40px;
}
.pb-40px\! {
  padding-bottom: 40px !important;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-60px {
  padding-bottom: 60px;
}
.pb-64px {
  padding-bottom: 64px;
}
.pb-70px {
  padding-bottom: 70px;
}
.pb-80px {
  padding-bottom: 80px;
}
.pb-8px {
  padding-bottom: 8px;
}
.pl-\$mg {
  padding-left: var(--mg);
}
.pl-10px {
  padding-left: 10px;
}
.pl-20px {
  padding-left: 20px;
}
.pl-24px,
[pl-24px=""] {
  padding-left: 24px;
}
.pl-28px {
  padding-left: 28px;
}
.pl-5 {
  padding-left: 1.25rem;
}
.pr {
  padding-right: 1rem;
}
.pr-1\% {
  padding-right: 1%;
}
.pr-10px {
  padding-right: 10px;
}
.pt-\$mg {
  padding-top: var(--mg);
}
.pt-\$mg\! {
  padding-top: var(--mg) !important;
}
.pt-0 {
  padding-top: 0;
}
.pt-0\! {
  padding-top: 0 !important;
}
.pt-100px {
  padding-top: 100px;
}
.pt-10px\! {
  padding-top: 10px !important;
}
.pt-15px\! {
  padding-top: 15px !important;
}
.pt-16px {
  padding-top: 16px;
}
.pt-17px\! {
  padding-top: 17px !important;
}
.pt-200px {
  padding-top: 200px;
}
.pt-20px {
  padding-top: 20px;
}
.pt-22px\!,
[pt-22px\!=""] {
  padding-top: 22px !important;
}
.pt-24px,
[pt-24px=""] {
  padding-top: 24px;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-30px {
  padding-top: 30px;
}
.pt-30px\! {
  padding-top: 30px !important;
}
.pt-32px {
  padding-top: 32px;
}
.pt-40px {
  padding-top: 40px;
}
.pt-40px\! {
  padding-top: 40px !important;
}
.pt-45px {
  padding-top: 45px;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-50px {
  padding-top: 50px;
}
.pt-57px {
  padding-top: 57px;
}
.pt-57px\! {
  padding-top: 57px !important;
}
.pt-5px {
  padding-top: 5px;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-60px\! {
  padding-top: 60px !important;
}
.pt-61px {
  padding-top: 61px;
}
.pt-70px {
  padding-top: 70px;
}
.pt-7px {
  padding-top: 7px;
}
.pt-80px {
  padding-top: 80px;
}
.pt-8px {
  padding-top: 8px;
}
.pt-8px\! {
  padding-top: 8px !important;
}
.pt-90px {
  padding-top: 90px;
}
[pb-17px\!~="default:"]:default {
  padding-bottom: 17px !important;
}
.first\:pt-0\!:first-child {
  padding-top: 0 !important;
}
.last\:pb-0\!:last-child {
  padding-bottom: 0 !important;
}
.text-center,
[text-center=""] {
  text-align: center;
}
[text-center~="default:"]:default {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right,
[text-right=""] {
  text-align: right;
}
.text-\[11px\] {
  font-size: 11px;
}
.text-\[14px\],
.text-14px {
  font-size: 14px;
}
.text-10px {
  font-size: 10px;
}
.text-11px {
    font-size: 11px;
}
.text-12px,
[text-12px=""] {
  font-size: 12px;
}
.text-12px\! {
  font-size: 12px !important;
}
.text-13px {
  font-size: 13px;
}
.text-14px\!,
[text-14px\!=""] {
  font-size: 14px !important;
}
.text-15px {
  font-size: 15px;
}
.text-15px\! {
  font-size: 15px !important;
}
.text-16px {
  font-size: 16px;
}
.text-18px {
  font-size: 18px;
}
.text-19px {
  font-size: 19px;
}
.text-20px {
  font-size: 20px;
}
.text-21px {
  font-size: 21px;
}
.text-22px {
  font-size: 22px;
}
.text-24px,
[text-24px=""] {
  font-size: 24px;
}
.text-26px {
  font-size: 26px;
}
.text-28px {
  font-size: 28px;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-32px {
  font-size: 32px;
}
.text-36px {
  font-size: 36px;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-8px {
  font-size: 8px;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-base\! {
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm,
[text-sm=""] {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs,
[text-xs=""] {
  font-size: 0.75rem;
  line-height: 1rem;
}
[text-12px~="default:"]:default {
  font-size: 12px;
}
.text-\[var\(--primary-color\)\]\! {
  color: var(--primary-color) !important;
}
.c-\$primary\!,
.text-\[var\(--primary\)\]\!,
.text-\$primary\! {
  color: var(--primary) !important;
}
.c-\$text-gray,
.text-\[var\(--text-gray\)\],
.text-\$text-gray {
  color: var(--text-gray);
}
.c-\$text-gray6,
.text-\[var\(--text-gray6\)\],
.text-\$text-gray6 {
  color: var(--text-gray6);
}
.text-\[var\(--text-secondary\)\] {
  color: var(--text-secondary);
}
.c-\#000,
.text-\#000,
.text-black,
[text-black=""] {
  --un-text-opacity: 1;
  color: rgb(0 0 0 / var(--un-text-opacity));
}
.text-\#000\!,
.text-black\! {
  --un-text-opacity: 1 !important;
  color: rgb(0 0 0 / var(--un-text-opacity)) !important;
}
.text-\#001dff {
  --un-text-opacity: 1;
  color: rgb(0 29 255 / var(--un-text-opacity));
}
.text-\#00FF57 {
  --un-text-opacity: 1;
  color: rgb(0 255 87 / var(--un-text-opacity));
}
.text-\#09c497 {
  --un-text-opacity: 1;
  color: rgb(9 196 151 / var(--un-text-opacity));
}
.text-\#17cdaf {
  --un-text-opacity: 1;
  color: rgb(23 205 175 / var(--un-text-opacity));
}
.text-\#222328 {
  --un-text-opacity: 1;
  color: rgb(34 35 40 / var(--un-text-opacity));
}
.text-\#282828 {
  --un-text-opacity: 1;
  color: rgb(40 40 40 / var(--un-text-opacity));
}
.text-\#2E6481 {
  --un-text-opacity: 1;
  color: rgb(46 100 129 / var(--un-text-opacity));
}
.text-\#3DAA7E {
  --un-text-opacity: 1;
  color: rgb(61 170 126 / var(--un-text-opacity));
}
.text-\#3db89a {
  --un-text-opacity: 1;
  color: rgb(61 184 154 / var(--un-text-opacity));
}
.text-\#3db89a\! {
  --un-text-opacity: 1 !important;
  color: rgb(61 184 154 / var(--un-text-opacity)) !important;
}
.c-\#568499,
.text-\#568499 {
  --un-text-opacity: 1;
  color: rgb(86 132 153 / var(--un-text-opacity));
}
.text-\#5bcb9a {
  --un-text-opacity: 1;
  color: rgb(91 203 154 / var(--un-text-opacity));
}
.text-\#6c3b23 {
  --un-text-opacity: 1;
  color: rgb(108 59 35 / var(--un-text-opacity));
}
.text-\#6c3b2e {
  --un-text-opacity: 1;
  color: rgb(108 59 46 / var(--un-text-opacity));
}
.text-\#768da5 {
  --un-text-opacity: 1;
  color: rgb(118 141 165 / var(--un-text-opacity));
}
.text-\#768da9 {
  --un-text-opacity: 1;
  color: rgb(118 141 169 / var(--un-text-opacity));
}
.text-\#794D2D {
  --un-text-opacity: 1;
  color: rgb(121 77 45 / var(--un-text-opacity));
}
.text-\#86909c {
  --un-text-opacity: 1;
  color: rgb(134 144 156 / var(--un-text-opacity));
}
.text-\#909193 {
  --un-text-opacity: 1;
  color: rgb(144 145 147 / var(--un-text-opacity));
}
.text-\#98A2A4 {
  --un-text-opacity: 1;
  color: rgb(152 162 164 / var(--un-text-opacity));
}
.text-\#a1a1a1 {
  --un-text-opacity: 1;
  color: rgb(161 161 161 / var(--un-text-opacity));
}
.text-\#bbbabf {
  --un-text-opacity: 1;
  color: rgb(187 186 191 / var(--un-text-opacity));
}
.text-\#cacbd2 {
  --un-text-opacity: 1;
  color: rgb(202 203 210 / var(--un-text-opacity));
}
.c-\#CBCBCB,
.text-\#CBCBCB {
  --un-text-opacity: 1;
  color: rgb(203 203 203 / var(--un-text-opacity));
}
.text-\#cbe7f4,
[color~="#cbe7f4"] {
  --un-text-opacity: 1;
  color: rgb(203 231 244 / var(--un-text-opacity));
}
.text-\#ce4040 {
  --un-text-opacity: 1;
  color: rgb(206 64 64 / var(--un-text-opacity));
}
.text-\#ce4040\! {
  --un-text-opacity: 1 !important;
  color: rgb(206 64 64 / var(--un-text-opacity)) !important;
}
.text-\#e2e8e4 {
  --un-text-opacity: 1;
  color: rgb(226 232 228 / var(--un-text-opacity));
}
.text-\#e2e8e4\! {
  --un-text-opacity: 1 !important;
  color: rgb(226 232 228 / var(--un-text-opacity)) !important;
}
.text-\#EAC369 {
  --un-text-opacity: 1;
  color: rgb(234 195 105 / var(--un-text-opacity));
}
.text-\#ededed {
  --un-text-opacity: 1;
  color: rgb(237 237 237 / var(--un-text-opacity));
}
.text-\#f59a23 {
  --un-text-opacity: 1;
  color: rgb(245 154 35 / var(--un-text-opacity));
}
.text-\#f85963\! {
  --un-text-opacity: 1 !important;
  color: rgb(248 89 99 / var(--un-text-opacity)) !important;
}
.text-\#f9dec9 {
  --un-text-opacity: 1;
  color: rgb(249 222 201 / var(--un-text-opacity));
}
.text-\#FEE61A {
  --un-text-opacity: 1;
  color: rgb(254 230 26 / var(--un-text-opacity));
}
.text-\#FF6565\! {
  --un-text-opacity: 1 !important;
  color: rgb(255 101 101 / var(--un-text-opacity)) !important;
}
.text-\#FF9E00\! {
  --un-text-opacity: 1 !important;
  color: rgb(255 158 0 / var(--un-text-opacity)) !important;
}
.text-\#FFDB02 {
  --un-text-opacity: 1;
  color: rgb(255 219 2 / var(--un-text-opacity));
}
.c-\#fff,
.text-\#fff,
.text-white,
[color~="#fff"],
[color~="#ffffff"],
[color~="white"],
[text-white=""] {
  --un-text-opacity: 1;
  color: rgb(255 255 255 / var(--un-text-opacity));
}
.text-\#fffc {
  --un-text-opacity: 0.8;
  color: rgb(255 255 255 / var(--un-text-opacity));
}
.text-\$base-btn-text {
  color: var(--base-btn-text);
}
.text-\$base-btn-text\! {
  color: var(--base-btn-text) !important;
}
.text-\$bg-weight {
  color: var(--bg-weight);
}
.text-\$border-color {
  color: var(--border-color);
}
.text-\$btn-gray {
  color: var(--btn-gray);
}
.c-\$btn-text,
.text-\$btn-text {
  color: var(--btn-text);
}
.c-\$btn-text\!,
.text-\$btn-text\! {
  color: var(--btn-text) !important;
}
.c-\$btn-text2,
.text-\$btn-text2 {
  color: var(--btn-text2);
}
.text-\$btn-text3 {
  color: var(--btn-text3);
}
.text-\$btn-text3\! {
  color: var(--btn-text3) !important;
}
.c-\$btn-text4,
.text-\$btn-text4 {
  color: var(--btn-text4);
}
.text-\$main-text {
  color: var(--main-text);
}
.text-\$main-text\! {
  color: var(--main-text) !important;
}
.c-\$primary,
.text-\$primary {
  color: var(--primary);
}
.text-\$tab-text {
  color: var(--tab-text);
}
.text-\$text-gray\! {
  color: var(--text-gray) !important;
}
.text-\$title-color {
  color: var(--title-color);
}
.text-amber {
  --un-text-opacity: 1;
  color: rgb(251 191 36 / var(--un-text-opacity));
}
.text-gray,
[text-gray=""] {
  --un-text-opacity: 1;
  color: rgb(156 163 175 / var(--un-text-opacity));
}
.c-green,
.text-green {
  --un-text-opacity: 1;
  color: rgb(74 222 128 / var(--un-text-opacity));
}
.text-green-500 {
  --un-text-opacity: 1;
  color: rgb(34 197 94 / var(--un-text-opacity));
}
.c-red,
.text-red {
  --un-text-opacity: 1;
  color: rgb(248 113 113 / var(--un-text-opacity));
}
.text-red\! {
  --un-text-opacity: 1 !important;
  color: rgb(248 113 113 / var(--un-text-opacity)) !important;
}
.text-slate-400 {
  --un-text-opacity: 1;
  color: rgb(148 163 184 / var(--un-text-opacity));
}
.text-slate-500 {
  --un-text-opacity: 1;
  color: rgb(100 116 139 / var(--un-text-opacity));
}
.text-slate-700 {
  --un-text-opacity: 1;
  color: rgb(51 65 85 / var(--un-text-opacity));
}
.text-white\! {
  --un-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--un-text-opacity)) !important;
}
.text-yellow {
  --un-text-opacity: 1;
  color: rgb(250 204 21 / var(--un-text-opacity));
}
.text-yellow\! {
  --un-text-opacity: 1 !important;
  color: rgb(250 204 21 / var(--un-text-opacity)) !important;
}
[text-gray~="1"] {
  --un-text-opacity: 1;
  color: rgb(243 244 246 / var(--un-text-opacity));
}
[text-gray~="default:"]:default {
  --un-text-opacity: 1;
  color: rgb(156 163 175 / var(--un-text-opacity));
}
.c-\#1b49b9 {
  --un-text-opacity: 1;
  color: rgb(27 73 185 / var(--un-text-opacity));
}
.c-\#2c9e90 {
  --un-text-opacity: 1;
  color: rgb(44 158 144 / var(--un-text-opacity));
}
.c-\#999 {
  --un-text-opacity: 1;
  color: rgb(153 153 153 / var(--un-text-opacity));
}
.c-\#ccc {
  --un-text-opacity: 1;
  color: rgb(204 204 204 / var(--un-text-opacity));
}
.c-\#d08a7a {
  --un-text-opacity: 1;
  color: rgb(208 138 122 / var(--un-text-opacity));
}
.c-\$bg-tray {
  color: var(--bg-tray);
}
.c-\$btn-text5 {
  color: var(--btn-text5);
}
.c-\$nav-border\! {
  color: var(--nav-border) !important;
}
.c-\$nav-text {
  color: var(--nav-text);
}
.c-\$nav-text\! {
  color: var(--nav-text) !important;
}
.c-\$text-black {
  color: var(--text-black);
}
.c-\$text-notice {
  color: var(--text-notice);
}
.c-\$text-white {
  color: var(--text-white);
}
.c-\$title-decor {
  color: var(--title-decor);
}
[color~="#2c3850"] {
  --un-text-opacity: 1;
  color: rgb(44 56 80 / var(--un-text-opacity));
}
[color~="#ababb3"] {
  --un-text-opacity: 1;
  color: rgb(171 171 179 / var(--un-text-opacity));
}
.font-500 {
  font-weight: 500;
}
.font-600 {
  font-weight: 600;
}
.font-800 {
  font-weight: 800;
}
.font-bold,
[font-bold=""] {
  font-weight: 700;
}
.font-bold\! {
  font-weight: 700 !important;
}
.font-normal {
  font-weight: 400;
}
.font-thin {
  font-weight: 100;
}
.leading-150px {
  line-height: 150px;
}
.leading-20px,
.lh-20px {
  line-height: 20px;
}
.leading-25px {
  line-height: 25px;
}
.leading-30px {
  line-height: 30px;
}
.leading-32px,
[leading-32px=""] {
  line-height: 32px;
}
.leading-33px {
  line-height: 33px;
}
.leading-34px,
.lh-34px,
[leading-34px=""] {
  line-height: 34px;
}
.leading-36px {
  line-height: 36px;
}
.leading-37px,
[leading-37px=""] {
  line-height: 37px;
}
.leading-38px {
  line-height: 38px;
}
.leading-40px {
  line-height: 40px;
}
.leading-42px,
[leading-42px=""] {
  line-height: 42px;
}
.leading-54px,
[leading-54px=""] {
  line-height: 54px;
}
.lh-14px {
  line-height: 14px;
}
.lh-15px {
  line-height: 15px;
}
.lh-24px {
  line-height: 24px;
}
.lh-44px {
  line-height: 44px;
}
.font-jmono {
  font-family: JetBrains Mono, JetBrains Mono;
}
.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    Liberation Mono, Courier New, monospace;
}
.font-italic {
  font-style: italic;
}
.line-through {
  text-decoration-line: line-through;
}
.underline {
  text-decoration-line: underline;
}
.text-shadow {
  --un-text-shadow: 0 0 1px var(--un-text-shadow-color, rgb(0 0 0 / 0.2)),
    0 0 1px var(--un-text-shadow-color, rgb(1 0 5 / 0.1));
  text-shadow: var(--un-text-shadow);
}
.text-shadow-color-\#c48141 {
  --un-text-shadow-opacity: 1;
  --un-text-shadow-color: rgb(196 129 65 / var(--un-text-shadow-opacity));
}
.opacity-0 {
  opacity: 0;
}
.opacity-30\! {
  opacity: 0.3 !important;
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-70 {
  opacity: 0.7;
}
.opacity-80 {
  opacity: 0.8;
}
.shadow {
  --un-shadow: var(--un-shadow-inset) 0 1px 3px 0
      var(--un-shadow-color, rgb(0 0 0 / 0.1)),
    var(--un-shadow-inset) 0 1px 2px -1px var(--un-shadow-color, rgb(0 0 0 / 0.1));
  box-shadow: var(--un-ring-offset-shadow), var(--un-ring-shadow),
    var(--un-shadow);
}
.shadow-\$box-shadow {
  --un-shadow: var(--box-shadow);
  box-shadow: var(--un-ring-offset-shadow), var(--un-ring-shadow),
    var(--un-shadow);
}
.shadow-\$shadow {
  --un-shadow: var(--shadow);
  box-shadow: var(--un-ring-offset-shadow), var(--un-ring-shadow),
    var(--un-shadow);
}
.shadow-\$shadow\! {
  --un-shadow: var(--shadow) !important;
  box-shadow: var(--un-ring-offset-shadow), var(--un-ring-shadow),
    var(--un-shadow) !important;
}
.shadow-none\! {
  --un-shadow: 0 0 var(--un-shadow-color, rgb(0 0 0 / 0)) !important;
  box-shadow: var(--un-ring-offset-shadow), var(--un-ring-shadow),
    var(--un-shadow) !important;
}
.shadow-xl {
  --un-shadow: var(--un-shadow-inset) 0 20px 25px -5px var(--un-shadow-color, rgb(0
            0 0 / 0.1)),
    var(--un-shadow-inset) 0 8px 10px -6px var(--un-shadow-color, rgb(0 0 0 /
            0.1));
  box-shadow: var(--un-ring-offset-shadow), var(--un-ring-shadow),
    var(--un-shadow);
}
[shadow~="default:"]:default {
  --un-shadow: var(--un-shadow-inset) 0 1px 3px 0
      var(--un-shadow-color, rgb(0 0 0 / 0.1)),
    var(--un-shadow-inset) 0 1px 2px -1px var(--un-shadow-color, rgb(0 0 0 / 0.1));
  box-shadow: var(--un-ring-offset-shadow), var(--un-ring-shadow),
    var(--un-shadow);
}
.backdrop-blur-10px {
  --un-backdrop-blur: blur(10px);
  -webkit-backdrop-filter: var(--un-backdrop-blur) var(--un-backdrop-brightness)
    var(--un-backdrop-contrast) var(--un-backdrop-grayscale)
    var(--un-backdrop-hue-rotate) var(--un-backdrop-invert)
    var(--un-backdrop-opacity) var(--un-backdrop-saturate)
    var(--un-backdrop-sepia);
  backdrop-filter: var(--un-backdrop-blur) var(--un-backdrop-brightness)
    var(--un-backdrop-contrast) var(--un-backdrop-grayscale)
    var(--un-backdrop-hue-rotate) var(--un-backdrop-invert)
    var(--un-backdrop-opacity) var(--un-backdrop-saturate)
    var(--un-backdrop-sepia);
}
.backdrop-blur-15px {
  --un-backdrop-blur: blur(15px);
  -webkit-backdrop-filter: var(--un-backdrop-blur) var(--un-backdrop-brightness)
    var(--un-backdrop-contrast) var(--un-backdrop-grayscale)
    var(--un-backdrop-hue-rotate) var(--un-backdrop-invert)
    var(--un-backdrop-opacity) var(--un-backdrop-saturate)
    var(--un-backdrop-sepia);
  backdrop-filter: var(--un-backdrop-blur) var(--un-backdrop-brightness)
    var(--un-backdrop-contrast) var(--un-backdrop-grayscale)
    var(--un-backdrop-hue-rotate) var(--un-backdrop-invert)
    var(--un-backdrop-opacity) var(--un-backdrop-saturate)
    var(--un-backdrop-sepia);
}
.backdrop-blur-4px {
  --un-backdrop-blur: blur(4px);
  -webkit-backdrop-filter: var(--un-backdrop-blur) var(--un-backdrop-brightness)
    var(--un-backdrop-contrast) var(--un-backdrop-grayscale)
    var(--un-backdrop-hue-rotate) var(--un-backdrop-invert)
    var(--un-backdrop-opacity) var(--un-backdrop-saturate)
    var(--un-backdrop-sepia);
  backdrop-filter: var(--un-backdrop-blur) var(--un-backdrop-brightness)
    var(--un-backdrop-contrast) var(--un-backdrop-grayscale)
    var(--un-backdrop-hue-rotate) var(--un-backdrop-invert)
    var(--un-backdrop-opacity) var(--un-backdrop-saturate)
    var(--un-backdrop-sepia);
}
.filter-grayscale-90 {
  --un-grayscale: grayscale(0.9);
  filter: var(--un-blur) var(--un-brightness) var(--un-contrast)
    var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate)
    var(--un-invert) var(--un-saturate) var(--un-sepia);
}
.grayscale {
  --un-grayscale: grayscale(1);
  filter: var(--un-blur) var(--un-brightness) var(--un-contrast)
    var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate)
    var(--un-invert) var(--un-saturate) var(--un-sepia);
}
.filter {
  filter: var(--un-blur) var(--un-brightness) var(--un-contrast)
    var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate)
    var(--un-invert) var(--un-saturate) var(--un-sepia);
}
.backdrop-filter {
  -webkit-backdrop-filter: var(--un-backdrop-blur) var(--un-backdrop-brightness)
    var(--un-backdrop-contrast) var(--un-backdrop-grayscale)
    var(--un-backdrop-hue-rotate) var(--un-backdrop-invert)
    var(--un-backdrop-opacity) var(--un-backdrop-saturate)
    var(--un-backdrop-sepia);
  backdrop-filter: var(--un-backdrop-blur) var(--un-backdrop-brightness)
    var(--un-backdrop-contrast) var(--un-backdrop-grayscale)
    var(--un-backdrop-hue-rotate) var(--un-backdrop-invert)
    var(--un-backdrop-opacity) var(--un-backdrop-saturate)
    var(--un-backdrop-sepia);
}
.transition {
  transition-property: color, background-color, border-color, outline-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.transition-all,
[transition-all=""] {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.ease,
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.before\:content-none\!:before {
  content: none !important;
}
.after-content-none\!:after {
  content: none !important;
}
[placeholder~="$t("]::placeholder {
  color: var(--t\();
}
@media (min-width: 768px) {
  .md\:top-100\% {
    top: 100%;
  }
  .md\:top-100px {
    top: 100px;
  }
  .md\:top-122px {
    top: 122px;
  }
  .md\:top-160px {
    top: 160px;
  }
  .md\:top-55\% {
    top: 55%;
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:ml-34px {
    margin-left: 34px;
  }
  .md\:ml-50px {
    margin-left: 50px;
  }
  .md\:mr-34px {
    margin-right: 34px;
  }
  .md\:mt-110px {
    margin-top: 110px;
  }
  .md\:mt-50px {
    margin-top: 50px;
  }
  .md\:h-\[calc\(100vh-700px\)\] {
    height: calc(100vh - 700px);
  }
  .md\:h-110px {
    height: 110px;
  }
  .md\:h-122px {
    height: 122px;
  }
  .md\:h-30\.72px {
    height: 30.72px;
  }
  .md\:h-30px {
    height: 30px;
  }
  .md\:max-h-220px\! {
    max-height: 220px !important;
  }
  .md\:w-110px {
    width: 110px;
  }
  .md\:w-135px {
    width: 135px;
  }
  .md\:w-136px {
    width: 136px;
  }
  .md\:w-140px {
    width: 140px;
  }
  .md\:w-150px {
    width: 150px;
  }
  .md\:w-30px {
    width: 30px;
  }
  .md\:w-55\% {
    width: 55%;
  }
  .md\:w-76\.8px {
    width: 76.8px;
  }
  .md\:justify-center {
    justify-content: center;
  }
  .md\:justify-around {
    justify-content: space-around;
  }
  .md\:pt-130px {
    padding-top: 130px;
  }
  .md\:pt-250px {
    padding-top: 250px;
  }
}
@media (min-width: 1024px) {
  .lg\:top-\[60\%\] {
    top: 60%;
  }
  .lg\:top-110\% {
    top: 110%;
  }
  .lg\:w-50\% {
    width: 50%;
  }
}
:root,
:host {
  --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: 30px;
  --van-loading-spinner-duration: 0.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;
  animation: van-rotate var(--van-loading-spinner-duration) linear infinite;
}
.van-loading__spinner--spinner {
  animation-timing-function: steps(12);
}
.van-loading__spinner--circular {
  animation-duration: 2s;
}
.van-loading__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.van-loading__line:before {
  display: block;
  width: 2px;
  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 {
  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;
}
@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: 0.9375;
}
.van-loading__line--3 {
  transform: rotate(90deg);
  opacity: 0.875;
}
.van-loading__line--4 {
  transform: rotate(120deg);
  opacity: 0.8125;
}
.van-loading__line--5 {
  transform: rotate(150deg);
  opacity: 0.75;
}
.van-loading__line--6 {
  transform: rotate(180deg);
  opacity: 0.6875;
}
.van-loading__line--7 {
  transform: rotate(210deg);
  opacity: 0.625;
}
.van-loading__line--8 {
  transform: rotate(240deg);
  opacity: 0.5625;
}
.van-loading__line--9 {
  transform: rotate(270deg);
  opacity: 0.5;
}
.van-loading__line--10 {
  transform: rotate(300deg);
  opacity: 0.4375;
}
.van-loading__line--11 {
  transform: rotate(330deg);
  opacity: 0.375;
}
.van-loading__line--12 {
  transform: rotate(360deg);
  opacity: 0.3125;
}
:root,
:host {
  --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, 0.7);
  --van-toast-icon-size: 36px;
  --van-toast-text-min-width: 96px;
  --van-toast-text-padding: var(--van-padding-xs) var(--van-padding-sm);
  --van-toast-default-padding: var(--van-padding-md);
  --van-toast-default-width: 88px;
  --van-toast-default-min-height: 88px;
  --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: 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,
:host {
  --van-action-bar-background: var(--van-background-2);
  --van-action-bar-height: 50px;
}
.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,
:host {
  --van-button-mini-height: 24px;
  --van-button-mini-padding: 0 var(--van-padding-base);
  --van-button-mini-font-size: var(--van-font-size-xs);
  --van-button-small-height: 32px;
  --van-button-small-padding: 0 var(--van-padding-xs);
  --van-button-small-font-size: var(--van-font-size-sm);
  --van-button-normal-padding: 0 15px;
  --van-button-normal-font-size: var(--van-font-size-md);
  --van-button-large-height: 50px;
  --van-button-default-height: 44px;
  --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: 20px;
}
.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: 0.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;
}
:root,
:host {
  --van-action-bar-button-height: 40px;
  --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: 5px;
  border-top-left-radius: var(--van-radius-max);
  border-bottom-left-radius: var(--van-radius-max);
}
.van-action-bar-button--last {
  margin-right: 5px;
  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,
:host {
  --van-dialog-width: 320px;
  --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: 16px;
  --van-dialog-background: var(--van-background-2);
  --van-dialog-header-font-weight: var(--van-font-bold);
  --van-dialog-header-line-height: 24px;
  --van-dialog-header-padding-top: 26px;
  --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: 48px;
  --van-dialog-round-button-height: 36px;
  --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);
  -webkit-backface-visibility: hidden;
  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: 104px;
}
.van-dialog__message {
  color: var(--van-text-color);
  flex: 1;
  max-height: var(--van-dialog-message-max-height);
  padding: 26px 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;
  user-select: none;
}
.van-dialog__confirm,
.van-dialog__cancel {
  flex: 1;
  height: var(--van-dialog-button-height);
  margin: 0;
  border: 0;
  border-radius: 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--round-button .van-action-bar-button--first {
  border-top-left-radius: var(--van-radius-max);
  border-bottom-left-radius: var(--van-radius-max);
}
.van-dialog--round-button .van-action-bar-button--last {
  border-top-right-radius: var(--van-radius-max);
  border-bottom-right-radius: var(--van-radius-max);
}
.van-dialog-bounce-enter-from {
  transform: translate3d(0, -50%, 0) scale(0.7);
  opacity: 0;
}
.van-dialog-bounce-leave-active {
  transform: translate3d(0, -50%, 0) scale(0.9);
  opacity: 0;
}
:root,
:host {
  --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,
:host {
  --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: 32px;
  --van-image-loading-icon-color: var(--van-gray-4);
  --van-image-error-icon-size: 32px;
  --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,
:host {
  --van-swipe-indicator-size: 6px;
  --van-swipe-indicator-margin: var(--van-padding-sm);
  --van-swipe-indicator-active-opacity: 1;
  --van-swipe-indicator-inactive-opacity: 0.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;
  user-select: none;
}
.van-swipe__track {
  display: flex;
  height: 100%;
  transition-property: transform;
}
.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,
:host {
  --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, 0.9);
  --van-image-preview-close-icon-size: 22px;
  --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: 36px;
}
.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 {
  --text-black: #000;
  --text-white: #fff;
  --bg-weight: rgba(255, 255, 255, 0.19);
  --golden-gradient: linear-gradient(60deg, #fcecb9, #efc26f);
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --van-floating-bubble-background: transparent !important;
}
body,
html,
a,
img,
div,
form,
select,
input,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
dd,
dl,
dt,
p,
label,
em,
span,
cude,
i {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  cursor: pointer;
  outline: none;
}
ol,
ul,
li {
  list-style: none;
}
em,
i {
  font-style: normal;
}
img {
  border: none;
  vertical-align: top;
}
input,
textarea,
button {
  outline: none;
  border: none;
}
textarea {
  resize: none;
}
input,
textarea {
  font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB,
    Microsoft YaHei, 微软雅黑, Arial, sans-serif;
  font-size: 16px !important;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--btn-text);
  transition: background-color 5000s ease-in-out 0s;
}
.a-t-1 {
  --radius: 30px;
  --btn-radius: 38px;
  --card-radius: 0.5rem;
  --padding: 30px;
  --mg: 12px;
  --bg-card: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.12) 100%
  );
  --bg-weight: rgb(31 43 48);
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --btn-text2: #f9b44b;
  --border-color: rgba(255, 255, 255, 0.2);
  --text-gray: #a5b1b9;
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-1 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-1 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-1 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-1 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 24px;
}
.a-t-1 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-1 .base-input .label {
  margin-bottom: 12px;
}
.a-t-1 .base-input .input-box {
  padding: 0 16px;
  box-sizing: border-box;
  min-height: 52px;
  border-radius: 12px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  align-items: center;
}
.a-t-1 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-1 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-1 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 44px;
  border-radius: 6px;
}
.a-t-1 .base-main-btn-content {
  border-radius: 6px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  text-align: center;
}
.a-t-1 .base-main-btn:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 6px;
  background: var(--btn-light);
}
.a-t-1 .base-user-tab {
  position: relative;
  border-radius: 16px;
  height: 54px;
  padding: 7px;
  border: 1px solid var(--border-color);
}
.a-t-1 .base-user-tab .tab-item {
  color: #ffffff80;
}
.a-t-1 .base-user-tab .tab-item.active {
  color: #fff;
  border-radius: 12px;
  background: var(--primary);
}
.a-t-1.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-1.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-1.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-1 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-1 .container-login:before {
  position: absolute;
  background: url(./login-CT5B4LjW.png);
  background-size: 100% 100%;
  width: 100%;
  height: 192px;
  content: "";
  top: 0;
  right: 0;
}
.a-t-1 .container-login:after {
  position: fixed;
  background: url(./login2-DGo-TAZ0.png);
  background-size: 100% 160px;
  width: 100%;
  max-width: 720px;
  height: 160px;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}
.a-t-1 .container-login .top-info {
  position: relative;
}
.a-t-1 .container-login .top-info:before {
  position: absolute;
  background: url(./login-CT5B4LjW.png);
  background-size: 100% 100%;
  width: 100%;
  height: 192px;
  content: "";
  top: -180px;
  right: -160px;
}
.a-t-1 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-1 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-1 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-1 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: var(--mg);
  margin-bottom: 46px;
}
.a-t-1 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-1 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-1 .container-form {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin: var(--mg) auto 0;
  padding: var(--padding);
  background: var(--bg) !important;
}
.a-t-1 .container-card {
  box-shadow: var(--box-shadow);
}
.a-t-1 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-1 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-1 .small-logo .site-name {
  font-size: 14px;
}
.a-t-1 .navigation-content {
  background: var(--bg) !important;
  border-bottom: 1px solid var(--border-color);
}
.a-t-1 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-1 .recharge-account.active {
  opacity: 1;
  background: var(--golden-gradient);
  color: var(--text-black);
  border: 2px solid var(--text-black);
}
.a-t-1 .recharge-account.active .transfer-icon {
  background: var(--text-black);
  color: var(--text-white);
}
.a-t-2 {
  --radius: 5px;
  --btn-radius: 38px;
  --card-radius: 5px;
  --padding: 30px;
  --mg: 18px;
  --bg-card: #01285f;
  --bg-weight: #01285f;
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --btn-text2: #f9b44b;
  --border-color: rgba(12, 78, 185, 0.8);
  --text-gray: #cbe7f4;
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-2 input:-webkit-autofill,
.a-t-2 input:-webkit-autofill:hover,
.a-t-2 input:-webkit-autofill:focus,
.a-t-2 input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--primary);
  transition: background-color 5000s ease-in-out 0s;
}
.a-t-2 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-2 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-2 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 30px;
}
.a-t-2 .base-input.is-textarea .input-box {
  padding: 0;
  min-height: 52px;
  height: auto;
}
.a-t-2 .base-input .label {
  margin-bottom: 12px;
}
.a-t-2 .base-input .input-box {
  box-sizing: border-box;
  min-height: 44px;
  border-bottom: 1px solid var(--primary);
  position: relative;
  display: flex;
  align-items: center;
}
.a-t-2 .base-input .input-box input,
.a-t-2 .base-input .input-box textarea {
  color: var(--primary);
  background: none !important;
}
.a-t-2 .base-input .input-box input::placeholder,
.a-t-2 .base-input .input-box textarea::placeholder {
  color: var(--primary) !important;
}
.a-t-2 .base-input .input-box .is-textarea {
  padding: 0 !important;
}
.a-t-2 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-2 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-2 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 44px;
  border-radius: 6px;
  background: linear-gradient(180deg, #0268f9 0, #13d0fa) !important;
  border: 1px solid transparent !important;
  outline: none;
  color: #cbe7f4 !important;
}
.a-t-2 .base-main-btn-content {
  border-radius: 6px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #0268f9 0, #13d0fa) !important;
  border: 1px solid transparent !important;
  outline: none;
  color: #cbe7f4 !important;
  text-align: center;
}
.a-t-2 .base-main-btn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #000;
  border: inherit;
  border-color: #000;
  border-radius: inherit;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  content: " ";
}
.a-t-2 .base-main-btn:after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #01285f !important;
}
.a-t-2 .base-user-tab {
  position: relative;
  background: none;
}
.a-t-2 .base-user-tab .tab-item {
  width: 100%;
  color: var(--text-gray);
  background: #003682;
  border-radius: var(--radius);
  z-index: 0;
  padding: 6px 0;
}
.a-t-2 .base-user-tab .tab-item.active {
  color: var(--primary);
  background: linear-gradient(180deg, #0268f9 0, #13d0fa);
  border: 2px solid transparent;
  position: relative;
}
.a-t-2 .base-user-tab .tab-item.active:after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #01285f !important;
}
.a-t-2.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-2.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-2.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-2 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-2 .container-login .top-info {
  position: relative;
}
.a-t-2 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-2 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-2 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-2 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: var(--mg);
  margin-bottom: 46px;
}
.a-t-2 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-2 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-2 .container-form {
  background: none;
  padding: 10px 16px;
}
.a-t-2 .container-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 10px 16px;
}
.a-t-2 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-2 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-2 .small-logo .site-name {
  font-size: 14px;
}
.a-t-2 .navigation-content {
  background: #01285f !important;
  border-bottom: none !important;
  color: var(--primary) !important;
}
.a-t-2 .navigation-content .i-material-symbols-arrow-back-ios-new-rounded {
  color: #fff;
  cursor: pointer;
}
.a-t-2 .nav-bar-wrap:before {
  background: url(./bg-DzBzGV0v.png) no-repeat 30px 20px/250px 250px,
    url(./bg-DzBzGV0v.png) no-repeat 150px 450px/250px 250px, #050831;
  background-attachment: fixed;
}
@media screen and (min-width: 720px) {
  .a-t-2 .nav-bar-wrap:before {
    background: url(./bg-DzBzGV0v.png) no-repeat calc(50% - 165px) 25px/350px
        350px,
      url(./bg-DzBzGV0v.png) no-repeat calc(50% + 165px) 720px/350px 350px,
      #050831;
    background-attachment: fixed;
  }
}
.a-t-2 .tab-bar-wrap-2 {
  height: 70px !important;
}
.a-t-2 .tab-bar-wrap-2 .tab-item-label {
  color: #568499;
}
.a-t-2 .tab-bar-wrap-2 .tab-item-icon {
  font-size: 26px !important;
}
.a-t-2 .change-pwd-wrap {
  margin-top: 20px;
}
.a-t-2 .van-empty__description {
  color: var(--text-gray);
}
.a-t-2 .celue {
  background: #003682;
}
.a-t-2 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-2 .recharge-account.active {
  opacity: 1;
  background: var(--golden-gradient);
  color: var(--text-black);
}
#app.a-t-2 {
  position: relative;
  background: url(./bg-DzBzGV0v.png) no-repeat 30px 20px/250px 250px,
    url(./bg-DzBzGV0v.png) no-repeat 150px 450px/250px 250px, #050831;
  background-attachment: fixed;
}
#app.a-t-2:before {
  left: 5px;
  content: "";
  z-index: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #0b409e;
}
#app.a-t-2:after {
  right: 5px;
  content: "";
  z-index: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #0b409e;
}
@media screen and (min-width: 720px) {
  #app.a-t-2 {
    background: url(./bg-DzBzGV0v.png) no-repeat calc(50% - 165px) 25px/350px
        350px,
      url(./bg-DzBzGV0v.png) no-repeat calc(50% + 165px) 720px/350px 350px,
      #050831;
    background-attachment: fixed;
  }
}
.a-t-3 {
  --radius: 5px;
  --btn-radius: 38px;
  --card-radius: 5px;
  --padding: 30px;
  --mg: 18px;
  --bg-card: #242424;
  --bg-weight: #01285f;
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --btn-text2: #f9b44b;
  --border-color: #242424;
  --text-gray: rgba(235, 235, 235, 0.6);
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-3 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-3 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-3 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 40px;
}
.a-t-3 .base-input.is-textarea .input-box {
  min-height: 52px;
  height: auto;
  padding: 0 !important;
}
.a-t-3 .base-input .label {
  margin-bottom: 12px;
}
.a-t-3 .base-input .input-box {
  box-sizing: border-box;
  min-height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--text-gray);
}
.a-t-3 .base-input .input-box input,
.a-t-3 .base-input .input-box textarea {
  background: none !important;
}
.a-t-3 .base-input .input-box .is-textarea {
  padding: 0 !important;
}
.a-t-3 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-3 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-3 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 44px;
  border-radius: 6px;
  background: var(--primary);
  border: 1px solid transparent !important;
  outline: none;
  color: #cbe7f4 !important;
}
.a-t-3 .base-main-btn-content {
  border-radius: 6px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: 1px solid transparent !important;
  outline: none;
  color: #cbe7f4 !important;
  text-align: center;
}
.a-t-3 .base-main-btn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #000;
  border: inherit;
  border-color: #000;
  border-radius: inherit;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  content: " ";
}
.a-t-3 .base-main-btn:after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #01285f !important;
}
.a-t-3 .base-user-tab {
  position: relative;
  background: none;
}
.a-t-3 .base-user-tab .tab-item {
  width: 100%;
  z-index: 0;
  transition: all 0.3s;
  font-size: 16px;
}
.a-t-3 .base-user-tab .tab-item.active {
  font-size: 18px;
  color: var(--primary);
  background: none;
  position: relative;
}
.a-t-3.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-3.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-3.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-3 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-3 .container-login .top-info {
  position: relative;
}
.a-t-3 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-3 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-3 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-3 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: var(--mg);
  margin-bottom: 46px;
}
.a-t-3 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-3 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-3 .container-form {
  background: none;
  padding: 10px 16px;
}
.a-t-3 .container-card {
  background: var(--bg-card);
  padding: 10px 16px;
}
.a-t-3 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-3 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-3 .small-logo .site-name {
  font-size: 14px;
}
.a-t-3 .navigation-content {
  border-bottom: none !important;
}
.a-t-3 .navigation-content .i-material-symbols-arrow-back-ios-new-rounded {
  color: #fff;
  cursor: pointer;
}
.a-t-3 .nav-bar-wrap {
  padding: 0 !important;
}
.a-t-3 .nav-bar-wrap:before {
  background: var(--bg);
  opacity: 1;
}
.a-t-3 .tab-bar-wrap {
  height: 74px !important;
}
.a-t-3 .tab-bar-wrap .tab-item-icon {
  height: 27px !important;
  font-size: 27px !important;
}
.a-t-3 .change-pwd-wrap {
  margin-top: 20px;
}
.a-t-3 .van-empty__description {
  color: var(--text-gray);
}
.a-t-3 .celue {
  background: #003682;
}
.a-t-3 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-3 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
.a-t-4 {
  --radius: 30px;
  --btn-radius: 38px;
  --card-radius: 0.5rem;
  --padding: 30px;
  --mg: 12px;
  --bg-weight: #1f2230;
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --btn-text2: #f9b44b;
  --border-color: rgba(255, 255, 255, 0.2);
  --text-gray: #a5b1b9;
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-4 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-4 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-4 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-4 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 24px;
}
.a-t-4 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-4 .base-input .label {
  margin-bottom: 12px;
}
.a-t-4 .base-input .input-box {
  padding: 0 16px;
  box-sizing: border-box;
  min-height: 52px;
  border-radius: 12px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  align-items: center;
}
.a-t-4 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-4 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-4 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 44px;
  border-radius: 6px;
}
.a-t-4 .base-main-btn-content {
  border-radius: 6px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  text-align: center;
}
.a-t-4 .base-main-btn:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 6px;
  background: var(--btn-light);
}
.a-t-4 .base-user-tab {
  position: relative;
  border-radius: 16px;
  height: 54px;
  padding: 7px;
  border: 1px solid var(--border-color);
}
.a-t-4 .base-user-tab .tab-item {
  color: #ffffff80;
}
.a-t-4 .base-user-tab .tab-item.active {
  color: #fff;
  border-radius: 12px;
  background: var(--primary);
}
.a-t-4.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-4.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-4.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-4 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-4 .container-login:before {
  position: absolute;
  background: url(data:image/png;base64,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);
  background-size: 100% 100%;
  width: 100%;
  height: 192px;
  content: "";
  top: 0;
  right: 0;
}
.a-t-4 .container-login:after {
  position: fixed;
  background: url(./login2-BENgVx7b.png);
  background-size: 100% 160px;
  width: 100%;
  max-width: 720px;
  height: 160px;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}
.a-t-4 .container-login .top-info {
  position: relative;
}
.a-t-4 .container-login .top-info:before {
  position: absolute;
  background: url(data:image/png;base64,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);
  background-size: 100% 100%;
  width: 100%;
  height: 192px;
  content: "";
  top: -180px;
  right: -160px;
}
.a-t-4 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-4 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-4 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-4 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: var(--mg);
  margin-bottom: 46px;
}
.a-t-4 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-4 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-4 .container-form {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin: var(--mg) auto 0;
  padding: var(--padding);
  background: var(--bg) !important;
}
.a-t-4 .container-card {
  box-shadow: var(--box-shadow);
}
.a-t-4 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-4 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-4 .small-logo .site-name {
  font-size: 14px;
}
.a-t-4 .navigation-content {
  background: var(--bg) !important;
  border-bottom: 1px solid var(--border-color);
}
.a-t-4 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-4 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
.a-t-5 {
  --radius: 30px;
  --btn-radius: 38px;
  --card-radius: 22px;
  --padding: 30px;
  --mg: 18.5px;
  --bg-card: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.12) 100%
  );
  --bg-weight: rgba(255, 255, 255, 0.12);
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --btn-text2: #f9b44b;
  --border-color: rgba(255, 255, 255, 0.2);
  --text-gray: #a5b1b9;
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-5 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-5 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-5 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 24px;
}
.a-t-5 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-5 .base-input .label {
  margin-bottom: 12px;
}
.a-t-5 .base-input .input-box {
  padding: 0 16px;
  box-sizing: border-box;
  min-height: 52px;
  border-radius: 18px;
  background: var(--bg-input);
  position: relative;
  display: flex;
  align-items: center;
}
.a-t-5 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-5 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-5 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 54px;
  border-radius: 31px;
}
.a-t-5 .base-main-btn-content {
  border-radius: 31px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #000;
  text-align: center;
}
.a-t-5 .base-user-tab {
  position: relative;
  border-radius: 16px;
  min-height: 54px;
  padding: 7px;
  border: 1px solid var(--border-color);
}
.a-t-5 .base-user-tab .tab-item {
  width: 100%;
  color: #ffffff80;
  height: 100%;
}
.a-t-5 .base-user-tab .tab-item div {
  width: 100%;
  padding: 0 4px;
}
.a-t-5 .base-user-tab .tab-item.active {
  color: #000;
  border-radius: 12px;
  background: var(--primary);
}
.a-t-5.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-5.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-5.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-5 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.a-t-5 .container-login:before {
  position: absolute;
  width: 255px;
  height: 272px;
  background: #208e72;
  border-radius: 50%;
  filter: blur(30px);
  z-index: 0;
  content: "";
  top: -20px;
  left: -50px;
}
.a-t-5 .container-login:after {
  position: absolute;
  width: 158px;
  height: 169px;
  border-radius: 50%;
  background: #6e6300;
  opacity: 0.2;
  filter: blur(30px);
  z-index: 0;
  content: "";
  top: -60px;
  right: -60px;
}
.a-t-5 .container-login .base-user-tab {
  background: none;
  border: none;
}
.a-t-5 .container-login .base-user-tab .tab-item.active {
  font-weight: 700 !important;
  background: none !important;
  color: var(--primary) !important;
}
.a-t-5 .container-login .top-info {
  position: relative;
  height: 300px;
  background: url(./login-bg-CgSUmFoM.png);
  background-size: auto 300px;
  background-repeat: no-repeat;
  background-position: 50%;
}
.a-t-5 .container-login .top-info:before {
  position: absolute;
  width: 255px;
  height: 272px;
  background: #208e72;
  border-radius: 50%;
  filter: blur(30px);
  z-index: 0;
  content: "";
  top: -180px;
  right: -160px;
}
.a-t-5 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-5 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-5 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-5 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: -100px;
  margin-bottom: 46px;
}
.a-t-5 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-5 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-5 .container-login .login-tools {
  margin-top: 20px;
}
.a-t-5 .container-form {
  position: relative;
  z-index: 3;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin: var(--mg) auto 0;
  padding: var(--padding);
  background: #f3f3f31a !important;
}
.a-t-5 .container-card {
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.a-t-5 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-5 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-5 .small-logo .site-name {
  font-size: 14px;
}
.a-t-5 .navigation-content {
  background: var(--bg) !important;
  border-bottom: 1px solid var(--border-color);
}
.a-t-5 .nav-bar-wrap {
  padding: 12px 0;
}
.a-t-5 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-5 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #000;
}
.a-t-6 {
  --radius: 30px;
  --btn-radius: 20px;
  --card-radius: 20px;
  --padding: 30px;
  --mg: 16px;
  --bg-card: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.12) 100%
  );
  --bg-weight: #1e1f23;
  --btn-bg3: #44454b;
  --btn-text: var(--primary);
  --btn-text2: #f9b44b;
  --border-color: rgba(255, 255, 255, 0.2);
  --text-gray: rgba(239, 201, 157, 0.5);
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-6 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-6 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-6 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 24px;
}
.a-t-6 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-6 .base-input .label {
  margin-bottom: 12px;
}
.a-t-6 .base-input .input-box {
  padding: 0 16px;
  box-sizing: border-box;
  min-height: 52px;
  border-radius: 18px;
  background: var(--bg-input);
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--primary);
}
.a-t-6 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-6 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-6 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 54px;
  border-radius: 31px;
}
.a-t-6 .base-main-btn-content {
  border-radius: 31px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #000;
  text-align: center;
}
.a-t-6 .base-user-tab {
  position: relative;
  border-radius: 16px;
  min-height: 40px;
}
.a-t-6 .base-user-tab .tab-item {
  color: var(--text-gray);
}
.a-t-6 .base-user-tab .tab-item div {
  padding: 0 4px;
}
.a-t-6 .base-user-tab .tab-item.active {
  color: #000;
  border-radius: 12px;
  background: var(--primary);
}
.a-t-6.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-6.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-6.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-6 .container-login {
  height: 100vh;
  padding: 16px;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  background: url(./login-bg-DVFdPvfU.png);
  background-size: 100% 100%;
}
.a-t-6 .container-login:after {
  position: fixed;
  background: url(./login-bg1-fh9Tsh5W.png);
  background-size: 200px 200px;
  width: 200px;
  height: 200px;
  content: "";
  bottom: 0;
  right: 10%;
}
.a-t-6 .container-login .base-user-tab {
  background: none;
  border: none;
}
.a-t-6 .container-login .base-user-tab .tab-item.active {
  font-weight: 700 !important;
  background: none !important;
  color: var(--primary) !important;
}
.a-t-6 .container-login .top-info {
  position: relative;
  height: 300px;
}
.a-t-6 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-6 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-6 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-6 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: -100px;
  margin-bottom: 46px;
}
.a-t-6 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-6 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-6 .container-login .login-tools {
  margin-top: 20px;
}
.a-t-6 .container-form {
  position: relative;
  z-index: 3;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin: var(--mg) auto 0;
  padding: var(--padding);
  background: var(--bg-weight) !important;
}
.a-t-6 .container-card {
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.a-t-6 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-6 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-6 .small-logo .site-name {
  font-size: 14px;
}
.a-t-6 .navigation-content {
  background: var(--bg) !important;
  border-bottom: 1px solid var(--border-color);
}
.a-t-6 .nav-bar-wrap {
  padding: 12px 0;
}
.a-t-6 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-6 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #000;
}
.a-t-7 {
  --radius: 18px;
  --btn-radius: 50%;
  --card-radius: 18px;
  --padding: 30px;
  --mg: 16px;
  --bg-card: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.12) 100%
  );
  --bg-weight: rgba(255, 255, 255, 0.08);
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --btn-text2: #f9b44b;
  --border-color: rgba(255, 255, 255, 0.16);
  --border-color2: rgba(255, 255, 255, 0.1);
  --text-gray: #9b9b9b;
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-7 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-7 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-7 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-7 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 15px;
}
.a-t-7 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-7 .base-input .label {
  margin-bottom: 12px;
}
.a-t-7 .base-input .input-box {
  padding: 0 16px;
  box-sizing: border-box;
  min-height: 52px;
  border-radius: 12px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  align-items: center;
}
.a-t-7 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-7 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-7 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  height: 54px;
  border-radius: 31px;
  font-weight: 600;
  color: #000;
}
.a-t-7 .base-main-btn-content {
  border-radius: 31px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  text-align: center;
}
.a-t-7 .base-main-btn.disable {
  color: #fff !important;
}
.a-t-7 .base-user-tab {
  position: relative;
  border-radius: var(--card-radius);
  height: 64px;
  padding: 12px;
  background: #ffffff17 !important;
  border: 1px solid var(--border-color);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.a-t-7 .base-user-tab .tab-item {
  color: var(--btn-text);
}
.a-t-7 .base-user-tab .tab-item.active {
  color: var(--primary);
  border-radius: 12px;
  background: #ffffff17;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.a-t-7 .base-small-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 1;
  background: #ffffff21;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.a-t-7 .base-section-title {
  font-size: 24px;
  font-weight: 600;
  padding-left: 10px;
  position: relative;
}
.a-t-7 .base-section-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 17px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAiBAMAAACO37VbAAAAGFBMVEUAAAAA/5QA/5QA/5QA/5cA/5MA/48A/5SpkpC9AAAAB3RSTlMA779wIFAQ1J93hgAAADhJREFUCNelxjENACAMAMFPCA4IFrpioQ6wgAWW2uc9MFxyQNdRQCtIRdkiFapvV0MLi8VimdrwAPSSIlaPg7kjAAAAAElFTkSuQmCC);
  background-size: 100% 100%;
}
.a-t-7.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-7.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-7.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-7 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-7 .container-login:before {
  position: absolute;
  background: url(./login-attach-DrWrGT6Z.png);
  background-size: 100% 100%;
  width: 102px;
  height: 114px;
  content: "";
  top: 86px;
  right: 27px;
}
.a-t-7 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  margin-bottom: 46px;
}
.a-t-7 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-7 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-7 .container-form {
  border: 1px solid var(--border-color);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin-top: 14px !important;
  padding: var(--padding);
  background: #ffffff17 !important;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
}
.a-t-7 .container-card {
  background: #ffffff14;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 12px var(--mg);
}
.a-t-7 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-7 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-7 .small-logo .site-name {
  font-size: 14px;
}
.a-t-7 .nav-bar-wrap:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%);
  width: 100%;
  max-width: 720px;
  height: 100%;
  background: #ffffff14;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.a-t-7 .navigation-content {
  background: var(--bg-weight) !important;
  border-bottom: 1px solid var(--border-color);
}
.a-t-7 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-7 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #000;
}
#app.a-t-7 {
  position: relative;
  background: url(./body-bg-CKgnJ2eU.png);
  background-size: 100% 100%;
  background-attachment: fixed;
}
#app.a-t-7:before {
  content: "";
  position: fixed;
  top: 0;
  z-index: 1;
  left: 50%;
  transform: translate(calc(-50% - 200px));
  bottom: 0;
  width: 162px;
  height: 161px;
  background: url(./body-bg-attach-Dkycj9oz.png);
  background-size: 100% 100%;
}
#app.a-t-7:after {
  content: "";
  position: fixed;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 350px;
  height: 350px;
  background: url(./body-bg-attach2-D9ykxEAj.png);
  background-size: 100% 100%;
  animation: rocketLaunch 4s linear infinite;
}
@keyframes rocketLaunch {
  0%,
  to {
    transform: translate(-50%) translateY(0);
    opacity: 0;
  }
  50% {
    transform: translate(-50%) translateY(calc(-100vh - 350px));
    opacity: 1;
  }
  51% {
    transform: translate(-50%) translateY(calc(-100vh - 350px));
    opacity: 0;
  }
}
#app.a-t-7 .tab-bar-wrap .tab-bar {
  background: #ffffff14;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
#app.a-t-7 .van-config-provider {
  position: relative;
  z-index: 2;
}
#app.a-t-7 .tab-item-inner.active .tab-item-label {
  color: var(--primary) !important;
}
.a-t-8 {
  --radius: 5px;
  --btn-radius: 38px;
  --card-radius: 5px;
  --padding: 30px;
  --mg: 18px;
  --bg-card: rbga(0, 0, 0, 0);
  --bg-weight: #01285f;
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --btn-text2: #f9b44b;
  --border-color: #242424;
  --text-gray: #568499;
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
  margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
.a-t-8 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-8 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-8 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 40px;
}
.a-t-8 .base-input.is-textarea .input-box {
  min-height: 52px;
  height: auto;
  padding: 0 !important;
}
.a-t-8 .base-input .label {
  margin-bottom: 12px;
}
.a-t-8 .base-input .input-box {
  box-sizing: border-box;
  min-height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--primary);
}
.a-t-8 .base-input .input-box input,
.a-t-8 .base-input .input-box textarea {
  background: none !important;
}
.a-t-8 .base-input .input-box .is-textarea {
  padding: 0 !important;
}
.a-t-8 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-8 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-8 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 44px;
  border-radius: 6px;
  background: var(--primary);
  border: 1px solid transparent !important;
  outline: none;
  color: var(--btn-text) !important;
}
.a-t-8 .base-main-btn-content {
  border-radius: 6px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: 1px solid transparent !important;
  outline: none;
  color: var(--btn-text) !important;
  text-align: center;
}
.a-t-8 .base-user-tab {
  position: relative;
  background: none;
}
.a-t-8 .base-user-tab .tab-item {
  width: 100%;
  z-index: 0;
  transition: all 0.3s;
  font-size: 16px;
}
.a-t-8 .base-user-tab .tab-item.active {
  font-size: 18px;
  color: var(--primary);
  background: none;
  position: relative;
}
.a-t-8.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-8.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-8.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-8 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-8 .container-login .top-info {
  position: relative;
}
.a-t-8 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-8 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-8 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-8 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: var(--mg);
  margin-bottom: 46px;
}
.a-t-8 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-8 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-8 .container-form {
  background: none;
  padding: 10px 16px;
}




.a-t-8 .container-card {
  background: var(--bg-card);
  padding: 10px 16px;
  border: 1px solid var(--primary);
}
.a-t-8 .container-card2 {
    background: var(--bg-card);
    padding: 10px 16px;
    border: 1px solid var(--golden);
  }




.a-t-8 .container-card:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAARCAMAAADnhAzLAAAAYFBMVEVHcEwZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37MZ37O/ueanAAAAH3RSTlMA5hcN2fO8+wXs4Jm0MClv0SQeZUhTPsWmjDpVgGHjfPOBbgAAAG5JREFUGNNdykcOwzAMAMF1IomSe01P+P9f+hIYpPc4WCC/mkr0n6QZ8hAOUNVxgndtQMsCc2uf8gWWYqTaAJKZ6hUAM4UbABwgY4cnufd4kjThSdoLnuRhBFXV2FzxFJ9OUI2f7ITwG05C351lB+5EESxuzhjlAAAAAElFTkSuQmCC)
    no-repeat 0 0 / contain;
}

.a-t-8 .container-card2:before {
    content: "";
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAARCAYAAADQWvz5AAAACXBIWXMAAAsTAAALEwEAmpwYAAAE7mlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgOS4xLWMwMDIgNzkuYTFjZDEyZiwgMjAyNC8xMS8xMS0xOTowODo0NiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI2LjIgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAyNS0wMi0wN1QyMDowMjoxOSswNTozMCIgeG1wOk1vZGlmeURhdGU9IjIwMjUtMDItMDdUMjA6MDM6MDgrMDU6MzAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMjUtMDItMDdUMjA6MDM6MDgrMDU6MzAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjg0NjE3ODRmLThmMzgtOTA0ZC1iZTI2LTQ1MGY2ZDljMTU4MiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo4NDYxNzg0Zi04ZjM4LTkwNGQtYmUyNi00NTBmNmQ5YzE1ODIiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo4NDYxNzg0Zi04ZjM4LTkwNGQtYmUyNi00NTBmNmQ5YzE1ODIiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjg0NjE3ODRmLThmMzgtOTA0ZC1iZTI2LTQ1MGY2ZDljMTU4MiIgc3RFdnQ6d2hlbj0iMjAyNS0wMi0wN1QyMDowMjoxOSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIDI2LjIgKFdpbmRvd3MpIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnvxoFsAAADWSURBVDgRY5C8v1kOiPcA8W8g/k8Ag9Q8A+KZQGwFxKzuBT4MIMwA5KgA8UUiDEE38CYQ58MMA5sG5KQC8RsSDQPhB0AcCjcIalgiGYaBXLYFFDxwg6CGBUPDgBTDQJanohgENcwD6mRSXLUHwyCoYXbQwCTaVVgNghpmAI1NYpLFf5wGQQ3TBOKjxBiG1yCoYSrEJFiCBkENE4dG82+KDEIybBkuw4g2CGoYLzSffabIICTDetANI9kgqGGsQNyAbBhZBiEZBsr9j0GJl2yDkAwDJVxNADxgRvAWMPLTAAAAAElFTkSuQmCC)
      no-repeat 0 0 / contain;
}



.a-t-8 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-8 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-8 .small-logo .site-name {
  font-size: 14px;
}
.a-t-8 .navigation-content {
  border-bottom: none !important;
}
.a-t-8 .navigation-content .i-material-symbols-arrow-back-ios-new-rounded {
  color: #fff;
  cursor: pointer;
}
.a-t-8 .nav-bar-wrap {
  padding: 0 !important;
}
.a-t-8 .nav-bar-wrap:before {
    background: var(--bg);
    opacity: 1;
}
.a-t-8 .tab-bar-wrap {
  height: 74px !important;
}
.a-t-8 .tab-bar-wrap .tab-item-icon {
  height: 27px !important;
  font-size: 27px !important;
}
.a-t-8 .change-pwd-wrap {
  margin-top: 20px;
}
.a-t-8 .van-empty__description {
  color: var(--text-gray);
}
.a-t-8 .celue {
  background: var(--bg-input);
}
.a-t-8 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-8 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
#app.a-t-8 {
  background: url(./body-bg-1-BBa4cqgJ.png) no-repeat 30px 20px/140px 140px,
    url(./body-bg-1-BBa4cqgJ.png) no-repeat 250px 450px/140px 140px, #112528;
  background-attachment:scroll;
}
.a-t-9 {
  --radius: 15px;
  --btn-radius: 16px;
  --card-radius: 15px;
  --padding: 23px;
  --mg: 16px;
  --bg-weight: rgba(255, 255, 255, 0.19);
  --btn-text2: #fff;
  --text-gray: rgba(0, 0, 0, 0.5);
  --text-gray6: rgba(1, 11, 46, 0.5);
  --title-color: #000;
}
.a-t-9 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-9 .font-dm {
  font-family: DM Sans, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-9 .base-draw-box .base-sign-btn,
.a-t-9 .base-draw-box .base-draw-box-btn,
.a-t-9 .base-sign .base-sign-btn,
.a-t-9 .base-sign .base-draw-box-btn {
  background: var(--text-white);
  box-shadow: var(--box-shadow);
  padding: 4px;
  width: 46px;
  height: 46px;
}
.a-t-9 .base-draw-box .base-sign-btn:before,
.a-t-9 .base-draw-box .base-draw-box-btn:before,
.a-t-9 .base-sign .base-sign-btn:before,
.a-t-9 .base-sign .base-draw-box-btn:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--btn-bg4);
}
.a-t-9 .base-draw-box .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-9 .base-draw-box .base-sign-btn .i-tabler-gift,
.a-t-9 .base-draw-box .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-9 .base-draw-box .base-draw-box-btn .i-tabler-gift,
.a-t-9 .base-sign .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-9 .base-sign .base-sign-btn .i-tabler-gift,
.a-t-9 .base-sign .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-9 .base-sign .base-draw-box-btn .i-tabler-gift {
  color: var(--primary) !important;
  font-size: 24px;
}
.a-t-9 .base-draw-box .base-draw-box-btn,
.a-t-9 .base-sign .base-draw-box-btn {
  bottom: 132px;
}
.a-t-9 .base-draw-box .base-draw-box-btn img,
.a-t-9 .base-sign .base-draw-box-btn img {
  border-radius: 50%;
}
.a-t-9 .base-draw-box .base-sign-btn,
.a-t-9 .base-sign .base-sign-btn {
  bottom: 198px;
}
.a-t-9 .base-draw-box .base-sign-btn img,
.a-t-9 .base-sign .base-sign-btn img {
  border-radius: 50%;
}
.a-t-9 .base-alarm-logo-btn,
.a-t-9 .base-help-btn {
  border: 1px solid var(--nav-border);
  background: var(--bg-nav) !important;
  margin-right: 7px !important;
}
.a-t-9 .base-alarm-logo-btn svg,
.a-t-9 .base-help-btn svg {
  color: var(--nav-border);
}
.a-t-9 .base-list .loading-icon,
.a-t-9 .base-list .no-more,
.a-t-9 .base-list .base-list-nodata,
.a-t-9 .base-list .load-more {
  color: var(--primary);
}
.a-t-9 .base-dialog .dialog-wrap .dialog-content .dialog-title,
.a-t-9 .base-dialog .dialog-wrap .close-btn,
.a-t-9
  .base-dialog
  .dialog-wrap
  .dialog-content
  .dialog-body
  .setting-pop-wrap
  div {
  color: var(--nav-text) !important;
}
.a-t-9 .layout-tab-bar {
  background: var(--bg);
  min-height: calc(var(--vh) * 100 - 55px);
}
.a-t-9.no-2 .layout-tab-bar {
  background: url(./2-bg-l_js8AdE.png) top left repeat;
  background-size: 100% 100%;
}
.a-t-9 .nav-bar-wrap.is-scroll-state {
  overflow: unset;
}
.a-t-9.sign-wrap {
  box-shadow: none !important;
  background-image: linear-gradient(
    180deg,
    var(--primary) 25.91%,
    #fff
  ) !important;
}
.a-t-9.sign-wrap .text-\[var\(--text-gray\)\] {
  color: var(--text-gray);
}
.a-t-9 .base-logo {
  height: 90px;
  border-radius: 20px;
}
.a-t-9 .base-lang-wrap {
  color: var(--nav-border);
  height: 28px;
  border: 1px solid var(--nav-border);
  border-radius: 38px;
  line-height: 12px;
}
.a-t-9 .base-lang-wrap svg {
  color: var(--nav-border);
}
.a-t-9 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 24px;
}
.a-t-9 .base-input .label {
  padding-left: 4px;
  margin-bottom: 12px;
  font-weight: 500;
}
.a-t-9 .base-input .input-box {
  padding: 0 15px;
  box-sizing: border-box;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-input);
  position: relative;
  display: flex;
  align-items: center;
}
.a-t-9 .base-input .input-box input::-webkit-input-placeholder,
.a-t-9 .base-input .input-box textarea::-webkit-input-placeholder {
  color: #09123480;
}
.a-t-9 .base-input .input-box input::-moz-placeholder,
.a-t-9 .base-input .input-box textarea::-moz-placeholder {
  color: #09123480;
}
.a-t-9 .base-input .input-box input:-ms-input-placeholder,
.a-t-9 .base-input .input-box textarea:-ms-input-placeholder {
  color: #09123480;
}
.a-t-9 .base-input .input-box input::placeholder,
.a-t-9 .base-input .input-box textarea::placeholder {
  color: #09123480;
}
.a-t-9 .base-input .input-box .input-left-slot {
  margin-right: 10px;
}
.a-t-9 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-9 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-9 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  height: 54px;
  border-radius: var(--btn-radius);
  box-shadow: var(--btn-shadow);
  color: var(--btn-text2);
}
.a-t-9 .base-main-btn-content {
  border-radius: var(--btn-radius);
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  text-align: center;
}
.a-t-9 .base-main-btn:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: var(--btn-radius);
  background: var(--btn-light);
}
.a-t-9 .base-user-tab {
  position: relative;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  width: 100%;
  background: var(--bg-bar);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  justify-content: space-around;
}
.a-t-9 .base-user-tab .tab-item {
  color: #000;
  padding: 10px;
  width: 100%;
}
.a-t-9 .base-user-tab .tab-item div {
  display: flex;
  align-items: center;
}
.a-t-9 .base-user-tab .tab-item.active {
  color: var(--btn-text);
  position: relative;
  background: #fff;
  font-size: 16px;
  z-index: 3;
  height: 100%;
}
.a-t-9 .base-user-tab .tab-item.active div {
  position: relative;
  z-index: 1;
}
.a-t-9 .container-login {
  position: relative;
  padding: 18px var(--mg) 20px;
  background: var(--bg-login);
  min-height: calc(var(--vh, 1vh) * 100);
}
.a-t-9 .container-login:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 329px;
  width: 100%;
  background: url(./login-bg1-DAcOMQ-q.png) no-repeat;
  background-size: cover;
}
.a-t-9 .container-login.c-1:after {
  content: "";
  background: url(./login-bg1-DAcOMQ-q.png) no-repeat;
  background-size: cover;
}
.a-t-9 .container-login.c-2:after {
  content: "";
  background: url(./login-bg2-DuBFs_By.png) no-repeat;
  background-size: cover;
}
.a-t-9 .container-login.c-3:after {
  content: "";
  background: url(./login-bg3-DswiCSxK.png) no-repeat;
  background-size: cover;
}
.a-t-9 .container-login.c-4:after {
  content: "";
  background: url(./login-bg4-q5k41L9r.png) no-repeat;
  background-size: cover;
}
.a-t-9 .container-login.c-5:after {
  content: "";
  background: url(./login-bg5-3UHt5KjI.png) no-repeat;
  background-size: cover;
}
.a-t-9 .container-login .container-form {
  padding: 0;
  border: none;
  margin: 0 0 160px;
  background: transparent;
}
.a-t-9 .container-login .base-logo .site-name {
  color: var(--nav-text);
}
.a-t-9 .container-login .top-info {
  position: relative;
  z-index: 2;
  height: 183px;
}
.a-t-9 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-9 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight) !important;
  margin-right: 16px;
  border: none;
}
.a-t-9 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
  color: var(--nav-text);
}
.a-t-9 .container-login .top-info .top-tools .base-lang-wrap {
  background: var(--bg-weight);
  padding: 0 8px;
  margin-right: -16px;
  border-radius: 24px 0 0 24px;
  border: none;
  color: var(--nav-text);
}
.a-t-9 .container-login .top-info .top-tools .base-lang-wrap svg {
  color: var(--nav-text);
}
.a-t-9 .container-login .top-info .base-user-tab {
  position: absolute;
  bottom: 12px;
  left: 0;
}
.a-t-9 .container-login .top-info .base-logo {
  width: 90px;
  margin-top: 30px;
}
.a-t-9 .container-login .top-info .base-logo .site-img {
  border-radius: 24px;
}
.a-t-9 .container-login .base-input .input-box {
  border: none;
}
.a-t-9 .container-login .auto-login {
  color: #010b2a80;
  font-size: 12px;
}
.a-t-9 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  background: var(--text-white);
  border-radius: 16px;
  min-height: calc(var(--vh, 1vh) * 100 - 204px - 20px - 20px);
}
.a-t-9 .container-login .login-content .container-form {
  position: relative;
  z-index: 1;
  border-radius: 0 16px 16px;
  padding: 30px 28px 190px;
  margin-bottom: 0;
  background: var(--text-white);
}
.a-t-9 .container-login .login-content .container-form.scale-x {
  border-radius: 16px 0 16px 16px;
}
.a-t-9 .container-login .login-content .login-tools {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 30px;
  width: calc(100% - 60px);
}
.a-t-9 .container-login .login-content .login-tools .register-btn {
  width: 100%;
  border-radius: var(--btn-radius);
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  margin: 20px auto 0;
  font-size: 14px;
}
.a-t-9 .container-form {
  margin: var(--mg) auto 0;
  padding: var(--padding);
}
.a-t-9 .container-card {
  background: var(--bg-card);
}
.a-t-9 .small-logo {
  height: 30px;
  display: flex;
  border-radius: 50%;
}
.a-t-9 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-9 .tab-bar-wrap .tab-bar {
  background: var(--bg-tab);
  box-shadow: var(--box-shadow);
  height: 60px;
}
.a-t-9 .tab-bar-wrap .tab-bar .tab-item-icon {
  height: 24px !important;
  font-size: 24px !important;
}
.a-t-9 .sticky-bg {
  z-index: 2;
  background: var(--bg-card);
  border-radius: 30px;
  height: 42px;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
}
.a-t-9 .sticky-bg.base-user-tab {
  height: 42px;
  box-shadow: var(--box-shadow);
}
.a-t-9 .sticky-bg.base-user-tab .tab-item {
  margin-right: 0;
  display: flex;
  align-items: center;
  height: 100%;
  text-align: center;
}
.a-t-9 .sticky-bg.base-user-tab .tab-item.active {
  background: var(--primary);
  border-radius: 30px;
  color: var(--btn-text2) !important;
}
.a-t-9 .sticky-bg.base-user-tab .tab-item.active div {
  margin: 0;
}
.a-t-9 .sticky-bg.base-user-tab .tab-item:before {
  content: "";
  height: 0;
}
.a-t-9 .sticky-bg.base-user-tab .tab-item:after {
  content: "";
  height: 0;
}
.a-t-9 .navigation-content {
  color: var(--btn-text2) !important;
}
.a-t-9.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-9.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--text-white);
  padding: 4px;
  box-shadow: var(--box-shadow);
}
.a-t-9.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #f4f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-9 .kyc-page .container-card,
.a-t-9 .change-pwd-wrap .container-form {
  background: var(--text-white);
}
.a-t-9 .notice-wrap .loading-icon,
.a-t-9 .notice-wrap .no-more,
.a-t-9 .notice-wrap .base-list-nodata,
.a-t-9 .notice-wrap .load-more {
  color: var(--btn-text);
}
.a-t-9 .celue {
  background: #fff;
}
.a-t-9 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-9 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
.customer-calendar-9 {
  --van-calendar-range-edge-background: var(--primary);
  --van-button-primary-background: var(--primary);
  --van-button-primary-border-color: var(--primary);
}
.customer-calendar-9 .van-calendar {
  max-width: 720px;
  margin: 0 auto;
}
.customer-calendar-9
  .van-calendar
  .van-calendar__day:not(
    .van-calendar__day--disabled,
    .van-calendar__day--selected,
    .van-calendar__day--start,
    .van-calendar__day--end,
    .van-calendar__day--start-end
  ) {
  color: var(--primary) !important;
}
.a-t-10 {
  --radius: 5px;
  --btn-radius: 38px;
  --card-radius: 5px;
  --padding: 30px;
  --mg: 18px;
  --bg-card: #fff;
  --bg-weight: #01285f;
  --btn-bg3: #44454b;
  --btn-text: #2c3850;
  --btn-text2: #f9b44b;
  --border-color: rgb(66, 91, 141);
  --text-gray: #aeb5c3;
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-10 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-10 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-10 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 40px;
}
.a-t-10 .base-input.is-textarea .input-box {
  min-height: 52px;
  height: auto;
  padding: 0 !important;
}
.a-t-10 .base-input .label {
  margin-bottom: 12px;
}
.a-t-10 .base-input .input-box {
  box-sizing: border-box;
  min-height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--primary);
}
.a-t-10 .base-input .input-box input,
.a-t-10 .base-input .input-box textarea {
  background: none !important;
}
.a-t-10 .base-input .input-box .is-textarea {
  padding: 0 !important;
}
.a-t-10 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-10 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-10 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 44px;
  border-radius: 6px;
  background: var(--primary);
  border: 1px solid transparent !important;
  outline: none;
  color: #fff !important;
}
.a-t-10 .base-main-btn-content {
  border-radius: 6px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: 1px solid transparent !important;
  outline: none;
  color: #fff !important;
  text-align: center;
}
.a-t-10 .base-user-tab {
  position: relative;
  background: none;
}
.a-t-10 .base-user-tab .tab-item {
  width: 100%;
  z-index: 0;
  transition: all 0.3s;
  font-size: 16px;
  color: var(--text-gray);
}
.a-t-10 .base-user-tab .tab-item.active {
  font-size: 18px;
  color: var(--primary);
  background: none;
  position: relative;
}
.a-t-10.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-10.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-10.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-10 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-10 .container-login .top-info {
  position: relative;
}
.a-t-10 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-10 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-10 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-10 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: var(--mg);
  margin-bottom: 46px;
}
.a-t-10 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-10 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-10 .container-form {
  background: none;
  padding: 10px 16px;
}
.a-t-10 .container-card {
  background: var(--bg-card);
  padding: 10px 16px;
  box-shadow: 0 0 10px #d4d4e3;
}
.a-t-10 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-10 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-10 .small-logo .site-name {
  font-size: 14px;
}
.a-t-10 .navigation-content {
  border-bottom: none !important;
  color: var(--primary);
  box-shadow: 0 0 10px #d4d4e3;
}
.a-t-10 .navigation-content .i-material-symbols-arrow-back-ios-new-rounded {
  color: var(--primary);
  cursor: pointer;
}
.a-t-10 .nav-bar-wrap {
  padding: 0 !important;
  background: #fff;
}
.a-t-10 .tab-bar-wrap {
  height: 74px !important;
}
.a-t-10 .tab-bar-wrap .tab-bar {
  box-shadow: 0 0 10px #d4d4e3;
}
.a-t-10 .tab-bar-wrap .tab-item-icon {
  height: 27px !important;
  font-size: 27px !important;
}
.a-t-10 .change-pwd-wrap {
  margin-top: 20px;
}
.a-t-10 .van-empty__description {
  color: var(--text-gray);
}
.a-t-10 .celue {
  background: #f0f4f8 !important;
}
.a-t-10 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid var(--border-color);
}
.a-t-10 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
.a-t-10 .customer-calendar-10 {
  --van-calendar-range-edge-background: var(--primary);
  --van-button-primary-background: var(--primary);
  --van-button-primary-border-color: var(--primary);
}
.a-t-10 .customer-calendar-10 .van-calendar {
  max-width: 720px;
  margin: 0 auto;
}
.a-t-10
  .customer-calendar-10
  .van-calendar
  .van-calendar__day:not(
    .van-calendar__day--disabled,
    .van-calendar__day--selected,
    .van-calendar__day--start,
    .van-calendar__day--end,
    .van-calendar__day--start-end
  ) {
  color: var(--primary) !important;
}
@font-face {
  font-family: Anton;
  src: url(./Anton-k9gHWZqM.woff2);
  font-weight: 400;
  font-style: normal;
}
.a-t-11 {
  --radius: 5px;
  --btn-radius: 38px;
  --card-radius: 5px;
  --padding: 30px;
  --mg: 18px;
  --bg-card: #242424;
  --bg-weight: #369382;
  --btn-bg3: #44454b;
  --btn-text: #8bf7d7;
  --btn-text2: #f9b44b;
  --border-color: #369382;
  --text-gray: #44806e;
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-11 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-11 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-11 .base-lang-wrap {
  border-radius: var(--btn-radius);
  border: 1px solid var(--btn-text);
  color: var(--btn-text);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-11 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 40px;
}
.a-t-11 .base-input.is-textarea .input-box {
  min-height: 52px;
  height: auto;
}
.a-t-11 .base-input .label {
  margin-bottom: 12px;
}
.a-t-11 .base-input .input-box {
  box-sizing: border-box;
  min-height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--btn-text);
  border-radius: var(--radius);
  border: 1px solid var(--btn-text);
  padding: 0 16px;
}
.a-t-11 .base-input .input-box input,
.a-t-11 .base-input .input-box textarea {
  background: none !important;
}
.a-t-11 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-11 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-11 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 44px;
  border-radius: 6px;
  background: var(--primary);
  border: 1px solid transparent !important;
  outline: none;
  color: #000 !important;
}
.a-t-11 .base-main-btn-content {
  border-radius: 6px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-text);
  border: 1px solid transparent !important;
  outline: none;
  color: #000 !important;
  text-align: center;
}
.a-t-11 .base-user-tab {
  position: relative;
  border-radius: var(--radius);
  background: none;
  color: var(--btn-text);
  padding: 7px;
  border: 1px solid var(--border-color);
}
.a-t-11 .base-user-tab .tab-item {
  width: 100%;
  z-index: 0;
  transition: all 0.3s;
  font-size: 16px;
  word-wrap: break-word;
  word-break: break-all;
}
.a-t-11 .base-user-tab .tab-item.active {
  color: #000;
  background: var(--btn-text);
  position: relative;
  border-radius: var(--radius);
}
.a-t-11 .base-list .loading-icon,
.a-t-11 .base-list .no-more,
.a-t-11 .base-list .base-list-nodata,
.a-t-11 .base-list .load-more {
  color: var(--btn-text);
}
.a-t-11.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-11.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-11.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-11 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-11 .container-login .top-info {
  position: relative;
}
.a-t-11 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-11 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-11 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-11 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: var(--mg);
  margin-bottom: 46px;
}
.a-t-11 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-11 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-11 .container-login .register-btn {
  border-radius: 6px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--btn-text);
  outline: none;
  color: var(--btn-text);
  text-align: center;
  height: 44px;
  border-radius: var(--radius);
}
.a-t-11 .container-form {
  background: none;
  padding: 10px 16px;
}
.a-t-11 .container-card {
  --border-radius: 8px;
  --border-width: 2px;
  border: 2px solid var(--border-color);
  position: relative;
  border-radius: var(--border-radius);
  background: transparent;
}
.a-t-11 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-11 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-11 .small-logo .site-name {
  font-size: 14px;
}
.a-t-11 .navigation-content {
  border-bottom: none !important;
}
.a-t-11 .navigation-content .i-material-symbols-arrow-back-ios-new-rounded {
  color: var(--btn-text);
  cursor: pointer;
}
.a-t-11 .nav-bar-wrap {
  padding: 0 !important;
}
.a-t-11 .nav-bar-wrap:before {
  background: #007965;
}
.a-t-11 .change-pwd-wrap {
  margin-top: 20px;
  color: var(--btn-text) !important;
}
.a-t-11 .van-empty__description {
  color: var(--btn-text);
}
.a-t-11 .celue {
  background: #003682;
}
.a-t-11 .is-scroll-state .navbar-icon {
  color: var(--btn-text);
}
.a-t-11 .lang-cell .i-ic\:round-check {
  color: var(--btn-text);
  font-weight: 700;
}
.a-t-11 .tab-bar-wrap2 {
  background: #000;
}
.a-t-11 .tab-bar-wrap2 .tab-item-inner {
  padding: 10px 0;
  width: 100%;
}
.a-t-11 .recharge-account {
  display: flex;
  align-items: center;
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid var(--border-color);
}
.a-t-11 .recharge-account.active {
  opacity: 1;
  background: var(--bg-weight);
  color: var(--btn-text);
}
#app.a-t-11 {
  position: relative;
  background: url(./body-bg-attach-DS6JmEkZ.png) no-repeat 139px 31px/344px
      440px,
    linear-gradient(142deg, #007965, #000 63%);
  background-attachment: fixed;
}
.a-t-12 {
  --radius: 8px;
  --btn-radius: 38px;
  --card-radius: 8px;
  --padding: 30px;
  --mg: 18px;
  --bg-card: #fff;
  --bg-weight: #e8f4f0;
  --btn-bg3: #44454b;
  --btn-text: #3cd3a5;
  --btn-text2: #f9b44b;
  --border-color: rgba(17, 193, 164, 0.12);
  --text-gray: #12575f;
  --text-gray6: #12575f;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-12 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-12 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-card);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-12 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 22px;
}
.a-t-12 .base-input.is-textarea .input-box {
  min-height: 52px;
  height: auto;
}
.a-t-12 .base-input .label {
  margin-bottom: 12px;
}
.a-t-12 .base-input .input-box {
  box-sizing: border-box;
  min-height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  border-bottom: 1px solid var(--primary);
  padding: var(--mg);
  border: 2px solid #c2dadd;
}
.a-t-12 .base-input .input-box input,
.a-t-12 .base-input .input-box textarea {
  background: none !important;
}
.a-t-12 .base-input .input-box input::placeholder,
.a-t-12 .base-input .input-box textarea::placeholder {
  color: var(--text-gray);
}
.a-t-12 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-12 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-12 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 44px;
  border-radius: 6px;
  background: var(--primary);
  border: 1px solid transparent;
  outline: none;
  color: #fff;
}
.a-t-12 .base-main-btn-content {
  border-radius: 6px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: 1px solid transparent;
  outline: none;
  color: #fff;
  text-align: center;
}
.a-t-12 .base-user-tab {
  position: relative;
  border-radius: var(--radius);
  background: var(--bg-card);
  padding: 7px;
}
.a-t-12 .base-user-tab .tab-item {
  width: 100%;
  z-index: 0;
  transition: all 0.3s;
  font-size: 16px;
  color: var(--text-gray);
}
.a-t-12 .base-user-tab .tab-item.active {
  font-size: 18px;
  color: var(--primary);
  background: none;
  position: relative;
}
.a-t-12 .base-list .loading-icon,
.a-t-12 .base-list .no-more,
.a-t-12 .base-list .base-list-nodata,
.a-t-12 .base-list .load-more {
  color: var(--text-gray);
}
.a-t-12 .base-dialog .dialog-wrap .dialog-content .dialog-title,
.a-t-12 .base-dialog .dialog-wrap .close-btn,
.a-t-12
  .base-dialog
  .dialog-wrap
  .dialog-content
  .dialog-body
  .setting-pop-wrap
  div {
  color: var(--bg-card) !important;
}
.a-t-12.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-12.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-12.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-12 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-12 .container-login .top-info {
  position: relative;
}
.a-t-12 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-12 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-12 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-12 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: var(--mg);
  margin-bottom: 46px;
}
.a-t-12 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-12 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-12 .container-login .register-btn {
  border-radius: 6px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--primary);
  outline: none;
  color: var(--primary);
  text-align: center;
  height: 44px;
  border-radius: var(--radius);
}
.a-t-12 .container-form,
.a-t-12 .container-card {
  background: var(--bg-card);
  padding: 10px 16px;
}
.a-t-12 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-12 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-12 .small-logo .site-name {
  font-size: 14px;
}
.a-t-12 .navigation-content {
  color: var(--bg-card) !important;
  border-bottom: 1px solid var(--bg-card);
}
.a-t-12 .navigation-content .i-material-symbols-arrow-back-ios-new-rounded {
  color: var(--bg-card);
  cursor: pointer;
}
.a-t-12 .tab-bar-wrap {
  height: 74px !important;
}
.a-t-12 .tab-bar-wrap .tab-bar {
  box-shadow: #00000017 0 3px 12px;
}
.a-t-12 .tab-bar-wrap .tab-item-icon {
  height: 27px !important;
  font-size: 27px !important;
}
.a-t-12 .change-pwd-wrap {
  margin-top: 20px;
}
.a-t-12 .van-empty__description {
  color: var(--text-gray);
}
.a-t-12 .celue {
  background: var(--bg-weight) !important;
}
.a-t-12 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--bg-weight);
  color: var(--text-gray);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid var(--border-color);
}
.a-t-12 .recharge-account.active {
  opacity: 1;
  background: #fff;
  color: var(--primary);
}
.a-t-12 .change-pwd-wrap .container-form {
  background: var(--bg-card);
}
.a-t-12 .customer-calendar-12 {
  --van-calendar-range-edge-background: var(--primary);
  --van-button-primary-background: var(--primary);
  --van-button-primary-border-color: var(--primary);
}
.a-t-12 .customer-calendar-12 .van-calendar {
  max-width: 720px;
  margin: 0 auto;
}
.a-t-12
  .customer-calendar-12
  .van-calendar
  .van-calendar__day:not(
    .van-calendar__day--disabled,
    .van-calendar__day--selected,
    .van-calendar__day--start,
    .van-calendar__day--end,
    .van-calendar__day--start-end
  ) {
  color: var(--primary) !important;
}
.a-t-12 .nav-bar-wrap .nav-bar .nav-bar-content .name {
  color: var(--bg-card) !important;
}
.a-t-13 {
  --radius: 10px;
  --btn-radius: 38px;
  --card-radius: 10px;
  --padding: 30px;
  --mg: 18px;
  --bg-card: hsl(253, 14%, 75%, 5%);
  --bg-weight: #01285f;
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --btn-text2: #f9b44b;
  --border-color: #242424;
  --text-gray: rgba(255, 255, 255, 0.8);
  --text-gray6: #3a3a3c;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
  font-family: Poppins, Poppins;
}
.a-t-13 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-13 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-13 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 40px;
}
.a-t-13 .base-input.is-textarea .input-box {
  min-height: 52px;
  height: auto;
  padding: 0 !important;
}
.a-t-13 .base-input .label {
  margin-bottom: 12px;
}
.a-t-13 .base-input .input-box {
  box-sizing: border-box;
  min-height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--text-gray);
}
.a-t-13 .base-input .input-box input,
.a-t-13 .base-input .input-box textarea {
  background: none !important;
}
.a-t-13 .base-input .input-box .is-textarea {
  padding: 0 !important;
}
.a-t-13 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-13 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-13 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 44px;
  border-radius: 6px;
  background: var(--primary);
  border: 1px solid transparent !important;
  outline: none;
  color: #000 !important;
}
.a-t-13 .base-main-btn-content {
  border-radius: 6px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: 1px solid transparent !important;
  outline: none;
  color: #000 !important;
  text-align: center;
}
.a-t-13 .base-user-tab {
  position: relative;
  border-radius: var(--radius);
  background: none;
  padding: 7px;
}
.a-t-13 .base-user-tab .tab-item {
  width: 100%;
  z-index: 0;
  transition: all 0.3s;
  font-size: 16px;
}
.a-t-13 .base-user-tab .tab-item.active {
  font-size: 18px;
  color: var(--primary);
  background: none;
  position: relative;
}
.a-t-13.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-13.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-13.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-13 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-13 .container-login .top-info {
  position: relative;
}
.a-t-13 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-13 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-13 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-13 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: var(--mg);
  margin-bottom: 46px;
}
.a-t-13 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-13 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-13 .container-form {
  background: none;
  padding: 10px 16px;
}
.a-t-13 .container-card {
  background: var(--bg-card);
  padding: 10px 16px;
}
.a-t-13 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-13 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-13 .small-logo .site-name {
  font-size: 14px;
}
.a-t-13 .navigation-content {
  border-bottom: none !important;
}
.a-t-13 .navigation-content .i-material-symbols-arrow-back-ios-new-rounded {
  color: #fff;
  cursor: pointer;
}
.a-t-13 .nav-bar-wrap {
  padding: 0 !important;
}
.a-t-13 .nav-bar-wrap:before {
  background: var(--bg);
  opacity: 1;
}
.a-t-13 .tab-bar-wrap {
  height: 74px !important;
}
.a-t-13 .tab-bar-wrap .tab-item-icon {
  height: 27px !important;
  font-size: 27px !important;
}
.a-t-13 .tab-bar-wrap .tab-bar {
  box-shadow: #11111a1a 0 0 16px;
}
.a-t-13 .change-pwd-wrap {
  margin-top: 20px;
}
.a-t-13 .van-empty__description {
  color: var(--text-gray);
}
.a-t-13 .celue {
  background: #ffffff14;
}
.a-t-13 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-13 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
}
.a-t-14 {
  --radius: 18px;
  --btn-radius: 50%;
  --card-radius: 18px;
  --padding: 30px;
  --mg: 16px;
  --bg-card: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.12) 100%
  );
  --bg-weight: rgba(255, 255, 255, 0.08);
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --btn-text2: #f9b44b;
  --border-color: rgba(255, 255, 255, 0.16);
  --border-color2: rgba(255, 255, 255, 0.1);
  --text-gray: rgba(255, 255, 255, 0.5);
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-14 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-14 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-14 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-14 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 15px;
}
.a-t-14 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-14 .base-input .label {
  margin-bottom: 12px;
}
.a-t-14 .base-input .input-box {
  padding: 0 16px;
  box-sizing: border-box;
  min-height: 52px;
  border-radius: 12px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  align-items: center;
}
.a-t-14 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-14 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-14 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  height: 54px;
  border-radius: 31px;
  font-weight: 600;
  color: #fff;
}
.a-t-14 .base-main-btn-content {
  border-radius: 31px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #00faf2, #0091ff 98%);
  text-align: center;
}
.a-t-14 .base-main-btn.disable {
  color: #fff !important;
}
.a-t-14 .base-user-tab {
  position: relative;
  background: #fff3;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  font-size: 12px;
}
.a-t-14 .base-user-tab .tab-item {
  width: 100%;
  padding: 12px 0;
  color: var(--btn-text);
}
.a-t-14 .base-user-tab .tab-item.active {
  color: #000;
  font-size: 14px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #00faf2, #0091ff 98%);
}
.a-t-14 .base-small-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 1;
  background: #ffffff21;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.a-t-14 .base-section-title {
  font-size: 24px;
  font-weight: 600;
  padding-left: 10px;
  position: relative;
}
.a-t-14 .base-section-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 17px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAiBAMAAACO37VbAAAAGFBMVEUAAAAA/5QA/5QA/5QA/5cA/5MA/48A/5SpkpC9AAAAB3RSTlMA779wIFAQ1J93hgAAADhJREFUCNelxjENACAMAMFPCA4IFrpioQ6wgAWW2uc9MFxyQNdRQCtIRdkiFapvV0MLi8VimdrwAPSSIlaPg7kjAAAAAElFTkSuQmCC);
  background-size: 100% 100%;
}
.a-t-14.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-14.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-14.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-14 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-14 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  margin-bottom: 46px;
}
.a-t-14 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-14 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-14 .container-form {
  border: 1px solid var(--border-color);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin-top: 14px !important;
  padding: var(--padding);
  background: #ffffff17 !important;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
}
.a-t-14 .container-card {
  background: #ffffff14;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 12px var(--mg);
}
.a-t-14 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-14 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-14 .small-logo .site-name {
  font-size: 14px;
}
.a-t-14 .nav-bar-wrap:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%);
  width: 100%;
  max-width: 720px;
  height: 100%;
  background: #ffffff14;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.a-t-14 .navigation-content {
  background: var(--bg-weight) !important;
  border-bottom: 1px solid var(--border-color);
}
.a-t-14 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-14 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
.a-t-14 .tab-bar-wrap2 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  background: #ffffff14;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.a-t-14 .tab-bar-wrap2 .tab-item-inner {
  padding: 10px 0;
  width: 100%;
}
#app.a-t-14 {
  position: relative;
  background: url(./body-bg-ipIJojdx.png);
  background-size: 100% 100%;
  background-attachment: fixed;
}
.a-t-15 {
  --radius: 5px;
  --btn-radius: 38px;
  --card-radius: 5px;
  --padding: 30px;
  --mg: 18px;
  --bg-card: #26262a;
  --bg-weight: #01285f;
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --btn-text2: #f9b44b;
  --border-color: #242424;
  --text-gray: #a6b1c5;
  --text-gray6: #3a3a3c;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-15 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-15 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-15 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 40px;
}
.a-t-15 .base-input.is-textarea .input-box {
  min-height: 52px;
  height: auto;
  padding: 0 !important;
}
.a-t-15 .base-input .label {
  margin-bottom: 12px;
}
.a-t-15 .base-input .input-box {
  box-sizing: border-box;
  min-height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--text-gray);
}
.a-t-15 .base-input .input-box input,
.a-t-15 .base-input .input-box textarea {
  background: none !important;
}
.a-t-15 .base-input .input-box .is-textarea {
  padding: 0 !important;
}
.a-t-15 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-15 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-15 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 48px;
  border-radius: 48px;
  background: var(--primary);
  border: none;
  outline: none;
  color: #fff !important;
}
.a-t-15 .base-main-btn-content {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: none;
  outline: none;
  color: #fff !important;
  text-align: center;
}
.a-t-15 .base-user-tab {
  position: relative;
  border-radius: var(--radius);
  background: none;
  padding: 7px;
}
.a-t-15 .base-user-tab .tab-item {
  width: 100%;
  z-index: 0;
  transition: all 0.3s;
  font-size: 14px;
}
.a-t-15 .base-user-tab .tab-item.active {
  font-size: 16px;
  color: var(--primary);
  background: none;
  position: relative;
}
.a-t-15.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-15.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-15.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-15 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-15 .container-login .top-info {
  position: relative;
}
.a-t-15 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-15 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-15 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-15 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: var(--mg);
  margin-bottom: 46px;
}
.a-t-15 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-15 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-15 .container-form {
  background: none;
  padding: 10px 16px;
}
.a-t-15 .container-card {
  background: var(--bg-card);
  padding: 10px 16px;
}
.a-t-15 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-15 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-15 .small-logo .site-name {
  font-size: 14px;
}
.a-t-15 .navigation-content {
  border-bottom: none !important;
}
.a-t-15 .navigation-content .i-material-symbols-arrow-back-ios-new-rounded {
  color: #fff;
  cursor: pointer;
}
.a-t-15 .nav-bar-wrap {
  padding: 0 !important;
}
.a-t-15 .nav-bar-wrap:before {
  background: var(--bg-card);
  opacity: 1;
}
.a-t-15 .tab-bar-wrap {
  height: 74px !important;
}
.a-t-15 .tab-bar-wrap .tab-item-icon {
  height: 27px !important;
  font-size: 27px !important;
}
.a-t-15 .tab-bar-wrap .tab-bar {
  box-shadow: #11111a1a 0 0 16px;
}
.a-t-15 .change-pwd-wrap {
  margin-top: 20px;
}
.a-t-15 .celue {
  background: #ffffff14;
}
.a-t-15 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-15 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: var(--btn-text);
}
.a-t-16 {
  --radius: 8px;
  --btn-radius: 38px;
  --card-radius: 8px;
  --padding: 30px;
  --mg: 16px;
  --bg-card: #353535;
  --bg-weight: #01285f;
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --btn-text2: #e2e8e4;
  --border-color: #242424;
  --text-gray: #7e829b;
  --text-gray6: #909399;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-16 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-16 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-16 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 20px;
}
.a-t-16 .base-input.is-textarea .input-box {
  min-height: 52px;
  height: auto;
}
.a-t-16 .base-input .label {
  margin-bottom: 12px;
}
.a-t-16 .base-input .input-box {
  box-sizing: border-box;
  min-height: 46px;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border-radius: var(--radius);
  padding: 0 16px;
}
.a-t-16 .base-input .input-box input,
.a-t-16 .base-input .input-box textarea {
  background: none !important;
}
.a-t-16 .base-input .input-box .is-textarea {
  padding: 0 !important;
}
.a-t-16 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-16 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-16 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  height: 42px;
  border-radius: var(--radius);
  background: linear-gradient(0deg, #2a6972, #2bd4ac);
  border: none;
  outline: none;
  color: #fff !important;
}
.a-t-16 .base-main-btn-content {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, #2a6972, #2bd4ac);
  border: none;
  outline: none;
  color: #fff !important;
  text-align: center;
}
.a-t-16 .base-user-tab {
  position: relative;
  border-radius: var(--radius);
  background: none;
  min-height: 40px;
  padding: 7px;
  color: #768da9;
}
.a-t-16 .base-user-tab .tab-item {
  width: 100%;
  z-index: 0;
  transition: all 0.3s;
  font-size: 16px;
}
.a-t-16 .base-user-tab .tab-item.active {
  color: var(--primary);
  background: none;
  position: relative;
}
.a-t-16 .base-user-tab .tab-item.active:after {
  content: "";
  width: 21px;
  height: 3px;
  border-radius: 100px;
  background-color: #29c69d;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: -5px;
}
.a-t-16.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-16.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-16.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-16 .container-login {
  overflow: hidden;
  position: relative;
  padding-top: 50px;
}
.a-t-16 .container-login .top-info {
  position: fixed;
  display: flex;
  align-items: center;
  top: 0;
  max-width: 720px;
  width: 100%;
  height: 50px;
  left: 50%;
  padding: 0 var(--mg);
  transform: translate(-50%);
  background: var(--bg-tab);
}
.a-t-16 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: var(--mg);
  margin-bottom: 46px;
}
.a-t-16 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-16 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-16 .container-form {
  background: none;
  padding: 10px 16px;
}
.a-t-16 .container-card {
  background: var(--bg-card);
  padding: 10px 16px;
}
.a-t-16 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-16 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-16 .small-logo .site-name {
  font-size: 14px;
}
.a-t-16 .navigation-content {
  border-bottom: none !important;
}
.a-t-16 .navigation-content .i-material-symbols-arrow-back-ios-new-rounded {
  color: #fff;
  cursor: pointer;
}
.a-t-16 .nav-bar-wrap {
  padding: 0 !important;
}
.a-t-16 .nav-bar-wrap:before {
  background: var(--bg-tab);
  opacity: 1;
}
.a-t-16 .tab-bar-wrap {
  height: 54px !important;
}
.a-t-16 .tab-bar-wrap .tab-item {
  flex-wrap: wrap;
}
.a-t-16 .tab-bar-wrap .tab-item-icon {
  height: 21px !important;
  width: 21px !important;
  margin: 0 auto;
}
.a-t-16 .change-pwd-wrap {
  margin-top: 20px;
}
.a-t-16 .celue {
  background: #ffffff14;
}
.a-t-16 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-16 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: var(--btn-text);
}
.a-t-17 {
  --radius: 13px;
  --btn-radius: 50%;
  --card-radius: 13px;
  --padding: 30px;
  --mg: 17px;
  --bg-card: #121f37cc;
  --bg-weight: rgba(0, 134, 255, 0.1);
  --btn-bg3: #1e3360;
  --btn-text: #fff;
  --btn-text2: #f9b44b;
  --border-color: rgba(38, 62, 108, 0.7);
  --border-color2: rgba(255, 255, 255, 0.1);
  --text-gray: #687697;
  --text-gray6: #5d6b8c;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-17 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-17 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-17 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-17 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 15px;
}
.a-t-17 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-17 .base-input .label {
  margin-bottom: 12px;
  color: var(--text-gray);
}
.a-t-17 .base-input .input-box {
  padding: 6px 9px;
  box-sizing: border-box;
  min-height: 51px;
  border-radius: 12px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  align-items: center;
}
.a-t-17 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 24px;
}
.a-t-17 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-17 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  height: 45px;
  border-radius: 31px;
  font-weight: 600;
  color: #fff;
}
.a-t-17 .base-main-btn-content {
  border-radius: 31px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-bg);
  text-align: center;
}
.a-t-17 .base-main-btn.disable {
  color: #fff !important;
}
.a-t-17 .base-user-tab {
  position: relative;
  background: var(--bg-card);
  box-sizing: border-box;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 12px;
}
.a-t-17 .base-user-tab .tab-item {
  width: 100%;
  padding: 8px 0;
  color: var(--btn-text);
}
.a-t-17 .base-user-tab .tab-item.active {
  font-size: 14px;
  border-radius: var(--radius);
  background: var(--primary);
}
.a-t-17 .base-small-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 1;
  background: #1e3360;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary);
}
.a-t-17 .base-section-title {
  font-size: 24px;
  font-weight: 600;
  padding-left: 10px;
  position: relative;
}
.a-t-17 .base-section-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 17px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAiBAMAAACO37VbAAAAGFBMVEUAAAAA/5QA/5QA/5QA/5cA/5MA/48A/5SpkpC9AAAAB3RSTlMA779wIFAQ1J93hgAAADhJREFUCNelxjENACAMAMFPCA4IFrpioQ6wgAWW2uc9MFxyQNdRQCtIRdkiFapvV0MLi8VimdrwAPSSIlaPg7kjAAAAAElFTkSuQmCC);
  background-size: 100% 100%;
}
.a-t-17.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-17.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-17.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-17 .container-login {
  height: 100vh;
  padding: var(--mg);
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  background: url(./login-bg-D9Ht3XxL.png);
  background-size: 100% 100%;
}
.a-t-17 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  margin-bottom: 46px;
}
.a-t-17 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-17 .container-form {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin-top: 14px !important;
  padding: var(--mg);
}
.a-t-17 .container-card {
  background: var(--bg-card);
  box-sizing: border-box;
  padding: 17px;
}
.a-t-17 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-17 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-17 .small-logo .site-name {
  font-size: 14px;
}
.a-t-17 .nav-bar-wrap {
  padding: 0 !important;
}
.a-t-17 .navigation-content {
  background: var(--bg-tab) !important;
  border-bottom: 1px solid var(--border-color);
}
.a-t-17 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--bg-weight);
  color: #fff;
  border-radius: var(--card-radius);
  padding: 10px;
  margin: 10px 0;
  font-size: 14px;
}
.a-t-17 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
.a-t-17 .tab-bar-wrap2 {
  background: var(--bg-tabbar);
  height: 64px !important;
}
.a-t-17 .tab-bar-wrap2 .tab-bar2 {
  display: flex;
  align-items: center;
}
.a-t-17 .tab-bar-wrap2 .tab-item-inner {
  padding: 10px 0;
  width: 100%;
}
#app.a-t-14 {
  position: relative;
  background: url(./body-bg-ipIJojdx.png);
  background-size: 100% 100%;
  background-attachment: fixed;
}
#app.a-t-14 .van-config-provider {
  position: relative;
  z-index: 2;
}
#app.a-t-14 .tab-item-inner.active .tab-item-label {
  color: var(--primary) !important;
}
.a-t-18 {
  --radius: 2px;
  --btn-radius: 2px;
  --card-radius: 2px;
  --padding: 24px 29px;
  --mg: 16px;
  --btn-text: #000;
  --btn-bg5: #000;
  --btn-text5: #fff;
  --bg-weight: rgba(255, 255, 255, 0.19);
  --shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.a-t-18 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-18 .font-dm {
  font-family: DM Sans, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-18 .base-draw-box .base-sign-btn,
.a-t-18 .base-draw-box .base-draw-box-btn,
.a-t-18 .base-sign .base-sign-btn,
.a-t-18 .base-sign .base-draw-box-btn {
  padding: 4px;
  width: 40px;
  height: 40px;
  border-radius: var(--card-radius);
}
.a-t-18 .base-draw-box .base-sign-btn:before,
.a-t-18 .base-draw-box .base-draw-box-btn:before,
.a-t-18 .base-sign .base-sign-btn:before,
.a-t-18 .base-sign .base-draw-box-btn:before {
  content: "";
  display: none;
}
.a-t-18 .base-draw-box .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-18 .base-draw-box .base-sign-btn .i-tabler-gift,
.a-t-18 .base-draw-box .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-18 .base-draw-box .base-draw-box-btn .i-tabler-gift,
.a-t-18 .base-sign .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-18 .base-sign .base-sign-btn .i-tabler-gift,
.a-t-18 .base-sign .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-18 .base-sign .base-draw-box-btn .i-tabler-gift {
  display: none;
}
.a-t-18 .base-draw-box .base-draw-box-btn,
.a-t-18 .base-sign .base-draw-box-btn {
  bottom: 132px;
  background: url(./gift-F130gw3O.png) no-repeat;
  background-size: 38px 38px;
  width: 38px;
  height: 38px;
}
.a-t-18 .base-draw-box .base-sign-btn,
.a-t-18 .base-sign .base-sign-btn {
  bottom: 198px;
  background: url(./sign-MyNaSiIN.png) no-repeat;
  background-size: 38px 33px;
  width: 38px;
  height: 33px;
}
.a-t-18 .nav-bar-wrap.is-scroll-state {
  overflow: unset;
}
.a-t-18 .nav-bar-wrap.is-scroll-state .left,
.a-t-18 .nav-bar-wrap.is-scroll-state .base-alarm-logo-btn,
.a-t-18 .nav-bar-wrap.is-scroll-state .base-help-btn,
.a-t-18 .nav-bar-wrap.is-scroll-state .base-lang-wrap {
  background: transparent !important;
}
.a-t-18.sign-wrap {
  box-shadow: none !important;
  background-image: linear-gradient(
    180deg,
    var(--primary) 25.91%,
    rgba(1, 103, 255, 0) 80%,
    #fff
  ) !important;
}
.a-t-18.sign-wrap .text-\[var\(--text-gray\)\] {
  color: var(--text-gray);
}
.a-t-18 .base-logo {
  height: 90px;
  border-radius: 20px;
}
.a-t-18 .base-lang-wrap {
  background: #00000080;
  color: var(--text-white);
  height: 28px;
  border-radius: 2px;
}
.a-t-18 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 24px;
}
.a-t-18 .base-input .label {
  margin-bottom: 12px;
}
.a-t-18 .base-input .input-box {
  padding: 0 12px;
  box-sizing: border-box;
  height: 52px;
  background: var(--bg-input);
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--btn-radius);
  color: var(--text-black);
}
.a-t-18 .base-input .input-box input {
  color: var(--text-black);
}
.a-t-18 .base-input .input-box input::state(webkit-input-placeholder) {
  color: #09123480;
}
.a-t-18 .base-input .input-box .input-left-slot {
  margin-right: 10px;
}
.a-t-18 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-18 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #0000004d;
}
.a-t-18 .base-input .input-box .input-pwd-eye-slot .input-pwd-eye {
  color: var(--text-black);
}
.a-t-18 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  height: 54px;
  border-radius: var(--btn-radius);
  box-shadow: var(--btn-shadow);
  color: var(--text-white);
}
.a-t-18 .base-main-btn-content {
  border-radius: var(--btn-radius);
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  text-align: center;
}
.a-t-18 .base-user-tab {
  position: relative;
  width: 100%;
  background: transparent;
  min-height: 44px;
  justify-content: space-between;
}
.a-t-18 .base-user-tab .tab-item {
  color: var(--text-gray6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-18 .base-user-tab .tab-item div {
  min-height: 44px;
  display: flex;
  align-items: center;
  line-height: 22px;
}
.a-t-18 .base-user-tab .tab-item.active {
  position: relative;
  background: var(--btn-bg2);
  color: var(--text-black);
  font-size: 16px;
  line-height: 44px;
  border-radius: var(--btn-radius);
}
.a-t-18 .base-user-tab .tab-item.active div {
  position: relative;
  z-index: 1;
}
.a-t-18 .container-login {
  position: relative;
  padding: 18px var(--mg) 20px;
  background: var(--bg-login);
  color: var(--login-text);
}
.a-t-18 .container-login .decor {
  height: 236px;
  width: 100%;
  position: absolute;
  margin: -18px 0 0 -16px;
  overflow: hidden;
}
.a-t-18 .container-login .decor:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 236px;
  width: 100%;
  background: url(./login-bg1-Be_v_oKC.png) no-repeat;
  background-size: 100% 100%;
}
.a-t-18 .container-login .decor:before {
  content: "";
  background: var(--primary);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.a-t-18 .container-login .decor.color-1:after {
  content: "";
  background: url(./login-bg1-Be_v_oKC.png) no-repeat;
  background-size: 100% 100%;
}
.a-t-18 .container-login .decor.color-2:after {
  content: "";
  background: url(./login-bg2-D2zk8QX2.png) no-repeat;
  background-size: 100% 100%;
}
.a-t-18 .container-login .decor.color-3:after {
  content: "";
  background: url(./login-bg3-eWlXbOnG.png) no-repeat;
  background-size: 100% 100%;
}
.a-t-18 .container-login .decor.color-4:after {
  content: "";
  background: url(./login-bg4-DmeuwHK2.png) no-repeat;
  background-size: 100% 100%;
}
.a-t-18 .container-login .decor.color-5:after {
  content: "";
  background: url(./login-bg5-CLHz3zUe.png) no-repeat;
  background-size: 100% 100%;
}
.a-t-18 .container-login .login-top {
  position: relative;
  z-index: 2;
}
.a-t-18 .container-login .login-top .base-logo.small-logo,
.a-t-18 .container-login .login-top .base-logo.small-logo .site-img {
  width: 24px;
  height: 24px;
  border-radius: 8px;
}
.a-t-18 .container-login .login-top .base-logo .site-name {
  color: var(--text-white);
  flex-shrink: 0;
  font-weight: 700;
}
.a-t-18 .container-login .login-top .tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.a-t-18 .container-login .login-top .tools .base-help-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 6px;
  border-radius: 2px;
}
.a-t-18 .container-login .login-top .tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-18 .container-login .login-top .base-lang-wrap {
  background: var(--bg-weight);
}
.a-t-18 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  min-height: calc(var(--vh) * 100 - 84px);
}
.a-t-18 .container-login .login-content .container-form {
  position: relative;
  background: var(--text-white);
  border: none;
  margin-top: 0;
  min-height: calc(var(--vh) * 100 - 84px);
}
.a-t-18 .container-login .login-content .container-form form {
  margin-top: 40px;
}
.a-t-18 .container-login .login-content .container-form .login-main {
  margin-bottom: 200px;
}
.a-t-18
  .container-login
  .login-content
  .container-form
  .login-main
  .base-input
  .input-box {
  border: none;
}
.a-t-18
  .container-login
  .login-content
  .container-form
  .login-main
  .auto-login {
  color: #010b2a80;
  font-size: 12px;
  margin-top: 7px;
}
.a-t-18 .container-login .login-content .container-form .login-footer {
  position: absolute;
  bottom: 68px;
  left: 29px;
  width: calc(100% - 58px);
}
.a-t-18
  .container-login
  .login-content
  .container-form
  .login-footer
  .register-btn {
  width: 100%;
  border-radius: var(--btn-radius);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  margin: 20px auto 0;
  font-size: 14px;
}
.a-t-18 .container-form {
  margin: var(--mg) auto 0;
  padding: var(--padding);
}
.a-t-18 .container-card {
  background: var(--bg-card);
  border-radius: var(--card-radius);
}
.a-t-18 .small-logo {
  height: 30px;
  display: flex;
  border-radius: 50%;
}
.a-t-18 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-18 .tab-bar-wrap .tab-bar {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  background: var(--bg);
  box-shadow: var(--box-shadow);
}
.a-t-18 .sticky-bg {
  z-index: 2;
  background: var(--bg-card);
  border-radius: var(--card-radius);
  height: 42px;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
}
.a-t-18 .sticky-bg.base-user-tab {
  height: 42px;
  box-shadow: var(--box-shadow);
}
.a-t-18 .sticky-bg.base-user-tab .tab-item {
  margin-right: 0;
  display: flex;
  align-items: center;
}
.a-t-18 .sticky-bg.base-user-tab .tab-item.active {
  background: var(--primary);
  border-radius: var(--card-radius);
  color: var(--btn-text2) !important;
}
.a-t-18 .sticky-bg.base-user-tab .tab-item:after {
  content: "";
  height: 0;
}
.a-t-18 .navigation-content {
  color: var(--text-white) !important;
}
.a-t-18 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--btn-bg3);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-18 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
.a-t-18.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-18.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--text-white);
  padding: 4px;
  box-shadow: var(--box-shadow);
}
.a-t-18.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #f4f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-18 .company-detail-wrap .container-card {
  background: var(--bg-login);
}
.a-t-18 .change-pwd-wrap .container-form,
.a-t-18 .change-safe-pwd .container-form,
.a-t-18 .transfer-wrap .container-form,
.a-t-18 .vip-uplog-wrap .container-card {
  border: 1px solid var(--border-color);
  box-shadow: var(--box-shadow);
}
.a-t-18 .van-popup--center.van-popup--round {
  border-radius: var(--card-radius);
}
.a-t-18 .celue {
  background: var(--btn-bg3) !important;
}
.a-t-19 {
  --radius: 20px;
  --btn-radius: 17px;
  --card-radius: 22px;
  --padding: 30px;
  --mg: 16px;
  --card-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
  --bg-card: #fff;
  --bg-weight: rgba(255, 255, 255, 0.19);
  --btn-text: #091234;
  --btn-bg3: #000;
  --btn-text2: #fff;
  --btn-text3: #212121;
  --btn-text4: #001d77;
  --border-color: #ebebeb;
  --text-gray: #999;
  --text-gray6: rgba(1, 11, 46, 0.5);
}
.a-t-19 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-19 .font-playgram {
  font-family: Playgram, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-19.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-19.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--text-white);
  padding: 4px;
  box-shadow: var(--box-shadow);
}
.a-t-19.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #f4f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-19.base-draw-box .base-sign-btn,
.a-t-19.base-draw-box .base-draw-box-btn,
.a-t-19.base-sign .base-sign-btn,
.a-t-19.base-sign .base-draw-box-btn {
  background: var(--text-white);
  box-shadow: var(--box-shadow);
  padding: 4px;
  width: 40px;
  height: 40px;
}
.a-t-19.base-draw-box .base-sign-btn:before,
.a-t-19.base-draw-box .base-draw-box-btn:before,
.a-t-19.base-sign .base-sign-btn:before,
.a-t-19.base-sign .base-draw-box-btn:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
}
.a-t-19.base-draw-box .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-19.base-draw-box .base-sign-btn .i-tabler-gift,
.a-t-19.base-draw-box .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-19.base-draw-box .base-draw-box-btn .i-tabler-gift,
.a-t-19.base-sign .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-19.base-sign .base-sign-btn .i-tabler-gift,
.a-t-19.base-sign .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-19.base-sign .base-draw-box-btn .i-tabler-gift {
  color: var(--text-white) !important;
  font-size: 24px;
}
.a-t-19.sign-wrap {
  box-shadow: none !important;
  background-image: linear-gradient(
    180deg,
    var(--primary) 25.91%,
    rgba(1, 103, 255, 0) 80%,
    #fff
  ) !important;
}
.a-t-19.sign-wrap .tips {
  color: #eee;
}
.a-t-19.sign-wrap .tips2 {
  color: #aaa;
}
.a-t-19 .base-logo {
  width: 90px;
  height: 90px;
}
.a-t-19 .base-logo .site-img {
  border-radius: 20px;
}
.a-t-19 .base-lang-wrap {
  border-radius: 32px 0 0 32px;
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
  color: var(--btn-text2);
  margin-right: calc(0px - var(--mg));
  padding: 0 10px 0 8px;
  height: 32px;
  line-height: 14px;
}
.a-t-19 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 24px;
}
.a-t-19 .base-input .label {
  margin-bottom: 12px;
}
.a-t-19 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-19 .base-input .input-box {
  box-sizing: border-box;
  height: 52px;
  background: var(--bg-card);
  border-bottom: 1px solid #f2f4f9;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 16px 0 0;
}
.a-t-19 .base-input .input-box input::state(webkit-input-placeholder),
.a-t-19 .base-input .input-box textarea::state(webkit-input-placeholder) {
  color: #09123480;
}
.a-t-19 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-19 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-19 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  height: 56px;
  border-radius: 50px;
  color: var(--btn-text2);
}
.a-t-19 .base-main-btn-content {
  border-radius: 50px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  text-align: center;
}
.a-t-19 .base-main-btn:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 50px;
  background: var(--btn-light);
}
.a-t-19 .base-user-tab {
  position: relative;
  width: 100%;
  background: transparent;
  min-height: 52px;
  background: #f2f4f9;
  border-radius: 32px;
}
.a-t-19 .base-user-tab:after {
  content: "";
  position: absolute;
  right: 50%;
  top: 19px;
  margin-left: -0.5px;
  height: 14px;
  width: 1px;
  background: #d9d9d9;
}
.a-t-19 .base-user-tab .tab-item {
  color: #000;
}
.a-t-19 .base-user-tab .tab-item div {
  line-height: 14px;
  height: 32px;
  display: flex;
  align-items: center;
}
.a-t-19 .base-user-tab .tab-item.active {
  position: relative;
  background: transparent;
}
.a-t-19 .base-user-tab .tab-item.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -15px;
  width: 30px;
  height: 2px;
  border-radius: 12px;
  background: #312d3d;
}
.a-t-19 .base-user-tab .tab-item.active div {
  position: relative;
  z-index: 1;
  font-weight: 600;
}
.a-t-19 .container-login {
  position: relative;
  padding: 18px var(--mg) 20px;
  min-height: calc(var(--vh, 1vh) * 100);
}
.a-t-19 .container-login:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 236px;
  width: 100%;
  background: var(--primary);
}
.a-t-19 .container-login:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 236px;
  width: 100%;
  background: url(./login-1-CPuDx_OE.png) no-repeat;
  background-size: cover;
}
.a-t-19 .container-login .container-form {
  padding: 0;
  background: var(--bg-card);
  border: none;
  box-shadow: none;
  margin: 30px 0;
}
.a-t-19 .container-login .base-logo .site-name {
  color: var(--btn-text2);
}
.a-t-19 .container-login .top-info {
  position: relative;
  z-index: 2;
  height: 183px;
}
.a-t-19 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-19 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-right: 16px;
  border: 1px solid #fff;
}
.a-t-19 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-19 .container-login .top-info .top-tools .base-lang-wrap {
  padding: 0 8px;
  margin-right: -16px;
  border-radius: 24px 0 0 24px;
}
.a-t-19 .container-login .top-info .base-user-tab {
  position: absolute;
  bottom: 12px;
  left: 0;
}
.a-t-19 .container-login .top-info .base-logo {
  width: 90px;
  margin-top: 5px;
}
.a-t-19 .container-login .top-info .top-flag {
  position: relative;
  margin: 8px 0;
  display: flex;
  justify-content: center;
  color: var(--btn-text2);
  font-size: 16px;
}
.a-t-19 .container-login .auto-login {
  color: #010b2a80;
  font-size: 12px;
}
.a-t-19 .container-login .login-content {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 24px 30px;
  border-radius: 20px;
  min-height: calc(var(--vh, 1vh) * 100 - 181px - 20px - 20px);
}
.a-t-19 .container-login .login-content .login-tools {
  margin: 0 auto;
  width: calc(100% - 60px);
}
.a-t-19 .container-login .login-content .login-tools .register-btn {
  width: 100%;
  color: #212121;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  margin: 20px auto 0;
  font-size: 14px;
  border-radius: 39px;
  border: 1px solid #e8e8e8;
}
.a-t-19 .container-form {
  border: 1px solid var(--border-color);
  margin: var(--mg) auto 0;
  padding: var(--padding);
  box-shadow: var(--card-shadow);
}
.a-t-19 .container-card {
  background: var(--bg-card);
  box-shadow: none;
  border: none;
}
.a-t-19 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-19 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-19 .small-logo .site-name {
  font-size: 14px;
}
.a-t-19 .tab-bar-wrap .tab-bar {
  background: var(--text-white);
}
.a-t-19 .tab-bar-wrap .tab-bar .tab-item {
  padding: 8px 0;
}
.a-t-19 .sticky-bg {
  z-index: 2;
  background: var(--bg-card);
  border-radius: 30px;
  height: 42px;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
}
.a-t-19 .sticky-bg.base-user-tab {
  height: 42px;
}
.a-t-19 .sticky-bg.base-user-tab .tab-item {
  display: flex;
  align-items: center;
}
.a-t-19 .sticky-bg.base-user-tab .tab-item.active {
  background: var(--primary);
  border-radius: 30px;
  color: var(--btn-text2) !important;
}
.a-t-19 .sticky-bg.base-user-tab .tab-item:after {
  content: "";
  height: 0;
}
.a-t-19 .navigation-content {
  color: var(--btn-text2) !important;
}
.a-t-19 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-19 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
.a-t-19 .celue {
  background: #0000000d !important;
}
.a-t-19 .customer-calendar {
  --van-calendar-range-edge-background: var(--primary);
  --van-button-primary-background: var(--primary);
  --van-button-primary-border-color: var(--primary);
}
.a-t-19 .customer-calendar .van-calendar {
  max-width: 720px;
  margin: 0 auto;
}
.a-t-19
  .customer-calendar
  .van-calendar
  .van-calendar__day:not(
    .van-calendar__day--disabled,
    .van-calendar__day--selected,
    .van-calendar__day--start,
    .van-calendar__day--end,
    .van-calendar__day--start-end
  ) {
  color: var(--btn-text);
}
.a-t-20 {
  --radius: 12px;
  --btn-radius: 12px;
  --card-radius: 8px;
  --padding: 23px;
  --mg: 16px;
  --bg-weight: rgba(255, 255, 255, 0.19);
  --btn-text2: #fff;
}
.a-t-20 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-20 .font-dm {
  font-family: DM Sans, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-20.no-2 .layout-tab-bar:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(./b-2-cZTY1IbN.png) top left repeat;
  width: 100%;
  height: 100%;
}
.a-t-20 .base-draw-box .base-sign-btn,
.a-t-20 .base-draw-box .base-draw-box-btn,
.a-t-20 .base-sign .base-sign-btn,
.a-t-20 .base-sign .base-draw-box-btn {
  background: var(--text-white);
  box-shadow: var(--box-shadow);
  padding: 4px;
  width: 46px;
  height: 46px;
}
.a-t-20 .base-draw-box .base-sign-btn:before,
.a-t-20 .base-draw-box .base-draw-box-btn:before,
.a-t-20 .base-sign .base-sign-btn:before,
.a-t-20 .base-sign .base-draw-box-btn:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--btn-bg4);
}
.a-t-20 .base-draw-box .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-20 .base-draw-box .base-sign-btn .i-tabler-gift,
.a-t-20 .base-draw-box .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-20 .base-draw-box .base-draw-box-btn .i-tabler-gift,
.a-t-20 .base-sign .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-20 .base-sign .base-sign-btn .i-tabler-gift,
.a-t-20 .base-sign .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-20 .base-sign .base-draw-box-btn .i-tabler-gift {
  color: var(--primary) !important;
  font-size: 24px;
}
.a-t-20 .base-draw-box .base-draw-box-btn,
.a-t-20 .base-sign .base-draw-box-btn {
  bottom: 132px;
}
.a-t-20 .base-draw-box .base-draw-box-btn img,
.a-t-20 .base-sign .base-draw-box-btn img {
  border-radius: 50%;
}
.a-t-20 .base-draw-box .base-sign-btn,
.a-t-20 .base-sign .base-sign-btn {
  bottom: 198px;
}
.a-t-20 .base-draw-box .base-sign-btn img,
.a-t-20 .base-sign .base-sign-btn img {
  border-radius: 50%;
}
.a-t-20 .base-alarm-logo-btn,
.a-t-20 .base-help-btn {
  background: var(--bg-nav) !important;
  margin-right: 7px !important;
  box-shadow: var(--inner-shadow);
}
.a-t-20 .base-alarm-logo-btn svg,
.a-t-20 .base-help-btn svg {
  color: var(--nav-text);
}
.a-t-20 .base-list .loading-icon,
.a-t-20 .base-list .no-more,
.a-t-20 .base-list .base-list-nodata,
.a-t-20 .base-list .load-more {
  color: var(--nav-text);
}
.a-t-20 .layout-tab-bar {
  background: var(--bg);
  min-height: calc(var(--vh) * 100 - 55px);
}
.a-t-20 .nav-bar-wrap.is-scroll-state {
  overflow: unset;
}
.a-t-20.announce-wrap {
  border: none;
}
.a-t-20.sign-wrap {
  box-shadow: none !important;
  background-image: linear-gradient(
    180deg,
    var(--primary) 25.91%,
    #fff
  ) !important;
}
.a-t-20.sign-wrap .text-\[var\(--text-gray\)\] {
  color: #aaa;
}
.a-t-20.task-product-wrap {
  border: none !important;
}
.a-t-20 .base-logo {
  height: 83px;
  color: var(--text-black);
}
.a-t-20 .base-logo .site-img {
  border-radius: 20px;
}
.a-t-20 .base-lang-wrap {
  margin-right: -4px;
  color: var(--nav-text);
  height: 28px;
  border-radius: 38px 0 0 38px;
  line-height: 12px;
  padding-right: 10px;
  box-shadow: var(--inner-shadow);
}
.a-t-20 .base-lang-wrap svg {
  color: var(--nav-text);
}
.a-t-20 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 24px;
  color: var(--text-black);
}
.a-t-20 .base-input .label {
  font-weight: 500;
  color: var(--btn-text4);
}
.a-t-20 .base-input .input-box {
  padding: 0 15px;
  box-sizing: border-box;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-input);
  color: var(--text-black);
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: var(--card-shadow);
}
.a-t-20 .base-input .input-box input::state(webkit-input-placeholder),
.a-t-20 .base-input .input-box textarea::state(webkit-input-placeholder) {
  color: #09123480;
}
.a-t-20 .base-input .input-box input::-moz-placeholder,
.a-t-20 .base-input .input-box textarea::-moz-placeholder {
  color: #09123480;
}
.a-t-20 .base-input .input-box input:-ms-input-placeholder,
.a-t-20 .base-input .input-box textarea:-ms-input-placeholder {
  color: #09123480;
}
.a-t-20 .base-input .input-box input::placeholder,
.a-t-20 .base-input .input-box textarea::placeholder {
  color: #09123480;
}
.a-t-20 .base-input .input-box .input-left-slot {
  margin-right: 10px;
}
.a-t-20 .base-input .input-box .input-pwd-eye {
  color: var(--text-black) !important;
}
.a-t-20 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-20 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-20 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  height: 54px;
  border-radius: var(--btn-radius);
  background: transparent;
}
.a-t-20 .base-main-btn-content {
  border-radius: var(--btn-radius);
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-bg);
  text-align: center;
}
.a-t-20 .base-user-tab {
  position: relative;
  width: 100%;
  height: 43px;
  justify-content: flex-start;
  background: transparent;
}
.a-t-20 .base-user-tab .tab-item {
  padding: 0 7px;
  color: var(--text-gray);
  align-items: flex-start;
  background: var(--tab-bg);
  border-radius: var(--radius);
  margin-right: 15px;
  box-shadow: var(--inner-shadow);
}
.a-t-20 .base-user-tab .tab-item div {
  height: 44px;
  display: flex;
  align-items: center;
  line-height: 16px;
}
.a-t-20 .base-user-tab .tab-item.active {
  color: var(--text-black);
  position: relative;
  font-size: 16px;
  z-index: 3;
  background: var(--tab-bg);
}
.a-t-20 .base-user-tab .tab-item.active div {
  position: relative;
  z-index: 1;
}
.a-t-20 .base-user-tab .tab-item.active:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -12px;
  background: var(--primary);
  background-size: 100% 100%;
  width: 24px;
  height: 4px;
  border-radius: 9px;
}
.a-t-20 .container-login {
  padding-top: 16px;
  overflow: hidden;
  color: var(--btn-text5);
}
.a-t-20 .container-login.no-2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(./b-2-cZTY1IbN.png) top left repeat;
  width: 100%;
  height: 100%;
}
.a-t-20 .container-login.no-3 {
  background: #fcf3ec;
}
.a-t-20 .container-login .container-form {
  min-height: calc(var(--vh) * 100 - 286px);
  border-radius: 16px 16px 0 0;
  border: none;
  margin-top: 20px;
  background: transparent;
}
.a-t-20 .container-login .top-info {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.a-t-20 .container-login .top-info .name {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-20 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 20px;
}
.a-t-20 .container-login .top-info .top-tools .base-help-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.a-t-20 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-20 .container-login .forget-password,
.a-t-20 .container-login .auto-login {
  color: #010b2a80;
  font-size: 12px;
}
.a-t-20 .container-login .login-content {
  position: relative;
  z-index: 1;
  border-radius: 16px 16px 0 0;
  background: var(--login-bg);
  padding: 23px 26px;
}
.a-t-20 .container-login .login-content form {
  padding-bottom: 20px;
}
.a-t-20 .container-login .login-content .login-tools {
  width: calc(100% - 52px);
  margin: 0 auto;
}
.a-t-20 .container-login .login-content .login-tools .register-btn {
  width: 100%;
  border-radius: var(--btn-radius);
  background: transparent;
  color: #212121;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  cursor: pointer;
}
.a-t-20 .container-login .login-content .container-form {
  padding: 0;
}
.a-t-20 .container-form {
  margin: var(--mg) auto 0;
  padding: var(--padding);
}
.a-t-20 .container-card {
  background: var(--bg-card);
  box-shadow: var(--card-shadow);
}
.a-t-20 .small-logo {
  height: 30px;
  display: flex;
  border-radius: 50%;
}
.a-t-20 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-20 .tab-bar-wrap {
  height: 80px;
  align-items: center;
  z-index: 10;
}
.a-t-20 .tab-bar-wrap .tab-bar {
  margin-top: 15px;
  background: var(--bg-card) !important;
  width: 100% !important;
  height: 50px !important;
  max-width: 700px;
  border-radius: 100px !important;
  box-shadow: var(--box-shadow);
  padding: 0 10px;
}
.a-t-20 .tab-bar-wrap .tab-bar .tab-item {
  padding: 7px 0;
}
.a-t-20 .tab-bar-wrap .tab-bar .tab-item-icon {
  height: 24px !important;
  font-size: 24px !important;
}
.a-t-20 .sticky-bg {
  z-index: 2;
  background: var(--bg-card);
  border-radius: 30px;
  height: 42px;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
}
.a-t-20 .sticky-bg.base-user-tab {
  height: 42px;
  box-shadow: var(--box-shadow);
}
.a-t-20 .sticky-bg.base-user-tab .tab-item {
  margin-right: 0;
  display: flex;
  align-items: center;
  height: 100%;
  text-align: center;
  background: transparent;
  color: var(--btn-text);
}
.a-t-20 .sticky-bg.base-user-tab .tab-item.active {
  background: var(--primary);
  border-radius: 30px;
  color: var(--btn-text2) !important;
}
.a-t-20 .sticky-bg.base-user-tab .tab-item.active div {
  margin: 0;
}
.a-t-20 .sticky-bg.base-user-tab .tab-item:before {
  content: "";
  height: 0;
}
.a-t-20 .sticky-bg.base-user-tab .tab-item:after {
  content: "";
  height: 0;
}
.a-t-20.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-20.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--text-white);
  padding: 4px;
  box-shadow: var(--box-shadow);
}
.a-t-20.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #f4f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-20 .kyc-page .container-card,
.a-t-20 .change-pwd-wrap .container-form {
  background: var(--text-white);
}
.a-t-20 .notice-wrap .loading-icon,
.a-t-20 .notice-wrap .no-more,
.a-t-20 .notice-wrap .base-list-nodata,
.a-t-20 .notice-wrap .load-more {
  color: var(--btn-text);
}
.a-t-20 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-20 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
@font-face {
  font-family: DM Sans;
  src: url(./DMSans-DuwDb0Vm.woff2);
  font-weight: 400;
  font-style: normal;
}
.a-t-21 {
  --radius: 14px;
  --btn-radius: 38px;
  --card-radius: 8px;
  --padding: 24px 29px;
  --mg: 16px;
  --btn-text: #000;
  --btn-bg5: #000;
  --btn-text5: #fff;
}
.a-t-21 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-21 .font-dm {
  font-family: DM Sans, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-21.no-1 .layout-tab-bar:before,
.a-t-21.no-1 .container-login:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(data:image/png;base64,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)
    left top repeat;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.a-t-21.no-2 .layout-tab-bar:before,
.a-t-21.no-2 .container-login:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(./bg-2-CnlLAmwc.png) left top repeat;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.a-t-21.no-3 .layout-tab-bar:before,
.a-t-21.no-3 .container-login:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(./bg-3-DClE_epe.png) left top repeat;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.a-t-21.no-4 .layout-tab-bar:before,
.a-t-21.no-4 .container-login:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(./bg-4-Cim5-pV4.png) left top repeat;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.a-t-21.no-5 .layout-tab-bar:before,
.a-t-21.no-5 .container-login:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(./bg-5-tXiThDw8.png) left top repeat;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.a-t-21 .layout-tab-bar {
  padding-bottom: 80px;
}
.a-t-21 .base-draw-box .base-sign-btn,
.a-t-21 .base-draw-box .base-draw-box-btn,
.a-t-21 .base-sign .base-sign-btn,
.a-t-21 .base-sign .base-draw-box-btn {
  padding: 4px;
  width: 40px;
  height: 40px;
  border-radius: var(--card-radius);
}
.a-t-21 .base-draw-box .base-sign-btn:before,
.a-t-21 .base-draw-box .base-draw-box-btn:before,
.a-t-21 .base-sign .base-sign-btn:before,
.a-t-21 .base-sign .base-draw-box-btn:before {
  content: "";
  display: none;
}
.a-t-21 .base-draw-box .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-21 .base-draw-box .base-sign-btn .i-tabler-gift,
.a-t-21 .base-draw-box .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-21 .base-draw-box .base-draw-box-btn .i-tabler-gift,
.a-t-21 .base-sign .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-21 .base-sign .base-sign-btn .i-tabler-gift,
.a-t-21 .base-sign .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-21 .base-sign .base-draw-box-btn .i-tabler-gift {
  display: none;
}
.a-t-21 .nav-bar-wrap.is-scroll-state {
  overflow: unset;
}
.a-t-21 .nav-bar-wrap.is-scroll-state:before {
  content: "";
  background: var(--primary);
}
.a-t-21.sign-wrap {
  box-shadow: none !important;
  background-image: linear-gradient(
    180deg,
    var(--primary) 25.91%,
    rgba(1, 103, 255, 0) 80%,
    #fff
  ) !important;
}
.a-t-21.sign-wrap .text-\[var\(--text-gray\)\] {
  color: var(--text-gray);
}
.a-t-21.sign-wrap .sign-content-box {
  background: #fff;
}
.a-t-21 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-21 .base-lang-wrap {
  background: var(--bg-weight);
  border: 1px solid var(--btn-text);
  color: var(--btn-text4);
  height: 28px;
  border-radius: var(--btn-radius);
  padding: 0 6px;
}
.a-t-21 .base-lang-wrap span {
  display: block;
  line-height: 12px;
}
.a-t-21 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 24px;
}
.a-t-21 .base-input .label {
  margin-bottom: 12px;
  font-weight: 500;
}
.a-t-21 .base-input .input-box {
  padding: 0 12px;
  box-sizing: border-box;
  height: 52px;
  background: var(--bg-input);
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-black);
}
.a-t-21 .base-input .input-box input::state(webkit-input-placeholder),
.a-t-21 .base-input .input-box textarea::state(webkit-input-placeholder) {
  color: #09123480;
}
.a-t-21 .base-input .input-box input::-moz-placeholder,
.a-t-21 .base-input .input-box textarea::-moz-placeholder {
  color: #09123480;
}
.a-t-21 .base-input .input-box input:-ms-input-placeholder,
.a-t-21 .base-input .input-box textarea:-ms-input-placeholder {
  color: #09123480;
}
.a-t-21 .base-input .input-box input::placeholder,
.a-t-21 .base-input .input-box textarea::placeholder {
  color: #09123480;
}
.a-t-21 .base-input .input-box .input-left-slot {
  margin-right: 10px;
}
.a-t-21 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-21 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #0000004d;
}
.a-t-21 .base-input .input-box .input-pwd-eye-slot .input-pwd-eye {
  color: var(--text-black);
}
.a-t-21 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 64px auto 0;
  font-size: 16px;
  height: 54px;
  border-radius: var(--card-radius);
  color: var(--primary);
}
.a-t-21 .base-main-btn-content {
  border-radius: var(--card-radius);
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  text-align: center;
  border: 1px solid var(--btn-text);
}
.a-t-21 .base-user-tab {
  position: relative;
  width: 100%;
  background: transparent;
  min-height: 58px;
  justify-content: space-between;
}
.a-t-21 .base-user-tab .tab-item {
  color: var(--btn-text);
  width: calc(100% - 3px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tab);
  border-radius: var(--card-radius);
  border: 1px solid var(--btn-text);
}
.a-t-21 .base-user-tab .tab-item div {
  min-height: 58px;
  display: flex;
  align-items: center;
  line-height: 22px;
}
.a-t-21 .base-user-tab .tab-item.active {
  position: relative;
  background: var(--bg-card);
  color: var(--btn-text);
  font-size: 16px;
  line-height: 58px;
  border-radius: var(--card-radius);
  border: 1px solid var(--btn-text);
}
.a-t-21 .base-user-tab .tab-item.active:before {
  content: "";
  position: absolute;
  bottom: -4px;
  background: var(--bg-weight);
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: var(--card-radius);
  border: 1px solid var(--btn-text);
}
.a-t-21 .base-user-tab .tab-item.active div {
  position: relative;
  z-index: 1;
}
.a-t-21 .base-list .loading-icon {
  color: var(--btn-text2);
}
.a-t-21 .base-list .no-more,
.a-t-21 .base-list .base-list-nodata,
.a-t-21 .base-list .load-more {
  color: var(--btn-text);
}
.a-t-21 .container-login {
  position: relative;
  padding: 18px var(--mg) 20px;
  background: var(--bg-login);
  color: var(--login-text);
  min-height: 100vh;
}
.a-t-21 .container-login .top-info {
  position: relative;
}
.a-t-21 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-21 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
  border: 1px solid var(--btn-text);
}
.a-t-21 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
  color: var(--btn-text4);
}
.a-t-21 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: 18px;
}
.a-t-21 .container-login .login-content .container-form {
  position: relative;
  background: var(--bg-card);
  border: none;
  margin-top: 8px;
  border: 1px solid var(--btn-text);
  border-radius: var(--card-radius);
}
.a-t-21 .container-login .login-content .container-form:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  background: var(--bg-weight);
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: var(--card-radius);
  border: 1px solid var(--btn-text);
}
.a-t-21
  .container-login
  .login-content
  .container-form
  .login-main
  .base-input
  .input-box {
  border: none;
}
.a-t-21
  .container-login
  .login-content
  .container-form
  .login-main
  .auto-login {
  color: #010b2a80;
  font-size: 12px;
  margin-top: 7px;
}
.a-t-21 .container-login .login-content .login-footer .register-btn {
  width: 100%;
  height: 56px;
  border: 1px solid var(--btn-text);
  border-radius: var(--card-radius);
  background: var(--bg-card);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  font-size: 14px;
}
.a-t-21 .container-form {
  margin: var(--mg) auto 0;
  padding: var(--padding);
}
.a-t-21 .container-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--card-radius);
  border: 1px solid var(--btn-text);
  margin-right: 8px;
}
.a-t-21 .container-card:before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  border-radius: var(--card-radius);
  background: var(--bg-weight);
  border: 1px solid var(--btn-text);
  z-index: -1;
}
.a-t-21 .container-card .base-list .loading-icon,
.a-t-21 .container-card .base-list .no-more,
.a-t-21 .container-card .base-list .base-list-nodata,
.a-t-21 .container-card .base-list .load-more {
  color: var(--btn-text);
}
.a-t-21 .small-logo {
  height: 30px;
  display: flex;
  border-radius: 50%;
}
.a-t-21 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-21 .tab-bar-wrap {
  height: 80px;
  align-items: center;
}
.a-t-21 .tab-bar-wrap .tab-bar {
  position: relative;
  background: var(--bg-card);
  width: 95% !important;
  height: 55px !important;
  max-width: 700px;
  border-radius: 10px !important;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--btn-text);
}
.a-t-21 .tab-bar-wrap .tab-bar:before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--card-radius);
  background: var(--bg-weight);
  border: 1px solid var(--btn-text);
  z-index: -1;
}
.a-t-21 .sticky-bg {
  z-index: 2;
  border-radius: var(--card-radius);
}
.a-t-21.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-21.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--text-white);
  padding: 4px;
  box-shadow: var(--box-shadow);
}
.a-t-21.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #f4f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-21 .company-detail-wrap .container-card,
.a-t-21 .notice-wrap .container-card {
  margin-right: 0;
}
.a-t-21 .change-pwd-wrap .container-form,
.a-t-21 .change-safe-pwd .container-form,
.a-t-21 .transfer-wrap .container-form {
  border: 1px solid var(--border-color);
  box-shadow: var(--box-shadow);
}
.a-t-21 .vip-uplog-wrap .container-card {
  box-shadow: var(--box-shadow);
  margin-right: 0;
}
.a-t-21 .team-detail-wrap .team-detail-item {
  margin-right: 0;
}
.a-t-21 .van-popup--center.van-popup--round {
  border-radius: var(--card-radius);
}
.a-t-21 .colorful:before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  border-radius: var(--card-radius);
  background: var(--bg-weight);
  border: 1px solid var(--btn-text);
  z-index: -1;
}
.a-t-21.task-product-wrap .container-card {
  margin-right: 0;
}
.a-t-21 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-21 .recharge-account.active {
  opacity: 1;
  background: var(--bg-weight);
  color: var(--primary);
}
.a-t-21 .celue {
  background: #0000000d !important;
}
.a-t-22 {
  --radius: 10px;
  --btn-radius: 38px;
  --card-radius: 10px;
  --padding: 30px;
  --mg: 18px;
  --bg-card: hsl(253, 14%, 75%, 5%);
  --bg-weight: #01285f;
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --btn-text2: #f9b44b;
  --border-color: #242424;
  --text-gray: rgba(255, 255, 255, 0.8);
  --text-gray6: #3a3a3c;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-22 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-22 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-22 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 40px;
}
.a-t-22 .base-input.is-textarea .input-box {
  min-height: 52px;
  height: auto;
  padding: 0 !important;
}
.a-t-22 .base-input .label {
  margin-bottom: 12px;
}
.a-t-22 .base-input .input-box {
  box-sizing: border-box;
  min-height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--text-gray);
}
.a-t-22 .base-input .input-box input,
.a-t-22 .base-input .input-box textarea {
  background: none !important;
}
.a-t-22 .base-input .input-box .is-textarea {
  padding: 0 !important;
}
.a-t-22 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-22 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-22 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 44px;
  border-radius: 6px;
  background: var(--primary);
  border: 1px solid transparent !important;
  outline: none;
  color: #000 !important;
}
.a-t-22 .base-main-btn-content {
  border-radius: 6px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: 1px solid transparent !important;
  outline: none;
  color: #000 !important;
  text-align: center;
}
.a-t-22 .base-user-tab {
  position: relative;
  border-radius: var(--radius);
  background: none;
  padding: 7px;
}
.a-t-22 .base-user-tab .tab-item {
  width: 100%;
  z-index: 0;
  transition: all 0.3s;
  font-size: 16px;
}
.a-t-22 .base-user-tab .tab-item.active {
  font-size: 18px;
  color: var(--primary);
  background: none;
  position: relative;
}
.a-t-22.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-22.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-22.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-22 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-22 .container-login .top-info {
  position: relative;
}
.a-t-22 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-22 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-22 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-22 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: var(--mg);
  margin-bottom: 46px;
}
.a-t-22 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-22 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-22 .container-form {
  background: none;
  padding: 10px 16px;
}
.a-t-22 .container-card {
  background: var(--bg-card);
  padding: 10px 16px;
}
.a-t-22 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-22 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-22 .small-logo .site-name {
  font-size: 14px;
}
.a-t-22 .navigation-content {
  border-bottom: none !important;
}
.a-t-22 .navigation-content .i-material-symbols-arrow-back-ios-new-rounded {
  color: #fff;
  cursor: pointer;
}
.a-t-22 .nav-bar-wrap {
  padding: 0 !important;
}
.a-t-22 .nav-bar-wrap:before {
  background: var(--bg);
  opacity: 1;
}
.a-t-22 .tab-bar-wrap {
  height: 74px !important;
}
.a-t-22 .tab-bar-wrap .tab-item-icon {
  height: 27px !important;
  font-size: 27px !important;
}
.a-t-22 .tab-bar-wrap .tab-bar {
  box-shadow: #11111a1a 0 0 16px;
}
.a-t-22 .change-pwd-wrap {
  margin-top: 20px;
}
.a-t-22 .van-empty__description {
  color: var(--text-gray);
}
.a-t-22 .celue {
  background: #ffffff14;
}
.a-t-22 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-22 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
}
.a-t-23 {
  --radius: 14px;
  --btn-radius: 38px;
  --card-radius: 14px;
  --padding: 30px;
  --mg: 18.5px;
  --bg-card: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.12) 100%
  );
  --bg-weight: hsla(0, 0%, 100%, 0.08);
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --btn-text2: #f9b44b;
  --border-color: rgba(255, 255, 255, 0.2);
  --text-gray: #a5b1b9;
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-23 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-23 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-23 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 24px;
}
.a-t-23 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-23 .base-input .label {
  margin-bottom: 12px;
}
.a-t-23 .base-input .input-box {
  padding: 0 16px;
  box-sizing: border-box;
  min-height: 52px;
  border-radius: 18px;
  background: var(--bg-input);
  position: relative;
  display: flex;
  align-items: center;
}
.a-t-23 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-23 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-23 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 54px;
  border-radius: 31px;
}
.a-t-23 .base-main-btn-content {
  border-radius: 31px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-bg);
  color: #fff;
  text-align: center;
}
.a-t-23 .base-user-tab {
  position: relative;
  border-radius: 16px;
  min-height: 54px;
  padding: 7px;
  border: 1px solid var(--border-color);
}
.a-t-23 .base-user-tab .tab-item {
  color: #ffffff80;
}
.a-t-23 .base-user-tab .tab-item div {
  width: 100%;
  padding: 0 4px;
}
.a-t-23 .base-user-tab .tab-item.active {
  color: #fff;
  border-radius: 12px;
  background: var(--primary);
}
.a-t-23.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-23.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-23.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-23 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.a-t-23 .container-login .base-user-tab {
  background: none;
  border: none;
}
.a-t-23 .container-login .base-user-tab .tab-item.active {
  font-weight: 700 !important;
  background: none !important;
  color: var(--primary) !important;
}
.a-t-23 .container-login .top-info {
  position: relative;
  height: 300px;
  background: url(./login-bg-CgSUmFoM.png);
  background-size: auto 300px;
  background-repeat: no-repeat;
  background-position: 50%;
}
.a-t-23 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-23 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-23 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-23 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: -100px;
  margin-bottom: 46px;
}
.a-t-23 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-23 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-23 .container-login .login-tools {
  margin-top: 20px;
}
.a-t-23 .container-form {
  position: relative;
  z-index: 3;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin: var(--mg) auto 0;
  padding: var(--padding);
  background: #f3f3f31a !important;
}
.a-t-23 .container-card {
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.a-t-23 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-23 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-23 .small-logo .site-name {
  font-size: 14px;
}
.a-t-23 .navigation-content {
  background: var(--bg-tab) !important;
}
.a-t-23 .nav-bar-wrap {
  padding: 12px 0;
}
.a-t-23 .nav-bar-wrap:before {
  background: var(--bg-tabbar);
}
.a-t-23 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-23 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
#app.a-t-23 {
  position: relative;
  background: url(./bg-CXVUQEx-.png) no-repeat #050831;
  background-size: 100% 100%;
  background-attachment: fixed;
}
.a-t-24 {
  --radius: 10px;
  --btn-radius: 50%;
  --card-radius: 10px;
  --padding: 30px;
  --mg: 16px;
  --bg-card: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.12) 100%
  );
  --bg-weight: rgba(255, 255, 255, 0.08);
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --btn-text2: #f9b44b;
  --border-color: rgba(255, 255, 255, 0.16);
  --border-color2: rgba(255, 255, 255, 0.1);
  --text-gray: rgba(255, 255, 255, 0.5);
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-24 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-24 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-24 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-24 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 15px;
}
.a-t-24 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-24 .base-input .label {
  margin-bottom: 12px;
}
.a-t-24 .base-input .input-box {
  padding: 0 16px;
  box-sizing: border-box;
  min-height: 52px;
  border-radius: 12px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  align-items: center;
}
.a-t-24 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-24 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-24 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  height: 54px;
  border-radius: var(--radius);
  font-weight: 600;
  color: #fff;
}
.a-t-24 .base-main-btn-content {
  border-radius: var(--radius);
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  text-align: center;
}
.a-t-24 .base-main-btn.disable {
  color: #fff !important;
}
.a-t-24 .base-user-tab {
  position: relative;
  background: #fff3;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  font-size: 12px;
}
.a-t-24 .base-user-tab .tab-item {
  width: 100%;
  padding: 12px 0;
  color: var(--btn-text);
}
.a-t-24 .base-user-tab .tab-item.active {
  color: #000;
  font-size: 14px;
  border-radius: var(--radius);
  background: var(--primary);
}
.a-t-24 .base-small-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 1;
  background: #ffffff21;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.a-t-24 .base-section-title {
  font-size: 24px;
  font-weight: 600;
  padding-left: 10px;
  position: relative;
}
.a-t-24 .base-section-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 17px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAiBAMAAACO37VbAAAAGFBMVEUAAAAA/5QA/5QA/5QA/5cA/5MA/48A/5SpkpC9AAAAB3RSTlMA779wIFAQ1J93hgAAADhJREFUCNelxjENACAMAMFPCA4IFrpioQ6wgAWW2uc9MFxyQNdRQCtIRdkiFapvV0MLi8VimdrwAPSSIlaPg7kjAAAAAElFTkSuQmCC);
  background-size: 100% 100%;
}
.a-t-24.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-24.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-24.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-24 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-24 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  margin-bottom: 46px;
}
.a-t-24 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-24 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-24 .container-form {
  border: 1px solid var(--border-color);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin-top: 14px !important;
  padding: var(--padding);
  background: #ffffff17 !important;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
}
.a-t-24 .container-card {
  background: #ffffff14;
  box-sizing: border-box;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 12px var(--mg);
}
.a-t-24 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-24 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-24 .small-logo .site-name {
  font-size: 14px;
}
.a-t-24 .nav-bar-wrap:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%);
  width: 100%;
  max-width: 720px;
  height: 100%;
  background: #ffffff14;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.a-t-24 .navigation-content {
  background: var(--bg-weight) !important;
  border-bottom: 1px solid var(--border-color);
}
.a-t-24 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-24 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
.a-t-24 .tab-bar-wrap2 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  background: #ffffff14;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.a-t-24 .tab-bar-wrap2 .tab-item-inner {
  padding: 10px 0;
  width: 100%;
}
.a-t-24 .celue {
  border: 1px solid var(--border-color);
  background: transparent;
}
.a-t-24 .base-quantify-record {
  border: none !important;
}
#app.a-t-24 .van-config-provider {
  position: relative;
  z-index: 2;
}
#app.a-t-24 .tab-item-inner.active .tab-item-label {
  color: var(--primary) !important;
}
.a-t-25 {
  --radius: 5px;
  --btn-radius: 38px;
  --card-radius: 5px;
  --padding: 30px;
  --mg: 18px;
  --bg-card: #1f242b;
  --bg-weight: #01285f;
  --btn-bg3: #44454b;
  --btn-text: #cacbd2;
  --btn-text2: #f9b44b;
  --border-color: #242424;
  --text-gray: #727d91;
  --text-gray6: #3a3a3c;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-25 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-25 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-25 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 40px;
}
.a-t-25 .base-input.is-textarea .input-box {
  min-height: 52px;
  height: auto;
  padding: 0 !important;
}
.a-t-25 .base-input .label {
  margin-bottom: 12px;
}
.a-t-25 .base-input .input-box {
  box-sizing: border-box;
  min-height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--text-gray);
}
.a-t-25 .base-input .input-box input,
.a-t-25 .base-input .input-box textarea {
  background: none !important;
}
.a-t-25 .base-input .input-box .is-textarea {
  padding: 0 !important;
}
.a-t-25 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-25 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-25 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 48px;
  border-radius: 48px;
  background: var(--primary);
  border: none;
  outline: none;
  color: #282828;
}
.a-t-25 .base-main-btn-content {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: none;
  outline: none;
  color: #282828;
  text-align: center;
}
.a-t-25 .base-user-tab {
  position: relative;
  border-radius: var(--radius);
  background: none;
  padding: 7px;
}
.a-t-25 .base-user-tab .tab-item {
  width: 100%;
  z-index: 0;
  transition: all 0.3s;
  font-size: 14px;
}
.a-t-25 .base-user-tab .tab-item.active {
  font-size: 16px;
  color: var(--primary);
  background: none;
  position: relative;
}
.a-t-25.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-25.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-25.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-25 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-25 .container-login .top-info {
  position: relative;
}
.a-t-25 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-25 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-25 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-25 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: var(--mg);
  margin-bottom: 46px;
}
.a-t-25 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-25 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-25 .container-form {
  background: none;
  padding: 10px 16px;
}
.a-t-25 .container-card {
  background: var(--bg-card);
  padding: 10px 16px;
}
.a-t-25 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-25 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-25 .small-logo .site-name {
  font-size: 14px;
}
.a-t-25 .navigation-content {
  color: var(--primary) !important;
  border-bottom: none !important;
}
.a-t-25 .navigation-content .i-material-symbols-arrow-back-ios-new-rounded {
  color: var(--primary);
  cursor: pointer;
}
.a-t-25 .nav-bar-wrap {
  padding: 0 !important;
}
.a-t-25 .nav-bar-wrap:before {
  background: var(--bg-tab);
  opacity: 1;
}
.a-t-25 .tab-bar-wrap {
  height: 74px !important;
}
.a-t-25 .tab-bar-wrap .tab-item-icon {
  height: 27px !important;
  font-size: 27px !important;
}
.a-t-25 .tab-bar-wrap .tab-bar {
  box-shadow: #11111a1a 0 0 16px;
}
.a-t-25 .change-pwd-wrap {
  margin-top: 20px;
}
.a-t-25 .celue {
  background: #ffffff14;
}
.a-t-25 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-25 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
}
.a-t-26 {
  --radius: 30px;
  --btn-radius: 38px;
  --card-radius: 22px;
  --padding: 30px;
  --mg: 18.5px;
  --bg-card: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.12) 100%
  );
  --bg-weight: rgba(255, 255, 255, 0.12);
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --btn-text2: #f9b44b;
  --border-color: rgba(255, 255, 255, 0.2);
  --text-gray: #a5b1b9;
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-26 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-26 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-26 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 24px;
}
.a-t-26 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-26 .base-input .label {
  margin-bottom: 12px;
}
.a-t-26 .base-input .input-box {
  padding: 0 16px;
  box-sizing: border-box;
  min-height: 52px;
  border-radius: 18px;
  background: var(--bg-input);
  position: relative;
  display: flex;
  align-items: center;
}
.a-t-26 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-26 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-26 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 54px;
  border-radius: 31px;
}
.a-t-26 .base-main-btn-content {
  border-radius: 31px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #000;
  text-align: center;
}
.a-t-26 .base-user-tab {
  position: relative;
  border-radius: 16px;
  min-height: 54px;
  padding: 7px;
  border: 1px solid var(--border-color);
}
.a-t-26 .base-user-tab .tab-item {
  color: #ffffff80;
}
.a-t-26 .base-user-tab .tab-item div {
  width: 100%;
  padding: 0 4px;
}
.a-t-26 .base-user-tab .tab-item.active {
  color: #000;
  border-radius: 12px;
  background: var(--primary);
}
.a-t-26.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-26.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-26.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-26 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.a-t-26 .container-login:before {
  position: absolute;
  width: 255px;
  height: 272px;
  background: #208e72;
  border-radius: 50%;
  filter: blur(30px);
  z-index: 0;
  content: "";
  top: -20px;
  left: -50px;
}
.a-t-26 .container-login:after {
  position: absolute;
  width: 158px;
  height: 169px;
  border-radius: 50%;
  background: #6e6300;
  opacity: 0.2;
  filter: blur(30px);
  z-index: 0;
  content: "";
  top: -60px;
  right: -60px;
}
.a-t-26 .container-login .base-user-tab {
  background: none;
  border: none;
}
.a-t-26 .container-login .base-user-tab .tab-item.active {
  font-weight: 700 !important;
  background: none !important;
  color: var(--primary) !important;
}
.a-t-26 .container-login .top-info {
  position: relative;
  height: 300px;
  background: url(./login-bg-CgSUmFoM.png);
  background-size: auto 300px;
  background-repeat: no-repeat;
  background-position: 50%;
}
.a-t-26 .container-login .top-info:before {
  position: absolute;
  width: 255px;
  height: 272px;
  background: #208e72;
  border-radius: 50%;
  filter: blur(30px);
  z-index: 0;
  content: "";
  top: -180px;
  right: -160px;
}
.a-t-26 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-26 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-26 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-26 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: -100px;
  margin-bottom: 46px;
}
.a-t-26 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-26 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-26 .container-login .login-tools {
  margin-top: 20px;
}
.a-t-26 .container-form {
  position: relative;
  z-index: 3;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin: var(--mg) auto 0;
  padding: var(--padding);
  background: #f3f3f31a !important;
}
.a-t-26 .container-card {
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.a-t-26 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-26 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-26 .small-logo .site-name {
  font-size: 14px;
}
.a-t-26 .navigation-content {
  background: var(--bg) !important;
  border-bottom: 1px solid var(--border-color);
}
.a-t-26 .nav-bar-wrap {
  padding: 12px 0;
}
.a-t-26 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-26 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #000;
}
.a-t-27 {
  --radius: 4px;
  --btn-radius: 8px;
  --card-radius: 10px;
  --padding: 30px;
  --mg: 16px;
  --bg-card: #29313d;
  --bg-weight: #2b3139;
  --btn-bg3: rgba(240, 185, 11, 0.1);
  --btn-text: #fff;
  --btn-text2: rgb(240, 185, 11);
  --btn-text3: #202630;
  --border-color: rgb(43, 49, 57);
  --border-color2: #848e9c;
  --text-gray: #848e9c;
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-27 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-27 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-27 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-27 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 15px;
}
.a-t-27 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-27 .base-input .label {
  margin-bottom: 12px;
}
.a-t-27 .base-input .input-box {
  padding: 0 16px;
  box-sizing: border-box;
  min-height: 40px;
  border-radius: 8px;
  background: var(--bg-input);
  position: relative;
  display: flex;
  align-items: center;
}
.a-t-27 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-27 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-27 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  height: 40px;
  border-radius: var(--btn-radius);
  font-weight: 600;
  color: var(--btn-text3);
}
.a-t-27 .base-main-btn-content {
  border-radius: var(--btn-radius);
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  text-align: center;
}
.a-t-27 .base-main-btn.disable {
  color: #fff !important;
}
.a-t-27 .base-user-tab {
  position: relative;
  font-size: 16px;
  background: none;
}
.a-t-27 .base-user-tab .tab-item {
  width: 100%;
  color: var(--text-gray);
  padding: 4px;
}
.a-t-27 .base-user-tab .tab-item.active {
  color: var(--btn-text);
  background: none;
  position: relative;
}
.a-t-27 .base-user-tab .tab-item.active:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  width: 30%;
  height: 2px;
  background: var(--primary);
}
.a-t-27 .base-small-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 1;
  background: #ffffff21;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.a-t-27 .base-section-title {
  font-size: 24px;
  font-weight: 600;
  padding-left: 10px;
  position: relative;
}
.a-t-27 .base-section-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 17px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAiBAMAAACO37VbAAAAGFBMVEUAAAAA/5QA/5QA/5QA/5cA/5MA/48A/5SpkpC9AAAAB3RSTlMA779wIFAQ1J93hgAAADhJREFUCNelxjENACAMAMFPCA4IFrpioQ6wgAWW2uc9MFxyQNdRQCtIRdkiFapvV0MLi8VimdrwAPSSIlaPg7kjAAAAAElFTkSuQmCC);
  background-size: 100% 100%;
}
.a-t-27.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-27.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-27.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-27 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-27 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  margin-bottom: 46px;
}
.a-t-27 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-27 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-27 .container-form {
  background: transparent;
  margin-top: 14px !important;
  padding: 14px;
}
.a-t-27 .container-card {
  background: var(--bg-weight);
  border-radius: var(--card-radius);
  box-sizing: border-box;
  padding: 12px 8px;
}
.a-t-27 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-27 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-27 .small-logo .site-name {
  font-size: 14px;
}
.a-t-27 .navigation-content {
  border-bottom: 1px solid var(--border-color);
}
.a-t-27 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-27 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: var(--btn-text3);
}
.a-t-27 .tab-bar-wrap2 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  background: var(--bg-tabbar);
}
.a-t-27 .tab-bar-wrap2 .tab-item-inner {
  padding: 10px 0;
  width: 100%;
}
.a-t-27 .celue {
  border: 1px solid var(--border-color);
  background: transparent;
}
.a-t-27 .base-quantify-record {
  border: none !important;
}
#app.a-t-27 .van-config-provider {
  position: relative;
  z-index: 2;
}
.a-t-28 {
  --radius: 30px;
  --btn-radius: 38px;
  --card-radius: 22px;
  --padding: 30px;
  --mg: 18.5px;
  --bg-card: rgba(255, 255, 255, 0.8);
  --bg-weight: rgba(255, 255, 255, 0.12);
  --btn-bg3: #44454b;
  --btn-text: #000000;
  --btn-text2: #f9b44b;
  --border-color: #a5b1b9;
  --text-gray: #a5b1b9;
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
  --box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.a-t-28 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-28 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-28 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 24px;
}
.a-t-28 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-28 .base-input .label {
  margin-bottom: 12px;
}
.a-t-28 .base-input .input-box {
  padding: 0 16px;
  box-sizing: border-box;
  min-height: 52px;
  border-radius: 18px;
  background: var(--bg-input);
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px #0000001a;
}
.a-t-28 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-28 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-28 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 54px;
  border-radius: 31px;
}
.a-t-28 .base-main-btn-content {
  border-radius: 31px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  text-align: center;
}
.a-t-28 .base-user-tab {
  position: relative;
  border-radius: 16px;
  padding: 7px;
  border: 1px solid var(--border-color);
}
.a-t-28 .base-user-tab .tab-item {
  min-height: 40px;
  color: var(--text-gray);
}
.a-t-28 .base-user-tab .tab-item div {
  width: 100%;
  padding: 0 4px;
}
.a-t-28 .base-user-tab .tab-item.active {
  color: #fff;
  border-radius: 12px;
  background: var(--primary);
}
.a-t-28.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-28.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-28.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-28 .container-login {
  min-height: calc(100 * var(--vh));
  padding: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: url(./login-bg-BW90mx3F.png) center center;
  background-repeat: no-repeat;
}
.a-t-28 .container-login:before {
  position: absolute;
  width: 255px;
  height: 272px;
  background: #e1fff7;
  border-radius: 50%;
  filter: blur(30px);
  z-index: 0;
  content: "";
  top: -20px;
  left: -50px;
  pointer-events: none;
}
.a-t-28 .container-login:after {
  position: absolute;
  width: 158px;
  height: 169px;
  border-radius: 50%;
  background: #d6e1ff;
  opacity: 0.2;
  filter: blur(30px);
  z-index: 0;
  content: "";
  top: -60px;
  right: -60px;
}
.a-t-28 .container-login .base-user-tab {
  background: none;
  border: none;
}
.a-t-28 .container-login .top-info {
  position: relative;
  height: 300px;
  background-size: auto 300px;
  background-repeat: no-repeat;
  background-position: 50%;
}
.a-t-28 .container-login .top-info:before {
  position: absolute;
  width: 255px;
  height: 272px;
  background: #e1fff7;
  border-radius: 50%;
  filter: blur(30px);
  z-index: 0;
  content: "";
  top: -180px;
  right: -160px;
}
.a-t-28 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-28 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-28 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-28 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: -100px;
  margin-bottom: 46px;
}
.a-t-28 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-28 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-28 .container-login .login-tools {
  margin-top: 20px;
}
.a-t-28 .container-form {
  position: relative;
  z-index: 3;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin: var(--mg) auto 0;
  padding: var(--padding);
  background: #fffc;
}
.a-t-28 .container-card {
  background: #fffc;
  box-shadow: 0 2px 4px #0000001a;
}
.a-t-28 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-28 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-28 .small-logo .site-name {
  font-size: 14px;
}
.a-t-28 .navigation-content {
  background: var(--bg) !important;
  box-shadow: var(--box-shadow);
}
.a-t-28 .nav-bar-wrap {
  padding: 12px 0;
}
.a-t-28 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  border: 1px solid var(--text-gray);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-28 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  border: none;
  color: #fff;
}
.a-t-28 .celue {
  background: #fff;
  box-shadow: var(--box-shadow);
}
.customer-calendar-28 {
  --van-calendar-range-edge-background: var(--primary);
  --van-button-primary-background: var(--primary);
  --van-button-primary-border-color: var(--primary);
}
.customer-calendar-28 .van-calendar {
  max-width: 720px;
  margin: 0 auto;
}
.customer-calendar-28
  .van-calendar
  .van-calendar__day:not(
    .van-calendar__day--disabled,
    .van-calendar__day--selected,
    .van-calendar__day--start,
    .van-calendar__day--end,
    .van-calendar__day--start-end
  ) {
  color: var(--btn-text) !important;
}
.a-t-29 {
  --radius: 5px;
  --btn-radius: 38px;
  --card-radius: 5px;
  --padding: 30px;
  --mg: 18px;
  --bg-card: var(--bg);
  --bg-weight: #01285f;
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --btn-text2: #604825;
  --btn-text3: #542b10;
  --border-color: #bd8b42;
  --text-gray: #727d91;
  --text-gray6: #3a3a3c;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-29 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-29 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-29 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 40px;
}
.a-t-29 .base-input.is-textarea .input-box {
  min-height: 52px;
  height: auto;
  padding: 0 !important;
}
.a-t-29 .base-input .label {
  margin-bottom: 12px;
}
.a-t-29 .base-input .input-box {
  box-sizing: border-box;
  min-height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--primary);
}
.a-t-29 .base-input .input-box input,
.a-t-29 .base-input .input-box textarea {
  background: none !important;
}
.a-t-29 .base-input .input-box .is-textarea {
  padding: 0 !important;
}
.a-t-29 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-29 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-29 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 48px;
  border-radius: 8px;
  background: var(--primary);
  border: none;
  outline: none;
  color: #282828;
}
.a-t-29 .base-main-btn.plain {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.a-t-29 .base-main-btn-content {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--btn-text);
  text-align: center;
}
.a-t-29 .base-user-tab {
  position: relative;
  background: none;
}
.a-t-29 .base-user-tab .tab-item {
  width: 100%;
  z-index: 0;
  transition: all 0.3s;
  font-size: 14px;
  background: #dac09b;
  color: var(--btn-text2);
  padding: 4px 10px;
  text-align: center;
  border-radius: 4px;
}
.a-t-29 .base-user-tab .tab-item.active {
  font-size: 14px;
  color: var(--btn-text);
  background: #bd8b42;
  position: relative;
}
.a-t-29.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-29.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-29.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-29 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-29 .container-login .top-info {
  position: relative;
}
.a-t-29 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-29 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-29 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-29 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: var(--mg);
  margin-bottom: 46px;
}
.a-t-29 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-29 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-29 .container-form {
  background: none;
  padding: 10px 16px;
}
.a-t-29 .container-card {
  background: var(--bg-card);
  border: 4px solid var(--border-color);
  padding: 10px 16px;
  position: relative;
}
.a-t-29 .container-card.show-header {
  padding-top: 54px !important;
}
.a-t-29 .container-card.show-header:before {
  content: "";
  position: absolute;
  top: -20px;
  left: -12px;
  right: -12px;
  height: 60px;
  background: url(./card-header-Bjdcn4Vi.png) no-repeat !important;
  background-size: 100% 100% !important;
}
.a-t-29 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-29 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-29 .small-logo .site-name {
  font-size: 14px;
}
.a-t-29 .navigation-content {
  color: var(--btn-text) !important;
  border-bottom: none !important;
}
.a-t-29 .navigation-content .i-material-symbols-arrow-back-ios-new-rounded {
  color: var(--btn-text);
  cursor: pointer;
}
.a-t-29 .nav-bar-wrap {
  padding: 0 !important;
  overflow: hidden;
}
.a-t-29 .nav-bar-wrap:before {
  width: 100%;
  background: url(./bg_header-CSC0DTVF.png) no-repeat 0 0 / contain #32211b;
  background-attachment: fixed;
  height: auto;
  min-height: 698px;
  opacity: 1;
}
.a-t-29 .tab-bar-wrap {
  height: 74px !important;
}
.a-t-29 .tab-bar-wrap .tab-item-icon {
  height: 27px !important;
  font-size: 27px !important;
}
.a-t-29 .tab-bar-wrap .tab-bar {
  box-shadow: #11111a1a 0 0 16px;
}
.a-t-29 .change-pwd-wrap {
  margin-top: 20px;
}
.a-t-29 .celue {
  background: #ffffff14;
}
.a-t-29 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--btn-text2);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-29 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: var(--btn-text);
}
#app.a-t-29 {
  position: relative;
  background: url(./bg_header-CSC0DTVF.png) no-repeat 0 0 / contain #32211b;
  background-attachment: fixed;
}
@media screen and (min-width: 720px) {
  #app.a-t-29 {
    background: url(./bg_header-CSC0DTVF.png) no-repeat 0 0 / cover #32211b;
  }
}
.a-t-30 {
  --radius: 20px;
  --btn-radius: 10px;
  --card-radius: 10px;
  --padding: 20px;
  --mg: 16px;
  --card-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
  --bg-card: rgba(167, 167, 167, 0.1);
  --bg-weight: rgba(255, 255, 255, 0.19);
  --bg-card2: #232020;
  --btn-text: #fff;
  --btn-bg3: #000;
  --btn-text2: #fff;
  --btn-text3: #212121;
  --btn-text4: #001d77;
  --border-color: rgba(255, 255, 255, 0.05);
  --text-gray: #999;
  --text-gray6: #666666;
  --golden-gradient: var(--btn-bg);
}
.a-t-30 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-30 .font-playgram {
  font-family: Playgram, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-30.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-30.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--text-white);
  padding: 4px;
  box-shadow: var(--box-shadow);
}
.a-t-30.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #f4f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-30.base-draw-box .base-sign-btn,
.a-t-30.base-draw-box .base-draw-box-btn,
.a-t-30.base-sign .base-sign-btn,
.a-t-30.base-sign .base-draw-box-btn {
  background: var(--text-white);
  box-shadow: var(--box-shadow);
  padding: 4px;
  width: 40px;
  height: 40px;
}
.a-t-30.base-draw-box .base-sign-btn:before,
.a-t-30.base-draw-box .base-draw-box-btn:before,
.a-t-30.base-sign .base-sign-btn:before,
.a-t-30.base-sign .base-draw-box-btn:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
}
.a-t-30.base-draw-box .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-30.base-draw-box .base-sign-btn .i-tabler-gift,
.a-t-30.base-draw-box .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-30.base-draw-box .base-draw-box-btn .i-tabler-gift,
.a-t-30.base-sign .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-30.base-sign .base-sign-btn .i-tabler-gift,
.a-t-30.base-sign .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-30.base-sign .base-draw-box-btn .i-tabler-gift {
  color: var(--text-white) !important;
  font-size: 24px;
}
.a-t-30.sign-wrap {
  box-shadow: none !important;
  background-image: linear-gradient(
    180deg,
    var(--primary) 25.91%,
    rgba(1, 103, 255, 0) 80%,
    #fff
  ) !important;
}
.a-t-30.sign-wrap .tips {
  color: #eee;
}
.a-t-30.sign-wrap .tips2 {
  color: #aaa;
}
.a-t-30 .base-logo {
  width: 90px;
  height: 90px;
}
.a-t-30 .base-logo .site-img {
  border-radius: 20px;
}
.a-t-30 .base-lang-wrap {
  border-radius: var(--radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
  color: var(--btn-text2);
  margin-right: -12px;
  padding: 0 8px;
  height: 32px;
  line-height: 14px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.a-t-30 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 24px;
}
.a-t-30 .base-input .label {
  margin-bottom: 12px;
}
.a-t-30 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-30 .base-input .input-box {
  padding: 0 16px;
  box-sizing: border-box;
  height: 52px;
  background: var(--bg-input);
  position: relative;
  display: flex;
  align-items: center;
  border-radius: var(--radius);
}
.a-t-30 .base-input .input-box input::state(webkit-input-placeholder),
.a-t-30 .base-input .input-box textarea::state(webkit-input-placeholder) {
  color: #fff6;
}
.a-t-30 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-30 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-30 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  height: 46px;
  background: transparent;
}
.a-t-30 .base-main-btn-content {
  border-radius: var(--btn-radius);
  color: var(--base-btn-text);
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-bg);
  text-align: center;
}
.a-t-30 .base-user-tab {
  position: relative;
  width: 100%;
  background: transparent;
  min-height: 52px;
}
.a-t-30 .base-user-tab .tab-item {
  color: var(--btn-text);
  font-size: 16px;
}
.a-t-30 .base-user-tab .tab-item div {
  line-height: 14px;
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 2px;
}
.a-t-30 .base-user-tab .tab-item.active {
  background: transparent;
}
.a-t-30 .base-user-tab .tab-item.active div {
  background-image: var(--base-user-tab-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.a-t-30 .base-user-tab .tab-item.active div:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--base-user-tab-color);
}
.a-t-30 .base-section-title {
  font-size: 16px;
  font-weight: 700;
  background-image: var(--base-user-tab-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
}
.a-t-30 .base-section-title .more {
  display: flex;
  font-size: 14px;
  align-items: center;
  font-weight: 400;
  color: var(--text-gray);
}
.a-t-30 .container-login {
  position: relative;
  padding: 18px var(--mg) 20px;
  min-height: calc(var(--vh, 1vh) * 100);
}
.a-t-30 .container-login.c-1 {
  background: url(./t-1-login-bg-Bz-1y7yO.png) no-repeat;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.a-t-30 .container-login.c-1 .login-content {
  background: linear-gradient(180deg, #5f5241cc, #070404cc 99%);
}
.a-t-30 .container-login.c-2 {
  background: url(./t-2-login-bg-DI5L6M6y.png) no-repeat;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.a-t-30 .container-login.c-2 .login-content {
  background: linear-gradient(180deg, #2c322acc, #070404cc 99%);
}
.a-t-30 .container-login.c-3 {
  background: url(./t-3-login-bg-Dnqhz8na.png) no-repeat;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.a-t-30 .container-login.c-3 .login-content {
  background: linear-gradient(180deg, #3d215ccc, #070404cc 99%);
}
.a-t-30 .container-login.c-4 {
  background: url(./t-4-login-bg-DtdwUHRm.png) no-repeat;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.a-t-30 .container-login.c-4 .login-content {
  background: linear-gradient(180deg, #1f406acc, #070404cc 99%);
}
.a-t-30 .container-login.c-5 {
  background: url(./t-5-login-bg-D_X0tbzG.png) no-repeat;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.a-t-30 .container-login.c-5 .login-content {
  background: linear-gradient(180deg, #2b2b2bcc, #070404cc 99%);
}
.a-t-30 .container-login .container-form {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 30px 0;
}
.a-t-30 .container-login .base-logo .site-name {
  color: var(--btn-text2);
}
.a-t-30 .container-login .top-info {
  position: relative;
  z-index: 2;
  height: 183px;
}
.a-t-30 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-30 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-right: 16px;
  border: 1px solid #fff;
}
.a-t-30 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-30 .container-login .top-info .top-tools .base-lang-wrap {
  padding: 0 8px;
  margin-right: -16px;
  border-radius: var(--radius) 0 0 var(--radius);
}
.a-t-30 .container-login .top-info .base-user-tab {
  position: absolute;
  bottom: 12px;
  left: 0;
}
.a-t-30 .container-login .top-info .base-logo {
  width: 90px;
  margin-top: 5px;
}
.a-t-30 .container-login .auto-login {
  color: #010b2a80;
  font-size: 12px;
}
.a-t-30 .container-login .login-content {
  position: relative;
  z-index: 1;
  padding: 24px 30px;
  border-radius: 20px;
  min-height: calc(var(--vh, 1vh) * 100 - 181px - 20px - 20px);
}
.a-t-30 .container-login .login-content .login-tools {
  margin: 0 auto;
}
.a-t-30 .container-form {
  border: 1px solid var(--border-color);
  margin: var(--mg) auto 0;
  padding: var(--padding);
  box-shadow: var(--card-shadow);
}
.a-t-30 .container-card {
  background: var(--bg-card);
  box-shadow: none;
  border: none;
  padding: 10px var(--mg);
  z-index: 0;
}
.a-t-30 .container-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 200px;
  z-index: 0;
  pointer-events: none;
}
.a-t-30 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-30 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-30 .small-logo .site-name {
  font-size: 14px;
}
.a-t-30 .tab-bar-wrap .tab-bar {
  background: var(--bg-tab);
}
.a-t-30 .tab-bar-wrap .tab-bar .tab-item {
  padding: 8px 0;
}
.a-t-30 .sticky-bg {
  z-index: 2;
  background: var(--bg-card);
  border-radius: 30px;
  height: 42px;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
}
.a-t-30 .sticky-bg.base-user-tab {
  height: 42px;
}
.a-t-30 .sticky-bg.base-user-tab .tab-item {
  display: flex;
  align-items: center;
}
.a-t-30 .sticky-bg.base-user-tab .tab-item.active {
  background: var(--primary);
  border-radius: 30px;
  color: var(--btn-text2) !important;
}
.a-t-30 .sticky-bg.base-user-tab .tab-item:after {
  content: "";
  height: 0;
}
.a-t-30 .navigation-content {
  color: var(--btn-text2) !important;
}
.a-t-30 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  color: var(--text-gray);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-30 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #000;
}
.a-t-30 .celue {
  background: #0000000d !important;
}
.a-t-30 .lang-cell {
  border-style: solid !important;
  border-color: var(--border-color) !important;
}
.a-t-30.no-1 .container-card:after {
  background: url(./t-1-border-2-WCrzcCXC.png) no-repeat;
  background-size: 100% auto;
}
.a-t-30.no-2 .container-card:after {
  background: url(./t-2-border-2-Cw3DAO6e.png) no-repeat;
  background-size: 100% auto;
}
.a-t-30.no-3 .container-card:after {
  background: url(./t-3-border-2-vk47F4Oa.png) no-repeat;
  background-size: 100% auto;
}
.a-t-30.no-4 .container-card:after {
  background: url(./t-4-border-2-Cn50wudP.png) no-repeat;
  background-size: 100% auto;
}
.a-t-30.no-5 .container-card:after {
  background: url(./t-3-border-2-vk47F4Oa.png) no-repeat;
  background-size: 100% auto;
}
#app.a-t-30 {
  position: relative;
  background: var(--bg);
  background-attachment: fixed;
}
.a-t-31 {
  --radius: 5px;
  --btn-radius: 38px;
  --card-radius: 5px;
  --padding: 30px;
  --mg: 18px;
  --bg-card: #1b1c32;
  --bg-weight: #2c2c53;
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --btn-text2: #a9abfc;
  --border-color: rgb(66, 91, 141);
  --text-gray: #aeb5c3;
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-31 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-31 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-31 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 40px;
}
.a-t-31 .base-input.is-textarea .input-box {
  min-height: 52px;
  height: auto;
  padding: 0 !important;
}
.a-t-31 .base-input .label {
  margin-bottom: 12px;
}
.a-t-31 .base-input .input-box {
  box-sizing: border-box;
  min-height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--primary);
}
.a-t-31 .base-input .input-box input,
.a-t-31 .base-input .input-box textarea {
  background: none !important;
}
.a-t-31 .base-input .input-box .is-textarea {
  padding: 0 !important;
}
.a-t-31 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-31 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-31 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 44px;
  border-radius: 6px;
  background: var(--primary);
  outline: none;
  color: #fff !important;
}
.a-t-31 .base-main-btn-content {
  border-radius: 6px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  outline: none;
  color: #fff !important;
  text-align: center;
}
.a-t-31 .base-user-tab {
  position: relative;
  background: none;
}
.a-t-31 .base-user-tab .tab-item {
  width: 100%;
  z-index: 0;
  transition: all 0.3s;
  font-size: 14px;
  color: var(--btn-text2);
}
.a-t-31 .base-user-tab .tab-item div {
  background: var(--primary);
  padding: 4px 10px;
  border-radius: 5px;
}
.a-t-31 .base-user-tab .tab-item.active {
  font-size: 14px;
  color: var(--btn-text);
  position: relative;
  background: transparent;
}
.a-t-31 .base-user-tab .tab-item.active div {
  border: 2px solid var(--btn-text2);
  background: #161730;
}
.a-t-31.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-31.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-31.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-31 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-31 .container-login .top-info {
  position: relative;
}
.a-t-31 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-31 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-31 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-31 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: var(--mg);
  margin-bottom: 46px;
}
.a-t-31 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-31 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-31 .container-form {
  background: none;
  padding: 10px 16px;
}
.a-t-31 .container-card {
  background: var(--bg-card);
  padding: 10px 16px;
}
.a-t-31 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-31 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-31 .small-logo .site-name {
  font-size: 14px;
}
.a-t-31 .navigation-content {
  border-bottom: none !important;
  color: var(--primary);
}
.a-t-31 .navigation-content .i-material-symbols-arrow-back-ios-new-rounded {
  color: var(--primary);
  cursor: pointer;
}
.a-t-31 .nav-bar-wrap {
  padding: 0 !important;
}
.a-t-31 .tab-bar-wrap {
  height: 74px !important;
}
.a-t-31 .tab-bar-wrap .tab-item-icon {
  height: 27px !important;
  font-size: 27px !important;
}
.a-t-31 .change-pwd-wrap {
  margin-top: 20px;
}
.a-t-31 .van-empty__description {
  color: var(--text-gray);
}
.a-t-31 .celue {
  background: var(--primary-second) !important;
}
.a-t-31 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid var(--border-color);
}
.a-t-31 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
.a-t-31 .customer-calendar-10 {
  --van-calendar-range-edge-background: var(--primary);
  --van-button-primary-background: var(--primary);
  --van-button-primary-border-color: var(--primary);
}
.a-t-31 .customer-calendar-10 .van-calendar {
  max-width: 720px;
  margin: 0 auto;
}
.a-t-31
  .customer-calendar-10
  .van-calendar
  .van-calendar__day:not(
    .van-calendar__day--disabled,
    .van-calendar__day--selected,
    .van-calendar__day--start,
    .van-calendar__day--end,
    .van-calendar__day--start-end
  ) {
  color: var(--primary) !important;
}
.a-t-32 {
  --radius: 30px;
  --btn-radius: 38px;
  --card-radius: 22px;
  --padding: 30px;
  --mg: 18.5px;
  --bg-card: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.12) 100%
  );
  --bg-weight: rgba(255, 255, 255, 0.12);
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --btn-text2: #f9b44b;
  --border-color: rgba(255, 255, 255, 0.2);
  --text-gray: #a5b1b9;
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-32 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-32 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-32 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 24px;
}
.a-t-32 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-32 .base-input .label {
  margin-bottom: 12px;
}
.a-t-32 .base-input .input-box {
  padding: 0 16px;
  box-sizing: border-box;
  min-height: 52px;
  border-bottom: 1px solid var(--text-gray);
  position: relative;
  display: flex;
  align-items: center;
}
.a-t-32 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-32 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-32 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 54px;
  border-radius: 31px;
}
.a-t-32 .base-main-btn-content {
  border-radius: 31px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #000;
  text-align: center;
}
.a-t-32 .base-user-tab {
  position: relative;
  border-radius: 16px;
  height: 54px;
  padding: 7px;
  border: 1px solid var(--border-color);
}
.a-t-32 .base-user-tab .tab-item {
  color: #ffffff80;
}
.a-t-32 .base-user-tab .tab-item.active {
  color: #000;
  border-radius: 12px;
  background: var(--primary);
}
.a-t-32.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-32.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-32.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-32 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-32 .container-login .top-info {
  position: relative;
}
.a-t-32 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-32 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-32 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-32 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: var(--mg);
  margin-bottom: 46px;
}
.a-t-32 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-32 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-32 .container-form {
  background: none;
  padding: 10px 16px;
}
.a-t-32 .container-card {
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.a-t-32 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-32 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-32 .small-logo .site-name {
  font-size: 14px;
}
.a-t-32 .navigation-content {
  background: var(--bg) !important;
  border-bottom: 1px solid var(--border-color);
}
.a-t-32 .nav-bar-wrap {
  padding: 12px 0;
}
.a-t-32 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-32 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #000;
}
.a-t-33 {
  --radius: 8px;
  --btn-radius: 8px;
  --card-radius: 14px;
  --padding: 30px;
  --mg: 14px;
  --mt: 12px;
  --card-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
  --bg-weight: hsla(0, 0%, 100%, 0.08);
  --btn-bg3: #000;
  --btn-text2: #fff;
  --btn-text3: #010b2e;
  --text-gray6: #636983;
  --golden-gradient: var(--btn-bg);
}
.a-t-33 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-33 .font-playgram {
  font-family: Playgram, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-33.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-33.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--text-white);
  padding: 4px;
  box-shadow: var(--box-shadow);
}
.a-t-33.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #f4f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-33.base-draw-box .base-sign-btn,
.a-t-33.base-draw-box .base-draw-box-btn,
.a-t-33.base-sign .base-sign-btn,
.a-t-33.base-sign .base-draw-box-btn {
  background: var(--text-white);
  box-shadow: var(--box-shadow);
  padding: 4px;
  width: 40px;
  height: 40px;
}
.a-t-33.base-draw-box .base-sign-btn:before,
.a-t-33.base-draw-box .base-draw-box-btn:before,
.a-t-33.base-sign .base-sign-btn:before,
.a-t-33.base-sign .base-draw-box-btn:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
}
.a-t-33.base-draw-box .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-33.base-draw-box .base-sign-btn .i-tabler-gift,
.a-t-33.base-draw-box .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-33.base-draw-box .base-draw-box-btn .i-tabler-gift,
.a-t-33.base-sign .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-33.base-sign .base-sign-btn .i-tabler-gift,
.a-t-33.base-sign .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-33.base-sign .base-draw-box-btn .i-tabler-gift {
  color: var(--text-white) !important;
  font-size: 24px;
}
.a-t-33.sign-wrap {
  box-shadow: none !important;
  background-image: linear-gradient(
    180deg,
    var(--primary) 25.91%,
    rgba(1, 103, 255, 0) 80%,
    #fff
  ) !important;
}
.a-t-33.sign-wrap .tips {
  color: #eee;
}
.a-t-33.sign-wrap .tips2 {
  color: #aaa;
}
.a-t-33 .base-logo {
  width: 90px;
  height: 90px;
}
.a-t-33 .base-logo .site-img {
  border-radius: 20px;
}
.a-t-33 .base-lang-wrap {
  border-radius: var(--radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
  color: var(--btn-text2);
  margin-right: -12px;
  padding: 0 8px;
  height: 32px;
  line-height: 14px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.a-t-33 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 24px;
}
.a-t-33 .base-input .label {
  margin-bottom: 12px;
}
.a-t-33 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-33 .base-input .input-box {
  padding: 0 16px;
  box-sizing: border-box;
  min-height: 44px;
  background: var(--bg-input);
  position: relative;
  display: flex;
  align-items: center;
  border-radius: var(--radius);
}
.a-t-33 .base-input .input-box input::state(webkit-input-placeholder),
.a-t-33 .base-input .input-box textarea::state(webkit-input-placeholder) {
  color: var(--placeholder);
}
.a-t-33 .base-input .input-box input::placeholder,
.a-t-33 .base-input .input-box textarea::-webkit-input-placeholder {
  color: var(--placeholder);
}
.a-t-33 .base-input .input-box input::-webkit-input-placeholder,
.a-t-33 .base-input .input-box textarea::-webkit-input-placeholder {
  color: var(--placeholder);
}
.a-t-33 .base-input .input-box input:-moz-placeholder,
.a-t-33 .base-input .input-box textarea::-webkit-input-placeholder {
  color: var(--placeholder);
  opacity: 1;
}
.a-t-33 .base-input .input-box input::-moz-placeholder,
.a-t-33 .base-input .input-box textarea::-webkit-input-placeholder {
  color: var(--placeholder);
  opacity: 1;
}
.a-t-33 .base-input .input-box input:-ms-input-placeholder,
.a-t-33 .base-input .input-box textarea::-webkit-input-placeholder {
  color: var(--placeholder);
}
.a-t-33 .base-input .input-box input::-ms-input-placeholder,
.a-t-33 .base-input .input-box textarea::-webkit-input-placeholder {
  color: var(--placeholder);
}
.a-t-33 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-33 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-33 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 18px;
  height: 44px;
  border-radius: var(--btn-radius);
}
.a-t-33 .base-main-btn-content {
  border-radius: var(--btn-radius);
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-bg);
  text-align: center;
  color: var(--tab-text);
  font-weight: 700;
}
.a-t-33 .base-user-tab {
  position: relative;
  border-radius: var(--btn-radius);
  display: grid;
  background: var(--bg-card);
  min-height: 40px;
  padding: 4px;
  margin: 12px 0;
}
.a-t-33 .base-user-tab .tab-item {
  color: var(--btn-text);
  background: transparent;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
}
.a-t-33 .base-user-tab .tab-item.active {
  background: var(--primary);
  font-weight: 700;
  color: var(--tab-text);
}
.a-t-33 .base-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--btn-text);
  font-size: 18px;
  font-weight: 700;
  margin-top: var(--mt);
}
.a-t-33 .base-section-title .more {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
}
.a-t-33 .container-login {
  position: relative;
  overflow-y: auto;
  padding: 18px var(--mg) 0 var(--mg);
  height: calc(var(--vh, 1vh) * 100);
}
.a-t-33 .container-login.c-1 {
  background: url(./bg-Cy1yfHpk.png) no-repeat;
  background-size: 100% auto;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
}
.a-t-33 .container-login .base-logo .site-name {
  color: var(--btn-text2);
}
.a-t-33 .container-login .top-info {
  position: relative;
  z-index: 2;
  height: 183px;
}
.a-t-33 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-33 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-right: 16px;
  border: 1px solid #fff;
}
.a-t-33 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-33 .container-login .top-info .top-tools .base-lang-wrap {
  padding: 0 8px;
  margin-right: -16px;
  border-radius: var(--radius) 0 0 var(--radius);
}
.a-t-33 .container-login .top-info .base-user-tab {
  position: absolute;
  bottom: 12px;
  left: 0;
}
.a-t-33 .container-login .top-info .base-logo {
  width: 90px;
  margin-top: 5px;
}
.a-t-33 .container-login .auto-login {
  color: #010b2a80;
  font-size: 12px;
}
.a-t-33 .container-login .login-content {
  position: relative;
  z-index: 1;
  padding: 10px 30px;
  border-radius: 20px;
}
.a-t-33 .container-login .login-content .login-tools {
  margin: 0 auto;
}
.a-t-33 .container-form {
  background: transparent;
  padding: 0 0 30px;
}
.a-t-33 .container-form .base-user-tab {
  background: transparent;
  border: 1px solid var(--border-color);
}
.a-t-33 .container-card {
  background: var(--bg-card);
  box-shadow: none;
  border: none;
  padding: 10px var(--mg);
  z-index: 0;
}
.a-t-33 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-33 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-33 .small-logo .site-name {
  font-size: 14px;
}
.a-t-33 .tab-bar-wrap .tab-bar {
  background: var(--bg-tab);
}
.a-t-33 .tab-bar-wrap .tab-bar .tab-item {
  padding: 8px 0;
}
.a-t-33 .sticky-bg {
  z-index: 2;
  background: var(--bg-card);
  border-radius: 30px;
  height: 42px;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
}
.a-t-33 .sticky-bg.base-user-tab {
  height: 42px;
}
.a-t-33 .sticky-bg.base-user-tab .tab-item {
  display: flex;
  align-items: center;
}
.a-t-33 .sticky-bg.base-user-tab .tab-item.active {
  background: var(--primary);
  border-radius: 30px;
  color: var(--btn-text2) !important;
}
.a-t-33 .sticky-bg.base-user-tab .tab-item:after {
  content: "";
  height: 0;
}
.a-t-33 .navigation-content {
  color: var(--btn-text2) !important;
}
.a-t-33 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  color: var(--text-gray);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-33 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: var(--tab-text);
}
.a-t-33 .celue {
  background: #0000000d !important;
}
.a-t-33 .lang-cell {
  border-style: solid !important;
  border-color: var(--border-color) !important;
}
#app.a-t-33 {
  position: relative;
  background-attachment: fixed;
  background-size: 100% 100%;
}
#app.a-t-33.no-1 {
  background-image: url(./bg-Cy1yfHpk.png);
}
.a-t-34 {
  --radius: 30px;
  --btn-radius: 38px;
  --card-radius: 22px;
  --padding: 30px;
  --mg: 18.5px;
  --bg-card: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.12) 100%
  );
  --bg-weight: rgba(255, 255, 255, 0.12);
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --btn-text2: #f9b44b;
  --border-color: rgba(255, 255, 255, 0.2);
  --text-gray: #a5b1b9;
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-34 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-34 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-34 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 24px;
}
.a-t-34 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-34 .base-input .label {
  margin-bottom: 12px;
}
.a-t-34 .base-input .input-box {
  padding: 0 16px;
  box-sizing: border-box;
  min-height: 52px;
  border-radius: 18px;
  background: var(--bg-input);
  position: relative;
  display: flex;
  align-items: center;
}
.a-t-34 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-34 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-34 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 54px;
  border-radius: 31px;
}
.a-t-34 .base-main-btn-content {
  border-radius: 31px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #000;
  text-align: center;
}
.a-t-34 .base-user-tab {
  position: relative;
  border-radius: 16px;
  min-height: 54px;
  padding: 7px;
  border: 1px solid var(--border-color);
}
.a-t-34 .base-user-tab .tab-item {
  color: #ffffff80;
}
.a-t-34 .base-user-tab .tab-item div {
  width: 100%;
  padding: 0 4px;
}
.a-t-34 .base-user-tab .tab-item.active {
  color: #000;
  border-radius: 12px;
  background: var(--primary);
}
.a-t-34.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-34.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-34.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-34 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.a-t-34 .container-login:before {
  position: absolute;
  width: 255px;
  height: 272px;
  background: #208e72;
  border-radius: 50%;
  filter: blur(30px);
  z-index: 0;
  content: "";
  top: -20px;
  left: -50px;
}
.a-t-34 .container-login:after {
  position: absolute;
  width: 158px;
  height: 169px;
  border-radius: 50%;
  background: #6e6300;
  opacity: 0.2;
  filter: blur(30px);
  z-index: 0;
  content: "";
  top: -60px;
  right: -60px;
}
.a-t-34 .container-login .base-user-tab {
  background: none;
  border: none;
}
.a-t-34 .container-login .base-user-tab .tab-item.active {
  font-weight: 700 !important;
  background: none !important;
  color: var(--primary) !important;
}
.a-t-34 .container-login .top-info {
  position: relative;
  height: 300px;
  background: url(./login-bg-CgSUmFoM.png);
  background-size: auto 300px;
  background-repeat: no-repeat;
  background-position: 50%;
}
.a-t-34 .container-login .top-info:before {
  position: absolute;
  width: 255px;
  height: 272px;
  background: #208e72;
  border-radius: 50%;
  filter: blur(30px);
  z-index: 0;
  content: "";
  top: -180px;
  right: -160px;
}
.a-t-34 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-34 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-34 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-34 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: -100px;
  margin-bottom: 46px;
}
.a-t-34 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-34 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-34 .container-login .login-tools {
  margin-top: 20px;
}
.a-t-34 .container-form {
  position: relative;
  z-index: 3;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin: var(--mg) auto 0;
  padding: var(--padding);
  background: #f3f3f31a !important;
}
.a-t-34 .container-card {
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.a-t-34 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-34 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-34 .small-logo .site-name {
  font-size: 14px;
}
.a-t-34 .navigation-content {
  background: var(--bg) !important;
  border-bottom: 1px solid var(--border-color);
}
.a-t-34 .nav-bar-wrap {
  padding: 12px 0;
}
.a-t-34 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-34 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #000;
}
.a-t-35 {
  --radius: 30px;
  --btn-radius: 38px;
  --card-radius: 22px;
  --padding: 30px;
  --mg: 18.5px;
  --bg-card: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.12) 100%
  );
  --bg-weight: rgba(255, 255, 255, 0.12);
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --btn-text2: #f9b44b;
  --border-color: rgba(255, 255, 255, 0.2);
  --text-gray: #a5b1b9;
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-35 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-35 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-35 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 24px;
}
.a-t-35 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-35 .base-input .label {
  margin-bottom: 12px;
}
.a-t-35 .base-input .input-box {
  padding: 0 16px;
  box-sizing: border-box;
  min-height: 52px;
  border-bottom: 1px solid var(--text-gray);
  position: relative;
  display: flex;
  align-items: center;
}
.a-t-35 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-35 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-35 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 54px;
  border-radius: 31px;
}
.a-t-35 .base-main-btn-content {
  border-radius: 31px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #000;
  text-align: center;
}
.a-t-35 .base-user-tab {
  position: relative;
  border-radius: 16px;
  height: 54px;
  padding: 7px;
  border: 1px solid var(--border-color);
}
.a-t-35 .base-user-tab .tab-item {
  color: #ffffff80;
}
.a-t-35 .base-user-tab .tab-item.active {
  color: #000;
  border-radius: 12px;
  background: var(--primary);
}
.a-t-35.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-35.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-35.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-35 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.a-t-35 .container-login .login-content {
  background: linear-gradient(180deg, #5f5241cc, #070404cc 99%);
  border-radius: var(--card-radius);
  padding: 20px;
}
.a-t-35 .container-login .top-info {
  position: relative;
}
.a-t-35 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-35 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-35 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-35 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: var(--mg);
  margin-bottom: 46px;
}
.a-t-35 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-35 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-35 .container-form {
  background: none;
  padding: 10px 16px;
}
.a-t-35 .container-card {
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.a-t-35 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-35 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-35 .small-logo .site-name {
  font-size: 14px;
}
.a-t-35 .navigation-content {
  background: var(--bg) !important;
  border-bottom: 1px solid var(--border-color);
}
.a-t-35 .nav-bar-wrap {
  padding: 12px 0;
}
.a-t-35 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-35 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #000;
}
#app.a-t-35 {
  position: relative;
  background: var(--bg);
  background-attachment: fixed;
}
.a-t-36 {
  --radius: 20px;
  --btn-radius: 10px;
  --card-radius: 15px;
  --padding: 20px;
  --mg: 16px;
  --card-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
  --bg-card: #ffffff;
  --bg-card2: var(--bg-weight);
  --btn-text: #010b2e;
  --btn-bg3: #000;
  --btn-text2: #fff;
  --btn-text3: #3d3d3d;
  --btn-text4: #001d77;
  --border-color: #e0e0e0;
  --text-gray: rgba(28, 37, 61, 0.5);
  --text-gray6: #999999;
  --golden-gradient: var(--btn-bg);
  font-family: Poppins, Poppins;
}
.a-t-36 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-36 .font-playgram {
  font-family: Playgram, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-36.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-36.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--text-white);
  padding: 4px;
  box-shadow: var(--box-shadow);
}
.a-t-36.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #f4f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-36.base-draw-box .base-sign-btn,
.a-t-36.base-draw-box .base-draw-box-btn,
.a-t-36.base-sign .base-sign-btn,
.a-t-36.base-sign .base-draw-box-btn {
  background: var(--text-white);
  box-shadow: var(--box-shadow);
  padding: 4px;
  width: 40px;
  height: 40px;
}
.a-t-36.base-draw-box .base-sign-btn:before,
.a-t-36.base-draw-box .base-draw-box-btn:before,
.a-t-36.base-sign .base-sign-btn:before,
.a-t-36.base-sign .base-draw-box-btn:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
}
.a-t-36.base-draw-box .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-36.base-draw-box .base-sign-btn .i-tabler-gift,
.a-t-36.base-draw-box .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-36.base-draw-box .base-draw-box-btn .i-tabler-gift,
.a-t-36.base-sign .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-36.base-sign .base-sign-btn .i-tabler-gift,
.a-t-36.base-sign .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-36.base-sign .base-draw-box-btn .i-tabler-gift {
  color: var(--text-white) !important;
  font-size: 24px;
}
.a-t-36.sign-wrap {
  box-shadow: none !important;
  background-image: linear-gradient(
    180deg,
    var(--primary) 25.91%,
    rgba(1, 103, 255, 0) 80%,
    #fff
  ) !important;
}
.a-t-36.sign-wrap .tips {
  color: #eee;
}
.a-t-36.sign-wrap .tips2 {
  color: #aaa;
}
.a-t-36 .base-logo {
  width: 90px;
  height: 90px;
}
.a-t-36 .base-logo .site-img {
  border-radius: 20px;
}
.a-t-36 .base-lang-wrap {
  border-radius: var(--radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
  padding: 0 8px;
  height: 32px;
  line-height: 14px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid var(--border-color2);
  color: var(--primary);
}
.a-t-36 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 18px;
}
.a-t-36 .base-input .label {
  margin-bottom: 12px;
}
.a-t-36 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-36 .base-input .input-box {
  padding: 0 16px;
  box-sizing: border-box;
  height: 52px;
  background: var(--bg-input);
  position: relative;
  display: flex;
  align-items: center;
  border-radius: var(--card-radius);
}
.a-t-36 .base-input .input-box input::state(webkit-input-placeholder),
.a-t-36 .base-input .input-box textarea::state(webkit-input-placeholder) {
  color: #fff6;
}
.a-t-36 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-36 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-36 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  height: 46px;
  background: transparent;
}
.a-t-36 .base-main-btn-content {
  border-radius: var(--btn-radius);
  color: var(--text-white);
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-bg);
  text-align: center;
}
.a-t-36 .base-user-tab {
  position: relative;
  width: 100%;
  background: transparent;
  min-height: 52px;
}
.a-t-36 .base-user-tab .tab-item {
  color: var(--btn-text3);
  font-size: 18px;
}
.a-t-36 .base-user-tab .tab-item div {
  line-height: 14px;
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 2px;
}
.a-t-36 .base-user-tab .tab-item.active {
  background: transparent;
}
.a-t-36 .base-user-tab .tab-item.active div {
  color: #000;
  position: relative;
  font-weight: 700;
}
.a-t-36 .base-user-tab .tab-item.active div:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 50%;
  transform: translate(-50%);
  height: 2px;
  background: var(--primary);
}
.a-t-36 .base-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--base-user-tab-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 var(--mg);
}
.a-t-36 .base-section-title.c-1 span:first-child {
  position: relative;
}
.a-t-36 .base-section-title.c-1 span:first-child:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%);
  width: 75px;
  height: 16px;
  background: url(./t-1-title-tag-D357tqis.png) no-repeat;
  background-size: 100% 100%;
}
.a-t-36 .base-section-title.c-2 span:first-child {
  position: relative;
}
.a-t-36 .base-section-title.c-2 span:first-child:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%);
  width: 75px;
  height: 16px;
  background: url(./t-2-title-tag-Dp2Ahl3m.png) no-repeat;
  background-size: 100% 100%;
}
.a-t-36 .base-section-title.c-3 span:first-child {
  position: relative;
}
.a-t-36 .base-section-title.c-3 span:first-child:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%);
  width: 75px;
  height: 16px;
  background: url(./t-3-title-tag-DsBqYleR.png) no-repeat;
  background-size: 100% 100%;
}
.a-t-36 .base-section-title.c-4 span:first-child {
  position: relative;
}
.a-t-36 .base-section-title.c-4 span:first-child:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%);
  width: 75px;
  height: 16px;
  background: url(./t-4-title-tag-_0Y5VgKw.png) no-repeat;
  background-size: 100% 100%;
}
.a-t-36 .base-section-title.c-5 span:first-child {
  position: relative;
}
.a-t-36 .base-section-title.c-5 span:first-child:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%);
  width: 75px;
  height: 16px;
  background: url(./t-5-title-tag-C4Mq6RC7.png) no-repeat;
  background-size: 100% 100%;
}
.a-t-36 .base-section-title .more {
  display: flex;
  font-size: 14px;
  align-items: center;
  font-weight: 400;
  color: var(--text-gray);
}
.a-t-36 .base-section-title .more span:before {
  display: none;
}
.a-t-36 .container-login {
  position: relative;
  padding: 18px var(--mg) 20px;
  min-height: calc(var(--vh, 1vh) * 100);
}
.a-t-36 .container-login.c-1 {
  background: url(./t-1-login-bg--C4Bvc6t.png) no-repeat;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.a-t-36 .container-login.c-2 {
  background: url(./t-2-login-bg-DCluxvhr.png) no-repeat;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.a-t-36 .container-login.c-3 {
  background: url(./t-3-login-bg-DJDXjn9v.png) no-repeat;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.a-t-36 .container-login.c-4 {
  background: url(./t-4-login-bg-BOhOJ6yG.png) no-repeat;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.a-t-36 .container-login.c-5 {
  background: url(./t-5-login-bg-BjszLrmi.png) no-repeat;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.a-t-36 .container-login .container-form {
  padding: 0 30px;
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 10px 0 30px;
}
.a-t-36 .container-login .base-logo .site-name {
  color: var(--btn-text2);
}
.a-t-36 .container-login .top-info {
  position: relative;
  z-index: 2;
  height: 183px;
}
.a-t-36 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-36 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-right: 16px;
  border: 1px solid #fff;
}
.a-t-36 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-36 .container-login .top-info .top-tools .base-lang-wrap {
  padding: 0 8px;
  margin-right: -16px;
  border-radius: var(--radius) 0 0 var(--radius);
}
.a-t-36 .container-login .top-info .base-user-tab {
  position: absolute;
  bottom: 12px;
  left: 0;
}
.a-t-36 .container-login .top-info .base-logo {
  width: 90px;
  margin-top: 5px;
}
.a-t-36 .container-login .auto-login {
  color: #010b2a80;
  font-size: 12px;
}
.a-t-36 .container-login .login-content {
  position: relative;
  z-index: 1;
  padding: 10px 0;
  border-radius: var(--card-radius);
  min-height: calc(var(--vh, 1vh) * 100 - 181px - 20px - 20px);
  background: var(--bg-card);
}
.a-t-36 .container-login .login-content .login-tools {
  margin: 0 auto;
  padding: 0 30px;
}
.a-t-36 .container-form {
  border: 1px solid var(--border-color);
  margin: var(--mg) auto 0;
  padding: var(--padding);
  box-shadow: var(--card-shadow);
}
.a-t-36 .container-card {
  background: var(--bg-card);
  box-shadow: none;
  border: none;
  padding: 10px var(--mg);
  z-index: 0;
}
.a-t-36 .container-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 200px;
  z-index: 0;
  pointer-events: none;
}
.a-t-36 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-36 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-36 .small-logo .site-name {
  font-size: 14px;
}
.a-t-36 .tab-bar-wrap {
  bottom: 20px;
}
.a-t-36 .tab-bar-wrap .tab-bar {
  width: 90%;
  border-radius: var(--card-radius);
  border: 1px solid var(--border-color2);
  background: var(--bg-tab);
}
.a-t-36 .tab-bar-wrap .tab-bar .tab-item {
  padding: 8px 0;
}
.a-t-36 .sticky-bg {
  z-index: 2;
  background: var(--bg-card);
  border-radius: 30px;
  height: 42px;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
}
.a-t-36 .sticky-bg.base-user-tab {
  height: 42px;
}
.a-t-36 .sticky-bg.base-user-tab .tab-item {
  display: flex;
  align-items: center;
}
.a-t-36 .sticky-bg.base-user-tab .tab-item.active {
  background: var(--primary);
  border-radius: 30px;
  color: var(--btn-text2) !important;
}
.a-t-36 .sticky-bg.base-user-tab .tab-item:after {
  content: "";
  height: 0;
}
.a-t-36 .recharge-account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-input);
  color: var(--text-gray);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-36 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
.a-t-36 .celue {
  background: #0000000d !important;
}
.a-t-36 .lang-cell {
  border-style: solid !important;
  border-color: var(--border-color) !important;
}
.a-t-36 .customer-calendar-36 {
  --van-calendar-range-edge-background: var(--primary);
  --van-button-primary-background: var(--primary);
  --van-button-primary-border-color: var(--primary);
}
.a-t-36 .customer-calendar-36 .van-calendar {
  max-width: 720px;
  margin: 0 auto;
}
.a-t-36
  .customer-calendar-36
  .van-calendar
  .van-calendar__day:not(
    .van-calendar__day--disabled,
    .van-calendar__day--selected,
    .van-calendar__day--start,
    .van-calendar__day--end,
    .van-calendar__day--start-end
  ) {
  color: var(--primary) !important;
}
#app.a-t-36 {
  position: relative;
  background-attachment: fixed;
  background-size: 100% 100%;
}
#app.a-t-36.no-1 {
  background-image: url(./bg-1-CO-09fos.png);
}
#app.a-t-36.no-2 {
  background: #f9f7f2;
}
#app.a-t-36.no-3 {
  background: #f3f5f8;
}
#app.a-t-36.no-4 {
  background: #f0f8f4;
}
#app.a-t-36.no-5 {
  background: #f8f1f1;
}
.a-t-37 {
  --radius: 20px;
  --btn-radius: 10px;
  --card-radius: 14px;
  --padding: 20px;
  --mg: 16px;
  --card-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
  --bg-card: #f7f7f7;
  --bg-card2: var(--bg-weight);
  --btn-text: #010b2e;
  --btn-bg3: #000;
  --btn-text2: #fff;
  --btn-text3: #3d3d3d;
  --btn-text4: #001d77;
  --border-color: #e0e0e0;
  --text-gray: rgba(28, 37, 61, 0.5);
  --text-gray6: #999999;
  --golden-gradient: var(--btn-bg);
  font-family: Poppins, Poppins;
}
.a-t-37 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-37 .font-playgram {
  font-family: Playgram, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-37.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-37.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--text-white);
  padding: 4px;
  box-shadow: var(--box-shadow);
}
.a-t-37.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #f4f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-37.base-draw-box .base-sign-btn,
.a-t-37.base-draw-box .base-draw-box-btn,
.a-t-37.base-sign .base-sign-btn,
.a-t-37.base-sign .base-draw-box-btn {
  background: var(--text-white);
  box-shadow: var(--box-shadow);
  padding: 4px;
  width: 40px;
  height: 40px;
}
.a-t-37.base-draw-box .base-sign-btn:before,
.a-t-37.base-draw-box .base-draw-box-btn:before,
.a-t-37.base-sign .base-sign-btn:before,
.a-t-37.base-sign .base-draw-box-btn:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
}
.a-t-37.base-draw-box .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-37.base-draw-box .base-sign-btn .i-tabler-gift,
.a-t-37.base-draw-box .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-37.base-draw-box .base-draw-box-btn .i-tabler-gift,
.a-t-37.base-sign .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-37.base-sign .base-sign-btn .i-tabler-gift,
.a-t-37.base-sign .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-37.base-sign .base-draw-box-btn .i-tabler-gift {
  color: var(--text-white) !important;
  font-size: 24px;
}
.a-t-37.sign-wrap {
  box-shadow: none !important;
  background-image: linear-gradient(
    180deg,
    var(--primary) 25.91%,
    rgba(1, 103, 255, 0) 80%,
    #fff
  ) !important;
}
.a-t-37.sign-wrap .tips {
  color: #eee;
}
.a-t-37.sign-wrap .tips2 {
  color: #aaa;
}
.a-t-37 .base-logo {
  width: 90px;
  height: 90px;
}
.a-t-37 .base-logo .site-img {
  border-radius: 20px;
}
.a-t-37 .base-lang-wrap {
  border-radius: var(--radius);
  background: #fff;
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
  padding: 0 8px;
  height: 32px;
  line-height: 14px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--primary);
}
.a-t-37 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 18px;
}
.a-t-37 .base-input .label {
  margin-bottom: 12px;
}
.a-t-37 .base-input.is-textarea .input-box {
  padding: 0;
  min-height: 52px;
  height: auto;
}
.a-t-37 .base-input .input-box {
  box-sizing: border-box;
  height: 52px;
  background: var(--bg-input);
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}
.a-t-37 .base-input .input-box input::state(webkit-input-placeholder),
.a-t-37 .base-input .input-box textarea::state(webkit-input-placeholder) {
  color: #fff6;
}
.a-t-37 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-37 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-37 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  height: 53px;
  background: transparent;
}
.a-t-37 .base-main-btn-content {
  border-radius: var(--btn-radius);
  color: var(--text-white);
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-bg);
  text-align: center;
}
.a-t-37 .base-user-tab {
  position: relative;
  width: 100%;
  background: transparent;
  min-height: 52px;
}
.a-t-37 .base-user-tab .tab-item {
  color: var(--btn-text3);
  font-size: 16px;
  position: relative;
}
.a-t-37 .base-user-tab .tab-item:after {
  content: "";
  position: absolute;
  right: -0.5px;
  width: 1px;
  height: 40%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--border-color);
}
.a-t-37 .base-user-tab .tab-item:last-child:after {
  display: none;
}
.a-t-37 .base-user-tab .tab-item div {
  line-height: 14px;
  min-height: 32px;
  display: flex;
  align-items: center;
  padding: 0 4px;
}
.a-t-37 .base-user-tab .tab-item.active {
  background: transparent;
}
.a-t-37 .base-user-tab .tab-item.active div {
  color: var(--btn-text);
  position: relative;
  font-weight: 700;
}
.a-t-37 .base-user-tab .tab-item.active div:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 50%;
  transform: translate(-50%);
  height: 3px;
  border-radius: 10px;
  background: var(--primary);
}
.a-t-37 .base-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--base-user-tab-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.a-t-37 .base-section-title span:first-child {
  position: relative;
}
.a-t-37 .base-section-title span:first-child:before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--mg));
  top: 50%;
  transform: translateY(-50%);
  border-radius: 10px;
  width: 3px;
  height: 16px;
  background: var(--primary);
}
.a-t-37 .base-section-title .more {
  display: flex;
  font-size: 14px;
  align-items: center;
  font-weight: 400;
  color: var(--text-gray);
}
.a-t-37 .base-section-title .more span:before {
  display: none;
}
.a-t-37 .container-login {
  position: relative;
  padding: 18px 0 0;
  min-height: calc(var(--vh, 1vh) * 100);
}
.a-t-37 .container-login:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 300px;
  background: url(./login-pic-DHKDK2F1.png) no-repeat;
  background-size: 100% auto;
}
.a-t-37 .container-login.c-1 {
  background: #fdf7e5;
  width: 100%;
  height: 100%;
}
.a-t-37 .container-login.c-2 {
  background: #dfe7ff;
  width: 100%;
  height: 100%;
}
.a-t-37 .container-login.c-3 {
  background: #dffffd;
  width: 100%;
  height: 100%;
}
.a-t-37 .container-login.c-4 {
  background: #dde4ff;
  width: 100%;
  height: 100%;
}
.a-t-37 .container-login.c-5 {
  background: #edddff;
  width: 100%;
  height: 100%;
}
.a-t-37 .container-login .container-form {
  padding: 0 30px;
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 10px 0 30px;
}
.a-t-37 .container-login .base-logo .site-name {
  color: var(--btn-text2);
}
.a-t-37 .container-login .top-info {
  position: relative;
  z-index: 2;
  height: 183px;
}
.a-t-37 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-37 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-right: 16px;
  border: 1px solid #fff;
}
.a-t-37 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-37 .container-login .top-info .top-tools .base-lang-wrap {
  padding: 0 8px;
  background: var(--primary);
  color: var(--btn-text2);
  border-radius: var(--radius) 0 0 var(--radius);
}
.a-t-37 .container-login .top-info .base-user-tab {
  position: absolute;
  bottom: 12px;
  left: 0;
}
.a-t-37 .container-login .top-info .base-logo {
  width: 90px;
  margin-top: 5px;
}
.a-t-37 .container-login .auto-login {
  color: #010b2a80;
  font-size: 12px;
}
.a-t-37 .container-login .login-content {
  position: relative;
  z-index: 1;
  padding: 10px 0;
  border-radius: 20px 20px 0 0;
  min-height: calc(var(--vh, 1vh) * 100 - 181px - 20px);
  background: #fff;
}
.a-t-37 .container-login .login-content .login-tools {
  margin: 0 auto;
  padding: 0 30px;
}
.a-t-37 .container-form {
  border: 1px solid var(--border-color);
  margin: var(--mg) auto 0;
  padding: var(--padding);
  box-shadow: var(--card-shadow);
}
.a-t-37 .container-card {
  background: var(--bg-card);
  box-shadow: none;
  border: none;
  padding: 10px var(--mg);
  z-index: 0;
}
.a-t-37 .container-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 200px;
  z-index: 0;
  pointer-events: none;
}
.a-t-37 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-37 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-37 .small-logo .site-name {
  font-size: 14px;
}
.a-t-37 .nav-bar-wrap:before {
  opacity: 1 !important;
}
.a-t-37 .navigation .navigation-content {
  color: #fff;
}
.a-t-37 .tab-bar-wrap .tab-bar {
  border: 1px solid var(--border-color2);
  background: var(--bg-tab);
}
.a-t-37 .tab-bar-wrap .tab-bar .tab-item {
  padding: 4px;
}
.a-t-37 .sticky-bg {
  z-index: 2;
  background: var(--bg-card);
  border-radius: var(--card-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
}
.a-t-37 .sticky-bg.base-user-tab .tab-item {
  display: flex;
  align-items: center;
}
.a-t-37 .recharge-account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-input);
  color: var(--btn-text);
  border-radius: var(--card-radius);
  padding: 10px;
  margin: 10px 0;
  font-size: 14px !important;
}
.a-t-37 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
.a-t-37 .celue {
  background: #0000000d !important;
}
.a-t-37 .lang-cell {
  border-style: solid !important;
  border-color: var(--border-color) !important;
}
.a-t-37 .customer-calendar-36 {
  --van-calendar-range-edge-background: var(--primary);
  --van-button-primary-background: var(--primary);
  --van-button-primary-border-color: var(--primary);
}
.a-t-37 .customer-calendar-36 .van-calendar {
  max-width: 720px;
  margin: 0 auto;
}
.a-t-37
  .customer-calendar-36
  .van-calendar
  .van-calendar__day:not(
    .van-calendar__day--disabled,
    .van-calendar__day--selected,
    .van-calendar__day--start,
    .van-calendar__day--end,
    .van-calendar__day--start-end
  ) {
  color: var(--primary) !important;
}
.a-t-38 {
  --radius: 20px;
  --btn-radius: 10px;
  --card-radius: 15px;
  --padding: 20px;
  --mg: 16px;
  --card-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
  --bg-card: rgba(255, 255, 255, 0.12);
  --bg-card2: var(--bg-card);
  --btn-text: #fff;
  --btn-bg3: #000;
  --btn-text2: #fff;
  --btn-text3: #3d3d3d;
  --btn-text4: #001d77;
  --border-color: rgba(255, 255, 255, 0.2);
  --text-gray: #a5b1b9;
  --text-gray6: #999999;
  --golden-gradient: var(--btn-bg);
  font-family: Poppins, Poppins;
}
.a-t-38 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-38 .font-playgram {
  font-family: Playgram, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-38.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-38.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--text-white);
  padding: 4px;
  box-shadow: var(--box-shadow);
}
.a-t-38.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #f4f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-38.base-draw-box .base-sign-btn,
.a-t-38.base-draw-box .base-draw-box-btn,
.a-t-38.base-sign .base-sign-btn,
.a-t-38.base-sign .base-draw-box-btn {
  background: var(--text-white);
  box-shadow: var(--box-shadow);
  padding: 4px;
  width: 40px;
  height: 40px;
}
.a-t-38.base-draw-box .base-sign-btn:before,
.a-t-38.base-draw-box .base-draw-box-btn:before,
.a-t-38.base-sign .base-sign-btn:before,
.a-t-38.base-sign .base-draw-box-btn:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
}
.a-t-38.base-draw-box .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-38.base-draw-box .base-sign-btn .i-tabler-gift,
.a-t-38.base-draw-box .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-38.base-draw-box .base-draw-box-btn .i-tabler-gift,
.a-t-38.base-sign .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-38.base-sign .base-sign-btn .i-tabler-gift,
.a-t-38.base-sign .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-38.base-sign .base-draw-box-btn .i-tabler-gift {
  color: var(--text-white) !important;
  font-size: 24px;
}
.a-t-38.sign-wrap {
  box-shadow: none !important;
  background-image: linear-gradient(
    180deg,
    var(--primary) 25.91%,
    rgba(1, 103, 255, 0) 80%,
    #fff
  ) !important;
}
.a-t-38.sign-wrap .tips {
  color: #eee;
}
.a-t-38.sign-wrap .tips2 {
  color: #aaa;
}
.a-t-38 .base-logo {
  width: 90px;
  height: 90px;
}
.a-t-38 .base-logo .site-img {
  border-radius: 20px;
}
.a-t-38 .base-lang-wrap {
  border-radius: var(--radius);
  background: var(--bg-card);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
  padding: 0 8px;
  height: 32px;
  line-height: 14px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid var(--border-color2);
  color: var(--primary);
}
.a-t-38 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 18px;
}
.a-t-38 .base-input .label {
  margin-bottom: 12px;
}
.a-t-38 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-38 .base-input .input-box {
  padding: 0 16px;
  box-sizing: border-box;
  height: 52px;
  background: var(--bg-input);
  position: relative;
  display: flex;
  align-items: center;
  border-radius: var(--card-radius);
}
.a-t-38 .base-input .input-box input::state(webkit-input-placeholder),
.a-t-38 .base-input .input-box textarea::state(webkit-input-placeholder) {
  color: #fff6;
}
.a-t-38 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-38 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-38 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  height: 46px;
  background: transparent;
}
.a-t-38 .base-main-btn-content {
  border-radius: var(--btn-radius);
  color: var(--text-white);
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-bg);
  text-align: center;
}
.a-t-38 .base-user-tab {
  position: relative;
  width: 100%;
  background: transparent;
  min-height: 52px;
}
.a-t-38 .base-user-tab .tab-item {
  color: var(--btn-text);
  opacity: 0.7;
  font-size: 14px;
}
.a-t-38 .base-user-tab .tab-item div {
  min-height: 32px;
  display: flex;
  align-items: center;
  padding: 0 4px;
}
.a-t-38 .base-user-tab .tab-item.active {
  background: transparent;
  opacity: 1;
}
.a-t-38 .base-user-tab .tab-item.active div {
  color: var(--text-white);
  position: relative;
  font-weight: 700;
}
.a-t-38 .base-user-tab .tab-item.active div:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 50%;
  transform: translate(-50%);
  height: 2px;
  background: var(--primary);
}
.a-t-38 .base-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--btn-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 var(--mg);
}
.a-t-38 .base-section-title.c-1 span:first-child {
  position: relative;
}
.a-t-38 .base-section-title.c-1 span:first-child:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%);
  width: 75px;
  height: 16px;
  background: url(./t-1-title-tag-D357tqis.png) no-repeat;
  background-size: 100% 100%;
}
.a-t-38 .base-section-title.c-2 span:first-child {
  position: relative;
}
.a-t-38 .base-section-title.c-2 span:first-child:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%);
  width: 75px;
  height: 16px;
  background: url(./t-2-title-tag-Dp2Ahl3m.png) no-repeat;
  background-size: 100% 100%;
}
.a-t-38 .base-section-title.c-3 span:first-child {
  position: relative;
}
.a-t-38 .base-section-title.c-3 span:first-child:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%);
  width: 75px;
  height: 16px;
  background: url(./t-3-title-tag-DsBqYleR.png) no-repeat;
  background-size: 100% 100%;
}
.a-t-38 .base-section-title.c-4 span:first-child {
  position: relative;
}
.a-t-38 .base-section-title.c-4 span:first-child:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%);
  width: 75px;
  height: 16px;
  background: url(./t-4-title-tag-_0Y5VgKw.png) no-repeat;
  background-size: 100% 100%;
}
.a-t-38 .base-section-title.c-5 span:first-child {
  position: relative;
}
.a-t-38 .base-section-title.c-5 span:first-child:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%);
  width: 75px;
  height: 16px;
  background: url(./t-5-title-tag-C4Mq6RC7.png) no-repeat;
  background-size: 100% 100%;
}
.a-t-38 .base-section-title .more {
  display: flex;
  font-size: 14px;
  align-items: center;
  font-weight: 400;
  color: var(--text-gray);
}
.a-t-38 .base-section-title .more span:before {
  display: none;
}
.a-t-38 .container-login {
  position: relative;
  padding: 18px var(--mg) 20px;
  min-height: calc(var(--vh, 1vh) * 100);
}
.a-t-38 .container-login .container-form {
  padding: 0 30px;
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 10px 0 30px;
}
.a-t-38 .container-login .base-logo .site-name {
  color: var(--btn-text2);
}
.a-t-38 .container-login .top-info {
  position: relative;
  z-index: 2;
  height: 183px;
}
.a-t-38 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-38 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-right: 16px;
  border: 1px solid #fff;
}
.a-t-38 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-38 .container-login .top-info .top-tools .base-lang-wrap {
  padding: 0 8px;
  margin-right: -16px;
  border-radius: var(--radius) 0 0 var(--radius);
}
.a-t-38 .container-login .top-info .base-user-tab {
  position: absolute;
  bottom: 12px;
  left: 0;
}
.a-t-38 .container-login .top-info .base-logo {
  width: 90px;
  margin-top: 5px;
}
.a-t-38 .container-login .auto-login {
  color: #010b2a80;
  font-size: 12px;
}
.a-t-38 .container-login .login-content {
  position: relative;
  z-index: 1;
  padding: 10px 0;
  border-radius: var(--card-radius);
  min-height: calc(var(--vh, 1vh) * 100 - 181px - 20px - 20px);
  background: var(--bg-card);
}
.a-t-38 .container-login .login-content .login-tools {
  margin: 0 auto;
  padding: 0 30px;
}
.a-t-38 .container-form {
  border: 1px solid var(--border-color);
  margin: var(--mg) auto 0;
  padding: var(--padding);
  box-shadow: var(--card-shadow);
}
.a-t-38 .container-card {
  background: var(--bg-card);
  box-shadow: none;
  border: none;
  padding: 10px var(--mg);
  z-index: 0;
}
.a-t-38 .container-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 200px;
  z-index: 0;
  pointer-events: none;
}
.a-t-38 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-38 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-38 .small-logo .site-name {
  font-size: 14px;
}
.a-t-38 .tab-bar-wrap {
  bottom: 20px;
}
.a-t-38 .tab-bar-wrap .tab-bar {
  width: 90%;
  border-radius: var(--card-radius);
  border: 1px solid var(--border-color2);
  background: var(--bg-tab);
}
.a-t-38 .tab-bar-wrap .tab-bar .tab-item {
  padding: 8px 0;
}
.a-t-38 .sticky-bg {
  z-index: 2;
  background: var(--bg);
  border-radius: 30px;
  height: 42px;
  border: 1px solid var(--primary);
}
.a-t-38 .sticky-bg.base-user-tab {
  height: 42px;
}
.a-t-38 .sticky-bg.base-user-tab .tab-item {
  display: flex;
  align-items: center;
}
.a-t-38 .sticky-bg.base-user-tab .tab-item.active {
  background: var(--primary);
  border-radius: 30px;
  color: var(--btn-text2) !important;
}
.a-t-38 .sticky-bg.base-user-tab .tab-item:after {
  content: "";
  height: 0;
}
.a-t-38 .recharge-account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-input);
  color: var(--text-gray);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-38 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
.a-t-38 .celue {
  background: #0000000d !important;
}
.a-t-38 .lang-cell {
  border-style: solid !important;
  border-color: var(--border-color) !important;
}
.a-t-38 .customer-calendar-36 {
  --van-calendar-range-edge-background: var(--primary);
  --van-button-primary-background: var(--primary);
  --van-button-primary-border-color: var(--primary);
}
.a-t-38 .customer-calendar-36 .van-calendar {
  max-width: 720px;
  margin: 0 auto;
}
.a-t-38
  .customer-calendar-36
  .van-calendar
  .van-calendar__day:not(
    .van-calendar__day--disabled,
    .van-calendar__day--selected,
    .van-calendar__day--start,
    .van-calendar__day--end,
    .van-calendar__day--start-end
  ) {
  color: var(--primary) !important;
}
.a-t-39 {
  --radius: 20px;
  --btn-radius: 53px;
  --card-radius: 5px;
  --padding: 20px;
  --mg: 16px;
  --card-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
  --bg-card2: var(--bg-weight);
  --btn-text: #fff;
  --btn-bg3: #000;
  --btn-text2: #fff;
  --btn-text3: #3d3d3d;
  --btn-text4: #001d77;
  --border-color: #e0e0e0;
  --text-gray: rgba(255, 255, 255, 0.7);
  --text-gray6: #999999;
  --golden-gradient: var(--btn-bg);
  font-family: Poppins, Poppins;
}
.a-t-39 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-39 .font-playgram {
  font-family: Playgram, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-39.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-39.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--text-white);
  padding: 4px;
  box-shadow: var(--box-shadow);
}
.a-t-39.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #f4f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-39.base-draw-box .base-sign-btn,
.a-t-39.base-draw-box .base-draw-box-btn,
.a-t-39.base-sign .base-sign-btn,
.a-t-39.base-sign .base-draw-box-btn {
  background: var(--text-white);
  box-shadow: var(--box-shadow);
  padding: 4px;
  width: 40px;
  height: 40px;
}
.a-t-39.base-draw-box .base-sign-btn:before,
.a-t-39.base-draw-box .base-draw-box-btn:before,
.a-t-39.base-sign .base-sign-btn:before,
.a-t-39.base-sign .base-draw-box-btn:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
}
.a-t-39.base-draw-box .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-39.base-draw-box .base-sign-btn .i-tabler-gift,
.a-t-39.base-draw-box .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-39.base-draw-box .base-draw-box-btn .i-tabler-gift,
.a-t-39.base-sign .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-39.base-sign .base-sign-btn .i-tabler-gift,
.a-t-39.base-sign .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-39.base-sign .base-draw-box-btn .i-tabler-gift {
  color: var(--text-white) !important;
  font-size: 24px;
}
.a-t-39.sign-wrap {
  box-shadow: none !important;
  background-image: linear-gradient(
    180deg,
    var(--primary) 25.91%,
    rgba(1, 103, 255, 0) 80%,
    #fff
  ) !important;
}
.a-t-39.sign-wrap .tips {
  color: #eee;
}
.a-t-39.sign-wrap .tips2 {
  color: #aaa;
}
.a-t-39 .base-logo {
  width: 90px;
  height: 90px;
}
.a-t-39 .base-logo .site-img {
  border-radius: 20px;
}
.a-t-39 .base-lang-wrap {
  border-radius: var(--card-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
  padding: 0 8px;
  height: 32px;
  line-height: 14px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--primary);
}
.a-t-39 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 18px;
}
.a-t-39 .base-input .label {
  margin-bottom: 12px;
}
.a-t-39 .base-input.is-textarea .input-box {
  padding: 12px 16px;
  min-height: 44px;
  height: auto;
}
.a-t-39 .base-input .input-box {
  padding: 12px 16px;
  box-sizing: border-box;
  min-height: 44px;
  background: var(--bg-second);
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 36px;
}
.a-t-39 .base-input .input-box input::state(webkit-input-placeholder),
.a-t-39 .base-input .input-box textarea::state(webkit-input-placeholder) {
  color: #999;
}
.a-t-39 .base-input .input-box input::placeholder,
.a-t-39 .base-input .input-box textarea::-webkit-input-placeholder {
  color: #999;
}
.a-t-39 .base-input .input-box input::-webkit-input-placeholder,
.a-t-39 .base-input .input-box textarea::-webkit-input-placeholder {
  color: #999;
}
.a-t-39 .base-input .input-box input:-moz-placeholder,
.a-t-39 .base-input .input-box textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.a-t-39 .base-input .input-box input::-moz-placeholder,
.a-t-39 .base-input .input-box textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.a-t-39 .base-input .input-box input:-ms-input-placeholder,
.a-t-39 .base-input .input-box textarea::-webkit-input-placeholder {
  color: #999;
}
.a-t-39 .base-input .input-box input::-ms-input-placeholder,
.a-t-39 .base-input .input-box textarea::-webkit-input-placeholder {
  color: #999;
}
.a-t-39 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
  color: #000;
}
.a-t-39 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #999;
}
.a-t-39 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  height: 53px;
  background: transparent;
}
.a-t-39 .base-main-btn-content {
  border-radius: var(--btn-radius);
  color: var(--text-white);
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-bg);
  text-align: center;
}
.a-t-39 .base-user-tab {
  position: relative;
  width: 100%;
  background: transparent;
  min-height: 44px;
  column-gap: 4px;
}
.a-t-39 .base-user-tab .tab-item {
  width: 100%;
  color: var(--primary);
  font-size: 16px;
  position: relative;
  border-radius: 4px;
  background: var(--bg-weight);
  font-size: 14px;
}
.a-t-39 .base-user-tab .tab-item div {
  width: 100%;
  padding: 0 4px;
}
.a-t-39 .base-user-tab .tab-item:first-of-type {
  border-radius: 44px 10px 10px 44px;
}
.a-t-39 .base-user-tab .tab-item:last-of-type {
  border-radius: 10px 44px 44px 10px;
}
.a-t-39 .base-user-tab .tab-item.active {
  background: var(--primary);
  color: #fff;
}
.a-t-39 .base-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--base-user-tab-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-left: 10px;
}
.a-t-39 .base-section-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 10px;
  width: 3px;
  height: 16px;
  background: var(--primary);
}
.a-t-39 .base-section-title .more {
  display: flex;
  font-size: 14px;
  align-items: center;
  font-weight: 400;
  color: var(--btn-text);
}
.a-t-39 .base-section-title .more span:before {
  display: none;
}
.a-t-39 .container-login {
  position: relative;
  padding: 18px 0 0;
  min-height: calc(var(--vh, 1vh) * 100);
}
.a-t-39 .container-login.c-1 {
  background: url(./t-1-login-bg-3otEhofc.png);
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.a-t-39 .container-login.c-2 {
  background: url(./t-2-login-bg-D-zZOMSF.png);
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.a-t-39 .container-login .base-input {
  color: #000 !important;
}
.a-t-39 .container-login .base-input .input-box {
  background: var(--bg-input);
}
.a-t-39 .container-login .base-input .input-pwd-eye {
  color: var(--text-gray) !important;
}
.a-t-39 .container-login .container-form {
  padding: 0 30px;
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 10px 0 30px;
}
.a-t-39 .container-login .base-logo .site-name {
  color: var(--btn-text2);
}
.a-t-39 .container-login .top-info {
  position: relative;
  z-index: 2;
  height: 250px;
}
.a-t-39 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-39 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-right: 16px;
  border: 1px solid #fff;
}
.a-t-39 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-39 .container-login .top-info .top-tools .base-lang-wrap {
  padding: 0 8px;
  background: var(--bg-weight);
  color: var(--primary);
  border-radius: 10px 0 0 10px;
}
.a-t-39 .container-login .top-info .base-user-tab {
  position: absolute;
  bottom: 12px;
  left: 0;
}
.a-t-39 .container-login .top-info .base-logo {
  width: 100px;
  height: 100px;
  margin-top: 5px;
}
.a-t-39 .container-login .auto-login {
  color: #010b2a80;
  font-size: 12px;
}
.a-t-39 .container-login .login-content {
  position: relative;
  z-index: 1;
  padding: 10px 0;
  border-radius: 20px 20px 0 0;
  min-height: calc(var(--vh, 1vh) * 100 - 181px - 20px);
  background: #fff;
}
.a-t-39 .container-login .login-content .login-tools {
  margin: 0 auto;
  padding: 0 30px;
}
.a-t-39 .container-form {
  border: 1px solid var(--border-color2);
  margin: var(--mg) auto 0;
  padding: var(--padding);
  box-shadow: var(--card-shadow);
  border-radius: var(--card-radius);
}
.a-t-39 .container-card {
  background: var(--bg-card);
  border-radius: var(--card-radius);
  border: 1px solid var(--border-color2);
  box-shadow: none;
  padding: 10px var(--mg);
  z-index: 0;
}
.a-t-39 .container-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 200px;
  z-index: 0;
  pointer-events: none;
}
.a-t-39 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-39 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-39 .small-logo .site-name {
  font-size: 14px;
}
.a-t-39 .navigation .navigation-content {
  color: #fff;
}
.a-t-39 .tab-bar-wrap {
  bottom: 20px;
}
.a-t-39 .tab-bar-wrap .tab-bar {
  width: 94%;
  padding: 0 4px;
  border-radius: var(--card-radius);
  border: 1px solid var(--border-color2);
  background: var(--bg-tab);
}
.a-t-39 .tab-bar-wrap .tab-bar .tab-item {
  padding: 8px 0;
}
.a-t-39 .sticky-bg {
  z-index: 2;
  background: var(--bg-card);
  border-radius: var(--card-radius);
}
.a-t-39 .sticky-bg.base-user-tab .tab-item {
  display: flex;
  align-items: center;
}
.a-t-39 .recharge-account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-second);
  color: var(--btn-text);
  border-radius: var(--card-radius);
  padding: 10px;
  margin: 10px 0;
  font-size: 14px !important;
}
.a-t-39 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
.a-t-39 .celue {
  background: #0000000d !important;
}
.a-t-39 .lang-cell {
  background: var(--bg-second);
  border: none !important;
  margin-bottom: 10px !important;
  padding: 10px;
  border-radius: var(--card-radius);
}
.a-t-39.base-help .base-help-item {
  background: var(--bg-second);
}
#app.a-t-39 {
  position: relative;
  background: var(--bg) url(./bg-tag-DH0G-IUF.png) no-repeat;
  background-size: 100% auto;
  background-position: center;
  background-attachment: fixed;
}
.a-t-40 {
  --radius: 20px;
  --btn-radius: 8px;
  --card-radius: 8px;
  --padding: 20px;
  --mg: 16px;
  --card-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
  --bg-card2: var(--bg-card);
  --btn-text: #fff;
  --btn-bg3: #000;
  --btn-text2: #fff;
  --btn-text3: #3d3d3d;
  --btn-text4: #001d77;
  --border-color: #e0e0e0;
  --text-gray: #636983;
  --text-gray6: #999999;
  --golden-gradient: var(--btn-bg);
}
.a-t-40 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-40 .font-playgram {
  font-family: Playgram, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-40.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-40.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--text-white);
  padding: 4px;
  box-shadow: var(--box-shadow);
}
.a-t-40.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #f4f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-40.base-draw-box .base-sign-btn,
.a-t-40.base-draw-box .base-draw-box-btn,
.a-t-40.base-sign .base-sign-btn,
.a-t-40.base-sign .base-draw-box-btn {
  background: var(--text-white);
  box-shadow: var(--box-shadow);
  padding: 4px;
  width: 40px;
  height: 40px;
}
.a-t-40.base-draw-box .base-sign-btn:before,
.a-t-40.base-draw-box .base-draw-box-btn:before,
.a-t-40.base-sign .base-sign-btn:before,
.a-t-40.base-sign .base-draw-box-btn:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
}
.a-t-40.base-draw-box .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-40.base-draw-box .base-sign-btn .i-tabler-gift,
.a-t-40.base-draw-box .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-40.base-draw-box .base-draw-box-btn .i-tabler-gift,
.a-t-40.base-sign .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-40.base-sign .base-sign-btn .i-tabler-gift,
.a-t-40.base-sign .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-40.base-sign .base-draw-box-btn .i-tabler-gift {
  color: var(--text-white) !important;
  font-size: 24px;
}
.a-t-40.sign-wrap {
  box-shadow: none !important;
  background-image: linear-gradient(
    180deg,
    var(--primary) 25.91%,
    rgba(1, 103, 255, 0) 80%,
    #fff
  ) !important;
}
.a-t-40.sign-wrap .tips {
  color: #eee;
}
.a-t-40.sign-wrap .tips2 {
  color: #aaa;
}
.a-t-40 .base-logo {
  width: 90px;
  height: 90px;
}
.a-t-40 .base-logo .site-img {
  border-radius: 20px;
}
.a-t-40 .base-lang-wrap {
  border-radius: var(--card-radius);
  background: var(--primary);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
  padding: 0 8px;
  height: 32px;
  line-height: 14px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--base-btn-text);
}
.a-t-40 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 18px;
}
.a-t-40 .base-input .label {
  margin-bottom: 12px;
}
.a-t-40 .base-input.is-textarea .input-box {
  padding: 12px 0;
  min-height: 44px;
  height: auto;
}
.a-t-40 .base-input .input-box {
  padding: 12px 0;
  box-sizing: border-box;
  min-height: 44px;
  background: transparent;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  display: flex;
  align-items: center;
}
.a-t-40 .base-input .input-box input::state(webkit-input-placeholder),
.a-t-40 .base-input .input-box textarea::state(webkit-input-placeholder) {
  color: #999;
}
.a-t-40 .base-input .input-box input::placeholder,
.a-t-40 .base-input .input-box textarea::-webkit-input-placeholder {
  color: #999;
}
.a-t-40 .base-input .input-box input::-webkit-input-placeholder,
.a-t-40 .base-input .input-box textarea::-webkit-input-placeholder {
  color: #999;
}
.a-t-40 .base-input .input-box input:-moz-placeholder,
.a-t-40 .base-input .input-box textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.a-t-40 .base-input .input-box input::-moz-placeholder,
.a-t-40 .base-input .input-box textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.a-t-40 .base-input .input-box input:-ms-input-placeholder,
.a-t-40 .base-input .input-box textarea::-webkit-input-placeholder {
  color: #999;
}
.a-t-40 .base-input .input-box input::-ms-input-placeholder,
.a-t-40 .base-input .input-box textarea::-webkit-input-placeholder {
  color: #999;
}
.a-t-40 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
  color: #000;
}
.a-t-40 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #999;
}
.a-t-40 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  height: 51px;
  background: transparent;
}
.a-t-40 .base-main-btn-content {
  border-radius: var(--btn-radius);
  color: var(--base-btn-text);
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-bg);
  text-align: center;
}
.a-t-40 .base-user-tab {
  position: relative;
  width: 100%;
  background: transparent;
  min-height: 44px;
  column-gap: 4px;
  color: var(--btn-text);
}
.a-t-40 .base-user-tab .tab-item {
  width: 100%;
  font-size: 14px;
  position: relative;
}
.a-t-40 .base-user-tab .tab-item.active {
  font-weight: 700;
  background: transparent;
}
.a-t-40 .base-user-tab .tab-item.active:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%);
  width: 38px;
  height: 21px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHkAAABLCAYAAABUSCjvAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAO5SURBVHic7Z3hURsxEIXfugJKODowFQQqSFJBTAekAkwFpAPSgaECkwpwKrA6wB28/JBMMBjj80laSd5vxsMPmPP63ghpP8m2oFFIdgDGAL6En114AMAqPByABYC/AO5FZJW5TOMQSE5IzngYc5Ln2q/B+IAQ7vLAcC3skiHZkbyLFO5bZiRPtF/jURMCXiYKeM2S5Fj7tR4lJMcknxMHvObZgs5M5oCrD1q0C+gLfWv0BEBjrlwBOBMRp/DcBzPSLqAPIeA5dAJGeN55qKMaqhnJ9KvcJ/wXGpo4ABe1jOgqRnIIeI4yAgZ8HdW0V1WEDOAWXk2WxBi+LmMoJG8zr6L7MtW+R1VDcqqd4J5Mte9VlZC80k6uJ1Pte1YV9JsNNTLRvnfbKK6FordKmr3wEFbwrdVCu5DXFBUydW1WLBwK66GLaaGob7Ni0aEwK1bESGZZNisWDoWMaPWRzPJsViw6ADPtIoACQkaZNisWY5J32kWohkzyFsBEs4YMTHisPTTrsVmxmGrda5WFF8krHKfc/ykiv3I/afaQ6a2Q+jylyHcRuc/5hFlDZt02KxbZrVi2kNmGzYqFQ8YeOsvqmu3YrFh0yGjFko9ktmmzYuHgT38mfaNd0pHMdm1WLDr4+5OU1P+uW7ZZsUhuxZKFHJr/SarrN0ZSK5ZkTg4FX6e4duPciMg09kWjh3zENisW0a1Y1JBJfkMh22uVE9WKRQvZbFZUolqxKCG/kh1djOsZACJascEhW8BJcYgQ9KCQzWZlwWGgFRvaJ9sITk+HgVbs4JCDpTGblYdBVuygkM1mqXCwFes9J5vNUqe3FesVsh3dKYZeVmzvkOk/hjD5tpixN3tbsb1CNptVJHtbsU9DNtlRNA57yJKdIVvAVeDwSdAfhvzq6I71wuXjsMOK7eqTZ7CAa6HDjkXx1pCDXTlPU4+RiA+t2LuQzWZVzVYrtjEnm81qhg0r9hKyHd1pjhdZIsDLSnoJkx0t4RBaq/WcfA0LuDU6hKlXbBQ3z+kIfiVtAbfL+Qj+a+6Mdvk6glmt1umEJLWrMNJSwoe1GYkZwW8+G+2yGsF/f7DRLs5Cbp/HEYAH7SqMpDys3fUSdsSnRZyInK5X1zeqpRipuAE2txrnsNMgLfEoIhfAZp98Cb89ZdSPg88TwPuTIR3sCG7tOLw5orthvMIvLmBtVa04bDmD/U5riogTkTP4SdtsWB04AJcicrrtkP1n76A4gd+l+gG/KDuB7T2XwAo+2AWAPyLye9cf/wO88DLRvzvo5QAAAABJRU5ErkJggg==)
    no-repeat;
  background-size: 100% auto;
}
.a-t-40 .base-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  font-style: italic;
}
.a-t-40 .base-section-title .more {
  display: flex;
  font-size: 14px;
  align-items: center;
  font-weight: 400;
  color: var(--btn-text);
}
.a-t-40 .base-section-title .more span:before {
  display: none;
}
.a-t-40 .container-login {
  position: relative;
  padding: 18px 0 0;
  min-height: calc(var(--vh, 1vh) * 100);
}
.a-t-40 .container-login.c-1 {
  background: url(./t-1-login-bg-BvJ9ra7g.png);
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.a-t-40 .container-login.c-2 {
  background: url(./t-2-login-bg-CeQd6KTQ.png);
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.a-t-40 .container-login .base-input {
  color: #010b2e !important;
}
.a-t-40 .container-login .base-input .input-pwd-eye {
  color: var(--text-gray6) !important;
}
.a-t-40 .container-login .container-form {
  padding: 0 30px;
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 10px 0 30px;
}
.a-t-40 .container-login .base-logo .site-name {
  color: var(--btn-text2);
}
.a-t-40 .container-login .top-info {
  position: relative;
  z-index: 2;
  height: 250px;
}
.a-t-40 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-40 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-right: 16px;
  border: 1px solid #fff;
}
.a-t-40 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-40 .container-login .top-info .top-tools .base-lang-wrap {
  padding: 0 8px;
  background: var(--primary);
  color: var(--base-btn-text);
  border-radius: 10px 10 10 10px;
  margin-right: 16px;
}
.a-t-40 .container-login .top-info .base-user-tab {
  position: absolute;
  bottom: 12px;
  left: 0;
}
.a-t-40 .container-login .top-info .base-logo {
  width: 100px;
  height: 100px;
  margin-top: 5px;
}
.a-t-40 .container-login .auto-login {
  color: #010b2a80;
  font-size: 12px;
}
.a-t-40 .container-login .login-content {
  position: relative;
  z-index: 1;
  padding: 10px 0;
  border-radius: 20px 20px 0 0;
  min-height: calc(var(--vh, 1vh) * 100 - 181px - 20px);
  background: #fff;
}
.a-t-40 .container-login .login-content .login-tools {
  margin: 0 auto;
  padding: 0 30px;
}
.a-t-40 .container-form {
  margin: var(--mg) auto 0;
  padding: var(--padding);
  box-shadow: var(--card-shadow);
  border-radius: var(--card-radius);
}
.a-t-40 .container-card {
  background: var(--bg-card);
  border-radius: var(--card-radius);
  box-shadow: none;
  padding: 10px var(--mg);
  z-index: 0;
}
.a-t-40 .container-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 200px;
  z-index: 0;
  pointer-events: none;
}
.a-t-40 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-40 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-40 .small-logo .site-name {
  font-size: 14px;
}
.a-t-40 .navigation .navigation-content {
  color: #fff;
}
.a-t-40 .tab-bar-wrap .tab-bar {
  width: 100%;
  padding: 0 4px;
  border-radius: var(--card-radius);
  background: var(--bg-tab);
}
.a-t-40 .tab-bar-wrap .tab-bar .tab-item {
  padding: 8px 0;
}
.a-t-40 .sticky-bg {
  z-index: 2;
  background: var(--bg-card);
  border-radius: var(--card-radius);
}
.a-t-40 .sticky-bg.base-user-tab .tab-item {
  display: flex;
  align-items: center;
}
.a-t-40 .recharge-account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-second);
  color: var(--btn-text);
  border-radius: var(--card-radius);
  padding: 10px;
  margin: 10px 0;
  font-size: 14px !important;
}
.a-t-40 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: var(--base-btn-text);
}
.a-t-40 .celue {
  background: #0000000d !important;
}
.a-t-40 .lang-cell {
  background: var(--bg-second);
  border: none !important;
  margin-bottom: 10px !important;
  padding: 10px;
  border-radius: var(--card-radius);
}
.a-t-40.base-help .base-help-item {
  background: var(--bg-second);
}
#app.a-t-40 {
  position: relative;
  background: var(--bg) url(./bg-tag-CZzeMOD5.png) no-repeat;
  background-size: 100% auto;
  background-position: center;
  background-attachment: fixed;
}
.a-t-41 {
  --radius: 20px;
  --btn-radius: 10px;
  --card-radius: 15px;
  --padding: 20px;
  --mg: 16px;
  --card-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
  --bg-card2: var(--bg-weight);
  --btn-text: #000;
  --btn-bg3: #000;
  --btn-text2: #fff;
  --btn-text3: #3d3d3d;
  --btn-text4: #001d77;
  --border-color: #e0e0e0;
  --text-gray: rgba(28, 37, 61, 0.5);
  --text-gray6: #999999;
  --golden-gradient: var(--btn-bg);
  font-family: Poppins, Poppins;
}
.a-t-41 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-41 .font-playgram {
  font-family: Playgram, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-41.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-41.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--text-white);
  padding: 4px;
  box-shadow: var(--box-shadow);
}
.a-t-41.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #f4f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-41.base-draw-box .base-sign-btn,
.a-t-41.base-draw-box .base-draw-box-btn,
.a-t-41.base-sign .base-sign-btn,
.a-t-41.base-sign .base-draw-box-btn {
  background: var(--text-white);
  box-shadow: var(--box-shadow);
  padding: 4px;
  width: 40px;
  height: 40px;
}
.a-t-41.base-draw-box .base-sign-btn:before,
.a-t-41.base-draw-box .base-draw-box-btn:before,
.a-t-41.base-sign .base-sign-btn:before,
.a-t-41.base-sign .base-draw-box-btn:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
}
.a-t-41.base-draw-box .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-41.base-draw-box .base-sign-btn .i-tabler-gift,
.a-t-41.base-draw-box .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-41.base-draw-box .base-draw-box-btn .i-tabler-gift,
.a-t-41.base-sign .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-41.base-sign .base-sign-btn .i-tabler-gift,
.a-t-41.base-sign .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-41.base-sign .base-draw-box-btn .i-tabler-gift {
  color: var(--text-white) !important;
  font-size: 24px;
}
.a-t-41.sign-wrap {
  box-shadow: none !important;
  background-image: linear-gradient(
    180deg,
    var(--primary) 25.91%,
    rgba(1, 103, 255, 0) 80%,
    #fff
  ) !important;
}
.a-t-41.sign-wrap .tips {
  color: #eee;
}
.a-t-41.sign-wrap .tips2 {
  color: #aaa;
}
.a-t-41 .base-logo {
  width: 90px;
  height: 90px;
}
.a-t-41 .base-logo .site-img {
  border-radius: 20px;
}
.a-t-41 .base-lang-wrap {
  border-radius: var(--radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
  padding: 0 8px;
  height: 32px;
  line-height: 14px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid var(--border-color2);
  color: var(--primary);
}
.a-t-41 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 18px;
}
.a-t-41 .base-input .label {
  margin-bottom: 12px;
}
.a-t-41 .base-input.is-textarea .input-box {
  padding: 0;
  min-height: 52px;
  height: auto;
}
.a-t-41 .base-input .input-box {
  padding: 0;
  box-sizing: border-box;
  height: 52px;
  background: var(--bg-input);
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}
.a-t-41 .base-input .input-box input::state(webkit-input-placeholder),
.a-t-41 .base-input .input-box textarea::state(webkit-input-placeholder) {
  color: #fff6;
}
.a-t-41 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-41 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-41 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  height: 46px;
  background: transparent;
}
.a-t-41 .base-main-btn-content {
  border-radius: var(--btn-radius);
  color: var(--text-white);
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-bg);
  text-align: center;
}
.a-t-41 .base-main-btn.disable .base-main-btn-content {
  background: var(--bg-weight) !important;
  color: var(--text-gray) !important;
}
.a-t-41 .base-user-tab {
  position: relative;
  width: 100%;
  background: transparent;
  min-height: 52px;
}
.a-t-41 .base-user-tab .tab-item {
  color: var(--text-gray);
  font-size: 16px;
  position: relative;
}
.a-t-41 .base-user-tab .tab-item:after {
  content: "";
  position: absolute;
  right: -0.5px;
  width: 1px;
  height: 40%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-gray);
}
.a-t-41 .base-user-tab .tab-item:last-child:after {
  display: none;
}
.a-t-41 .base-user-tab .tab-item div {
  line-height: 14px;
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 2px;
}
.a-t-41 .base-user-tab .tab-item.active {
  background: transparent;
}
.a-t-41 .base-user-tab .tab-item.active div {
  color: #000;
  position: relative;
  font-weight: 700;
}
.a-t-41 .base-user-tab .tab-item.active div:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 50%;
  transform: translate(-50%);
  height: 2px;
  background: var(--primary);
}
.a-t-41 .base-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--btn-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0;
  font-style: italic;
}
.a-t-41 .base-section-title.c-1 span:first-child {
  position: relative;
}
.a-t-41 .base-section-title.c-1 span:first-child:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -32px;
  transform: translateY(-50%);
  width: 22px;
  height: 15px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAAA8CAYAAADi8H14AAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAQ7SURBVHic7ZzrceowEIUPvg0oHagDVII6CB3gEujg+lbApAInFSSpQKQCmwpEB3Yq0P1hCxTHPK2VzOPM7NgQJjt87Ohh7e4EdGIABAAJYNq+5u2VtZ+pHSsBrNtr2b43Zn9RxAGkABQAM9AUgAV2cMbg72xNPP0fCWCO5stSaAXgX3vd608IASEEptMphBBgjIExBs45AGCz2WyvZVlivV6jLEuUZXnMXzQJ+Imec6Lshz8ppcnz3FRVZS5VVVUmz3MjpezzJykB7hMHkCMc2F+2WCyM1vpiqIdgZ1lmGGOuv7z9zkGUAtA+YV1ijDHz/v7uHfAB0BWAGSlZAMuYUPtssViQQTbGGK11d+hYUoBlAIrYMPeZlHLQGHyKlsul61PB42qDYwRDwjETQpCMya6UUoZzbn0W8DAujzpyu8Y5J49krbULWWNgJKvY0M41IQQp4B7IxaVwRzehnWrUE18P5LMnvllsSEMtz3NyyEVRuD7TU+FyNGu+6JCGGOecfNIzxpgsy6xPjRMnvTw2HF+Wpik5YGOMu07Oj8GVsaH4tqIoyAFrrV2f4hBgFRuIb5NSkgM2xpg0Ta1PtQ+ujA2DypRS5IA7qwppof5xAOcI+MQopCaTCWYz2uc0jDF8f39jtVrZtz5//B0jiDRKC7Gi6IzFHACSFnB61s91hXIii0ycc0gp7UsJ7AA/k3uPrLe3tyB+5vP59hZozuQYmo3FzauqKjDm9Uzzl+q6xtPTk335lODIuu2W1HO46V2MMQixRSruCvDX11cQPw5gmaBJ0rgLhYhgAJhOt0indxXBdR0meceJYJbAcybLmGUTT6jlTKT8rgCHimAHMJug2XXcjYwJ83UnkyYrLTnyuYcGKsGVpG36EPUmw8oZ6+sHYFrVCYBNaK+x9IhgYjnrU1I5G5oyQZNGfxdydlikWq+3SNcJRpDFHUoxIvjxuNKz+h5X1riDKJZSBpnkPj4+7O0K7SQHAGEe90fU83OYQxvn5OQT2FUZcTSpPzerGMMDnAjeAHgl9R5RoYaHl5cXe7tCz/JXYgTH6xQWIvGkqiq3YEbu+xFUbBi+LVTqlJNlqfbBBZrTjehQfFqotKlTotcqjw3Fl40xfRW4kqqiY8YYC5Iu5ZR3VTgjty+NDWioUVaBWimlXJ9nZxc+imAOaGgRjNXV1MhZC7Fq6MBVl8IFmgdBOja0U00IEboQsYCHU3mOK4jkEFVFRVF0qzz5ULhWDCPehISIXGcj4S1y+zS6ie9W2hm4mmEEhYqcc9JqTq21Wzlkh4SUEqwrjsg7vjRNSYYFrbXJsswdaw0iFghJ3H5TpEEHeT7bev0FXYemVzSnLqtD/rptvWw7L7etV13XqOv6WFuvrr/RiKFp7uYjqhWaMY+PyN/Z8hXBfbKtDgWaLHqBXZvDbqvDTXtdo4maIa0VQ/k7Sf8B44ekJKWD7HgAAAAASUVORK5CYII=)
    no-repeat;
  background-size: 100% 100%;
}
.a-t-41 .base-section-title.c-2 span:first-child {
  position: relative;
}
.a-t-41 .base-section-title.c-2 span:first-child:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -32px;
  transform: translateY(-50%);
  width: 22px;
  height: 15px;
  background: url(data:image/png;base64,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)
    no-repeat;
  background-size: 100% 100%;
}
.a-t-41 .base-section-title .more {
  display: flex;
  font-size: 14px;
  align-items: center;
  font-weight: 400;
  color: var(--text-gray);
}
.a-t-41 .base-section-title .more span:before {
  display: none;
}
.a-t-41 .container-login {
  position: relative;
  background: var(--primary);
  padding: 18px 0 0;
  min-height: calc(var(--vh, 1vh) * 100);
}
.a-t-41 .container-login .base-input {
  color: #000 !important;
}
.a-t-41 .container-login .base-input .input-box {
  background: var(--bg-input);
}
.a-t-41 .container-login .base-input .input-pwd-eye {
  color: var(--text-gray) !important;
}
.a-t-41 .container-login .container-form {
  padding: 0 30px;
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 10px 0 30px;
}
.a-t-41 .container-login .base-logo .site-name {
  color: var(--btn-text2);
}
.a-t-41 .container-login .top-info {
  position: relative;
  z-index: 2;
  height: 250px;
}
.a-t-41 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-41 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-right: 16px;
  border: 1px solid #fff;
}
.a-t-41 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-41 .container-login .top-info .top-tools .base-lang-wrap {
  padding: 0 8px;
  background: var(--bg-weight);
  color: var(--primary);
  border-radius: 10px 0 0 10px;
}
.a-t-41 .container-login .top-info .base-user-tab {
  position: absolute;
  bottom: 12px;
  left: 0;
}
.a-t-41 .container-login .top-info .base-logo {
  width: 100px;
  height: 100px;
  margin-top: 5px;
}
.a-t-41 .container-login .auto-login {
  color: #010b2a80;
  font-size: 12px;
}
.a-t-41 .container-login .login-content {
  position: relative;
  z-index: 1;
  padding: 10px 0;
  border-radius: 20px 20px 0 0;
  min-height: calc(var(--vh, 1vh) * 100 - 181px - 20px);
  background: #fff;
}
.a-t-41 .container-login .login-content .login-tools {
  margin: 0 auto;
  padding: 0 30px;
}
.a-t-41 .container-form {
  border: 1px solid var(--border-color);
  margin: var(--mg) auto 0;
  padding: var(--padding);
  box-shadow: var(--card-shadow);
}
.a-t-41 .container-card {
  background: var(--bg-card);
  box-shadow: none;
  border: none;
  padding: 10px var(--mg);
  z-index: 0;
}
.a-t-41 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-41 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-41 .small-logo .site-name {
  font-size: 14px;
}
.a-t-41 .tab-bar-wrap .tab-bar {
  background: var(--bg-tab);
  box-shadow: inset 0 1px #dadada;
}
.a-t-41 .tab-bar-wrap .tab-bar .tab-item {
  padding: 8px 0;
}
.a-t-41 .navigation-content {
  border-bottom: 1px solid var(--border-color2) !important;
  background: var(--bg-card) !important;
}
.a-t-41 .sticky-bg {
  z-index: 2;
  background: var(--bg-card);
  border-radius: 30px;
  height: 42px;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
}
.a-t-41 .sticky-bg.base-user-tab {
  height: 42px;
}
.a-t-41 .sticky-bg.base-user-tab .tab-item {
  display: flex;
  align-items: center;
}
.a-t-41 .sticky-bg.base-user-tab .tab-item.active {
  background: var(--primary);
  border-radius: 30px;
  color: var(--btn-text2) !important;
}
.a-t-41 .sticky-bg.base-user-tab .tab-item:after {
  content: "";
  height: 0;
}
.a-t-41 .recharge-account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-weight);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-41 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
.a-t-41 .celue {
  background: #0000000d !important;
}
.a-t-41 .lang-cell {
  border-style: solid !important;
  border-color: var(--border-color) !important;
}
.a-t-41 .customer-calendar-41 {
  --van-calendar-range-edge-background: var(--primary);
  --van-button-primary-background: var(--primary);
  --van-button-primary-border-color: var(--primary);
}
.a-t-41 .customer-calendar-41 .van-calendar {
  max-width: 720px;
  margin: 0 auto;
}
.a-t-41
  .customer-calendar-41
  .van-calendar
  .van-calendar__day:not(
    .van-calendar__day--disabled,
    .van-calendar__day--selected,
    .van-calendar__day--start,
    .van-calendar__day--end,
    .van-calendar__day--start-end
  ) {
  color: var(--primary) !important;
}
.a-t-42 {
  --radius: 8px;
  --btn-radius: 8px;
  --card-radius: 8px;
  --padding: 20px;
  --mg: 16px;
  --card-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
  --bg-card2: var(--bg-weight);
  --btn-text: #fff;
  --btn-bg3: #000;
  --btn-text2: #000;
  --btn-text3: #3d3d3d;
  --btn-text4: #001d77;
  --border-color: #e0e0e0;
  --text-gray: rgba(255, 255, 255, 0.5);
  --text-gray6: #999999;
  --golden-gradient: var(--btn-bg);
  font-family: Poppins, Poppins;
}
.a-t-42 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-42 .font-playgram {
  font-family: Playgram, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-42.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-42.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--text-white);
  padding: 4px;
  box-shadow: var(--box-shadow);
}
.a-t-42.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #f4f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-42.base-draw-box .base-sign-btn,
.a-t-42.base-draw-box .base-draw-box-btn,
.a-t-42.base-sign .base-sign-btn,
.a-t-42.base-sign .base-draw-box-btn {
  background: var(--text-white);
  box-shadow: var(--box-shadow);
  padding: 4px;
  width: 40px;
  height: 40px;
}
.a-t-42.base-draw-box .base-sign-btn:before,
.a-t-42.base-draw-box .base-draw-box-btn:before,
.a-t-42.base-sign .base-sign-btn:before,
.a-t-42.base-sign .base-draw-box-btn:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
}
.a-t-42.base-draw-box .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-42.base-draw-box .base-sign-btn .i-tabler-gift,
.a-t-42.base-draw-box .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-42.base-draw-box .base-draw-box-btn .i-tabler-gift,
.a-t-42.base-sign .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-42.base-sign .base-sign-btn .i-tabler-gift,
.a-t-42.base-sign .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-42.base-sign .base-draw-box-btn .i-tabler-gift {
  color: var(--text-white) !important;
  font-size: 24px;
}
.a-t-42.sign-wrap {
  box-shadow: none !important;
  background-image: linear-gradient(
    180deg,
    var(--primary) 25.91%,
    rgba(1, 103, 255, 0) 80%,
    #fff
  ) !important;
}
.a-t-42.sign-wrap .tips {
  color: #eee;
}
.a-t-42.sign-wrap .tips2 {
  color: #aaa;
}
.a-t-42 .base-logo {
  width: 90px;
  height: 90px;
}
.a-t-42 .base-logo .site-img {
  border-radius: 20px;
}
.a-t-42 .base-lang-wrap {
  border-radius: var(--radius);
  background: var(--primary);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
  padding: 0 8px;
  height: 32px;
  line-height: 14px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #000;
}
.a-t-42 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 18px;
}
.a-t-42 .base-input .label {
  margin-bottom: 12px;
}
.a-t-42 .base-input.is-textarea .input-box {
  padding: 0 14px;
  min-height: 52px;
  height: auto;
}
.a-t-42 .base-input .input-box {
  padding: 0 14px;
  box-sizing: border-box;
  height: 48px;
  background: var(--bg-input);
  position: relative;
  display: flex;
  align-items: center;
  border-radius: var(--card-radius);
  border: 1px solid var(--border-color2);
}
.a-t-42 .base-input .input-box input::state(webkit-input-placeholder),
.a-t-42 .base-input .input-box textarea::state(webkit-input-placeholder) {
  color: #cbcbcb;
}
.a-t-42 .base-input .input-box input::placeholder,
.a-t-42 .base-input .input-box textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
.a-t-42 .base-input .input-box input::-webkit-input-placeholder,
.a-t-42 .base-input .input-box textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
.a-t-42 .base-input .input-box input:-moz-placeholder,
.a-t-42 .base-input .input-box textarea::-webkit-input-placeholder {
  color: #cbcbcb;
  opacity: 1;
}
.a-t-42 .base-input .input-box input::-moz-placeholder,
.a-t-42 .base-input .input-box textarea::-webkit-input-placeholder {
  color: #cbcbcb;
  opacity: 1;
}
.a-t-42 .base-input .input-box input:-ms-input-placeholder,
.a-t-42 .base-input .input-box textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
.a-t-42 .base-input .input-box input::-ms-input-placeholder,
.a-t-42 .base-input .input-box textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
.a-t-42 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-42 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-42 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  height: 50px;
  background: transparent;
  border-radius: var(--btn-radius);
  overflow: hidden;
}
.a-t-42 .base-main-btn-content {
  border-radius: var(--btn-radius);
  color: var(--base-btn-text);
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-bg);
  text-align: center;
}
.a-t-42 .base-main-btn.disable .base-main-btn-content {
  background: var(--bg-weight) !important;
  color: var(--text-gray) !important;
}
.a-t-42 .base-user-tab {
  position: relative;
  width: 100%;
  background: transparent;
  min-height: 37px;
}
.a-t-42 .base-user-tab .tab-item {
  color: var(--btn-text);
  font-size: 14px;
  position: relative;
}
.a-t-42 .base-user-tab .tab-item.active {
  background: var(--primary);
  border-radius: var(--btn-radius);
}
.a-t-42 .base-user-tab .tab-item.active div {
  color: #000;
  position: relative;
  font-weight: 700;
}
.a-t-42 .base-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--btn-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0;
}
.a-t-42 .base-section-title .more {
  display: flex;
  font-size: 14px;
  align-items: center;
  font-weight: 400;
  color: var(--text-gray);
}
.a-t-42 .base-section-title .more span:before {
  display: none;
}
.a-t-42 .container-login {
  position: relative;
  padding: 18px 0 0;
  min-height: calc(var(--vh, 1vh) * 100);
}
.a-t-42 .container-login .container-form {
  padding: 0 30px;
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 10px 0 30px;
}
.a-t-42 .container-login .base-logo .site-name {
  color: var(--btn-text2);
}
.a-t-42 .container-login .top-info {
  position: relative;
  z-index: 2;
  height: 200px;
}
.a-t-42 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 var(--mg);
}
.a-t-42 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-right: 16px;
  border: 1px solid #fff;
}
.a-t-42 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-42 .container-login .top-info .top-tools .base-lang-wrap {
  padding: 0 8px;
  background: var(--primary);
  color: var(--btn-text2);
  border-radius: var(--btn-radius);
}
.a-t-42 .container-login .top-info .base-user-tab {
  position: absolute;
  bottom: 12px;
  left: 0;
}
.a-t-42 .container-login .top-info .base-logo {
  width: 100px;
  height: 100px;
  margin-top: 5px;
}
.a-t-42 .container-login .top-info .login-tag {
  font-size: 24px;
  font-weight: 700;
  padding: 0 var(--mg);
  position: relative;
}
.a-t-42 .container-login .top-info .login-tag:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 5px;
  left: 6px;
  background: var(--primary);
  transform: translateY(-50%);
  z-index: -1;
}
.a-t-42 .container-login .auto-login {
  color: #010b2a80;
  font-size: 12px;
}
.a-t-42 .container-login .login-content {
  position: relative;
  z-index: 1;
  padding: 10px 0;
  border-radius: 20px 20px 0 0;
  min-height: calc(var(--vh, 1vh) * 100 - 181px - 20px);
}
.a-t-42 .container-login .login-content .login-tools {
  margin: 0 auto;
  padding: 0 30px;
}
.a-t-42 .container-form {
  margin: var(--mg) auto 0;
  padding: var(--padding);
  box-shadow: var(--card-shadow);
}
.a-t-42 .container-card {
  background: var(--bg-card);
  box-shadow: none;
  border: none;
  padding: 10px var(--mg);
  z-index: 0;
}
.a-t-42 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-42 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-42 .small-logo .site-name {
  font-size: 14px;
}
.a-t-42 .tab-bar-wrap .tab-bar {
  background: var(--bg-tab);
}
.a-t-42 .tab-bar-wrap .tab-bar .tab-item {
  padding: 8px 0;
}
.a-t-42 .navigation-content {
  border-bottom: 1px solid var(--border-color2) !important;
  background: var(--bg) !important;
}
.a-t-42 .sticky-bg {
  z-index: 2;
  background: var(--bg-card);
  border-radius: var(--card-radius);
  height: 42px;
  border: 1px solid var(--border-color2);
  box-shadow: var(--card-shadow);
}
.a-t-42 .sticky-bg.base-user-tab {
  height: 42px;
}
.a-t-42 .sticky-bg.base-user-tab .tab-item {
  display: flex;
  align-items: center;
}
.a-t-42 .sticky-bg.base-user-tab .tab-item.active {
  background: var(--primary);
  border-radius: var(--card-radius);
  color: var(--btn-text2) !important;
}
.a-t-42 .sticky-bg.base-user-tab .tab-item:after {
  content: "";
  height: 0;
}
.a-t-42 .recharge-account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-weight);
  border-radius: var(--card-radius);
  border: 1px solid var(--border-color2);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-42 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #000;
}
.a-t-42 .celue {
  background: #0000000d !important;
}
.a-t-42 .lang-cell {
  border-style: solid !important;
  border-color: var(--border-color) !important;
}
.a-t-42 .customer-calendar-42 {
  --van-calendar-range-edge-background: var(--primary);
  --van-button-primary-background: var(--primary);
  --van-button-primary-border-color: var(--primary);
}
.a-t-42 .customer-calendar-42 .van-calendar {
  max-width: 720px;
  margin: 0 auto;
}
.a-t-42
  .customer-calendar-42
  .van-calendar
  .van-calendar__day:not(
    .van-calendar__day--disabled,
    .van-calendar__day--selected,
    .van-calendar__day--start,
    .van-calendar__day--end,
    .van-calendar__day--start-end
  ) {
  color: var(--primary) !important;
}
.a-t-43 {
  --radius: 4px;
  --btn-radius: 10px;
  --card-radius: 0px;
  --padding: 20px;
  --mg: 16px;
  --card-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
  --bg-card2: var(--bg-weight);
  --btn-text: #fff;
  --btn-bg3: #000;
  --btn-text2: #fff;
  --btn-text3: #3d3d3d;
  --btn-text4: #001d77;
  --border-color: #434141;
  --text-gray: #666666;
  --text-gray6: #999999;
  --golden-gradient: var(--btn-bg);
}
.a-t-43 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-43 .font-playgram {
  font-family: Playgram, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-43.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-43.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--text-white);
  padding: 4px;
  box-shadow: var(--box-shadow);
}
.a-t-43.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #f4f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-43.base-draw-box .base-sign-btn,
.a-t-43.base-draw-box .base-draw-box-btn,
.a-t-43.base-sign .base-sign-btn,
.a-t-43.base-sign .base-draw-box-btn {
  background: var(--text-white);
  box-shadow: var(--box-shadow);
  padding: 4px;
  width: 40px;
  height: 40px;
}
.a-t-43.base-draw-box .base-sign-btn:before,
.a-t-43.base-draw-box .base-draw-box-btn:before,
.a-t-43.base-sign .base-sign-btn:before,
.a-t-43.base-sign .base-draw-box-btn:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
}
.a-t-43.base-draw-box .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-43.base-draw-box .base-sign-btn .i-tabler-gift,
.a-t-43.base-draw-box .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-43.base-draw-box .base-draw-box-btn .i-tabler-gift,
.a-t-43.base-sign .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-43.base-sign .base-sign-btn .i-tabler-gift,
.a-t-43.base-sign .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-43.base-sign .base-draw-box-btn .i-tabler-gift {
  color: var(--text-white) !important;
  font-size: 24px;
}
.a-t-43.sign-wrap {
  box-shadow: none !important;
  background-image: linear-gradient(
    180deg,
    var(--primary) 25.91%,
    rgba(1, 103, 255, 0) 80%,
    #fff
  ) !important;
}
.a-t-43.sign-wrap .tips {
  color: #eee;
}
.a-t-43.sign-wrap .tips2 {
  color: #aaa;
}
.a-t-43 .base-logo {
  width: 90px;
  height: 90px;
}
.a-t-43 .base-logo .site-img {
  border-radius: 20px;
}
.a-t-43 .base-lang-wrap {
  border-radius: var(--radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
  padding: 0 8px;
  height: 32px;
  line-height: 14px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid var(--border-color2);
  color: var(--primary);
}
.a-t-43 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 18px;
}
.a-t-43 .base-input .label {
  margin-bottom: 12px;
}
.a-t-43 .base-input.is-textarea .input-box {
  padding: 14px;
  min-height: 52px;
  height: auto;
}
.a-t-43 .base-input .input-box {
  padding: 14px;
  box-sizing: border-box;
  height: 52px;
  background: var(--bg-input);
  position: relative;
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}
.a-t-43 .base-input .input-box input::state(webkit-input-placeholder),
.a-t-43 .base-input .input-box textarea::state(webkit-input-placeholder) {
  color: var(--text-gray6);
}
.a-t-43 .base-input .input-box input::placeholder,
.a-t-43 .base-input .input-box textarea::-webkit-input-placeholder {
  color: var(--text-gray6);
}
.a-t-43 .base-input .input-box input::-webkit-input-placeholder,
.a-t-43 .base-input .input-box textarea::-webkit-input-placeholder {
  color: var(--text-gray6);
}
.a-t-43 .base-input .input-box input:-moz-placeholder,
.a-t-43 .base-input .input-box textarea::-webkit-input-placeholder {
  color: var(--text-gray6);
  opacity: 1;
}
.a-t-43 .base-input .input-box input::-moz-placeholder,
.a-t-43 .base-input .input-box textarea::-webkit-input-placeholder {
  color: var(--text-gray6);
  opacity: 1;
}
.a-t-43 .base-input .input-box input:-ms-input-placeholder,
.a-t-43 .base-input .input-box textarea::-webkit-input-placeholder {
  color: var(--text-gray6);
}
.a-t-43 .base-input .input-box input::-ms-input-placeholder,
.a-t-43 .base-input .input-box textarea::-webkit-input-placeholder {
  color: var(--text-gray6);
}
.a-t-43 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-43 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-43 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  height: 46px;
  background: transparent;
}
.a-t-43 .base-main-btn-content {
  border-radius: var(--btn-radius);
  color: var(--text-white);
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-bg);
  text-align: center;
}
.a-t-43 .base-main-btn.disable .base-main-btn-content {
  background: var(--bg-weight) !important;
  color: var(--text-gray) !important;
}
.a-t-43 .base-user-tab {
  position: relative;
  width: 100%;
  background: transparent;
  min-height: 52px;
}
.a-t-43 .base-user-tab .tab-item {
  color: var(--text-gray);
  font-size: 16px;
  position: relative;
}
.a-t-43 .base-user-tab .tab-item:after {
  content: "";
  position: absolute;
  right: -0.5px;
  width: 1px;
  height: 40%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--border-color);
}
.a-t-43 .base-user-tab .tab-item:last-child:after {
  display: none;
}
.a-t-43 .base-user-tab .tab-item div {
  line-height: 14px;
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 2px;
}
.a-t-43 .base-user-tab .tab-item.active {
  background: transparent;
}
.a-t-43 .base-user-tab .tab-item.active div {
  color: #000;
  position: relative;
  font-weight: 700;
}
.a-t-43 .base-user-tab .tab-item.active div:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 50%;
  transform: translate(-50%);
  height: 2px;
  background: var(--bg);
}
.a-t-43 .base-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--btn-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0;
}
.a-t-43 .base-section-title .more {
  display: flex;
  font-size: 14px;
  align-items: center;
  font-weight: 400;
  color: var(--text-gray);
}
.a-t-43 .base-section-title .more span:before {
  display: none;
}
.a-t-43 .container-login {
  position: relative;
  background: var(--bg);
  padding: 18px 0 0;
  min-height: calc(var(--vh, 1vh) * 100);
}
.a-t-43 .container-login .base-input {
  color: #000 !important;
}
.a-t-43 .container-login .base-input .input-box {
  background: var(--bg-input);
  border: 1px solid #e0e0e0;
}
.a-t-43 .container-login .base-input .input-pwd-eye {
  color: var(--text-gray) !important;
}
.a-t-43 .container-login .container-form {
  padding: 0 30px;
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 10px 0 30px;
}
.a-t-43 .container-login .base-logo .site-name {
  color: var(--btn-text2);
}
.a-t-43 .container-login .top-info {
  position: relative;
  z-index: 2;
  height: 250px;
}
.a-t-43 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-43 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-right: 16px;
  border: 1px solid #fff;
}
.a-t-43 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-43 .container-login .top-info .top-tools .base-lang-wrap {
  padding: 0 8px;
  background: var(--bg-weight);
  color: var(--primary);
  border-radius: 10px 0 0 10px;
}
.a-t-43 .container-login .top-info .base-user-tab {
  position: absolute;
  bottom: 12px;
  left: 0;
}
.a-t-43 .container-login .top-info .base-logo {
  width: 100px;
  height: 100px;
  margin-top: 5px;
}
.a-t-43 .container-login .auto-login {
  color: #010b2a80;
  font-size: 12px;
}
.a-t-43 .container-login .login-content {
  position: relative;
  z-index: 1;
  padding: 10px 0;
  border-radius: 20px 20px 0 0;
  min-height: calc(var(--vh, 1vh) * 100 - 181px - 20px);
  background: #fff;
}
.a-t-43 .container-login .login-content .login-tools {
  margin: 0 auto;
  padding: 0 30px;
}
.a-t-43 .container-form {
  margin: var(--mg) auto 0;
  padding: var(--padding);
  box-shadow: var(--card-shadow);
}
.a-t-43 .container-card {
  background: var(--bg-card);
  box-shadow: none;
  border: none;
  padding: 10px var(--mg);
  z-index: 0;
  width: calc(100% + var(--mg) * 2);
  margin-left: calc(var(--mg) * -1);
}
.a-t-43 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-43 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-43 .small-logo .site-name {
  font-size: 14px;
}
.a-t-43 .tab-bar-wrap .tab-bar {
  background: var(--bg-tab);
}
.a-t-43 .tab-bar-wrap .tab-bar .tab-item {
  padding: 8px 0;
}
.a-t-43 .navigation-content {
  border-bottom: 1px solid var(--border-color2) !important;
  background: var(--bg-card) !important;
}
.a-t-43 .sticky-bg {
  z-index: 2;
  background: var(--bg-card);
  border-radius: 30px;
  height: 42px;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
}
.a-t-43 .sticky-bg.base-user-tab {
  height: 42px;
}
.a-t-43 .sticky-bg.base-user-tab .tab-item {
  display: flex;
  align-items: center;
}
.a-t-43 .sticky-bg.base-user-tab .tab-item.active {
  background: var(--primary);
  border-radius: 30px;
  color: var(--btn-text2) !important;
}
.a-t-43 .sticky-bg.base-user-tab .tab-item:after {
  content: "";
  height: 0;
}
.a-t-43 .recharge-account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-weight);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-43 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
.a-t-43 .celue {
  background: #0000000d !important;
}
.a-t-43 .lang-cell {
  border-style: solid !important;
  border-color: var(--border-color) !important;
}
.a-t-43 .customer-calendar-41 {
  --van-calendar-range-edge-background: var(--primary);
  --van-button-primary-background: var(--primary);
  --van-button-primary-border-color: var(--primary);
}
.a-t-43 .customer-calendar-41 .van-calendar {
  max-width: 720px;
  margin: 0 auto;
}
.a-t-43
  .customer-calendar-41
  .van-calendar
  .van-calendar__day:not(
    .van-calendar__day--disabled,
    .van-calendar__day--selected,
    .van-calendar__day--start,
    .van-calendar__day--end,
    .van-calendar__day--start-end
  ) {
  color: var(--primary) !important;
}
.a-t-44 {
  --radius: 8px;
  --btn-radius: 8px;
  --card-radius: 8px;
  --padding: 20px;
  --mg: 16px;
  --card-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
  --bg-card2: var(--bg-weight);
  --btn-text: #000;
  --btn-bg3: #000;
  --btn-text2: #fff;
  --btn-text3: #3d3d3d;
  --btn-text4: #001d77;
  --border-color: #e0e0e0;
  --text-gray: #999999;
  --text-gray6: #999999;
  --golden-gradient: var(--btn-bg);
}
.a-t-44 .font-anton {
  font-family: Anton, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-44 .font-playgram {
  font-family: Playgram, Helvetica Neue, Helvetica, sans-serif;
}
.a-t-44.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-44.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--text-white);
  padding: 4px;
  box-shadow: var(--box-shadow);
}
.a-t-44.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #f4f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-44.base-draw-box .base-sign-btn,
.a-t-44.base-draw-box .base-draw-box-btn,
.a-t-44.base-sign .base-sign-btn,
.a-t-44.base-sign .base-draw-box-btn {
  background: var(--text-white);
  box-shadow: var(--box-shadow);
  padding: 4px;
  width: 40px;
  height: 40px;
}
.a-t-44.base-draw-box .base-sign-btn:before,
.a-t-44.base-draw-box .base-draw-box-btn:before,
.a-t-44.base-sign .base-sign-btn:before,
.a-t-44.base-sign .base-draw-box-btn:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
}
.a-t-44.base-draw-box .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-44.base-draw-box .base-sign-btn .i-tabler-gift,
.a-t-44.base-draw-box .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-44.base-draw-box .base-draw-box-btn .i-tabler-gift,
.a-t-44.base-sign .base-sign-btn .i-fa6-regular-calendar-check,
.a-t-44.base-sign .base-sign-btn .i-tabler-gift,
.a-t-44.base-sign .base-draw-box-btn .i-fa6-regular-calendar-check,
.a-t-44.base-sign .base-draw-box-btn .i-tabler-gift {
  color: var(--text-white) !important;
  font-size: 24px;
}
.a-t-44.sign-wrap {
  box-shadow: none !important;
  background-image: linear-gradient(
    180deg,
    var(--primary) 25.91%,
    rgba(1, 103, 255, 0) 80%,
    #fff
  ) !important;
}
.a-t-44.sign-wrap .tips {
  color: #eee;
}
.a-t-44.sign-wrap .tips2 {
  color: #aaa;
}
.a-t-44 .base-logo {
  width: 90px;
  height: 90px;
}
.a-t-44 .base-logo .site-img {
  border-radius: 20px;
}
.a-t-44 .base-lang-wrap {
  border-radius: var(--radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
  padding: 0 8px;
  height: 32px;
  line-height: 14px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid var(--border-color2);
  color: var(--primary);
}
.a-t-44 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 18px;
}
.a-t-44 .base-input .label {
  margin-bottom: 12px;
}
.a-t-44 .base-input.is-textarea .input-box {
  padding: 15px 14px;
  min-height: 52px;
  height: auto;
}
.a-t-44 .base-input .input-box {
  padding: 15px 14px;
  box-sizing: border-box;
  height: 52px;
  background: var(--bg-input);
  position: relative;
  display: flex;
  align-items: center;
  border-radius: var(--card-radius);
}
.a-t-44 .base-input .input-box input::state(webkit-input-placeholder),
.a-t-44 .base-input .input-box textarea::state(webkit-input-placeholder) {
  color: var(--text-gray6);
}
.a-t-44 .base-input .input-box input::placeholder,
.a-t-44 .base-input .input-box textarea::-webkit-input-placeholder {
  color: var(--text-gray6);
}
.a-t-44 .base-input .input-box input::-webkit-input-placeholder,
.a-t-44 .base-input .input-box textarea::-webkit-input-placeholder {
  color: var(--text-gray6);
}
.a-t-44 .base-input .input-box input:-moz-placeholder,
.a-t-44 .base-input .input-box textarea::-webkit-input-placeholder {
  color: var(--text-gray6);
  opacity: 1;
}
.a-t-44 .base-input .input-box input::-moz-placeholder,
.a-t-44 .base-input .input-box textarea::-webkit-input-placeholder {
  color: var(--text-gray6);
  opacity: 1;
}
.a-t-44 .base-input .input-box input:-ms-input-placeholder,
.a-t-44 .base-input .input-box textarea::-webkit-input-placeholder {
  color: var(--text-gray6);
}
.a-t-44 .base-input .input-box input::-ms-input-placeholder,
.a-t-44 .base-input .input-box textarea::-webkit-input-placeholder {
  color: var(--text-gray6);
}
.a-t-44 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-44 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-44 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  height: 52px;
  background: transparent;
}
.a-t-44 .base-main-btn-content {
  border-radius: var(--btn-radius);
  color: var(--text-white);
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-bg);
  text-align: center;
}
.a-t-44 .base-main-btn.disable .base-main-btn-content {
  background: var(--bg-weight) !important;
  color: var(--text-gray) !important;
}
.a-t-44 .base-user-tab {
  position: relative;
  width: 100%;
  background: transparent;
  min-height: 52px;
}
.a-t-44 .base-user-tab .tab-item {
  color: #333;
  font-size: 16px;
  position: relative;
}
.a-t-44 .base-user-tab .tab-item div {
  line-height: 14px;
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 2px;
}
.a-t-44 .base-user-tab .tab-item.active {
  background: transparent;
}
.a-t-44 .base-user-tab .tab-item.active div {
  color: var(--primary);
  position: relative;
  font-weight: 700;
}
.a-t-44 .base-user-tab .tab-item.active div:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 50%;
  transform: translate(-50%);
  height: 4px;
  border-radius: 4px;
  background: var(--primary);
}
.a-t-44 .base-section-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--btn-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0;
}
.a-t-44 .base-section-title .more {
  display: flex;
  font-size: 14px;
  align-items: center;
  font-weight: 400;
  color: var(--text-gray);
}
.a-t-44 .base-section-title .more span:before {
  display: none;
}
.a-t-44 .container-login {
  position: relative;
  background: var(--primary);
  padding: 0;
  min-height: calc(var(--vh, 1vh) * 100);
}
.a-t-44 .container-login .base-input {
  color: #000 !important;
}
.a-t-44 .container-login .base-input .input-box {
  background: var(--bg-input);
}
.a-t-44 .container-login .base-input .input-pwd-eye {
  color: var(--text-gray) !important;
}
.a-t-44 .container-login .container-form {
  padding: 0 30px;
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 10px 0 30px;
}
.a-t-44 .container-login .base-logo .site-name {
  color: var(--btn-text2);
}
.a-t-44 .container-login .top-info {
  position: relative;
  z-index: 2;
  height: 250px;
}
.a-t-44 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  margin-top: 20px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.a-t-44 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-right: 16px;
  border: 1px solid #fff;
}
.a-t-44 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-44 .container-login .top-info .top-tools .base-lang-wrap {
  padding: 0 8px;
  background: var(--bg-weight);
  color: var(--primary);
  border-radius: 10px 0 0 10px;
}
.a-t-44 .container-login .top-info .base-user-tab {
  position: absolute;
  bottom: 12px;
  left: 0;
}
.a-t-44 .container-login .top-info .base-logo {
  width: 100px;
  height: 100px;
  margin-top: 5px;
}
.a-t-44 .container-login .auto-login {
  color: #010b2a80;
  font-size: 12px;
}
.a-t-44 .container-login .login-content {
  position: relative;
  z-index: 1;
  padding: 10px 0;
  border-radius: 20px 20px 0 0;
  min-height: calc(var(--vh, 1vh) * 100 - 181px - 20px);
  background: #fff;
}
.a-t-44 .container-login .login-content .login-tools {
  margin: 0 auto;
  padding: 0 30px;
}
.a-t-44 .container-form {
  border: 1px solid var(--border-color);
  margin: var(--mg) auto 0;
  padding: var(--padding);
  box-shadow: var(--card-shadow);
}
.a-t-44 .container-card {
  background: var(--bg-card);
  box-shadow: none;
  border: none;
  padding: 10px var(--mg);
  z-index: 0;
}
.a-t-44 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-44 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-44 .small-logo .site-name {
  font-size: 14px;
}
.a-t-44 .tab-bar-wrap .tab-bar {
  background: var(--bg-tab);
  box-shadow: inset 0 1px #dadada;
}
.a-t-44 .tab-bar-wrap .tab-bar .tab-item {
  padding: 8px 0;
}
.a-t-44 .navigation-content {
  border-bottom: 1px solid var(--border-color2) !important;
  background: var(--bg-card) !important;
}
.a-t-44 .sticky-bg {
  z-index: 2;
  background: var(--bg-card);
  border-radius: 30px;
  height: 42px;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
}
.a-t-44 .sticky-bg.base-user-tab {
  height: 42px;
}
.a-t-44 .sticky-bg.base-user-tab .tab-item {
  display: flex;
  align-items: center;
}
.a-t-44 .sticky-bg.base-user-tab .tab-item.active {
  background: var(--primary);
  border-radius: 30px;
  color: var(--btn-text2) !important;
}
.a-t-44 .sticky-bg.base-user-tab .tab-item:after {
  content: "";
  height: 0;
}
.a-t-44 .recharge-account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-weight);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-44 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
.a-t-44 .celue {
  background: #0000000d !important;
}
.a-t-44 .lang-cell {
  border-style: solid !important;
  border-color: var(--border-color) !important;
}
.a-t-44 .customer-calendar-44 {
  --van-calendar-range-edge-background: var(--primary);
  --van-button-primary-background: var(--primary);
  --van-button-primary-border-color: var(--primary);
}
.a-t-44 .customer-calendar-44 .van-calendar {
  max-width: 720px;
  margin: 0 auto;
}
.a-t-44
  .customer-calendar-44
  .van-calendar
  .van-calendar__day:not(
    .van-calendar__day--disabled,
    .van-calendar__day--selected,
    .van-calendar__day--start,
    .van-calendar__day--end,
    .van-calendar__day--start-end
  ) {
  color: var(--primary) !important;
}
.a-t-45 {
  --radius: 5px;
  --btn-radius: 38px;
  --card-radius: 5px;
  --padding: 30px;
  --mg: 18px;
  --bg-card: #fff;
  --bg-weight: #01285f;
  --btn-bg3: #44454b;
  --btn-text: #2c3850;
  --btn-text2: #f9b44b;
  --border-color: rgb(66, 91, 141);
  --text-gray: #aeb5c3;
  --text-gray6: #aaa;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
}
.a-t-45 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-45 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-45 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 40px;
}
.a-t-45 .base-input.is-textarea .input-box {
  min-height: 52px;
  height: auto;
  padding: 0 !important;
}
.a-t-45 .base-input .label {
  margin-bottom: 12px;
}
.a-t-45 .base-input .input-box {
  box-sizing: border-box;
  min-height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--primary);
}
.a-t-45 .base-input .input-box input,
.a-t-45 .base-input .input-box textarea {
  background: none !important;
}
.a-t-45 .base-input .input-box .is-textarea {
  padding: 0 !important;
}
.a-t-45 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-45 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  background: #ffffff4d;
}
.a-t-45 .base-main-btn {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  font-size: 14px;
  height: 44px;
  border-radius: 6px;
  background: var(--primary);
  border: 1px solid transparent !important;
  outline: none;
  color: #fff !important;
}
.a-t-45 .base-main-btn-content {
  border-radius: 6px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: 1px solid transparent !important;
  outline: none;
  color: #fff !important;
  text-align: center;
}
.a-t-45 .base-user-tab {
  position: relative;
  background: none;
}
.a-t-45 .base-user-tab .tab-item {
  width: 100%;
  z-index: 0;
  transition: all 0.3s;
  font-size: 16px;
  color: var(--text-gray);
}
.a-t-45 .base-user-tab .tab-item.active {
  font-size: 18px;
  color: var(--primary);
  background: none;
  position: relative;
}
.a-t-45.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-45.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-45.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-45 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-45 .container-login .top-info {
  position: relative;
}
.a-t-45 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-45 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-45 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-45 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: var(--mg);
  margin-bottom: 46px;
}
.a-t-45 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-45 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-45 .container-form {
  background: none;
  padding: 10px 16px;
}
.a-t-45 .container-card {
  background: var(--bg-card);
  padding: 10px 16px;
  box-shadow: 0 0 10px #d4d4e3;
}
.a-t-45 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-45 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-45 .small-logo .site-name {
  font-size: 14px;
}
.a-t-45 .navigation-content {
  border-bottom: none !important;
  color: var(--primary);
  box-shadow: 0 0 10px #d4d4e3;
}
.a-t-45 .navigation-content .i-material-symbols-arrow-back-ios-new-rounded {
  color: var(--primary);
  cursor: pointer;
}
.a-t-45 .nav-bar-wrap {
  padding: 0 !important;
  background: #fff;
}
.a-t-45 .tab-bar-wrap {
  height: 74px !important;
}
.a-t-45 .tab-bar-wrap .tab-bar {
  box-shadow: 0 0 10px #d4d4e3;
}
.a-t-45 .tab-bar-wrap .tab-item-icon {
  height: 27px !important;
  font-size: 27px !important;
}
.a-t-45 .change-pwd-wrap {
  margin-top: 20px;
}
.a-t-45 .van-empty__description {
  color: var(--text-gray);
}
.a-t-45 .celue {
  background: #f0f4f8 !important;
}
.a-t-45 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid var(--border-color);
}
.a-t-45 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
  color: #fff;
}
.a-t-45 .customer-calendar-45 {
  --van-calendar-range-edge-background: var(--primary);
  --van-button-primary-background: var(--primary);
  --van-button-primary-border-color: var(--primary);
}
.a-t-45 .customer-calendar-45 .van-calendar {
  max-width: 720px;
  margin: 0 auto;
}
.a-t-45
  .customer-calendar-45
  .van-calendar
  .van-calendar__day:not(
    .van-calendar__day--disabled,
    .van-calendar__day--selected,
    .van-calendar__day--start,
    .van-calendar__day--end,
    .van-calendar__day--start-end
  ) {
  color: var(--primary) !important;
}
.a-t-46 {
  --radius: 4px;
  --btn-radius: 4px;
  --card-radius: 15px;
  --padding: 30px;
  --mg: 16px;
  --bg-card: #000;
  --bg-weight: rgba(0, 0, 0, 0.7);
  --btn-bg3: #44454b;
  --btn-text: #fff;
  --border-color: #fff;
  --border-color2: #19d076;
  --border-color3: #353554;
  --btn-text2: #f9b44b;
  --text-gray: #aeb5c3;
  --text-gray6: #60eea8;
  --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, 0.2));
  --bg3: linear-gradient(180deg, #29a869 0.66%, #16181d 99.34%);
}
.a-t-46 .base-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
}
.a-t-46 .base-lang-wrap {
  border-radius: var(--btn-radius);
  background: var(--bg-weight);
  -webkit-backdrop-filter: blur(6.5px);
  backdrop-filter: blur(6.5px);
}
.a-t-46 .base-input {
  font-size: 16px;
  line-height: 22px;
  margin-top: 12px;
}
.a-t-46 .base-input.is-textarea .input-box {
  padding: 16px;
  min-height: 52px;
  height: auto;
}
.a-t-46 .base-input .label {
  margin-bottom: 12px;
}
.a-t-46 .base-input .input-box {
  padding: 0 16px;
  box-sizing: border-box;
  min-height: 48px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color2);
  position: relative;
  display: flex;
  align-items: center;
}
.a-t-46 .base-input .input-box .input-phone-select {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  height: 20px;
}
.a-t-46 .base-input .input-box .input-phone-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  left: 100%;
  font-weight: 700;
  background: #ffffff4d;
}
.a-t-46 .base-alarm-logo-btn {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.a-t-46 .base-alarm-logo-btn .alarm-icon {
  width: 20px;
  height: 20px;
}
.a-t-46 .base-main-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  height: 44px;
  border-radius: var(--btn-radius);
}
.a-t-46 .base-main-btn-content {
  border-radius: var(--btn-radius);
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  text-align: center;
  font-weight: 700;
  color: #000;
}
.a-t-46 .base-user-tab {
  position: relative;
  border-bottom: 2px solid rgba(170, 114, 206, 0.12);
  min-height: 40px;
  padding: 4px;
  margin-bottom: 20px;
}
.a-t-46 .base-user-tab .tab-item {
  color: var(--btn-text);
  text-align: center;
  font-size: 14px;
  font-weight: 700 !important;
}
.a-t-46 .base-user-tab .tab-item.active {
  position: relative;
  color: var(--primary);
  background: transparent;
}
.a-t-46 .base-user-tab .tab-item.active:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  height: 2px;
  background: var(--primary);
}
.a-t-46 .base-dialog .dialog-wrap {
  border-top: 2px solid var(--primary);
  box-shadow: #1ce78380 0 0 10px 4px;
}
.a-t-46.btn-fixed {
  position: fixed;
  bottom: 100px !important;
  z-index: 5;
}
.a-t-46.btn-fixed .fx-btn {
  position: relative !important;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  padding: 4px;
}
.a-t-46.btn-fixed .f-btn {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-t-46 .container-login {
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.a-t-46 .container-login .top-info {
  position: relative;
}
.a-t-46 .container-login .top-info .top-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.a-t-46 .container-login .top-info .top-tools .base-help-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-weight);
  margin-right: 12px;
}
.a-t-46 .container-login .top-info .top-tools .base-help-btn svg {
  font-size: 18px;
}
.a-t-46 .container-login .login-content {
  position: relative;
  z-index: 1;
  margin-top: var(--mg);
  margin-bottom: 46px;
}
.a-t-46 .container-login .login-content .base-main-btn {
  margin-top: 0;
}
.a-t-46 .container-login .login-content .container-form {
  padding: 24px var(--padding) 38px;
}
.a-t-46 .container-form {
  background: none;
  padding: 10px 16px;
}
.a-t-46 .small-logo {
  width: 100%;
  height: 30px;
  display: flex;
}
.a-t-46 .small-logo .site-img {
  width: 30px;
  height: 30px;
}
.a-t-46 .small-logo .site-name {
  font-size: 14px;
}
.a-t-46 .navigation-content {
  border-bottom: none !important;
  color: var(--primary);
}
.a-t-46 .navigation-content .i-material-symbols-arrow-back-ios-new-rounded {
  color: var(--btn-text);
  cursor: pointer;
}
.a-t-46 .nav-bar-wrap {
  padding: 0 !important;
}
.a-t-46 .tab-bar-wrap {
  height: 74px !important;
}
.a-t-46 .tab-bar-wrap .tab-item-icon {
  height: 27px !important;
  font-size: 27px !important;
}
.a-t-46 .change-pwd-wrap {
  margin-top: 20px;
}
.a-t-46 .van-empty__description {
  color: var(--text-gray);
}
.a-t-46 .celue {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color2);
}
.a-t-46 .recharge-account {
  display: flex;
  align-items: center;
  background: var(--text-white);
  color: var(--text-black);
  border-radius: var(--card-radius);
  opacity: 0.9;
  padding: 10px;
  margin: 10px 0;
}
.a-t-46 .recharge-account.active {
  opacity: 1;
  background: var(--primary);
}
.a-t-46 .customer-calendar-46 {
  --van-calendar-range-edge-background: var(--primary);
  --van-button-primary-background: var(--primary);
  --van-button-primary-border-color: var(--primary);
}
.a-t-46 .customer-calendar-46 .van-calendar {
  max-width: 720px;
  margin: 0 auto;
}
.a-t-46
  .customer-calendar-46
  .van-calendar
  .van-calendar__day:not(
    .van-calendar__day--disabled,
    .van-calendar__day--selected,
    .van-calendar__day--start,
    .van-calendar__day--end,
    .van-calendar__day--start-end
  ) {
  color: var(--primary) !important;
}
#app.a-t-46.no-1 {
  background: var(--bg) url(./bg1-BoneekOX.jpeg) no-repeat top !important;
  background-attachment: fixed !important;
}
html,
body {
  background: #112428;
  --van-dialog-confirm-button-text-color: var(--primary) !important;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans,
    Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
#app {
  position: relative;
  margin: 0 auto;
  max-width: 720px;
  color: var(--btn-text);
  background: var(--bg);
  font-size: 14px;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}
.van-popup-customer {
  background: none !important;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.qrcode-img {
  border-radius: 10px;
  overflow: hidden;
}
.qrcode-img img {
  border-radius: 10px;
}
.a-t-2 .qrcode-img,
.a-t-2 .qrcode-img img {
  border-radius: 0;
}
.truncate-2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.tab-item-label {
  word-wrap: break-word;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.break-word {
  word-wrap: break-word;
}
[lang="ru"] .base-user-tab .tab-item div {
  word-break: break-all !important;
}











/*///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/















.base-lang-wrap{display:inline-flex;align-items:center;padding:0 10px 0 6px;font-size:12px;height:28px;cursor:pointer}
#tabItem[data-v-b80b8f19] {
    position: relative;
  }
  #tabItem.active[data-v-b80b8f19] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-b80b8f19],
  #tabItem.active .tab-item-label[data-v-b80b8f19],
  #tabItem[data-v-8d5ae0ae] {
    position: relative;
  }
  #tabItem.active[data-v-8d5ae0ae] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-8d5ae0ae],
  #tabItem.active .tab-item-label[data-v-8d5ae0ae],
  #tabItem[data-v-5e8eeef3] {
    position: relative;
  }
  #tabItem.active[data-v-5e8eeef3] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-label[data-v-5e8eeef3],
  #tabItem[data-v-ace7c0d3] {
    position: relative;
  }
  #tabItem.active[data-v-ace7c0d3] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-label[data-v-ace7c0d3],
  #tabItem[data-v-0aeb268c] {
    position: relative;
  }
  #tabItem.active[data-v-0aeb268c] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-label[data-v-0aeb268c] {
    position: relative;
    color: var(--primary);
  }
  #tabItem[data-v-5018ac0e] {
    position: relative;
  }
  #tabItem.active[data-v-5018ac0e] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-label[data-v-5018ac0e],
  #tabItem[data-v-5fb09688] {
    position: relative;
  }
  #tabItem .tab-item-label[data-v-5fb09688] {
    color: #fff;
  }
  #tabItem.active[data-v-5fb09688] {
    color: var(--primary);
    position: relative;
  }
  #tabItem.active .tab-item-icon[data-v-5fb09688] {
    width: 30px;
    height: 30px;
  }
  #tabItem.active .tab-item-label[data-v-5fb09688] {
    position: relative;
    color: var(--primary);
  }
  #tabItem[data-v-441225ad] {
    position: relative;
  }
  #tabItem .tab-item-label[data-v-441225ad] {
    color: #fff;
  }
  #tabItem.active[data-v-441225ad] {
    color: var(--primary);
    position: relative;
  }
  #tabItem.active .tab-item-icon[data-v-441225ad] {
    width: 30px;
    height: 30px;
  }
  #tabItem.active .tab-item-label[data-v-441225ad] {
    position: relative;
    color: var(--primary);
  }
  #tabItem[data-v-019cbff5] {
    position: relative;
  }
  #tabItem.active[data-v-019cbff5] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-label[data-v-019cbff5],
  #tabItem[data-v-edfc4850] {
    position: relative;
  }
  #tabItem .tab-item-label[data-v-edfc4850] {
    color: #fff;
  }
  #tabItem.active[data-v-edfc4850] {
    color: var(--primary);
    position: relative;
  }
  #tabItem.active .tab-item-label[data-v-edfc4850] {
    position: relative;
    color: var(--primary);
  }
  #tabItem[data-v-7a8e8565] {
    position: relative;
  }
  #tabItem.active[data-v-7a8e8565] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-label[data-v-7a8e8565],
  #tabItem[data-v-329dd6f1] {
    position: relative;
  }
  #tabItem.active[data-v-329dd6f1] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-329dd6f1],
  #tabItem.active .tab-item-label[data-v-329dd6f1],
  #tabItem[data-v-1d237e4b] {
    position: relative;
  }
  #tabItem.active[data-v-1d237e4b] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-1d237e4b],
  #tabItem.active .tab-item-label[data-v-1d237e4b],
  #tabItem[data-v-5f984da4] {
    position: relative;
  }
  #tabItem.active[data-v-5f984da4] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-label[data-v-5f984da4],
  #tabItem[data-v-c8c32164] {
    position: relative;
  }
  #tabItem.active[data-v-c8c32164] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-c8c32164],
  #tabItem.active .tab-item-label[data-v-c8c32164],
  #tabItem[data-v-4463b44a] {
    position: relative;
  }
  #tabItem.active[data-v-4463b44a] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-4463b44a],
  #tabItem.active .tab-item-label[data-v-4463b44a],
  #tabItem[data-v-28e06567] {
    position: relative;
  }
  #tabItem.active[data-v-28e06567] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-label[data-v-28e06567],
  #tabItem[data-v-d74f245c] {
    position: relative;
  }
  #tabItem.active[data-v-d74f245c] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-d74f245c],
  #tabItem.active .tab-item-label[data-v-d74f245c],
  #tabItem[data-v-7edb476e] {
    position: relative;
  }
  #tabItem.active[data-v-7edb476e] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-7edb476e],
  #tabItem.active .tab-item-label[data-v-7edb476e],
  #tabItem[data-v-ecf856b5] {
    position: relative;
  }
  #tabItem.active[data-v-ecf856b5] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-ecf856b5],
  #tabItem.active .tab-item-label[data-v-ecf856b5],
  #tabItem[data-v-7e5002ff] {
    position: relative;
  }
  #tabItem.active[data-v-7e5002ff] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-7e5002ff],
  #tabItem.active .tab-item-label[data-v-7e5002ff],
  #tabItem[data-v-df7a183a] {
    position: relative;
  }
  #tabItem.active[data-v-df7a183a] {
    color: var(--btn-text);
  }
  #tabItem.active .tab-item-icon[data-v-df7a183a] {
    position: relative;
    color: var(--btn-text);
  }
  #tabItem.active .tab-item-label[data-v-df7a183a] {
    position: relative;
  }
  #tabItem[data-v-b7ab9e6d] {
    position: relative;
    color: #ffffff80;
  }
  #tabItem.active[data-v-b7ab9e6d] {
    color: var(--text-white);
  }
  #tabItem.active .tab-item-icon[data-v-b7ab9e6d] {
    position: relative;
    color: var(--text-white);
  }
  #tabItem.active .tab-item-label[data-v-b7ab9e6d] {
    position: relative;
  }
  #tabItem.active.c-5[data-v-b7ab9e6d],
  #tabItem.active.c-3[data-v-b7ab9e6d],
  #tabItem.active.c-5 .tab-item-icon[data-v-b7ab9e6d],
  #tabItem.active.c-3 .tab-item-icon[data-v-b7ab9e6d] {
    color: #000;
  }
  #tabItem.c-5[data-v-b7ab9e6d],
  #tabItem.c-3[data-v-b7ab9e6d],
  #tabItem.c-5 .tab-item-icon[data-v-b7ab9e6d],
  #tabItem.c-3 .tab-item-icon[data-v-b7ab9e6d] {
    color: #00000080;
  }
  #tabItem .tab-item-icon[data-v-b7ab9e6d] {
    position: relative;
    color: #ffffff80;
  }
  #tabItem[data-v-8396e598] {
    position: relative;
  }
  #tabItem.active[data-v-8396e598] {
    color: var(--primary);
  }
  #tabItem.active[data-v-8396e598]:after {
    content: "";
    position: absolute;
    top: -16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 5px solid var(--text-white);
    background: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-8396e598] {
    position: relative;
    z-index: 1;
    color: var(--text-white);
    margin-top: -6px;
    margin-bottom: 6px;
  }
  #tabItem.active .tab-item-label[data-v-8396e598],
  #tabItem[data-v-885e8636] {
    position: relative;
  }
  #tabItem.active[data-v-885e8636] {
    color: var(--tab-active);
  }
  #tabItem.active .tab-item-icon[data-v-885e8636] {
    position: relative;
    color: var(--tab-active);
  }
  #tabItem.active .tab-item-label[data-v-885e8636],
  #tabItem[data-v-2ffebc51] {
    position: relative;
  }
  #tabItem .tab-item-label[data-v-2ffebc51] {
    width: 100%;
    text-align: center;
    margin-top: 3px;
    font-size: 12px;
  }
  #tabItem.active[data-v-2ffebc51] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-2ffebc51],
  #tabItem.active .tab-item-label[data-v-2ffebc51],
  #tabItem[data-v-7ad8a308] {
    position: relative;
  }
  #tabItem.active[data-v-7ad8a308] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-7ad8a308],
  #tabItem.active .tab-item-label[data-v-7ad8a308] {
    position: relative;
  }
  #tabItem[data-v-189e6cd0] {
    position: relative;
    color: var(--bg-card);
  }
  #tabItem.active[data-v-189e6cd0] {
    color: var(--text-gray);
  }
  #tabItem.active .tab-item-icon[data-v-189e6cd0] {
    position: relative;
    color: var(--text-gray);
  }
  #tabItem.active .tab-item-label[data-v-189e6cd0] {
    position: relative;
  }
  #tabItem .tab-item-icon[data-v-189e6cd0] {
    position: relative;
    color: var(--bg-card);
  }
  #tabItem[data-v-6d267683] {
    position: relative;
  }
  #tabItem.active[data-v-6d267683] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-6d267683],
  #tabItem.active .tab-item-label[data-v-6d267683] {
    position: relative;
  }
  #tabItem[data-v-dd7a0cbe] {
    position: relative;
    color: #ffffff80;
  }
  #tabItem.active[data-v-dd7a0cbe] {
    color: var(--text-white);
  }
  #tabItem.active .tab-item-icon[data-v-dd7a0cbe] {
    position: relative;
    color: var(--text-white);
  }
  #tabItem.active .tab-item-label[data-v-dd7a0cbe] {
    position: relative;
  }
  #tabItem .tab-item-icon[data-v-dd7a0cbe] {
    position: relative;
    color: #ffffff80;
  }
  #tabItem[data-v-674cb0db] {
    position: relative;
  }
  #tabItem.active[data-v-674cb0db] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-674cb0db],
  #tabItem.active .tab-item-label[data-v-674cb0db],
  #tabItem[data-v-8f1b51bd] {
    position: relative;
  }
  #tabItem.active[data-v-8f1b51bd] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-8f1b51bd],
  #tabItem.active .tab-item-label[data-v-8f1b51bd],
  #tabItem[data-v-a62d7197] {
    position: relative;
  }
  #tabItem.active[data-v-a62d7197] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-a62d7197],
  #tabItem.active .tab-item-label[data-v-a62d7197],
  #tabItem[data-v-314d4c80] {
    position: relative;
  }
  #tabItem.active[data-v-314d4c80] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-314d4c80],
  #tabItem.active .tab-item-label[data-v-314d4c80],
  #tabItem[data-v-b7bf3a42] {
    position: relative;
  }
  #tabItem.active[data-v-b7bf3a42] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-b7bf3a42],
  #tabItem.active .tab-item-label[data-v-b7bf3a42],
  #tabItem[data-v-2120b77f] {
    position: relative;
  }
  #tabItem.active[data-v-2120b77f] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-2120b77f],
  #tabItem.active .tab-item-label[data-v-2120b77f],
  #tabItem[data-v-1ebb3f1f] {
    position: relative;
  }
  #tabItem.active[data-v-1ebb3f1f] {
    color: var(--text-gray);
  }
  #tabItem.active .tab-item-icon[data-v-1ebb3f1f] {
    position: relative;
    font-size: 26px !important;
  }
  #tabItem.active .tab-item-label[data-v-1ebb3f1f] {
    position: relative;
    color: var(--text-gray);
  }
  #tabItem[data-v-f10f0092] {
    position: relative;
  }
  #tabItem.active[data-v-f10f0092] {
    color: var(--primary);
  }
  #tabItem.active .tab-item-icon[data-v-f10f0092],
  #tabItem.active .tab-item-label[data-v-f10f0092] {
    position: relative;
  }
  .tab-item-icon[data-v-a6ff9f1f] {
    width: 20px;
    height: 20px;
    margin: 0 auto;
    color: var(--text-gray);
  }
  .tab-item-label[data-v-a6ff9f1f] {
    color: var(--text-gray);
    font-size: 12px;
    text-align: center;
    margin-bottom: 10px;
  }
  .active .tab-item-label[data-v-a6ff9f1f] {
    color: var(--btn-text) !important;
  }
  .tab-item-icon[data-v-34bc6c5e] {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    color: var(--text-gray);
  }
  .tab-item-label[data-v-34bc6c5e] {
    color: var(--btn-text);
    text-align: center;
    margin-bottom: 10px;
  }
  .tab-item-icon[data-v-5249e666] {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    color: var(--text-gray);
  }
  .tab-item-label[data-v-5249e666] {
    color: var(--btn-text);
    text-align: center;
    margin-bottom: 10px;
  }
  .tab-item-icon[data-v-882e561d] {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    color: var(--text-gray);
  }
  .tab-item-label[data-v-882e561d] {
    color: var(--btn-text);
    text-align: center;
    margin-bottom: 10px;
  }
  .tab-item-icon[data-v-cce71dec] {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    color: var(--text-gray);
  }
  .tab-item-label[data-v-cce71dec] {
    color: var(--btn-text);
    text-align: center;
    margin-bottom: 10px;
  }
  .tab-bar-wrap {
    z-index: 1;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    min-height: 55px;
  }
  .tab-bar-wrap .tab-bar {
    width: 100%;
    max-width: 720px;
    height: 100%;
    display: flex;
    background: var(--bg-tabbar);
    border-left: none;
    border-right: none;
  }
  .tab-bar-wrap .tab-bar .tab-item {
    width: var(--5a5a569c);
    height: 100%;
    padding: 10px 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .tab-bar-wrap .tab-bar .tab-item .tab-item-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--text-gray);
    position: relative;
  }
  .tab-bar-wrap .tab-bar .tab-item .tab-item-inner .tab-item-icon {
    width: 100%;
    flex-shrink: 0;
    height: 20px;
    display: flex;
    justify-content: center;
    font-size: 20px;
  }
  .tab-bar-wrap .tab-bar .tab-item .tab-item-inner .tab-item-label {
    line-height: 14px;
    font-size: 12px;
    text-align: center;
  }
  .tab-bar-wrap .tab-bar .tab-item .active {
    height: 100%;
    color: var(--primary);
  }
  .tab-bar-wrap2 {
    z-index: 1;
    position: fixed;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 55px;
    max-width: 720px;
    left: 50%;
    transform: translate(-50%);
  }
  .tab-bar-wrap15 {
    z-index: 1;
    position: fixed;
    right: 0;
    bottom: 0;
    display: grid;
    width: 100%;
    height: 70px;
    max-width: 720px;
    left: 50%;
    transform: translate(-50%);
  }
  .tab-bar-wrap15 .tabbar-wrap {
    display: flex;
    align-items: flex-start;
    height: 70px;
    background: var(--bg-card);
    border-top: 1px solid #191d22;
  }
  .tab-bar-wrap15 .tabbar-wrap .tab-item {
    position: relative;
    flex: 1;
    font-size: 11px;
    line-height: 1;
  }
  .tab-bar-wrap15 .tabbar-wrap .tab-item .icon-bar {
    margin: 10px auto;
  }
  .tab-bar-wrap15 .tabbar-wrap .tab-item p {
    text-align: center;
    color: var(--text-gray);
  }
  .tab-bar-wrap15 .tabbar-wrap .tab-item.active p {
    color: #001dff;
  }
  .tab-bar-wrap25 {
    z-index: 1;
    position: fixed;
    right: 0;
    bottom: 0;
    display: grid;
    width: 100%;
    height: 70px;
    max-width: 720px;
    left: 50%;
    transform: translate(-50%);
  }
  .tab-bar-wrap25 .tabbar-wrap {
    display: flex;
    align-items: flex-start;
    height: 70px;
    background: var(--bg-tabbar);
    border-top: 1px solid #191d22;
  }
  .tab-bar-wrap25 .tabbar-wrap .tab-item {
    position: relative;
    flex: 1;
    font-size: 11px;
    line-height: 1;
  }
  .tab-bar-wrap25 .tabbar-wrap .tab-item .icon-bar {
    margin: 10px auto;
  }
  .tab-bar-wrap25 .tabbar-wrap .tab-item p {
    text-align: center;
    color: var(--text-gray);
  }
  .tab-bar-wrap25 .tabbar-wrap .tab-item.active p {
    color: var(--primary);
  }
  .tab-bar-wrap29 {
    z-index: 1;
    position: fixed;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: end;
    width: 100%;
    height: 100px;
    max-width: 720px;
    left: 50%;
    transform: translate(-50%);
    background: url(./tabbar-bg-IFMdJvJ9.png) no-repeat 0 0 / contain;
    background-size: 100% 100%;
  }
  .tab-bar-wrap29 .tabbar-wrap {
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: 70px;
  }
  .tab-bar-wrap29 .tabbar-wrap .tab-item {
    position: relative;
    flex: 1;
    font-size: 11px;
    line-height: 1;
  }
  .tab-bar-wrap29 .tabbar-wrap .tab-item .icon-bar {
    margin: 10px auto;
  }
  .tab-bar-wrap29 .tabbar-wrap .tab-item p {
    text-align: center;
    color: var(--btn-text2);
  }
  .tab-bar-wrap29 .tabbar-wrap .tab-item.active p {
    color: var(--btn-text);
  }
  .navigation[data-v-923868a9] {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 45px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navigation-content[data-v-923868a9] {
    height: 100%;
    width: 100%;
    max-width: 720px;
    padding: 0 16px;
    background: var(--bg-tab);
    color: var(--btn-text);
    box-sizing: border-box;
  }
  .navigation-content .icon[data-v-923868a9] {
    margin-right: 5px;
  }
  .base-alarm-logo-btn {
    position: relative;
  }
  .base-alarm-logo-btn.rotate {
    animation: zy 1.5s linear infinite;
  }
  @keyframes zy {
    10% {
      transform: rotate(15deg);
    }
    20% {
      transform: rotate(-10deg);
    }
    30% {
      transform: rotate(5deg);
    }
    40% {
      transform: rotate(-5deg);
    }
    50%,
    to {
      transform: rotate(0);
    }
  }
  .base-alarm-logo-btn .dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: red;
  }
  .navbar-wrap[data-v-e9a0d660] {
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navbar-wrap[data-v-55a06d65] {
    width: 100%;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #navBarItem44[data-v-0c42a4e2] {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 10px;
  }
  #navBarItem44 .left[data-v-0c42a4e2] {
    position: relative;
    z-index: 1;
  }
  #navBarItem44 .right[data-v-0c42a4e2] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
  }
  #navBarItem44 .name[data-v-0c42a4e2] {
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
  }
  #navBarItem44 .name .small-logo[data-v-0c42a4e2] {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    max-width: 35px;
    max-height: 35px;
    flex-shrink: 0;
  }
  #navBarItem44 .name .small-logo .site-img[data-v-0c42a4e2] {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }
  #navBarItem44 .base-help-btn[data-v-0c42a4e2],
  #navBarItem44 .base-alarm-logo-btn[data-v-0c42a4e2] {
    width: 28px;
    height: 28px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-weight);
    border: 1px solid var(--border-color2);
    color: var(--primary);
  }
  #navBarItem44 .base-help-btn svg[data-v-0c42a4e2],
  #navBarItem44 .base-alarm-logo-btn svg[data-v-0c42a4e2] {
    font-size: 18px;
  }
  #navBarItem44 .base-alarm-logo-btn svg[data-v-0c42a4e2] {
    font-size: 14px;
  }
  #navBarItem43 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 10px;
  }
  #navBarItem43 .left {
    position: relative;
    z-index: 1;
  }
  #navBarItem43 .right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
  }
  #navBarItem43 .name {
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
  }
  #navBarItem43 .name .small-logo {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    max-width: 35px;
    max-height: 35px;
    flex-shrink: 0;
  }
  #navBarItem43 .name .small-logo .site-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }
  #navBarItem43 .base-help-btn,
  #navBarItem43 .base-alarm-logo-btn {
    width: 28px;
    height: 28px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-weight);
    border: 1px solid var(--border-color2);
    color: var(--primary);
  }
  #navBarItem43 .base-help-btn svg,
  #navBarItem43 .base-alarm-logo-btn svg {
    font-size: 18px;
  }
  #navBarItem43 .base-alarm-logo-btn svg {
    font-size: 14px;
  }
  #navBarItem42 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 10px;
  }
  #navBarItem42 .left {
    position: relative;
    z-index: 1;
  }
  #navBarItem42 .right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
  }
  #navBarItem42 .name {
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
  }
  #navBarItem42 .name .small-logo {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    max-width: 35px;
    max-height: 35px;
    flex-shrink: 0;
  }
  #navBarItem42 .name .small-logo .site-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }
  #navBarItem42 .base-help-btn,
  #navBarItem42 .base-alarm-logo-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #000;
  }
  #navBarItem42 .base-help-btn svg,
  #navBarItem42 .base-alarm-logo-btn svg {
    font-size: 18px;
  }
  #navBarItem42 .base-alarm-logo-btn svg {
    font-size: 14px;
  }
  #navBarItem41 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 10px;
  }
  #navBarItem41 .left {
    position: relative;
    z-index: 1;
  }
  #navBarItem41 .right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
  }
  #navBarItem41 .name {
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
  }
  #navBarItem41 .name .small-logo {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    max-width: 35px;
    max-height: 35px;
    flex-shrink: 0;
  }
  #navBarItem41 .name .small-logo .site-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }
  #navBarItem41 .base-help-btn,
  #navBarItem41 .base-alarm-logo-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-weight);
    border: 1px solid var(--border-color2);
    color: var(--primary);
  }
  #navBarItem41 .base-help-btn svg,
  #navBarItem41 .base-alarm-logo-btn svg {
    font-size: 18px;
  }
  #navBarItem41 .base-alarm-logo-btn svg {
    font-size: 14px;
  }
  #navBarItem40 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 10px;
  }
  #navBarItem40 .left {
    position: relative;
    z-index: 1;
  }
  #navBarItem40 .right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
  }
  #navBarItem40 .name {
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
  }
  #navBarItem40 .name .small-logo {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    max-width: 35px;
    max-height: 35px;
    flex-shrink: 0;
  }
  #navBarItem40 .name .small-logo .site-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }
  #navBarItem40 .base-help-btn,
  #navBarItem40 .base-alarm-logo-btn {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--base-btn-text);
  }
  #navBarItem40 .base-help-btn svg,
  #navBarItem40 .base-alarm-logo-btn svg {
    font-size: 18px;
  }
  #navBarItem40 .base-alarm-logo-btn svg {
    font-size: 14px;
  }
  #navBarItem39 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 10px;
  }
  #navBarItem39 .left {
    position: relative;
    z-index: 1;
  }
  #navBarItem39 .right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
  }
  #navBarItem39 .name {
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
  }
  #navBarItem39 .name .small-logo {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    max-width: 35px;
    max-height: 35px;
    flex-shrink: 0;
  }
  #navBarItem39 .name .small-logo .site-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }
  #navBarItem39 .base-help-btn,
  #navBarItem39 .base-alarm-logo-btn {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-weight);
    color: var(--primary);
  }
  #navBarItem39 .base-help-btn svg,
  #navBarItem39 .base-alarm-logo-btn svg {
    font-size: 18px;
  }
  #navBarItem39 .base-alarm-logo-btn svg {
    font-size: 14px;
  }
  #navBarItem38 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 10px;
  }
  #navBarItem38 .left {
    position: relative;
    z-index: 1;
  }
  #navBarItem38 .right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
  }
  #navBarItem38 .name {
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
  }
  #navBarItem38 .name .small-logo {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    max-width: 35px;
    max-height: 35px;
    flex-shrink: 0;
  }
  #navBarItem38 .name .small-logo .site-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }
  #navBarItem38 .base-help-btn,
  #navBarItem38 .base-alarm-logo-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color2);
    color: var(--primary);
  }
  #navBarItem38 .base-help-btn svg,
  #navBarItem38 .base-alarm-logo-btn svg {
    font-size: 18px;
  }
  #navBarItem38 .base-alarm-logo-btn svg {
    font-size: 14px;
  }
  #navBarItem37 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 10px;
  }
  #navBarItem37 .left {
    position: relative;
    z-index: 1;
  }
  #navBarItem37 .right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
  }
  #navBarItem37 .name {
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
  }
  #navBarItem37 .name .small-logo {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    max-width: 35px;
    max-height: 35px;
    flex-shrink: 0;
  }
  #navBarItem37 .name .small-logo .site-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }
  #navBarItem37 .base-help-btn,
  #navBarItem37 .base-alarm-logo-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--primary);
  }
  #navBarItem37 .base-help-btn svg,
  #navBarItem37 .base-alarm-logo-btn svg {
    font-size: 18px;
  }
  #navBarItem37 .base-alarm-logo-btn svg {
    font-size: 14px;
  }
  #navBarItem36 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 10px;
  }
  #navBarItem36 .left {
    position: relative;
    z-index: 1;
  }
  #navBarItem36 .right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
  }
  #navBarItem36 .name {
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
  }
  #navBarItem36 .name .small-logo {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    max-width: 35px;
    max-height: 35px;
    flex-shrink: 0;
  }
  #navBarItem36 .name .small-logo .site-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }
  #navBarItem36 .base-help-btn,
  #navBarItem36 .base-alarm-logo-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-weight);
    border: 1px solid var(--border-color2);
    color: var(--primary);
  }
  #navBarItem36 .base-help-btn svg,
  #navBarItem36 .base-alarm-logo-btn svg {
    font-size: 18px;
  }
  #navBarItem36 .base-alarm-logo-btn svg {
    font-size: 14px;
  }
  .nav-bar-wrap .app-info-wrap[data-v-4225201d] {
    display: flex;
    align-items: center;
  }
  .nav-bar-wrap .tools-wrap[data-v-4225201d] {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-bar-wrap .bf-bg[data-v-4225201d] {
    position: relative;
  }
  .nav-bar-wrap .bf-bg[data-v-4225201d]:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADYAAAA2CAYAAACMRWrdAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAMSSURBVGiB7ZpNaxNRFIafc2YynZRGa62timJREelCN4IgiN3qRhcuBBf6FwT3/Qm6cusfcOFOBEGX4sZFwW2lflQtta1JM2mazHExiaQ1sYmZOs3FZ5PhDoT3zbn3ZIbzCj1ii0xRZwbhOiJHMZlENACNQMrJpxchWkY0IvaiGD9S9cqIHxEHEeQivKCM5CMII2SkjBQidDza1MkoF04Xo/q5Uj5/KgKqQElE4l50SteGPnIX5Q7mn0aG38XeiefqH1vAv/iRfbOLvf5Anak0NIW2/QawJiKVbr5lR2P2mRsYD8D38c8+ZGLuSa9SU6YGLO9k8I/G7DMPMP/mHjG0nSKw2mmLartFW2TKPvEWGTtG4d6tPWgKoABMmpnf7uZvFbNFpoh5iXf8KZMLD3ddXv/UgK8iUmtd3GLM5hkl4CXe8VcDYqpJVUS2NLCtW3GIWWTftwEzBRCY2Vjrwq/9aR+YwfybjD+69u91pULBzCoiUobWiimPCa/cJ7j9IzNp/XOgeaHQqBbDXxh78TozSengm9kINCvmMYt/ci+29L9hBEBsnlGG9D1H6uezVpQin5Qh7iCjz7JWkjKhEus03sRc1kpSZlhRPUNw6U3WSlLGU5BxZKqYtZKU8dVMc4QXXDOmKqLrBFfXs1aSNpq8zruHgu+qMXXVmLMV89w0FrtqTP3AuVYPoLHloqxF7AaqGrpZMQjcPGNI3lVjhf/GBglFJtw0tqmH3TSWC8862u6Dy27+QcNEPWsRu4ECPQ2tB4RYSQZnrlFTwMWtuKmAi+2+qiT5CdcoaWMovZG1khSpiEjcnGiWMpWSLmvQGPyJSAk3umOtmdhpTQ2sZCQmTZabF7+MNabtgzycKLbmq7bkPETkO0mMbtCoAqutC+2yVEsM1nmrAUvbw2Jt02+N4NUhIPgHwvqhSmLqt0J0jPWZmQKjJCmzvUixcXTasnMQ0ywEDtIST8qYGrDSjBZ1ovvobGJwPxD2Kexv2SDJBnf1MNG1sSaNLTpCcv5yJJVsG+jsg5ikMnWSh/RKu3P0J34C3NvjqHVCAlkAAAAASUVORK5CYII=)
      no-repeat left;
    background-size: 30px 30px;
    left: -1px;
    top: -0.5px;
    z-index: -1;
  }
  .nav-bar-wrap .bf-bg2[data-v-4225201d] {
    position: relative;
  }
  .nav-bar-wrap .bf-bg2[data-v-4225201d]:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(data:image/png;base64,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)
      no-repeat left;
    background-size: 60px 30px;
    left: -1px;
    top: -0.5px;
    z-index: -1;
  }
  .nav-bar-wrap .app-info-wrap[data-v-b5e56970] {
    display: flex;
    align-items: center;
  }
  .nav-bar-wrap .tools-wrap[data-v-b5e56970] {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-bar-wrap .app-info-wrap[data-v-496ef436] {
    display: flex;
    align-items: center;
  }
  .nav-bar-wrap .tools-wrap[data-v-496ef436] {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-bar-wrap .bf-bg[data-v-496ef436] {
    position: relative;
  }
  .nav-bar-wrap .bf-bg[data-v-496ef436]:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADYAAAA2CAYAAACMRWrdAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAMSSURBVGiB7ZpNaxNRFIafc2YynZRGa62timJREelCN4IgiN3qRhcuBBf6FwT3/Qm6cusfcOFOBEGX4sZFwW2lflQtta1JM2mazHExiaQ1sYmZOs3FZ5PhDoT3zbn3ZIbzCj1ii0xRZwbhOiJHMZlENACNQMrJpxchWkY0IvaiGD9S9cqIHxEHEeQivKCM5CMII2SkjBQidDza1MkoF04Xo/q5Uj5/KgKqQElE4l50SteGPnIX5Q7mn0aG38XeiefqH1vAv/iRfbOLvf5Anak0NIW2/QawJiKVbr5lR2P2mRsYD8D38c8+ZGLuSa9SU6YGLO9k8I/G7DMPMP/mHjG0nSKw2mmLartFW2TKPvEWGTtG4d6tPWgKoABMmpnf7uZvFbNFpoh5iXf8KZMLD3ddXv/UgK8iUmtd3GLM5hkl4CXe8VcDYqpJVUS2NLCtW3GIWWTftwEzBRCY2Vjrwq/9aR+YwfybjD+69u91pULBzCoiUobWiimPCa/cJ7j9IzNp/XOgeaHQqBbDXxh78TozSengm9kINCvmMYt/ci+29L9hBEBsnlGG9D1H6uezVpQin5Qh7iCjz7JWkjKhEus03sRc1kpSZlhRPUNw6U3WSlLGU5BxZKqYtZKU8dVMc4QXXDOmKqLrBFfXs1aSNpq8zruHgu+qMXXVmLMV89w0FrtqTP3AuVYPoLHloqxF7AaqGrpZMQjcPGNI3lVjhf/GBglFJtw0tqmH3TSWC8862u6Dy27+QcNEPWsRu4ECPQ2tB4RYSQZnrlFTwMWtuKmAi+2+qiT5CdcoaWMovZG1khSpiEjcnGiWMpWSLmvQGPyJSAk3umOtmdhpTQ2sZCQmTZabF7+MNabtgzycKLbmq7bkPETkO0mMbtCoAqutC+2yVEsM1nmrAUvbw2Jt02+N4NUhIPgHwvqhSmLqt0J0jPWZmQKjJCmzvUixcXTasnMQ0ywEDtIST8qYGrDSjBZ1ovvobGJwPxD2Kexv2SDJBnf1MNG1sSaNLTpCcv5yJJVsG+jsg5ikMnWSh/RKu3P0J34C3NvjqHVCAlkAAAAASUVORK5CYII=)
      no-repeat left;
    background-size: 30px 30px;
    left: -1px;
    top: -0.5px;
    z-index: -1;
  }
  .navbar-wrap[data-v-f9a7ae09] {
    width: 100%;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navbar-wrap[data-v-6935d39b] {
    width: 100%;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-bar-wrap .app-info-wrap[data-v-be3f6ec0] {
    display: flex;
    align-items: center;
  }
  .nav-bar-wrap .tools-wrap[data-v-be3f6ec0] {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-bar-wrap .app-info-wrap[data-v-f0cbe1ed] {
    display: flex;
    align-items: center;
  }
  .nav-bar-wrap .tools-wrap[data-v-f0cbe1ed] {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .navbar-wrap[data-v-5fdf6f8b] {
    width: 100%;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-bar-wrap .app-info-wrap[data-v-1b3bdaea] {
    display: flex;
    align-items: center;
  }
  .nav-bar-wrap .tools-wrap[data-v-1b3bdaea] {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .navbar-wrap[data-v-856ef604] {
    width: 100%;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #navBarItem21 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #navBarItem21 .base-alarm-logo-btn {
    border: 1px solid var(--btn-text);
  }
  #navBarItem21 .base-alarm-logo-btn .svg-icon {
    color: var(--btn-text4) !important;
  }
  #navBarItem21 .right {
    position: relative;
    z-index: 1;
  }
  #navBarItem21 .right .base-lang-wrap {
    border-radius: var(--btn-radius);
    background: var(--bg-weight);
    border: 1px solid var(--btn-text);
    color: var(--btn-text4) !important;
    padding: 0 2px;
    font-size: 12px;
  }
  #navBarItem21 .right .base-lang-wrap span {
    line-height: 12px;
    font-size: 12px;
    min-width: 80px;
  }
  #navBarItem21 .name {
    text-align: left;
    color: var(--bg-weight);
    font-size: 60px;
    letter-spacing: 1px;
    line-height: 1;
    display: flex;
    align-items: center;
    padding-right: 10px;
  }
  #navBarItem21 .name .small-logo {
    margin-right: 5px;
    width: 34px;
    height: 34px;
    max-width: 40px;
    max-height: 40px;
  }
  #navBarItem21 .name .small-logo .site-img {
    width: 100%;
    height: 100%;
  }
  #navBarItem20 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 10px;
  }
  #navBarItem20 .left {
    position: relative;
    z-index: 1;
  }
  #navBarItem20 .right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
  }
  #navBarItem20 .name {
    color: var(--text-white);
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
  }
  #navBarItem20 .name .small-logo {
    margin-right: 5px;
    width: 28px;
    height: 28px;
    max-width: 28px;
    max-height: 28px;
    flex-shrink: 0;
  }
  #navBarItem20 .name .small-logo .site-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }
  #navBarItem20 .base-help-btn,
  #navBarItem20 .base-alarm-logo-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-weight);
  }
  #navBarItem20 .base-help-btn svg,
  #navBarItem20 .base-alarm-logo-btn svg {
    font-size: 18px;
  }
  #navBarItem20 .base-alarm-logo-btn svg {
    font-size: 14px;
  }
  #navBarItem19 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 10px;
  }
  #navBarItem19 .left {
    position: relative;
    z-index: 1;
  }
  #navBarItem19 .right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
  }
  #navBarItem19 .name {
    color: var(--text-white);
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
  }
  #navBarItem19 .name .small-logo {
    margin-right: 5px;
    width: 28px;
    height: 28px;
    max-width: 28px;
    max-height: 28px;
    flex-shrink: 0;
  }
  #navBarItem19 .name .small-logo .site-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }
  #navBarItem19 .base-help-btn,
  #navBarItem19 .base-alarm-logo-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-weight);
  }
  #navBarItem19 .base-help-btn svg,
  #navBarItem19 .base-alarm-logo-btn svg {
    font-size: 18px;
  }
  #navBarItem19 .base-alarm-logo-btn svg {
    font-size: 14px;
  }
  .nav-bar-item18.no-bg .left {
    background: transparent !important;
  }
  .nav-bar-item18.no-bg .right {
    margin-right: -10px;
  }
  .nav-bar-item18.no-bg .right .base-alarm-logo-btn,
  .nav-bar-item18.no-bg .right .base-help-btn,
  .nav-bar-item18.no-bg .right .base-lang-wrap {
    background: transparent !important;
  }
  .nav-bar-item18 .left {
    background: #00000080 !important;
    color: var(--text-white) !important;
    border-radius: 100px var(--card-radius) var(--card-radius) 100px;
    margin-right: 0;
    padding-right: 8px;
  }
  .nav-bar-item18 .left .base-logo img {
    border-radius: 10px;
  }
  .nav-bar-item18 .left .name {
    color: var(--text-white) !important;
  }
  .nav-bar-item18 .base-alarm-logo-btn,
  .nav-bar-item18 .base-help-btn {
    border-radius: 0 !important;
    background: #00000080 !important;
    color: var(--text-white) !important;
  }
  .nav-bar-item18 .base-lang-wrap span {
    display: block;
    line-height: 12px;
  }
  .navbar-wrap[data-v-5febafd3] {
    width: 100%;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  a[data-v-2c67c35b] {
    margin-left: 5px;
    text-decoration: underline;
  }
  .navbar-wrap[data-v-9d4c7db5] {
    width: 100%;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .name[data-v-06d16e39] {
    font-weight: 600;
    background: linear-gradient(180deg, #00b7f7, #0ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  .navbar-wrap[data-v-30591912] {
    width: 100%;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo-name[data-v-30591912] {
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  .logo-name[data-v-30591912]:hover {
    transform: scale(1.07);
  }
  .navbar-wrap[data-v-c79da835] {
    width: 100%;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0000;
  }
  .navbar-wrap[data-v-f730f780],
  .navbar-wrap[data-v-6d035344] {
    width: 100%;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-bar-wrap .app-info-wrap[data-v-c72bc2bf] {
    display: flex;
    align-items: center;
  }
  .nav-bar-wrap .tools-wrap[data-v-c72bc2bf] {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-bar-wrap .app-info-wrap[data-v-6bb2cb15] {
    display: flex;
    align-items: center;
  }
  .nav-bar-wrap .tools-wrap[data-v-6bb2cb15] {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .navbar-wrap[data-v-3371c7ea] {
    width: 100%;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-bar-wrap .app-info-wrap[data-v-0c361219] {
    display: flex;
    align-items: center;
  }
  .nav-bar-wrap .app-info-wrap[data-v-0c361219]:before {
    margin-right: 22px;
    width: 50px;
    height: 20px;
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFkAAAAjCAMAAADIbFY6AAACRlBMVEVHcEw6uNU6uNUdi8A5t9YxtNk6uNUjyuMjvNkttd0T2ecUf7g6t9US2uYsstsS2uY7uNQ6uNUVk8UP4eI7uNQP4OMP4eI7uNUVksUT2ecW1OoUerQP4eMP4eI3t9YrstsVk8UVk8UgwfQVk8UVk8UVksQVkcQVkcMVkcQVkcMVksQVk8UP4eIVk8Ubye8Zzu0W1Ooay+8P4OMTaqoazO4Uca8U1+gS2uYU1+gW1OorsdsTaakazO4W1OoUfrcUcK4psdwVkMMsstoTZqcytNgTaKkTa6sTZ6g1tdcxtNkytNg3ttY1tdcTZqcS2uY2ttYS2uY3t9Yus9o0tdcVj8ITYqUTX6ITYKM1ttcVk8UVk8Uhv/UP4eIfw/IgwPQgv/QUeLMVk8UTaKkVk8UUcK0cx/AfwvMUdrIdxvEUeLMgv/QP4eIsstogwPQosNwP4eIexPIosNwexPIR3eQmr90W0+oVk8UfwvMTZ6gytNgVk8UX0esUc7AazO0Zzu0Uca80tdcTaqkUca8TY6UTYKMTYaQvs9k0tdcTYaQTX6IVk8U7uNQP4eIUhLsVir8UfbcUgbkVh70UeLQVjsEUc7EVkMM5t9UT2ecvs9kR3eUVi8AUe7UVjMEUdrI0tdcytNg2ttYUca8TZqgUcK0VksQV1ugUbqwS2+YX0esW1OkW0+oUbasYz+wZzu0Q3uMUa6oTY6YazO0Q3+MTaqkbyu4TaKkqsdsexPITYaQcye8cx/AtstodxvEsstoosNwfwvMgwPQnsNw1zaUJAAAAinRSTlMA2vAEFUm8BAcSLhZzFChQ/Cv7t5jY+0/bmhIQ7pIvkfMsJ0S5dsMcNKJU6CmYb5Z0S3BAubq+8Rbw1mIr3AvX+oC2Kd7mMoS471Jumx50k9z8bdfz8v2872DNs0i27PrzJKprktdHnex8j0vsbGxtkez7u7RTjNXKd638UO/Z77/4cZ903Pv7U5WKcqtdAAACsElEQVRIx4XWVVeUARCA4V1CFlZcQpFSQUFKFItQwUTFQFDK7u5usQtpWBZjQRQxEVBhLcR/pt/MNzCcM3tm7mYunqv3YizhT2j6ultbHRZjxlTR+MOe8JjP6+bmxsbnT2tq6uurq+vqamufNRy2CDMjgstFNuMWGkKyNcDY48MUeZddoidxuasQbuNJdq6FPV2RGw5KcnQsl7OyjZufD8k+gcZuj1PkFysl+iSXW6LgNpZk5wbYEzV5viQHTOByZxDcrCQXhxq7LVKRm65J9DYut2TCbSLJztWwp2ryYl+JDudyJy/vv9yO5U1X5Kbb3ssjOZeVZ8iboLxkTa6M8Voeye8yRsoz5HYsL0WRX+6T5OBYLucED5cHcgWUlxSnyK+WS/QcLr+fNVweyG4sb6kmey1vRL66CEqzkvxgnLHnpSnym7kSfZTLb+dReSi7sbzNmuytPCZ/nG2WZ8ptUJ7vFkX+sFCSgyK4fANKmxxCMpY3TZPz5fK4/Gkmlkdy20bYryjy51VyeVy+Ho3lkVwA5e0OU+Rb68XyuNxrlkeyawrsFxT5yx65PC5/Ncsj+T6UF5OmyN/E8hyjZLM8kl3LYN+ryZck2XKWy9/N8kh2YXmRitwhl9fF5f1YXjHJC8zyFDk/T6KjuPwDy1tH8k8sL0GRO+Tysrh8CMurIPlYIL4IilwqllfI5V+nsDySf2N56Yrcc0eSbUVcPjMVbitIXgLl2UsUuUd8ERxcHtgOtzUk92N5iZpcLpaXyeWBA3C7SXK/P74Iiux5KJY3Sr6I5blJxvJSNfmeTSyPy3+OY3kkD57AF0GRPXclOTuHyzugNL8Ckk/DnqzJpeJzmsHloSNwu0zyIJaXosieR2J5uVzeaZZHMpaXVKLIZeKLcJ7LQ1uxPJL/nsMXQZPL/wFhX5o2MBv92AAAAABJRU5ErkJggg==);
  }
  @media (min-width: 768px) {
    .nav-bar-wrap .app-info-wrap[data-v-0c361219]:before {
      margin-right: 34px;
      width: 76.8px;
      height: 30.72px;
    }
  }
  .nav-bar-wrap .app-info-wrap[data-v-0c361219]:after {
    margin-left: 22px;
    width: 50px;
    height: 20px;
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(data:image/png;base64,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);
  }
  @media (min-width: 768px) {
    .nav-bar-wrap .app-info-wrap[data-v-0c361219]:after {
      margin-left: 34px;
      width: 76.8px;
      height: 30.72px;
    }
  }
  .nav-bar-wrap .tools-wrap[data-v-0c361219] {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-bar-wrap {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--mg) 0;
    transition: padding 0.2s;
    box-sizing: border-box;
  }
  .nav-bar-wrap.is-scroll-state {
    padding: 10px 0;
    overflow: hidden;
  }
  .nav-bar-wrap:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%);
    width: 100%;
    max-width: 720px;
    height: 100%;
    background: var(--bg-tab);
    opacity: var(--40579418);
    transition: opacity 0.3s;
  }
  .nav-bar-wrap .nav-bar {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px;
    height: 100%;
  }
  .nav-bar-wrap .nav-bar .nav-bar-content {
    padding: 0 var(--mg);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-bar-wrap .nav-bar .nav-bar-content .left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 8px;
  }
  .nav-bar-wrap .nav-bar .nav-bar-content .base-logo {
    width: 32px;
    height: 32px;
    margin-right: 6px;
  }
  .nav-bar-wrap .nav-bar .nav-bar-content .name {
    color: var(--btn-text);
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .nav-bar-wrap .nav-bar .nav-bar-content .base-help-btn,
  .nav-bar-wrap .nav-bar .nav-bar-content .base-alarm-logo-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-weight);
    margin-right: 8px;
  }
  .nav-bar-wrap .nav-bar .nav-bar-content .base-help-btn svg,
  .nav-bar-wrap .nav-bar .nav-bar-content .base-alarm-logo-btn svg {
    font-size: 18px;
  }
  .nav-bar-wrap .nav-bar .nav-bar-content .base-alarm-logo-btn svg {
    font-size: 14px;
  }
  .nav-bar-wrap .nav-bar .nav-bar-content .right {
    display: flex;
    align-items: center;
  }
  .nav-bar-wrap .nav-bar .nav-bar-content .right .base-help-btn {
    margin-right: 12px;
  }
  
  .van-row {
    display: flex;
    flex-wrap: wrap;
  }
  .van-row--nowrap {
    flex-wrap: nowrap;
  }
  .van-row--justify-center {
    justify-content: center;
  }
  .van-row--justify-end {
    justify-content: flex-end;
  }
  .van-row--justify-space-between {
    justify-content: space-between;
  }
  .van-row--justify-space-around {
    justify-content: space-around;
  }
  .van-row--align-center {
    align-items: center;
  }
  .van-row--align-bottom {
    align-items: flex-end;
  }
  .van-col {
    display: block;
    box-sizing: border-box;
    min-height: 1px;
  }
  .van-col--1 {
    flex: 0 0 4.16666667%;
    max-width: 4.16666667%;
  }
  .van-col--offset-1 {
    margin-left: 4.16666667%;
  }
  .van-col--2 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .van-col--offset-2 {
    margin-left: 8.33333333%;
  }
  .van-col--3 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .van-col--offset-3 {
    margin-left: 12.5%;
  }
  .van-col--4 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .van-col--offset-4 {
    margin-left: 16.66666667%;
  }
  .van-col--5 {
    flex: 0 0 20.83333333%;
    max-width: 20.83333333%;
  }
  .van-col--offset-5 {
    margin-left: 20.83333333%;
  }
  .van-col--6 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .van-col--offset-6 {
    margin-left: 25%;
  }
  .van-col--7 {
    flex: 0 0 29.16666667%;
    max-width: 29.16666667%;
  }
  .van-col--offset-7 {
    margin-left: 29.16666667%;
  }
  .van-col--8 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .van-col--offset-8 {
    margin-left: 33.33333333%;
  }
  .van-col--9 {
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .van-col--offset-9 {
    margin-left: 37.5%;
  }
  .van-col--10 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .van-col--offset-10 {
    margin-left: 41.66666667%;
  }
  .van-col--11 {
    flex: 0 0 45.83333333%;
    max-width: 45.83333333%;
  }
  .van-col--offset-11 {
    margin-left: 45.83333333%;
  }
  .van-col--12 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .van-col--offset-12 {
    margin-left: 50%;
  }
  .van-col--13 {
    flex: 0 0 54.16666667%;
    max-width: 54.16666667%;
  }
  .van-col--offset-13 {
    margin-left: 54.16666667%;
  }
  .van-col--14 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .van-col--offset-14 {
    margin-left: 58.33333333%;
  }
  .van-col--15 {
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
  .van-col--offset-15 {
    margin-left: 62.5%;
  }
  .van-col--16 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .van-col--offset-16 {
    margin-left: 66.66666667%;
  }
  .van-col--17 {
    flex: 0 0 70.83333333%;
    max-width: 70.83333333%;
  }
  .van-col--offset-17 {
    margin-left: 70.83333333%;
  }
  .van-col--18 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .van-col--offset-18 {
    margin-left: 75%;
  }
  .van-col--19 {
    flex: 0 0 79.16666667%;
    max-width: 79.16666667%;
  }
  .van-col--offset-19 {
    margin-left: 79.16666667%;
  }
  .van-col--20 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .van-col--offset-20 {
    margin-left: 83.33333333%;
  }
  .van-col--21 {
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
  .van-col--offset-21 {
    margin-left: 87.5%;
  }
  .van-col--22 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .van-col--offset-22 {
    margin-left: 91.66666667%;
  }
  .van-col--23 {
    flex: 0 0 95.83333333%;
    max-width: 95.83333333%;
  }
  .van-col--offset-23 {
    margin-left: 95.83333333%;
  }
  .van-col--24 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .van-col--offset-24 {
    margin-left: 100%;
  }
  :root,
  :host {
    --van-sticky-z-index: 99;
  }
  .van-sticky--fixed {
    position: fixed;
    z-index: var(--van-sticky-z-index);
  }
  :root,
  :host {
    --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: 44px;
    --van-tabs-card-height: 30px;
    --van-tabs-nav-background: var(--van-background-2);
    --van-tabs-bottom-bar-width: 40px;
    --van-tabs-bottom-bar-height: 3px;
    --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;
    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: 15px;
  }
  .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-radius-sm);
  }
  .van-tabs__nav--card.van-tabs__nav--shrink {
    display: inline-flex;
  }
  .van-tabs__line {
    position: absolute;
    bottom: 15px;
    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,
  :host {
    --van-divider-margin: var(--van-padding-md) 0;
    --van-divider-vertical-margin: 0 var(--van-padding-xs);
    --van-divider-text-color: var(--van-text-color-2);
    --van-divider-font-size: var(--van-font-size-md);
    --van-divider-line-height: 24px;
    --van-divider-border-color: var(--van-border-color);
    --van-divider-content-padding: var(--van-padding-md);
    --van-divider-content-left-width: 10%;
    --van-divider-content-right-width: 10%;
  }
  .van-divider {
    display: flex;
    align-items: center;
    margin: var(--van-divider-margin);
    color: var(--van-divider-text-color);
    font-size: var(--van-divider-font-size);
    line-height: var(--van-divider-line-height);
    border-color: var(--van-divider-border-color);
    border-style: solid;
    border-width: 0;
  }
  .van-divider:before,
  .van-divider:after {
    display: block;
    flex: 1;
    box-sizing: border-box;
    height: 1px;
    border-color: inherit;
    border-style: inherit;
    border-width: var(--van-border-width) 0 0;
  }
  .van-divider:before {
    content: "";
  }
  .van-divider--hairline:before,
  .van-divider--hairline:after {
    transform: scaleY(0.5);
  }
  .van-divider--dashed {
    border-style: dashed;
  }
  .van-divider--content-center:before,
  .van-divider--content-left:before,
  .van-divider--content-right:before {
    margin-right: var(--van-divider-content-padding);
  }
  .van-divider--content-center:after,
  .van-divider--content-left:after,
  .van-divider--content-right:after {
    margin-left: var(--van-divider-content-padding);
    content: "";
  }
  .van-divider--content-left:before {
    max-width: var(--van-divider-content-left-width);
  }
  .van-divider--content-right:after {
    max-width: var(--van-divider-content-right-width);
  }
  .van-divider--vertical {
    display: inline-block;
    width: var(--van-border-width);
    height: 1em;
    margin: var(--van-divider-vertical-margin);
    vertical-align: middle;
  }
  .van-divider--vertical:before {
    height: 100%;
    border-width: 0 0 0 var(--van-border-width);
  }
  .van-divider--vertical:after {
    display: none;
  }
  .van-divider--vertical.van-divider--hairline:before {
    transform: scaleX(0.5);
  }
  .timeline-item[data-v-66f646c4] {
    position: relative;
  }
  .timeline-item[data-v-66f646c4]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary);
  }
  .base-user-tab {
    background: var(--bg-input);
    display: grid;
    grid-template-columns: repeat(var(--84f29e72), 1fr);
  }
  .base-user-tab .tab-item {
    width: 100%;
  }
  .base-user-tab .tab-item.active {
    background: var(--bg-weight);
  }
  

  @charset "UTF-8";

:root,
:host {
	--van-notice-bar-height: 40px;
	--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: 24px;
	--van-notice-bar-background: var(--van-orange-light);
	--van-notice-bar-icon-size: 16px;
	--van-notice-bar-icon-min-width: 24px
}

.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
}

@font-face {
	font-family: swiper-icons;
	src: url(data:application/font-woff;charset=utf-8;base64,\ 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);
	font-weight: 400;
	font-style: normal
}

:root {
	--swiper-theme-color: #007aff
}

:host {
	position: relative;
	display: block;
	margin-left: auto;
	margin-right: auto;
	z-index: 1
}

.swiper {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
	display: block
}

.swiper-vertical>.swiper-wrapper {
	flex-direction: column
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
	box-sizing: content-box
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
	transform: translateZ(0)
}

.swiper-horizontal {
	touch-action: pan-y
}

.swiper-vertical {
	touch-action: pan-x
}

.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
	display: block
}

.swiper-slide-invisible-blank {
	visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
	height: auto
}

.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
	perspective: 1200px
}

.swiper-3d .swiper-wrapper {
	transform-style: preserve-3d
}

.swiper-3d {
	perspective: 1200px
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
	transform-style: preserve-3d
}

.swiper-css-mode>.swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
	display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
	scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
	scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
	scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
	scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
	scroll-snap-align: none
}

.swiper-css-mode.swiper-centered>.swiper-wrapper:before {
	content: "";
	flex-shrink: 0;
	order: 9999
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
	scroll-snap-align: center center;
	scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
	margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
	height: 100%;
	min-height: 1px;
	width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
	margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before {
	width: 100%;
	min-width: 1px;
	height: var(--swiper-centered-offset-after)
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10
}

.swiper-3d .swiper-slide-shadow {
	background: #00000026
}

.swiper-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(to left, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(to right, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(to top, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient(to bottom, #00000080, #0000)
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	transform-origin: 50%;
	box-sizing: border-box;
	border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
	border-radius: 50%;
	border-top-color: transparent
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
	animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
	0% {
		transform: rotate(0)
	}

	to {
		transform: rotate(360deg)
	}
}

.small-btn[data-v-fce613ad] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-7f04e156] {
	padding-bottom: 60px
}

.home-wrap .custom-swiper[data-v-7f04e156] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 3px solid transparent
}

.home-wrap .custom-swiper .van-swipe[data-v-7f04e156] {
	border-radius: 8px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-7f04e156] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-7f04e156] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-7f04e156] .van-swipe-item {
	border-radius: 8px
}

.home-wrap .custom-swiper .van-swipe[data-v-7f04e156] .van-swipe-item img {
	width: 100%;
	height: 175px;
	border-radius: 8px;
	object-fit: center
}

.home-wrap .card1[data-v-7f04e156] {
	background: url(./home-card-bg1-DaGohe6n.png) no-repeat center;
	overflow: hidden;
	background-size: cover
}

.home-wrap .card2[data-v-7f04e156] {
	background: url(./home-card-bg2-BG8YrEpv.png) no-repeat center;
	overflow: hidden;
	background-size: cover
}

.home-wrap .customer-van-tabs[data-v-7f04e156] .van-tabs__line {
	background: linear-gradient(to right, #28c7a0, #847cd5)
}

.small-btn[data-v-9faab59a] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-d76e3884] {
	padding-bottom: 80px
}

.home-wrap .custom-swiper[data-v-d76e3884] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 1px solid var(--border-color);
	background: var(--bg-card)
}

.home-wrap .custom-swiper .van-swipe[data-v-d76e3884] {
	border-radius: 4px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-d76e3884] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-d76e3884] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-d76e3884] .van-swipe-item {
	border-radius: 4px
}

.home-wrap .custom-swiper .van-swipe[data-v-d76e3884] .van-swipe-item img {
	width: 100%;
	height: 175px;
	border-radius: 4px;
	object-fit: center
}

.home-wrap .card1[data-v-d76e3884] {
	background: url(./home-card-bg1-DaGohe6n.png) no-repeat center;
	overflow: hidden;
	background-size: cover
}

.home-wrap .card2[data-v-d76e3884] {
	background: url(./home-card-bg2-BG8YrEpv.png) no-repeat center;
	overflow: hidden;
	background-size: cover
}

.home-wrap .customer-van-tabs[data-v-d76e3884] .van-tabs__line {
	background: linear-gradient(to right, #28c7a0, #847cd5)
}

.small-btn[data-v-6bf49eeb] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-c11c7fcf] {
	padding-bottom: 80px
}

.home-wrap .custom-swiper[data-v-c11c7fcf] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 1px solid var(--border-color);
	background: var(--bg-card)
}

.home-wrap .custom-swiper .van-swipe[data-v-c11c7fcf] {
	border-radius: 4px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-c11c7fcf] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-c11c7fcf] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-c11c7fcf] .van-swipe-item {
	border-radius: 4px
}

.home-wrap .custom-swiper .van-swipe[data-v-c11c7fcf] .van-swipe-item img {
	width: 100%;
	height: 175px;
	border-radius: 4px;
	object-fit: center
}

.home-wrap .card1[data-v-c11c7fcf] {
	background: url(./home-card-bg1-DaGohe6n.png) no-repeat center;
	overflow: hidden;
	background-size: cover
}

.home-wrap .card2[data-v-c11c7fcf] {
	background: url(./home-card-bg2-BG8YrEpv.png) no-repeat center;
	overflow: hidden;
	background-size: cover
}

.home-wrap .customer-van-tabs[data-v-c11c7fcf] .van-tabs__line {
	background: linear-gradient(to right, #28c7a0, #847cd5)
}

.small-btn[data-v-2699dfaf] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-1fd47f4e] {
	padding-bottom: 60px
}

.home-wrap .custom-swiper[data-v-1fd47f4e] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 3px solid transparent
}

.home-wrap .custom-swiper .van-swipe[data-v-1fd47f4e] {
	border-radius: 8px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-1fd47f4e] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-1fd47f4e] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-1fd47f4e] .van-swipe-item {
	border-radius: 8px
}

.home-wrap .custom-swiper .van-swipe[data-v-1fd47f4e] .van-swipe-item img {
	width: 100%;
	height: 175px;
	border-radius: 8px;
	object-fit: center
}

.home-wrap .newLine[data-v-1fd47f4e] {
	text-align: center
}

.home-wrap .card1[data-v-1fd47f4e] {
	background: url(./home-card-bg1-Dfp09VW3.png) no-repeat center;
	overflow: hidden;
	background-size: cover
}

.home-wrap .card2[data-v-1fd47f4e] {
	background: url(./home-card-bg2-BTgYKbNS.png) no-repeat center;
	overflow: hidden;
	background-size: cover
}

.home-wrap .customer-van-tabs[data-v-1fd47f4e] .van-tabs__line {
	background: linear-gradient(to right, #28c7a0, #847cd5)
}

.small-btn[data-v-294c0b82] {
	background: var(--primary);
	color: #000;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-c2e2724d] {
	padding-bottom: 60px
}

.home-wrap .custom-swiper[data-v-c2e2724d] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius)
}

.home-wrap .custom-swiper .van-swipe[data-v-c2e2724d] {
	border-radius: 10px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-c2e2724d] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-c2e2724d] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-c2e2724d] .van-swipe-item {
	border-radius: 10px
}

.home-wrap .custom-swiper .van-swipe[data-v-c2e2724d] .van-swipe-item img {
	width: 100%;
	height: 200px;
	border-radius: 10px;
	object-fit: center
}

.home-wrap .tool[data-v-c2e2724d] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADYAAAA2CAYAAACMRWrdAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAMSSURBVGiB7ZpNaxNRFIafc2YynZRGa62timJREelCN4IgiN3qRhcuBBf6FwT3/Qm6cusfcOFOBEGX4sZFwW2lflQtta1JM2mazHExiaQ1sYmZOs3FZ5PhDoT3zbn3ZIbzCj1ii0xRZwbhOiJHMZlENACNQMrJpxchWkY0IvaiGD9S9cqIHxEHEeQivKCM5CMII2SkjBQidDza1MkoF04Xo/q5Uj5/KgKqQElE4l50SteGPnIX5Q7mn0aG38XeiefqH1vAv/iRfbOLvf5Anak0NIW2/QawJiKVbr5lR2P2mRsYD8D38c8+ZGLuSa9SU6YGLO9k8I/G7DMPMP/mHjG0nSKw2mmLartFW2TKPvEWGTtG4d6tPWgKoABMmpnf7uZvFbNFpoh5iXf8KZMLD3ddXv/UgK8iUmtd3GLM5hkl4CXe8VcDYqpJVUS2NLCtW3GIWWTftwEzBRCY2Vjrwq/9aR+YwfybjD+69u91pULBzCoiUobWiimPCa/cJ7j9IzNp/XOgeaHQqBbDXxh78TozSengm9kINCvmMYt/ci+29L9hBEBsnlGG9D1H6uezVpQin5Qh7iCjz7JWkjKhEus03sRc1kpSZlhRPUNw6U3WSlLGU5BxZKqYtZKU8dVMc4QXXDOmKqLrBFfXs1aSNpq8zruHgu+qMXXVmLMV89w0FrtqTP3AuVYPoLHloqxF7AaqGrpZMQjcPGNI3lVjhf/GBglFJtw0tqmH3TSWC8862u6Dy27+QcNEPWsRu4ECPQ2tB4RYSQZnrlFTwMWtuKmAi+2+qiT5CdcoaWMovZG1khSpiEjcnGiWMpWSLmvQGPyJSAk3umOtmdhpTQ2sZCQmTZabF7+MNabtgzycKLbmq7bkPETkO0mMbtCoAqutC+2yVEsM1nmrAUvbw2Jt02+N4NUhIPgHwvqhSmLqt0J0jPWZmQKjJCmzvUixcXTasnMQ0ywEDtIST8qYGrDSjBZ1ovvobGJwPxD2Kexv2SDJBnf1MNG1sSaNLTpCcv5yJJVsG+jsg5ikMnWSh/RKu3P0J34C3NvjqHVCAlkAAAAASUVORK5CYII=) no-repeat center
}

.home-wrap .bg-blur[data-v-c2e2724d] {
	position: relative;
	z-index: 1;
	overflow: hidden
}

.home-wrap .bg-blur[data-v-c2e2724d]:before {
	content: "";
	position: absolute;
	width: 100px;
	height: 100px;
	background: var(--bg-color);
	filter: blur(50px);
	bottom: -40px;
	right: -40px;
	border-radius: 50%;
	z-index: 0
}

.home-wrap .slogan-banner[data-v-c2e2724d] {
	background: url(./index-quan-bg-CkUO8Ku9.png) no-repeat center;
	background-size: cover;
	height: 120px;
	border-radius: 22px;
	margin-top: 16px
}

.home-wrap .customer-van-tabs[data-v-c2e2724d] .van-tabs__line {
	background: var(--primary)
}

.home-wrap .tab-bar[data-v-c2e2724d] {
	display: flex;
	align-items: center;
	background: linear-gradient(180deg, #ffffff1f 3%, #fff0)
}

.rich-text[data-v-c2e2724d] table {
	max-width: 100% !important;
	border: 1px solid #ccc;
	margin: 10px 0
}

.rich-text[data-v-c2e2724d] table th,
.rich-text[data-v-c2e2724d] table td {
	border: 1px solid #ccc
}

.rich-text[data-v-c2e2724d] table td {
	padding: 0 5px;
	word-break: break-all
}

.rich-text[data-v-c2e2724d] p {
	font-size: 14px;
	line-height: 1.6
}

.rich-text[data-v-c2e2724d] h1 {
	font-size: 32px;
	font-weight: 700
}

.rich-text[data-v-c2e2724d] h2 {
	font-size: 24px;
	font-weight: 700
}

.rich-text[data-v-c2e2724d] a {
	color: var(--primary);
	text-decoration: underline
}

.rich-text[data-v-c2e2724d] a:hover {
	text-decoration: none
}

.rich-text[data-v-c2e2724d] p>img {
	max-width: 90% !important;
	height: auto !important;
	margin: 0 auto
}

.small-btn[data-v-7398b1a2] {
	background: var(--primary);
	color: #000;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-fed807b1] {
	padding-bottom: 60px
}

.home-wrap .custom-swiper[data-v-fed807b1] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius)
}

.home-wrap .custom-swiper .van-swipe[data-v-fed807b1] {
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-fed807b1] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-fed807b1] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-fed807b1] .van-swipe-item img {
	width: 100%;
	height: 200px;
	object-fit: cover
}

.home-wrap .tool-item[data-v-fed807b1] {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #000;
	color: var(--primary);
	border: 1px solid var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto
}

.home-wrap .tool-item .tool-icon[data-v-fed807b1] {
	width: 34px;
	height: 34px;
	color: var(--primary)
}

.home-wrap .tool[data-v-fed807b1] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADYAAAA2CAYAAACMRWrdAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAMSSURBVGiB7ZpNaxNRFIafc2YynZRGa62timJREelCN4IgiN3qRhcuBBf6FwT3/Qm6cusfcOFOBEGX4sZFwW2lflQtta1JM2mazHExiaQ1sYmZOs3FZ5PhDoT3zbn3ZIbzCj1ii0xRZwbhOiJHMZlENACNQMrJpxchWkY0IvaiGD9S9cqIHxEHEeQivKCM5CMII2SkjBQidDza1MkoF04Xo/q5Uj5/KgKqQElE4l50SteGPnIX5Q7mn0aG38XeiefqH1vAv/iRfbOLvf5Anak0NIW2/QawJiKVbr5lR2P2mRsYD8D38c8+ZGLuSa9SU6YGLO9k8I/G7DMPMP/mHjG0nSKw2mmLartFW2TKPvEWGTtG4d6tPWgKoABMmpnf7uZvFbNFpoh5iXf8KZMLD3ddXv/UgK8iUmtd3GLM5hkl4CXe8VcDYqpJVUS2NLCtW3GIWWTftwEzBRCY2Vjrwq/9aR+YwfybjD+69u91pULBzCoiUobWiimPCa/cJ7j9IzNp/XOgeaHQqBbDXxh78TozSengm9kINCvmMYt/ci+29L9hBEBsnlGG9D1H6uezVpQin5Qh7iCjz7JWkjKhEus03sRc1kpSZlhRPUNw6U3WSlLGU5BxZKqYtZKU8dVMc4QXXDOmKqLrBFfXs1aSNpq8zruHgu+qMXXVmLMV89w0FrtqTP3AuVYPoLHloqxF7AaqGrpZMQjcPGNI3lVjhf/GBglFJtw0tqmH3TSWC8862u6Dy27+QcNEPWsRu4ECPQ2tB4RYSQZnrlFTwMWtuKmAi+2+qiT5CdcoaWMovZG1khSpiEjcnGiWMpWSLmvQGPyJSAk3umOtmdhpTQ2sZCQmTZabF7+MNabtgzycKLbmq7bkPETkO0mMbtCoAqutC+2yVEsM1nmrAUvbw2Jt02+N4NUhIPgHwvqhSmLqt0J0jPWZmQKjJCmzvUixcXTasnMQ0ywEDtIST8qYGrDSjBZ1ovvobGJwPxD2Kexv2SDJBnf1MNG1sSaNLTpCcv5yJJVsG+jsg5ikMnWSh/RKu3P0J34C3NvjqHVCAlkAAAAASUVORK5CYII=) no-repeat center
}

.home-wrap .bg-blur[data-v-fed807b1] {
	position: relative;
	z-index: 1;
	overflow: hidden
}

.home-wrap .bg-blur[data-v-fed807b1]:before {
	content: "";
	position: absolute;
	width: 100px;
	height: 100px;
	background: var(--bg-color);
	filter: blur(50px);
	bottom: -40px;
	right: -40px;
	border-radius: 50%;
	z-index: 0
}

.home-wrap .slogan-banner[data-v-fed807b1] {
	background: url(./index-quan-bg-CkUO8Ku9.png) no-repeat center;
	background-size: cover;
	height: 120px;
	border-radius: 22px;
	margin-top: 16px
}

.home-wrap .customer-van-tabs[data-v-fed807b1] .van-tabs__line {
	background: var(--primary)
}

.home-wrap .tab-bar[data-v-fed807b1] {
	display: flex;
	align-items: center;
	background: linear-gradient(180deg, #ffffff1f 3%, #fff0)
}

.rich-text[data-v-fed807b1] table {
	max-width: 100% !important;
	border: 1px solid #ccc;
	margin: 10px 0
}

.rich-text[data-v-fed807b1] table th,
.rich-text[data-v-fed807b1] table td {
	border: 1px solid #ccc
}

.rich-text[data-v-fed807b1] table td {
	padding: 0 5px;
	word-break: break-all
}

.rich-text[data-v-fed807b1] p {
	font-size: 14px;
	line-height: 1.6
}

.rich-text[data-v-fed807b1] h1 {
	font-size: 32px;
	font-weight: 700
}

.rich-text[data-v-fed807b1] h2 {
	font-size: 24px;
	font-weight: 700
}

.rich-text[data-v-fed807b1] a {
	color: var(--primary);
	text-decoration: underline
}

.rich-text[data-v-fed807b1] a:hover {
	text-decoration: none
}

.rich-text[data-v-fed807b1] p>img {
	max-width: 90% !important;
	height: auto !important;
	margin: 0 auto
}

.small-btn[data-v-62c960ec] {
	background: var(--primary);
	color: #000;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-4a7cd046] {
	padding: 80px 0
}

.home-wrap .custom-swiper[data-v-4a7cd046] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 3px solid transparent
}

.home-wrap .custom-swiper .van-swipe[data-v-4a7cd046] {
	border-radius: 8px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-4a7cd046] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-4a7cd046] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-4a7cd046] .van-swipe-item {
	border-radius: 8px
}

.home-wrap .custom-swiper .van-swipe[data-v-4a7cd046] .van-swipe-item img {
	width: 100%;
	height: 200px;
	border-radius: 8px;
	object-fit: center
}

.home-wrap .scroll-notice[data-v-4a7cd046] {
	height: 38px;
	border-radius: 18px;
	opacity: 1;
	background: #ffffff21;
	box-sizing: border-box;
	border: 1px solid var(--border-color);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	padding-left: 30px
}

.home-wrap .tab-item[data-v-4a7cd046] {
	color: var(--btn-text);
	border-radius: 18px;
	opacity: 1;
	background: #ffffff14;
	box-sizing: border-box;
	border: 1px solid rgba(255, 255, 255, .16);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	padding: 10px;
	margin-right: 8px;
	cursor: pointer
}

.home-wrap .tab-item.active[data-v-4a7cd046] {
	background: var(--primary);
	color: #000;
	border: none
}

.home-wrap .coin-data-card[data-v-4a7cd046] {
	border-radius: 12px;
	background: #ffffff1f;
	padding: 15px
}

.small-btn[data-v-3fe5a4d2] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-9571a4f0] {
	padding-bottom: 80px
}

.home-wrap .custom-swiper[data-v-9571a4f0] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 1px solid var(--border-color);
	background: var(--bg-card)
}

.home-wrap .custom-swiper .van-swipe[data-v-9571a4f0] {
	border-radius: 4px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-9571a4f0] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-9571a4f0] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-9571a4f0] .van-swipe-item {
	border-radius: 4px
}

.home-wrap .custom-swiper .van-swipe[data-v-9571a4f0] .van-swipe-item img {
	width: 100%;
	height: 175px;
	border-radius: 4px;
	object-fit: center
}

.home-wrap .card1[data-v-9571a4f0] {
	background: url(./home-card-bg1-DaGohe6n.png) no-repeat center;
	overflow: hidden;
	background-size: cover
}

.home-wrap .card2[data-v-9571a4f0] {
	background: url(./home-card-bg2-BG8YrEpv.png) no-repeat center;
	overflow: hidden;
	background-size: cover
}

.home-wrap .customer-van-tabs[data-v-9571a4f0] .van-tabs__line {
	background: linear-gradient(to right, #28c7a0, #847cd5)
}

.small-btn[data-v-5997edd5] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.index-wrap[data-v-42cd38ae] {
	position: relative;
	padding: 64px 0;
	z-index: 1
}

.index-wrap .top-flag[data-v-42cd38ae] {
	position: relative;
	margin: 10px 0 20px;
	display: flex;
	justify-content: center;
	color: var(--btn-text2);
	font-size: 16px
}

.index-wrap .swiper-container[data-v-42cd38ae] {
	box-sizing: border-box;
	position: relative;
	border-radius: var(--card-radius);
	width: 100%
}

.index-wrap .swiper-container .custom-swiper[data-v-42cd38ae] {
	width: 100%;
	box-sizing: border-box;
	border-radius: var(--card-radius)
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-42cd38ae] {
	border-radius: 8px;
	overflow: hidden
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-42cd38ae] .van-swipe__indicators {
	bottom: 15px !important
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-42cd38ae] .van-swipe__indicator {
	width: 12px;
	height: 2px;
	opacity: .4;
	border-radius: 1px
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-42cd38ae] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--primary)
}

.index-wrap .swiper-container .custom-swiper .van-swipe-item img[data-v-42cd38ae] {
	width: 100%;
	height: 160px;
	border-radius: var(--card-radius);
	object-fit: center
}

.index-wrap.no-2 .notice-info[data-v-42cd38ae] {
	border: 1px solid #653B10
}

.index-wrap.no-2 .notice-info .volume-icon[data-v-42cd38ae] {
	background: #e4c58f
}

.index-wrap .notice-info[data-v-42cd38ae] {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
	width: 100%;
	height: 42px;
	color: var(--nav-border);
	padding: 0 20px 0 4px;
	margin-bottom: 16px;
	border: 1px solid var(--border-color);
	border-radius: 22px;
	margin-top: 8px
}

.index-wrap .notice-info .volume-icon[data-v-42cd38ae] {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #ffffff36;
	margin-right: 4px
}

.index-wrap .notice-info .volume-icon svg[data-v-42cd38ae] {
	width: 14px;
	height: 16px;
	color: var(--nav-border)
}

.index-wrap .notice-info .van-notice-bar[data-v-42cd38ae] {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 36px;
	background: transparent;
	color: var(--nav-border);
	font-size: 12px;
	padding: 0
}

.index-wrap .tools-part[data-v-42cd38ae] {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 24px 0 18px;
	height: 108px
}

.index-wrap .tools-part .deposit .icon[data-v-42cd38ae] {
	background: url(./1-deposit-CIx5PEH7.png) center no-repeat
}

.index-wrap .tools-part .exit .icon[data-v-42cd38ae] {
	background: url(./1-exit-024qFcBA.png) center no-repeat
}

.index-wrap .tools-part .company .icon[data-v-42cd38ae] {
	background: url(./1-intro-Cx_ejtKV.png) center no-repeat
}

.index-wrap .tools-part.no-2 .deposit .icon[data-v-42cd38ae] {
	background: url(./2-deposit-Bk3-5Kac.png) center no-repeat
}

.index-wrap .tools-part.no-2 .exit .icon[data-v-42cd38ae] {
	background: url(data:image/png;base64,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) center no-repeat
}

.index-wrap .tools-part.no-2 .company .icon[data-v-42cd38ae] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGwAAABsCAMAAAC4uKf/AAAC/VBMVEUAAADz4L7y4L7v37/y377y377z4L7y373z4b/x3b3x4L/y4L/v37/y4L/v37/04L/y4L3s0qTy37777+L67uX68ebr0aP77t/u16778OP+8q7w14/+6qvt1Kjs06b84qPx3rr+8LL/9LD+9bWqhFL987Gzrqnuz4aymnbds2v67Nz47uH61peulnL976/98Kf835+mfkj76NbQpmT76Z3uy4ftyn3dtW7/9qz96Kjkt6Htvpu0nXqqkmz769n159P149Dw27P88N736rX46qv87KPntJb85pXpx5DTq2jClln34cvy06HarmrQlGmqekT65tH88snu1sG1rKXiyZ30z5LpwnfaqGXUh17WSx378+j89M3DurLgwK7hvKi5sabWwJv13JnvyJLuw4XlwITyyoHGnF2zgkqkeUTWYTH9+eT16M3x3szz1LT1zqznz6XgwpHlrY/z04nkoILrtH/Gom/VoWPMoWHajV7mk1XMhlP26tvl1MDqyrO9tqv036jz2aDjtZn42o35pI3qrGnnnGDenVvamVjdk1TZi060hkq6gEXSgkLDgELLPxn678TqwaTcxqG3qaHhxpjErovgvIr2zofptXDMfU7Jb0Lfgj7NbjT88eb77NXo2cb24q/iy6Xsupb3q5b74ZH1m4G3oH7rvX3XoW7Vll+8kFTcdkivf0evdj/EVB7cNgywGgfCIwbYJQX8+enw2sb05cXWybfgxrfItKjUrqHtzp3ouZzsspzsxpvip5bxpYvxwnrklXekiGSggWD3p13df1G4i07dcTvFZSzPXCP89t7z2b/117ns0Lnez7jn1LHxyaPvrZTgq4H0q3/VsHfso2eae1PuUiCeFwTr4ti0pZq+o5rQu5fGsZK5pIO+n3j4u27dqWzmimvgpmHFkVH1lVCcMgi7urjYuZC7mmmDYzevYTXfVSWqOhhpHA1+JgXKDwH268vtto+5mo2rmozGqoKmi3vEn2fFg2TGi0rmZjOXXzKuWCO5QBjhDgKwnZKMNBIWAAAAEXRSTlMAr28g78+/7z+Af18Qn0Cfn1rfENYAAAiGSURBVGje7dp5WMtxHAfwLrmPla1t2VprQ40ShSIrVqLJkXQgurBColiFQifJXZEOVxEpKeSmKLdQ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) center no-repeat
}

.index-wrap .tools-part.no-3 .deposit .icon[data-v-42cd38ae] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGwAAABsCAMAAAC4uKf/AAADAFBMVEX///////8AAAD7+PT////////////28On////w49XkuZDksH3x59z////////fsYHv28T////p1bzw49Pw16fTtY7fyq3Rs4jq2rzovpTp2Lrp1b7////u49T////py6nYvJbcuoniyKjlzKr06t7hx5vUuZTlz7TbwaDnwJvby7TUt43nvJXky6jmwI/pxJ3pzKr////qyZrs2rTqwpr////////Vt4zs27/UupXyw4rVxKvozKzh0bv////NsIjcwZvUvZ3Qv6XewJHQvaTlsnnZuozXuIjkx5fkyqHmy5newZXhxJTewI/ntX3rt37ivIbmtHrkr3f96KrkyZr30pTgrnnShUThyKTawZ3cvo7svovntoHWi0f/9cfx0KDiwI3vt3X+6KD95pnuv3/lrnH1unD01p/exZ/qu3/Ji1K8czibVin/9L/z4Ljo0KPozp3xy5jgw5fkxJHbvIzyxobwvXnyTEOoYS768NPbt4X1x4Ditn/hpWbGhEy+eUX/77f96rbq06n52Jr005r32JPktYbqsXbzs2m1f0vFej/Bcjq0bDb//+f//dv15cD+77/75bHt2LH636D52qDoxpT3z47xxY7zwX/qrGnrpV/moVrhmljwn1PblVPAf0nkPDPKLSTn0q/43an1ypPzy4vqxIn4xHbss2/SlWDzaFzIkVrUkFLnbkzLfj7qRTvu3rr3zoTziX/7znzuf3fZom/hq2rOnmPdnmGwc0P/+c/36crx3q7rzpzksHzdtXfaq3XHoHTjkUjRe0HmUD2QUifw4cH1k4XovoPlpXDZqmm8jVntiljtfFLuWky4fEfxU0a0dUOfZznZSDm7ZDOOXTKpWS58SSVIKRP79d/lunL6wmrcfWrpj2fPXTuuYjCCVTBcNRn67MX+4IjUrX7wdW7ClWffY1jZilfuYUycXjS/RittQiHeJx4wGgrqz4792YDxoW/xlm33hWfyr1/eflimekrfgkLbc0CkcUCeSCuvIBTyqo3LcD62HxTNf2PcFxIfAAAARXRSTlMzbgA5Smc7QFhL/uxEMA3+aGN3Vv7+hf78+7CIamdS/v7+079P/MuhoJFq7ebkyrCXG+zr0SkH3s+wn3JwWxz84rl3+nh0Yzd1AAAJzklE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) center no-repeat
}

.index-wrap .tools-part.no-3 .exit .icon[data-v-42cd38ae] {
	background: url(data:image/png;base64,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) center no-repeat
}

.index-wrap .tools-part.no-3 .company .icon[data-v-42cd38ae] {
	background: url(data:image/png;base64,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) center no-repeat
}

.index-wrap .tools-part.no-4 .deposit .icon[data-v-42cd38ae] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGwAAABsCAMAAAC4uKf/AAADAFBMVEX///////8AAAD7+PT////////////28On////w49XkuZDksH3x59z////////fsYHv28T////p1bzw49Pw16fTtY7fyq3Rs4jq2rzovpTp2Lrp1b7////u49T////py6nYvJbcuoniyKjlzKr06t7hx5vUuZTlz7TbwaDnwJvby7TUt43nvJXky6jmwI/pxJ3pzKr////qyZrs2rTqwpr////////Vt4zs27/UupXyw4rVxKvozKzh0bv////NsIjcwZvUvZ3Qv6XewJHQvaTlsnnZuozXuIjkx5fkyqHmy5newZXhxJTewI/ntX3rt37ivIbmtHrkr3f96KrkyZr30pTgrnnShUThyKTawZ3cvo7svovntoHWi0f/9cfx0KDiwI3vt3X+6KD95pnuv3/lrnH1unD01p/exZ/qu3/Ji1K8czibVin/9L/z4Ljo0KPozp3xy5jgw5fkxJHbvIzyxobwvXnyTEOoYS768NPbt4X1x4Ditn/hpWbGhEy+eUX/77f96rbq06n52Jr005r32JPktYbqsXbzs2m1f0vFej/Bcjq0bDb//+f//dv15cD+77/75bHt2LH636D52qDoxpT3z47xxY7zwX/qrGnrpV/moVrhmljwn1PblVPAf0nkPDPKLSTn0q/43an1ypPzy4vqxIn4xHbss2/SlWDzaFzIkVrUkFLnbkzLfj7qRTvu3rr3zoTziX/7znzuf3fZom/hq2rOnmPdnmGwc0P/+c/36crx3q7rzpzksHzdtXfaq3XHoHTjkUjRe0HmUD2QUifw4cH1k4XovoPlpXDZqmm8jVntiljtfFLuWky4fEfxU0a0dUOfZznZSDm7ZDOOXTKpWS58SSVIKRP79d/lunL6wmrcfWrpj2fPXTuuYjCCVTBcNRn67MX+4IjUrX7wdW7ClWffY1jZilfuYUycXjS/RittQiHeJx4wGgrqz4792YDxoW/xlm33hWfyr1/eflimekrfgkLbc0CkcUCeSCuvIBTyqo3LcD62HxTNf2PcFxIfAAAARXRSTlMzbgA5Smc7QFhL/uxEMA3+aGN3Vv7+hf78+7CIamdS/v7+079P/MuhoJFq7ebkyrCXG+zr0SkH3s+wn3JwWxz84rl3+nh0Yzd1AAAJzklEQVRo3szUP0vDQBjH8ae9u+Rak9A2UqSEQmyLihi1pfUPpYug9RyaoZMI5h00Eqcbu+gmFDK6CDr7AgSdfCW+EFMltuL0QBP87seHHxwPZGd1dMpZZoExTtvGHDDDelWLU4XAAiMK5Rbt/cGMKqMEkogyavzG9CIFRFhOn8cIUyDBFEZmGCniLLxWJDGmY3eZBZNgt+nfmIHcpVYeJpOtEnab8YVRCqh2jqU8HTfKgIpWp1iPAa6T14/zs+vRUR1Qsd0soIcR+01KadvDCnoaGBYg25TTbK9FABOxOtDmWGzds6V0XReJAdeBUixG9oRwo9YAVyRxBbDlnKEIXEcFXAoHRgAd6TrOhoZ+xSADqZX5/5haKJe0lDCz5QvRLKSC1Vf80HODhpkGVrkT0TJP1NLA9t99EbXcUJPCNAJxq8/jKfYyzCWDbefz+Z+LcTDyo2n9pJZp4eXV4CL+ft0nEfb7gV+DZLClm9v7QYzB4aMIQtHMpYKRT1rr7TXJMA7geOCFTANjq8C8WK3BChYbsaso6sZyDRR1+irqa5I69VXKliJ4bstzosyZebyY5WQirLVSKSuH1FgRG6sGG61RrOgwOqxaF1GP2kW3296+/8CH3/P8eHgO4Q172o7UNTTU/QcMixc5YvZtW9q3dxyuvfs721pxPHCRxA4SBnVMW8Ew+Mkh2n7MtpYOwnjaFOfjbCBcK+DQxDD4VAXbypbwh+itRJti5p0zXeSDDAYCAbcXiy425ihJ6jF42kO/hsfj3Rs3XrFTgUU1GIpAa8KiiknDpcn6LW2B5OVqPUm5mEatRC8W2WA2DEoYpq5uKz4a/QGwQ0m1Wp1M9gxLh3hUOa2KkdlsNoFIQgdrAGtHJCviE7n6uoPCnkA/q89q1er72VQalU6nk8kMoOEOYFHB2oXCy8PjCYE7Xd8hHPL7BwaYTJ9vlMYg02jAqmE2CgkVbB8jFZ4YN094FG3CIR9ssapgWFVgXZkkg3OsYgyAEfeigu23p8LutNm1aCYKrYWCD/Ze8ha8wYhdLJZXRmMArGgjNqKDMRyR2RGzW5dX+31eGFiXLhVU1gDrqgZgYDBQkU9sbEYFk0Sji1WMGoALVh+wvLDFYhlgacRVDJwklTfY2LB5DFu3X5KJP1OYEV2e54d9Vn8FU1lUKmYNA9GpfJ4ahcnaW3GX9VBGaUq4dU6e2urXB7xeL2y1wP9gFUvYiNkshjkoVGuMJkiZSCAJtZ+VhMHaq3zMAabFGghqxNQaJuf1bG/asmkMT9eGF80uZcKE5CR8f4AFB1l9rGCQFegLggUBVlXjCdU7UcDs0vAzgD0xIeGMRO7TMDWhUEirFYfEIJqdwZBIbhqNDJqhidS82TvDi6SRKqZAJFOiTD9LE9LrtaK/DVegXDwTj+YIXC63qR67OUwrjSrN0DuAKcS0kZui8NjpV2MpKchxJRyJRDOCSibFcS63i9PZdawds2Fsm00vfas0x3XT6el8TtQ/GlsbOw20eYdjNSKABHFB1u1GEMRj2sHdzeXKZOdkLRvEsC0c26jUVU5EdPnck7xzWBqenY2lXn2ajz16VIJcWYEAciEe0Lsn95e5XeB7N9jNacFuCGvicHivpEjZFP6Zz5mcU68n07PvX5Tm52OP19YmJrJQDdMtIuU84fz5u5RTvb13zsr2YtePYXZxOBzW6ZSnrHBkRozpkeXXXefG3c9mS6uxH7+ABGWzbo9OWdatxpXT9wj3T1C6KRTK7W7ZLsy6MRKns7OTFfz87cU3UUgbkv9eWFh4k456dG5BCTgQlF1UKp8vrcwpIwLdzNTg/aPdJwF28oJMRlo3dqCC9X35+uD6dbDuo/KFGzfefFSYykvPdUh03uWCXB/mVuZefp9aTitmZpz6W8tnzgCs96yMe2C9WHNjFftawZJXrwZr2PTTD0tzc0vxTxAEeVZWXhrp8ofXBq/dcyYuXhvp7QTaqW4Zl9O8TuwP6XX3k1QcBnC8rYvW5tZWkKzWRm29bK2rbrrMmyN4IFmgCZrgQQKdHPSoGBPNgFNjXbDwfbZEVGQoE9+gBYSmoaESSmiw4czl0tSZbtl8yfU75D9w8nt5bj57Lp5nv3OJwLx1NiLV0tIS+t0W7N34Mb++OL8XHpv+/f7hhy9fJU6rRCK5n3lvRI/35cekaYxSBo/Pz7pEFjMzAaZd7QVxQbqwyWRqW5wtbG6JDy4vB8cWiubnP+oaJ3JyOCLeSLXPF5iMlVs435L5MvKYUcFkCrW2BIYgCJ7AhkoqB8ABaY4PDlZsFEVWrNyXlOI0hmLEhSOVO+uRyGJkhC8zk5/MSGDTYyAuIhbjC+GwKbjcf9BR+3OgqyvH3na4F1mx1NTgFg5H5Arg4ph+d3dncviyTEYji53LMqMKr27bbrdPI2LQij0ErP7x8fED6Wb9xIvD/b3Zaqc8t13oLVUPBTpxics1rOaUYnwz7RxJ7GQW32zQCN/F4/EtBCRungpVVIRsg+P9trFnLv3c/v7jmVaLPBfBOyd8Q8MTFp9azRGVYlfNNNopsnt2hU6VqdD67PT07FoQ3pQXrACFVk1tbVWFn+bWPj9p1efnvuVy8QKnK5MDEolYMObw0+6QXuqzdGoy3aFCSxo7dFqtNqOzaTVEaMACmH7mz4Oe186Y1LO5GXB1Z4KhAIVhGrfbTztL/hDfoCZTIdihMlCEOl1GRkP5lB1wBLYW6O7uedXypkoplssRpC/mO8MRsTEWxkRVKrf/wgny2KlrAKPDsAZdMnikuozOralpuz0YXlsYVQaczSBrn7hGjoj7CtQi4gjzFEYDwO6Qv/qgkylUSACD2Bp3NOpGhdnPt4E3+quqUql8lGe1KhuQmqe1Uq+3GOwaj6nQEBi4+eQxovM36QQmgFKhq2a/KhqNqtyosb29vU5KRPGgqMdDoRTzWCzsH0a7+P9vkKQUegKDIAGbxWKxMabG6HCgKGowGPwOh1HBY4DPMHyE3b6QdKy3/ukbd2FBWQIjtLKEy2aDYYkgqEzABsEEduv66WP/5iadv0ZNJTAGwKAjrAxgR9pflURFRfl6eyuLMVNpHERLQ007yhvkM4RlCCCqpqHFTNXxRk4tMUs1c21xkHdKQHaJi4vba5urWYppcTLTZnCTmYfTVsvaycnF2lrLlpOHebgNtY9aNmoZEIxaNmoZoF07RgEYhGIwHDRPXBS6F+/gUO9/tHYT6toXKPhdIGT/99ge22Orv49ZhEg05ASRlEFChETJEMkXxhmhcVaERkiQAaEbvM3IS3SNnGGet3TUmRw6S1aUMaUyE9UFsEd5pb00n7lIa3WJljt9ouXW10L6Ua/vc+wywnQDmXMUstmEDjcAAAAASUVORK5CYII=) center no-repeat
}

.index-wrap .tools-part.no-4 .exit .icon[data-v-42cd38ae] {
	background: url(data:image/png;base64,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) center no-repeat
}

.index-wrap .tools-part.no-4 .company .icon[data-v-42cd38ae] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGwAAABsCAMAAAC4uKf/AAADAFBMVEX///////8AAAD///+83Or///8o4P/6/f7///8o2v8n1P8gvP9b7f049f76/f/j9Pkt1P8qy/9E3P/i8fj////D4O0x6f8c0f8uv/9h1v////8p+P847v855v5D/f4Zv/Xs9/z8/v9F6P2hxddh6P0b2f4CvfUt3P83x/9R4P5c+P9H9v9CzP9a//jp9/wv4/+v/f////8gx//q+P442v9R0P9G0/9Q2v9a2v/L5PB02/7Y6/Px+fz///////9W5fw0zv+R4/cKtf0U2Pku8/8wxv+L8P3r9/w60/9O5v0kufxw5fyf6v1q3/2vzt864f8Dv/6a6/670eFt0/y+8f7///+F3f4JqP693+2m6P6/3utGyP////931fktzv/F4e2g8/25/f2B2vuo5fyX5fvN8Pq45vr///+fzeSM3/t82PvC+v7L9Pi77v+G2v5yz/BB0P1Q5/7o9/xv1f7g8PdzzO1T5/108f7m9vx38v5y8P4b9P9t8P0q//dL7f6P7vom7//o9vsn6v8nvf9U7v1l7P2c8PqE6flo7/0MgfOK+f5C7v5z6/wa9/8R9P8Uyv+r5/l49f5v8/6y7PrI5PAl8/8ozv8txf9g8f6J7frd8PjD4e2+3et7+P8u8v+T+v509P4t5f+M/f2W7fzX8vt+6vpBpvUh+v9N9P8J4P8Zuv997/w1//us9/uU8ft57/tt6vvB7frg8fmw5fmH3vKc3vHB3+ws/f80+f8n5P8O0v937PyL0fsz8/qx2u51+f8W7f8+9v6k+v0k//xf4fyL6fps5flq+f8Vvf+F8/0e5/2b3/wBqvrP7PhM//Ufi/Fl0PBV+v6E+f6e+P1m9v1A4vue5veq2/cc4/8XxP9V9P6L8fyy8vuX1/sGzPt25fpvvfk4sfk0//W11uUMwv5Frfhv7/Yf7f8O5f6E6/1Xwf2y+fxXtvmu4fJ53fK83+8Z3//C9vur7vu55Pkgk/gumffP5/F22u+a/P56xPm47fho1+1+4vWZzfB3/e4As+0lk8IHAAAAd3RSTlMzbgBL/mf+PDj+/v7+/lNI/v78UAuy/v7+9TD+/v786rJk/v79/Pz7/v79/Pz6+fexQPs7/f38+ff39F5cWVf+/f37+fj38cH+/enWcf7++PfqnXdKG/z41tDCvSnr18C4qKWYi3xWHOzoyL2UY1bl4N7d1dPJoC7QbCUAAAj6SURBVGjevNZpTJJxHMBxihASKUVT8WqViqnNvM0uK21WWtndOtZ9n+vSMGSgxh5Sg1JxxaHWJA86l6YjBCXDOZdIS2XTZa50q63WVq226vcHzVq98KnHvjpe8ObD7/97/gPS2OFcPELnUsYQGGUuebPLT8AwtncCZR45lEYiMFooeR6FvPc3zGUChYwg4iNTyC6/Yh5TyMQzw5zHzxiNQiWNYlQKbRijTRlVC7QptCHMA/9c+GfzsGEuoz2XbTYXK0Ymk/5D5AkI20sh/ZcoawEb9cGGRyO5UEj/JxrFhbR5Hgl/a5J2nNiyZWc4CU/zPEi4TzF8z64DrMjg4EhW7EYqrnMMJc2l4pIO71jGig52FwjcA4JBI+EodC6JQsNzfMuSezKKIgV0usDdPSCStWAnrqWRxuCgdqXo2683Ng4MwGQ2LWU3Dm3MiDHa7oNVllvTmVFRUcExpaChk2TFphwmHptzsNTiO386k8lMTIwLCIgxCKwaWttEojHnBevLrVZEYlxcXGFhYXKygA5/SNsWTjB2aOl6uu8SZkSEo6Ojk1MhZIiiQ4LCYNa6nQRj25euD3NYsiKCDViBk5VTF9JRhVGs/UmjgE1dwWaPR1oB0hJL6eXl5XR6QDRr/x6CsYWAeYfY2Y0Hzh5xTtE95ShBQEzsgXAisZmASbneIcVIG29v03oiEUYPC46J3UEw5hbI9QpxLf7BgZcR8BjqdIqK2bKaSGzyQvvAIC9X12L+AzvE2SMuUU1HWJhTdMzRPURiK/0Ai5fz+Q8ePADNxjEHENYZ5hjNOhVOMMaIl/N4iPsxnW9jZ2dfZ2dBYnTsLkKxGQjLRxq/GFZn4yzMPCisgBmzkVjMhxHvmQ8aj+8KhbDZwLEtjkhzi4hOoRKPIQ1Gc/Xytk33tMKKsZkpE4nD/BfN8KmJ9+RwAOvI68vzFnm5Is0uKwIsezZzMdEYWByeFvNd2NLS5wUaelS8s/Lc3OzHryACC1+9adPq8G1DWC7HpJK3GUHL0zGsF6G4ws3NzY8YbFNUQoL7JitWWV2Wk8vQeubkytUtLS12OrmcDxkRZhdCAHYkKi4BtBjAWisbAFO1wUtuWzIcJIwmh4cF8/Pze9tBBLaa6ZiwNThBMNm/1oYF+pTl5ubWlCwETFcjh4uAvYWIwVaEsI9sjSvs8/f3QRjH7JODMPP0vlodLBGuAtYBNYcsXvOvmMeakHi708ciHMO++TejnXGafDhWrK4WsMpqT898rBl65XUz6R8xaKuOx18ylR3htqi5mYMwHe9VfX2N2VhbywCsuqwM48MbgNUtS/onzJmUdJxRzYDvFq4is7n/Rn99fZNI01zPM6oxwFoBa2go4SGMcVNddAE4Z+pfYdQpG+4tu27RVFbXyL0kCkzpegMy6zQ8kVidrait1bRWnjsHWD4HYrzMzi4F7sm+VeH4sd0b7s3nGrOzpZXnqmtUmEnWJJEW37gh0TDamrQmxZ8w4AaYzI/7VuHGZk0XSSuyMzLUNb29bZhM2xTY1WUWZ2JBqjar1t2tae09B1qJZ05ODmBqq3a+kdm4fCJuLL2iKEOdXVUl652h17ebQFMFBQWqREEqVWCTbBCDSjzLbJi6VF1aWmroSX6BF6PNOm+1IExfpW//ZJ1NpRKJQOsyawHjD2LoRnA0LzOGMvwFVlRksVj0VVV6Bdaub8dkMq3SLO3KFIm43C6pRNHtv+hPmAH+x+HHDEVFA+mmdr3+U4nik0IrlslkSonUgQtlStOxAv9unhWDnXFyASuyZTAsuOqME3O+8+FNRsWtTLOpRKEoEUulWsDEEqE0MxMwB+HNDL+O/vochMnzAdPdPG/L8Obq/dm4MOdJs1JT73y4WJfFFaG4UolYLBMrJUKhQybkILxV0d5VD9ec04Bp4NkXVQxad69A01ZNHDEG1OXLqdD7CpgNHZtQqRSLxcozknRhlgMqKytLaFSI4Jb3m+Anlyr9wnVbt8G6P20acCPCqIdmXYY+X0tNvTT/gjEtPV0iUaalDWKg+QJlndABw+Cay+ResEShVet59PnKlYf3pkHLV1FHgJ38cBlVNePru0u+jY230tLSlEPYWaQBBR9AmIWWZzRJ0ry94QGVptcB9ejRpWevn38BavmLFxtGgH1nr35emwbjOI5fevTXZd4GJRQ0B72JB4XZk+wf2MGL/4OXZqEUAmtrIIfAPEjTkxtBqJLULrmk9DQLo2g3pBGkxfaQS5u1bEvQ6gZ+v6ndl7HL00NufUPOLz7hyZNXQgm50e93D74emWazqGQwMAETxSwmZjZh5dstjuPWViEut5VvojUIghAwoBJlFiwpScidjODjOvrww/mjArcZlQENAwttOJs5jlvtdDpg/kynmwNZDkLv7x5SicQKywF5+lySpNLJaPTxW+Hg/c3sac01FaNigIVaRsSdkSZmX99Y70B807LSniy3A+9wvGch9eIJ49FHTthFDu7x3N18QVEUp4LTILRmiYDlQePX9s8tTwZLR6qRIIoBizgBuG73FC5y/t666TiOYczfJD4gAQUfQioFx2hAFK1iwuhl7laBc1sbj+/wimFUCtUdQxRJyhfdz4pipv5Tv4hixKhbyYeSEHGt1sajZ7xx0BU+VXdgowKZpllUJ5pbUZCiF7gCF+PiGHHb2xF3f78rwCX25TLNtm336iqkFseIEyJObfXqw+EZalgJe6NpF6HcRopWLY5dX0fc3ALsQm+3Q+/KKhaMfZ1fn06n/Sg9CHX/cEwUK8a+rj/0PU/HfL8/Pk9bDbtMFBvGvq7Xq8/qua57TBQ7xr6ups5z1eMJUYzYYlztMqTKRLFj7Fzp7HvUbBX8kGPBsNtJacY1JppNVBwY/RGQegl3YHwYcYJmIxUrRhxSsWPUEltiS+xfu3ZoAzAMA1HUzclSUJBRWEfIAtkiLPvPUZlVDa0P+Rb4skxfxjKWsYzF73LIQFpVJxqcOdEYENIA6VNIm1uM9jQ1KY1FoVCkLCbyIp0GUGEekxwyMSWTifIA7N0/tBcak6vQZgdaXohBy20daNlnG39z7NHtFXgAbTIRu6OTjdIAAAAASUVORK5CYII=) center no-repeat
}

.index-wrap .tools-part.no-5 .deposit .icon[data-v-42cd38ae] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGwAAABsCAMAAAC4uKf/AAADAFBMVEX///////8AAAD7+PT////////////28On////w49XkuZDksH3x59z////////fsYHv28T////p1bzw49Pw16fTtY7fyq3Rs4jq2rzovpTp2Lrp1b7////u49T////py6nYvJbcuoniyKjlzKr06t7hx5vUuZTlz7TbwaDnwJvby7TUt43nvJXky6jmwI/pxJ3pzKr////qyZrs2rTqwpr////////Vt4zs27/UupXyw4rVxKvozKzh0bv////NsIjcwZvUvZ3Qv6XewJHQvaTlsnnZuozXuIjkx5fkyqHmy5newZXhxJTewI/ntX3rt37ivIbmtHrkr3f96KrkyZr30pTgrnnShUThyKTawZ3cvo7svovntoHWi0f/9cfx0KDiwI3vt3X+6KD95pnuv3/lrnH1unD01p/exZ/qu3/Ji1K8czibVin/9L/z4Ljo0KPozp3xy5jgw5fkxJHbvIzyxobwvXnyTEOoYS768NPbt4X1x4Ditn/hpWbGhEy+eUX/77f96rbq06n52Jr005r32JPktYbqsXbzs2m1f0vFej/Bcjq0bDb//+f//dv15cD+77/75bHt2LH636D52qDoxpT3z47xxY7zwX/qrGnrpV/moVrhmljwn1PblVPAf0nkPDPKLSTn0q/43an1ypPzy4vqxIn4xHbss2/SlWDzaFzIkVrUkFLnbkzLfj7qRTvu3rr3zoTziX/7znzuf3fZom/hq2rOnmPdnmGwc0P/+c/36crx3q7rzpzksHzdtXfaq3XHoHTjkUjRe0HmUD2QUifw4cH1k4XovoPlpXDZqmm8jVntiljtfFLuWky4fEfxU0a0dUOfZznZSDm7ZDOOXTKpWS58SSVIKRP79d/lunL6wmrcfWrpj2fPXTuuYjCCVTBcNRn67MX+4IjUrX7wdW7ClWffY1jZilfuYUycXjS/RittQiHeJx4wGgrqz4792YDxoW/xlm33hWfyr1/eflimekrfgkLbc0CkcUCeSCuvIBTyqo3LcD62HxTNf2PcFxIfAAAARXRSTlMzbgA5Smc7QFhL/uxEMA3+aGN3Vv7+hf78+7CIamdS/v7+079P/MuhoJFq7ebkyrCXG+zr0SkH3s+wn3JwWxz84rl3+nh0Yzd1AAAJzklE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) center no-repeat
}

.index-wrap .tools-part.no-5 .exit .icon[data-v-42cd38ae] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGwAAABsCAMAAAC4uKf/AAAC9FBMVEX///////8AAAD////////////+/fz//v7+/Pn////////+31n//////fz8pUb77Mz8rkf8xn3////////////95GX8r0z8tlvw49r88ur16+f06ub+9ur22rX84l79q0P87eD8rk783W77u2P68On80Jb44cbv1bT06eD69O/////q29T1w2783mj6uV78wXf52Kr56sT////////sz6Xv39X8s1L7vmj1z5X////+9vT6tWH75Gn/8e/36uT34831y4T71nLUyMH75ND95X7775r955T9rDjm19Dk1c/+qzf+8u7++fj+pkD+xIH+oj7/+/r+zFn+zWb77uL/p0Ho2dHLwL3+xYn//Pz86tr90W7+5sj+xY79rDX879/76Nb55s77243+x4b66+L95cX+z3/91Hvp29T96cz+58z90Hn+0XXz5Nr+7db97NLz4dDNwLn+xIX+y2z+4V3n18z/8/D+6tDHvLXLv7T9ynL+z1/+1ln+pD778uf8693979r+68j94cD+xnz+rjb89Ov36d/v39P937n93LT92KD+yZP+x2z+2Vvs3ND248/Jvrn91aT+0Yf0xob+y3z+y1X88OLp0bT0zJj+0I7+y4H+x4H81X/92HP90mf9yWH902D0wWD9yVv8rTv5rDfHu6792az90Zv+xHX9v2b5xV/+9/T+8Of+57v83Zz+zpT+2nvywXvzvGP+xVz+01b2tlX9587+7c3748r836701K3815b84ID4wWX912PztE399fDt39jv3s3y3szUx8H93Kb21aXTwaT+w3v1uF796sTn1cL20Z393pX91JH2zJH7uHHyvW/80Fb6qk/1sEP5sT37qTb7xSfazcfz28H+6LD94I3nxIv9yorpwn39xmf6ulr+2MDrzpDewozswXPwxWz6skztpzH+3c3g08vYv5f2xXT652/5rlj4wk33u0T9sib89BzUxbD3zoX47mb83Gb+5k//rDj0+hv+yxjy72PZqlH85jGUIulhAAAAR3RSTlMzbgBnTDdIOj8wDf5jWv5G53dqV1Lk3LKqpGtgOvzz8ezOyZeFY/zXe1Ub5tvRp4RXVSkH+87CkIgc7t7X08W/mPfm5OG7lACYaP8AAAlOSURBVGje7dpnWFJRHAbwW4zUyvbee++9d4IoCUSGGkgCggKaGQUOxDQxylLTtKVpallmSy1tmGVZatnee++9v/Q/F9sfwrrwydcHvvH8nvfcc+651+dgNX9kkDW1LqkGgSHVJQ+0+Qn4gY1o3LAR1YqCERiKFbVRQ/KIPzCbxiQyQGYIlUS2+RWzrkPGzBYyyfpnjEKqhZkxtUiUHxiljlkt0OpQvmHW5u1l7GZtxGzM3cvYzQbHyGTMAiE3RtgIEmaRkHoCRqZiFglUw2waVvVHncd2bTOuM7WqGKXhIGxgo6r8oHuL9m1OPH6dH7NtZbfmLas2sRpZY2Sq6VQLDw9BTMXjNjyOBy/ixLaYweM69zAdo1KxulaYKanX2qrrpPZ8PocTrFu5bdueKI/wcPfiKhW0qouRTLj9Dpg6ec2Ejru75shyVCqpkufhnl5RUewe7sER6GMqYtoM6W5lysCQsBrYX9O67dy3ayAS4eHdERE6kUjkKuChWicuCmBgS7dXlIaP7fx3r4YpWK3atXeu0Kx18fb2lkTnRx4GUqcTuQsE6LrBdCnOC5d70roTg1EQxmLtWMf29hLHiqMTykFEYJ6AlxchCC/0pNPptJbEYBjCTrHWazRJa128xNHR0QkJ5enpy9P0OlGenAYS0RgLsKSAJJwDLGHrVuD0Ol1XgHCPKKxt5TBqkgBb64Jzixe7Xd2aptdfNBaL70YlGGOzNRrAYKZ4Jc5xdk5MiNSntaHT/eO37UrpixGFzQ1YwVqPMDZ8/L5hLksuFzwpHlxxL3XWrIWEYpqsLC82BDA/dWjsqjnObuqAy09enp8FSd1/5XgrArHVYQrhChYMIdvPoM4IZQLGVOcDBtK1eLhqRGFN5gawVs8LFu50idCXuUCzjKNM5hw35pzI5V57rxwHiUajEY0FFPBuHha6+KnVCHNmMiOXb91DpwEFHJGYBLAlBYwH+qxsGEt1KJM5OzTUiOHNelEJw5awJAy+MKmA4XHzcFn2mjXesQjLiIxMwJvFx9zrhBGIec0DbDWD8eBmljA7Oxtha5dczo/eQ4/fds9u1qxhxGIcoQawzQ/0ZdmS1WLA9r27/OnDqbOzIAsXmgfj3Yz2kqyONWJvPpzHqdRd3awIwkbjWBzCOKXlLl5eYvEqNIy1y97AOoOFdieeRqMShr3N2sLgCJOyGR4r/djesbGJCAtVRxZ8Ob//zuDjNBpxWJ+5S6RhjDjhvgLAXGALNWJHYeonlPrTaXisiMO8GdDMiK2F/Rqw7+sMx+jEYUsCWIdRs2yE7VsjkYh/wgDyj48ZjhGIaXibhWwJjmVLJKsTAVOrswCjwZK+kbKwAVFYR8BY0Rwh2wufIJJKjL2zbM2pEzG7UmDuE4gF7IRHEH0+WwyYwRArFosT58xxZp8q2/fxxcKFsNDOlnQjDoNnq/UG9fVowDIMsatmz54NmFqTlQQYrOgr8f40IrEdO3ZsvB7L8yjNyFgFmDNsnlejd0vOvzhzDSQIYdjcuaz1gG3cmHE1NJS5arazM8IWp+v1y4uRRCRWb0oBS6NZh7CMo0eZ4Li5wdfW9IiItIsIApBODFa3Rfu4OGmWNzxYGb5Zi93gKz1Np4u4yPXn0rhcz+YE7NQg8eP4CqVKoRBlSeDlAmYHWItRs+URIldREUg+Pos8PT17NW9F+Q+sZYv2HA5femyLq0yl4Clycy8JYZMWX10McXZ2S9O5RkX5LPVxh0QdXMrlcns1b0n5J6wHkjjKLZcuXdoiU2i1WqU0JCTk2G6hRII4mB9pujyfRXh8otyjfIDz9CyEflXHBozMDPOAXrlbLh1TBvG1WgVEFeIqChHtLhcnJjJnp3cFAbSleA4W+SwqlMvlnhcmDqgaNmB878iZM2c6HAgCjq+NCwoDTqlUKJRSV3jvdNWlpaeJ3FHQOPpDuIvkkMKHvr7LfK/0Ht/fVKze8N579+7lO+HJDEOaQssBj6dSqlSqHBl4ALpKZTk57u5gLQUoPDxczj3k67sAcmT79u29h9czCWu6aztg+apMJycHB/gcCNLm5uYqeZygIL5SCpHJgEKczL3o4EEfgYAXHBxe+PCQ77IFKI+uAVayv75JWH1H29Mle6/7iXfzAXNwAi9ICVMjRKnlhMVppYDIcmSyvLyiIpB4wfzgYDkdShlbXbmbnFyy/0yKnWlY0+mOjo62Tzf6+fmVi8LAQ8nk5x47FpIr4AeFxSmkrrK8KJ8ivBOU8rwwY8YMZB25fSc5OXnXmVQ7iKkYxBHVuw7vEPkCJ6eZTjBbnA5o0dxX8dDlKzoYxeMJBAoebxFIkGW+vo+uJUP2n7UzpqlJWAdHsBAH9W7cuLc9OBNZiMsMUoSESKXK4DA5TwBzReDz8BCSULFXRz6f2V9Zyh4+KaZhzXDK6AU6nkzjbQYNWRCHA3FKmCGqHLhsUf6HlqEYi72KLz057VxlK4QNNQnDujRrh3ohLTBlC2cz44CDsZkDngMcpUzmDtJ8PDh2gSuXX7x1/zvWrlmX1qYu6tb9OthORxxgmxmMMOCcHLQRcQ6VCbvgi1MbNhy5fcT3EF2O/vFy/BuW0qFfvardrvo3awfVcGzevHkMRhuJn8FQrqzUjNKGR3c2bUq+WxxeSKNx/RGGqGb9/+GuX29Y0+mBdqjZPPBOnt61CV6nxfrNYGWCBKXubtq0/tmZ1BI67GdcLmD29vU7QamqY8ar16nzGAYEMMdA29M31rENhgRRpsOGDbi04vlZKFMCFvwN6d6pWZf/36lHAnfSETLN9ummddcN6uXXkkF6djbV3s7e3m4j7Jzc5j0IegapBfVOAoViC8O5zrBu/bPnqQABZgfYkO61MIwgDNJjFBQLnBZo9G7A8IH0Hj7gjUKliMSwfvVh1YFljL2RwkexXT+MaAxr3WCoLXCB3zFjraHwkE88BunfqT6SfmDt0EQ3E4bqdcC74aWaolJmxCBd+rYDzK5+X1hTZsfweh0awPhZBDOmGqvGqrFqrBqrxqqx31ONVQEjUTALhUJCRzQsFKu66EiIhUIlY9aNMAul0UBsUENLXbSGNljNxmTMIqGS4dxVT0se8rJQNTLZogfzLHnk0JKHKS15TNRyB2DrWP92tJdMMs99i0ImNf7taC+kJ9k8h5Yb9/zzhDRqN5BM9HFsqvWgn4CvCQWNKSzwitgAAAAASUVORK5CYII=) center no-repeat
}

.index-wrap .tools-part.no-5 .company .icon[data-v-42cd38ae] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGwAAABsCAMAAAC4uKf/AAADAFBMVEX///////8AAAD//v3+/fz///////7/lSr/uSr+/fz/oin/rCr/nSn/mCf7rF3/uDX67d7/////za79nUf+iUP7qgP9nDz/tkj/xGL/nln/ljj/li7v5dD////9+fL////v5Mv/pjX8gTX79eru3L7/rT3/mhv/rzT/njD/vlT+fy36qR7//v3+pkz50Jf79uv////16tr////9vkP/pkL+iDj0kgH/rEb8mgT/mFr/ulrymhjs3cLwtnL+lEf+lhz7jBf/pD38xnT+0Zr+tzD/tkD4iBP3vGf9uW3/iy//sVD+xI3q3cH+wnX4xH3705T605f93rf9ypT9pQn/pB/+uAn/jFX+0IPbzqr/vkb04sj91p3/////////rxz5u4Xw4sr82aX24sr93LTh1rz06NX/6b/2yHL79er50Yn+mjr+uFn/xl7/9Ob89ejm0aT/4K/r27z+s3b+sXP89Ob9sG/9q2j79en8t3r/kCn47975vYX/hCXv4cft3sH+s3P/fCj+rWz/iij/dRj6un/+pVv6tHX/cCr9qWL/tSP/eRz6w5L/sXz+tHj/dyP7xZj5v4r+rXb9oVX+mUf/hDT+rHD62rHv2av8y6v62qr6xp3/uon/gS3/pyr/shz/ixz/rRb/nhL/cRD/gAn436/+yKL6wI754Ij+lkD/jjz/ijj/syz21Az/toz5s23/m07/dR3vzxj+jwn+v5P/pWj/ezX/kTP41CT/fiD/lBX/ehX76tD64Lryy5b/llP/dTL/pBT55sT84Jj+vI7+xYn+tYP+n0//k0j77tXYyKD/wJn82pj/hUz/bST+ghj81rHi07H0zZ78sGb+omH99OTw3rrn2Ln62bX71Kn20qT4pXL51lr7fh//oRv8z7P55Kr+0Jrxvn/9xHn1uXb+uGPxul/92zX+wIP9vmv+sFT30kT0yUTvxzn0jAP92sH65L/634/xpmn5xjb/pyDxxo/1xYj0v4H90nj/gUj92Ub61W75nWT/jGH7xk/638ftzZ+LVMKnAAAAcXRSTlMzbgA1PGdM/v5Z/v7+/v79SUiw/vz+/fz1/v72ag1pY/7+/c3K/v79/fv66lL8+79qXxv+/vz7+vr49eu+/vn5+ffz5uT+/v37+ffx1MO5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) center no-repeat
}

.index-wrap .tools-part .part[data-v-42cd38ae] {
	position: relative;
	z-index: 1;
	border-radius: var(--card-radius);
	display: flex;
	justify-content: center;
	align-items: center
}

.index-wrap .tools-part .part .label[data-v-42cd38ae] {
	position: absolute;
	left: 50%;
	margin-left: -50px;
	width: 100px;
	bottom: 4px;
	font-size: 14px;
	line-height: 16px;
	color: #fff;
	text-align: center;
	background: var(--main-label-bg);
	border-radius: 25px;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	padding: 7px 0
}

.index-wrap .tools-part .part .icon[data-v-42cd38ae] {
	width: 108px;
	height: 108px
}

.index-wrap .tools-part2[data-v-42cd38ae] {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin: 24px 0 18px;
	height: 108px
}

.index-wrap .tools-part2 .part[data-v-42cd38ae] {
	position: relative;
	z-index: 1;
	border-radius: var(--card-radius);
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden
}

.index-wrap .tools-part2 .part .bg1[data-v-42cd38ae] {
	width: 100%;
	height: 108px;
	border-radius: var(--card-radius);
	background: url(./index-bg-1-DnW_c07I.jpeg) no-repeat;
	background-size: cover
}

.index-wrap .tools-part2 .part .bg2[data-v-42cd38ae] {
	width: 100%;
	height: 108px;
	border-radius: var(--card-radius);
	background: url(./index-bg-2-8wbbeQEw.jpeg) no-repeat;
	background-size: cover
}

.index-wrap .tools-part2 .part .label[data-v-42cd38ae] {
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	bottom: 4px;
	font-size: 14px;
	line-height: 16px;
	color: #fff;
	text-align: center;
	background: var(--main-label-bg);
	border-radius: 25px;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	padding: 7px 10px
}

.index-wrap .btn-download[data-v-42cd38ae] {
	background: url(./1-download-iDkAC7bo.png) center no-repeat;
	background-size: 100% 100%;
	width: 361px;
	height: 58px;
	margin: 0 auto
}

.index-wrap .btn-download.no-2[data-v-42cd38ae] {
	background: url(./2-download-Clt5GlCk.png) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .btn-download.no-2 .label[data-v-42cd38ae] {
	color: #ffe2bf
}

.index-wrap .btn-download.no-3[data-v-42cd38ae] {
	background: url(./3-download-C9m37HRE.png) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .btn-download.no-4[data-v-42cd38ae] {
	background: url(./4-download-DrYObd6h.png) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .btn-download.no-5[data-v-42cd38ae] {
	background: url(./5-download-BHh2404I.png) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .btn-download .label[data-v-42cd38ae] {
	width: 265px;
	line-height: 58px;
	text-align: center;
	color: #fff;
	font-size: 24px
}

.index-wrap .title[data-v-42cd38ae] {
	font-size: 18px;
	font-weight: 700;
	color: var(--title-color);
	position: relative;
	line-height: 25px
}

.index-wrap .membership-list[data-v-42cd38ae] {
	margin-top: 12px;
	background: var(--bg-card);
	padding: 12px;
	border-radius: var(--card-radius)
}

.index-wrap .membership-list .swiper-vertical[data-v-42cd38ae] {
	touch-action: auto
}

.index-wrap .membership-list .membership-content[data-v-42cd38ae] {
	margin-top: var(--mg);
	max-height: 137px
}

.index-wrap .membership-list .membership-content[data-v-42cd38ae] .swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between
}

.index-wrap .membership-list .membership-content .membership-item[data-v-42cd38ae] {
	position: relative;
	width: calc(50% - 6px);
	padding: 10px;
	margin-bottom: 14px;
	background: #fff;
	border-radius: 17px;
	border: 1px solid rgba(255, 255, 255, .2)
}

.index-wrap .membership-list .membership-content .membership-item .money[data-v-42cd38ae] {
	font-size: 18px;
	line-height: 20px;
	color: var(--btn-text4)
}

.index-wrap .membership-list .membership-content .membership-item .vip[data-v-42cd38ae] {
	background: var(--primary);
	color: #fff;
	padding: 0 6px;
	display: inline-block;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	border-radius: 16px;
	flex-shrink: 0
}

.index-wrap .membership-list .membership-content .membership-item .name[data-v-42cd38ae] {
	margin-top: 6px;
	line-height: 12px;
	font-size: 12px;
	color: var(--text-gray6)
}

.index-wrap .video-part[data-v-42cd38ae] {
	background: var(--bg-card);
	border-radius: var(--card-radius);
	padding: 12px
}

.index-wrap .video-part .container-card[data-v-42cd38ae] {
	padding: 0;
	background: transparent
}

.index-wrap .regulatory[data-v-42cd38ae] {
	background: var(--bg-card);
	border-radius: var(--card-radius);
	padding: 12px
}

.index-wrap .regulatory .container-card[data-v-42cd38ae] {
	margin-top: 12px;
	background: transparent
}

.index-wrap .tab-item[data-v-42cd38ae] {
	color: var(--btn-text);
	border-radius: 18px;
	opacity: 1;
	background: #ffffff14;
	box-sizing: border-box;
	border: 1px solid rgba(255, 255, 255, .16);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	padding: 10px;
	margin-right: 8px;
	cursor: pointer
}

.index-wrap .tab-item.active[data-v-42cd38ae] {
	background: var(--primary);
	color: var(--btn-text2);
	border: none
}

.small-btn[data-v-3e409cee] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-cdee1243] {
	padding-bottom: 80px
}

.home-wrap .custom-swiper[data-v-cdee1243] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 1px solid var(--border-color);
	background: var(--bg-card)
}

.home-wrap .custom-swiper .van-swipe[data-v-cdee1243] {
	border-radius: 4px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-cdee1243] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-cdee1243] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-cdee1243] .van-swipe-item {
	border-radius: 4px
}

.home-wrap .custom-swiper .van-swipe[data-v-cdee1243] .van-swipe-item img {
	width: 100%;
	height: 175px;
	border-radius: 4px;
	object-fit: center
}

.home-wrap .card1[data-v-cdee1243] {
	background: url(./home-card-bg1-DaGohe6n.png) no-repeat center;
	overflow: hidden;
	background-size: cover
}

.home-wrap .card2[data-v-cdee1243] {
	background: url(./home-card-bg2-BG8YrEpv.png) no-repeat center;
	overflow: hidden;
	background-size: cover
}

.home-wrap .customer-van-tabs[data-v-cdee1243] .van-tabs__line {
	background: linear-gradient(to right, #28c7a0, #847cd5)
}

.small-btn[data-v-a700f4f8] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-e36c9923] {
	padding-bottom: 80px
}

.home-wrap .custom-swiper[data-v-e36c9923] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 1px solid var(--border-color);
	background: var(--bg-card)
}

.home-wrap .custom-swiper .van-swipe[data-v-e36c9923] {
	border-radius: 4px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-e36c9923] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-e36c9923] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-e36c9923] .van-swipe-item {
	border-radius: 4px
}

.home-wrap .custom-swiper .van-swipe[data-v-e36c9923] .van-swipe-item img {
	width: 100%;
	height: 175px;
	border-radius: 4px;
	object-fit: center
}

.small-btn[data-v-150efbae] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-cfd649bc] {
	padding-bottom: 80px
}

.home-wrap .custom-swiper[data-v-cfd649bc] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 1px solid var(--border-color);
	background: var(--bg-card)
}

.home-wrap .custom-swiper .van-swipe[data-v-cfd649bc] {
	border-radius: 4px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-cfd649bc] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-cfd649bc] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-cfd649bc] .van-swipe-item {
	border-radius: 4px
}

.home-wrap .custom-swiper .van-swipe[data-v-cfd649bc] .van-swipe-item img {
	width: 100%;
	height: 175px;
	border-radius: 4px;
	object-fit: center
}

.home-wrap .tools-part[data-v-cfd649bc] {
	width: 100%;
	position: relative
}

.home-wrap .tools-part .btn-download[data-v-cfd649bc] {
	position: relative;
	width: 100%;
	height: 80px;
	background: #fff;
	border-radius: var(--radius);
	display: flex;
	justify-content: space-between;
	padding: 9px 16px 0
}

.home-wrap .tools-part .btn-download .show i[data-v-cfd649bc] {
	background: url(./download-ChDZ4Whn.png) center no-repeat;
	background-size: 100% 100%
}

.home-wrap .tools-part .btn-download .label[data-v-cfd649bc] {
	z-index: 1;
	font-size: 20px;
	line-height: 28px;
	color: var(--btn-text);
	word-break: break-word;
	font-weight: 700
}

.home-wrap .tools-part .btn-download .show[data-v-cfd649bc] {
	position: relative;
	width: 117px;
	height: 63px
}

.home-wrap .tools-part .btn-download .show i[data-v-cfd649bc] {
	display: block;
	position: relative;
	z-index: 1;
	background: url(./download-ChDZ4Whn.png) center no-repeat;
	background-size: 100% 100%;
	width: 117px;
	height: 63px
}

.home-wrap .tools-part .btn-download .show[data-v-cfd649bc]:after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 50%;
	margin-left: -65px;
	width: 130px;
	height: 11px;
	background: var(--bg-tray);
	border-radius: 80%
}

.home-wrap .tools-part .bottom-part[data-v-cfd649bc] {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 8px;
	min-height: 168px;
	margin-top: 8px
}

.home-wrap .tools-part .bottom-part .deposit[data-v-cfd649bc] {
	width: 100%;
	min-height: 168px;
	background: #fff;
	border-radius: var(--radius);
	padding: 16px;
	margin-right: 8px;
	position: relative
}

.home-wrap .tools-part .bottom-part .deposit .show i[data-v-cfd649bc] {
	background: url(./deposit-CozPl1U1.png) center no-repeat;
	background-size: 100% 100%
}

.home-wrap .tools-part .bottom-part .deposit .show[data-v-cfd649bc] {
	position: absolute;
	right: 4px;
	bottom: 5px;
	width: 121px;
	height: 92px
}

.home-wrap .tools-part .bottom-part .deposit .show i[data-v-cfd649bc] {
	position: relative;
	z-index: 1;
	display: block;
	background: url(./deposit-CozPl1U1.png) center no-repeat;
	background-size: 100% 100%;
	width: 121px;
	height: 92px
}

.home-wrap .tools-part .bottom-part .deposit .show[data-v-cfd649bc]:after {
	content: "";
	position: absolute;
	bottom: 3px;
	left: 50%;
	margin-left: -58px;
	width: 117px;
	height: 12px;
	background: var(--bg-tray);
	border-radius: 80%
}

.home-wrap .tools-part .bottom-part .deposit .label[data-v-cfd649bc] {
	color: var(--btn-text);
	font-size: 16px;
	font-weight: 700;
	line-height: 18px
}

.home-wrap .tools-part .right-part .part[data-v-cfd649bc] {
	position: relative;
	background: #fff;
	border-radius: var(--radius);
	padding: 16px;
	min-height: 80px
}

.home-wrap .tools-part .right-part .part .show i[data-v-cfd649bc] {
	background: url(./withdraw-DCv0WvlG.png) center no-repeat;
	background-size: 100% 100%
}

.home-wrap .tools-part .right-part .part .label[data-v-cfd649bc] {
	font-size: 16px;
	color: var(--text-main-btn);
	font-weight: 700;
	line-height: 16px;
	word-break: break-word;
	z-index: 2;
	position: relative
}

.home-wrap .tools-part .right-part .part .show[data-v-cfd649bc] {
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 89px;
	height: 51px;
	z-index: 1
}

.home-wrap .tools-part .right-part .part .show i[data-v-cfd649bc] {
	position: relative;
	z-index: 1;
	display: block;
	background: url(./withdraw-DCv0WvlG.png) center no-repeat;
	background-size: 100% 100%;
	width: 89px;
	height: 51px
}

.home-wrap .tools-part .right-part .part .show[data-v-cfd649bc]:after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 50%;
	margin-left: -44px;
	width: 88px;
	height: 9px;
	background: var(--bg-tray);
	border-radius: 80%
}

.home-wrap .tools-part .right-part .part.exit .show i[data-v-cfd649bc] {
	background: url(./introduce-D8dfJiqe.png) center no-repeat;
	background-size: 100% 100%
}

.home-wrap .tools-part .right-part .part.exit .show i[data-v-cfd649bc] {
	background: url(./introduce-D8dfJiqe.png) center no-repeat;
	background-size: 100% 100%;
	width: 85px;
	height: 53px
}

.home-wrap .card1[data-v-cfd649bc] {
	background: url(./home-card-bg1-DaGohe6n.png) no-repeat center;
	overflow: hidden;
	background-size: cover
}

.home-wrap .card2[data-v-cfd649bc] {
	background: url(./home-card-bg2-BG8YrEpv.png) no-repeat center;
	overflow: hidden;
	background-size: cover
}

.home-wrap .customer-van-tabs[data-v-cfd649bc] .van-tabs__line {
	background: linear-gradient(to right, #28c7a0, #847cd5)
}

.small-btn[data-v-44aea36c] {
	background: var(--primary);
	color: #000;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-8de3b48b] {
	padding-bottom: 80px
}

.home-wrap .custom-swiper[data-v-8de3b48b] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 1px solid var(--border-color);
	background: var(--bg-card)
}

.home-wrap .custom-swiper .van-swipe[data-v-8de3b48b] {
	border-radius: 4px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-8de3b48b] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-8de3b48b] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-8de3b48b] .van-swipe-item {
	border-radius: 4px
}

.home-wrap .custom-swiper .van-swipe[data-v-8de3b48b] .van-swipe-item img {
	width: 100%;
	height: 175px;
	border-radius: 4px;
	object-fit: center
}

@keyframes jump-8de3b48b {
	0% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-20px)
	}

	to {
		transform: translateY(0)
	}
}

.home-wrap .drawbox[data-v-8de3b48b] {
	animation: jump-8de3b48b 1s infinite
}

.home-wrap .drawbox2[data-v-8de3b48b] {
	animation: spinning-cog-8de3b48b 1s infinite
}

@keyframes spinning-cog-8de3b48b {
	0% {
		transform: scale(1)
	}

	20% {
		transform: scale(1.1)
	}

	to {
		transform: scale(1)
	}
}

.small-btn[data-v-dcae7bf6] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-11972b40] {
	padding: 80px 0
}

.home-wrap .custom-swiper[data-v-11972b40] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 3px solid transparent
}

.home-wrap .custom-swiper .van-swipe[data-v-11972b40] {
	border-radius: 8px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-11972b40] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-11972b40] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-11972b40] .van-swipe-item {
	border-radius: 8px
}

.home-wrap .custom-swiper .van-swipe[data-v-11972b40] .van-swipe-item img {
	width: 100%;
	height: 200px;
	border-radius: 8px;
	object-fit: center
}

.home-wrap .tools-wrap .tools-card[data-v-11972b40] {
	position: relative;
	width: 100%;
	height: 106px;
	margin: 0 auto;
	border-radius: 17px;
	background: linear-gradient(0deg, #0060af, #00befd)
}

.home-wrap .tools-wrap .tools-card .label[data-v-11972b40] {
	position: absolute;
	bottom: 8px;
	padding: 4px 8px;
	background: #ffffff21;
	border-radius: 12px;
	text-align: center;
	box-sizing: border-box;
	width: 90%;
	left: 50%;
	transform: translate(-50%);
	word-wrap: break-word;
	word-break: break-all
}

.home-wrap .tools-wrap2 .tools-card2[data-v-11972b40] {
	border: 1px solid rgba(255, 255, 255, .7);
	background: #ffffff21;
	border-radius: 12px;
	padding: 10px 12px;
	width: 100%;
	box-sizing: border-box;
	font-size: 12px;
	display: inline-flex
}

.home-wrap .tools-wrap2.has-invest .tools-card2[data-v-11972b40] {
	display: block !important
}

.home-wrap .tools-wrap2.has-invest .tools-card2 img[data-v-11972b40] {
	margin-right: 0;
	margin-left: 50%;
	transform: translate(-50%)
}

.home-wrap .tools-wrap2.has-invest .tools-card2 .label[data-v-11972b40] {
	text-align: center;
	margin-top: 5px
}

.home-wrap .scroll-notice[data-v-11972b40] {
	height: 38px;
	border-radius: 18px;
	opacity: 1;
	background: #ffffff21;
	box-sizing: border-box;
	border: 1px solid var(--border-color);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	padding-left: 12px
}

.small-btn[data-v-ca492332] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-9f4ceea9] {
	padding-bottom: 80px
}

.home-wrap .custom-swiper[data-v-9f4ceea9] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 1px solid var(--border-color);
	background: var(--bg-card)
}

.home-wrap .custom-swiper .van-swipe[data-v-9f4ceea9] {
	border-radius: 4px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-9f4ceea9] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-9f4ceea9] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-9f4ceea9] .van-swipe-item {
	border-radius: 4px
}

.home-wrap .custom-swiper .van-swipe[data-v-9f4ceea9] .van-swipe-item img {
	width: 100%;
	height: 175px;
	border-radius: 4px;
	object-fit: center
}

.home-wrap .wallet-info[data-v-9f4ceea9] {
	min-height: 116px;
	border-radius: 12px;
	background-color: var(--bg-card);
	padding: 20px 0 0 11.4px;
	box-sizing: border-box
}

.home-wrap .wallet-info .head[data-v-9f4ceea9] {
	font-size: 18px;
	margin-bottom: 8px
}

.home-wrap .wallet-info .body em[data-v-9f4ceea9] {
	font-size: 18px;
	font-weight: 600;
	margin-right: 5px
}

.home-wrap .wallet-info .body span[data-v-9f4ceea9] {
	font-size: 12px;
	color: var(--text-gray)
}

.home-wrap .wallet-info .foot[data-v-9f4ceea9] {
	font-size: 13px
}

.home-wrap .wallet-bg-1[data-v-9f4ceea9] {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIwAAABkCAMAAABjCSjjAAAAQlBMVEVHcEzY3dystLfp7OujrrHCy8q6wsPGz87y9POiqayxubu2vr/h5eSpsbPH0M+wuLrDzMzBysmlq66iqKu1vr7M1dNxZ1tVAAAAFnRSTlMAMzMzMzMzMzMzMzMyECwKLxIcLSUaFb1B7gAAA1tJREFUaN7t2suWgyAMAFAB8QlSrf3/Xx18lihVRGhm0ax6ZlHvCZA4pEnyi1/84he/uBlKdt3zWZbPTiI8vH29DEZpxFN+MQXtq2/4EE3X9YAxRkpp95Vk9M2Dm1FBRVVnPNfB+68kA0aW0Q1jifY7yZgZdUVpqoNuFHM8Ilh6SzI0I12D5vbgMY5rD5ORbgNgiGCsKERgzFI0hu2QbZNhwxDtKJYIhtkVDc05CgoY4TDSXjSqQ0xW7OP+BpZbyHJa+SEmj4GRtto1nYtDDPmAubNMamZYisYxhkXAdMOx+VAyrm6Z2xi9YWx1dDgq7MBSsxiYsqz2jPm7Pzjy/Zl228CqbdUJprYw5u/eMKosJx8YLpixpvfHmHnH2E4HmcsvrfkJwwHTTb2lUecYYf96JoRwUDhgZDV3uuYcU4SIA4ws6dJ32zMMiYzRpTXlp6n5DmYs89miwcVMLSf9F5il/c27psfEvFtxOqzUQyFiJHxLSs/rTDyMhC9LT5XgYa5YYmOkbibOlsgYOba2N0YlX8OwLUbO7d7REh7T7C2LRiV4GEkp0KgED6MtQKMSPMxoeWtcLNEws2XROFliYVbLrFEJHkZWFdCoBA+jLUCjEjzMaHlrnC0xMLNl1ThbImBkXQPNhYvq8L2proHmyqV5aAyva6C5dIEfGMOzGmiuDRPCYniWAc3FwUZQzGAxNVeHLCExJMuA5vLAJyBG8Axorg+fPDFsf1Hytkwaj0GYJ4YQIrYWDjQ+Qzl3DDNu2YTGkJ3F0HhZLmDM5w+fwb0aW+dAU/iNwJwxzHz+FsOMqZS/xR0jzOdvlklXO6DxHQ36YeAGHtqAqfEeU/otEzjaY7M2NP4j00sbWHx8cTA0N8a3F+oMYweWVXNn3nS3HTBjJDRE3uBhGBhQaQsmZjMuyzExZD+pwsNAhyCoGDA4EwUqRpgjRTH9/gANk5fUtIxnCw1Dh3lAbgzPEDFimgcMZ5oU2Jh8GU8Q46hjYeg0RTJalkDDME2pybbwYGGqnO2rIBbG8noj0DCWuTvDy4wlNYiYfWoEHsaSGkTMPjUECTPE/q+ImL1G/SdM858wN1IT9Pczd1MTAVPc/cc/ZwEx4i6GhEzN6yYm6Dr57uEVIwr8hVoxYVNzvlB/ncnlEPR5tsEAAAAASUVORK5CYII=);
	background-position: 100% 100%;
	background-repeat: no-repeat;
	background-size: 77px 55px
}

.home-wrap .wallet-bg-2[data-v-9f4ceea9] {
	background-image: url(data:image/png;base64,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);
	background-position: 100% 100%;
	background-repeat: no-repeat;
	background-size: 77px 55px
}

@keyframes jump-9f4ceea9 {
	0% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-20px)
	}

	to {
		transform: translateY(0)
	}
}

.home-wrap .drawbox[data-v-9f4ceea9] {
	animation: jump-9f4ceea9 1s infinite
}

.home-wrap .drawbox2[data-v-9f4ceea9] {
	animation: spinning-cog-9f4ceea9 1s infinite
}

@keyframes spinning-cog-9f4ceea9 {
	0% {
		transform: scale(1)
	}

	20% {
		transform: scale(1.1)
	}

	to {
		transform: scale(1)
	}
}

.home-wrap .share-components[data-v-9f4ceea9] {
	--vv: 4.14px;
	position: relative;
	text-align: center
}

.home-wrap .share-components .social-share-icon[data-v-9f4ceea9] {
	display: inline-block;
	vertical-align: middle;
	margin: 0 calc(1.6 * var(--vv));
	width: calc(5.33333 * var(--vv));
	height: calc(5.33333 * var(--vv));
	background: no-repeat 0 0/contain
}

.home-wrap .share-components .share-f[data-v-9f4ceea9] {
	background-image: url("data:image/svg+xml,%3csvg%20width='48'%20height='49'%20viewBox='0%200%2048%2049'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_5_5)'%3e%3cpath%20d='M24%200.287109C10.7662%200.287109%200%2011.0535%200%2024.2873C0%2037.5207%2010.7662%2048.2871%2024%2048.2871C37.2338%2048.2871%2048%2037.5207%2048%2024.2873C48%2011.0535%2037.2338%200.287109%2024%200.287109ZM24%2045.2093C12.4638%2045.2093%203.07807%2035.8237%203.07807%2024.2873C3.07807%2012.7508%2012.4638%203.36516%2024%203.36516C35.5368%203.36516%2044.9225%2012.7508%2044.9225%2024.2873C44.9225%2035.8237%2035.5368%2045.2093%2024%2045.2093Z'%20fill='%231D44FF'/%3e%3cpath%20d='M31%2013.6294C31%2013.4644%2030.933%2013.3062%2030.8136%2013.1895C30.6943%2013.0729%2030.5324%2013.0074%2030.3636%2013.0074H27.1818C25.5796%2012.9293%2024.0109%2013.4744%2022.8186%2014.5233C21.6262%2015.5723%2020.907%2017.0399%2020.8182%2018.6055V21.9644H17.6364C17.4676%2021.9644%2017.3057%2022.0299%2017.1864%2022.1466C17.067%2022.2633%2017%2022.4215%2017%2022.5864V25.8209C17%2025.9859%2017.067%2026.1441%2017.1864%2026.2608C17.3057%2026.3774%2017.4676%2026.4429%2017.6364%2026.4429H20.8182V34.778C20.8182%2034.943%2020.8852%2035.1012%2021.0046%2035.2178C21.1239%2035.3345%2021.2858%2035.4%2021.4545%2035.4H25.2727C25.4415%2035.4%2025.6034%2035.3345%2025.7227%2035.2178C25.842%2035.1012%2025.9091%2034.943%2025.9091%2034.778V26.4429H29.2436C29.3852%2026.4449%2029.5233%2026.4007%2029.6363%2026.3174C29.7492%2026.234%2029.8305%2026.1162%2029.8673%2025.9826L30.7836%2022.7482C30.809%2022.6562%2030.8124%2022.5599%2030.7936%2022.4665C30.7748%2022.3731%2030.7344%2022.2852%2030.6753%2022.2095C30.6163%2022.1337%2030.5403%2022.0723%2030.4532%2022.0298C30.3661%2021.9873%2030.2701%2021.9649%2030.1727%2021.9644H25.9091V18.6055C25.9407%2018.2976%2026.0887%2018.0123%2026.324%2017.8052C26.5594%2017.5982%2026.8652%2017.4843%2027.1818%2017.4859H30.3636C30.5324%2017.4859%2030.6943%2017.4204%2030.8136%2017.3037C30.933%2017.187%2031%2017.0288%2031%2016.8639V13.6294Z'%20fill='%231D43FF'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_5_5'%3e%3crect%20width='48'%20height='48'%20fill='white'%20transform='translate(0%200.287109)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.home-wrap .share-components .share-t[data-v-9f4ceea9] {
	background-image: url("data:image/svg+xml,%3csvg%20width='33'%20height='33'%20viewBox='0%200%2033%2033'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M16.8334%200.178223C8.01091%200.178223%200.833496%207.35585%200.833496%2016.1783C0.833496%2025.0006%208.01091%2032.1782%2016.8334%2032.1782C25.6559%2032.1782%2032.8333%2025.0006%2032.8333%2016.1783C32.8333%207.35585%2025.6559%200.178223%2016.8334%200.178223ZM16.8334%2030.1264C9.14223%2030.1264%202.88515%2023.8692%202.88515%2016.1783C2.88515%208.48716%209.14223%202.23008%2016.8334%202.23008C24.5245%202.23008%2030.7817%208.48716%2030.7817%2016.1783C30.7817%2023.8692%2024.5245%2030.1264%2016.8334%2030.1264Z'%20fill='%231D44FF'/%3e%3cg%20clip-path='url(%23clip0_1886_3059)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M15.065%2016.426L9.33337%209.13428H13.8732L17.4113%2013.6411L21.1911%209.15457H23.6914L18.6202%2015.181L24.6333%2022.8404H20.107L16.276%2017.9666L12.186%2022.8269H9.67217L15.065%2016.426ZM20.7667%2021.4894L12.117%2010.4853H13.2129L21.8517%2021.4894H20.7667Z'%20fill='%231D44FF'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_1886_3059'%3e%3crect%20width='15.2999'%20height='15.2999'%20fill='white'%20transform='translate(9.33337%208.49561)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.home-wrap .share-components .share-tg[data-v-9f4ceea9] {
	background-image: url("data:image/svg+xml,%3csvg%20width='43'%20height='43'%20viewBox='0%200%2043%2043'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M21.9008%200.880859C10.3214%200.880859%200.901001%2010.3014%200.901001%2021.881C0.901001%2033.4602%2010.3214%2042.8808%2021.9008%2042.8808C33.4803%2042.8808%2042.9007%2033.4602%2042.9007%2021.881C42.9007%2010.3014%2033.4803%200.880859%2021.9008%200.880859ZM21.9008%2040.1877C11.8068%2040.1877%203.5943%2031.9753%203.5943%2021.881C3.5943%2011.7866%2011.8068%203.57415%2021.9008%203.57415C31.9955%203.57415%2040.2079%2011.7866%2040.2079%2021.881C40.2079%2031.9753%2031.9955%2040.1877%2021.9008%2040.1877Z'%20fill='%231D44FF'/%3e%3cpath%20d='M11.7985%2021.5321L24.2572%2016.3989C25.487%2015.8642%2029.6577%2014.1532%2029.6577%2014.1532C29.6577%2014.1532%2031.5827%2013.4046%2031.4223%2015.2226C31.3688%2015.9712%2030.941%2018.5912%2030.5133%2021.4252L29.1765%2029.8201C29.1765%2029.8201%2029.0696%2031.0499%2028.1606%2031.2638C27.2516%2031.4777%2025.7544%2030.5152%2025.487%2030.3013C25.2731%2030.1409%2021.4767%2027.7347%2020.0865%2026.5584C19.7122%2026.2376%2019.2844%2025.5959%2020.1399%2024.8473C22.0649%2023.0828%2024.3641%2020.8905%2025.7544%2019.5002C26.396%2018.8586%2027.0377%2017.3614%2024.3641%2019.1794L16.8248%2024.2591C16.8248%2024.2591%2015.9692%2024.7938%2014.3651%2024.3126C12.761%2023.8314%2010.8895%2023.1897%2010.8895%2023.1897C10.8895%2023.1897%209.60621%2022.3877%2011.7985%2021.5321Z'%20fill='%231D44FF'/%3e%3c/svg%3e")
}

.home-wrap .share-components .share-w[data-v-9f4ceea9] {
	background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20t='1712415745908'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='14656'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='48'%20height='48'%3e%3cpath%20d='M713.504%20599.904c-10.88-5.6-65.216-32.192-75.296-35.808-10.112-3.808-17.504-5.6-24.8%205.6-7.424%2011.104-28.416%2035.808-35.008%2043.296-6.4%207.424-12.896%208.32-23.808%202.816-64.8-32.416-107.296-57.792-149.984-131.104-11.296-19.52%2011.296-18.112%2032.384-60.192%203.616-7.424%201.792-13.696-0.992-19.328-2.816-5.6-24.8-59.776-34.016-81.888-8.896-21.504-18.08-18.496-24.768-18.88-6.4-0.416-13.728-0.416-21.12-0.416-7.392%200-19.296%202.816-29.408%2013.696-10.08%2011.104-38.592%2037.792-38.592%2092s39.52%20106.688%2044.896%20114.112c5.6%207.392%2077.696%20118.592%20188.416%20166.496%2069.984%2030.208%2097.376%2032.8%20132.384%2027.584%2021.312-3.2%2065.216-26.56%2074.304-52.48%209.12-25.792%209.12-47.904%206.4-52.48-2.688-4.928-10.112-7.712-20.992-13.024z%20m211.712-261.504a448.128%20448.128%200%200%200-96.32-143.296%20444.352%20444.352%200%200%200-143.296-96.32A445.856%20445.856%200%200%200%20512%2064h-2.016a446.944%20446.944%200%200%200-316.48%20132.416A443.936%20443.936%200%200%200%2098.304%20339.2%20448.288%20448.288%200%200%200%2064%20514.112c0.32%2069.376%2016.896%20138.304%2048%20199.904v152c0%2025.376%2020.608%2045.984%2046.016%2045.984H310.08a449.408%20449.408%200%200%200%20199.872%2048h2.112a448.32%20448.32%200%200%200%20172.704-34.304%20444.48%20444.48%200%200%200%20142.816-95.2A447.04%20447.04%200%200%200%20960%20514.016a446.4%20446.4%200%200%200-34.816-175.616zM774.08%20776.416A370.048%20370.048%200%200%201%20512%20883.968h-1.696a373.312%20373.312%200%200%201-173.12-43.52l-8.384-4.48h-140.8v-140.8l-4.48-8.416a373.344%20373.344%200%200%201-43.52-173.088A369.728%20369.728%200%200%201%20247.584%20249.92a369.216%20369.216%200%200%201%20262.816-109.888h1.696c50.016%200%2098.496%209.696%20144.192%2028.896a369.6%20369.6%200%200%201%20119.04%2080%20370.56%20370.56%200%200%201%20108.896%20264.8%20370.592%20370.592%200%200%201-110.112%20262.72z'%20fill='%231d44ff'%20p-id='14657'%3e%3c/path%3e%3c/svg%3e")
}

.home-wrap .share-components .share-y[data-v-9f4ceea9] {
	background-image: url("data:image/svg+xml,%3csvg%20width='43'%20height='43'%20viewBox='0%200%2043%2043'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M29.9603%2021L17%2028.2902L17%2013.7098L17%2013.7098L29.9603%2021Z'%20stroke='%231D44FF'%20stroke-width='2'/%3e%3ccircle%20cx='21.5'%20cy='21.5'%20r='20'%20stroke='%231D44FF'%20stroke-width='3'/%3e%3c/svg%3e")
}

.home-wrap .share-components .share-i[data-v-9f4ceea9] {
	background-image: url("data:image/svg+xml,%3csvg%20width='43'%20height='43'%20viewBox='0%200%2043%2043'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M28.4488%2016.089C28.4488%2016.7837%2027.8857%2017.3469%2027.1909%2017.3469C26.4961%2017.3469%2025.9328%2016.7837%2025.9328%2016.089C25.9328%2015.3942%2026.4961%2014.8309%2027.1909%2014.8309C27.8857%2014.8309%2028.4488%2015.3942%2028.4488%2016.089ZM26.8824%2021.7284C26.8824%2024.6422%2024.5119%2027.0129%2021.5983%2027.0129C18.6845%2027.0129%2016.3138%2024.6422%2016.3138%2021.7284C16.3138%2018.8149%2018.6845%2016.4443%2021.5983%2016.4443C24.5119%2016.4443%2026.8824%2018.8149%2026.8824%2021.7284ZM24.9833%2021.7284C24.9833%2019.8621%2023.4646%2018.3435%2021.5983%2018.3435C19.7318%2018.3435%2018.2132%2019.8621%2018.2132%2021.7284C18.2132%2023.5951%2019.7318%2025.1135%2021.5983%2025.1135C23.4646%2025.1135%2024.9833%2023.5951%2024.9833%2021.7284ZM32.2937%2017.4833C32.2937%2013.9238%2029.4079%2011.0381%2025.8482%2011.0381H17.0531C13.4934%2011.0381%2010.6077%2013.9238%2010.6077%2017.4833V26.279C10.6077%2029.8386%2013.4934%2032.7242%2017.0531%2032.7242H25.8482C29.4079%2032.7242%2032.2937%2029.8386%2032.2937%2026.279V17.4833ZM30.1779%2026.182C30.1779%2028.6266%2028.1959%2030.6085%2025.7512%2030.6085H17.1502C14.7053%2030.6085%2012.7234%2028.6266%2012.7234%2026.182V17.5804C12.7234%2015.1356%2014.7053%2013.1538%2017.1502%2013.1538H25.7512C28.1959%2013.1538%2030.1779%2015.1356%2030.1779%2017.5804V26.182Z'%20fill='%231D44FF'/%3e%3cpath%20d='M21.4504%200.880859C9.87095%200.880859%200.450592%2010.3014%200.450592%2021.881C0.450592%2033.4602%209.87095%2042.8808%2021.4504%2042.8808C33.0299%2042.8808%2042.4503%2033.4602%2042.4503%2021.881C42.4503%2010.3014%2033.0299%200.880859%2021.4504%200.880859ZM21.4504%2040.1877C11.3564%2040.1877%203.14389%2031.9753%203.14389%2021.881C3.14389%2011.7866%2011.3564%203.57415%2021.4504%203.57415C31.5451%203.57415%2039.7575%2011.7866%2039.7575%2021.881C39.7575%2031.9753%2031.5451%2040.1877%2021.4504%2040.1877Z'%20fill='%231D44FF'/%3e%3c/svg%3e")
}

.home-wrap .share-components .share-tt[data-v-9f4ceea9] {
	background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20t='1712415677273'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='6018'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='48'%20height='48'%3e%3cpath%20d='M512.588706%200c282.683868%200%20510.873725%20228.189856%20510.873725%20510.879961%200%20282.683868-228.189856%20510.873725-510.873725%20510.873725C229.898602%201021.753686%201.708745%20793.563829%201.708745%20510.879961%201.708745%20228.189856%20229.898602%200%20512.588706%200z%20m0%2051.088994c-255.439981%200-459.790967%20204.350987-459.790967%20459.790967%200%20255.433744%20204.350987%20459.784731%20459.790967%20459.784731%20255.433744%200%20459.784731-204.350987%20459.784731-459.784731%200-255.439981-204.350987-459.790967-459.784731-459.790967zM621.524346%20210.786845C629.636521%20287.775181%20691.65525%20348.004093%20768.848136%20353.503259v100.031455c-4.971576%200.523849-9.682475%200.785773-14.655298%200.785773-53.904058%200-104.146163-27.23391-133.714943-72.273695v246.413564C620.477895%20729.016906%20539.096711%20810.718636%20438.34933%20810.718636%20337.605691%20810.718636%20256.224507%20729.278831%20256.224507%20628.460356c0-100.817228%2081.381184-182.257033%20182.12607-182.257033%203.925125%200%207.589574%200.261924%2011.252775%200.523849v89.818894c-3.663201-0.523849-7.327649-1.047698-11.252775-1.047698-51.287308%200-92.894636%2041.637262-92.894635%2092.961988%200%2051.325973%2041.60608%2092.961988%2092.895883%2092.961987%2051.287308%200%2096.557837-40.588317%2096.557836-91.914289L535.691693%20210.786845h85.832653z'%20fill='%231d44ff'%20p-id='6019'%3e%3c/path%3e%3c/svg%3e")
}

.home-wrap .share-components .share-ks[data-v-9f4ceea9] {
	background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20t='1712416014134'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='32481'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='48'%20height='48'%3e%3cpath%20d='M522.971429%20585.142857c3.657143%200%20274.285714-25.6%20292.571428-21.942857%2018.285714%203.657143%2091.428571%200%2095.085714%2032.914286%203.657143%2029.257143%200%2058.514286%200%2058.514285s-160.914286%2029.257143-164.571428%2036.571429c-3.657143%203.657143-18.285714%2018.285714-14.628572%2040.228571v106.057143c0%203.657143%203.657143%2018.285714%2032.914286%2014.628572%2021.942857-3.657143%2043.885714-10.971429%2051.2-14.628572%203.657143%200%203.657143-3.657143%203.657143-7.314285v-21.942858c0-3.657143-3.657143-7.314286-7.314286-3.657142l-40.228571%207.314285v-84.114285l135.314286-25.6c3.657143%200%207.314286%200%207.314285%203.657142l3.657143%20146.285715s7.314286%2036.571429-47.542857%2047.542857c-54.857143%2010.971429-190.171429%2051.2-204.8%2051.2-14.628571%200-32.914286%200-58.514286-7.314286-14.628571-3.657143-36.571429-10.971429-43.885714-18.285714-3.657143%200-3.657143-7.314286-3.657143-10.971429l47.542857-73.142857c3.657143-3.657143%203.657143-7.314286%203.657143-10.971428v-80.457143c0-3.657143%200-7.314286-3.657143-10.971429l-106.057143-120.685714c-3.657143-3.657143-3.657143-7.314286-3.657142-10.971429%200-7.314286%203.657143-21.942857%2025.6-21.942857zM394.971429%20614.4c-3.657143-3.657143-3.657143-3.657143-7.314286-3.657143L186.514286%20585.142857h-7.314286c-7.314286%203.657143-29.257143%2014.628571-32.914286%2043.885714v219.428572s3.657143%2043.885714%2065.828572%2062.171428c65.828571%2021.942857%20142.628571%2036.571429%20142.628571%2036.571429s43.885714%207.314286%2062.171429-25.6c18.285714-32.914286%20102.4-128%20102.4-128v-58.514286l-124.342857-120.685714zM343.771429%20877.714286c-21.942857%200-106.057143-10.971429-131.657143-32.914286-25.6-21.942857-10.971429-179.2-10.971429-179.2s0-18.285714%2010.971429-18.285714l131.657143%2021.942857s18.285714%207.314286%2018.285714%2021.942857v171.885714s3.657143%2014.628571-18.285714%2014.628572zM914.285714%20369.371429c0-84.114286-69.485714-153.6-157.257143-153.6-51.2%200-95.085714%2021.942857-124.342857%2058.514285-21.942857-91.428571-106.057143-160.914286-204.8-160.914285-117.028571%200-212.114286%2095.085714-212.114285%20212.114285%200%20117.028571%2095.085714%20212.114286%20212.114285%20212.114286h18.285715l314.514285-14.628571h7.314286c84.114286-7.314286%20146.285714-76.8%20146.285714-153.6z%20m-446.171428%2073.142857c-58.514286%200-106.057143-51.2-106.057143-113.371429s47.542857-113.371429%20106.057143-113.371428c58.514286%200%20106.057143%2051.2%20106.057143%20113.371428s-43.885714%20113.371429-106.057143%20113.371429z%20m314.514285-3.657143c-40.228571%200-69.485714-32.914286-69.485714-76.8s32.914286-76.8%2069.485714-76.8%2069.485714%2032.914286%2069.485715%2076.8-32.914286%2076.8-69.485715%2076.8z'%20p-id='32482'%20fill='%231d44ff'%3e%3c/path%3e%3c/svg%3e")
}

.small-btn[data-v-c90bafe9] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-298e83f3] {
	padding-bottom: 80px
}

.home-wrap .custom-swiper[data-v-298e83f3] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 1px solid var(--border-color);
	background: var(--bg-card)
}

.home-wrap .custom-swiper .van-swipe[data-v-298e83f3] {
	border-radius: 4px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-298e83f3] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-298e83f3] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-298e83f3] .van-swipe-item {
	border-radius: 4px
}

.home-wrap .custom-swiper .van-swipe[data-v-298e83f3] .van-swipe-item img {
	width: 100%;
	height: 160px;
	border-radius: var(--card-radius);
	object-fit: center
}

@keyframes jump-298e83f3 {
	0% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-20px)
	}

	to {
		transform: translateY(0)
	}
}

.home-wrap .drawbox[data-v-298e83f3] {
	animation: jump-298e83f3 1s infinite
}

.home-wrap .drawbox2[data-v-298e83f3] {
	animation: spinning-cog-298e83f3 1s infinite
}

@keyframes spinning-cog-298e83f3 {
	0% {
		transform: scale(1)
	}

	20% {
		transform: scale(1.1)
	}

	to {
		transform: scale(1)
	}
}

.small-btn[data-v-636fe91b] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-ceba9f96] {
	padding: 0 0 80px;
	width: calc(100% + 2 * var(--mg));
	margin: 0 calc(-1 * var(--mg))
}

.home-wrap .top_bg[data-v-ceba9f96] {
	padding-top: 16px;
	background-image: url(./explore-bg-BOabrpN5.png);
	background-repeat: no-repeat;
	background-size: 100% 100%
}

.home-wrap .top_bg .home_img[data-v-ceba9f96] {
	margin: 14px 17px;
	height: 18px;
	width: 76px;
	background-image: url(./home-title-BCqTF4gH.png);
	background-size: 100% 100%;
	background-repeat: no-repeat
}

.home-wrap .top_bg .img_top[data-v-ceba9f96] {
	display: flex;
	align-items: center;
	height: 110px;
	width: 100%;
	font-size: 15px;
	padding: 0 17px;
	box-sizing: border-box
}

.home-wrap .top_bg .img_top .top_left[data-v-ceba9f96] {
	width: 35%;
	height: 110px;
	background-image: url(./home-1-bg-DXBCLhlp.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-right: 13px
}

.home-wrap .top_bg .img_top .top_left .text[data-v-ceba9f96] {
	margin-top: 10px;
	text-align: center
}

.home-wrap .top_bg .img_top .top_right[data-v-ceba9f96] {
	width: 65%;
	height: 110px;
	background-image: url(./home-2-bg-BcrYceQe.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	position: relative
}

.home-wrap .top_bg .img_top .top_right .text[data-v-ceba9f96] {
	position: absolute;
	bottom: 13px;
	left: 50%;
	text-align: center;
	-webkit-transform: translateX(-50%);
	transform: translate(-50%)
}

.home-wrap .top_bg .img_top .top_right .robot[data-v-ceba9f96] {
	width: 105px;
	height: 114px;
	position: absolute;
	top: -55px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translate(-50%)
}

.home-wrap .space[data-v-ceba9f96] {
	height: 99px;
	background-image: url(./home-3-bg-Bz1Vj8MZ.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	padding-top: 2px;
	margin: 17px
}

.home-wrap .space .text[data-v-ceba9f96] {
	margin: 17px 0 0 17px
}

.home-wrap .chart[data-v-ceba9f96] {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	margin: 17px
}

.home-wrap .chart .chart_left[data-v-ceba9f96] {
	height: 110px;
	width: 48%;
	background-image: url(./home-4-bg-CKAjARFT.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	padding-left: 15px;
	padding-top: 15px;
	box-sizing: border-box
}

.home-wrap .chart .chart_right[data-v-ceba9f96] {
	display: flex;
	width: 48%;
	height: 110px;
	justify-content: space-between;
	flex-direction: column
}

.home-wrap .chart .chart_right .right_top[data-v-ceba9f96] {
	height: 100%;
	width: 100%;
	background-image: url(./home-5-bg-DSKTlhhI.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	padding-left: 15px;
	padding-top: 15px;
	box-sizing: border-box
}

.home-wrap .notice[data-v-ceba9f96] {
	margin: 0 17px 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px
}

.home-wrap .notice .notice_right[data-v-ceba9f96] {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 80%
}

.home-wrap .custom-swiper[data-v-ceba9f96] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 3px solid transparent
}

.home-wrap .custom-swiper .van-swipe[data-v-ceba9f96] {
	border-radius: 8px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-ceba9f96] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-ceba9f96] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-ceba9f96] .van-swipe-item {
	border-radius: 8px
}

.home-wrap .custom-swiper .van-swipe[data-v-ceba9f96] .van-swipe-item img {
	width: 100%;
	height: 175px;
	border-radius: 8px;
	object-fit: center
}

.home-wrap .tools-wrap .tools-card[data-v-ceba9f96] {
	position: relative;
	width: 100%;
	height: 106px;
	margin: 0 auto;
	border-radius: 17px;
	background: linear-gradient(0deg, #0060af, #00befd)
}

.home-wrap .tools-wrap .tools-card .label[data-v-ceba9f96] {
	position: absolute;
	bottom: 8px;
	padding: 4px 8px;
	background: #ffffff21;
	border-radius: 12px;
	text-align: center;
	box-sizing: border-box;
	width: 90%;
	left: 50%;
	transform: translate(-50%);
	word-wrap: break-word;
	word-break: break-all
}

.home-wrap .tools-wrap2 .tools-card2[data-v-ceba9f96] {
	border: 1px solid rgba(255, 255, 255, .7);
	background: #ffffff21;
	border-radius: 12px;
	padding: 10px 12px;
	width: 100%;
	box-sizing: border-box;
	font-size: 12px;
	display: inline-flex
}

.home-wrap .tools-wrap2.has-invest .tools-card2[data-v-ceba9f96] {
	display: block !important
}

.home-wrap .tools-wrap2.has-invest .tools-card2 img[data-v-ceba9f96] {
	margin-right: 0;
	margin-left: 50%;
	transform: translate(-50%)
}

.home-wrap .tools-wrap2.has-invest .tools-card2 .label[data-v-ceba9f96] {
	text-align: center;
	margin-top: 5px
}

.small-btn[data-v-033a7882] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.index-wrap[data-v-98fff656] {
	position: relative;
	padding-bottom: 60px
}

.index-wrap.color-1[data-v-98fff656] {
	--color-svg1: #fff;
	--color-svg2: #fff
}

.index-wrap.color-1 .download[data-v-98fff656] {
	position: relative;
	background: url(./download-bg1-Dqhcb1_d.png) no-repeat;
	background-size: 100% 100%
}

.index-wrap.color-1 .download[data-v-98fff656]:before {
	content: "";
	position: absolute;
	left: 18px;
	top: 50%;
	margin-top: -30px;
	background: url(./download-text-1-Cox0W3qP.png) no-repeat;
	background-size: 100% 100%;
	width: 213px;
	height: 57px
}

.index-wrap.color-1 .download[data-v-98fff656]:after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -9px;
	width: 35px;
	height: 17px;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAARCAYAAABXaxX/AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJvSURBVHgBxVVLaFNBFD0vjaCkH7HSdFE/pF1086TZWQStUKELoYK4sHFhQRBXfhYiuIju3Nniym/xkyqu1I1oKs2mduHCYBBENGpX9kn9NVEp1ee9yZ1m3uO9fAppDxxm3sy8uWfuvTPXgCA+Zq9HECcMYJcN9KH+SAcMjMQPGTfVgFEQctfeikVMhtbiZ08nxs0tyLZvQB51RPIlzDcz6J+bRxc5Yff5g8bHopjb9oeOjZg6MoBxrDBuPMXQjIUd5IxoQ/yWfbi1GR3H9uIqVgHRTmRevMXOhX9oDlKgjndvxr0y60PEXmkZs8QMMa/Nm8SwfGdlvmpQaiSmXmMgyP09UZz1WbedeEoTojAsYljABWKba54FnUFJ8D7ZI+FlxIwgS2L6gvAH/3xUWt70uYyHtTVDIoTnk8RGYj8xQhwkqhy0ZS28BLW3FEWXE2OidOLLcLpenbhX2mmiyrmIRoWHcqiYn6BKYhq1voViuEz5Zi+MwJlHbqFh137KSywoJwIdCKB6zGqGqkHOY8yQNuT1Q6CCcQUOx0XiA9caS9ptmhHlEbdw9gjnDYfI8z0rhOnzV4Q8XtyMGOO8GYTzeiskxQiH774miDFdixAGlQekMp8cyaaDr+cr6behdLOURzjuE5oINX+F+EzbJydjnkK4NFCTNs4l7Pi6Ndh/+kDBcDmom2Utc94Xlx7h5Ld53AnYCxj99QdN1x4vXTs/WChvqNK8J64/QWzuB7q4ehcL5RhV7QZMtrbgXfcmTNCLXNNzXiu+UI6mKTXS7xHL/0YT/lLVHpaqrcBFk2sVdXtQf6ToWU4ZixglId954D+EoqpCFQVvDgAAAABJRU5ErkJggg==) no-repeat;
	background-size: 100% 100%
}

.index-wrap.color-1 .recharge-img .img-part[data-v-98fff656] {
	background: url(./1-deposit-4HyFnJ03.png) no-repeat
}

.index-wrap.color-2[data-v-98fff656] {
	--color-svg1: #6D3F15;
	--color-svg2: #925C1B
}

.index-wrap.color-2 .download[data-v-98fff656] {
	margin-left: -1px !important;
	position: relative;
	background: url(./download-bg2-DuF5bcNH.png) no-repeat;
	background-size: 100% 100%
}

.index-wrap.color-2 .download[data-v-98fff656]:before {
	content: "";
	position: absolute;
	left: -4px;
	top: 50%;
	margin-top: -35px;
	background: url(./download-text-2-voG8S1Dc.png) no-repeat;
	background-size: 100% 100%;
	width: 287px;
	height: 76px
}

.index-wrap.color-2 .download[data-v-98fff656]:after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -8px;
	width: 35px;
	height: 17px;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAARCAYAAABXaxX/AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAOfSURBVHgBxVVpTBNREN52K9UttdRqWwra4hWiKIWo8YoFvIUfyg+jBBXPREUBiZgYLyD4Rw0IJIgmiiJEwVsQQU6jMaBACQoEuS2FIost3ba00tZ9C4uAXSIk6JfsvryZ2bxvZr55S4MGERskcaD394fSIavMCkFe0CSDBlnlNDotLvhe+93ftgEiEtj8s0joIuWt8D+l5M/zMEyz55qhSURrVaH9l5IHvMZPrzAzPMU7LKWlhSATv8ep2WPLEbu1ARc6oH+Md+lRjpWvb5rMsM4DxokEzV+2zW/9oasK6D9gzhIZ1iovnG1AUQuDZoVCFsl2oVTBmLqHUV7wmGPANDDY84Ri06KVG7QszkAbgb+2tMAe7Wy1A3vnBe4Gt9UbtdA4sHxHWMfLa/u8GLhYpWJ3n3JbQR/zMh0yYiMkRoMOHm4/l/qhGpBRtTUwE8P8F2rQTrvhfsGcBfrQhKx6knBOyhWBAeuF/YOjlbbOEc731ON68aJDFNBpeuAXydGzAZGpCKtfus4PBY/Y1XMo66xbMY6ACPCv2hagksr8uoFd1fYVybsfyyfjaDS6tfhRsuOTxPMiW2eRw8KgIlNTms8mM/Y9dFbhuswbI30Im2sBa115sQNYXZf7qHdHxBGai9m7GsErhiibahAyfsu+8K4+XS9cmJFEkKGqECUZ/aBGAGaKXIypl4+L2+oq2WDvjlfoYNTtFqN+oH1cvpOJjGUibCJLdbdyROu2H4skJhUQQtgO/YDg6DMp2zQa3FkiE2jH38ZPnTb9j3vKYrEQVwmokq1vKMnwRJKhbOUlWdyD0XdaVvnuGZENhycwgrWpuoyoGJgszfcOJkGGZT+CDNAL0I3PzqNKskqjQbTJgP2AR9+4bis3ajkzhUZNdyezNCedX1tWwDHqsRFt9fTZgRZl3hC11lWwT291kQIbOXluazarx0OEqAw+2sWdDRWILeeJuKf15PT0oiomOVkzBM5ERTYFhnaREwR8pN/3wJlvMv/DQ3cX0AiwURFpluezrVb8X5UQKLrIn+sRvjMyqx4aA12KRkKQfOd5pon4x0J2/GFJY1lOOLzJk1el627fazRoueKlXpQ3J2v6DDN4Juqnwtu0S6Lakof6kDTlfjhXru7bvJj1XNVYGYgq6gQMJmLmCueOO7vxQN/bw1DUvme9STopaSjL1lrMFu/cz5iaNjwoNsApiE6HQnCjFJpkAK3i72ILpr8e9kxNiP0XBQ6ZR3HkCrcAAAAASUVORK5CYII=) no-repeat;
	background-size: 100% 100%
}

.index-wrap.color-2 .recharge-img[data-v-98fff656] {
	width: 63px !important;
	height: 63px !important;
	margin-bottom: -8px
}

.index-wrap.color-2 .recharge-img .img-part[data-v-98fff656] {
	background: url(./2-deposit-DmwMIuVK.png) no-repeat !important;
	width: 63px !important;
	height: 63px !important
}

.index-wrap.color-2 .recharge-img .tray[data-v-98fff656] {
	bottom: 5px !important
}

.index-wrap.color-3[data-v-98fff656] {
	--color-svg1: #FFB3DC;
	--color-svg2: #FFE9F5
}

.index-wrap.color-3 .download[data-v-98fff656] {
	margin-left: 0 !important;
	margin-top: 10px;
	width: 100% !important;
	height: 57px !important;
	position: relative;
	background: var(--primary)
}

.index-wrap.color-3 .download[data-v-98fff656]:before {
	content: "";
	position: absolute;
	left: 13px;
	top: 50%;
	margin-top: -24px;
	background: url(./download-text-3-hrPz8LqQ.png) no-repeat;
	background-size: 100% 100%;
	width: 265px;
	height: 49px
}

.index-wrap.color-3 .download[data-v-98fff656]:after {
	content: "";
	position: absolute;
	right: 2px;
	top: 50%;
	margin-top: -31px;
	width: 76px;
	height: 63px;
	background: url(data:image/png;base64,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) no-repeat;
	background-size: 100% 100%
}

.index-wrap.color-3 .recharge-img[data-v-98fff656] {
	width: 54px !important;
	height: 50px !important;
	margin-bottom: -4px
}

.index-wrap.color-3 .recharge-img .img-part[data-v-98fff656] {
	background: url(./3-deposit-BPuSiFu3.png) no-repeat !important;
	width: 54px !important;
	height: 50px !important
}

.index-wrap.color-3 .recharge-img .tray[data-v-98fff656] {
	bottom: -3px !important
}

.index-wrap.color-4[data-v-98fff656] {
	--color-svg1: #B5E7C8;
	--color-svg2: #EAFFF2
}

.index-wrap.color-4 .download[data-v-98fff656] {
	margin-left: 0 !important;
	margin-top: 10px;
	width: 100% !important;
	height: 57px !important;
	position: relative;
	background: var(--primary)
}

.index-wrap.color-4 .download[data-v-98fff656]:before {
	content: "";
	position: absolute;
	left: 14px;
	top: 50%;
	margin-top: -24px;
	background: url(./download-text-4-BCk04L-c.png) no-repeat;
	background-size: 100% 100%;
	width: 262px;
	height: 48px
}

.index-wrap.color-4 .download[data-v-98fff656]:after {
	content: "";
	position: absolute;
	right: 9px;
	top: 50%;
	margin-top: -24px;
	width: 55px;
	height: 49px;
	background: url(./go-4-w9ixGnm9.png) no-repeat;
	background-size: 100% 100%
}

.index-wrap.color-4 .recharge-img[data-v-98fff656] {
	width: 54px !important;
	height: 50px !important;
	margin-bottom: -4px
}

.index-wrap.color-4 .recharge-img .img-part[data-v-98fff656] {
	background: url(./4-deposit-BfBitAgE.png) no-repeat !important;
	width: 54px !important;
	height: 50px !important
}

.index-wrap.color-4 .recharge-img .tray[data-v-98fff656] {
	bottom: -3px !important
}

.index-wrap.color-5[data-v-98fff656] {
	--color-svg1: #FFE4BC;
	--color-svg2: #FFF3EC
}

.index-wrap.color-5 .download[data-v-98fff656] {
	margin-left: 0 !important;
	margin-top: 10px;
	width: 100% !important;
	height: 57px !important;
	position: relative;
	background: var(--primary)
}

.index-wrap.color-5 .download[data-v-98fff656]:before {
	content: "";
	position: absolute;
	left: 24px;
	top: 50%;
	margin-top: -23px;
	background: url(./download-text-5-C71ydmHZ.png) no-repeat;
	background-size: 100% 100%;
	width: 257px;
	height: 46px
}

.index-wrap.color-5 .download[data-v-98fff656]:after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	margin-top: -20px;
	width: 51px;
	height: 45px;
	background: url(./go-5-BADWcU6q.png) no-repeat;
	background-size: 100% 100%
}

.index-wrap.color-5 .recharge-img[data-v-98fff656] {
	width: 54px !important;
	height: 50px !important;
	margin-bottom: -4px
}

.index-wrap.color-5 .recharge-img .img-part[data-v-98fff656] {
	background: url(./5-deposit-W_47JijM.png) no-repeat !important;
	width: 54px !important;
	height: 50px !important
}

.index-wrap.color-5 .recharge-img .tray[data-v-98fff656] {
	bottom: -3px !important
}

.index-wrap .banner-swiper[data-v-98fff656] {
	box-sizing: border-box;
	position: relative;
	border-radius: var(--card-radius);
	width: calc(100% + var(--mg) * 2);
	margin: 0 calc(0px - var(--mg)) 0
}

.index-wrap .banner-swiper .custom-swiper[data-v-98fff656] {
	width: 100%;
	height: 195px;
	box-sizing: border-box;
	border-radius: var(--card-radius)
}

.index-wrap .banner-swiper .custom-swiper .van-swipe[data-v-98fff656] {
	border-radius: var(--card-radius);
	height: 195px;
	overflow: hidden
}

.index-wrap .banner-swiper .custom-swiper .van-swipe[data-v-98fff656] .van-swipe__indicator {
	display: none
}

.index-wrap .banner-swiper .custom-swiper .van-swipe-item img[data-v-98fff656] {
	width: 100%;
	height: 195px;
	border-radius: var(--card-radius);
	object-fit: center
}

.index-wrap .notice-info[data-v-98fff656] {
	position: relative;
	display: flex;
	align-items: center;
	border-radius: var(--card-radius);
	cursor: pointer;
	width: 100%;
	height: 36px;
	padding: 0 13px;
	margin-top: -18px;
	background: var(--bg-notice);
	box-shadow: 0 2px 16px #0000001a;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px)
}

.index-wrap .notice-info .volume-icon[data-v-98fff656] {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 16px;
	margin-right: 16px
}

.index-wrap .notice-info .van-notice-bar[data-v-98fff656] {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 36px;
	background: transparent;
	color: var(--notice-color);
	font-size: 12px;
	padding: 0
}

.index-wrap .index-tools .tools-part[data-v-98fff656] {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 9px;
	margin: 20px 0 0
}

.index-wrap .index-tools .tools-part .part[data-v-98fff656] {
	padding: 8px 8px 15px;
	position: relative;
	z-index: 1;
	border-radius: var(--card-radius);
	background: var(--btn-tools);
	display: flex;
	flex-direction: column;
	justify-content: space-between
}

.index-wrap .index-tools .tools-part .part .label[data-v-98fff656] {
	font-size: 12px;
	color: var(--btn-text2);
	text-align: left;
	font-weight: 700;
	line-height: 20px
}

.index-wrap .index-tools .tools-part .part .label div[data-v-98fff656] {
	margin-top: 4px;
	font-size: 12px;
	line-height: 12px
}

.index-wrap .index-tools .tools-part .part .icon[data-v-98fff656] {
	position: relative;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center
}

.index-wrap .index-tools .tools-part .part .icon .svg[data-v-98fff656] {
	position: relative;
	z-index: 1
}

.index-wrap .index-tools .tools-part .part .icon .tray[data-v-98fff656] {
	position: absolute;
	bottom: -4px;
	left: 50%;
	margin-left: -24px
}

.index-wrap .index-tools .tools-part .part .recharge-img[data-v-98fff656] {
	position: relative;
	width: 52px;
	height: 48px;
	margin-right: 4px
}

.index-wrap .index-tools .tools-part .part .recharge-img .img-part[data-v-98fff656] {
	position: relative;
	z-index: 1;
	display: block;
	width: 52px;
	height: 48px;
	background: url(./1-deposit-4HyFnJ03.png) no-repeat
}

.index-wrap .index-tools .tools-part .part .recharge-img .tray[data-v-98fff656] {
	position: absolute;
	bottom: -1px;
	left: 50%;
	margin-left: -35px
}

.index-wrap .index-tools .download[data-v-98fff656] {
	margin-top: 10px;
	width: 100%;
	height: 57px;
	border-radius: var(--btn-radius);
	box-shadow: var(--btn-shadow)
}

.index-wrap .title[data-v-98fff656] {
	font-size: 18px;
	font-weight: 800;
	color: var(--title-color);
	position: relative;
	display: flex;
	align-items: center
}

.index-wrap .title svg[data-v-98fff656] {
	margin-right: 11px
}

.index-wrap .store[data-v-98fff656] {
	margin-top: 20px
}

.index-wrap .store .store-tools[data-v-98fff656] {
	flex: 1;
	max-width: calc(100% - 98px)
}

.index-wrap .store .store-content[data-v-98fff656] {
	margin-top: var(--mg)
}

.index-wrap .store .store-content .store-item[data-v-98fff656] {
	position: relative;
	border-radius: var(--card-radius);
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: var(--mg)
}

.index-wrap .store .store-content .store-item[data-v-98fff656]:last-child {
	margin-bottom: 0
}

.index-wrap .store .store-content .store-item .store-img[data-v-98fff656] {
	position: relative;
	flex-shrink: 0
}

.index-wrap .store .store-content .store-item .store-img img[data-v-98fff656] {
	width: 120px;
	height: 120px;
	border-radius: var(--card-radius);
	border: 1px solid var(--border-color)
}

.index-wrap .store .store-content .store-item .store-img .lock-img[data-v-98fff656] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: var(--card-radius);
	background: #0006;
	display: flex;
	align-items: center;
	justify-content: center
}

.index-wrap .store .store-content .store-item .store-info[data-v-98fff656] {
	margin-left: var(--mg)
}

.index-wrap .store .store-content .store-item .store-info .top[data-v-98fff656] {
	display: flex;
	align-items: flex-end
}

.index-wrap .store .store-content .store-item .store-info .top .rate[data-v-98fff656] {
	font-size: 20px;
	line-height: 22px;
	font-weight: 700;
	color: var(--title-color);
	margin-right: 8px
}

.index-wrap .store .store-content .store-item .store-info .content[data-v-98fff656] {
	position: relative;
	margin: 4px 0
}

.index-wrap .store .store-content .store-item .store-info .content .label[data-v-98fff656] {
	word-break: break-all;
	font-size: 12px;
	line-height: 20px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	color: var(--title-color)
}

.index-wrap .store .store-content .store-item .store-info .action-box[data-v-98fff656] {
	font-size: 12px;
	width: 55px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: var(--primary);
	border-radius: var(--btn-radius);
	background: var(--btn-bg3)
}

.index-wrap .store .store-content .store-item .store-info .action-box.disable[data-v-98fff656] {
	filter: grayscale(100%);
	opacity: .8
}

.index-wrap .video-part .container-card[data-v-98fff656] {
	padding: 0;
	border-radius: var(--card-radius)
}

.index-wrap .membership-list[data-v-98fff656] {
	margin-top: 24px
}

.index-wrap .membership-list .swiper-vertical[data-v-98fff656] {
	touch-action: auto
}

.index-wrap .membership-list .membership-content[data-v-98fff656] {
	margin-top: var(--mg);
	max-height: 125px
}

.index-wrap .membership-list .membership-content[data-v-98fff656] .swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between
}

.index-wrap .membership-list .membership-content .membership-item[data-v-98fff656] {
	position: relative;
	width: calc(50% - 9px);
	margin-bottom: 13px;
	border-radius: var(--card-radius);
	text-align: center
}

.index-wrap .membership-list .membership-content .membership-item .show[data-v-98fff656] {
	display: block;
	margin: 0 auto;
	width: 51px;
	height: 51px
}

.index-wrap .membership-list .membership-content .membership-item .money[data-v-98fff656] {
	font-size: 20px;
	line-height: 20px;
	color: var(--btn-text);
	height: 66px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--btn-bg3)
}

.index-wrap .membership-list .membership-content .membership-item .vip[data-v-98fff656] {
	position: absolute;
	transform: translate(-50%);
	top: 56px;
	left: 50%;
	color: var(--text-white);
	background: var(--primary);
	padding: 0 17px;
	min-height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	border-radius: var(--card-radius)
}

.index-wrap .membership-list .membership-content .membership-item .name[data-v-98fff656] {
	line-height: 12px;
	font-size: 12px;
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--text-white);
	border: 1px solid var(--btn-bg4);
	color: var(--text-vip)
}

.index-wrap .regulator.container-card[data-v-98fff656] {
	background: var(--btn-bg3);
	border-radius: var(--card-radius)
}

.small-btn[data-v-e4659e50] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.index-wrap[data-v-a90f8e8d] {
	position: relative;
	z-index: 1;
	padding-top: 60px;
	padding-bottom: 80px
}

.index-wrap[data-v-a90f8e8d]:before {
	content: "";
	position: absolute;
	top: 0;
	left: -16px;
	width: calc(100% + 32px);
	height: 243px;
	background: var(--bg-decor)
}

.index-wrap[data-v-a90f8e8d]:after {
	content: "";
	position: absolute;
	top: 0;
	left: -16px;
	width: calc(100% + 32px);
	height: 243px;
	background: url(./bg-1-BMz1PYoJ.png) left bottom no-repeat;
	background-size: 100% 100%
}

.index-wrap .top-flag[data-v-a90f8e8d] {
	position: relative;
	z-index: 1;
	margin: 16px 0;
	display: flex;
	justify-content: center;
	color: var(--btn-text2);
	font-size: 16px
}

.index-wrap .swiper-container[data-v-a90f8e8d] {
	box-sizing: border-box;
	position: relative;
	border-radius: var(--card-radius);
	width: 100%;
	margin: 12px auto 0
}

.index-wrap .swiper-container .custom-swiper[data-v-a90f8e8d] {
	width: 100%;
	overflow: hidden;
	height: 160px;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 3px solid transparent
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-a90f8e8d] {
	border-radius: 8px;
	overflow: hidden
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-a90f8e8d] .van-swipe__indicators {
	bottom: 15px !important
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-a90f8e8d] .van-swipe__indicator {
	width: 12px;
	height: 2px;
	opacity: .4;
	border-radius: 1px
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-a90f8e8d] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.index-wrap .swiper-container .custom-swiper .van-swipe-item img[data-v-a90f8e8d] {
	width: 100%;
	height: 160px;
	border-radius: 8px;
	object-fit: center
}

.index-wrap .action-part[data-v-a90f8e8d] {
	background: var(--bg-card);
	padding: 16px;
	border-radius: var(--radius)
}

.index-wrap .action-part[data-v-a90f8e8d] .container-card {
	background: #f4f4f4
}

.index-wrap .notice-info[data-v-a90f8e8d] {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	cursor: pointer;
	height: 40px;
	border-radius: 26px;
	background: #ffffff4d;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	margin-top: 6px;
	padding: 0 25px 0 5px;
	color: var(--btn-text2)
}

.index-wrap .notice-info .volume-icon[data-v-a90f8e8d] {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 16px;
	margin: 0 9px 0 10px
}

.index-wrap .notice-info .van-notice-bar[data-v-a90f8e8d] {
	width: 100%;
	padding: 0 5px;
	background: transparent;
	color: var(--btn-text2);
	font-size: 12px
}

.index-wrap .tools-part[data-v-a90f8e8d] {
	position: relative;
	z-index: 1;
	background: #fff;
	border-radius: var(--radius);
	padding: 30px 16px 16px
}

.index-wrap .tools-part .top-tools[data-v-a90f8e8d] {
	display: grid;
	grid-template-columns: repeat(3, 1fr)
}

.index-wrap .tools-part .part[data-v-a90f8e8d] {
	position: relative;
	z-index: 1;
	border-radius: var(--card-radius);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center
}

.index-wrap .tools-part .part .label[data-v-a90f8e8d] {
	font-size: 12px;
	color: #000;
	text-align: center;
	font-weight: 700;
	line-height: 14px;
	margin-top: 7px
}

.index-wrap .tools-part .part .icon[data-v-a90f8e8d] {
	position: relative;
	width: 64px;
	height: 48px;
	background: var(--primary);
	border-radius: 42px;
	display: flex;
	justify-content: center;
	align-items: center
}

.index-wrap .tools-part .part .icon img[data-v-a90f8e8d] {
	position: absolute;
	left: 6px;
	bottom: 6px;
	width: 52px;
	height: 52px
}

.index-wrap .tools-part .btn-download[data-v-a90f8e8d] {
	margin-top: 12px;
	position: relative;
	width: 100%;
	height: 72px;
	border-radius: var(--btn-radius);
	padding: 0 14px 0 18px;
	background: var(--bg-download);
	display: flex;
	align-items: center
}

.index-wrap .tools-part .btn-download[data-v-a90f8e8d]:after {
	content: "";
	position: absolute;
	right: 14px;
	top: 5px;
	background: url(./download-l-V-DBWi.png) center no-repeat;
	background-size: 100% 100%;
	width: 147px;
	height: 61px
}

.index-wrap .tools-part .btn-download .left .label[data-v-a90f8e8d] {
	font-size: 20px;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 22px
}

.index-wrap .tools-part .btn-download .left .icon[data-v-a90f8e8d] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 16px;
	border-radius: 20px;
	background: var(--primary)
}

.index-wrap .title[data-v-a90f8e8d] {
	font-size: 18px;
	color: #000
}

.index-wrap .video-part[data-v-a90f8e8d] {
	background: var(--bg-card);
	padding: 16px;
	border-radius: var(--radius)
}

.index-wrap .video-part .container-card[data-v-a90f8e8d] {
	padding: 0
}

.index-wrap .membership-list[data-v-a90f8e8d] {
	margin-top: 12px;
	background: var(--bg-card);
	padding: 16px;
	border-radius: var(--radius)
}

.index-wrap .membership-list .swiper-vertical[data-v-a90f8e8d] {
	touch-action: auto
}

.index-wrap .membership-list .membership-content[data-v-a90f8e8d] {
	max-height: 147px
}

.index-wrap .membership-list .membership-content[data-v-a90f8e8d] .swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between
}

.index-wrap .membership-list .membership-content .membership-item[data-v-a90f8e8d] {
	position: relative;
	width: calc(50% - 6px);
	padding: 12px 9px;
	margin-bottom: 13px;
	background: var(--bg-vip);
	border-radius: 17px
}

.index-wrap .membership-list .membership-content .membership-item .top[data-v-a90f8e8d] {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 6px
}

.index-wrap .membership-list .membership-content .membership-item .money[data-v-a90f8e8d] {
	font-size: 17px;
	line-height: 20px;
	color: #000
}

.index-wrap .membership-list .membership-content .membership-item .vip[data-v-a90f8e8d] {
	background: var(--primary);
	color: var(--btn-text2);
	padding: 0 8px;
	display: inline-block;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	border-radius: 16px
}

.index-wrap .membership-list .membership-content .membership-item .name[data-v-a90f8e8d] {
	line-height: 12px;
	font-size: 12px;
	color: var(--text-gray6)
}

.small-btn[data-v-a0a8a103] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.index-wrap[data-v-913468bd] {
	padding-top: 60px;
	padding-bottom: 80px;
	position: relative;
	z-index: 1
}

.index-wrap .top-flag[data-v-913468bd] {
	position: relative;
	margin: 10px 0 20px;
	display: flex;
	justify-content: center;
	color: var(--btn-text2);
	font-size: 16px
}

.index-wrap .swiper-container[data-v-913468bd] {
	box-sizing: border-box;
	position: relative;
	border-radius: var(--card-radius);
	width: 100%;
	margin-top: 20px
}

.index-wrap .swiper-container .custom-swiper[data-v-913468bd] {
	width: 100%;
	box-sizing: border-box;
	border-radius: var(--card-radius)
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-913468bd] {
	border-radius: 8px;
	overflow: hidden
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-913468bd] .van-swipe__indicators {
	bottom: 15px !important
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-913468bd] .van-swipe__indicator {
	width: 12px;
	height: 2px;
	opacity: .4;
	border-radius: 1px
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-913468bd] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--primary)
}

.index-wrap .swiper-container .custom-swiper .van-swipe-item img[data-v-913468bd] {
	width: 100%;
	height: 160px;
	border-radius: var(--card-radius);
	object-fit: center
}

.index-wrap .notice-info[data-v-913468bd] {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
	width: 100%;
	height: 42px;
	color: var(--notice-text);
	padding: 0 20px 0 4px;
	margin-bottom: 20px;
	border-radius: 8px;
	margin-top: 8px;
	background: var(--notice-bg);
	box-shadow: var(--card-shadow)
}

.index-wrap .notice-info .volume-icon[data-v-913468bd] {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	margin-right: 4px
}

.index-wrap .notice-info .volume-icon svg[data-v-913468bd] {
	width: 14px;
	height: 16px;
	color: var(--notice-text)
}

.index-wrap .notice-info .van-notice-bar[data-v-913468bd] {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 36px;
	background: transparent;
	color: var(--notice-text);
	font-size: 12px;
	padding: 0
}

.index-wrap .base-loading-time[data-v-913468bd] {
	position: relative;
	padding: 0 var(--mg);
	border-radius: var(--card-radius);
	overflow: hidden
}

.index-wrap .tools-part[data-v-913468bd] {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 12px;
	border-radius: var(--radius)
}

.index-wrap .tools-part .part[data-v-913468bd] {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center
}

.index-wrap .tools-part .part .label[data-v-913468bd] {
	font-size: 12px;
	color: var(--nav-text);
	text-align: center;
	font-weight: 700;
	line-height: 14px;
	margin-top: 8px;
	word-wrap: break-all
}

.index-wrap .tools-part .part .icon[data-v-913468bd] {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: var(--card-shadow);
	border-radius: 5px
}

.index-wrap .tools-part .part .icon.recharge[data-v-913468bd] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAN9SURBVHgB7ZrPaxNBFMe/u9s0/Z3allSt1gTtQSylIggKBVM8WppDxYunXjyI+BdIDYJ4LHry4kkPHsQVvQlWEfEkhlpQqZC0UmoixaQ1SfNjs87buiUUk+zGmTQrfmCzWWY22e/Oe/Pem10JOwi+XjwDBZPQ9SAg+dBQ6GFADkNWQuopf7S0RTK/BN9HupHWrrPOV+EEdMwi/zOkBo4n6NAQYojIFOZY4ygcBRuhXCpAYmTjmEbCcSIIaRSujhnjW/BtxIdiIQInU0RARlGbgdNR9ElmWroDTWoHOoLkI84XAsnXZLXrobZmDLKt22X5FMtktCLWCxo+b2wimddQC1Wvqr/FhamBPfC4FIjmrLcL88kMnseSyBZ1W+fKlRrp4i8O9tZFhMmIpxVTB3pgl4pCxvo64ZYl1BsyYxJkh7JCWhTZ9o/xZKjDbat/WSH9bv5ObYe9Lc22+stoUOz6ZcMKscs/I0SoI8wn00ZciG3mbccFuwgRkmDR+dHKD0NAveAuhEQ8WF7bTjUm9nXjZG87/G1utDfZt+SF9QzuLMYQzxYq9uPuI6YIr9uFuyd8mPb3YbirtSYRBJ175Uh/1X5chZBPmCJuDA+wPZ8BH7YQmDkLyRj7if0ebiKswvXfTOc+VnIHX8Q3cC/6He2KggsHezDu7YQIuI6IOcWSY5s8/LqGVKHInDVvCBKF8ICYYkWTCY2KKLgKMVP+0qly2tdn+AvNWmRaouDqI1RNLqdzmIuvb1/0OKv6aBMN1xEZ8bQZ+6eriaoBjDechbQaZkTOfW1hhZuYSCpbtQ93Zz/P6m2qJWiWuvQuittf4lhg8YXE1QKde+vTatV+3KOWuWBx/3eqQv5Cm2iETL8k5vJhL86xhJEWEuqxgCE0jyCf+ZsFjJsWTMrkf6nbaJQVsqmJLU2rYXcNuKyQZKG2xWReJPL2YlCFESliiaUbu4VZ21iloo88Y6mG6NWPP/GN1TUfeAohO6XAlsjXz8yW0lmj7reLFHyzaOmW00MeCm6iHjHEWF5GmXOtS0iWAyL9yfIu+kw16GFoFE5H18MyJEmF05HAhGh4AqeT00KyOjb0kimahVOR9Fk1cDS6Nf1mm0LsMwzHoYeRTdG1b8URNeBPINcUcNTIsJEw3wwyDne2B+c++tCszBhv3jTcWxFshpWgSpDUx6eHXpW2/AIu0EJ/86t25QAAAABJRU5ErkJggg==) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part .part .icon.recharge.c-2[data-v-913468bd] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAOcSURBVHgB7ZpfSFNRHMe/95ZMM8EYqUjg5oMTcrgXwSDQWQ+K4RZEUoRkEewplZ5SQRdlj84nLYRU6EHoYXsIfcg/vZQPPSzsQX3QSSQqDZYydZmu87symdb+nHnvtht9YNvZvefs3u/O+f1+53fOFXAM2zVUC0FYgkFYIUCHNILdlzsowI0M2Aec8Bw5Fyq0WpG78wvdCKIFKiAIOLL8sDum4aPvkhASEdjFFDtpgoqgHtJswUxiRDpAPaE2EQQbZqbtbHRRWbBZmR3sYglqRoBZZCK6oHKEPVhEQYVD6jhsiFlFNdrGH7AwcTreuoU6IwqLypCTmwe5+bnjx4ZvHZ75GWyyz0QQbPXkkiOjLdCj7maHIgL+xtznCXwYH0Qg4OdqJ0Y7STdvaepJmgiitPwKahvbwUtUIRVVt6DJzEayoWFsKK/hahNRCAkwsH8nVegMlVz1IwrRFhQjlZznvL6INIXXLtNWCC//jJC4A2IizLknMM/ignd1iTsu8KKIkE3fGsZGe+BdS96kWnYhJMI13IHNHwdTjRpLC8orrbhQbMKZ7FzwsjA7jZHeZnjXPVHryS4kJEKbr0Pb8ylo83Q4CSXGajS1vULvY3PUerIaO9mEnCJCkJhYyCqEDJuoaWiVTUS8yCqEvBNRYqw6PPZxYgiPGs+h876elYehFLIKCblYMuwQb1/bseX3MQ/mwZuXrVAKxQPitt93WM46y++14kVWIRrNwZQ/3FXeeNAr2Qu53vrb3VAKWd0vZZMry18w827o8KYvXb0rvZRG1h4xmA7yl0lXX8wAJjeyCqE0VZuvl4ybAphcYr4uumPWkd3Y61i+TbkEeanOe3oMO5qlacZWmNHzQG1fPL0es17EVRTKmy1Nz5AI0nxrpCPhpZ1EUMT95uTm487DQZjZhLGwyJiUBQxF8xGymdITLGD0P2mIu+7/VDfdiCiE1mNTCa+jECP/0BpSyQbn9SMKCbAeWVmeRaoI5TbxEtVGJp19kqBk411dZEImudpEFUJpq2ukPamB7ZtnVsr7eYm5PxKiUFcmBTelthi+s+yShnIoy+QlbiHpjshkeKBygkG4RUGAEyqH7Uy7Rba164La2Yf91KcFeCpKQKsCfFtEaYKwD8fAOEYl96vJgJ26BypDeqhmG3Yqn6K3mTnsXL6I0b19ZEIlPUM9wUQ0H3nMKRxbLXTMl3UxJ2BKu6cimIdlvUDOydk/hvfhp34D4rQ4zOeGUbMAAAAASUVORK5CYII=) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part .part .icon.recharge.c-3[data-v-913468bd] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAOFSURBVHgB7ZpNTBNBFMffTGmhBZIuQqwxaBESw0V70MTEmMBFudEQjxq96MWD8aTxgly8ysU7JB6JcAQ9gF8JF5MSD0gC0mCiJRTapLTQ7sc4b0oJNLTdhdm2S/wl/djZabr/ffOfNzM7BIpQUxt9lNBBMCDMCAtCHUGARBiBiOqiI16vEj18bg/GEn5tW3/FC56CAyCEjFKVjhBFSYpjfEMRRtqYZYyFwEFghKhG+1EMxQKMhNNEIAxYyHAbw/idsJ1EUNf0VXAwXFA/NfS8IidDGR2kXI7jmlQxPCJhoqXiDE4BDWYrZlMx/loHLZsG2bhcbqCNLeD1d0ID/zwOFSOSy2zB1vIc6Dn5Ao7Cd+YS+C9cB+LyWPodLXdSy25DfOlD1UQgmc1fsMlvnFXKCkn9WQCmq1BtsAmn4yuWflNSiKHnxN2pFdnkb0v1SwpRuTdqSW4nYak+hTpF5/60Qt0KscqpEWI6IR4HX3s3zwvd4PG18bzgBjuxRQhm57aePnB7FagW0oWgiPbLt8HlaRbH89MT8PP7V4itrcBuxpqBkWDvVQg/egH+jkDZeiWHKDi2ii99BKsErgwJEcmNGIy9fgbJeAxOSrA3BA9fvilbR6rZ0ROyRSDRxUjFOnKFcGMj8zMT0kSYRapHPL68uaOLC/tloVsDMHDvifDH3PtxiHyZBjuQGpHC0Du2trxf1jf0AJp8LeBvDwhBdmF7QkQRBXbT1nsts0gVwviIGcG7X2D63VthftG0JsfALqR6JJdJQGPrWe6LO/yix0UZesIuXxxEakQy8bw3bgzcrZjAZCNXCJ+IqTwq6AtMYLLEBC72VKwjPbNjQsQhSmE1RDStzzOiJzveECUE4cfPD/nuKKQLQYrFVANbul9cdVn/MQmJ1W/ihhhaDuzG1vkIeuYkCxjnr903Xff/VLfeKCnE6pKlbFwWO4qSQqrZ4xz5/3szTLOUFEJ5RHC4UStwkmaFsh5Rum7WpInhqkthkmaWskJqkdialE7xn1Yx/cQKV8gxuelZex4xuJsV8LQE9meZVjk1j94oYSQKDocAi6BHpsDhMEYiBDfRECCz4GBUTe2i7taOOd68RsGh4LV7lXPR/KaaRMJvNBizuLcDHITwhrbdT5Su/KYasbsGd9k4KDJ4rQUR4ri4Akv8DRou9zAQEqq3COV7WGOKkoYp0qp8OnjuH4e9Zp7GjqiRAAAAAElFTkSuQmCC) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part .part .icon.recharge.c-4[data-v-913468bd] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAOGSURBVHgB7ZpfSFNRHMe/d2pmOJHpgzlEIdF8kKbF0IJKqBAy//RS2ItlgQ+Ce6iHXtI928NCHxIpowfJl/xDQYRQEpWMqIEPZYktYiqhw5y0/rHb+d15x7T9u/PcbTf6wB13u2fc+z2/8/v9zu/cI2ALpouWo4DYBB+aIaAEqYQIB3smBzIEq+OmzRl8SZBPTBZLLjzoYa27oAUE2PCbCbpjW/V/xYaIdfEJU2yCliAL+YQ6EqOTfiBLaE0EIbBnThe7pVNTh6UEv8SP0DKCUKdjIrqhdXxik06TQ+pvmnXSONM6LE2kx9q21LhbOgw5evDG++Mn3GsezMx/gtvjQTxEFWLMz0N7wwkY9NlQm5bDtbC/fY/RZy8lcUrQRbpIvd95uiEhImTMFWVoP3kcSokopN5cjazMHUg0pcZCmPeWKfpPWCEkgHonWVTuKVbUPqwQ8o1kovT+OqQoSqNjygpRyj8jJOaEGA+UE+hwLa8ozgtKUUUIZelbDx8zAW4kCu5CSET//QdsqrEufW89dgR1VZUoLzJCvysLSnk1O4fu28NYWIncKdyFyCIK8w0YvNKJwjwDtsOB8lJYL7TiUm9/xHZcnZ38gacIGRITDe5CiHNsOPESEStchxZFJ2J/UA9OvLDj+r1RyT86Gutx6qAZasDVInKIJceWGRh/BM83LxZYBOtlgtRC9YTo8XoD5/FErVjhKkSe8geHystnWiR/kYeWWnD1EZqxzrkWMfHcHnjoxkNm6VAbrhaR65fhyamoCYw33IWQVci5KYHxEjP72RW1TVpBdU1PqAtUD8RTIVYUF0mrIV9Wv0qWWWRiyD/oyMzIgFJoinJ14O6moBEKwdTeJYa6QEs/tPAQD+619Y2pSnxLO/GgSvg15GTjWttZacJIHZKVmQm1UbUeoaG5nQUMS99gzG3/l7qpRlghapem0aACTQlhhSQy4oS8Py8hZBGabiQLubaJlYg+Mjz5NClDjOoa+7sPiv4TUUgyEtvMvFO6p1LCZvatBF706Pm/6CFcy8tsKC8FqkylxJwQyV+S6TPRoJehTmgdEQ7ykTFoHyZEJ4xD6/gEa9rS62lnQVVNLnvFWwMtIsLmGLox4g+/TJG0QUVr+DfVWOk0jT6WHNPfC/bVjjCr7NSMZZglmIjzm7Y5BWNqs5RAJ+1PMaXcrgh/hB0TRN/Ym6G+qeBLfwByzkJVjG8f3wAAAABJRU5ErkJggg==) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part .part .icon.recharge.c-5[data-v-913468bd] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAORSURBVHgB7ZpNSBRhGMf/77sJ6SY0goofBzVvqXjw49qqHUPxUuDFQpAOEnrJi9gSREGIoiCaqAeNPi4rHoSQPk6ldViwTn4e3ESLVdJ1A919m2dsaZX2Y6Z33B3pB7s7wzyzM/955/l4nxmGE2x8271i46xeINgAwQqQTDC4GZg7wG3OHCV17fim36xui4v2wN49AdyBBWCM9fr4gbNQUXa0dfoiEWlB3xsIUQ4roY7QPj90kBhO6zQSlhNBCJTbgyndtMg2tv0FPHC4CgsTFHBwWzDQDYtj46JevbUseEudQAg0sM3vuwJngHPxGi4uLmNpaRle7zZkk5p6HhkZCsrKStTfDBgh5oh4PB6MjIybIuBvVFVVoLGxXhWXqms/Hm2j1+tFf//gqYkg5uc/aRdOL1GFzMy8gt//E6cN3cJzcx917RNRiN/v165OolhY+KLLPqKQ9fWvSCQej77jcyQp5J96SFohejkzQuJOiEaoqqpEdXUF8vLytKRnJqYIoezc0tKsCsjFaSFdCIloa7utlRyEyzWN9x/msLKyBp/PB72Ulpago6MN2VlZUe2k+0hIxObmFppvtmL4yaiWE4yIIBYWPqOnpz+mnVQh5BMhEXc7u7C1tQUZkJhYSBVCjk24pqaliYgXqUJCzh1eXtTV1eDliwmMjQ6htrYGZiFVSKj0Xln50wJoaroOu92O7OwstLbeglmYnhAvqCJC+PaMOXw8SBVCFTORFRYqh4ZHsan6C0WticnnMAupeYQq1uLiS7ha58Dk06OTnp19rX3MRuqIhCZD9Q3Xjo3KaSBVCE3EaFTILx49vC9NTFFRYUwb6c4+MjKmzSUoSo2PDaG9vQ1lpZe1yGWEMrVE6erqjGkXsYtC7Z+BgUEYgbL7UalirLVjBFPCL3VdnM4HmJx8pl2QUDQzE1PnI+Qz/9LA6Ot7HLft/6lushFRSFqauVPTWOgNFFzWH8kmNMOMl4hCqJKlciNRVFdX6rKP6iNNTTd0d8VlQF0X6srrIaqQRCQ2ajbQMfUS9xMr6pBTcjPrEUN+fq52KxttIZ2ZR28cTKzB6gi4OVObHrA6TLh5IMimYHGCBwEnz8lMf8uY6IVFoXPPyVHWtPCbwgNOxuCG1VB9w/cj4KRFTYiiKDsp/NBhpZGhc93fO3QUFoa95hTOxsZ2AU+xdauW5fT2DZIJNcKKIFy2c8yVqaS/C9/0C6ScSJBWH1hHAAAAAElFTkSuQmCC) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part .part .icon.exit[data-v-913468bd] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAASkSURBVHgB1ZpdbxtFFIbPrp3YSZzGCZVdFJHGggQhWigXDQIpEkb0DlRLXHAB/wAhEFyjEPUPROpv4IILhCW4gooAEUIQJAy0qvohOUlVtXY/Yiex43Vsb+cdZ6t1NDvZGbvp+pEc7Wb2Y945M+ecPbsGHSCzcuMtCtF5su0MkTFNgcLOEZk5MkOL2TdSa+4Ww9nI/JOPU7X5FTv4U+oHbFqivZ3FbPq1Ena5EC5it7HMGs9QX8EsVK+kIcbk+7BE34kAxhkaiC3wrcwf+WlqNfLUz7QoHaZWc4GeAInIAH0yk6DUcIRGwib9XNyib249pKLVoJ4Tss+zqWX3fEpBxIVTk3Tq2BAXAd5OHKMLL0+ytjD1HJsyuIuWkIhp0PzxUfpi9gS9Pzne0fbBcxPCDieizEovJDv+99HUM/Tx8wl+LX2Maa3hOTk8SO8+G6exgRDff3E02tH++sSI57mpkUjH/hS7Fpg/HqNXxobo+zsl2qjWSRVT8Xg+ch+yUXREiHCmk2obrgkL6VhHySKwAkbtSQPrREIGXSps+T7Ht0WOSoTD3PgIv6dffAmBqY9ShAPu6XeaHSqkfbEYPS1wb8chyJAKweLrzi32hvfYFIO7lyEVMjcRk3qnowJ9mJO4dGDKTj47PkxB4Sxb/DKreAp5GotbRjRkSq0iERIcazjAKl4IhSAFCcLaOAis4uXBhEKSLLkLKkmP7FkoZGooQkFFySLxweBNK4cTUQUh3a6PSqOl1eYHLxdsqhwswy0+X7E8j/vz4Y7wHL9gwYtQfh7x4qRr7l68WRSOfLG2x5/bRed0i1CI1bJJldOuuFO09ujzf2+xgsM234eoy+Vd+vLK7Y7iA1IgVWpN8dQMex0cMdXMjtFFSrO6WeX7EHPxZoH/RCBK6xQiSo2m8P9CixRqeiWbc8kxX/kZsoZ3WFVFB0vFIgWrTrOjerEEYpLMRa6yRV04UMPiVmPTaTamH6e8ChNCIevs4HnSBwknfuW9Jv8BeKhepD3rKkKgGgtexw276VXnHUpsULws4ul+/3L5+6CwUfWOT55CHO8TJFbuew+upxC44NXNCgWF/8rVx+tNhDSyYwR0gqObAosn+HUD1obMGkAakWCVHwtlXsXQAXXc/1lEB3i6O5fUix0r97el1gCH5lroiM4Uu7a9+1gEwDXWNYrTcDru63jhK2n8idVgVTshmpJWU22a3mVJ5qX9fO0wfGe/397epOs7lt/DWfSOdsQQbCej/nMriPh644Hv443M7zeUhgnzXFbNcIN5fW27xrdfjQ/7DrCYTn4t4aAsBJzeLy7He1xpqbHp+Nu9LfpbI4ZpvbHC4kOq0H7L1Jv6F+IE1qKuu2cWuZ7v5lONdqEbFfOIsoVgAccrHeZepdh2LkyGkWVvRT8jTdCBH+6U+TZKNUjVURdrJ4xhiu6vC3S61mzyJ0QsZFhU512hEINyBv+IxqRl6mfqjZSZnZ/5hSlaon7FsJey6ZfW2nHECi+yvznqO+wcWRX0vR0Qs+lUierhdF9ZhlnC+TKI7x5szyxfnabB0AL/8oaC9sWQvcZ6nDXIyH735syv7pZH8wWqIBIXdlUAAAAASUVORK5CYII=) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part .part .icon.exit.c-2[data-v-913468bd] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAATpSURBVHgB1ZpfTBxFHMe/C7RH+WMvoUKDjb1rDEdi4c4GAgmNBZpoY5XjQaO81JA05nwRfDR9oDyIj5xP5aFG2oc2vIGNShv50xrkUIxXrhpoDJyJVqkQMQjlSuk6v6VL72B2b2e40r1PcrC7M3M33/3N/H4zv10Fmwi8jlpFhV9V0QgFLtgI1q+wqiCMXWjv6kU0oUw/aG2Ec+UBzkJFC9IAFQjuWUJ7cBgLdK4JIRGxVQyxQh/SCLKQYxl1JCaDLpAl0k0EwYaZ714u2uhYCTSyebCKGaQzCuqymIg2PAEKilw41fo5DhzyISfXidFvuvHlpXbM340i1Shr8Cvvn8RPqR5WJOLDT4ZQUOhKuD4/G0XnR3WpF6MimllRgi5I4MjOxZGaN3Hi7TMoOuDBrz9/u1H21nudKCmr3dImJ8+pWSg0cGHjmv/dDlQeewcORx7u/HYLUihwZkGCYlcZ6htakO8s1M7dnuqEcm91o2FbEpLwXQcPa/8rapvg8dVjsO9TKUEZgvXZ3WuC/9THGyJ40JyQKct3Fq1b6OUmiCJkEbKCx3ccTxqyzu49ORi5+pnlNpYtslMidMqr/NpvWsWSEBpOOylCh37T6jBLKsTjPY6KY+JjNlXQMNMdghmmQmhCVz5FETr1/hbmnnNN65gK8VY1mHqnnYK8WRnrixkZxo0LkzbeScqrG0ytYiiE5oadoJWE2Y01FFJqMyEEWcUIrhBagthhbmyGrGLkwbhCCorcsCsF+w9xr3OFPMcsYleELPLMXvsNK51nRSySt835sby0IFVmhd3ZfBfMFeLINo+iPOKdw+/TYcN6N0d7uW2s4hARIkPxwcfz6mKwmXvnaatL+3Zem+3CFRJbWYIopd76jWPqcMcHL2F0oFs7J1G3I8Nb9uveavGVg1HfuBur+6yy6PCi2EORNzL2hXZOYi52NmsfHuWsroybX1yY5V7nWmRuVi7NdfTV05bWZx5mvRpWVwYhi8z9Nc0SClWQgcTs2+/GxNgVzLPviYesVl71xpZkhQhGiYksfuUI+yu/D6F1Gn1oGCwu/K1dIw+VimXPnWiEe50vJHpLM6GMG46H9hH0SRV0Y4wsYuh+Jx5NWjvxR9Q432UoJGJDIePXLxuWGQqhoTURso+YyfAAFv+9a1huGtnHb1yWCo7xkAec2+S9RKG5YWYNgpLYZ40K1x6sYvm/f+AulXOXg31B3PjqHH75sV8Lss+/cAQyjFw9nzQfnHStNXVzUGqITU+GtLY65DzW3boYE6G+hO8xwtKiceTaeeFO3I9tHZKxlWWIQAF15Jq1/K/l1W9/TwdmpkJWq2vROz4A0vE+gbUViei7cMZyfSVwkp70WqfmldOm2Yx4aJLOTI1px5ReshpgaThZtYSOsBC9U5RKTXWmhTzkD8OXEPn+CkSREkLk7y1MaZae4sR3zDvFYnLuXgm8xh5Nb+NVDV2QTC5sPeiueyWzYJcMVUWYnup2MpO0IgUUuw5r21daxpNAWjDq84I6TbFkbpYFyD+ntbgg/fBzMyq6FXqJhh0MIZ1Zgztz/DailSWgJ5Tyu52niPIQwa5+9GhxxLEL7QoQRpqhvVRzD1paJpP+hCaxcvRF9Kw9RDbSxDJkCSaiOeE1p3gCJ5gHy0CbosBnuzeGVESZFSjD13vua1yPL/ofH1a06mwxDBQAAAAASUVORK5CYII=) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part .part .icon.exit.c-3[data-v-913468bd] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAS9SURBVHgB1ZrNbxtFGMbfWX+kTuPUGxKSVgpyaCUaDtQScCpIyQWQOLTwD9Ab3IATEpfSAwhO7ZlecuRUcoZDwiE9gRrKoa3UNIaiYBOnduOPJPbuTudZx6mdzq5nx266/klOdmdm1/PMO+/MO+NhdIhGeXPOYMYFcugiZzxNIYIRW+WMVhsR40oiYWY78/bhvJiyKvY3IuFzGgAYY9eMhnGFmWbJvccfiHCqzhLnPEMDBCxkWMY8xBhIgCUGTQTgxDNOzLmMa8Z3imnbstdpgBGC5qOO3VTUb0qbOVr88XvK/bNGu7UKZd59n+Y+ukSpiSnqNwY3LjC7vHULJqI+AhEL331JpUKuIz01PkWXvr7afzGcsoauCMeq0/bGn7Rx6yd6dH+5I2/554VnRACkLV7/oSNt894vlLt9w32XNozSUdJgr5yj4vpNsutV936n9LAj/+4fK57P5v6+33FfL+fd/+WN21QrrJE5c56GkpMUFCNgebflCvd+PRAhAz6hk4d3FoSFdKwTyCLF7IpotQf0vIF1uF2nE9NvKz+jbJGjEtGikr8rvvOmcnklITD1UYpoAZ9R7WZdhVTFy2DqFwW+e29/QPDDV4i1VxEv6mFY7BPF9RXXZ/zwFVL5/47v6HRUoA7l/B3fMp5CYI2qcLiwgLr4WcVTSG1rjcKEI0T4WcVbSCFcQoBfD5EKQQgSBt84DKziNYJJhdRrRQorjdojabpcSDlHYaUexCJWCLtVi/qOvLdIhdh7vQk5NjyilacCt+RDsFRIt1lUBuadFlOvnPEsd/bNd6TPqOLYAYToUK887bsXP/1K2vJY4s59/MnBvUoMpYpUCIvEKSjt8w7W5p99e11sOHzg3kNUejbTXK+PP12vIwQKiuFRN2aVC/xwYu6vG1p+cmL6LRqZnFUqi1l6++HvFJT48BhNvP7hM+lSi8QSJunwWFSsku/eylga6IgALBKTpkuXujGherf0L+kAMZi0YBm8px1EDBCq+24Q99iYkAoZSk5RmfQXU7WtB+4nEj9OkaGm09v1Ss/DeqtuMjyETLoOrzMMt4N4rZ8xW1Q0itdWkefwOzJ5lsJG3Ge/y0eI2uhzlIyeOueZ5ykE4/XxEIkZHj/t+pwXvjP76Kk3tCbHdmLDpvvpBfiGnzXcMn6ZsEpKTHJBNsraMdPnRUu+6l5j2H2sOXckRYP6WQN0jbVgUp0ulkhNH4gA8DmdzWk8N/zS6a7llIJGWCVoJWRd0mtW9gLhCMIeFZSj37Ezc3RMtLIqu+KnhvYwHdeNAEtoiBh/7T3l8tKg0Y+S6OfVvFrUin6d2BdfFdtL3G4oPYfupGqJFoGFAOx5YU9WZ2HkhxGN0+jJc8Ing0/GWkIAQo/mLn1/9r8wqKTE7yFB/agFs7e31ns5qtEShN2NoBaCBUZenu062XWDEV+FkKtCyBfUB7B0RagOp3ajXSHS2d8sQKUN0drRxJjryIibdIZjKZwWGA7RMGJLNMA0rMaMEUtOLDPOrtGAgronzJPZ5qGaYjHlRJ2lfh8ceN7ANwyrMs/MmeahGvd0DU7ZDJBlUNeWCPf+cAFe/C/tRGKXibFM2CwkKp8VW3SLBosusqT5W3veE9lIJubPmI0yAAAAAElFTkSuQmCC) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part .part .icon.exit.c-4[data-v-913468bd] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAATFSURBVHgB1ZpLaBtHGMe/lV9xiYxR06JYbqu2atyUmGweOM6hyAanBFpI01PQqWla6CFgHdqz415zcWkOKaV1T4JcGuO2YNqAY0JbVzSxigt5OCSGIieQWATLRHEe2sx/lHVW9s5qZqw4qx+sWO3MSPOfb+b7ZmbHoBWYnyZ7iKwDVKQPyaAo+QmLMqxOGWowBjMnh2adSYZ9YyaTrZSnYyx3P9UCBg3RQybox6E7pa/0RMSiNc4Um1RLwEJFoxdiAvwBLFFrIoDB6lxvDfBb8/NklB5Y16mWMYzeeiZigJ4BbZtCNHg4QR2vRCj4QjON/pGmb0fHaG4+R1WnaB2oC+/oPsZMFKYqAhHffXmUi2hqaODPOl6NUO+OTjo7NU35QoGqTLguvLP7JGnQ3NREfbtNOvL+exQNv0xTM9eW0744dJB2d8RWlYFlIOjnP9PLz45+9AHt79pFzRsa6Wr2BmlhUGs9aRCLbKbEvh4KBTfy751vRMvSe81OYVlYaeVvAYjperuDUmfOagkKKOan/Xt28Va0RbiBltdJC7VsLFloz05SRckiiX1x1mpb6FnDu1pjI50+NyldRtoi6yXCJs66Z6IvLp1fSgi603qKsOnaukW6m1UUwn+sS73PVgt0M9sheOEpJNQS5NZ43iT6epi7b/TM4ykkbm7z9E7rBbxZfPs2zzwBceFgxcLrCQa/l1WEQp7H4PYCIrwaVizkHX8JAXGPGYOrEHgJP4yNlcAqIg/mKiSy6UXyK6K6uVukvY38SqxdwSJwd35FySKhYJDWQv5uQStNBqyD3Ai4Z/aOom44xV/+PyvMN85WiMtlWtQbTFQ35fWIiFjk6Wp5YDjl2vJzt3N83f60TOU5lCyuQgpL90kVZ9xBhQ99dZxGnyxpIeqfy1fps+MnyjYfMAVSRVQ314VV4f6ScveKRdp4xSYy//HvEDPwQ4pfbiCvjpvPLSy4Pne1SPaW3pbNwXf3SrUylgbIq4OSRbK35tmGwmukAyqIloZlsrfny9IwJiB05WaFCqKNiXr3zHPsU38xhRbHlVtYpFy+1BXgodbq1kt1UxJyg5tQxw07QWCtZnDNLeSFQoTu1x60fsJrv0ss5N9p8htjf58XpgmFoGv5ySrpi1fYeFsUpntG9rH0ea3g6AQeENdawNjwsgbw3GmEiNPn/lLaKHOS+n2C0peu8Hu4Xd3YARFe1gAV51owqU4Xm742uywC4Dd0NqdRLn1ppmI+qUkjrKJaicK91V1StZsioOK/ZZCe/X7/62+8lWXpfDNaFgARECMvyc+tIOLET79I5zfMI/0WKSA7nwKI7LZ4RHrZAIvuJGsJG2UhpUq9xbdSqzHlcFJYWmID+wKLYepjUuuNVfriDB8z/C3T1ursf8GpwAq67t4wP+m/vpajGphL8R3z9s3KFoIFuFeqEOwqYlEGFhlhV5I0wThInZng95im48KghiiItDcLUGm0NgYxAiQsqv3yczUZgx+isaxxqmUeGa/X3bwwOcvetbey7tVNtYhFQ5nhr0+V4kjRGOQHVGqN0qGaQdzW4eNmZvJeePveU8wqG2rGMswSTMThsmNOTsyPk1EK8PMpJj994ycsmmWfI4ZVHJka/mbCmfQYfzS3Zfn/FkgAAAAASUVORK5CYII=) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part .part .icon.exit.c-5[data-v-913468bd] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAASMSURBVHgB1Zo7bBNJGMe/WSfS5SykW0skypnC4dEdpxRHThRc4rvoJJrLkeZOSnMFzRW5RxpSgIKFkKgCIpFoKGhA0PCoQDTEUEAMEpGACpO4wEQx4KAEYyRsD/ufsGgNM5PdiRPWP8nJrnd2Pf/5HvPt7DL6hPnny30Riw1wqv1OnCUoTDCaYcRmqlYk1Wm35eoPfWBukX8Trb4+zIn+pSaAMXaiZL1Lddn2K7GPPxDxda10gzjvpmbCsdAbq5KEGAv7sETTiQCcuqO11jFssvnFcsKqVuaoialxSrZEatUxTo1nYaFA48dP0uxsjkqlEvX3J2lo6E/qaG+nRhOx+AArvFy+zx0TUQOBiAOjh6hQKNR939HRTseOHVkHMTxnmYool8t09ep1Gh09SKdPn6k7dvbs+c9EAGGl8Ym67yYmTlEqdVRcyxyWaCEDHj9+QufOnadicVHsP3jwsO747TsZ5bmzs/XhmM0+Ef+vXbtOmcxd4X7bt2+joFgB24uRm5w89VGEDMSEyTFcExYysU4gi8BlMpl7tN7AOnDdwcEB3+f4tshGiXBJp285v3nBd3tfQmDqjRThgpjx62arCpmevitM/aXAb7sJQYdWSLFY/KIiXODWiBkdWiFTU7e02WmjQB/QFx2W+uSiCLiwgL7orKIUMj298cGtAyJ0VlEKQcYIGzoPkQpBCRKG2PgUWEWVwaRC8vlnFFaePpX3TSokm81SWAlkkTC6lYvKW9ZFSDQaNTrmB1UKtoI01uEVv3VrQtlu9+4fPecUKSiBhJiATOcy8v8/0pHHre7Q0B/Sc9aKVEhbWxsFxTvvoMOTE+PU/8vPYh+ivt/53Wf36yaVg6pvLfLGXwV2L2QTzLx9fXvEPsSMjAyLjwy0NUnzsVhM+r3UIvH4t2TCpUtXVi3uAMoftDUBgyxDapF4PO4sKDwiE9DBfD5Pvb0/0ZYt9QOCmEinbxpfG6gWJqRCduzY5tyHkDG4m8QnFrM/ugIyVCPmJ/RNhlQIVCOoTNKwF3S8kZMrBkVlEWX67e3dQ2FDt96lFOJmnzCxd++vymNKIXCtMFmlp2eXiDkV2pkdI2AyOXpBKjdN5y6IDZ01gHalESIGB38LtFDmBeu4PT0/iG3M4hcvms0dEKGzBli11oJJTVxsp1OSuCIArmGyOI1Y9V5Hha+iEWuwQTshc0nVrKwCE/O+ff7Wf31Xv/v3/yVG2S941OAt07EdpLaCiOHhv323ZwsvlgM9eYOf+61a4deueFTH5fJbX+fBnfxawiWwkJVO3ROLyyY3Rjrgjghsk5g0EgJQeqys0jdm/QtJBbEYNI5c2MLLpbm1vKrhCsL9SFALwQIrWWnXqulVC6cZ56nu0nHO2X/UACAGpTqC2q123cITncZoI4hR3iMLmqRjOfwMw0s0FqMb1MTU3lW6rM7Nm6YY4yeoSUHfOzvtnJhHWq1qijGaoWbDiY3SUjWFTSHEtu1XrVYl2UyWQV/fvK4ku7o8rzl5mZ9fTFitkTGnZTc1+NWONcN4jtfocqSFXd5sb0p7D70HH1kLZciGYOcAAAAASUVORK5CYII=) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part .part .icon.download[data-v-913468bd] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAP0SURBVHgB3ZpLTxNRGIbfmV6xlKtcYoIUE2GnsFAjCYSS4M7QRJcu3Su/APkF8APc6YKFxC7cmUiEqFEXVGPigkQoEiMXoVxa6HU835A2TefS6ZxDnPokJDOcwzDv+a5nZiRUEFleHYMLk1CUCCCF4CiUGCDHILtmorf71stHpOJBZGWtBan8Ezb5EeoBBXPIHs9Ew0MJOlWFqCJOcotscBB1BbNQJhkmMW71XLUEBpVCAfWEJMuD8DROs8MpKfJhLYRCbo0GRAnxyzK6Gjzo8nvgk8+8N11QsHWSRTyVhiiYkLODAsJuFPLTEERvwIf+Rj+utwZKAvT4mkhheecIiWwOQnApk8y1FO64IAuMdjbhRlvA0vxrLRfUn09/jvF66wDcKIhQjHAJafG4cb+nTXWjWrnZ3ojLAS8Wfu5zWkcKyeCALPEgdNGWiCLdfi/u9bSauqIVuIRMdDej2eMCLyRmtKMJPNgWQoFNfi4KcrPeCz7YxbaQkY4gRMNzTVtCKMB5Vs8IsrJdV7UlhDLNedEf9MMONQuhVeMNTDNutQdtZUG3lUnkSlTsqlVsEZBrPbzSiYNsHvFk2nIHUFXIne4WyxVbJCSo2AEsbx9haffQdL6pa9291PpPRFQy0hlU78UMQyFkCZF1ghe6l4muZsNxXSEDTQ2OsEQlZkVTN0ZEiKBApYAtp9nr4q4/VDTjce2eRiNERLFb2j7E8u4RjG6EJ30Xi2blImlci3Z2PKgp00AEQemUd5dIYirRCOn0WSothlSulO6cTPU5Zui1MVxtvJPQCEnnFTid07z2IYlGyFY6C6ezdaq9R1lvkpOtksjksJHKaH6vEUJm+7h3BKdilPF0g/3zXlJV7jTonih966ErhKyysLkPp/Fic88wvRum39+nGTyP7zrCMrSwz9Z3dIO8iGkdoSpNYr4kkrDKSb56sTut4Rkz3cPTH9u6AV5O1TJOpnz1K6H65kCwQW0PfC79XSJlO4qvatCjUrPtLF2HBNAC0sNvK0iRd6ulmXX4WqF0/N+0KHwdIqOPuVrAzf/Y9NtBCjxwCSERs0O9EMHUShxrSfvtPZdr0T+e39gFL3QNHhEEd4zMb+xxiaG/pWvwIiTY7YoRJYIQlrVqFSNSBCE0/VoVI1oEwYQo6xBINTHnIQKKEpMhSVEIxkjMuYggJMQk9SMaGYt0LrpFGe9qwjh7bZ3Msc0a66/ebB9CJKUWJZPrO/sW5f3qLHtX/bguey1JmYsO90+dVfa0ewbe3Jj6bUddocSQTs7QkWqbaLgvgYw7zHxtDvUCs0TxyyD1tHI8svg9BK9rmg2RdRxmIZZhJUQlSNGXw1fflo/8BVRAoS12y0RaAAAAAElFTkSuQmCC) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part .part .icon.download.c-2[data-v-913468bd] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAQdSURBVHgB1ZpLSFRRGMf/V42pJBJ60oMcIRUqnUAzSHC0hYWl0ya0RRi1sEVoW12oUNIuo0UFtUjIV5tRJHVhqSBkCo7pwlz4oBQVBUtMR9PpfJdmGGfudWbOOdKdH+jcuXfmzv2d73znO/ehwIeia7AqLuS5XLBBQSwMBDsuh0uBA7tQ+dKOiS3b3AslNsSs/kEFXChGGOACqvcso7K6E4v0XhUhCec6PrGNFoQRFCHTb2SSTAStoEiQBOtOCKs/BZaVaJSrUkU2lgfrGKc3tFEGpt3ROHg0DgeOmNVlwrm6jIWZcUxNDkEWijsxFGRGMYlySOJ47DmYE9KQkHzZI6DFyGAH+rrqsLQ4BxkoG8hT7udgwJ0bvBGhg07NKEBSWm5I3xvsbUJP+xvw4omICxNKUQ48h88jsi/mMK7eLFW7Eg/zM2Nobaziio5HhBEBASgStttV3BIEfZcawmSKhghCIpey76kREYVkUqz5EIFbhBI7kSW1LJLT8nDs1Fnwwi1CyS0bkX1yiVB3Emk9PSjKvF2VS+T4qXPYKcwJF8FDyCLUajvRrdwkpV3nGgWDqiMU7mRW7AJVbJn8WpzF9OTwtjMA7zoSUCSdDbGhVmzZ9HXWoa+7zm990AUxK7f4v0sQqdYC9Vi2Q1eEIpFokVcnRKFjuZR9V3e7pkhc4kVDRMKX7YpmlNZKGRJTE0NY+rk1SWnQEB26acRsqinzW+8nIqPYfemsRX93vea2lIx8XMi4BV7cRdN3JPPrWoeO8M9kCYqEngTR31UvfJaoFVU/kQNHzRDBtztpfkbwzFBrGiM0jTcSfiJ0kcDoaB2jn8j87BiMDp0e++InQpdsjBwV9xzMF82u9bW3GUZlemJYc71mspOIrGtOMqFo0GxYC00RisqHxscwGq0NVbrDu+7wS7liryk1RGSoYe1vS7EwO677mW3rCPVH2sGIowPBsrYSeKBYC2EwoZlC46tizQT3Jugrjfv2H4aZzYqPxZ7VPUuklutpex2wutO+smz65xe0H2rEb6wBnU596ZDOEI2MtEumRiIKgpyIs2BvdAxEGR3qhAhCIieZRNnzAcjg0YPz+DHmAC9CXes7++GWdxUQhfYhIkFEpsSzO7kCjA51qa/xSVbwQBIttZXgwTvZhUUIXhkRCUK6CBGqjKgEsSMiRLAyMiSIrSKnUchu74qPn/8IJCNLgnCLsELuiEyNV5834buWr4OejEwJwi3CXtoiUxLgZMuFkAzJLMxNqsWShun290/wsfkZZOLpWpu4oS6ye+1P2TSrJBznWsomql+04qFa2U27UOlch5XFKPweqlmB2lcj6d/nEaymn0HDxiZ2Q3K+7BQUCSZxZ8tjTt4UXWHJH4FyFjaL4R57okc1XLCzJTvrTl3em/4CaBvnkK22/kwAAAAASUVORK5CYII=) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part .part .icon.download.c-3[data-v-913468bd] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAQESURBVHgB1ZrLbtNAFIb/cS4lbQKEiNIiLqXlUhaFSrADFSohIbGhvADsYAm8ABfxALDmKbpFQqq4CDYgAmxA3ApFtLS0CY3TECf2MMclqMR2LjNT4XyLKvEk7nw+c+bMOGaoo1JYOGkw4ywcTHDGBxAiGFiWM2QrEeNmIpGe/rftD5znNldN+4Y4cBkdAGPsjlExbrJ0Ou++pz8k4RSdKc75KDoIipBRNcZJJkoH/kRi1HEcdBKGYYw6Mee6eHmV8VJuwK7an6hBlwivWrBKOVRKS+B2xT3GIjHEElvQldoGXQiR1f8HPh51bNdIC+XCd5TzX7Gy9OGvgB+JLYNI9Y8g0pWEDgxunGV2YfGFMHJzQzYiFIHl2VdYWXjb1vd6tg5j484jkKUWERGSaVYt/OC1BhkRu2wi9/GhGEY5yBBLpJEeHJOKzl8Reg0FKBKL7+5LSxD0XboQ3LaggpLIz6/PYVtFqEIyhW+voYK0CCV2aekjdFFceANLnFMWaRFTJLduCrPyUZESoQS3zHnoxjK/Sw9VKZGyKT8EmvErPwMZ2hah3DBn1RKzEcX5N6istD8LtlRHaCgV5982rdg6icR7EE9ua7gCWFtHmor8nHnWdsXWTbLvEFLbRzzHWy6I+emn/12CMOdeuX1pRKAIRUJnnVCF+rI88zyw3VekJGaOMESinkZFM+p3cEXMHKrExb6DEnYttiXqT0Gt/lDRzPjsaTwiOopdqv8Qkv0jvm20IlCp4LWiWX+RPEPLUljJEhSJIAkiKSTjyV6oUPYZXh6RqqJI/ZXy/YzizpCGaD1Ky/gw4RFhkTjCjuHTR49IXGw9w06s29tHj0hUfCjMUYnEk+4arB6PCIWtp/cAwko85T/j+SZ7T++wax42qE9Uo/zwFaGo0C2asJEeGguc3gOnX0qozL5ToYgM5Wxm/yn3HlgQDesIVWk6QSIziFYxWpgo6D5wq1Afth4845vg/5yz1TuNtL6h/TTt14NuptGV27TjaNPqTufKf34S2E7n6RId784MNZRua4cYZrTdMg0TUSgy9/k9yiUTquweVvuxTElk7st73L12CTq4eOsu+nYNQRalodW3ay/GJi5AlRPnLihJEMo5cvLceSUZkjgxcR6qaEl2WRldEoS2WatdGZ0ShNbpt1UZ3RKEwTibhkaayayHBAPPUkQmoZkgmfWQIDhnWUYP0TCwKTqge4ny8vE9ZB/dw4buJIaPHMPh46ehk9oSpVKt7HGfRbGXF29zxq904lpLpMadyMbM1dWHanK5zU7Umao9ONApuLlRNcdZek/ejQ09XeM+ZSPs0CFQX2sS7vv6D/Dc7IATiV0HY6Nhi9DqDOtMGiw6yVLpB2vbfgMi5brn4zdizwAAAABJRU5ErkJggg==) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part .part .icon.download.c-4[data-v-913468bd] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAQYSURBVHgB1ZpNSBRhGMf/r24fRhthBdYaLX0XLU0Zth5qDSqEgrJTeLLs0CFwu3RNr3XIyEMd+jhFHbIPrJYSwjqkkrpgFJqQUKtBuoQKthY7vc/o6rozs+6+7yvN/kAdZ2Zn57fP+zzPO7PDkIJ2LlgO6CcQx0kweOEkdIT5OYWxiNWHbzYMJG9iiQUtGFyJMdTxvWuRCzA04C8Xutfwa+pfTEuM62+4sYZcgiIUZ4dIJs9YQZEgCV1HTv0wfs4u/TIpMO180Is/+tcpQx0qKFiyBJ41hfCsXsWXFxvrJmKTiAyPoP/7EJTBWOLvIReXuAxFbC5eC99GL0p3bJ0RsKLjUx9C7V2Ijo1BCXH9BNPO1nYbISIEI0IRqNi/FwFtV1ava+3uweN3bRAmEREdA64ZCUEKV7hRc+yoMZSyJbDHx6O4DrebX8tFh7eJPEhAkbhw6riQRALPmlWoOX4k7VDMBCmRyoN+HpHlkIVkKkr3QgZhEUpsSmpVGMPMsxaiCItU7C+BaqhgiCIkQgku8+nZQYlf6HZDBCGRhZBI4Nu0ASJkLUK5sRDDKkFA8xnJny1Mq6md7YI2DZGGEjW7+Tq2SqKj43w6M5h+BsDY7OJ8IpUHy7Lu2KoJtXcaQiaSRNIOraojgf8uQdBQrjocSLuPrQhFQmWfkKV051ZUHvDbbrcUocrhhEikkq5puixfwCuHLJSolLDJGP2nWK50U9NsbHpuWm8SUdHsQm08OTu6rE+ktAQVfvEOnmiaqZXMNLQ8q8VnsoRRMm0kiFBHp/RV4ubiItM6s4hAM0omdThZ7iN5ZUijJhWpabyTMInQTQKnY3WOJpHIzxE4HatzNIvwWzZOjkp0dAz9EXOxsBxareGPcCp2Fc8y2VvDPYa506BzogmkFZYiFBW6ReM0bje/4qXburzbll/KlcZHzY6IzEQsZpxLZDhqu0/aPkJJ1djUjI7Pfcj4TSfnLxTZFBOaKVy932SZ4MlkdIVI0P0r38YNfB62zrgxZ32CMTx++942/MnHqjpcbrudjtMfGeQf4Jf00tlcITqaTK8QcwkXJNm23gP3sgLI8qG3HzJIiZDEg7pLUMHpuivo/RaBKFJDi9745tOXkIWOISNBSOfIrWchKRl6LR1DFiXJLiqjSoJQVrWylVEpQSgtv5nKqJYg8ov2+Kv5d3AroYjO6TK6b/sWy+1KJWa/DA2TiJeL+KEQOxnlkZjt7KH8opKyGF+ohmJIZmgkCndBgVFa775owf2WViglIRJnlVPPopytvcajEszJuZaOhvCd6xenOnuc1SNPL+cbcvGhmnpazKdfP8Jtv4t2lz3kUVmqOl8WDB4JLnFmzmNOyWjVQS+PDj2fosk+FaEcHQP89xOmx590370xJ+H+AViE5tQnmMIXAAAAAElFTkSuQmCC) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part .part .icon.download.c-5[data-v-913468bd] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAPqSURBVHgB1ZrNTxNBGId/sy2JlWjcGk20F1p6MyYctGqiYmPUnkQuGnox0YuJRCTBM/IHGNFo4kUTL6gn0FNFtClwAhJJ0Fv5uCARhRL5MqHsuO8KCGW3HzND3D4J0O1+MM++874zO1mGHKZ+zJ/zaKyOw7gCzqrgJhiGGdjwquZpO6T7JrbuWmM8w/dVri7c50ATygDGWPuittIW1PU5a5t+kcRuYzEJzmtQTpgRWtKyUZLx0vZaJGoMw0A5oWlaTaVR0Wp+bGZTmeUqbTU7TjtUiSwvL2Ny8pv5M2l+/m195/PtQiAQQDhcDVWYItZfgyPq9RirrRxqSKdHMTLyFQODgxsCdkSOH0MsdgF+vx8q8Gi8jk3PzH/mHFZuiEaEIpBIdCPV21/SebVnz6C+/jJEWY8IwCfY95/zGwEREZmdncXzFy+triRCIHAYN29cF4rOPxHzMySgSDx5+kxYgqBz6UbQtWSQEunsfGdGJANZSCaR+AAZhEUosQcGh6CKVG+fdU1RhEUouVWTeC8eFSERSvD06BhUQxER7apCIjJdoBAjI18gQskiJCHTBQpBuSJSBYsaR6grpVL9BUdslfj9OsLV1XlnAJvHkYIinZ1vSx6xVRO7dNESyqVokY6ON0pLrAyRyDHEG65t+a6okZ0i4RYJYmBgyBqAnbAVocrxv7uTHfkGTa/tCak+yELPHZSwm7HGn7Tc+EMVs9HmmWabiIrBLhYzk/PSBYeGdEvNq9YHzdybtK1rycxkCYqEkwRBFSgcDkEGu+6lXMSv60UcI/dkSL0mF6lpvJvYJuLz+eB27Nq4TYQePd2OXRttRdwcFZp32S0p2Xat2rOn4VacKp5tstfWnlG25qQSahOVbztsRSgqtETjNv4uG9mXd8fyS7nSePuWKyJDN5bakq8Q5R1HKKnoAjSFLuWfFj5mF4qF2nCvpbngmnHRK400v6FZcXp01HExjSTqr9Q5hn/ztTpevXbcT9ehp8NI5Hhe6ZKeEN2MsiVTN+GFJGNj41hcXIIsR48egQxSIiRxp6kFKnj86AFCoSqIItW1QqEg4vGrkCUevyYlQUjnCK1syMiQRLxB/mYoSXZRGVUShLKqVaqMSglCafktVka1BKGB8QkopJDMTkiAY1hjQBcU4ySzIxIE48OMXqIxbZK0rXqK0tOTxMdPSVRW7sapkydw/nwUKtl4YWAlG7TeRZme+fWQc3a3HOdajPH2g/v3NlsimUxm34rhTa6/OFA2mLmxtJCNBoP6nBUbXdfnKrRslOxQJlBb1yWs7dwDpqYyVVqFp9U8sgZui5BZYbmBLo+XdR3Q96Q27/oDnIW6deCxpdIAAAAASUVORK5CYII=) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part .part .icon.company[data-v-913468bd] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAKwSURBVHgB7ZpNbxJBGMf/swttKW0h1FJfokIiB9Me6kGNJiYuB2+1ezHevVc/AhIvHjl48uDFkyfXLyC+xJieRC+a1AjGS0ttA1peFljGWRoUUabCrrBD+R3IDM/M7P73eebZ2ckQtKG+XL8MGSugVAVICI6CpgApBUmOaxfCmVYLaRbUN2k/isZt1vgWRIAigepuXFPO5MxqQ0hDRKmWZMYlCAXzUKWgmGKkRt30hHAiTMgS3FOxRkl9nQ6hXktDZOpQJNSNGERHpisstKiAIdUGhWrOEfGFgIRcsEh0bhrXT8wiON7bUIVaHU+z3/Ag8xVWsCQkOO7GamQeVvC6JCwf9aNg1PHoyw56RYIFlOA07CJqcSzLodVkbbvAwmOrqz4LvkncPBWEHdgmpGAYyOq1rvoE9SrswlJoOYl/8sjyET9C3rE//g97x3+WF2c8WO0yTLwu+VdZlv/a3/RykmW1/bxN1FfrtPOFJNxZOPbbDQ+CbLmKux82kC7qHdtwQys6NzNwESbBCTduhA9x23CFnJv1wiks+jxc+9BM9pEQpzE0QrjpVyQOxpt9ni3TJ+TutW6UK9DrtK/jcoVcOezDyckxdMu9j5vsgkZH+7XjAfjdMrqFN+4oazkN275HWjkb8EI3Os8Rj2z/8/svQs4HptBvRnPEaYyEOI2REKcxEjIISmx/uBNcIZtl+3YCrZKr1rgraq6QtZ1dbud+8mLrO9fOXaLkqwbuf8riKtv29/Ww7LaDfMXA23wR7/Ilbrt911qmmIeft+F0hilr0QxEh9KUBEI0iA4BE2LgCUSnYsQl7VLkGVOUgKgQmtCU05m9ya674uw3BeGgKegF8973spamhHOouBShPMM80TwZ1Ki229Xk+xDG5Fjj5I3jTkWwDEugERDt8cXI81bLDzLd2RVlPo6KAAAAAElFTkSuQmCC) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part .part .icon.company.c-2[data-v-913468bd] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAKzSURBVHgB7ZrNaxNBGMaf2ZgmNSqBSCtYIQYMgrTmoJBCD03roVgh8SAIgm0PSm5N/wCJOYhHczPowQ/wUOghPekh0noyoIdFL0WhRvBgi4EgpkmtzTrvQrFp69Rk12Sn3R8kO7szs+zD+zEzzDBsIX4Jg0xDVNMQA4MfFoJ/l6oxqHAilcmiUFe3UUjE4K3+wm1omIQEaEC6s4xUeh4luteFkIjVNczxyhAkgizkWkGExCj0gCwhmwiCu1mo4kGSyiwe43Gwhk+QGYaIwkUkITlsHVGFSehSW+EuFlNkjI1t8GHiAAzSPzyO0WtJ+Lr8aIaVcgmvc48x83AKRnCcC/Kxo0l83X5M3Z3DQY8XzeLscCNwOqyXP75/hWZRYIDw8BjMgixrBMOutYGaz2LmQaKhPqf6IhhLPIIZmCak8qOE4vLnhvr4lgowC0OuZSX+ySJD0Un0nNyepU8E/jwL9g7ieoNu0nnIW1feqX9xuYB87ol+FcHiozSR3BnKRpSVegLtHWqK3AUzdy7jy6L61zZC1+q/MN52EQSl+Ss37gnbCIX0haOwCuS6IvZMsNtCrMaeESJMvzKxP0b2o8cCcLk9aJRvXxexWi239L1CIQMjN3Hc34tGeZqeEAq5ePUWDnu7YOZ77axlNUxbj2zmLJ/aiFyro4n42I3/JCSGVmPHiNWwhVgNW4jVsIW0g5+CQVYohGabVuF7aUk4WxAKeZefFXZuJW/mnwnrd10hHvF2YyiW0K/tgCyxoOb476Wwnb3UtRoKt0cBkqNpUBXGkIXk8J1pVeFbu7OQnRpSjrcfUDgfBG1UhCEhrIZ05gWm9WB3OZEi80Ay9EM1FaSo7KC//AKqA2cwvV6DG5JYhizBRUzUHXPaTHwEfp7LkjwJhCx3KoJnWG4FSk7Z+89Rtyn/GxJ1zghB9/igAAAAAElFTkSuQmCC) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part .part .icon.company.c-3[data-v-913468bd] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAKySURBVHgB7ZrPTxNBFMe/b9oilDbpKgT0Ygke0ERtwlFJ4CQ34ObBg3dN1L8AiYmJNy5e9MLFm5oeywlESThIsifhIKHiwSJom7RF7f4Yd1prsITBsrXdqfs5tLszb2bnm/fe7E7yCDUY+Z1RRmwCNiY58Tg8BIF0TtCNAJvp6tLSf/b9gvNszCxY952GO1AAIpplBpshTcuV78WPEGEX7QXOeQIKITzETDYmxDDRIDyhmggBB0/YIXtaXBP/lo1bprUJhXEEjTHbqihSGcbZBHPkKBdStTgemSQzv8vRBgThEv11Cosv55Db3cZx6AxHkBi5hvEbt+EGV0JyOxkknzyCG77vFbAy/wKd3RGMTt3EcWFwgfBGo9CX5uEG16FVZWj4qhMet+oak36nI/nUnUerNExIZ7gbsZ7+usbEeuuzl+EqtLzEX22/K6nnyGy9P9Ce2dpA5kOlXXgjfv4y6kEk+vrqcvla7F5Dw1cO2Ih5EyPjR3pPKkQ8aO7hvd+LbRVCzPW7D9B/9tyhNtLQ0pdSLRchyO1mkHr2WGojFbK++gZeIb2mS/vbJtl9IV7j/3qPqEDbeET6rWXsfYVtlVAvHeGToEBHU+eVCsl9fItSvv4DU9/FKQQlQr5sLML6UUQj5/V3La/RsPPIfoqf16Q5YpsGGs0/EVLYXkez8XPEa/hCvIYvxGv4QlpBIHj4S1YqJBTW4BWCJyLSrwWpkGjfBengZhI9c0naf+QJ0SoVkd1cdv4LaAWBjgjCPYMInxqU2vlHXa/BiFMaikPguvBIEorDOekkimgItACFMUxjgIWivYtOeM1CUcTau7TT6UpRTTYbs4P2gqjtgEKUc8MsjJE2UCmqKVfXiCobhTwj1loVUb6vNeDZT3E7EJoGUcJrHqrssHaSUTBJUe3V/r6fUMf/O0urybAAAAAASUVORK5CYII=) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part .part .icon.company.c-4[data-v-913468bd] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAKhSURBVHgB7ZpNaBNBGIbf2dafFltKolBrlRyUeFDcgErtQRNQ8aBN9STVg9WCHoQG0XPcsx4iIiii9aY9GetBb9WDkha0CwXFXgxYa6FNESPGVNl1ZmNwte3UzabNTLvPITvZmf15+L6Z3WGH4B/UrlgYMKMw0A6CAETChE7vSccKouk3E2l7FSkW1FisAVlcpq27IQMECfykQvcSnwt/8Vviq9lPjVXIBIuQQSJMRrF2sEjIJsEg9J6rzbhVVM/FAvhhvofMEBJRqEQcsmOYUUXKlJpJu2LlmezQx0Q1XNLWuhtno4fQ5PehFLLfcuh7OYirDx7CDa5Emtb6oJ3ugBvqamtwYv8+S+hW31OUigIXHKHRKBdtLs/lOrWK9A8N44rD9Ni1dTO0TncRLVI2EZYanzJTjo4Zm3TWnoer1BKJ/4pIB+2MwY0bZuwPbvqzb2fQeZqwjm4vz3b8GI3y4xeD1pYHUc90m7wL3b50flaJxYSl4IUbd/Duw8c523BTi40klZZgsGH+4vGj3DZckXBoO0SBpS6PJdPZPRHRWDIi3OFXJpbHk715nR81q1bCKaMTGeTy04t6Xq7Isb2t2NK8Hk6J373PFek6fBD++jqU87zeqCUaZZuP2AmHtnFTq7aE/jEfCyISqcA7mtdHRMMTEQ1PRDQ8kUqQm87PWccVGZ2YhChkvmS5bwtckWf6MD04DxF4knrFrZ93huirX4OTByLWthJM0UgMvBnBwNsRbjtvqisa7GNoGrJjQmcRSUJ+qIhCHkF2DKJVjb9OpRtDLQ30E28LZMREQu+51lvo7NTIWqAiG4VFNRorVrGfcT31vXHHnl4aldXSRIZGgkp0/rXMyY56KhaAYq1PUYVbFVEYYZPENJJDPdef26t+AeUx0whl3D6cAAAAAElFTkSuQmCC) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part .part .icon.company.c-5[data-v-913468bd] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAKzSURBVHgB7ZrNTxNBGMafmdLEUkhcEiAFDpSrIeGgIBdDDZpwgptGTmJijx4lUVL7F9jEkyboqYmeKPFo1VYPoKcSOGLbA7FpNS2RLjWhu+NO/UiFMFp2bXfq/pJ2ZzvvTObZ933no1mCQ+Q+7U25KJll0OfAyDDsBEGKgKQ06gr7FE/296ofZErstFcr32PALUgAISSi0oOwX1F2a/f8i4vo1NXXYGwMMmF4aJ9WA1wM5ffcE9KJ4DCMeXV3iBdJrlQZplo1A4nRGQLUpWshSI6LslkjtCQMqUMwhjmS/7zH0AZ0wCQv4q8QjT5DoVDASfB6vZieDiB48wbMYMoj+XwB1xeCsIL5a1cxP38FJ4XCBHHDG1YRf2muL9Oh9ZPJ8xMIBhcaarOxsYX7kQewAsuEdHV1oq+vr6E2/f2N2YswFVp24q+SPRZ7jnTm6OKfTmeNz/ff+dMdHT2DRiiXVayvv6+V+ew1OTl+xKbf8PL0pYu1qwihEFVVcXtx6ddgWwV/SEt3FzEy4j/WRhhafI1otQgOn+YfPnostBEKWVt7B7uwubklrG+bZHeE2I3/ax2RgbbxiHCvtbPzEZVKBY0yNDQAj8fT1H6FQlZWVrG9/QGNEgrdEQpZXn6CYrEEK/t1Zi27Ydl5pJ5E4o0wtCqVr7CafyIkmXyLZuPkiN1whNgNR4jdcIS0Ao/n1LF1QiGDgwOwCz09PcLdglDI1NQFYeNmMjNzWVj/xxMi325Ho0+NaxGtgHtiYuIcxsfPCu2co67doCAsC9lhSFFi/NkO2SEsRTWdrEJy9AMtTH293QlCWASSwsfu8ynZWrK7qRYmBCnIhpEb6hctzIs1IYqi7LppNSCTZ/hY98vVgN9f95pTPblcaZi6XSHDcoy/fQM7YcywTEfM1UFivUp3sr7qG0Gp8EnJkIHcAAAAAElFTkSuQmCC) center no-repeat;
	background-size: 100% 100%
}

.index-wrap.no-4 .membership-list .membership-content .membership-item[data-v-913468bd] {
	background: #f6ebc5;
	color: #30636f
}

.index-wrap.no-4 .membership-list .membership-content .membership-item .vip[data-v-913468bd] {
	color: #cbcedc
}

.index-wrap .membership-list[data-v-913468bd] {
	margin-top: 24px
}

.index-wrap .membership-list .swiper-vertical[data-v-913468bd] {
	touch-action: auto
}

.index-wrap .membership-list .membership-content[data-v-913468bd] {
	max-height: 190px;
	padding-top: 20px
}

.index-wrap .membership-list .membership-content .membership-item[data-v-913468bd] {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px;
	background: var(--bg-card);
	margin-bottom: 20px;
	border-radius: var(--card-radius);
	box-shadow: var(--inner-shadow)
}

.index-wrap .membership-list .membership-content .membership-item .left[data-v-913468bd] {
	display: flex;
	align-items: center
}

.index-wrap .membership-list .membership-content .membership-item .left .vip[data-v-913468bd] {
	position: absolute;
	bottom: 8px;
	left: 8px;
	background: var(--vip-bg);
	height: 50px;
	min-width: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	border-radius: var(--card-radius);
	margin-right: 8px;
	box-shadow: var(--card-shadow)
}

.index-wrap .membership-list .membership-content .membership-item .left .name[data-v-913468bd] {
	line-height: 20px;
	font-size: 13px;
	letter-spacing: 1.2px
}

.index-wrap .membership-list .membership-content .membership-item .right[data-v-913468bd] {
	color: var(--vip-num);
	font-size: 20px;
	line-height: 20px;
	font-weight: 700
}

.index-wrap .video-part[data-v-913468bd] {
	border-radius: var(--card-radius);
	margin-top: 24px
}

.index-wrap .video-part .container-card[data-v-913468bd] {
	margin-top: 12px;
	padding: 0;
	background: transparent
}

.small-btn[data-v-ef8eb037] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.index-wrap[data-v-b484fef8] {
	position: relative;
	z-index: 1;
	padding-top: 60px;
	padding-bottom: 80px
}

.index-wrap.color-1[data-v-b484fef8] {
	--color-svg1: #FAFF00;
	--color-svg2: #4B00C6;
	--color-svg3: #F7F8F8
}

.index-wrap.color-2[data-v-b484fef8] {
	--color-svg1: #BDFF00;
	--color-svg2: #275A67;
	--color-svg3: #F7F8F8
}

.index-wrap.color-3[data-v-b484fef8] {
	--color-svg1: #FFB13B;
	--color-svg2: #6B106C;
	--color-svg3: #F7F8F8
}

.index-wrap.color-4[data-v-b484fef8] {
	--color-svg1: #FFEDAD;
	--color-svg2: #35384B;
	--color-svg3: #F7F8F8
}

.index-wrap.color-5[data-v-b484fef8] {
	--color-svg1: #00FFE0;
	--color-svg2: #001ABE;
	--color-svg3: #F7F8F8
}

.index-wrap .banner-swiper[data-v-b484fef8] {
	box-sizing: border-box;
	position: relative;
	border-radius: var(--card-radius);
	width: 100%;
	margin: 0 8px var(--mg) 0
}

.index-wrap .banner-swiper .custom-swiper[data-v-b484fef8] {
	width: 100%;
	height: 195px;
	box-sizing: border-box;
	border-radius: var(--card-radius)
}

.index-wrap .banner-swiper .custom-swiper .van-swipe[data-v-b484fef8] {
	border-radius: var(--card-radius);
	height: 195px;
	overflow: hidden
}

.index-wrap .banner-swiper .custom-swiper .van-swipe[data-v-b484fef8] .van-swipe__indicator {
	display: none
}

.index-wrap .banner-swiper .custom-swiper .van-swipe-item img[data-v-b484fef8] {
	width: 100%;
	height: 195px;
	border-radius: var(--card-radius);
	object-fit: center
}

.index-wrap .notice-info[data-v-b484fef8] {
	position: relative;
	cursor: pointer;
	width: 100%;
	height: 46px;
	margin: 24px 4px 0 0
}

.index-wrap .notice-info[data-v-b484fef8]:before {
	content: "";
	right: -4px;
	bottom: -4px
}

.index-wrap .notice-info-content[data-v-b484fef8] {
	display: flex;
	align-items: center;
	width: 100%;
	height: 46px;
	position: relative;
	z-index: 1;
	border-radius: var(--card-radius);
	border: 1px solid var(--btn-text);
	background: var(--bg-card);
	padding: 0 13px
}

.index-wrap .notice-info .volume-icon[data-v-b484fef8] {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	margin: 0 6px -14px 0
}

.index-wrap .notice-info .van-notice-bar[data-v-b484fef8] {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 36px;
	background: transparent;
	color: var(--notice-color);
	font-size: 12px;
	padding: 0
}

.index-wrap .tools-part[data-v-b484fef8] {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 20px -8px 0
}

.index-wrap .tools-part .part[data-v-b484fef8] {
	position: relative;
	z-index: 1;
	border-radius: var(--card-radius);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center
}

.index-wrap .tools-part .part .label[data-v-b484fef8] {
	font-size: 12px;
	color: var(--title-color);
	text-align: center;
	line-height: 14px;
	margin-top: 18px
}

.index-wrap .tools-part .part .icon[data-v-b484fef8] {
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--bg-card);
	border: 1px solid var(--btn-text);
	border-radius: 14px;
	display: flex;
	justify-content: center;
	align-items: center
}

.index-wrap .tools-part .part .icon[data-v-b484fef8]:before {
	content: "";
	position: absolute;
	border-radius: 14px;
	right: -5px;
	bottom: -5px
}

.index-wrap .tools-part .part .icon svg[data-v-b484fef8] {
	color: var(--primary)
}

.index-wrap .title[data-v-b484fef8] {
	font-size: 18px;
	line-height: 18px;
	color: var(--title-color);
	position: relative;
	display: flex;
	align-items: center
}

.index-wrap .video-part .container-card[data-v-b484fef8] {
	padding: 0;
	border-radius: var(--card-radius)
}

.index-wrap .membership-list[data-v-b484fef8] {
	margin-top: 31px
}

.index-wrap .membership-list .swiper-vertical[data-v-b484fef8] {
	touch-action: auto
}

.index-wrap .membership-list .membership-list-part[data-v-b484fef8] {
	position: relative;
	border: 1px solid var(--btn-text);
	background: var(--bg-card);
	border-radius: var(--card-radius);
	margin-top: var(--mg);
	margin-right: 8px
}

.index-wrap .membership-list .membership-list-part[data-v-b484fef8]:before {
	content: "";
	position: absolute;
	bottom: -8px;
	right: -8px;
	width: 100%;
	height: 100%;
	border-radius: var(--card-radius);
	background: var(--bg-weight);
	border: 1px solid var(--btn-text);
	z-index: -1
}

.index-wrap .membership-list .membership-content[data-v-b484fef8] {
	max-height: 170px;
	padding: 0 var(--mg)
}

.index-wrap .membership-list .membership-content .membership-item[data-v-b484fef8] {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
	border-bottom: 1px solid #F0F0F0
}

.index-wrap .membership-list .membership-content .membership-item .left[data-v-b484fef8] {
	display: flex;
	align-items: center
}

.index-wrap .membership-list .membership-content .membership-item .left .vip[data-v-b484fef8] {
	color: var(--btn-text4);
	background: var(--bg-weight);
	border: 1px solid var(--btn-text);
	padding: 0 6px;
	display: inline-block;
	font-size: 12px;
	border-radius: 2px 10px 10px 2px;
	margin-right: 8px;
	line-height: 18px
}

.index-wrap .membership-list .membership-content .membership-item .left .name[data-v-b484fef8] {
	line-height: 20px;
	font-size: 14px;
	letter-spacing: 1.2px
}

.index-wrap .membership-list .membership-content .membership-item .right[data-v-b484fef8] {
	font-size: 20px;
	line-height: 20px;
	font-weight: 700;
	color: var(--primary)
}

.small-btn[data-v-ca4ccf6c] {
	background: var(--primary);
	color: #000;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-52f33d2a] {
	padding-bottom: 80px
}

.home-wrap .custom-swiper[data-v-52f33d2a] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 1px solid var(--border-color);
	background: var(--bg-card)
}

.home-wrap .custom-swiper .van-swipe[data-v-52f33d2a] {
	border-radius: 4px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-52f33d2a] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-52f33d2a] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-52f33d2a] .van-swipe-item {
	border-radius: 4px
}

.home-wrap .custom-swiper .van-swipe[data-v-52f33d2a] .van-swipe-item img {
	width: 100%;
	height: 175px;
	border-radius: 4px;
	object-fit: center
}

@keyframes jump-52f33d2a {
	0% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-20px)
	}

	to {
		transform: translateY(0)
	}
}

.home-wrap .drawbox[data-v-52f33d2a] {
	animation: jump-52f33d2a 1s infinite
}

.home-wrap .drawbox2[data-v-52f33d2a] {
	animation: spinning-cog-52f33d2a 1s infinite
}

@keyframes spinning-cog-52f33d2a {
	0% {
		transform: scale(1)
	}

	20% {
		transform: scale(1.1)
	}

	to {
		transform: scale(1)
	}
}

.small-btn[data-v-c59e7249] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-7791b79f] {
	padding-bottom: 60px
}

.home-wrap .custom-swiper[data-v-7791b79f] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius)
}

.home-wrap .custom-swiper .van-swipe[data-v-7791b79f] {
	border-radius: 10px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-7791b79f] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-7791b79f] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-7791b79f] .van-swipe-item {
	border-radius: 10px
}

.home-wrap .custom-swiper .van-swipe[data-v-7791b79f] .van-swipe-item img {
	width: 100%;
	height: 200px;
	border-radius: 10px;
	object-fit: center
}

.home-wrap .slogan-banner[data-v-7791b79f] {
	background: url(./index-quan-bg-CkUO8Ku9.png) no-repeat center;
	background-size: cover;
	height: 120px;
	border-radius: 22px;
	margin-top: 16px
}

.home-wrap .customer-van-tabs[data-v-7791b79f] .van-tabs__line {
	background: var(--primary)
}

.home-wrap .tab-bar[data-v-7791b79f] {
	display: flex;
	align-items: center;
	background: linear-gradient(180deg, #ffffff1f 3%, #fff0)
}

.rich-text[data-v-7791b79f] table {
	max-width: 100% !important;
	border: 1px solid #ccc;
	margin: 10px 0
}

.rich-text[data-v-7791b79f] table th,
.rich-text[data-v-7791b79f] table td {
	border: 1px solid #ccc
}

.rich-text[data-v-7791b79f] table td {
	padding: 0 5px;
	word-break: break-all
}

.rich-text[data-v-7791b79f] p {
	font-size: 14px;
	line-height: 1.6
}

.rich-text[data-v-7791b79f] h1 {
	font-size: 32px;
	font-weight: 700
}

.rich-text[data-v-7791b79f] h2 {
	font-size: 24px;
	font-weight: 700
}

.rich-text[data-v-7791b79f] a {
	color: var(--primary);
	text-decoration: underline
}

.rich-text[data-v-7791b79f] a:hover {
	text-decoration: none
}

.rich-text[data-v-7791b79f] p>img {
	max-width: 90% !important;
	height: auto !important;
	margin: 0 auto
}

.small-btn[data-v-7a756438] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-688dc755] {
	padding: 80px 0
}

.home-wrap .custom-swiper[data-v-688dc755] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 3px solid transparent
}

.home-wrap .custom-swiper .van-swipe[data-v-688dc755] {
	border-radius: 8px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-688dc755] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-688dc755] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-688dc755] .van-swipe-item {
	border-radius: 8px
}

.home-wrap .custom-swiper .van-swipe[data-v-688dc755] .van-swipe-item img {
	width: 100%;
	height: 200px;
	border-radius: 8px;
	object-fit: center
}

.home-wrap .tools-wrap[data-v-688dc755] {
	display: flex;
	justify-content: space-between;
	margin-top: var(--mg)
}

.home-wrap .tools-wrap .tools-item[data-v-688dc755] {
	width: 33%
}

.home-wrap .tools-wrap .tools-item .icon[data-v-688dc755] {
	width: 48px;
	height: 48px;
	margin: 0 auto
}

.home-wrap .tools-wrap .tools-item .label[data-v-688dc755] {
	margin-top: 10px;
	font-size: 14px;
	text-align: center
}

.home-wrap .tools-wrap2[data-v-688dc755] {
	margin-top: var(--mg);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px
}

.home-wrap .tools-wrap2.has-invest .tools-card2[data-v-688dc755] {
	display: block !important
}

.home-wrap .tools-wrap2.has-invest .tools-card2 img[data-v-688dc755] {
	margin-right: 0;
	margin-left: 50%;
	transform: translate(-50%)
}

.home-wrap .tools-wrap2.has-invest .tools-card2 .label[data-v-688dc755] {
	text-align: center;
	margin-top: 5px
}

.home-wrap .scroll-notice[data-v-688dc755] {
	height: 38px;
	border-radius: 18px;
	opacity: 1;
	background: #ffffff21;
	box-sizing: border-box;
	border: 1px solid var(--border-color);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	padding-left: 12px
}

.activity-wrap[data-v-bef5e254] {
	background: url(./activite-bg-w9BRM5xa.png) no-repeat 216px 5.2px/84px 67.2px
}

.small-btn[data-v-ef52ac6e] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-d07e78a0] {
	padding: 80px 0
}

.home-wrap .custom-swiper[data-v-d07e78a0] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 1px solid var(--border-color);
	background: var(--bg-card)
}

.home-wrap .custom-swiper .van-swipe[data-v-d07e78a0] {
	border-radius: 4px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-d07e78a0] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-d07e78a0] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-d07e78a0] .van-swipe-item {
	border-radius: 4px
}

.home-wrap .custom-swiper .van-swipe[data-v-d07e78a0] .van-swipe-item img {
	width: 100%;
	height: 175px;
	border-radius: 4px;
	object-fit: center
}

.home-wrap .wallet-info[data-v-d07e78a0] {
	min-height: 116px;
	border-radius: 12px;
	background-color: var(--bg-card);
	padding: 20px 0 0 11.4px;
	box-sizing: border-box;
	color: var(--primary)
}

.home-wrap .wallet-info .head[data-v-d07e78a0] {
	font-size: 18px;
	margin-bottom: 8px;
	font-weight: 300
}

.home-wrap .wallet-info .body em[data-v-d07e78a0] {
	font-size: 18px;
	font-weight: 600;
	margin-right: 5px
}

.home-wrap .wallet-info .body span[data-v-d07e78a0] {
	font-size: 12px;
	color: var(--text-gray)
}

.home-wrap .wallet-info .foot[data-v-d07e78a0] {
	font-size: 13px
}

.home-wrap .wallet-bg-1[data-v-d07e78a0] {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIwAAABkCAMAAABjCSjjAAAAQlBMVEVHcEzY3dystLfp7OujrrHCy8q6wsPGz87y9POiqayxubu2vr/h5eSpsbPH0M+wuLrDzMzBysmlq66iqKu1vr7M1dNxZ1tVAAAAFnRSTlMAMzMzMzMzMzMzMzMyECwKLxIcLSUaFb1B7gAAA1tJREFUaN7t2suWgyAMAFAB8QlSrf3/Xx18lihVRGhm0ax6ZlHvCZA4pEnyi1/84he/uBlKdt3zWZbPTiI8vH29DEZpxFN+MQXtq2/4EE3X9YAxRkpp95Vk9M2Dm1FBRVVnPNfB+68kA0aW0Q1jifY7yZgZdUVpqoNuFHM8Ilh6SzI0I12D5vbgMY5rD5ORbgNgiGCsKERgzFI0hu2QbZNhwxDtKJYIhtkVDc05CgoY4TDSXjSqQ0xW7OP+BpZbyHJa+SEmj4GRtto1nYtDDPmAubNMamZYisYxhkXAdMOx+VAyrm6Z2xi9YWx1dDgq7MBSsxiYsqz2jPm7Pzjy/Zl228CqbdUJprYw5u/eMKosJx8YLpixpvfHmHnH2E4HmcsvrfkJwwHTTb2lUecYYf96JoRwUDhgZDV3uuYcU4SIA4ws6dJ32zMMiYzRpTXlp6n5DmYs89miwcVMLSf9F5il/c27psfEvFtxOqzUQyFiJHxLSs/rTDyMhC9LT5XgYa5YYmOkbibOlsgYOba2N0YlX8OwLUbO7d7REh7T7C2LRiV4GEkp0KgED6MtQKMSPMxoeWtcLNEws2XROFliYVbLrFEJHkZWFdCoBA+jLUCjEjzMaHlrnC0xMLNl1ThbImBkXQPNhYvq8L2proHmyqV5aAyva6C5dIEfGMOzGmiuDRPCYniWAc3FwUZQzGAxNVeHLCExJMuA5vLAJyBG8Axorg+fPDFsf1Hytkwaj0GYJ4YQIrYWDjQ+Qzl3DDNu2YTGkJ3F0HhZLmDM5w+fwb0aW+dAU/iNwJwxzHz+FsOMqZS/xR0jzOdvlklXO6DxHQ36YeAGHtqAqfEeU/otEzjaY7M2NP4j00sbWHx8cTA0N8a3F+oMYweWVXNn3nS3HTBjJDRE3uBhGBhQaQsmZjMuyzExZD+pwsNAhyCoGDA4EwUqRpgjRTH9/gANk5fUtIxnCw1Dh3lAbgzPEDFimgcMZ5oU2Jh8GU8Q46hjYeg0RTJalkDDME2pybbwYGGqnO2rIBbG8noj0DCWuTvDy4wlNYiYfWoEHsaSGkTMPjUECTPE/q+ImL1G/SdM858wN1IT9Pczd1MTAVPc/cc/ZwEx4i6GhEzN6yYm6Dr57uEVIwr8hVoxYVNzvlB/ncnlEPR5tsEAAAAASUVORK5CYII=);
	background-position: 100% 100%;
	background-repeat: no-repeat;
	background-size: 77px 55px
}

.home-wrap .wallet-bg-2[data-v-d07e78a0] {
	background-image: url(data:image/png;base64,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);
	background-position: 100% 100%;
	background-repeat: no-repeat;
	background-size: 77px 55px
}

@keyframes jump-d07e78a0 {
	0% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-20px)
	}

	to {
		transform: translateY(0)
	}
}

.home-wrap .drawbox[data-v-d07e78a0] {
	animation: jump-d07e78a0 1s infinite
}

.home-wrap .drawbox2[data-v-d07e78a0] {
	animation: spinning-cog-d07e78a0 1s infinite
}

@keyframes spinning-cog-d07e78a0 {
	0% {
		transform: scale(1)
	}

	20% {
		transform: scale(1.1)
	}

	to {
		transform: scale(1)
	}
}

.home-wrap .share-components[data-v-d07e78a0] {
	--vv: 4.14px;
	position: relative;
	text-align: center
}

.home-wrap .share-components .social-share-icon[data-v-d07e78a0] {
	display: inline-block;
	vertical-align: middle;
	margin: 0 calc(1.6 * var(--vv));
	width: calc(5.33333 * var(--vv));
	height: calc(5.33333 * var(--vv));
	background: no-repeat 0 0/contain
}

.home-wrap .share-components .share-f[data-v-d07e78a0] {
	background-image: url("data:image/svg+xml,%3csvg%20width='48'%20height='49'%20viewBox='0%200%2048%2049'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_5_5)'%3e%3cpath%20d='M24%200.287109C10.7662%200.287109%200%2011.0535%200%2024.2873C0%2037.5207%2010.7662%2048.2871%2024%2048.2871C37.2338%2048.2871%2048%2037.5207%2048%2024.2873C48%2011.0535%2037.2338%200.287109%2024%200.287109ZM24%2045.2093C12.4638%2045.2093%203.07807%2035.8237%203.07807%2024.2873C3.07807%2012.7508%2012.4638%203.36516%2024%203.36516C35.5368%203.36516%2044.9225%2012.7508%2044.9225%2024.2873C44.9225%2035.8237%2035.5368%2045.2093%2024%2045.2093Z'%20fill='%231D44FF'/%3e%3cpath%20d='M31%2013.6294C31%2013.4644%2030.933%2013.3062%2030.8136%2013.1895C30.6943%2013.0729%2030.5324%2013.0074%2030.3636%2013.0074H27.1818C25.5796%2012.9293%2024.0109%2013.4744%2022.8186%2014.5233C21.6262%2015.5723%2020.907%2017.0399%2020.8182%2018.6055V21.9644H17.6364C17.4676%2021.9644%2017.3057%2022.0299%2017.1864%2022.1466C17.067%2022.2633%2017%2022.4215%2017%2022.5864V25.8209C17%2025.9859%2017.067%2026.1441%2017.1864%2026.2608C17.3057%2026.3774%2017.4676%2026.4429%2017.6364%2026.4429H20.8182V34.778C20.8182%2034.943%2020.8852%2035.1012%2021.0046%2035.2178C21.1239%2035.3345%2021.2858%2035.4%2021.4545%2035.4H25.2727C25.4415%2035.4%2025.6034%2035.3345%2025.7227%2035.2178C25.842%2035.1012%2025.9091%2034.943%2025.9091%2034.778V26.4429H29.2436C29.3852%2026.4449%2029.5233%2026.4007%2029.6363%2026.3174C29.7492%2026.234%2029.8305%2026.1162%2029.8673%2025.9826L30.7836%2022.7482C30.809%2022.6562%2030.8124%2022.5599%2030.7936%2022.4665C30.7748%2022.3731%2030.7344%2022.2852%2030.6753%2022.2095C30.6163%2022.1337%2030.5403%2022.0723%2030.4532%2022.0298C30.3661%2021.9873%2030.2701%2021.9649%2030.1727%2021.9644H25.9091V18.6055C25.9407%2018.2976%2026.0887%2018.0123%2026.324%2017.8052C26.5594%2017.5982%2026.8652%2017.4843%2027.1818%2017.4859H30.3636C30.5324%2017.4859%2030.6943%2017.4204%2030.8136%2017.3037C30.933%2017.187%2031%2017.0288%2031%2016.8639V13.6294Z'%20fill='%231D43FF'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_5_5'%3e%3crect%20width='48'%20height='48'%20fill='white'%20transform='translate(0%200.287109)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.home-wrap .share-components .share-t[data-v-d07e78a0] {
	background-image: url("data:image/svg+xml,%3csvg%20width='33'%20height='33'%20viewBox='0%200%2033%2033'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M16.8334%200.178223C8.01091%200.178223%200.833496%207.35585%200.833496%2016.1783C0.833496%2025.0006%208.01091%2032.1782%2016.8334%2032.1782C25.6559%2032.1782%2032.8333%2025.0006%2032.8333%2016.1783C32.8333%207.35585%2025.6559%200.178223%2016.8334%200.178223ZM16.8334%2030.1264C9.14223%2030.1264%202.88515%2023.8692%202.88515%2016.1783C2.88515%208.48716%209.14223%202.23008%2016.8334%202.23008C24.5245%202.23008%2030.7817%208.48716%2030.7817%2016.1783C30.7817%2023.8692%2024.5245%2030.1264%2016.8334%2030.1264Z'%20fill='%231D44FF'/%3e%3cg%20clip-path='url(%23clip0_1886_3059)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M15.065%2016.426L9.33337%209.13428H13.8732L17.4113%2013.6411L21.1911%209.15457H23.6914L18.6202%2015.181L24.6333%2022.8404H20.107L16.276%2017.9666L12.186%2022.8269H9.67217L15.065%2016.426ZM20.7667%2021.4894L12.117%2010.4853H13.2129L21.8517%2021.4894H20.7667Z'%20fill='%231D44FF'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_1886_3059'%3e%3crect%20width='15.2999'%20height='15.2999'%20fill='white'%20transform='translate(9.33337%208.49561)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.home-wrap .share-components .share-tg[data-v-d07e78a0] {
	background-image: url("data:image/svg+xml,%3csvg%20width='43'%20height='43'%20viewBox='0%200%2043%2043'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M21.9008%200.880859C10.3214%200.880859%200.901001%2010.3014%200.901001%2021.881C0.901001%2033.4602%2010.3214%2042.8808%2021.9008%2042.8808C33.4803%2042.8808%2042.9007%2033.4602%2042.9007%2021.881C42.9007%2010.3014%2033.4803%200.880859%2021.9008%200.880859ZM21.9008%2040.1877C11.8068%2040.1877%203.5943%2031.9753%203.5943%2021.881C3.5943%2011.7866%2011.8068%203.57415%2021.9008%203.57415C31.9955%203.57415%2040.2079%2011.7866%2040.2079%2021.881C40.2079%2031.9753%2031.9955%2040.1877%2021.9008%2040.1877Z'%20fill='%231D44FF'/%3e%3cpath%20d='M11.7985%2021.5321L24.2572%2016.3989C25.487%2015.8642%2029.6577%2014.1532%2029.6577%2014.1532C29.6577%2014.1532%2031.5827%2013.4046%2031.4223%2015.2226C31.3688%2015.9712%2030.941%2018.5912%2030.5133%2021.4252L29.1765%2029.8201C29.1765%2029.8201%2029.0696%2031.0499%2028.1606%2031.2638C27.2516%2031.4777%2025.7544%2030.5152%2025.487%2030.3013C25.2731%2030.1409%2021.4767%2027.7347%2020.0865%2026.5584C19.7122%2026.2376%2019.2844%2025.5959%2020.1399%2024.8473C22.0649%2023.0828%2024.3641%2020.8905%2025.7544%2019.5002C26.396%2018.8586%2027.0377%2017.3614%2024.3641%2019.1794L16.8248%2024.2591C16.8248%2024.2591%2015.9692%2024.7938%2014.3651%2024.3126C12.761%2023.8314%2010.8895%2023.1897%2010.8895%2023.1897C10.8895%2023.1897%209.60621%2022.3877%2011.7985%2021.5321Z'%20fill='%231D44FF'/%3e%3c/svg%3e")
}

.home-wrap .share-components .share-w[data-v-d07e78a0] {
	background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20t='1712415745908'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='14656'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='48'%20height='48'%3e%3cpath%20d='M713.504%20599.904c-10.88-5.6-65.216-32.192-75.296-35.808-10.112-3.808-17.504-5.6-24.8%205.6-7.424%2011.104-28.416%2035.808-35.008%2043.296-6.4%207.424-12.896%208.32-23.808%202.816-64.8-32.416-107.296-57.792-149.984-131.104-11.296-19.52%2011.296-18.112%2032.384-60.192%203.616-7.424%201.792-13.696-0.992-19.328-2.816-5.6-24.8-59.776-34.016-81.888-8.896-21.504-18.08-18.496-24.768-18.88-6.4-0.416-13.728-0.416-21.12-0.416-7.392%200-19.296%202.816-29.408%2013.696-10.08%2011.104-38.592%2037.792-38.592%2092s39.52%20106.688%2044.896%20114.112c5.6%207.392%2077.696%20118.592%20188.416%20166.496%2069.984%2030.208%2097.376%2032.8%20132.384%2027.584%2021.312-3.2%2065.216-26.56%2074.304-52.48%209.12-25.792%209.12-47.904%206.4-52.48-2.688-4.928-10.112-7.712-20.992-13.024z%20m211.712-261.504a448.128%20448.128%200%200%200-96.32-143.296%20444.352%20444.352%200%200%200-143.296-96.32A445.856%20445.856%200%200%200%20512%2064h-2.016a446.944%20446.944%200%200%200-316.48%20132.416A443.936%20443.936%200%200%200%2098.304%20339.2%20448.288%20448.288%200%200%200%2064%20514.112c0.32%2069.376%2016.896%20138.304%2048%20199.904v152c0%2025.376%2020.608%2045.984%2046.016%2045.984H310.08a449.408%20449.408%200%200%200%20199.872%2048h2.112a448.32%20448.32%200%200%200%20172.704-34.304%20444.48%20444.48%200%200%200%20142.816-95.2A447.04%20447.04%200%200%200%20960%20514.016a446.4%20446.4%200%200%200-34.816-175.616zM774.08%20776.416A370.048%20370.048%200%200%201%20512%20883.968h-1.696a373.312%20373.312%200%200%201-173.12-43.52l-8.384-4.48h-140.8v-140.8l-4.48-8.416a373.344%20373.344%200%200%201-43.52-173.088A369.728%20369.728%200%200%201%20247.584%20249.92a369.216%20369.216%200%200%201%20262.816-109.888h1.696c50.016%200%2098.496%209.696%20144.192%2028.896a369.6%20369.6%200%200%201%20119.04%2080%20370.56%20370.56%200%200%201%20108.896%20264.8%20370.592%20370.592%200%200%201-110.112%20262.72z'%20fill='%231d44ff'%20p-id='14657'%3e%3c/path%3e%3c/svg%3e")
}

.home-wrap .share-components .share-y[data-v-d07e78a0] {
	background-image: url("data:image/svg+xml,%3csvg%20width='43'%20height='43'%20viewBox='0%200%2043%2043'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M29.9603%2021L17%2028.2902L17%2013.7098L17%2013.7098L29.9603%2021Z'%20stroke='%231D44FF'%20stroke-width='2'/%3e%3ccircle%20cx='21.5'%20cy='21.5'%20r='20'%20stroke='%231D44FF'%20stroke-width='3'/%3e%3c/svg%3e")
}

.home-wrap .share-components .share-i[data-v-d07e78a0] {
	background-image: url("data:image/svg+xml,%3csvg%20width='43'%20height='43'%20viewBox='0%200%2043%2043'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M28.4488%2016.089C28.4488%2016.7837%2027.8857%2017.3469%2027.1909%2017.3469C26.4961%2017.3469%2025.9328%2016.7837%2025.9328%2016.089C25.9328%2015.3942%2026.4961%2014.8309%2027.1909%2014.8309C27.8857%2014.8309%2028.4488%2015.3942%2028.4488%2016.089ZM26.8824%2021.7284C26.8824%2024.6422%2024.5119%2027.0129%2021.5983%2027.0129C18.6845%2027.0129%2016.3138%2024.6422%2016.3138%2021.7284C16.3138%2018.8149%2018.6845%2016.4443%2021.5983%2016.4443C24.5119%2016.4443%2026.8824%2018.8149%2026.8824%2021.7284ZM24.9833%2021.7284C24.9833%2019.8621%2023.4646%2018.3435%2021.5983%2018.3435C19.7318%2018.3435%2018.2132%2019.8621%2018.2132%2021.7284C18.2132%2023.5951%2019.7318%2025.1135%2021.5983%2025.1135C23.4646%2025.1135%2024.9833%2023.5951%2024.9833%2021.7284ZM32.2937%2017.4833C32.2937%2013.9238%2029.4079%2011.0381%2025.8482%2011.0381H17.0531C13.4934%2011.0381%2010.6077%2013.9238%2010.6077%2017.4833V26.279C10.6077%2029.8386%2013.4934%2032.7242%2017.0531%2032.7242H25.8482C29.4079%2032.7242%2032.2937%2029.8386%2032.2937%2026.279V17.4833ZM30.1779%2026.182C30.1779%2028.6266%2028.1959%2030.6085%2025.7512%2030.6085H17.1502C14.7053%2030.6085%2012.7234%2028.6266%2012.7234%2026.182V17.5804C12.7234%2015.1356%2014.7053%2013.1538%2017.1502%2013.1538H25.7512C28.1959%2013.1538%2030.1779%2015.1356%2030.1779%2017.5804V26.182Z'%20fill='%231D44FF'/%3e%3cpath%20d='M21.4504%200.880859C9.87095%200.880859%200.450592%2010.3014%200.450592%2021.881C0.450592%2033.4602%209.87095%2042.8808%2021.4504%2042.8808C33.0299%2042.8808%2042.4503%2033.4602%2042.4503%2021.881C42.4503%2010.3014%2033.0299%200.880859%2021.4504%200.880859ZM21.4504%2040.1877C11.3564%2040.1877%203.14389%2031.9753%203.14389%2021.881C3.14389%2011.7866%2011.3564%203.57415%2021.4504%203.57415C31.5451%203.57415%2039.7575%2011.7866%2039.7575%2021.881C39.7575%2031.9753%2031.5451%2040.1877%2021.4504%2040.1877Z'%20fill='%231D44FF'/%3e%3c/svg%3e")
}

.home-wrap .share-components .share-tt[data-v-d07e78a0] {
	background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20t='1712415677273'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='6018'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='48'%20height='48'%3e%3cpath%20d='M512.588706%200c282.683868%200%20510.873725%20228.189856%20510.873725%20510.879961%200%20282.683868-228.189856%20510.873725-510.873725%20510.873725C229.898602%201021.753686%201.708745%20793.563829%201.708745%20510.879961%201.708745%20228.189856%20229.898602%200%20512.588706%200z%20m0%2051.088994c-255.439981%200-459.790967%20204.350987-459.790967%20459.790967%200%20255.433744%20204.350987%20459.784731%20459.790967%20459.784731%20255.433744%200%20459.784731-204.350987%20459.784731-459.784731%200-255.439981-204.350987-459.790967-459.784731-459.790967zM621.524346%20210.786845C629.636521%20287.775181%20691.65525%20348.004093%20768.848136%20353.503259v100.031455c-4.971576%200.523849-9.682475%200.785773-14.655298%200.785773-53.904058%200-104.146163-27.23391-133.714943-72.273695v246.413564C620.477895%20729.016906%20539.096711%20810.718636%20438.34933%20810.718636%20337.605691%20810.718636%20256.224507%20729.278831%20256.224507%20628.460356c0-100.817228%2081.381184-182.257033%20182.12607-182.257033%203.925125%200%207.589574%200.261924%2011.252775%200.523849v89.818894c-3.663201-0.523849-7.327649-1.047698-11.252775-1.047698-51.287308%200-92.894636%2041.637262-92.894635%2092.961988%200%2051.325973%2041.60608%2092.961988%2092.895883%2092.961987%2051.287308%200%2096.557837-40.588317%2096.557836-91.914289L535.691693%20210.786845h85.832653z'%20fill='%231d44ff'%20p-id='6019'%3e%3c/path%3e%3c/svg%3e")
}

.home-wrap .share-components .share-ks[data-v-d07e78a0] {
	background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20t='1712416014134'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='32481'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='48'%20height='48'%3e%3cpath%20d='M522.971429%20585.142857c3.657143%200%20274.285714-25.6%20292.571428-21.942857%2018.285714%203.657143%2091.428571%200%2095.085714%2032.914286%203.657143%2029.257143%200%2058.514286%200%2058.514285s-160.914286%2029.257143-164.571428%2036.571429c-3.657143%203.657143-18.285714%2018.285714-14.628572%2040.228571v106.057143c0%203.657143%203.657143%2018.285714%2032.914286%2014.628572%2021.942857-3.657143%2043.885714-10.971429%2051.2-14.628572%203.657143%200%203.657143-3.657143%203.657143-7.314285v-21.942858c0-3.657143-3.657143-7.314286-7.314286-3.657142l-40.228571%207.314285v-84.114285l135.314286-25.6c3.657143%200%207.314286%200%207.314285%203.657142l3.657143%20146.285715s7.314286%2036.571429-47.542857%2047.542857c-54.857143%2010.971429-190.171429%2051.2-204.8%2051.2-14.628571%200-32.914286%200-58.514286-7.314286-14.628571-3.657143-36.571429-10.971429-43.885714-18.285714-3.657143%200-3.657143-7.314286-3.657143-10.971429l47.542857-73.142857c3.657143-3.657143%203.657143-7.314286%203.657143-10.971428v-80.457143c0-3.657143%200-7.314286-3.657143-10.971429l-106.057143-120.685714c-3.657143-3.657143-3.657143-7.314286-3.657142-10.971429%200-7.314286%203.657143-21.942857%2025.6-21.942857zM394.971429%20614.4c-3.657143-3.657143-3.657143-3.657143-7.314286-3.657143L186.514286%20585.142857h-7.314286c-7.314286%203.657143-29.257143%2014.628571-32.914286%2043.885714v219.428572s3.657143%2043.885714%2065.828572%2062.171428c65.828571%2021.942857%20142.628571%2036.571429%20142.628571%2036.571429s43.885714%207.314286%2062.171429-25.6c18.285714-32.914286%20102.4-128%20102.4-128v-58.514286l-124.342857-120.685714zM343.771429%20877.714286c-21.942857%200-106.057143-10.971429-131.657143-32.914286-25.6-21.942857-10.971429-179.2-10.971429-179.2s0-18.285714%2010.971429-18.285714l131.657143%2021.942857s18.285714%207.314286%2018.285714%2021.942857v171.885714s3.657143%2014.628571-18.285714%2014.628572zM914.285714%20369.371429c0-84.114286-69.485714-153.6-157.257143-153.6-51.2%200-95.085714%2021.942857-124.342857%2058.514285-21.942857-91.428571-106.057143-160.914286-204.8-160.914285-117.028571%200-212.114286%2095.085714-212.114285%20212.114285%200%20117.028571%2095.085714%20212.114286%20212.114285%20212.114286h18.285715l314.514285-14.628571h7.314286c84.114286-7.314286%20146.285714-76.8%20146.285714-153.6z%20m-446.171428%2073.142857c-58.514286%200-106.057143-51.2-106.057143-113.371429s47.542857-113.371429%20106.057143-113.371428c58.514286%200%20106.057143%2051.2%20106.057143%20113.371428s-43.885714%20113.371429-106.057143%20113.371429z%20m314.514285-3.657143c-40.228571%200-69.485714-32.914286-69.485714-76.8s32.914286-76.8%2069.485714-76.8%2069.485714%2032.914286%2069.485715%2076.8-32.914286%2076.8-69.485715%2076.8z'%20p-id='32482'%20fill='%231d44ff'%3e%3c/path%3e%3c/svg%3e")
}

.small-btn[data-v-aeffcd88] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-b4501348] {
	padding-bottom: 60px
}

.home-wrap .custom-swiper[data-v-b4501348] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius)
}

.home-wrap .custom-swiper .van-swipe[data-v-b4501348] {
	border-radius: 10px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-b4501348] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-b4501348] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-b4501348] .van-swipe-item {
	border-radius: 10px
}

.home-wrap .custom-swiper .van-swipe[data-v-b4501348] .van-swipe-item img {
	width: 100%;
	height: 200px;
	border-radius: 10px;
	object-fit: center
}

.home-wrap .tool[data-v-b4501348] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADYAAAA2CAYAAACMRWrdAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAMSSURBVGiB7ZpNaxNRFIafc2YynZRGa62timJREelCN4IgiN3qRhcuBBf6FwT3/Qm6cusfcOFOBEGX4sZFwW2lflQtta1JM2mazHExiaQ1sYmZOs3FZ5PhDoT3zbn3ZIbzCj1ii0xRZwbhOiJHMZlENACNQMrJpxchWkY0IvaiGD9S9cqIHxEHEeQivKCM5CMII2SkjBQidDza1MkoF04Xo/q5Uj5/KgKqQElE4l50SteGPnIX5Q7mn0aG38XeiefqH1vAv/iRfbOLvf5Anak0NIW2/QawJiKVbr5lR2P2mRsYD8D38c8+ZGLuSa9SU6YGLO9k8I/G7DMPMP/mHjG0nSKw2mmLartFW2TKPvEWGTtG4d6tPWgKoABMmpnf7uZvFbNFpoh5iXf8KZMLD3ddXv/UgK8iUmtd3GLM5hkl4CXe8VcDYqpJVUS2NLCtW3GIWWTftwEzBRCY2Vjrwq/9aR+YwfybjD+69u91pULBzCoiUobWiimPCa/cJ7j9IzNp/XOgeaHQqBbDXxh78TozSengm9kINCvmMYt/ci+29L9hBEBsnlGG9D1H6uezVpQin5Qh7iCjz7JWkjKhEus03sRc1kpSZlhRPUNw6U3WSlLGU5BxZKqYtZKU8dVMc4QXXDOmKqLrBFfXs1aSNpq8zruHgu+qMXXVmLMV89w0FrtqTP3AuVYPoLHloqxF7AaqGrpZMQjcPGNI3lVjhf/GBglFJtw0tqmH3TSWC8862u6Dy27+QcNEPWsRu4ECPQ2tB4RYSQZnrlFTwMWtuKmAi+2+qiT5CdcoaWMovZG1khSpiEjcnGiWMpWSLmvQGPyJSAk3umOtmdhpTQ2sZCQmTZabF7+MNabtgzycKLbmq7bkPETkO0mMbtCoAqutC+2yVEsM1nmrAUvbw2Jt02+N4NUhIPgHwvqhSmLqt0J0jPWZmQKjJCmzvUixcXTasnMQ0ywEDtIST8qYGrDSjBZ1ovvobGJwPxD2Kexv2SDJBnf1MNG1sSaNLTpCcv5yJJVsG+jsg5ikMnWSh/RKu3P0J34C3NvjqHVCAlkAAAAASUVORK5CYII=) no-repeat center
}

.home-wrap .bg-blur[data-v-b4501348] {
	position: relative;
	z-index: 1;
	overflow: hidden
}

.home-wrap .bg-blur[data-v-b4501348]:before {
	content: "";
	position: absolute;
	width: 100px;
	height: 100px;
	background: var(--bg-color);
	filter: blur(50px);
	bottom: -40px;
	right: -40px;
	border-radius: 50%;
	z-index: 0
}

.home-wrap .slogan-banner[data-v-b4501348] {
	background: url(./index-quan-bg-CkUO8Ku9.png) no-repeat center;
	background-size: cover;
	height: 120px;
	border-radius: 22px;
	margin-top: 16px
}

.home-wrap .customer-van-tabs[data-v-b4501348] .van-tabs__line {
	background: var(--primary)
}

.home-wrap .tab-bar[data-v-b4501348] {
	display: flex;
	align-items: center;
	background: linear-gradient(180deg, #ffffff1f 3%, #fff0)
}

.rich-text[data-v-b4501348] table {
	max-width: 100% !important;
	border: 1px solid #ccc;
	margin: 10px 0
}

.rich-text[data-v-b4501348] table th,
.rich-text[data-v-b4501348] table td {
	border: 1px solid #ccc
}

.rich-text[data-v-b4501348] table td {
	padding: 0 5px;
	word-break: break-all
}

.rich-text[data-v-b4501348] p {
	font-size: 14px;
	line-height: 1.6
}

.rich-text[data-v-b4501348] h1 {
	font-size: 32px;
	font-weight: 700
}

.rich-text[data-v-b4501348] h2 {
	font-size: 24px;
	font-weight: 700
}

.rich-text[data-v-b4501348] a {
	color: var(--primary);
	text-decoration: underline
}

.rich-text[data-v-b4501348] a:hover {
	text-decoration: none
}

.rich-text[data-v-b4501348] p>img {
	max-width: 90% !important;
	height: auto !important;
	margin: 0 auto
}

.small-btn[data-v-ca69996a] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-9d12d31e] {
	padding: 80px 0
}

.home-wrap .custom-swiper[data-v-9d12d31e] {
	margin-top: var(--mg);
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 3px solid transparent
}

.home-wrap .custom-swiper .van-swipe[data-v-9d12d31e] {
	border-radius: 8px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-9d12d31e] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-9d12d31e] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-9d12d31e] .van-swipe-item {
	border-radius: 8px
}

.home-wrap .custom-swiper .van-swipe[data-v-9d12d31e] .van-swipe-item img {
	width: 100%;
	height: 200px;
	border-radius: 8px;
	object-fit: center
}

.home-wrap .tools-wrap[data-v-9d12d31e] {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: var(--mg)
}

.home-wrap .tools-wrap .tools-item[data-v-9d12d31e] {
	width: 100
}

.home-wrap .tools-wrap .tools-item .icon[data-v-9d12d31e] {
	width: 48px;
	height: 48px;
	margin: 0 auto
}

.home-wrap .tools-wrap .tools-item .label[data-v-9d12d31e] {
	margin-top: 10px;
	font-size: 14px;
	text-align: center
}

.home-wrap .tools-wrap2[data-v-9d12d31e] {
	margin-top: var(--mg);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px
}

.home-wrap .tools-wrap2.has-invest .tools-card2[data-v-9d12d31e] {
	display: block !important
}

.home-wrap .tools-wrap2.has-invest .tools-card2 img[data-v-9d12d31e] {
	margin-right: 0;
	margin-left: 50%;
	transform: translate(-50%)
}

.home-wrap .tools-wrap2.has-invest .tools-card2 .label[data-v-9d12d31e] {
	text-align: center;
	margin-top: 5px
}

.home-wrap .scroll-notice[data-v-9d12d31e] {
	height: 38px;
	opacity: 1;
	background: var(--bg-card);
	box-sizing: border-box;
	padding-left: 12px
}

.small-btn[data-v-4abd478e] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-f6fabeba] {
	padding-bottom: 60px
}

.home-wrap .custom-swiper[data-v-f6fabeba] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius)
}

.home-wrap .custom-swiper .van-swipe[data-v-f6fabeba] {
	border-radius: 10px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-f6fabeba] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-f6fabeba] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-f6fabeba] .van-swipe-item {
	border-radius: 10px
}

.home-wrap .custom-swiper .van-swipe[data-v-f6fabeba] .van-swipe-item img {
	width: 100%;
	height: 200px;
	border-radius: 10px;
	object-fit: center
}

.home-wrap .tool[data-v-f6fabeba] {
	box-shadow: var(--box-shadow)
}

.home-wrap .bg-blur[data-v-f6fabeba] {
	position: relative;
	z-index: 1;
	overflow: hidden
}

.home-wrap .bg-blur[data-v-f6fabeba]:before {
	content: "";
	position: absolute;
	width: 100px;
	height: 100px;
	background: var(--bg-color);
	filter: blur(50px);
	bottom: -40px;
	right: -40px;
	border-radius: 50%;
	z-index: 0
}

.home-wrap .slogan-banner[data-v-f6fabeba] {
	background: url(./index-quan-bg-CkUO8Ku9.png) no-repeat center;
	background-size: cover;
	height: 120px;
	border-radius: 22px;
	margin-top: 16px
}

.home-wrap .customer-van-tabs[data-v-f6fabeba] .van-tabs__line {
	background: var(--primary)
}

.home-wrap .tab-bar[data-v-f6fabeba] {
	display: flex;
	align-items: center;
	background: linear-gradient(180deg, #ffffff1f 3%, #fff0)
}

.rich-text[data-v-f6fabeba] table {
	max-width: 100% !important;
	border: 1px solid #ccc;
	margin: 10px 0
}

.rich-text[data-v-f6fabeba] table th,
.rich-text[data-v-f6fabeba] table td {
	border: 1px solid #ccc
}

.rich-text[data-v-f6fabeba] table td {
	padding: 0 5px;
	word-break: break-all
}

.rich-text[data-v-f6fabeba] p {
	font-size: 14px;
	line-height: 1.6
}

.rich-text[data-v-f6fabeba] h1 {
	font-size: 32px;
	font-weight: 700
}

.rich-text[data-v-f6fabeba] h2 {
	font-size: 24px;
	font-weight: 700
}

.rich-text[data-v-f6fabeba] a {
	color: var(--primary);
	text-decoration: underline
}

.rich-text[data-v-f6fabeba] a:hover {
	text-decoration: none
}

.rich-text[data-v-f6fabeba] p>img {
	max-width: 90% !important;
	height: auto !important;
	margin: 0 auto
}

.activity-wrap[data-v-7a996ed6] {
	background: url(./activite-bg-w9BRM5xa.png) no-repeat 216px 5.2px/84px 67.2px
}

.small-btn[data-v-3e1c8bfc] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-c7b23241] {
	padding: 80px 0 120px
}

.home-wrap .custom-swiper[data-v-c7b23241] {
	width: 100%;
	box-sizing: border-box;
	background-image: url(./home_banner_frame-UGh2DHcq.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	overflow: hidden;
	height: 220px;
	padding-top: 30px
}

.home-wrap .custom-swiper .van-swipe[data-v-c7b23241] {
	border-radius: 4px;
	overflow: hidden;
	width: 100%
}

.home-wrap .custom-swiper .van-swipe[data-v-c7b23241] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-c7b23241] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-c7b23241] .van-swipe-item img {
	width: 100%;
	height: 175px;
	border-radius: 4px;
	object-fit: center
}

.home-wrap .notice-bar[data-v-c7b23241] {
	background: url(data:image/png;base64,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) no-repeat 50%;
	background-size: 100% auto;
	width: 100%
}

.home-wrap .home-tool-btn[data-v-c7b23241] {
	width: 100%;
	height: 48px;
	text-align: center;
	line-height: 48px;
	background: url(data:image/png;base64,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) no-repeat;
	background-size: 100% 100%
}

.home-wrap .wallet-info[data-v-c7b23241] {
	min-height: 116px;
	border-radius: 12px;
	background-color: var(--bg-card);
	padding: 20px 0 0 11.4px;
	box-sizing: border-box;
	color: var(--primary)
}

.home-wrap .wallet-info .head[data-v-c7b23241] {
	font-size: 18px;
	margin-bottom: 8px;
	font-weight: 300
}

.home-wrap .wallet-info .body em[data-v-c7b23241] {
	font-size: 18px;
	font-weight: 600;
	margin-right: 5px
}

.home-wrap .wallet-info .body span[data-v-c7b23241] {
	font-size: 12px;
	color: var(--text-gray)
}

.home-wrap .wallet-info .foot[data-v-c7b23241] {
	font-size: 13px
}

.home-wrap .wallet-bg-1[data-v-c7b23241] {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIwAAABkCAMAAABjCSjjAAAAQlBMVEVHcEzY3dystLfp7OujrrHCy8q6wsPGz87y9POiqayxubu2vr/h5eSpsbPH0M+wuLrDzMzBysmlq66iqKu1vr7M1dNxZ1tVAAAAFnRSTlMAMzMzMzMzMzMzMzMyECwKLxIcLSUaFb1B7gAAA1tJREFUaN7t2suWgyAMAFAB8QlSrf3/Xx18lihVRGhm0ax6ZlHvCZA4pEnyi1/84he/uBlKdt3zWZbPTiI8vH29DEZpxFN+MQXtq2/4EE3X9YAxRkpp95Vk9M2Dm1FBRVVnPNfB+68kA0aW0Q1jifY7yZgZdUVpqoNuFHM8Ilh6SzI0I12D5vbgMY5rD5ORbgNgiGCsKERgzFI0hu2QbZNhwxDtKJYIhtkVDc05CgoY4TDSXjSqQ0xW7OP+BpZbyHJa+SEmj4GRtto1nYtDDPmAubNMamZYisYxhkXAdMOx+VAyrm6Z2xi9YWx1dDgq7MBSsxiYsqz2jPm7Pzjy/Zl228CqbdUJprYw5u/eMKosJx8YLpixpvfHmHnH2E4HmcsvrfkJwwHTTb2lUecYYf96JoRwUDhgZDV3uuYcU4SIA4ws6dJ32zMMiYzRpTXlp6n5DmYs89miwcVMLSf9F5il/c27psfEvFtxOqzUQyFiJHxLSs/rTDyMhC9LT5XgYa5YYmOkbibOlsgYOba2N0YlX8OwLUbO7d7REh7T7C2LRiV4GEkp0KgED6MtQKMSPMxoeWtcLNEws2XROFliYVbLrFEJHkZWFdCoBA+jLUCjEjzMaHlrnC0xMLNl1ThbImBkXQPNhYvq8L2proHmyqV5aAyva6C5dIEfGMOzGmiuDRPCYniWAc3FwUZQzGAxNVeHLCExJMuA5vLAJyBG8Axorg+fPDFsf1Hytkwaj0GYJ4YQIrYWDjQ+Qzl3DDNu2YTGkJ3F0HhZLmDM5w+fwb0aW+dAU/iNwJwxzHz+FsOMqZS/xR0jzOdvlklXO6DxHQ36YeAGHtqAqfEeU/otEzjaY7M2NP4j00sbWHx8cTA0N8a3F+oMYweWVXNn3nS3HTBjJDRE3uBhGBhQaQsmZjMuyzExZD+pwsNAhyCoGDA4EwUqRpgjRTH9/gANk5fUtIxnCw1Dh3lAbgzPEDFimgcMZ5oU2Jh8GU8Q46hjYeg0RTJalkDDME2pybbwYGGqnO2rIBbG8noj0DCWuTvDy4wlNYiYfWoEHsaSGkTMPjUECTPE/q+ImL1G/SdM858wN1IT9Pczd1MTAVPc/cc/ZwEx4i6GhEzN6yYm6Dr57uEVIwr8hVoxYVNzvlB/ncnlEPR5tsEAAAAASUVORK5CYII=);
	background-position: 100% 100%;
	background-repeat: no-repeat;
	background-size: 77px 55px
}

.home-wrap .wallet-bg-2[data-v-c7b23241] {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIwAAABkCAMAAABjCSjjAAAAV1BMVEVHcEyirK6zubyutLfIz8/Cycq4vsG7wsaepajt7/Gpr7PY3NykrK7Q1da+xMbh5eeor7PN0tShqay+xci4v8LP1dessragqKy7w8bk5ufs7vDt7/HZ3dyYoxbqAAAAHXRSTlMAMzMzMzMzMzMzMzMLMwYzEw0rHiYVGyMsHSUrLLBkIKIAAAVlSURBVGjezZrplqMgEIWJohhBxCXGXt7/OYeCaFAhATvK3B9zepnTfudSUJcyCH1crPu9LvTFURw13ZjV17VuEUhElxOC9fPrKiMkw1R/932uOVz0koSQSj28IrlSkuTaqJ/mPJJbT7SUL3WWz0qSJFN859CwbiST1HOp+tLAKek5NI1BIlXPLAZOUhSweDU/vmBNYbVGGVniXIqigN/8nFAmK2Nwli1xUoBR3nydR6KNoZnWE+ciVRSX+pCyWZWJIToZY/KkF6WifLVQ/MMkUlAxBozCyctS01wy91HMfnegDC9I9CpVGC9x0rKccGqnNV80eAFvOXkpqFGsNcMkpRbA5C5rOKWB1rCRvFENq4QXOCRN03Lmkf/h224MDbPmRogHDMV4gZOkSg8cqBpLqd4kC/0NqOHuPQvUrwkjccgD5oGT2taJgS8g79jjwwIwVVWZMAnIwKGbdWomFNDH1miGMXBIkixxYL8tS9dk8YNpSBDMxJPpBGHgJNtTmD1xvLoFH71haGXgkCnQPHlsRcO//VE8C2YNU8nY+cxXE05t7Za//iyM7ILBRqSZcaj1pIG97bmVel8YOPQofRqziFiaxg4jrfE0hvuyQNOu1fIrY54xwsCp7DA3T2Oa0RsGetNjY0hjzBgx41SOXulzsZJZO/NmUWl82qZ4lWoeOHRv+OS30UxsfhVcP5zBm5BFHjDfu4LlMj16Fs3DmlWQmHHqHUFY9Osk6yU8wVR4nWuy2buvwGSZ7UKZNzetVkFi/mtZ2BCAdxnezTLtJ7zUE6eyBxoXCl6i5HkYjSrhCmMHTh2wmZq1K3koTLUJWCYODiiZNYs6GcKr5lphBw71v8c11nOKhG+oGjt09T5l+Li1BYY9gTTUTRNwwe1sKOEwaqGsNDTAmO0K6a4fCpM5aNTAyHNf32y2yDgUDKOnV5sqpiFTz95qi0yKOdnlzbU2cSr1I+9OQGy2qERPdtLI42+B4s/CTVuW9wuyQ3QaR9dS06Dc/1pvtwXugckems2YPGQQzKwo+opMdgmbOD8hA3tROGyBUUZKdqqiAPTz/RU07xBF4USRSnbC9MOeiWJbFMm6cJ8sl0v49iZjt3e0WRRF6bIFJpWXQJBe/GEaDlNjpy3wywCa/sb+Ntq9gzVuFKDJj10bc2PD81LrCj3Uiv4tiPjQm4q7onHZ0g7s9fgq//PaLLoB0LSlzRZNouP6Bzfw65USDPF+bct9aT1fD+vzpDzuLZJoDZS7rQhYN4W/PFHvKBg6TuLewiPau3BZeFnqSBi1Gi+tX8GgqLovWO5xYXhrsLQc/TfWRGcRhSEWGaY1YSKXjFBHkDqb41vTAoxaKvVPG5NlgMN5UG2eKX9ERBjVKbiGYZGtGQBm0AGIobjWcNVD0QTDo1oDxlzEDBPVGg75okVPGGVNEakRlNqYGQYN8MUQg4VB8mqRCaNuOQWPYkypjTFgRCRrGMTjFi1hdKs63xqI64+UacCIKP1SwMXhjtYwcaxpAYZtYWJYI9KnMQsYFCFKtADDbTDym5ODuYCr74BsMKg94/5kSo0EuB1G3etO7JcDwAzIDqPvC6f1S66GJdwFI60py9OsGWCQNCAXDDSKshRnGSNhSuSG4WqUcg5MB9M+8QIGDfBhs1P6JYfR46IkNjDSGrmQp3RIgBEvYdR2O8MaBkPZHr2GQeBMyk8xJmnewYA1SXc0S5NvjLHBoBGYj7amBxj2HkYAzMHWCHjD0aP3MNqaY/vlCDDMBwasyfuDjcm35lth5IJKNccak2/L0g7TAMyB1tzg72+r0g5ztDV2Y1wwDD7iMh4WHeCdruWQd8DoD8jujhL/AC2Xl6PVRYofAAAAAElFTkSuQmCC);
	background-position: 100% 100%;
	background-repeat: no-repeat;
	background-size: 77px 55px
}

@keyframes jump-c7b23241 {
	0% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-20px)
	}

	to {
		transform: translateY(0)
	}
}

.home-wrap .drawbox[data-v-c7b23241] {
	animation: jump-c7b23241 1s infinite
}

.home-wrap .drawbox2[data-v-c7b23241] {
	animation: spinning-cog-c7b23241 1s infinite
}

@keyframes spinning-cog-c7b23241 {
	0% {
		transform: scale(1)
	}

	20% {
		transform: scale(1.1)
	}

	to {
		transform: scale(1)
	}
}

.home-wrap .share-components[data-v-c7b23241] {
	--vv: 4.14px;
	position: relative;
	text-align: center
}

.home-wrap .share-components .social-share-icon[data-v-c7b23241] {
	display: inline-block;
	vertical-align: middle;
	margin: 0 calc(1.6 * var(--vv));
	width: calc(5.33333 * var(--vv));
	height: calc(5.33333 * var(--vv));
	background: no-repeat 0 0/contain
}

.home-wrap .share-components .share-f[data-v-c7b23241] {
	background-image: url("data:image/svg+xml,%3csvg%20width='48'%20height='49'%20viewBox='0%200%2048%2049'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_5_5)'%3e%3cpath%20d='M24%200.287109C10.7662%200.287109%200%2011.0535%200%2024.2873C0%2037.5207%2010.7662%2048.2871%2024%2048.2871C37.2338%2048.2871%2048%2037.5207%2048%2024.2873C48%2011.0535%2037.2338%200.287109%2024%200.287109ZM24%2045.2093C12.4638%2045.2093%203.07807%2035.8237%203.07807%2024.2873C3.07807%2012.7508%2012.4638%203.36516%2024%203.36516C35.5368%203.36516%2044.9225%2012.7508%2044.9225%2024.2873C44.9225%2035.8237%2035.5368%2045.2093%2024%2045.2093Z'%20fill='%231D44FF'/%3e%3cpath%20d='M31%2013.6294C31%2013.4644%2030.933%2013.3062%2030.8136%2013.1895C30.6943%2013.0729%2030.5324%2013.0074%2030.3636%2013.0074H27.1818C25.5796%2012.9293%2024.0109%2013.4744%2022.8186%2014.5233C21.6262%2015.5723%2020.907%2017.0399%2020.8182%2018.6055V21.9644H17.6364C17.4676%2021.9644%2017.3057%2022.0299%2017.1864%2022.1466C17.067%2022.2633%2017%2022.4215%2017%2022.5864V25.8209C17%2025.9859%2017.067%2026.1441%2017.1864%2026.2608C17.3057%2026.3774%2017.4676%2026.4429%2017.6364%2026.4429H20.8182V34.778C20.8182%2034.943%2020.8852%2035.1012%2021.0046%2035.2178C21.1239%2035.3345%2021.2858%2035.4%2021.4545%2035.4H25.2727C25.4415%2035.4%2025.6034%2035.3345%2025.7227%2035.2178C25.842%2035.1012%2025.9091%2034.943%2025.9091%2034.778V26.4429H29.2436C29.3852%2026.4449%2029.5233%2026.4007%2029.6363%2026.3174C29.7492%2026.234%2029.8305%2026.1162%2029.8673%2025.9826L30.7836%2022.7482C30.809%2022.6562%2030.8124%2022.5599%2030.7936%2022.4665C30.7748%2022.3731%2030.7344%2022.2852%2030.6753%2022.2095C30.6163%2022.1337%2030.5403%2022.0723%2030.4532%2022.0298C30.3661%2021.9873%2030.2701%2021.9649%2030.1727%2021.9644H25.9091V18.6055C25.9407%2018.2976%2026.0887%2018.0123%2026.324%2017.8052C26.5594%2017.5982%2026.8652%2017.4843%2027.1818%2017.4859H30.3636C30.5324%2017.4859%2030.6943%2017.4204%2030.8136%2017.3037C30.933%2017.187%2031%2017.0288%2031%2016.8639V13.6294Z'%20fill='%231D43FF'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_5_5'%3e%3crect%20width='48'%20height='48'%20fill='white'%20transform='translate(0%200.287109)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.home-wrap .share-components .share-t[data-v-c7b23241] {
	background-image: url("data:image/svg+xml,%3csvg%20width='33'%20height='33'%20viewBox='0%200%2033%2033'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M16.8334%200.178223C8.01091%200.178223%200.833496%207.35585%200.833496%2016.1783C0.833496%2025.0006%208.01091%2032.1782%2016.8334%2032.1782C25.6559%2032.1782%2032.8333%2025.0006%2032.8333%2016.1783C32.8333%207.35585%2025.6559%200.178223%2016.8334%200.178223ZM16.8334%2030.1264C9.14223%2030.1264%202.88515%2023.8692%202.88515%2016.1783C2.88515%208.48716%209.14223%202.23008%2016.8334%202.23008C24.5245%202.23008%2030.7817%208.48716%2030.7817%2016.1783C30.7817%2023.8692%2024.5245%2030.1264%2016.8334%2030.1264Z'%20fill='%231D44FF'/%3e%3cg%20clip-path='url(%23clip0_1886_3059)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M15.065%2016.426L9.33337%209.13428H13.8732L17.4113%2013.6411L21.1911%209.15457H23.6914L18.6202%2015.181L24.6333%2022.8404H20.107L16.276%2017.9666L12.186%2022.8269H9.67217L15.065%2016.426ZM20.7667%2021.4894L12.117%2010.4853H13.2129L21.8517%2021.4894H20.7667Z'%20fill='%231D44FF'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_1886_3059'%3e%3crect%20width='15.2999'%20height='15.2999'%20fill='white'%20transform='translate(9.33337%208.49561)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.home-wrap .share-components .share-tg[data-v-c7b23241] {
	background-image: url("data:image/svg+xml,%3csvg%20width='43'%20height='43'%20viewBox='0%200%2043%2043'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M21.9008%200.880859C10.3214%200.880859%200.901001%2010.3014%200.901001%2021.881C0.901001%2033.4602%2010.3214%2042.8808%2021.9008%2042.8808C33.4803%2042.8808%2042.9007%2033.4602%2042.9007%2021.881C42.9007%2010.3014%2033.4803%200.880859%2021.9008%200.880859ZM21.9008%2040.1877C11.8068%2040.1877%203.5943%2031.9753%203.5943%2021.881C3.5943%2011.7866%2011.8068%203.57415%2021.9008%203.57415C31.9955%203.57415%2040.2079%2011.7866%2040.2079%2021.881C40.2079%2031.9753%2031.9955%2040.1877%2021.9008%2040.1877Z'%20fill='%231D44FF'/%3e%3cpath%20d='M11.7985%2021.5321L24.2572%2016.3989C25.487%2015.8642%2029.6577%2014.1532%2029.6577%2014.1532C29.6577%2014.1532%2031.5827%2013.4046%2031.4223%2015.2226C31.3688%2015.9712%2030.941%2018.5912%2030.5133%2021.4252L29.1765%2029.8201C29.1765%2029.8201%2029.0696%2031.0499%2028.1606%2031.2638C27.2516%2031.4777%2025.7544%2030.5152%2025.487%2030.3013C25.2731%2030.1409%2021.4767%2027.7347%2020.0865%2026.5584C19.7122%2026.2376%2019.2844%2025.5959%2020.1399%2024.8473C22.0649%2023.0828%2024.3641%2020.8905%2025.7544%2019.5002C26.396%2018.8586%2027.0377%2017.3614%2024.3641%2019.1794L16.8248%2024.2591C16.8248%2024.2591%2015.9692%2024.7938%2014.3651%2024.3126C12.761%2023.8314%2010.8895%2023.1897%2010.8895%2023.1897C10.8895%2023.1897%209.60621%2022.3877%2011.7985%2021.5321Z'%20fill='%231D44FF'/%3e%3c/svg%3e")
}

.home-wrap .share-components .share-w[data-v-c7b23241] {
	background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20t='1712415745908'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='14656'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='48'%20height='48'%3e%3cpath%20d='M713.504%20599.904c-10.88-5.6-65.216-32.192-75.296-35.808-10.112-3.808-17.504-5.6-24.8%205.6-7.424%2011.104-28.416%2035.808-35.008%2043.296-6.4%207.424-12.896%208.32-23.808%202.816-64.8-32.416-107.296-57.792-149.984-131.104-11.296-19.52%2011.296-18.112%2032.384-60.192%203.616-7.424%201.792-13.696-0.992-19.328-2.816-5.6-24.8-59.776-34.016-81.888-8.896-21.504-18.08-18.496-24.768-18.88-6.4-0.416-13.728-0.416-21.12-0.416-7.392%200-19.296%202.816-29.408%2013.696-10.08%2011.104-38.592%2037.792-38.592%2092s39.52%20106.688%2044.896%20114.112c5.6%207.392%2077.696%20118.592%20188.416%20166.496%2069.984%2030.208%2097.376%2032.8%20132.384%2027.584%2021.312-3.2%2065.216-26.56%2074.304-52.48%209.12-25.792%209.12-47.904%206.4-52.48-2.688-4.928-10.112-7.712-20.992-13.024z%20m211.712-261.504a448.128%20448.128%200%200%200-96.32-143.296%20444.352%20444.352%200%200%200-143.296-96.32A445.856%20445.856%200%200%200%20512%2064h-2.016a446.944%20446.944%200%200%200-316.48%20132.416A443.936%20443.936%200%200%200%2098.304%20339.2%20448.288%20448.288%200%200%200%2064%20514.112c0.32%2069.376%2016.896%20138.304%2048%20199.904v152c0%2025.376%2020.608%2045.984%2046.016%2045.984H310.08a449.408%20449.408%200%200%200%20199.872%2048h2.112a448.32%20448.32%200%200%200%20172.704-34.304%20444.48%20444.48%200%200%200%20142.816-95.2A447.04%20447.04%200%200%200%20960%20514.016a446.4%20446.4%200%200%200-34.816-175.616zM774.08%20776.416A370.048%20370.048%200%200%201%20512%20883.968h-1.696a373.312%20373.312%200%200%201-173.12-43.52l-8.384-4.48h-140.8v-140.8l-4.48-8.416a373.344%20373.344%200%200%201-43.52-173.088A369.728%20369.728%200%200%201%20247.584%20249.92a369.216%20369.216%200%200%201%20262.816-109.888h1.696c50.016%200%2098.496%209.696%20144.192%2028.896a369.6%20369.6%200%200%201%20119.04%2080%20370.56%20370.56%200%200%201%20108.896%20264.8%20370.592%20370.592%200%200%201-110.112%20262.72z'%20fill='%231d44ff'%20p-id='14657'%3e%3c/path%3e%3c/svg%3e")
}

.home-wrap .share-components .share-y[data-v-c7b23241] {
	background-image: url("data:image/svg+xml,%3csvg%20width='43'%20height='43'%20viewBox='0%200%2043%2043'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M29.9603%2021L17%2028.2902L17%2013.7098L17%2013.7098L29.9603%2021Z'%20stroke='%231D44FF'%20stroke-width='2'/%3e%3ccircle%20cx='21.5'%20cy='21.5'%20r='20'%20stroke='%231D44FF'%20stroke-width='3'/%3e%3c/svg%3e")
}

.home-wrap .share-components .share-i[data-v-c7b23241] {
	background-image: url("data:image/svg+xml,%3csvg%20width='43'%20height='43'%20viewBox='0%200%2043%2043'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M28.4488%2016.089C28.4488%2016.7837%2027.8857%2017.3469%2027.1909%2017.3469C26.4961%2017.3469%2025.9328%2016.7837%2025.9328%2016.089C25.9328%2015.3942%2026.4961%2014.8309%2027.1909%2014.8309C27.8857%2014.8309%2028.4488%2015.3942%2028.4488%2016.089ZM26.8824%2021.7284C26.8824%2024.6422%2024.5119%2027.0129%2021.5983%2027.0129C18.6845%2027.0129%2016.3138%2024.6422%2016.3138%2021.7284C16.3138%2018.8149%2018.6845%2016.4443%2021.5983%2016.4443C24.5119%2016.4443%2026.8824%2018.8149%2026.8824%2021.7284ZM24.9833%2021.7284C24.9833%2019.8621%2023.4646%2018.3435%2021.5983%2018.3435C19.7318%2018.3435%2018.2132%2019.8621%2018.2132%2021.7284C18.2132%2023.5951%2019.7318%2025.1135%2021.5983%2025.1135C23.4646%2025.1135%2024.9833%2023.5951%2024.9833%2021.7284ZM32.2937%2017.4833C32.2937%2013.9238%2029.4079%2011.0381%2025.8482%2011.0381H17.0531C13.4934%2011.0381%2010.6077%2013.9238%2010.6077%2017.4833V26.279C10.6077%2029.8386%2013.4934%2032.7242%2017.0531%2032.7242H25.8482C29.4079%2032.7242%2032.2937%2029.8386%2032.2937%2026.279V17.4833ZM30.1779%2026.182C30.1779%2028.6266%2028.1959%2030.6085%2025.7512%2030.6085H17.1502C14.7053%2030.6085%2012.7234%2028.6266%2012.7234%2026.182V17.5804C12.7234%2015.1356%2014.7053%2013.1538%2017.1502%2013.1538H25.7512C28.1959%2013.1538%2030.1779%2015.1356%2030.1779%2017.5804V26.182Z'%20fill='%231D44FF'/%3e%3cpath%20d='M21.4504%200.880859C9.87095%200.880859%200.450592%2010.3014%200.450592%2021.881C0.450592%2033.4602%209.87095%2042.8808%2021.4504%2042.8808C33.0299%2042.8808%2042.4503%2033.4602%2042.4503%2021.881C42.4503%2010.3014%2033.0299%200.880859%2021.4504%200.880859ZM21.4504%2040.1877C11.3564%2040.1877%203.14389%2031.9753%203.14389%2021.881C3.14389%2011.7866%2011.3564%203.57415%2021.4504%203.57415C31.5451%203.57415%2039.7575%2011.7866%2039.7575%2021.881C39.7575%2031.9753%2031.5451%2040.1877%2021.4504%2040.1877Z'%20fill='%231D44FF'/%3e%3c/svg%3e")
}

.home-wrap .share-components .share-tt[data-v-c7b23241] {
	background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20t='1712415677273'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='6018'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='48'%20height='48'%3e%3cpath%20d='M512.588706%200c282.683868%200%20510.873725%20228.189856%20510.873725%20510.879961%200%20282.683868-228.189856%20510.873725-510.873725%20510.873725C229.898602%201021.753686%201.708745%20793.563829%201.708745%20510.879961%201.708745%20228.189856%20229.898602%200%20512.588706%200z%20m0%2051.088994c-255.439981%200-459.790967%20204.350987-459.790967%20459.790967%200%20255.433744%20204.350987%20459.784731%20459.790967%20459.784731%20255.433744%200%20459.784731-204.350987%20459.784731-459.784731%200-255.439981-204.350987-459.790967-459.784731-459.790967zM621.524346%20210.786845C629.636521%20287.775181%20691.65525%20348.004093%20768.848136%20353.503259v100.031455c-4.971576%200.523849-9.682475%200.785773-14.655298%200.785773-53.904058%200-104.146163-27.23391-133.714943-72.273695v246.413564C620.477895%20729.016906%20539.096711%20810.718636%20438.34933%20810.718636%20337.605691%20810.718636%20256.224507%20729.278831%20256.224507%20628.460356c0-100.817228%2081.381184-182.257033%20182.12607-182.257033%203.925125%200%207.589574%200.261924%2011.252775%200.523849v89.818894c-3.663201-0.523849-7.327649-1.047698-11.252775-1.047698-51.287308%200-92.894636%2041.637262-92.894635%2092.961988%200%2051.325973%2041.60608%2092.961988%2092.895883%2092.961987%2051.287308%200%2096.557837-40.588317%2096.557836-91.914289L535.691693%20210.786845h85.832653z'%20fill='%231d44ff'%20p-id='6019'%3e%3c/path%3e%3c/svg%3e")
}

.home-wrap .share-components .share-ks[data-v-c7b23241] {
	background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20t='1712416014134'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='32481'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='48'%20height='48'%3e%3cpath%20d='M522.971429%20585.142857c3.657143%200%20274.285714-25.6%20292.571428-21.942857%2018.285714%203.657143%2091.428571%200%2095.085714%2032.914286%203.657143%2029.257143%200%2058.514286%200%2058.514285s-160.914286%2029.257143-164.571428%2036.571429c-3.657143%203.657143-18.285714%2018.285714-14.628572%2040.228571v106.057143c0%203.657143%203.657143%2018.285714%2032.914286%2014.628572%2021.942857-3.657143%2043.885714-10.971429%2051.2-14.628572%203.657143%200%203.657143-3.657143%203.657143-7.314285v-21.942858c0-3.657143-3.657143-7.314286-7.314286-3.657142l-40.228571%207.314285v-84.114285l135.314286-25.6c3.657143%200%207.314286%200%207.314285%203.657142l3.657143%20146.285715s7.314286%2036.571429-47.542857%2047.542857c-54.857143%2010.971429-190.171429%2051.2-204.8%2051.2-14.628571%200-32.914286%200-58.514286-7.314286-14.628571-3.657143-36.571429-10.971429-43.885714-18.285714-3.657143%200-3.657143-7.314286-3.657143-10.971429l47.542857-73.142857c3.657143-3.657143%203.657143-7.314286%203.657143-10.971428v-80.457143c0-3.657143%200-7.314286-3.657143-10.971429l-106.057143-120.685714c-3.657143-3.657143-3.657143-7.314286-3.657142-10.971429%200-7.314286%203.657143-21.942857%2025.6-21.942857zM394.971429%20614.4c-3.657143-3.657143-3.657143-3.657143-7.314286-3.657143L186.514286%20585.142857h-7.314286c-7.314286%203.657143-29.257143%2014.628571-32.914286%2043.885714v219.428572s3.657143%2043.885714%2065.828572%2062.171428c65.828571%2021.942857%20142.628571%2036.571429%20142.628571%2036.571429s43.885714%207.314286%2062.171429-25.6c18.285714-32.914286%20102.4-128%20102.4-128v-58.514286l-124.342857-120.685714zM343.771429%20877.714286c-21.942857%200-106.057143-10.971429-131.657143-32.914286-25.6-21.942857-10.971429-179.2-10.971429-179.2s0-18.285714%2010.971429-18.285714l131.657143%2021.942857s18.285714%207.314286%2018.285714%2021.942857v171.885714s3.657143%2014.628571-18.285714%2014.628572zM914.285714%20369.371429c0-84.114286-69.485714-153.6-157.257143-153.6-51.2%200-95.085714%2021.942857-124.342857%2058.514285-21.942857-91.428571-106.057143-160.914286-204.8-160.914285-117.028571%200-212.114286%2095.085714-212.114285%20212.114285%200%20117.028571%2095.085714%20212.114286%20212.114285%20212.114286h18.285715l314.514285-14.628571h7.314286c84.114286-7.314286%20146.285714-76.8%20146.285714-153.6z%20m-446.171428%2073.142857c-58.514286%200-106.057143-51.2-106.057143-113.371429s47.542857-113.371429%20106.057143-113.371428c58.514286%200%20106.057143%2051.2%20106.057143%20113.371428s-43.885714%20113.371429-106.057143%20113.371429z%20m314.514285-3.657143c-40.228571%200-69.485714-32.914286-69.485714-76.8s32.914286-76.8%2069.485714-76.8%2069.485714%2032.914286%2069.485715%2076.8-32.914286%2076.8-69.485715%2076.8z'%20p-id='32482'%20fill='%231d44ff'%3e%3c/path%3e%3c/svg%3e")
}

.small-btn[data-v-d7071531] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.index-wrap[data-v-4453cae8] {
	position: relative;
	z-index: 1;
	padding-top: 60px;
	padding-bottom: 80px
}

.index-wrap .swiper-container[data-v-4453cae8] {
	box-sizing: border-box;
	position: relative;
	border-radius: var(--card-radius);
	width: 100%;
	margin: 12px auto 0
}

.index-wrap .swiper-container .custom-swiper[data-v-4453cae8] {
	width: 100%;
	overflow: hidden;
	height: 160px;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 3px solid transparent
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-4453cae8] {
	border-radius: 8px;
	overflow: hidden
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-4453cae8] .van-swipe__indicators {
	bottom: 15px !important;
	left: 20%
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-4453cae8] .van-swipe__indicator {
	width: 12px;
	height: 2px;
	opacity: .4;
	border-radius: 1px;
	background-color: var(--text-gray6)
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-4453cae8] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.index-wrap .swiper-container .custom-swiper .van-swipe-item img[data-v-4453cae8] {
	width: 100%;
	height: 160px;
	border-radius: 8px;
	object-fit: center
}

.index-wrap .notice-info[data-v-4453cae8] {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	cursor: pointer;
	height: 40px;
	border-radius: 26px;
	background: linear-gradient(91deg, #d9d9d91a, #a7a7a700 98%);
	border: 2px solid rgba(255, 255, 255, .26);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	margin-top: 6px;
	padding: 0 25px 0 5px;
	color: var(--btn-text2)
}

.index-wrap .notice-info .volume-icon[data-v-4453cae8] {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 16px;
	margin: 0 9px 0 10px
}

.index-wrap .notice-info .van-notice-bar[data-v-4453cae8] {
	width: 100%;
	padding: 0 5px;
	background: transparent;
	color: var(--btn-text2);
	font-size: 12px
}

.index-wrap .asserts-part[data-v-4453cae8] {
	margin-top: 20px;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 15px
}

.index-wrap .asserts-part .assert[data-v-4453cae8] {
	width: 100%;
	height: 120px;
	border-radius: var(--radius);
	padding: 20px
}

.index-wrap .asserts-part .assert .head[data-v-4453cae8] {
	font-size: 14px;
	margin-bottom: 4px
}

.index-wrap .asserts-part .assert .body[data-v-4453cae8] {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 5px
}

.index-wrap .asserts-part .assert .body span[data-v-4453cae8] {
	font-size: 12px;
	margin-left: 5px;
	font-weight: 400
}

.index-wrap .asserts-part .assert .foot[data-v-4453cae8] {
	font-size: 14px
}

.index-wrap .asserts-part .assert[data-v-4453cae8]:nth-of-type(1) {
	background: url(./assert-card-1-BIA3jzJe.png) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .asserts-part .assert[data-v-4453cae8]:nth-of-type(2) {
	background: url(./assert-card-2-7YbPvcyQ.png) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part[data-v-4453cae8] {
	margin-top: 19px;
	padding: var(--mg) 0;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	row-gap: 10px
}

.index-wrap .tools-part[data-v-4453cae8]:after {
	display: none
}

.index-wrap .tools-part[data-v-4453cae8]:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 200px;
	background-size: 100% 100%;
	z-index: 0;
	pointer-events: none
}

.index-wrap .tools-part .part[data-v-4453cae8] {
	width: 100%
}

.index-wrap .tools-part .part .wrap[data-v-4453cae8] {
	display: flex;
	flex-direction: column;
	align-items: center
}

.index-wrap .tools-part .part .wrap .img-wrap[data-v-4453cae8] {
	width: 100%;
	margin-bottom: 4px
}

.index-wrap .tools-part .part .wrap .img-wrap img[data-v-4453cae8] {
	width: 46px;
	height: 46px;
	margin: 0 auto
}

.index-wrap .tools-part .part .wrap .label[data-v-4453cae8] {
	font-size: 12px;
	text-align: center
}

.index-wrap .tools-part .btn-download[data-v-4453cae8] {
	margin-top: 12px;
	position: relative;
	width: 100%;
	height: 72px;
	border-radius: var(--btn-radius);
	padding: 0 14px 0 18px;
	background: var(--bg-download);
	display: flex;
	align-items: center
}

.index-wrap .tools-part .btn-download[data-v-4453cae8]:after {
	content: "";
	position: absolute;
	right: 14px;
	top: 5px;
	background: url(./download-l-V-DBWi.png) center no-repeat;
	background-size: 100% 100%;
	width: 147px;
	height: 61px
}

.index-wrap .tools-part .btn-download .left .label[data-v-4453cae8] {
	font-size: 20px;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 22px
}

.index-wrap .tools-part .btn-download .left .icon[data-v-4453cae8] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 16px;
	border-radius: 20px;
	background: var(--primary)
}

.index-wrap.c-1 .volume-icon[data-v-4453cae8] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAcCAYAAAB75n/uAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAI9SURBVEiJrZYxctNAFIa/f6VAa99AuYE5QeITkBQUrjAnMJwAcgKukM6DKcwN4gJqwgnijhkaTCog8T4KeyWtJEvyDG9Go5nV7n7vvf/t04qeZr/m70AzALy90XBy3Wedem1+/+ECs2U06O1Uw8m6a63rA8DseW0scaM+S1sjsB+LKal/iyNrnClWbO1Kw8nqKIB9n2egGxwZDkjYxXrIHekT2yevNLzcdALsbp5x4m5MZEoAZwWgPaG3+KfjKiRaYnfLgeFubEuGgXkwA/z+sVbAiOTP++pgBPCPf19ju83xIAOFjcPTZsbU7ufTRoDdLQcyzcrehggsQMK3VtPLRsD298MFnkHkrQFeyFSkqCsS49x+zrMaIPGc5V5W8h5p0SdVpTNSpMiU7TZo8NZAXtAXYj4HpPmg3+O87YrXU7z33DCmoEPb2ahGUHgmaPLWg0xxVfWwAhCqpaxBBVLTovtsxABFeT8Uieo6tVikQZirkFdZTQsEttdJ4ZtxUIsogqYz0KQFZS060hQDSnXfpgVHaFGpIuU96GgtDkD0+GUxFe4M2QXOBnlrTkChRSdG9F8ot+/EdvPiln67f75p+/ljwa30f9U2tEaIqg4Ugm9Sb4wdnOdpCnFqr0WwUCnlMQHm43kCFwCeVT1p/9k6ry32dTECDUgpTk3+flzrtP3qkrZ9BPC4meSneaWEhpiASMdAK6DzXuR4uMJY1/7NppVOX6y613eYnk3WYjuWaYVpg7GR6VrpyWXXWoB/kElEyJm1qw4AAAAASUVORK5CYII=) center no-repeat;
	background-size: 100% 100%
}

.index-wrap.c-1 .tools-part[data-v-4453cae8]:before {
	background-image: url(./t-1-border-1-DZbP7hZu.png)
}

.index-wrap.c-2 .volume-icon[data-v-4453cae8] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAcCAYAAAB75n/uAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAJ5SURBVEiJtVW9jhMxEP5mvEFKgRTeYFPQIjcnIZq7PAGhOSEaloLiqgAVDYJ7guMBkEhJB29wW1BQLk9AumuQSEV0gvNH4f1z1tlNClaytLZn5pvvm7Et2PO7tzl9B+ECECj1ZTH+tNzHT/Yxstenc0f5LFTvQoHIaFqMl6shX90HgC55KM4A1GY42H18exnYzZOMxFtAUkDQZlDOc0LOi9sf8oMA7OZxSuoloCkokFbQOjjEM/H/X9zN+Flx5/16EMBushT8c0lqGgZWHzRgEOwVNxzNtkGCGlhmE7ibS9CkQgVoABoIjZeHCji/7mtSDQWo1oAX2wmHRf6NF6BJm8CKLlAJBm3NSyCn2dHPV1kUwP7KJqAsUAatnQKgalQMKkaND6FP4wyMzoVmIi3aXaBQLqGBoMXAr53cv3qdVmGTBskck+UhggZd0xS7WZeernJKC2AVMCBM2ujZyjAiVVWXOAMF3Mh2GTgDEggO1CEMtg5hB6Du80CafqkC+5YNHWIApptdEHj7mth16CTo/RogCBLLMAIkJfNOsV1MIpf0dEgoVT+D8Ow2DNgOUl9iO2oQr1EF5JslUuQ68K7sWkWO22hZg5hEMIFRpy4HMKj8AUCOrt5kqnpMYg7KpJZrp959LCtALQRawPF7IqIf6XY8KrEO2X4f4kAWFCsw60QpM+fkhF5Zn4UDmltEyrmA5ZrWNtKy8Xv0u2WrSo7//cmQwYMfF1aRTJqVpP23yqdnqz7/pG8TAKCjhXPMGn29mKDgr9MZymt5p/tQfOfMOWhW7WsbTiHU/Ovd5/lgfkMG36Znq1siM4HJhWYtNGvALBOTPBryBYB/PVtWVL/zcrkAAAAASUVORK5CYII=) center no-repeat;
	background-size: 100% 100%
}

.index-wrap.c-3 .volume-icon[data-v-4453cae8] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAcCAYAAAB75n/uAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAKCSURBVEiJtZY9b9NgEMf/d49dqRJIYWRASr5BFoYOqM3IRPkEhAWpU+gngH4CJBbWSkwMvCwsLM7WMWVBYstQibFRmypS7OeO4bEdvzx+YcDS6eLYd7//3WOfH0LP4+Pv27fW0MwSYBmnr0b3zvvEUZ+bPv26O7asXy0DCQOWgZjM6GS0v+yK5T4Ao3jGCrACLM5CxOM+sa0VfF+spwnTG8s6LKrPvGXMbaBnJ4/uz/8JEC02w1gksuRPXAfRt63dvjwdPVh1Ai4uNsMtS5Q0qG6G4DJO4kkVUlqDRXQ9gErEqsO855XeNxkJxmEYvqsKLgGSYO+1S04waWKTJsjPWzwE0/dX66kXsIiuB4HojAUwojt11Uq67YUXsIfwmJUGrARn/VTn1YmrlgRHH/5shjUAgw5dkIJV8yR5FU39L96Tmsa7dyQHGEtDlzStQJyVVPasiizlgCD7QZkSKAwAZXezZqr6enGxNYBRQOEqKAdpDvJ6gRME5MJUPAAWgLkYrM5LCkaDZ08V5APUFFGuiIvAtmoKObwAlaIihSp5W9TU+7wqXwVGqgtLFd8AFNQfCh+AKoqMuF4a0d0CZk9YxxoEvhYZuIiSIgGUqdIihZtVzWsC3QHo5vN6CqbDmPTYMg3q41hhmVLvGdcEJAawVB7dNqDLRPUn3Xy5UwAQap/5NSA1AIsxBquASCYifESafX1cAwnlrxGnV9x/CmZA1K0dUqPKOQvm+N9H57bl6sd6HFszSAIgAVDyAZYHB+1bl6DtIgDA0oxIpqzpKBFATfq2JjIB0Aro3BcZ8BkrlvX5r/PHT5q3K70BD5/uL0PwxIDmBlgxdGUI56rx865YAPgLoIIhq3YPsSQAAAAASUVORK5CYII=) center no-repeat;
	background-size: 100% 100%
}

.index-wrap.c-3 .tools-part[data-v-4453cae8]:before {
	background-image: url(data:image/png;base64,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)
}

.index-wrap.c-4 .volume-icon[data-v-4453cae8] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAcCAYAAAB75n/uAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAALVSURBVEiJrZaxciNFEIa/v3ckO/QboAugioAqXUB85ye4u4DAEbqUxBASUPhSEqckFJdQhgjewIpJDJHqLsFvgENjTU8T7Gq1ktYrUcVUbe32aKb//v/uHo04cFzFuwuhc4CAr8700dtD9umQRb/Eu5eBfu3OBf7kTB/f7ttrhwAEerG70aaH7B1k8MPfi1k60rdprElV9S6dB3pzpg/n/wng8q/F5Ggc12msSRqL0ZFIY6FHwhH6bUx6/UpP7vYCXC4WE0blOo2YpMbxaFy/02iQ8B9HjE63QTZycHFzc3L/4Nd5GRPP4BlK+w5KiSGA6T8sL7cnNwB0b196jknxwD0oOfAc1HYNFoMYzK7i/awX4OL65sQz556DVfT1ExtP8WEEwee9APdLXrpzUrxxlBsW3pHKofheFs+vYjHZAXDXs9pxx1nDoAXrMBka3R5pAXKOSVfz9rsB68pWnMGEF2gBUjuZwQWqwDLIAhlYBcpgBt7YnsFMaMSjvbED4LlxmBtHJkrrbNs5uEUN3t/hPQC+jrSOPFBuvq3LbGWrtYdYdCQqFAmvwBw8CzNqFt5lFvWa1oZqoMM7EtWRqIo1i1XktnbmlXaZVrWkwwAFzIOStda7E7kaZsrRAG0ytRG9R2dHosARapK3ndzSSX4bgNXVtmLad6RvSkRglXorZ+VoHTlNjtQytZ6Ep8+++32G8cwfYiptV0rXrgtgrX/s9kiTcKEXP8f7D0B/JhQ/Eiu91UnmSv/YsEvLrIepr4pEU2AKcZeCcmrYc0rdbJUFxYxigctqbV11jiyQWV2qZkiBKsM88GxN9xsar44Rmz9av//X2Htt+eKnm6mNOTk+hnQMKUE6TlQJUkq3Xz8dvrqkoR8BCuVcwWzpgqVAQsuCTOScT4FBgP33ogd745nbnf+GJfNvPv1kvm/7XoDvXz+9RXZaCvPi3HnmrjhvtfRXe4MD/gUyPLWl8tcgegAAAABJRU5ErkJggg==) center no-repeat;
	background-size: 100% 100%
}

.index-wrap.c-4 .tools-part[data-v-4453cae8]:before {
	background-image: url(data:image/png;base64,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hCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAK4QnAAArhCcAACuEJwAAv7nXr19/rNevX3/8vRcCAMCXLyMi/vSnP/3X770QAAC+XN9+++1/V0TEzDjrCQDAb+JTa1ZExPPnzz/8vssBAOBL9f3337+NuL7VHuHtdgAAfhvffvvtf0d89lvtz549e/v7LQcAgC/R5435Q3i+fPlSeAIA8KuZmY+fN+bffY/nmzdv/ry/JAAAvkSfPtv5Sf7jgFevXn39/v37r/eWBADAl+bZs2dv//Ed9X8KzwjxCQDAf+5fRWfEj/zJzJcvX7598+bNn32/JwAA/443b978+cd+d+hfnvH8nLOfAAD8lB87y/m5nwzPTx4eHu6/+eabrzPz7pcvDQCA/+1m5uPz588//NxvR/rZ4fm5h4eH+4iIFy9eiNAf8fbt23z+/Hl99dVj3d8/1d3dH+r29qlubs46jru6uTmr6raOo6vqrMybquqquqnMvl6OenrqqrubyvN6O7syqzKm8rbqPKfypiqv2/P82/4zqzK6OqsipjKrOroyqjqz4rjM6yMr+7KdnoqomsiKmJrMisiamMrK6s7K43I7IivqyLnun3OOqMyOOS7zs2ay4qicvsyfiZrMy6XnmJjq6/yqm+zpI44j++yjjsrznGMyKydqjqzozK6sjKiOOCYi57K9rjlqIiqrsnuOqcqIOSaOnO7Luuo6JivPmSPzyImoyKhz4ojLR1Cu64rKzJzIz+7rcj+X/z4zETEZ0xkxEdExE5nZGdPXAVPX/dM9ldUTMzk9l3HZMx2Vec50VGRHTufERMzMp+P3p2NFZ81kx0TlGd0RExMZnTFTkd0zU5kd0VORHRFTGT1zWW9FdE9Mxjk11VEzET3R1ZfHc05GddblmNExUdNzTtTnj61nsrKzeyJqsi7rjJ7JIztnunviOOrM6OmeyevzMXEdV5d1Xh5ndvVljcdR50RP9A/P8UTk9XmezpjpM+ao7O5zKmom+rKumakjO85zsm46+pybyj5jps6YqOyKmbNnYi73GzFTMR3XuRMzMZfXKs6nqeOm4+nph9fkOG766elp7o7sp6eZ47iMPY7seJq5zL8e52kuIjtm5rg5Ox5vZo6zJ46Jx8u8x5i5uamejz0RMx8+9NzeVs/03N4e/de/nhPRc9tH/3V6bs/Lvr47et6d827O6T7n/unot/00d3c33f3V/M//PM79/V1///3j3N/f9+Pj4/wOPxaBL8jr168/fvfdd//2X778f+7YsOQXoOC+AAAAAElFTkSuQmCC)
}

.index-wrap.c-5 .volume-icon[data-v-4453cae8] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAcCAYAAAB75n/uAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAIrSURBVEiJlZaxbhNBEIa/mXWU1o9wLuhNmSq5J8A8AaZ0Fd4A8gTUpAkdZWiozw2YzqZBQrJE3iCukBDZHQrf2pvL+u680mlOd7v/N/PPrb3Qc3z9Ze++re3++9ruF2ub9l0nfSZVP23ilFtVcAIiYI7R2UjuutZqH0AQXvgAIYA3MAP1jPusba3gy9KmzvHWKYUKOIU0ijA34+rsmcyPAtwurRCjckIRbWmKJxCAz6eO189HsukEfFpYcXJCpVAcEnU1VHV7yVZpdaqUTcijHtwsbYhQeU8RDHyAXIy9iPcAGOO/nvfNhB8B9A9vfMiLp1cq/ggC0+YnvAPcVDYMgctD4rlqfFpN2Hn+Kgv455gEY5jNOGNRaIjHqoCLxW8rnloUOPctok/8z8QITvdI2oPCujJO/PeWqbSe+2B7wKDZ9bpMCDU+jbXJMQqZOQq6b/pTQAqRRsRq0SSm4hIhye7KAnaQdLKC5KpqimviQhsgQnYZt4iK1tXEuX0qiMM3bDgYScDHAGIluYx3faDuU/1O+loUh0WIpQ/I+k/Y/gAeBdhpHvI/Pk8/8XrIdWVThHODCTDsAgnbDNv+I5xj5YSVCj/kw9ysSzQHcdoDpGwGwSgVLo4BGBB8faPbMFDAg+l+h6sxPzb5o0fnseW6srEc6M0D3M3K9qNL91ckXAaYZt8ZJdAK6DwXeeMqJyIwn5WHjyu9AbNS7oJRCsyBDbAR+HhivOxaC/AfCpZ9XPE94OwAAAAASUVORK5CYII=) center no-repeat;
	background-size: 100% 100%
}

.index-wrap.c-5 .tools-part[data-v-4453cae8]:before {
	background-image: url(data:image/png;base64,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DgAAX6KPG/NDeL58+VJ4AgDwl+nuh48b85++x/P169c/zE8JAIAv0fv3dr6X/zrg9vb2+bt3757PTQkAgC/N06dP7/71FfV/C88I8QkAwB/3c9EZ8Qt/MvPly5d3r1+//sH3ewIA8Hu8fv36h1/67NDP3vH8mLufAAD8ml+6y/mxXw3P925ubo5ff/3188y8/vNTAwDgP113Pzx79uz+t3470m8Oz4/d3NwcIyJevHghQn/B3d1dPnv2rJ48OdXx+KSur091dfVYh8Ne23Zdh8NeVVe1baue1KEecq8ndVWnx72OeahT7ZV5qMy9srbKx1WZW+15foxclVmXf5flqNr38/rIqsysfe/KzIo4P66s2iJrrazYqnJlRWSt7IrI6j4vZ65akRUrz9tFVmR+GN8ZFbFVRGZm1Iqs7t4iKs+PWR1V2V1Rh1wdlZHV0RVZ1Ssqs7e9syKqsqOituxeW+SWvXqr3HKttXVVRWf1eQ6ZHdVZtfbesipXx9YdlVHVGdWdVVnZK7bOyBWxVWzZ3dvqrKys7qi8PM95mnHe/+qta6voqIio7qqIzI7eMrdcq7fOrOysy/+e7uiuiBXRHRkrekVkruxeEdGZq6NzRUZndEf0il4dER0ZKzNW94ota997RWWsjFiR3dFnmbEyuqOjI3N17p0RXRF7d0TE3pG5IrorY3VEV/Zaq3s7T6AzY/XqzurOy9i1Vlfliu7OFR3bWhHZsbore8VlX9Grs3L1vkdmrqxY0dEdqyti9WVuGWtFRK9YvW25omOtXrFt256re12Oe6tY0efnz8p13kV01vmcRURv27bH2jsiunt1RHdEruzVUXket/bOrLVi74ro7j5fh4iuyrXvex+q1oruqlrde0d0V+SKjt7jsty1Irq7zttX1IrujlirO85jqlbsjx3RvXd3bedttsr1+PjY23a1Oh77sOV6fDzPeYu1ord+jFN3d0fX6ug+dK7u7j7sK/rQfXroq+24HuK+D4fjiof77j70Q9/31dVX6/7+p746PFndP/b9/eqrq+18Nve6PG6r195ve++19j4+butuHfv6+n6t9aT//vdTH4/X682bUx+Px3U6nfoz/FoEviCvXr16+O677373X778P+olquSJh0mhAAAAAElFTkSuQmCC)
}

.index-wrap .title[data-v-4453cae8] {
	font-size: 18px;
	color: #000
}

.index-wrap .membership-list[data-v-4453cae8] {
	margin-top: 19px
}

.index-wrap .membership-list .swiper-vertical[data-v-4453cae8] {
	touch-action: auto
}

.index-wrap .membership-list .membership-content[data-v-4453cae8] {
	max-height: 120px;
	margin: 10px 0
}

.index-wrap .membership-list .membership-content[data-v-4453cae8] .swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between
}

.activity-wrap[data-v-a6a73b99] {
	background: url(./activite-bg-w9BRM5xa.png) no-repeat 216px 5.2px/84px 67.2px
}

.small-btn[data-v-21d01079] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-0e7caabf] {
	padding-bottom: 80px
}

.home-wrap .custom-swiper[data-v-0e7caabf] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 1px solid var(--border-color);
	background: var(--bg-card)
}

.home-wrap .custom-swiper .van-swipe[data-v-0e7caabf] {
	border-radius: 4px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-0e7caabf] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-0e7caabf] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-0e7caabf] .van-swipe-item {
	border-radius: 4px
}

.home-wrap .custom-swiper .van-swipe[data-v-0e7caabf] .van-swipe-item img {
	width: 100%;
	height: 175px;
	border-radius: 4px;
	object-fit: center
}

.home-wrap .card1[data-v-0e7caabf] {
	background: url(./home-card-bg1-DaGohe6n.png) no-repeat center;
	overflow: hidden;
	background-size: cover
}

.home-wrap .card2[data-v-0e7caabf] {
	background: url(./home-card-bg2-BG8YrEpv.png) no-repeat center;
	overflow: hidden;
	background-size: cover
}

.home-wrap .wallet-info[data-v-0e7caabf] {
	min-height: 116px;
	border-radius: 12px;
	background-color: var(--bg-card);
	padding: 20px 0 0 11.4px;
	box-sizing: border-box;
	color: var(--primary)
}

.home-wrap .wallet-info .head[data-v-0e7caabf] {
	font-size: 14px;
	margin-bottom: 8px;
	font-weight: 400
}

.home-wrap .wallet-info .body em[data-v-0e7caabf] {
	font-size: 18px;
	font-weight: 600;
	margin-right: 5px
}

.home-wrap .wallet-info .body span[data-v-0e7caabf] {
	font-size: 12px;
	color: var(--text-gray)
}

.home-wrap .wallet-info .foot[data-v-0e7caabf] {
	font-size: 13px
}

.home-wrap .wallet-bg-1[data-v-0e7caabf] {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIwAAABkCAMAAABjCSjjAAAAQlBMVEVHcEzY3dystLfp7OujrrHCy8q6wsPGz87y9POiqayxubu2vr/h5eSpsbPH0M+wuLrDzMzBysmlq66iqKu1vr7M1dNxZ1tVAAAAFnRSTlMAMzMzMzMzMzMzMzMyECwKLxIcLSUaFb1B7gAAA1tJREFUaN7t2suWgyAMAFAB8QlSrf3/Xx18lihVRGhm0ax6ZlHvCZA4pEnyi1/84he/uBlKdt3zWZbPTiI8vH29DEZpxFN+MQXtq2/4EE3X9YAxRkpp95Vk9M2Dm1FBRVVnPNfB+68kA0aW0Q1jifY7yZgZdUVpqoNuFHM8Ilh6SzI0I12D5vbgMY5rD5ORbgNgiGCsKERgzFI0hu2QbZNhwxDtKJYIhtkVDc05CgoY4TDSXjSqQ0xW7OP+BpZbyHJa+SEmj4GRtto1nYtDDPmAubNMamZYisYxhkXAdMOx+VAyrm6Z2xi9YWx1dDgq7MBSsxiYsqz2jPm7Pzjy/Zl228CqbdUJprYw5u/eMKosJx8YLpixpvfHmHnH2E4HmcsvrfkJwwHTTb2lUecYYf96JoRwUDhgZDV3uuYcU4SIA4ws6dJ32zMMiYzRpTXlp6n5DmYs89miwcVMLSf9F5il/c27psfEvFtxOqzUQyFiJHxLSs/rTDyMhC9LT5XgYa5YYmOkbibOlsgYOba2N0YlX8OwLUbO7d7REh7T7C2LRiV4GEkp0KgED6MtQKMSPMxoeWtcLNEws2XROFliYVbLrFEJHkZWFdCoBA+jLUCjEjzMaHlrnC0xMLNl1ThbImBkXQPNhYvq8L2proHmyqV5aAyva6C5dIEfGMOzGmiuDRPCYniWAc3FwUZQzGAxNVeHLCExJMuA5vLAJyBG8Axorg+fPDFsf1Hytkwaj0GYJ4YQIrYWDjQ+Qzl3DDNu2YTGkJ3F0HhZLmDM5w+fwb0aW+dAU/iNwJwxzHz+FsOMqZS/xR0jzOdvlklXO6DxHQ36YeAGHtqAqfEeU/otEzjaY7M2NP4j00sbWHx8cTA0N8a3F+oMYweWVXNn3nS3HTBjJDRE3uBhGBhQaQsmZjMuyzExZD+pwsNAhyCoGDA4EwUqRpgjRTH9/gANk5fUtIxnCw1Dh3lAbgzPEDFimgcMZ5oU2Jh8GU8Q46hjYeg0RTJalkDDME2pybbwYGGqnO2rIBbG8noj0DCWuTvDy4wlNYiYfWoEHsaSGkTMPjUECTPE/q+ImL1G/SdM858wN1IT9Pczd1MTAVPc/cc/ZwEx4i6GhEzN6yYm6Dr57uEVIwr8hVoxYVNzvlB/ncnlEPR5tsEAAAAASUVORK5CYII=);
	background-position: 100% 100%;
	background-repeat: no-repeat;
	background-size: 77px 55px
}

.home-wrap .wallet-bg-2[data-v-0e7caabf] {
	background-image: url(data:image/png;base64,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);
	background-position: 100% 100%;
	background-repeat: no-repeat;
	background-size: 77px 55px
}

.home-wrap .customer-van-tabs[data-v-0e7caabf] .van-tabs__line {
	background: linear-gradient(to right, #28c7a0, #847cd5)
}

.small-btn[data-v-4626ee51] {
	background: var(--primary);
	color: #000;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-aaa89ed2] {
	padding-bottom: 60px
}

.home-wrap .custom-swiper[data-v-aaa89ed2] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius)
}

.home-wrap .custom-swiper .van-swipe[data-v-aaa89ed2] {
	border-radius: 10px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-aaa89ed2] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-aaa89ed2] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-aaa89ed2] .van-swipe-item {
	border-radius: 10px
}

.home-wrap .custom-swiper .van-swipe[data-v-aaa89ed2] .van-swipe-item img {
	width: 100%;
	height: 200px;
	border-radius: 10px;
	object-fit: center
}

.home-wrap .tool[data-v-aaa89ed2] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADYAAAA2CAYAAACMRWrdAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAMSSURBVGiB7ZpNaxNRFIafc2YynZRGa62timJREelCN4IgiN3qRhcuBBf6FwT3/Qm6cusfcOFOBEGX4sZFwW2lflQtta1JM2mazHExiaQ1sYmZOs3FZ5PhDoT3zbn3ZIbzCj1ii0xRZwbhOiJHMZlENACNQMrJpxchWkY0IvaiGD9S9cqIHxEHEeQivKCM5CMII2SkjBQidDza1MkoF04Xo/q5Uj5/KgKqQElE4l50SteGPnIX5Q7mn0aG38XeiefqH1vAv/iRfbOLvf5Anak0NIW2/QawJiKVbr5lR2P2mRsYD8D38c8+ZGLuSa9SU6YGLO9k8I/G7DMPMP/mHjG0nSKw2mmLartFW2TKPvEWGTtG4d6tPWgKoABMmpnf7uZvFbNFpoh5iXf8KZMLD3ddXv/UgK8iUmtd3GLM5hkl4CXe8VcDYqpJVUS2NLCtW3GIWWTftwEzBRCY2Vjrwq/9aR+YwfybjD+69u91pULBzCoiUobWiimPCa/cJ7j9IzNp/XOgeaHQqBbDXxh78TozSengm9kINCvmMYt/ci+29L9hBEBsnlGG9D1H6uezVpQin5Qh7iCjz7JWkjKhEus03sRc1kpSZlhRPUNw6U3WSlLGU5BxZKqYtZKU8dVMc4QXXDOmKqLrBFfXs1aSNpq8zruHgu+qMXXVmLMV89w0FrtqTP3AuVYPoLHloqxF7AaqGrpZMQjcPGNI3lVjhf/GBglFJtw0tqmH3TSWC8862u6Dy27+QcNEPWsRu4ECPQ2tB4RYSQZnrlFTwMWtuKmAi+2+qiT5CdcoaWMovZG1khSpiEjcnGiWMpWSLmvQGPyJSAk3umOtmdhpTQ2sZCQmTZabF7+MNabtgzycKLbmq7bkPETkO0mMbtCoAqutC+2yVEsM1nmrAUvbw2Jt02+N4NUhIPgHwvqhSmLqt0J0jPWZmQKjJCmzvUixcXTasnMQ0ywEDtIST8qYGrDSjBZ1ovvobGJwPxD2Kexv2SDJBnf1MNG1sSaNLTpCcv5yJJVsG+jsg5ikMnWSh/RKu3P0J34C3NvjqHVCAlkAAAAASUVORK5CYII=) no-repeat center
}

.home-wrap .bg-blur[data-v-aaa89ed2] {
	position: relative;
	z-index: 1;
	overflow: hidden
}

.home-wrap .bg-blur[data-v-aaa89ed2]:before {
	content: "";
	position: absolute;
	width: 100px;
	height: 100px;
	background: var(--bg-color);
	filter: blur(50px);
	bottom: -40px;
	right: -40px;
	border-radius: 50%;
	z-index: 0
}

.home-wrap .slogan-banner[data-v-aaa89ed2] {
	background: url(./index-quan-bg-CkUO8Ku9.png) no-repeat center;
	background-size: cover;
	height: 120px;
	border-radius: 22px;
	margin-top: 16px
}

.home-wrap .customer-van-tabs[data-v-aaa89ed2] .van-tabs__line {
	background: var(--primary)
}

.home-wrap .tab-bar[data-v-aaa89ed2] {
	display: flex;
	align-items: center;
	background: linear-gradient(180deg, #ffffff1f 3%, #fff0)
}

.rich-text[data-v-aaa89ed2] table {
	max-width: 100% !important;
	border: 1px solid #ccc;
	margin: 10px 0
}

.rich-text[data-v-aaa89ed2] table th,
.rich-text[data-v-aaa89ed2] table td {
	border: 1px solid #ccc
}

.rich-text[data-v-aaa89ed2] table td {
	padding: 0 5px;
	word-break: break-all
}

.rich-text[data-v-aaa89ed2] p {
	font-size: 14px;
	line-height: 1.6
}

.rich-text[data-v-aaa89ed2] h1 {
	font-size: 32px;
	font-weight: 700
}

.rich-text[data-v-aaa89ed2] h2 {
	font-size: 24px;
	font-weight: 700
}

.rich-text[data-v-aaa89ed2] a {
	color: var(--primary);
	text-decoration: underline
}

.rich-text[data-v-aaa89ed2] a:hover {
	text-decoration: none
}

.rich-text[data-v-aaa89ed2] p>img {
	max-width: 90% !important;
	height: auto !important;
	margin: 0 auto
}

.small-btn[data-v-e537bc08] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.index-wrap[data-v-3f8bfbdf] {
	position: relative;
	z-index: 1;
	padding-top: 60px;
	padding-bottom: 80px;
	overflow-y: auto
}

.index-wrap .swiper-container[data-v-3f8bfbdf] {
	box-sizing: border-box;
	position: relative;
	border-radius: var(--card-radius);
	width: 100%;
	margin: var(--mt) auto 0
}

.index-wrap .swiper-container .custom-swiper[data-v-3f8bfbdf] {
	width: 100%;
	overflow: hidden;
	height: 160px;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 3px solid transparent
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-3f8bfbdf] {
	border-radius: 8px;
	overflow: hidden
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-3f8bfbdf] .van-swipe__indicators {
	bottom: 15px !important;
	left: 20%
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-3f8bfbdf] .van-swipe__indicator {
	width: 12px;
	height: 2px;
	opacity: .4;
	border-radius: 1px;
	background-color: var(--text-gray6)
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-3f8bfbdf] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.index-wrap .swiper-container .custom-swiper .van-swipe-item img[data-v-3f8bfbdf] {
	width: 100%;
	height: 160px;
	border-radius: 8px;
	object-fit: center
}

.index-wrap .notice[data-v-3f8bfbdf] {
	margin-top: var(--mt);
	background: none;
	border-radius: 40px;
	padding: 0 12px;
	background: var(--bg-card);
	height: 48px;
	position: relative;
	cursor: pointer;
	--van-notice-bar-padding: 0;
	--van-notice-bar-height: 48px
}

.index-wrap .asserts-part[data-v-3f8bfbdf] {
	margin-top: 20px;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 15px
}

.index-wrap .asserts-part .assert[data-v-3f8bfbdf] {
	width: 100%;
	height: 120px;
	border-radius: var(--radius);
	padding: 20px;
	background: url(./index-asserts-DnTc8Xqz.png) center no-repeat;
	background-size: 100% 100%;
	color: var(--btn-text3)
}

.index-wrap .asserts-part .assert .head[data-v-3f8bfbdf] {
	font-size: 14px;
	margin-bottom: 4px
}

.index-wrap .asserts-part .assert .body[data-v-3f8bfbdf] {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 5px
}

.index-wrap .asserts-part .assert .body span[data-v-3f8bfbdf] {
	font-size: 12px;
	margin-left: 5px;
	font-weight: 400
}

.index-wrap .asserts-part .assert .foot[data-v-3f8bfbdf] {
	font-size: 14px
}

.index-wrap .tools-part[data-v-3f8bfbdf] {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: var(--mt);
	row-gap: 10px
}

.index-wrap .tools-part .tool-item[data-v-3f8bfbdf] {
	width: 100%;
	cursor: pointer
}

.index-wrap .tools-part .tool-item .img-wrap[data-v-3f8bfbdf] {
	width: 54px;
	height: 54px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: var(--card-radius);
	color: #0080ff;
	margin: 0 auto 4px
}

.index-wrap .tools-part .tool-item .label[data-v-3f8bfbdf] {
	font-size: 12px;
	text-align: center
}

.index-wrap .membership-list[data-v-3f8bfbdf] {
	margin-top: var(--mt)
}

.index-wrap .membership-list .swiper-vertical[data-v-3f8bfbdf] {
	touch-action: auto
}

.index-wrap .membership-list .membership-content[data-v-3f8bfbdf] {
	max-height: 120px;
	margin: 10px 0
}

.index-wrap .membership-list .membership-content[data-v-3f8bfbdf] .swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between
}

.index-wrap .partner-wrap[data-v-3f8bfbdf] {
	margin-top: var(--mt);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px
}

.index-wrap .partner-wrap .partner-item[data-v-3f8bfbdf] {
	padding: 6px 10px;
	border-radius: var(--radius);
	background: var(--bg-card);
	display: flex;
	align-items: center
}

.index-wrap .partner-wrap .partner-item img[data-v-3f8bfbdf] {
	width: 30px;
	height: 30px;
	border-radius: var(--radius)
}

.index-wrap .partner-wrap .partner-item div[data-v-3f8bfbdf] {
	font-size: 12px;
	margin-left: 4px
}

.small-btn[data-v-4be9bbcc] {
	background: var(--primary);
	color: #000;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-cbd7c223] {
	padding-bottom: 60px
}

.home-wrap .custom-swiper[data-v-cbd7c223] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius)
}

.home-wrap .custom-swiper .van-swipe[data-v-cbd7c223] {
	border-radius: 10px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-cbd7c223] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-cbd7c223] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-cbd7c223] .van-swipe-item {
	border-radius: 10px
}

.home-wrap .custom-swiper .van-swipe[data-v-cbd7c223] .van-swipe-item img {
	width: 100%;
	height: 200px;
	border-radius: 10px;
	object-fit: center
}

.home-wrap .tool[data-v-cbd7c223] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADYAAAA2CAYAAACMRWrdAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAMSSURBVGiB7ZpNaxNRFIafc2YynZRGa62timJREelCN4IgiN3qRhcuBBf6FwT3/Qm6cusfcOFOBEGX4sZFwW2lflQtta1JM2mazHExiaQ1sYmZOs3FZ5PhDoT3zbn3ZIbzCj1ii0xRZwbhOiJHMZlENACNQMrJpxchWkY0IvaiGD9S9cqIHxEHEeQivKCM5CMII2SkjBQidDza1MkoF04Xo/q5Uj5/KgKqQElE4l50SteGPnIX5Q7mn0aG38XeiefqH1vAv/iRfbOLvf5Anak0NIW2/QawJiKVbr5lR2P2mRsYD8D38c8+ZGLuSa9SU6YGLO9k8I/G7DMPMP/mHjG0nSKw2mmLartFW2TKPvEWGTtG4d6tPWgKoABMmpnf7uZvFbNFpoh5iXf8KZMLD3ddXv/UgK8iUmtd3GLM5hkl4CXe8VcDYqpJVUS2NLCtW3GIWWTftwEzBRCY2Vjrwq/9aR+YwfybjD+69u91pULBzCoiUobWiimPCa/cJ7j9IzNp/XOgeaHQqBbDXxh78TozSengm9kINCvmMYt/ci+29L9hBEBsnlGG9D1H6uezVpQin5Qh7iCjz7JWkjKhEus03sRc1kpSZlhRPUNw6U3WSlLGU5BxZKqYtZKU8dVMc4QXXDOmKqLrBFfXs1aSNpq8zruHgu+qMXXVmLMV89w0FrtqTP3AuVYPoLHloqxF7AaqGrpZMQjcPGNI3lVjhf/GBglFJtw0tqmH3TSWC8862u6Dy27+QcNEPWsRu4ECPQ2tB4RYSQZnrlFTwMWtuKmAi+2+qiT5CdcoaWMovZG1khSpiEjcnGiWMpWSLmvQGPyJSAk3umOtmdhpTQ2sZCQmTZabF7+MNabtgzycKLbmq7bkPETkO0mMbtCoAqutC+2yVEsM1nmrAUvbw2Jt02+N4NUhIPgHwvqhSmLqt0J0jPWZmQKjJCmzvUixcXTasnMQ0ywEDtIST8qYGrDSjBZ1ovvobGJwPxD2Kexv2SDJBnf1MNG1sSaNLTpCcv5yJJVsG+jsg5ikMnWSh/RKu3P0J34C3NvjqHVCAlkAAAAASUVORK5CYII=) no-repeat center
}

.home-wrap .bg-blur[data-v-cbd7c223] {
	position: relative;
	z-index: 1;
	overflow: hidden
}

.home-wrap .bg-blur[data-v-cbd7c223]:before {
	content: "";
	position: absolute;
	width: 100px;
	height: 100px;
	background: var(--bg-color);
	filter: blur(50px);
	bottom: -40px;
	right: -40px;
	border-radius: 50%;
	z-index: 0
}

.home-wrap .slogan-banner[data-v-cbd7c223] {
	background: url(./index-quan-bg-CkUO8Ku9.png) no-repeat center;
	background-size: cover;
	height: 120px;
	border-radius: 22px;
	margin-top: 16px
}

.home-wrap .customer-van-tabs[data-v-cbd7c223] .van-tabs__line {
	background: var(--primary)
}

.home-wrap .tab-bar[data-v-cbd7c223] {
	display: flex;
	align-items: center;
	background: linear-gradient(180deg, #ffffff1f 3%, #fff0)
}

.rich-text[data-v-cbd7c223] table {
	max-width: 100% !important;
	border: 1px solid #ccc;
	margin: 10px 0
}

.rich-text[data-v-cbd7c223] table th,
.rich-text[data-v-cbd7c223] table td {
	border: 1px solid #ccc
}

.rich-text[data-v-cbd7c223] table td {
	padding: 0 5px;
	word-break: break-all
}

.rich-text[data-v-cbd7c223] p {
	font-size: 14px;
	line-height: 1.6
}

.rich-text[data-v-cbd7c223] h1 {
	font-size: 32px;
	font-weight: 700
}

.rich-text[data-v-cbd7c223] h2 {
	font-size: 24px;
	font-weight: 700
}

.rich-text[data-v-cbd7c223] a {
	color: var(--primary);
	text-decoration: underline
}

.rich-text[data-v-cbd7c223] a:hover {
	text-decoration: none
}

.rich-text[data-v-cbd7c223] p>img {
	max-width: 90% !important;
	height: auto !important;
	margin: 0 auto
}

.small-btn[data-v-bd2956a5] {
	background: var(--primary);
	color: #000;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-f825092e] {
	padding-bottom: 60px
}

.home-wrap .custom-swiper[data-v-f825092e] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius)
}

.home-wrap .custom-swiper .van-swipe[data-v-f825092e] {
	border-radius: 10px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-f825092e] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-f825092e] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-f825092e] .van-swipe-item {
	border-radius: 10px
}

.home-wrap .custom-swiper .van-swipe[data-v-f825092e] .van-swipe-item img {
	width: 100%;
	height: 200px;
	border-radius: 10px;
	object-fit: center
}

.home-wrap .tool[data-v-f825092e] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADYAAAA2CAYAAACMRWrdAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAMSSURBVGiB7ZpNaxNRFIafc2YynZRGa62timJREelCN4IgiN3qRhcuBBf6FwT3/Qm6cusfcOFOBEGX4sZFwW2lflQtta1JM2mazHExiaQ1sYmZOs3FZ5PhDoT3zbn3ZIbzCj1ii0xRZwbhOiJHMZlENACNQMrJpxchWkY0IvaiGD9S9cqIHxEHEeQivKCM5CMII2SkjBQidDza1MkoF04Xo/q5Uj5/KgKqQElE4l50SteGPnIX5Q7mn0aG38XeiefqH1vAv/iRfbOLvf5Anak0NIW2/QawJiKVbr5lR2P2mRsYD8D38c8+ZGLuSa9SU6YGLO9k8I/G7DMPMP/mHjG0nSKw2mmLartFW2TKPvEWGTtG4d6tPWgKoABMmpnf7uZvFbNFpoh5iXf8KZMLD3ddXv/UgK8iUmtd3GLM5hkl4CXe8VcDYqpJVUS2NLCtW3GIWWTftwEzBRCY2Vjrwq/9aR+YwfybjD+69u91pULBzCoiUobWiimPCa/cJ7j9IzNp/XOgeaHQqBbDXxh78TozSengm9kINCvmMYt/ci+29L9hBEBsnlGG9D1H6uezVpQin5Qh7iCjz7JWkjKhEus03sRc1kpSZlhRPUNw6U3WSlLGU5BxZKqYtZKU8dVMc4QXXDOmKqLrBFfXs1aSNpq8zruHgu+qMXXVmLMV89w0FrtqTP3AuVYPoLHloqxF7AaqGrpZMQjcPGNI3lVjhf/GBglFJtw0tqmH3TSWC8862u6Dy27+QcNEPWsRu4ECPQ2tB4RYSQZnrlFTwMWtuKmAi+2+qiT5CdcoaWMovZG1khSpiEjcnGiWMpWSLmvQGPyJSAk3umOtmdhpTQ2sZCQmTZabF7+MNabtgzycKLbmq7bkPETkO0mMbtCoAqutC+2yVEsM1nmrAUvbw2Jt02+N4NUhIPgHwvqhSmLqt0J0jPWZmQKjJCmzvUixcXTasnMQ0ywEDtIST8qYGrDSjBZ1ovvobGJwPxD2Kexv2SDJBnf1MNG1sSaNLTpCcv5yJJVsG+jsg5ikMnWSh/RKu3P0J34C3NvjqHVCAlkAAAAASUVORK5CYII=) no-repeat center
}

.home-wrap .draw-card[data-v-f825092e] {
	background: url(./draw-bg-DMrctCjh.jpg) no-repeat center;
	background-size: cover
}

.home-wrap .lh-card[data-v-f825092e] {
	background: url(./lh-bg-Djhll_5s.jpg) no-repeat center;
	background-size: cover
}

.home-wrap .invest-card[data-v-f825092e] {
	background: url(./invest-bg-Ct6KntBN.jpg) no-repeat center;
	background-size: cover
}

.home-wrap .bg-blur[data-v-f825092e] {
	position: relative;
	z-index: 1;
	overflow: hidden
}

.home-wrap .bg-blur[data-v-f825092e]:before {
	content: "";
	position: absolute;
	width: 100px;
	height: 100px;
	background: var(--bg-color);
	filter: blur(50px);
	bottom: -40px;
	right: -40px;
	border-radius: 50%;
	z-index: 0
}

.home-wrap .slogan-banner[data-v-f825092e] {
	background: url(./invite-bg-DYVLuv4I.jpg) no-repeat center;
	background-size: cover;
	height: 120px;
	border-radius: 22px;
	margin-top: 16px
}

.home-wrap .customer-van-tabs[data-v-f825092e] .van-tabs__line {
	background: var(--primary)
}

.home-wrap .tab-bar[data-v-f825092e] {
	display: flex;
	align-items: center;
	background: linear-gradient(180deg, #ffffff1f 3%, #fff0)
}

.rich-text[data-v-f825092e] table {
	max-width: 100% !important;
	border: 1px solid #ccc;
	margin: 10px 0
}

.rich-text[data-v-f825092e] table th,
.rich-text[data-v-f825092e] table td {
	border: 1px solid #ccc
}

.rich-text[data-v-f825092e] table td {
	padding: 0 5px;
	word-break: break-all
}

.rich-text[data-v-f825092e] p {
	font-size: 14px;
	line-height: 1.6
}

.rich-text[data-v-f825092e] h1 {
	font-size: 32px;
	font-weight: 700
}

.rich-text[data-v-f825092e] h2 {
	font-size: 24px;
	font-weight: 700
}

.rich-text[data-v-f825092e] a {
	color: var(--primary);
	text-decoration: underline
}

.rich-text[data-v-f825092e] a:hover {
	text-decoration: none
}

.rich-text[data-v-f825092e] p>img {
	max-width: 90% !important;
	height: auto !important;
	margin: 0 auto
}

.small-btn[data-v-40f0d142] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.index-wrap[data-v-51afd82b] {
	position: relative;
	z-index: 1;
	padding-top: 60px;
	padding-bottom: 80px
}

.index-wrap .swiper-container[data-v-51afd82b] {
	box-sizing: border-box;
	position: relative;
	border-radius: var(--card-radius);
	width: 100%;
	margin: 12px auto 0
}

.index-wrap .swiper-container .custom-swiper[data-v-51afd82b] {
	width: 100%;
	overflow: hidden;
	height: 160px;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 3px solid transparent
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-51afd82b] {
	border-radius: 8px;
	overflow: hidden
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-51afd82b] .van-swipe__indicators {
	bottom: 15px !important;
	left: 20%
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-51afd82b] .van-swipe__indicator {
	width: 12px;
	height: 2px;
	opacity: .4;
	border-radius: 1px;
	background-color: var(--text-gray6)
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-51afd82b] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.index-wrap .swiper-container .custom-swiper .van-swipe-item img[data-v-51afd82b] {
	width: 100%;
	height: 160px;
	border-radius: 8px;
	object-fit: center
}

.index-wrap .notice-info[data-v-51afd82b] {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	cursor: pointer;
	height: 40px;
	border-radius: 26px;
	background: var(--bg-weight);
	border: 1px solid var(--border-color2);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	margin-top: 6px;
	padding: 0 25px 0 5px;
	color: var(--btn-text)
}

.index-wrap .notice-info .volume-icon[data-v-51afd82b] {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 16px;
	margin: 0 9px 0 10px
}

.index-wrap .notice-info .van-notice-bar[data-v-51afd82b] {
	width: 100%;
	padding: 0 5px;
	background: transparent;
	font-size: 12px;
	color: var(--btn-text)
}

.index-wrap .asserts-part[data-v-51afd82b] {
	margin-top: 0;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 15px
}

.index-wrap .asserts-part .assert[data-v-51afd82b] {
	width: 100%;
	height: 120px;
	border-radius: var(--radius);
	padding: 20px;
	border: 1px solid var(--border-color2)
}

.index-wrap .asserts-part .assert .head[data-v-51afd82b] {
	font-size: 16px;
	margin-bottom: 4px
}

.index-wrap .asserts-part .assert .body[data-v-51afd82b] {
	--at-apply: font-size: 30px;
	font-weight: 700;
	margin-bottom: 5px;
	color: var(--primary)
}

.index-wrap .asserts-part .assert .body span[data-v-51afd82b] {
	font-size: 12px;
	margin-left: 5px;
	font-weight: 400
}

.index-wrap .asserts-part .assert .foot[data-v-51afd82b] {
	font-size: 14px;
	color: var(--text-gray6)
}

.index-wrap .asserts-part .assert[data-v-51afd82b]:nth-of-type(1) {
	background: url(./assert-card-1-sVX_PsKu.png) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .asserts-part .assert[data-v-51afd82b]:nth-of-type(2) {
	background: url(./assert-card-2-DB8MY-Eo.png) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part[data-v-51afd82b] {
	margin-top: 0;
	padding: var(--mg) 0;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	row-gap: 10px
}

.index-wrap .tools-part[data-v-51afd82b]:after {
	display: none
}

.index-wrap .tools-part[data-v-51afd82b]:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 200px;
	background-size: 100% 100%;
	z-index: 0;
	pointer-events: none
}

.index-wrap .tools-part .part[data-v-51afd82b] {
	width: 100%
}

.index-wrap .tools-part .part .wrap[data-v-51afd82b] {
	display: flex;
	flex-direction: column;
	align-items: center
}

.index-wrap .tools-part .part .wrap .img-wrap[data-v-51afd82b] {
	width: 100%;
	margin-bottom: 4px
}

.index-wrap .tools-part .part .wrap .img-wrap img[data-v-51afd82b] {
	width: 49px;
	height: 49px;
	margin: 0 auto
}

.index-wrap .tools-part .part .wrap .label[data-v-51afd82b] {
	font-size: 12px;
	text-align: center
}

.index-wrap .tools-part .btn-download[data-v-51afd82b] {
	margin-top: 12px;
	position: relative;
	width: 100%;
	height: 72px;
	border-radius: var(--btn-radius);
	padding: 0 14px 0 18px;
	background: var(--bg-download);
	display: flex;
	align-items: center
}

.index-wrap .tools-part .btn-download[data-v-51afd82b]:after {
	content: "";
	position: absolute;
	right: 14px;
	top: 5px;
	background: url(./download-l-V-DBWi.png) center no-repeat;
	background-size: 100% 100%;
	width: 147px;
	height: 61px
}

.index-wrap .tools-part .btn-download .left .label[data-v-51afd82b] {
	font-size: 20px;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 22px
}

.index-wrap .tools-part .btn-download .left .icon[data-v-51afd82b] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 16px;
	border-radius: 20px;
	background: var(--primary)
}

.index-wrap .volume-icon[data-v-51afd82b] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAATRSURBVHic7Zw9b9tGGMd/NjLLtJu6gOHhjLpDBBRg0MHdSg9eDAQQGnjqYOkL1MrSqYVpdOtiu0uzWR6arXD7CaRs6SRPneqKQAwXNYKIyRdQh8d0KIo0KYovMsUfQAg4irzjH8+9PffcwZRifIkBnABdrcJAqzAAeivLnABGnmWbBkxgEHK1AZVP8fJDQ6wmTBzn6jFDIimgS3Rx3CIVHoV86NDHq1UGZ88Z9LtytV8wMDZ8RarnU+xs0AkQp/eSweBi9Kpt+bZHhaSJT7UxNsRi/MQZXIhwnmf6uX1Bipj4iNNsBAvjvnyeTYUHab04hEPEeoYw92D/2xxKcwdZC+R04zXvjcMfoFnPuDQRyFIghc/gTq3C2S+gVzMsyRhkJZAiQJz2r/I7rcxnkEcNGQAqd6JenTpx6h9/RPszRQ9pIxXAXMqZNm8yGy7JUzj8HrRK/BfPfTqaFPNVBtIuKk+6BaylaUEmPuKYe3Dy02TiJISBVPugSa/64nNqaVlQ6t34BBakgH2iTU82k26kFXCGTB9u0SpiNbWthHMbD0V0YVhZpnV1TSepKqYhjXEbjzhOT5WzOCYy36tH+K8FNK6uaYB/L2bg8uQRzeXQRyxHuV/kiJPnGGdnGx2xnDAsoAGsAS0n0V3F1CcPOfzvzYdRrv0+fsH0qgwA8+7G/3kd6lCzgANcorhxGjZFgi7MZkO68TQZo5FWiwt0++/QPOkWcAocAXZgPgAPF+m+6Q+3HeOgVcRS9Eew15DftBmzF9ORntVY0rDe2pwiFmOF5oM0XCdDb6uKBeiPpmK84kuCA8U7eQDsuhNqW3D2PI2s7idzSA90Wz97L/NvWKOQlQXN4fHGDS7SyCZ5shIoi9n8vaYUKIRSoBBKgUIoBQqhFCiEvNbFMmVnG/1Vl93X/47Mx4KwgT+ATuHHQeuK5t/WqOs3CuuKZ4UXaHGBvs9MPhJLGlbh26D+u/jPvrXRCi8QcBz3QbXKceGr2A1N4CsYq6qdAq1ZESg2s1DFJqIUKIRSoBBKgUIoBQqhFCiEUqAQSoFCmMez7Gpd5lSSKWUeOHcnHPycU0nSRXETsTLufjPfpWdjA/b3CrP0rOETRAp0kKiOzp353PxOtO/KCV6obcHu19mszI4hUA2JXQqiwx1CpRL+ksWWgjEEMoi2G6iDj1BOL2YBm96bcTGPofHdZAFYCdJZWfYPjvJg8CHq1XAS/VQ3VpbZvbrG0CqoaY0yi+HuqCOheCpiFgeAmZQPRUNUv41Qd0hru8EE/qAmIlQU51ligeQ28DtSTS33DesSHj+Bzp8J5TQ5R0ig5gF3hN4B7GxjpOGF05Bew/DeSHLLU0IeRQ2xqD1GLcompa0INmJJR94bz36cuoGojcRQrwEHiwu3FnWOfIOd9mYWE58Y5fpTibyfhCwjzNKmjjTeQyZsbEgsZNyRepEEAgnDDYzEj9PDFW1Vw6nTljvRuoTNb+D8r4xKEYMs/UEW8BiP98ARqfVbhiUZg6wdZjYiUmso8b1MTaash8sdk3twsEDelEdTRMBAPnDoo/Vq8OEmzcbsHG7ioAg4Aab9Yvh4HL06anHranR/bBFRxDtgqZtDWXOjPKIrIibh4oyMzGcNAzhc0ui5jgnsQrbHBP4PQcc1IQppbw8AAAAASUVORK5CYII=) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .title[data-v-51afd82b] {
	font-size: 18px;
	color: #000
}

.index-wrap .membership-list[data-v-51afd82b] {
	margin-top: 19px
}

.index-wrap .membership-list .swiper-vertical[data-v-51afd82b] {
	touch-action: auto
}

.index-wrap .membership-list .membership-content[data-v-51afd82b] {
	max-height: 120px;
	margin: 10px 0
}

.index-wrap .membership-list .membership-content[data-v-51afd82b] .swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between
}

.small-btn[data-v-da673718] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.index-wrap[data-v-d5e604f1] {
	position: relative;
	z-index: 1;
	padding-top: 60px;
	padding-bottom: 80px
}

.index-wrap[data-v-d5e604f1]:after {
	content: "";
	position: absolute;
	top: 60px;
	left: calc(-1 * var(--mg));
	width: calc(100% + var(--mg) * 2);
	height: 120px;
	background: var(--top-liner-bg);
	z-index: -1
}

.index-wrap .swiper-container[data-v-d5e604f1] {
	box-sizing: border-box;
	position: relative;
	border-radius: var(--card-radius);
	width: 100%;
	margin: 12px auto 0
}

.index-wrap .swiper-container .custom-swiper[data-v-d5e604f1] {
	width: 100%;
	overflow: hidden;
	height: 160px;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 3px solid transparent
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-d5e604f1] {
	border-radius: 8px;
	overflow: hidden
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-d5e604f1] .van-swipe__indicators {
	bottom: 15px !important;
	left: 20%
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-d5e604f1] .van-swipe__indicator {
	width: 12px;
	height: 2px;
	opacity: .4;
	border-radius: 1px;
	background-color: var(--text-gray6)
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-d5e604f1] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.index-wrap .swiper-container .custom-swiper .van-swipe-item img[data-v-d5e604f1] {
	width: 100%;
	height: 160px;
	border-radius: 8px;
	object-fit: center
}

.index-wrap .notice-info[data-v-d5e604f1] {
	margin-top: 20px;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	cursor: pointer;
	height: 40px;
	border-radius: 26px;
	background: var(--bg-weight);
	border: 1px solid var(--border-color2);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	padding: 0 25px 0 5px;
	color: var(--btn-text)
}

.index-wrap .notice-info .volume-icon[data-v-d5e604f1] {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 16px;
	margin: 0 9px 0 10px
}

.index-wrap .notice-info .van-notice-bar[data-v-d5e604f1] {
	width: 100%;
	padding: 0 5px;
	background: transparent;
	font-size: 12px;
	color: var(--btn-text)
}

.index-wrap .asserts-part[data-v-d5e604f1] {
	margin-top: 0;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 15px
}

.index-wrap .asserts-part .assert[data-v-d5e604f1] {
	width: 100%;
	height: 120px;
	border-radius: var(--radius);
	padding: 20px
}

.index-wrap .asserts-part .assert .head[data-v-d5e604f1] {
	font-size: 16px;
	margin-bottom: 4px
}

.index-wrap .asserts-part .assert .body[data-v-d5e604f1] {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
	color: var(--primary)
}

.index-wrap .asserts-part .assert .body span[data-v-d5e604f1] {
	font-size: 12px;
	margin-left: 5px;
	font-weight: 400
}

.index-wrap .asserts-part .assert .foot[data-v-d5e604f1] {
	font-size: 14px
}

.index-wrap .asserts-part .assert[data-v-d5e604f1]:nth-of-type(1) {
	background: url(./assert-card-1-BTR0wCIW.png) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .asserts-part .assert[data-v-d5e604f1]:nth-of-type(2) {
	background: url(./assert-card-2-BNrLMeD6.png) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part[data-v-d5e604f1] {
	margin-top: 0;
	padding: var(--mg) 0;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	row-gap: 10px
}

.index-wrap .tools-part[data-v-d5e604f1]:after {
	display: none
}

.index-wrap .tools-part[data-v-d5e604f1]:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 200px;
	background-size: 100% 100%;
	z-index: 0;
	pointer-events: none
}

.index-wrap .tools-part .part[data-v-d5e604f1] {
	width: 100%
}

.index-wrap .tools-part .part .wrap[data-v-d5e604f1] {
	display: flex;
	flex-direction: column;
	align-items: center
}

.index-wrap .tools-part .part .wrap .img-wrap[data-v-d5e604f1] {
	width: 100%;
	margin-bottom: 4px
}

.index-wrap .tools-part .part .wrap .img-wrap img[data-v-d5e604f1] {
	width: 40px;
	height: 40px;
	margin: 0 auto
}

.index-wrap .tools-part .part .wrap .label[data-v-d5e604f1] {
	font-size: 12px;
	text-align: center
}

.index-wrap .tools-part .btn-download[data-v-d5e604f1] {
	margin-top: 12px;
	position: relative;
	width: 100%;
	height: 72px;
	border-radius: var(--btn-radius);
	padding: 0 14px 0 18px;
	background: var(--bg-download);
	display: flex;
	align-items: center
}

.index-wrap .tools-part .btn-download[data-v-d5e604f1]:after {
	content: "";
	position: absolute;
	right: 14px;
	top: 5px;
	background: url(./download-l-V-DBWi.png) center no-repeat;
	background-size: 100% 100%;
	width: 147px;
	height: 61px
}

.index-wrap .tools-part .btn-download .left .label[data-v-d5e604f1] {
	font-size: 20px;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 22px
}

.index-wrap .tools-part .btn-download .left .icon[data-v-d5e604f1] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 16px;
	border-radius: 20px;
	background: var(--primary)
}

.index-wrap.c-1 .volume-icon[data-v-d5e604f1] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAOCSURBVFiF7ZhPaCNlGMZ/3zTZThpXsxWW2oJMWVZXyCFZDEXs4kSwJEXX9rQEBDMHuzkIa0AET2kuerQHwW49TD3pnrZB2JQKZiAIXYS1h3qpLOakILpk0fxpQ+fz0Kab7R8700m3Pfgcv3d45sfMO+/3PSPoksxMQlMDZ81mrRYBUIPBlWefv5gdy36y4sZHdAXmvfEIQt4GtN21cHwsHktlLadePs8wmUQaW5oAQ5fCXE5exa8GWC0tsbZc5pe7P3wGRJ36KZ5gpsansYUJEI6PcSWVJhjq54wa4HLybQBs24648TwykDk1Pg0y14YJ62P7XtdqNlz5un5l5gcTIerrJsgJgJHJawxHYm5tugNkZhIa9fUSoAVD/Yym0pwbGPQEYGbe1IXczPkDfdoLI6OGYyAzk9CwxQ7M60aGYKjfM4i0N3UJbNTr/Gx9964jIHMqObHVvDIUGhjcad6jgSQ0IZWctDfT8vFSRQo772tf9GioydD+VpLhSIyRyWtHAmlLSCUnpUx3giBF3vjyzjyA79tP39cf/v5bqVn750CT89oFhqMvd6V5pZQFEBMgq50gbfn+rNzPIWE4EiMcf8NTXziRMVdcABYOqiv+3oAOEE1ePXYYJ1Lag+uMGjhhlC152jqOQ6cOyPNu71a3PnpnuvHwr9f2q0lJ4YkDtZr1nJQHlvUTAGpkEdzYtyjFV08cyJgrzgAzB9VPXVP/D3SYFP8pmdBt+RRFWQEi94oFwvGxY99CtiITJkJWETJvzC5ajwFdHHk1u1paKq0tl1lbLu8x8KsBzg0MMnQpzIuvXPEMJBRuSCkjSEAK3byetDrBlFgqaw29FI2qwacsENXdBq1mgz8q9/lpscC9YsEzkBR2HoH1aAEdW5TM68mSmUlohybX7ZShw9YR9rx2gdFU2tGr/Sb3IQDGXHHPfcxMQt/OdFp7LXD26XnHUbozLjs95P8XUIdvurcvkPP1qpq/LzjpKtvvTh6HxSAnQLvlag4Zs4sV+nqjCKxa9QHfm1/w68qPbiy6CwRgzCxUjZvFuBDMtJoN7t6+xWpp6eSA2krfLGZB5AFWraU9X+DG9tHY7eD1tHUYc3emUaQBorq2XKb89TwbzQa16oOdp9Zab1huPI/1h5VfDfDMc4Pxtz7+3DFUV4Bg+wuUwkSKiF9VQz09PVaz8bdhzC5W3Pj8CypRTK4GmoYAAAAAAElFTkSuQmCC) center no-repeat;
	background-size: 100% 100%
}

.index-wrap.c-2 .volume-icon[data-v-d5e604f1] {
	background: url(data:image/png;base64,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) center no-repeat;
	background-size: 100% 100%
}

.index-wrap.c-3 .volume-icon[data-v-d5e604f1] {
	background: url(data:image/png;base64,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) center no-repeat;
	background-size: 100% 100%
}

.index-wrap.c-4 .volume-icon[data-v-d5e604f1] {
	background: url(data:image/png;base64,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) center no-repeat;
	background-size: 100% 100%
}

.index-wrap.c-5 .volume-icon[data-v-d5e604f1] {
	background: url(data:image/png;base64,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) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .title[data-v-d5e604f1] {
	font-size: 18px;
	color: #000
}

.index-wrap .membership-list[data-v-d5e604f1] {
	margin-top: 19px
}

.index-wrap .membership-list .swiper-vertical[data-v-d5e604f1] {
	touch-action: auto
}

.index-wrap .membership-list .membership-content[data-v-d5e604f1] {
	max-height: 120px;
	margin: 10px 0
}

.index-wrap .membership-list .membership-content[data-v-d5e604f1] .swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between
}

.small-btn[data-v-5aaac55c] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.index-wrap[data-v-5b89ae78] {
	position: relative;
	z-index: 1;
	padding-top: 60px;
	padding-bottom: 80px
}

.index-wrap .swiper-container[data-v-5b89ae78] {
	box-sizing: border-box;
	position: relative;
	border-radius: var(--card-radius);
	width: 100%;
	margin: 12px auto 0
}

.index-wrap .swiper-container .custom-swiper[data-v-5b89ae78] {
	width: 100%;
	overflow: hidden;
	height: 160px;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 3px solid transparent
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-5b89ae78] {
	border-radius: 8px;
	overflow: hidden
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-5b89ae78] .van-swipe__indicators {
	bottom: 15px !important;
	left: 20%
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-5b89ae78] .van-swipe__indicator {
	width: 12px;
	height: 2px;
	opacity: .4;
	border-radius: 1px;
	background-color: var(--text-gray6)
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-5b89ae78] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.index-wrap .swiper-container .custom-swiper .van-swipe-item img[data-v-5b89ae78] {
	width: 100%;
	height: 160px;
	border-radius: 8px;
	object-fit: center
}

.index-wrap .notice-info[data-v-5b89ae78] {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	cursor: pointer;
	height: 40px;
	border-radius: 26px;
	background: var(--bg-card);
	border: 1px solid var(--border-color2);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	margin-top: 6px;
	padding: 0 25px 0 5px;
	color: var(--btn-text)
}

.index-wrap .notice-info .volume-icon[data-v-5b89ae78] {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 16px;
	margin: 0 9px 0 10px
}

.index-wrap .notice-info .van-notice-bar[data-v-5b89ae78] {
	width: 100%;
	padding: 0 5px;
	background: transparent;
	font-size: 12px;
	color: var(--btn-text)
}

.index-wrap .asserts-part[data-v-5b89ae78] {
	margin-top: 0;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 15px
}

.index-wrap .asserts-part .assert[data-v-5b89ae78] {
	width: 100%;
	height: 120px;
	border-radius: var(--radius);
	padding: 20px;
	border: 1px solid var(--border-color2)
}

.index-wrap .asserts-part .assert .head[data-v-5b89ae78] {
	font-size: 16px;
	margin-bottom: 4px
}

.index-wrap .asserts-part .assert .body[data-v-5b89ae78] {
	--at-apply: font-size: 30px;
	font-weight: 700;
	margin-bottom: 5px;
	color: var(--primary)
}

.index-wrap .asserts-part .assert .body span[data-v-5b89ae78] {
	font-size: 12px;
	margin-left: 5px;
	font-weight: 400
}

.index-wrap .asserts-part .assert .foot[data-v-5b89ae78] {
	font-size: 14px;
	color: var(--text-gray6)
}

.index-wrap .asserts-part .assert[data-v-5b89ae78]:nth-of-type(1) {
	background: url(./assert-card-1-sVX_PsKu.png) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .asserts-part .assert[data-v-5b89ae78]:nth-of-type(2) {
	background: url(./assert-card-2-DB8MY-Eo.png) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .bg-blur[data-v-5b89ae78] {
	position: relative;
	z-index: 1;
	overflow: hidden
}

.index-wrap .bg-blur[data-v-5b89ae78]:before {
	content: "";
	position: absolute;
	width: 100px;
	height: 100px;
	background: var(--bg-color);
	filter: blur(50px);
	bottom: -40px;
	right: -40px;
	border-radius: 50%;
	z-index: 0
}

.index-wrap .tools-part[data-v-5b89ae78] {
	margin-top: 0;
	padding: var(--mg) 0;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	row-gap: 10px
}

.index-wrap .tools-part[data-v-5b89ae78]:after {
	display: none
}

.index-wrap .tools-part[data-v-5b89ae78]:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 200px;
	background-size: 100% 100%;
	z-index: 0;
	pointer-events: none
}

.index-wrap .tools-part .part[data-v-5b89ae78] {
	width: 100%
}

.index-wrap .tools-part .part .wrap[data-v-5b89ae78] {
	display: flex;
	flex-direction: column;
	align-items: center
}

.index-wrap .tools-part .part .wrap .img-wrap[data-v-5b89ae78] {
	width: 100%;
	margin-bottom: 4px
}

.index-wrap .tools-part .part .wrap .img-wrap img[data-v-5b89ae78] {
	width: 49px;
	height: 49px;
	margin: 0 auto
}

.index-wrap .tools-part .part .wrap .label[data-v-5b89ae78] {
	font-size: 12px;
	text-align: center
}

.index-wrap .tools-part .btn-download[data-v-5b89ae78] {
	margin-top: 12px;
	position: relative;
	width: 100%;
	height: 72px;
	border-radius: var(--btn-radius);
	padding: 0 14px 0 18px;
	background: var(--bg-download);
	display: flex;
	align-items: center
}

.index-wrap .tools-part .btn-download[data-v-5b89ae78]:after {
	content: "";
	position: absolute;
	right: 14px;
	top: 5px;
	background: url(./download-l-V-DBWi.png) center no-repeat;
	background-size: 100% 100%;
	width: 147px;
	height: 61px
}

.index-wrap .tools-part .btn-download .left .label[data-v-5b89ae78] {
	font-size: 20px;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 22px
}

.index-wrap .tools-part .btn-download .left .icon[data-v-5b89ae78] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 16px;
	border-radius: 20px;
	background: var(--primary)
}

.index-wrap .volume-icon[data-v-5b89ae78] {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAATRSURBVHic7Zw9b9tGGMd/NjLLtJu6gOHhjLpDBBRg0MHdSg9eDAQQGnjqYOkL1MrSqYVpdOtiu0uzWR6arXD7CaRs6SRPneqKQAwXNYKIyRdQh8d0KIo0KYovMsUfQAg4irzjH8+9PffcwZRifIkBnABdrcJAqzAAeivLnABGnmWbBkxgEHK1AZVP8fJDQ6wmTBzn6jFDIimgS3Rx3CIVHoV86NDHq1UGZ88Z9LtytV8wMDZ8RarnU+xs0AkQp/eSweBi9Kpt+bZHhaSJT7UxNsRi/MQZXIhwnmf6uX1Bipj4iNNsBAvjvnyeTYUHab04hEPEeoYw92D/2xxKcwdZC+R04zXvjcMfoFnPuDQRyFIghc/gTq3C2S+gVzMsyRhkJZAiQJz2r/I7rcxnkEcNGQAqd6JenTpx6h9/RPszRQ9pIxXAXMqZNm8yGy7JUzj8HrRK/BfPfTqaFPNVBtIuKk+6BaylaUEmPuKYe3Dy02TiJISBVPugSa/64nNqaVlQ6t34BBakgH2iTU82k26kFXCGTB9u0SpiNbWthHMbD0V0YVhZpnV1TSepKqYhjXEbjzhOT5WzOCYy36tH+K8FNK6uaYB/L2bg8uQRzeXQRyxHuV/kiJPnGGdnGx2xnDAsoAGsAS0n0V3F1CcPOfzvzYdRrv0+fsH0qgwA8+7G/3kd6lCzgANcorhxGjZFgi7MZkO68TQZo5FWiwt0++/QPOkWcAocAXZgPgAPF+m+6Q+3HeOgVcRS9Eew15DftBmzF9ORntVY0rDe2pwiFmOF5oM0XCdDb6uKBeiPpmK84kuCA8U7eQDsuhNqW3D2PI2s7idzSA90Wz97L/NvWKOQlQXN4fHGDS7SyCZ5shIoi9n8vaYUKIRSoBBKgUIoBQqhFCiEvNbFMmVnG/1Vl93X/47Mx4KwgT+ATuHHQeuK5t/WqOs3CuuKZ4UXaHGBvs9MPhJLGlbh26D+u/jPvrXRCi8QcBz3QbXKceGr2A1N4CsYq6qdAq1ZESg2s1DFJqIUKIRSoBBKgUIoBQqhFCiEUqAQSoFCmMez7Gpd5lSSKWUeOHcnHPycU0nSRXETsTLufjPfpWdjA/b3CrP0rOETRAp0kKiOzp353PxOtO/KCV6obcHu19mszI4hUA2JXQqiwx1CpRL+ksWWgjEEMoi2G6iDj1BOL2YBm96bcTGPofHdZAFYCdJZWfYPjvJg8CHq1XAS/VQ3VpbZvbrG0CqoaY0yi+HuqCOheCpiFgeAmZQPRUNUv41Qd0hru8EE/qAmIlQU51ligeQ28DtSTS33DesSHj+Bzp8J5TQ5R0ig5gF3hN4B7GxjpOGF05Bew/DeSHLLU0IeRQ2xqD1GLcompa0INmJJR94bz36cuoGojcRQrwEHiwu3FnWOfIOd9mYWE58Y5fpTibyfhCwjzNKmjjTeQyZsbEgsZNyRepEEAgnDDYzEj9PDFW1Vw6nTljvRuoTNb+D8r4xKEYMs/UEW8BiP98ARqfVbhiUZg6wdZjYiUmso8b1MTaash8sdk3twsEDelEdTRMBAPnDoo/Vq8OEmzcbsHG7ioAg4Aab9Yvh4HL06anHranR/bBFRxDtgqZtDWXOjPKIrIibh4oyMzGcNAzhc0ui5jgnsQrbHBP4PQcc1IQppbw8AAAAASUVORK5CYII=) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .title[data-v-5b89ae78] {
	font-size: 18px;
	color: #000
}

.index-wrap .membership-list[data-v-5b89ae78] {
	margin-top: 19px
}

.index-wrap .membership-list .swiper-vertical[data-v-5b89ae78] {
	touch-action: auto
}

.index-wrap .membership-list .membership-content[data-v-5b89ae78] {
	max-height: 120px;
	margin: 10px 0
}

.index-wrap .membership-list .membership-content[data-v-5b89ae78] .swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between
}

.small-btn[data-v-1a71f5cd] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.index-wrap[data-v-c0d3566a] {
	position: relative;
	z-index: 1;
	padding-top: 60px;
	padding-bottom: 80px
}

.index-wrap .swiper-container[data-v-c0d3566a] {
	box-sizing: border-box;
	position: relative;
	border-radius: var(--card-radius);
	width: 100%;
	margin: 12px auto 0
}

.index-wrap .swiper-container .custom-swiper[data-v-c0d3566a] {
	width: 100%;
	overflow: hidden;
	height: 160px;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 3px solid transparent
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-c0d3566a] {
	border-radius: 8px;
	overflow: hidden
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-c0d3566a] .van-swipe__indicators {
	bottom: 15px !important;
	left: 20%
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-c0d3566a] .van-swipe__indicator {
	width: 12px;
	height: 2px;
	opacity: .4;
	border-radius: 1px;
	background-color: var(--text-gray6)
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-c0d3566a] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.index-wrap .swiper-container .custom-swiper .van-swipe-item img[data-v-c0d3566a] {
	width: 100%;
	height: 160px;
	border-radius: 8px;
	object-fit: center
}

.index-wrap .notice-info[data-v-c0d3566a] {
	margin-top: 20px;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	cursor: pointer;
	height: 40px;
	border-radius: 26px;
	border: 1px solid var(--primary);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	padding: 0 25px 0 5px;
	color: var(--btn-text)
}

.index-wrap .notice-info .volume-icon[data-v-c0d3566a] {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--primary);
	margin: 0 10px
}

.index-wrap .notice-info .van-notice-bar[data-v-c0d3566a] {
	width: 100%;
	padding: 0 5px;
	background: transparent;
	font-size: 12px;
	color: var(--btn-text)
}

.index-wrap .asserts-part[data-v-c0d3566a] {
	margin-top: 20px;
	width: 100%;
	height: 140px;
	display: grid;
	align-items: center;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 15px
}

.index-wrap .asserts-part .assert[data-v-c0d3566a] {
	width: 100%;
	height: 120px;
	border-radius: var(--radius);
	padding: 20px
}

.index-wrap .asserts-part .assert .head[data-v-c0d3566a] {
	font-size: 16px;
	margin-bottom: 4px
}

.index-wrap .asserts-part .assert .body[data-v-c0d3566a] {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px
}

.index-wrap .asserts-part .assert .body span[data-v-c0d3566a] {
	font-size: 12px;
	margin-left: 5px;
	font-weight: 400
}

.index-wrap .asserts-part .assert .foot[data-v-c0d3566a] {
	font-size: 14px;
	opacity: .7
}

.index-wrap.c-1 .asserts-part[data-v-c0d3566a] {
	background: url(./t-1-asserts-bg-DqroyN27.png) center no-repeat;
	background-size: 100% 100%
}

.index-wrap.c-2 .asserts-part[data-v-c0d3566a] {
	background: url(./t-2-asserts-bg-CxBX14Cl.png) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .tools-part1[data-v-c0d3566a] {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 15px
}

.index-wrap .tools-part1 .part[data-v-c0d3566a] {
	background: var(--bg-card);
	border-radius: var(--card-radius);
	padding: 14px 16px;
	border: 1px solid var(--border-color2);
	display: flex;
	align-items: center;
	cursor: pointer
}

.index-wrap .tools-part1 .part .img-wrap[data-v-c0d3566a] {
	margin-right: 12px;
	flex-shrink: 0
}

.index-wrap .tools-part1 .part .img-wrap img[data-v-c0d3566a] {
	width: 32px;
	height: 32px
}

.index-wrap .tools-part[data-v-c0d3566a] {
	margin-top: 16px;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 10px
}

.index-wrap .tools-part[data-v-c0d3566a]:after {
	display: none
}

.index-wrap .tools-part[data-v-c0d3566a]:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 200px;
	background-size: 100% 100%;
	z-index: 0;
	pointer-events: none
}

.index-wrap .tools-part .part[data-v-c0d3566a] {
	width: 100%;
	background: var(--bg-card);
	border-radius: var(--card-radius);
	border: 1px solid var(--border-color2);
	position: relative
}

.index-wrap .tools-part .part[data-v-c0d3566a]:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%);
	width: 25%;
	height: 4px;
	background: var(--primary);
	border-radius: 4px 4px 0 0
}

.index-wrap .tools-part .part .wrap[data-v-c0d3566a] {
	display: flex;
	flex-direction: column;
	align-items: center
}

.index-wrap .tools-part .part .wrap .img-wrap[data-v-c0d3566a] {
	width: 100%;
	margin: 5px 0
}

.index-wrap .tools-part .part .wrap .img-wrap img[data-v-c0d3566a] {
	width: auto;
	height: 48px;
	margin: 0 auto
}

.index-wrap .tools-part .part .wrap .label[data-v-c0d3566a] {
	font-size: 12px;
	text-align: center;
	margin-bottom: 8px
}

.index-wrap .tools-part .btn-download[data-v-c0d3566a] {
	margin-top: 12px;
	position: relative;
	width: 100%;
	height: 72px;
	border-radius: var(--btn-radius);
	padding: 0 14px 0 18px;
	background: var(--bg-download);
	display: flex;
	align-items: center
}

.index-wrap .tools-part .btn-download[data-v-c0d3566a]:after {
	content: "";
	position: absolute;
	right: 14px;
	top: 5px;
	background: url(./download-l-V-DBWi.png) center no-repeat;
	background-size: 100% 100%;
	width: 147px;
	height: 61px
}

.index-wrap .tools-part .btn-download .left .label[data-v-c0d3566a] {
	font-size: 20px;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 22px
}

.index-wrap .tools-part .btn-download .left .icon[data-v-c0d3566a] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 16px;
	border-radius: 20px;
	background: var(--primary)
}

.index-wrap .title[data-v-c0d3566a] {
	font-size: 18px;
	color: #000
}

.index-wrap .membership-list[data-v-c0d3566a] {
	margin-top: 10px
}

.index-wrap .membership-list .swiper-vertical[data-v-c0d3566a] {
	touch-action: auto
}

.index-wrap .membership-list .membership-content[data-v-c0d3566a] {
	max-height: 120px;
	margin: 10px 0
}

.index-wrap .membership-list .membership-content[data-v-c0d3566a] .swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between
}

.small-btn[data-v-88171e5b] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.index-wrap[data-v-7eb297b3] {
	position: relative;
	z-index: 1;
	padding-top: 60px;
	padding-bottom: 80px
}

.index-wrap .swiper-container[data-v-7eb297b3] {
	box-sizing: border-box;
	position: relative;
	border-radius: var(--card-radius);
	width: 100%;
	margin: 12px auto 0
}

.index-wrap .swiper-container .custom-swiper[data-v-7eb297b3] {
	width: 100%;
	overflow: hidden;
	height: 160px;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 3px solid transparent
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-7eb297b3] {
	border-radius: 8px;
	overflow: hidden
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-7eb297b3] .van-swipe__indicators {
	bottom: 15px !important;
	left: 20%
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-7eb297b3] .van-swipe__indicator {
	width: 12px;
	height: 2px;
	opacity: .4;
	border-radius: 1px;
	background-color: var(--text-gray6)
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-7eb297b3] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.index-wrap .swiper-container .custom-swiper .van-swipe-item img[data-v-7eb297b3] {
	width: 100%;
	height: 160px;
	border-radius: 8px;
	object-fit: center
}

.index-wrap .notice-info[data-v-7eb297b3] {
	margin-top: 16px;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	cursor: pointer;
	height: 40px;
	border-radius: 26px;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	padding: 0 25px 0 5px;
	color: var(--btn-text)
}

.index-wrap .notice-info .volume-icon[data-v-7eb297b3] {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEIAAABKCAYAAAAPB4KFAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAOSSURBVHic7ZzZddswEEXf8LgAdRC6A6UDuoKkg0gVRK7AcgW2K7A6sDtQXIHtCsgOpA5ePma0OJHEDQBJHN4/LYCG92AZgKCAHkFyRnJNckMlt9ezrmMLAsmpXfQl1iTTrmP1hknYXHawZxOljJoSduRRyWgoYcdz1/E7oaUEktx0fQ2tIfmzpYQdmcu4EpeVlUGdBl8ATBxUlzqoY08wESbBZd9OHdYVRoQHCc7xLmIIEgDPIkguMAAJAHDlq2KSSwB3vupvAjUR+w1gam+9icjS5w8uHUyPZVS+AJKTCzE9DFlCZRHUFW1eUlfqtGuwR92B2g3WqDbNTp0Nln2RQDKlrkVyVM81Jq1bhJmfoR8SdnGkNYptAbz+J4KHkTWzCl2kw96hrj3qTtVbAHMR2X4R0Zfm3ZAfNb+/AnAvIgVwlEdYv5q5iqoDqrbcAsCtiLwev5kA+wxw5jSs8LyVfF5ABVz/KwEAEhsThtodjvkDvdhTrADciMjjucIJdGAcxIB4CevrN1AhgEp5BXAtIvPdWHCOK+jsEAVHMmqTwPEGx1BJEEG3cEHQPcs+M4owRhHGKMIYRRje9iy7wLLknwC+oXw23AL4FJEVEJEIklPoXbS0ZrlfAOYxdY1nNEsOMwB3UYiwLjEt+94FsihEoH12PIlChIh84PwSvAofUYgwbhuWKwDMo5k1ROSV5Hfo/kpasdgHgCcRKaIRAey7yLxJ2Zi6RitGEcYowhhFGKMIYxRhjCKMBLouj4Ld2QjqIw25nZaptA5J0C5H7w12wS/Qe7gZNLt8BvDOCseVExxukQ2dDKeX4imAtbWS7FzhBMCTl7DCU3Y+IoMKeTjVXRK7X3jvIbDQVB3rFgBy6um/vZAEAOzQ5cp5aGH5rPHdCfQoxLvtbh2mTxGZY8Atw3aj68afQrtL+iWPsJZxDeAROpsMamq1+I/PSFQhRbv9TsXm7odmh2dbsSyJa8HqTwrNWmeWIlKIyC161q3smNCudZdROP1xhjuHTdY7lJ5S84hTrJ1K6EBGZRFHsWU8PHK9oabj/g7KBJKxdBmzl9Wnjd69GjPK8LYMH5oMr/sRQ5LhfWPGZDS61xCSIDtUlv72WkawrToPMgqHdYXds3Qso3BUT3dYYtPqbxPoMxEKCdv9h8Sy6/id0lBGHk1rOKamjJx6ei5OKsrIGdOf7JyD+vz2guQLD48w5/Z65vv3/wIbDsJ9ulPC6QAAAABJRU5ErkJggg==) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .notice-info .van-notice-bar[data-v-7eb297b3] {
	width: 100%;
	padding: 0 5px;
	background: transparent;
	font-size: 12px;
	color: var(--btn-text)
}

.index-wrap .asserts-part[data-v-7eb297b3] {
	margin-top: 20px;
	width: 100%;
	display: grid;
	align-items: center;
	grid-template-columns: repeat(2, 1fr);
	border-radius: var(--card-radius)
}

.index-wrap .asserts-part .assert[data-v-7eb297b3] {
	width: 100%;
	height: 120px;
	border-radius: var(--radius);
	padding: 20px
}

.index-wrap .asserts-part .assert .head[data-v-7eb297b3] {
	font-size: 16px;
	margin-bottom: 4px
}

.index-wrap .asserts-part .assert .body[data-v-7eb297b3] {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px
}

.index-wrap .asserts-part .assert .body span[data-v-7eb297b3] {
	font-size: 12px;
	margin-left: 5px;
	font-weight: 400
}

.index-wrap .asserts-part .assert .foot[data-v-7eb297b3] {
	font-size: 14px;
	opacity: .7
}

.index-wrap.c-1 .asserts-part[data-v-7eb297b3] {
	background: var(--primary)
}

.index-wrap.c-2 .asserts-part[data-v-7eb297b3] {
	background: var(--bg-card)
}

.index-wrap .tools-part1[data-v-7eb297b3] {
	margin-top: 16px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 15px
}

.index-wrap .tools-part1 .part[data-v-7eb297b3] {
	background: var(--bg-card);
	border-radius: var(--card-radius);
	padding: 14px 16px;
	cursor: pointer
}

.index-wrap .tools-part1 .part .img-wrap[data-v-7eb297b3] {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-bottom: 12px
}

.index-wrap .tools-part1 .part .img-wrap img[data-v-7eb297b3] {
	width: 32px;
	height: 32px
}

.index-wrap .tools-part1 .part .label[data-v-7eb297b3] {
	width: 100%;
	text-align: center
}

.index-wrap .tools-part[data-v-7eb297b3] {
	margin-top: 16px;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	row-gap: 10px
}

.index-wrap .tools-part .part[data-v-7eb297b3] {
	width: 100%;
	background: var(--bg-card);
	border-radius: var(--card-radius);
	position: relative
}

.index-wrap .tools-part .part .wrap[data-v-7eb297b3] {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 15px
}

.index-wrap .tools-part .part .wrap .img-wrap[data-v-7eb297b3] {
	width: 24px;
	margin-right: 12px
}

.index-wrap .tools-part .part .wrap .img-wrap img[data-v-7eb297b3] {
	width: auto;
	height: 24px;
	margin: 0 auto
}

.index-wrap .tools-part .part .wrap .label[data-v-7eb297b3] {
	font-size: 12px;
	text-align: center
}

.index-wrap .tools-part .btn-download[data-v-7eb297b3] {
	margin-top: 12px;
	position: relative;
	width: 100%;
	height: 72px;
	border-radius: var(--btn-radius);
	padding: 0 14px 0 18px;
	background: var(--bg-download);
	display: flex;
	align-items: center
}

.index-wrap .tools-part .btn-download[data-v-7eb297b3]:after {
	content: "";
	position: absolute;
	right: 14px;
	top: 5px;
	background: url(./download-l-V-DBWi.png) center no-repeat;
	background-size: 100% 100%;
	width: 147px;
	height: 61px
}

.index-wrap .tools-part .btn-download .left .label[data-v-7eb297b3] {
	font-size: 20px;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 22px
}

.index-wrap .tools-part .btn-download .left .icon[data-v-7eb297b3] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 16px;
	border-radius: 20px;
	background: var(--primary)
}

.index-wrap .title[data-v-7eb297b3] {
	font-size: 18px;
	color: #000
}

.index-wrap .membership-list[data-v-7eb297b3] {
	margin-top: 10px
}

.index-wrap .membership-list .swiper-vertical[data-v-7eb297b3] {
	touch-action: auto
}

.index-wrap .membership-list .membership-content[data-v-7eb297b3] {
	max-height: 120px;
	margin: 10px 0
}

.index-wrap .membership-list .membership-content[data-v-7eb297b3] .swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between
}

.small-btn[data-v-49257941] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.index-wrap[data-v-2517fc43] {
	position: relative;
	z-index: 1;
	padding-top: 60px;
	padding-bottom: 80px
}

.index-wrap .swiper-container[data-v-2517fc43] {
	box-sizing: border-box;
	position: relative;
	border-radius: var(--card-radius);
	width: 100%;
	margin: 12px auto 0
}

.index-wrap .swiper-container .custom-swiper[data-v-2517fc43] {
	width: 100%;
	overflow: hidden;
	height: 160px;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 3px solid transparent
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-2517fc43] {
	border-radius: 8px;
	overflow: hidden
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-2517fc43] .van-swipe__indicators {
	bottom: 15px !important;
	left: 20%
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-2517fc43] .van-swipe__indicator {
	width: 12px;
	height: 2px;
	opacity: .4;
	border-radius: 1px;
	background-color: var(--text-gray6)
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-2517fc43] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.index-wrap .swiper-container .custom-swiper .van-swipe-item img[data-v-2517fc43] {
	width: 100%;
	height: 160px;
	border-radius: 8px;
	object-fit: center
}

.index-wrap .notice-info[data-v-2517fc43] {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	cursor: pointer;
	height: 40px;
	border-radius: 26px;
	margin-top: -10px;
	color: var(--btn-text)
}

.index-wrap .notice-info .volume-icon[data-v-2517fc43] {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 30px;
	margin: 0 9px 0 10px;
	background: var(--primary);
	color: var(--text-white);
	border-radius: 4px
}

.index-wrap .notice-info .van-notice-bar[data-v-2517fc43] {
	width: 100%;
	padding: 0 5px;
	background: transparent;
	font-size: 12px;
	color: var(--btn-text)
}

.index-wrap .asserts-part[data-v-2517fc43] {
	margin-top: 0;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 15px;
	background: linear-gradient(180deg, #f2f3f5, #fff);
	box-shadow: inset 0 2px #fff;
	border-radius: var(--card-radius)
}

.index-wrap .asserts-part .assert[data-v-2517fc43] {
	width: 100%;
	height: 120px;
	padding: 20px;
	position: relative
}

.index-wrap .asserts-part .assert[data-v-2517fc43]:after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -1px;
	width: 2px;
	height: 80%;
	background: #fff
}

.index-wrap .asserts-part .assert[data-v-2517fc43]:last-child:after {
	display: none
}

.index-wrap .asserts-part .assert .head[data-v-2517fc43] {
	font-size: 16px;
	margin-bottom: 4px
}

.index-wrap .asserts-part .assert .body[data-v-2517fc43] {
	--at-apply: font-size: 30px;
	font-weight: 700;
	margin-bottom: 5px;
	color: var(--primary)
}

.index-wrap .asserts-part .assert .body span[data-v-2517fc43] {
	font-size: 12px;
	margin-left: 5px;
	font-weight: 400
}

.index-wrap .asserts-part .assert .foot[data-v-2517fc43] {
	font-size: 14px;
	color: var(--text-gray6)
}

.index-wrap .tools-part[data-v-2517fc43] {
	margin-top: 0;
	padding: var(--mg) 0;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	row-gap: 10px
}

.index-wrap .tools-part[data-v-2517fc43]:after {
	display: none
}

.index-wrap .tools-part[data-v-2517fc43]:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 200px;
	background-size: 100% 100%;
	z-index: 0;
	pointer-events: none
}

.index-wrap .tools-part .part[data-v-2517fc43] {
	width: 100%
}

.index-wrap .tools-part .part .wrap[data-v-2517fc43] {
	display: flex;
	flex-direction: column;
	align-items: center
}

.index-wrap .tools-part .part .wrap .img-wrap[data-v-2517fc43] {
	width: 48px;
	height: 48px;
	margin-bottom: 4px;
	background: var(--bg-card);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center
}

.index-wrap .tools-part .part .wrap .img-wrap img[data-v-2517fc43] {
	width: 24px;
	height: 24px;
	margin: 0 auto
}

.index-wrap .tools-part .part .wrap .label[data-v-2517fc43] {
	font-size: 12px;
	text-align: center
}

.index-wrap .tools-part .btn-download[data-v-2517fc43] {
	margin-top: 12px;
	position: relative;
	width: 100%;
	height: 72px;
	border-radius: var(--btn-radius);
	padding: 0 14px 0 18px;
	background: var(--bg-download);
	display: flex;
	align-items: center
}

.index-wrap .tools-part .btn-download[data-v-2517fc43]:after {
	content: "";
	position: absolute;
	right: 14px;
	top: 5px;
	background: url(./download-l-V-DBWi.png) center no-repeat;
	background-size: 100% 100%;
	width: 147px;
	height: 61px
}

.index-wrap .tools-part .btn-download .left .label[data-v-2517fc43] {
	font-size: 20px;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 22px
}

.index-wrap .tools-part .btn-download .left .icon[data-v-2517fc43] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 16px;
	border-radius: 20px;
	background: var(--primary)
}

.index-wrap.c-2 .tools-part .img-wrap[data-v-2517fc43] {
	background: var(--primary) !important
}

.index-wrap .title[data-v-2517fc43] {
	font-size: 18px;
	color: #000
}

.index-wrap .membership-list[data-v-2517fc43] {
	margin-top: 10px
}

.index-wrap .membership-list .swiper-vertical[data-v-2517fc43] {
	touch-action: auto
}

.index-wrap .membership-list .membership-content[data-v-2517fc43] {
	max-height: 120px;
	margin: 10px 0
}

.index-wrap .membership-list .membership-content[data-v-2517fc43] .swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between
}

.index-wrap .coin-data-card[data-v-2517fc43] {
	width: 100%;
	border-radius: var(--card-radius);
	background: var(--bg-weight);
	border: 1px solid var(--border-color2);
	padding: 10px;
	margin-bottom: 10px
}

.small-btn[data-v-2bcd70fd] {
	background: var(--primary);
	color: #000;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.index-wrap[data-v-2bae79a7] {
	position: relative;
	z-index: 1;
	padding-top: 60px;
	padding-bottom: 80px
}

.index-wrap .swiper-container[data-v-2bae79a7] {
	box-sizing: border-box;
	position: relative;
	border-radius: var(--card-radius);
	width: 100%;
	margin: 12px auto 0
}

.index-wrap .swiper-container .custom-swiper[data-v-2bae79a7] {
	width: 100%;
	overflow: hidden;
	height: 160px;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 3px solid transparent
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-2bae79a7] {
	border-radius: 8px;
	overflow: hidden
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-2bae79a7] .van-swipe__indicators {
	bottom: 15px !important;
	left: 20%
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-2bae79a7] .van-swipe__indicator {
	width: 12px;
	height: 2px;
	opacity: .4;
	border-radius: 1px;
	background-color: var(--text-gray6)
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-2bae79a7] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.index-wrap .swiper-container .custom-swiper .van-swipe-item img[data-v-2bae79a7] {
	width: 100%;
	height: 160px;
	border-radius: 8px;
	object-fit: center
}

.index-wrap .notice-info[data-v-2bae79a7] {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	cursor: pointer;
	height: 40px;
	border-radius: 26px;
	margin-top: 10px;
	color: var(--btn-text)
}

.index-wrap .notice-info .volume-icon[data-v-2bae79a7] {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 16px;
	margin: 0 9px 0 10px;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAASCSURBVHic7ZxPctpIFIe/J6jyLJ1NYhW4SrkBPsHgE4xzAtMnCD6B8QmcnKDxCZycAG4w3GBUBS4x3pjlJAW8WQBjZ2KQZNSSTPiWlNR6+vHUf356LaGk1CPbFE/OVbUBNAAEQkT6OtebkW/6ecQheVwkLfXIdhAuYw7rVxUT+iZ0GUupBAoe7OHsO9eqtJIcLxBWlFOXIlVdNZyWILLB9Bu3LB+nJCgEM6EHvHcVl+eq4TQEkV3daGJxVigEx5FtZR/VgsIFqt3bxkzoKQQvbUNFzjMM6QcKFag2tm2Z8+c24izQ1JmXlMIEqke2I3CdUXOHGbXzE4V00sfj7rWi7SKunZZcBQoe7OH0G1bRszyvuw25CRRENph9o8fW/U2+5NIHrYbx7Tvj/HGeQcd/27OpYnHYkWbBcWRbKnIuaADypaL6OfRN6FSg2ti2VTMbqZxQj2xTBLvIbkUB0PZMOAPeO1uLJVxwZsboyKS6l3pkm4hcgjbXHSPCBycZVOZhPIhsMPPkUlVbLPNlHTpnkqlAQWSDqXCrDme2L2UlzFS1hW4WBkCE7vDI9DMbxeqRbb50wemaemQ7U+GvRdZsRiAUxQzfGQPPjGLPOXlJif9f8qd2bxvM4/tCgRDlauib7tPf/xNo8XjINeiZJkjB14KnBJvuZp0wK6rw1I/RwEGMhVKZM5gKE/43DxMIVbmp/Man8I2ZrDvfA1h0rK9vlpuE0DehepwCfXjMmIpyOvJNZ5M4ALKYQWLzCNYlaedBSfFUcObG7QIeJRyWy4RHyReRRVO4aV929gLFsBcohr1AMewFimEvUAylKV5wSe3eNry5nCMJpzTKRFW/jnzT33mBlq+3rxVN58cI7drYXuz8Iya83Bf34OPOC7QNCoe7L5DyeZtzd74PGvmmUxvbiSC/k2LdKao3Q990pT62O+GvOvODXDS6S+wFimEvUAx7gWLYCxTDXqAY9gLFsBcoBg/Y+GbxV6cKMthUZbULPCmaaojIIM1+M09UbxzHVyjBgz2cCb1lbVBDVVsIvfrY9uqRbcad7w190xUIXQdaFLPvNNcUZjSTCOUBVJTTXRVJ57F97EahPFiUiFT0sURklxj5pi9CN8Ghzwr1k0WwKsFDdV1qlpI4u+M4si2Ey8T3pFyNfNPJxEMJHuzh9B8ajwXZ+ZPUD6qNbXvpU8eaZ1XNuJC8yD0ZaQyz5R/aRvjIBqFEyd6FW255ugWaWbe9iZc4ijFCTaoHDrci5F1tv43l+oxQA/Uwd2/NwOm++Tz3a7xKT3rkm44ohle83nO+mh/6pqve652I5mJ33L01g9c6W8/NDwp9E1YOOAEGeV0zC3I1zMI3ZjI6MicJp/6loBBHcfjOGJSrIq6dlsIs15FvOgoXGTXnbJQs1JO+OzKfWLgI296gs36tcNN+5Jt+VTnZZoRT+JphSD9Qmi9Qrfa7kn7vyGB0ZE5cxAQlyKAVoW/C6gGnaUY4gbCqfHAYVnky6CnJ1nDypap68Ut95O0piy8iyB+gZ0/8pUHa1zbb8i9TNNl9J23v6wAAAABJRU5ErkJggg==) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .notice-info .van-notice-bar[data-v-2bae79a7] {
	width: 100%;
	padding: 0 5px;
	background: transparent;
	font-size: 12px;
	color: var(--btn-text)
}

.index-wrap .asserts-part[data-v-2bae79a7] {
	margin-top: 0;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 15px;
	background: linear-gradient(180deg, #f2f3f5, #fff);
	box-shadow: inset 0 2px #fff;
	border-radius: var(--card-radius)
}

.index-wrap .asserts-part .assert[data-v-2bae79a7] {
	width: 100%;
	height: 120px;
	padding: 20px;
	position: relative
}

.index-wrap .asserts-part .assert[data-v-2bae79a7]:after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -1px;
	width: 2px;
	height: 80%;
	background: #fff
}

.index-wrap .asserts-part .assert[data-v-2bae79a7]:last-child:after {
	display: none
}

.index-wrap .asserts-part .assert .head[data-v-2bae79a7] {
	font-size: 16px;
	margin-bottom: 4px
}

.index-wrap .asserts-part .assert .body[data-v-2bae79a7] {
	--at-apply: font-size: 30px;
	font-weight: 700;
	margin-bottom: 5px;
	color: var(--primary)
}

.index-wrap .asserts-part .assert .body span[data-v-2bae79a7] {
	font-size: 12px;
	margin-left: 5px;
	font-weight: 400
}

.index-wrap .asserts-part .assert .foot[data-v-2bae79a7] {
	font-size: 14px;
	color: var(--text-gray6)
}

.index-wrap .tools-part[data-v-2bae79a7] {
	margin-top: 0;
	padding: var(--mg) 0;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	row-gap: 10px
}

.index-wrap .tools-part[data-v-2bae79a7]:after {
	display: none
}

.index-wrap .tools-part[data-v-2bae79a7]:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 200px;
	background-size: 100% 100%;
	z-index: 0;
	pointer-events: none
}

.index-wrap .tools-part .part[data-v-2bae79a7] {
	width: 100%
}

.index-wrap .tools-part .part .wrap[data-v-2bae79a7] {
	display: flex;
	flex-direction: column;
	align-items: center
}

.index-wrap .tools-part .part .wrap .img-wrap[data-v-2bae79a7] {
	width: 32px;
	height: 32px;
	margin-bottom: 12px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center
}

.index-wrap .tools-part .part .wrap .img-wrap img[data-v-2bae79a7] {
	width: 32px;
	height: 32px;
	margin: 0 auto
}

.index-wrap .tools-part .part .wrap .label[data-v-2bae79a7] {
	font-size: 12px;
	text-align: center
}

.index-wrap .tools-part .btn-download[data-v-2bae79a7] {
	margin-top: 12px;
	position: relative;
	width: 100%;
	height: 72px;
	border-radius: var(--btn-radius);
	padding: 0 14px 0 18px;
	background: var(--bg-download);
	display: flex;
	align-items: center
}

.index-wrap .tools-part .btn-download[data-v-2bae79a7]:after {
	content: "";
	position: absolute;
	right: 14px;
	top: 5px;
	background: url(./download-l-V-DBWi.png) center no-repeat;
	background-size: 100% 100%;
	width: 147px;
	height: 61px
}

.index-wrap .tools-part .btn-download .left .label[data-v-2bae79a7] {
	font-size: 20px;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 22px
}

.index-wrap .tools-part .btn-download .left .icon[data-v-2bae79a7] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 16px;
	border-radius: 20px;
	background: var(--primary)
}

.index-wrap.c-2 .tools-part .img-wrap[data-v-2bae79a7] {
	background: var(--primary) !important
}

.index-wrap .title[data-v-2bae79a7] {
	font-size: 18px;
	color: #000
}

.index-wrap .membership-list[data-v-2bae79a7] {
	margin-top: 10px
}

.index-wrap .membership-list .swiper-vertical[data-v-2bae79a7] {
	touch-action: auto
}

.index-wrap .membership-list .membership-content[data-v-2bae79a7] {
	max-height: 120px;
	margin: 10px 0
}

.index-wrap .membership-list .membership-content[data-v-2bae79a7] .swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between
}

.index-wrap .coin-data-card[data-v-2bae79a7] {
	width: 100%;
	border-radius: var(--card-radius);
	padding: 10px
}

.small-btn[data-v-ec7b09bf] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.index-wrap[data-v-a031bf7d] {
	position: relative;
	z-index: 1;
	padding-top: 60px;
	padding-bottom: 80px
}

.index-wrap .swiper-container[data-v-a031bf7d] {
	box-sizing: border-box;
	position: relative;
	border-radius: var(--card-radius);
	width: 100%;
	margin: 12px auto 0
}

.index-wrap .swiper-container .custom-swiper[data-v-a031bf7d] {
	width: 100%;
	overflow: hidden;
	height: 160px;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 3px solid transparent
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-a031bf7d] {
	border-radius: 8px;
	overflow: hidden
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-a031bf7d] .van-swipe__indicators {
	bottom: 15px !important;
	left: 20%
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-a031bf7d] .van-swipe__indicator {
	width: 12px;
	height: 2px;
	opacity: .4;
	border-radius: 1px;
	background-color: var(--text-gray6)
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-a031bf7d] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.index-wrap .swiper-container .custom-swiper .van-swipe-item img[data-v-a031bf7d] {
	width: 100%;
	height: 160px;
	border-radius: 8px;
	object-fit: center
}

.index-wrap .notice-info[data-v-a031bf7d] {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	cursor: pointer;
	height: 40px;
	border-radius: 26px;
	color: var(--btn-text)
}

.index-wrap .notice-info .volume-icon[data-v-a031bf7d] {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	margin: 0 9px 0 10px;
	background: url(data:image/png;base64,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) no-repeat center center;
	background-size: 100% 100%
}

.index-wrap .notice-info .van-notice-bar[data-v-a031bf7d] {
	width: 100%;
	padding: 0 5px;
	background: transparent;
	font-size: 12px;
	color: var(--btn-text)
}

.index-wrap .asserts-part[data-v-a031bf7d] {
	width: calc(100% + var(--mg) * 2);
	margin-left: calc(var(--mg) * -1);
	margin-top: 16px;
	display: grid;
	padding: var(--mg);
	grid-template-columns: repeat(2, 1fr);
	column-gap: 15px;
	background: var(--bg-card)
}

.index-wrap .asserts-part .assert[data-v-a031bf7d] {
	width: 100%;
	padding: 20px;
	position: relative;
	background: url(./assert-bg-BixYnZfF.png) no-repeat center center;
	background-size: 100% 100%
}

.index-wrap .asserts-part .assert .head[data-v-a031bf7d] {
	font-size: 16px;
	margin: 8px 0
}

.index-wrap .asserts-part .assert .body[data-v-a031bf7d] {
	--at-apply: font-size: 30px;
	font-weight: 700;
	margin-bottom: 5px;
	color: var(--primary)
}

.index-wrap .asserts-part .assert .body span[data-v-a031bf7d] {
	font-size: 12px;
	margin-left: 5px;
	font-weight: 400
}

.index-wrap .asserts-part .assert .foot[data-v-a031bf7d] {
	font-size: 14px
}

.index-wrap .tools-part[data-v-a031bf7d] {
	width: calc(100% + var(--mg) * 2);
	margin-left: calc(var(--mg) * -1);
	background: var(--bg-card);
	padding: var(--mg) 0;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	row-gap: 16px
}

.index-wrap .tools-part[data-v-a031bf7d]:after {
	display: none
}

.index-wrap .tools-part[data-v-a031bf7d]:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 200px;
	background-size: 100% 100%;
	z-index: 0;
	pointer-events: none
}

.index-wrap .tools-part .part[data-v-a031bf7d] {
	width: 100%
}

.index-wrap .tools-part .part .wrap[data-v-a031bf7d] {
	display: flex;
	flex-direction: column;
	align-items: center
}

.index-wrap .tools-part .part .wrap .img-wrap[data-v-a031bf7d] {
	width: 32px;
	height: 27px;
	margin-bottom: 10px;
	background: var(--bg-card);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center
}

.index-wrap .tools-part .part .wrap .img-wrap img[data-v-a031bf7d] {
	width: 32px;
	height: 27px;
	margin: 0 auto
}

.index-wrap .tools-part .part .wrap .label[data-v-a031bf7d] {
	font-size: 12px;
	text-align: center
}

.index-wrap .tools-part .btn-download[data-v-a031bf7d] {
	margin-top: 12px;
	position: relative;
	width: 100%;
	height: 72px;
	border-radius: var(--btn-radius);
	padding: 0 14px 0 18px;
	background: var(--bg-download);
	display: flex;
	align-items: center
}

.index-wrap .tools-part .btn-download[data-v-a031bf7d]:after {
	content: "";
	position: absolute;
	right: 14px;
	top: 5px;
	background: url(./download-l-V-DBWi.png) center no-repeat;
	background-size: 100% 100%;
	width: 147px;
	height: 61px
}

.index-wrap .tools-part .btn-download .left .label[data-v-a031bf7d] {
	font-size: 20px;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 22px
}

.index-wrap .tools-part .btn-download .left .icon[data-v-a031bf7d] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 16px;
	border-radius: 20px;
	background: var(--primary)
}

.index-wrap.c-2 .tools-part .img-wrap[data-v-a031bf7d] {
	background: var(--primary) !important
}

.index-wrap .title[data-v-a031bf7d] {
	font-size: 18px;
	color: #000
}

.index-wrap .membership-list[data-v-a031bf7d] {
	margin-top: 10px
}

.index-wrap .membership-list .swiper-vertical[data-v-a031bf7d] {
	touch-action: auto
}

.index-wrap .membership-list .membership-content[data-v-a031bf7d] {
	max-height: 120px;
	margin: 10px 0
}

.index-wrap .membership-list .membership-content[data-v-a031bf7d] .swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between
}

.index-wrap .coin-data-card[data-v-a031bf7d] {
	width: 100%;
	border-radius: var(--card-radius);
	background: var(--bg-weight);
	border: 1px solid var(--border-color2);
	padding: 10px;
	margin-bottom: 10px
}

.small-btn[data-v-3e375692] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.index-wrap[data-v-6cee72ec] {
	position: relative;
	z-index: 1;
	padding-top: 60px;
	background: var(--primary);
	width: calc(100% + 2 * var(--mg));
	margin-left: calc(-1 * var(--mg))
}

.index-wrap .swiper-container[data-v-6cee72ec] {
	box-sizing: border-box;
	position: relative;
	border-radius: var(--card-radius);
	width: 100%;
	margin: 12px auto 0;
	padding: 0 var(--mg)
}

.index-wrap .swiper-container .custom-swiper[data-v-6cee72ec] {
	width: 100%;
	overflow: hidden;
	height: 160px;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 3px solid transparent
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-6cee72ec] {
	border-radius: 8px;
	overflow: hidden
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-6cee72ec] .van-swipe__indicators {
	bottom: 15px !important;
	left: 20%
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-6cee72ec] .van-swipe__indicator {
	width: 12px;
	height: 2px;
	opacity: .4;
	border-radius: 1px;
	background-color: var(--text-gray6)
}

.index-wrap .swiper-container .custom-swiper .van-swipe[data-v-6cee72ec] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.index-wrap .swiper-container .custom-swiper .van-swipe-item img[data-v-6cee72ec] {
	width: 100%;
	height: 160px;
	border-radius: 8px;
	object-fit: center
}

.index-wrap .container-wrap[data-v-6cee72ec] {
	background: var(--bg);
	padding: var(--mg);
	padding-bottom: 80px;
	margin-top: 16px;
	border-radius: 20px 20px 0 0
}

.index-wrap .notice-info[data-v-6cee72ec] {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	cursor: pointer;
	height: 40px;
	border-radius: 26px;
	color: var(--btn-text);
	background: var(--bg-weight)
}

.index-wrap .notice-info .volume-icon[data-v-6cee72ec] {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	margin: 0 9px 0 10px;
	background: url(data:image/png;base64,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) center no-repeat;
	background-size: 100% 100%;
	border-radius: 4px
}

.index-wrap .notice-info .van-notice-bar[data-v-6cee72ec] {
	width: 100%;
	padding: 0 5px;
	background: transparent;
	font-size: 14px;
	color: var(--btn-text)
}

.index-wrap .asserts-part[data-v-6cee72ec] {
	margin-top: 0;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 15px
}

.index-wrap .asserts-part .assert[data-v-6cee72ec] {
	width: 100%;
	padding: 20px;
	min-height: 120px;
	position: relative;
	border-radius: var(--card-radius);
	background: var(--bg-card);
	overflow: hidden
}

.index-wrap .asserts-part .assert[data-v-6cee72ec]:first-child:before {
	content: "";
	position: absolute;
	bottom: -24px;
	right: -24px;
	width: 100px;
	height: 100px;
	background: url(./assert-bg1-MpbjpHdQ.png) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .asserts-part .assert[data-v-6cee72ec]:last-child:before {
	content: "";
	position: absolute;
	bottom: -24px;
	right: -24px;
	width: 100px;
	height: 100px;
	background: url(data:image/png;base64,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) center no-repeat;
	background-size: 100% 100%
}

.index-wrap .asserts-part .assert .head[data-v-6cee72ec] {
	font-size: 16px;
	margin-bottom: 4px
}

.index-wrap .asserts-part .assert .body[data-v-6cee72ec] {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 5px
}

.index-wrap .asserts-part .assert .body span[data-v-6cee72ec] {
	font-size: 12px;
	margin-left: 5px;
	font-weight: 400
}

.index-wrap .asserts-part .assert .foot[data-v-6cee72ec] {
	font-size: 14px;
	color: var(--text-gray)
}

.index-wrap .tools-part[data-v-6cee72ec] {
	margin-top: 0;
	padding: var(--mg) 0;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	row-gap: 10px
}

.index-wrap .tools-part .part[data-v-6cee72ec] {
	width: 100%
}

.index-wrap .tools-part .part .wrap[data-v-6cee72ec] {
	display: flex;
	flex-direction: column;
	align-items: center
}

.index-wrap .tools-part .part .wrap .img-wrap[data-v-6cee72ec] {
	width: 48px;
	height: 48px;
	margin-bottom: 4px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center
}

.index-wrap .tools-part .part .wrap .img-wrap img[data-v-6cee72ec] {
	width: 32px;
	height: 32px;
	margin: 0 auto
}

.index-wrap .tools-part .part .wrap .label[data-v-6cee72ec] {
	font-size: 12px;
	text-align: center
}

.index-wrap .tools-part .btn-download[data-v-6cee72ec] {
	margin-top: 12px;
	position: relative;
	width: 100%;
	height: 72px;
	border-radius: var(--btn-radius);
	padding: 0 14px 0 18px;
	background: var(--bg-download);
	display: flex;
	align-items: center
}

.index-wrap .tools-part .btn-download[data-v-6cee72ec]:after {
	content: "";
	position: absolute;
	right: 14px;
	top: 5px;
	background: url(./download-l-V-DBWi.png) center no-repeat;
	background-size: 100% 100%;
	width: 147px;
	height: 61px
}

.index-wrap .tools-part .btn-download .left .label[data-v-6cee72ec] {
	font-size: 20px;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 22px
}

.index-wrap .tools-part .btn-download .left .icon[data-v-6cee72ec] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 16px;
	border-radius: 20px;
	background: var(--primary)
}

.index-wrap .title[data-v-6cee72ec] {
	font-size: 18px;
	color: #000
}

.index-wrap .membership-list[data-v-6cee72ec] {
	margin-top: 10px;
	background: var(--bg-card);
	border-radius: var(--card-radius);
	padding: var(--mg)
}

.index-wrap .membership-list .swiper-vertical[data-v-6cee72ec] {
	touch-action: auto
}

.index-wrap .membership-list .membership-content[data-v-6cee72ec] {
	max-height: 120px;
	margin: 10px 0
}

.index-wrap .membership-list .membership-content[data-v-6cee72ec] .swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between
}

.index-wrap .coin-data-card[data-v-6cee72ec] {
	width: 100%;
	border-radius: var(--card-radius);
	background: var(--bg-second);
	padding: 10px;
	margin-bottom: 10px
}

.small-btn[data-v-4bc91ddd] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-8216972d] {
	padding-bottom: 80px
}

.home-wrap .custom-swiper[data-v-8216972d] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	border: 1px solid var(--border-color);
	background: var(--bg-card)
}

.home-wrap .custom-swiper .van-swipe[data-v-8216972d] {
	border-radius: 4px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-8216972d] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-8216972d] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-8216972d] .van-swipe-item {
	border-radius: 4px
}

.home-wrap .custom-swiper .van-swipe[data-v-8216972d] .van-swipe-item img {
	width: 100%;
	height: 175px;
	border-radius: 4px;
	object-fit: center
}

.home-wrap .card1[data-v-8216972d] {
	background: url(./home-card-bg1-DaGohe6n.png) no-repeat center;
	overflow: hidden;
	background-size: cover
}

.home-wrap .card2[data-v-8216972d] {
	background: url(./home-card-bg2-BG8YrEpv.png) no-repeat center;
	overflow: hidden;
	background-size: cover
}

.home-wrap .customer-van-tabs[data-v-8216972d] .van-tabs__line {
	background: linear-gradient(to right, #28c7a0, #847cd5)
}

.home-wrap .drawbox[data-v-8216972d] {
	animation: jump-8216972d 1s infinite
}

@keyframes jump-8216972d {
	0% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-20px)
	}

	to {
		transform: translateY(0)
	}
}

.home-wrap .drawbox2[data-v-8216972d] {
	animation: spinning-cog-8216972d 1s infinite
}

@keyframes spinning-cog-8216972d {
	0% {
		transform: scale(1)
	}

	20% {
		transform: scale(1.1)
	}

	to {
		transform: scale(1)
	}
}

.small-btn[data-v-a4cf0903] {
	background: var(--primary);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--card-radius);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 1px
}

.home-wrap[data-v-d0891f42] {
	padding-bottom: 80px
}

.home-wrap .custom-swiper[data-v-d0891f42] {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: var(--card-radius);
	background: var(--bg-card)
}

.home-wrap .custom-swiper .van-swipe[data-v-d0891f42] {
	border-radius: 8px;
	overflow: hidden
}

.home-wrap .custom-swiper .van-swipe[data-v-d0891f42] .van-swipe__indicators {
	bottom: 15px !important
}

.home-wrap .custom-swiper .van-swipe[data-v-d0891f42] .van-swipe__indicator--active {
	opacity: 1;
	background: var(--btn-text)
}

.home-wrap .custom-swiper .van-swipe[data-v-d0891f42] .van-swipe-item {
	border-radius: 8px
}

.home-wrap .custom-swiper .van-swipe[data-v-d0891f42] .van-swipe-item img {
	width: 100%;
	height: 175px;
	border-radius: 8px;
	object-fit: center
}

.home-wrap .card1[data-v-d0891f42] {
	background: url(./home-card-bg1-DaGohe6n.png) no-repeat center;
	overflow: hidden;
	background-size: cover
}

.home-wrap .card2[data-v-d0891f42] {
	background: url(./home-card-bg2-BG8YrEpv.png) no-repeat center;
	overflow: hidden;
	background-size: cover
}

.home-wrap .customer-van-tabs[data-v-d0891f42] .van-tabs__line {
	background: linear-gradient(to right, #28c7a0, #847cd5)
}

.home-wrap .tools-part[data-v-d0891f42] {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	padding: 20px 0
}

.home-wrap .tools-part .tool-item[data-v-d0891f42] {
	padding: 10px;
	background: var(--bg-weight);
	border-radius: var(--card-radius)
}

.home-wrap .tools-part .tool-item .img-wrap[data-v-d0891f42] {
	display: flex;
	justify-content: center;
	margin-bottom: 4px
}

.home-wrap .tools-part .tool-item .img-wrap img[data-v-d0891f42] {
	width: 38px;
	height: 38px
}

.home-wrap .tools-part .tool-item .label[data-v-d0891f42] {
	font-size: 12px;
	text-align: center;
	font-weight: 700
}

.home-wrap .drawbox[data-v-d0891f42] {
	animation: jump-d0891f42 1s infinite
}

@keyframes jump-d0891f42 {
	0% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-20px)
	}

	to {
		transform: translateY(0)
	}
}

.home-wrap .drawbox2[data-v-d0891f42] {
	animation: spinning-cog-d0891f42 1s infinite
}

@keyframes spinning-cog-d0891f42 {
	0% {
		transform: scale(1)
	}

	20% {
		transform: scale(1.1)
	}

	to {
		transform: scale(1)
	}
}


.image-container {
    display: inline-block; /* or block, depending on your layout */
    background-color: rgba(48, 72, 76, 1); /* Example: semi-transparent black backdrop */
    padding: 10px; /* Optional: Add padding to create space around the image */
    border-radius: 58px; /* Optional: Add rounded corners */
}

.recharge-item[data-v-f26e5428] {
    border-bottom: 1px dashed var(--text-gray);
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.recharge-item[data-v-f26e5428]:last-child {
    border-bottom: 0
}

.recharge-item .name[data-v-f26e5428] {
    color: var(--btn-text);
    margin: 0 10px
}



.recharge-wrap .copy-address[data-v-aeb79416] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-aeb79416] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    font-size: 13px;
    color: #fff
}

.recharge-wrap .base-main-btn[data-v-aeb79416] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-0e0b4220] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-0e0b4220] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #425b8d;
    font-size: 13px;
    color: #fff
}

.recharge-wrap .base-main-btn[data-v-0e0b4220] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-79706e3f] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-second)
}

.recharge-wrap .btn[data-v-79706e3f] {
    max-width: 100px;
    margin-left: 50%;
    margin-top: 10px;
    transform: translate(-50%);
    height: 30px;
    border-radius: var(--btn-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    color: var(--btn-text2);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-79706e3f] {
    margin-top: 20px;
    width: 100%
}

.van-radio-group .van-radio[data-v-79706e3f] {
    margin-bottom: 8px
}

.van-radio-group .van-radio[data-v-79706e3f] .van-radio__label {
    color: var(--btn-text)
}

.recharge-wrap .copy-address[data-v-792fae85] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-weight);
    color: var(--btn-text)
}

.recharge-wrap .btn[data-v-792fae85] {
    max-width: 100px;
    margin-left: 50%;
    margin-top: 10px;
    transform: translate(-50%);
    height: 30px;
    border-radius: var(--btn-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    color: var(--btn-text2);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-792fae85] {
    margin-top: 20px;
    width: 100%
}

.van-radio-group .van-radio[data-v-792fae85] {
    margin-bottom: 8px
}

.van-radio-group .van-radio[data-v-792fae85] .van-radio__label {
    color: var(--btn-text)
}

.recharge-wrap .copy-address[data-v-820d96a0] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    justify-content: center;
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--border-color2);
    color: var(--btn-text)
}

.recharge-wrap .btn[data-v-820d96a0] {
    max-width: 100px;
    margin-left: 50%;
    margin-top: 10px;
    transform: translate(-50%);
    height: 30px;
    border-radius: var(--card-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    color: var(--base-btn-text);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-820d96a0] {
    margin-top: 20px;
    width: 100%
}

.van-radio-group .van-radio[data-v-820d96a0] {
    margin-bottom: 8px
}

.van-radio-group .van-radio[data-v-820d96a0] .van-radio__label {
    color: var(--btn-text)
}

.recharge-wrap .copy-address[data-v-7d32a026] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-weight);
    color: var(--btn-text)
}

.recharge-wrap .btn[data-v-7d32a026] {
    max-width: 100px;
    margin-left: 50%;
    margin-top: 10px;
    transform: translate(-50%);
    height: 30px;
    border-radius: var(--btn-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    color: var(--btn-text2);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-7d32a026] {
    margin-top: 20px;
    width: 100%
}

.van-radio-group .van-radio[data-v-7d32a026] {
    margin-bottom: 8px
}

.van-radio-group .van-radio[data-v-7d32a026] .van-radio__label {
    color: var(--btn-text)
}

.recharge-wrap .copy-address[data-v-2395e4a4] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    justify-content: center;
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--border-color2);
    color: var(--btn-text)
}

.recharge-wrap .btn[data-v-2395e4a4] {
    max-width: 100px;
    margin-left: 50%;
    margin-top: 10px;
    transform: translate(-50%);
    height: 30px;
    border-radius: var(--card-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    color: var(--base-btn-text);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-2395e4a4] {
    margin-top: 20px;
    width: 100%
}

.van-radio-group .van-radio[data-v-2395e4a4] {
    margin-bottom: 8px
}

.van-radio-group .van-radio[data-v-2395e4a4] .van-radio__label {
    color: var(--btn-text)
}

.recharge-wrap .copy-address[data-v-7e5ec40f] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    justify-content: center;
    border-radius: var(--card-radius);
    overflow: hidden;
    background: var(--bg-second);
    color: var(--btn-text)
}

.recharge-wrap .btn[data-v-7e5ec40f] {
    max-width: 100px;
    margin-left: 50%;
    margin-top: 10px;
    transform: translate(-50%);
    height: 30px;
    border-radius: var(--card-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    color: var(--btn-text2);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-7e5ec40f] {
    margin-top: 20px;
    width: 100%
}

.van-radio-group .van-radio[data-v-7e5ec40f] {
    margin-bottom: 8px
}

.van-radio-group .van-radio[data-v-7e5ec40f] .van-radio__label {
    color: var(--btn-text)
}

.recharge-wrap .copy-address[data-v-f3681417] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input);
    color: var(--btn-text)
}

.recharge-wrap .btn[data-v-f3681417] {
    max-width: 100px;
    margin-left: 50%;
    margin-top: 10px;
    transform: translate(-50%);
    height: 30px;
    border-radius: var(--btn-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    color: var(--btn-text2);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-f3681417] {
    margin-top: 20px;
    width: 100%
}

.van-radio-group .van-radio[data-v-f3681417] {
    margin-bottom: 8px
}

.van-radio-group .van-radio[data-v-f3681417] .van-radio__label {
    color: var(--btn-text)
}

.recharge-wrap .copy-address[data-v-d7724711] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    color: var(--btn-text)
}

.recharge-wrap .btn[data-v-d7724711] {
    max-width: 100px;
    margin-left: 50%;
    margin-top: 10px;
    transform: translate(-50%);
    height: 30px;
    border-radius: var(--btn-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    color: var(--btn-text2);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-d7724711] {
    margin-top: 20px;
    width: 100%
}

.van-radio-group .van-radio[data-v-d7724711] {
    margin-bottom: 8px
}

.van-radio-group .van-radio[data-v-d7724711] .van-radio__label {
    color: var(--btn-text)
}

.recharge-wrap .copy-address[data-v-12fa86a1] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input);
    color: var(--btn-text)
}

.recharge-wrap .btn[data-v-12fa86a1] {
    max-width: 100px;
    margin-left: 50%;
    margin-top: 10px;
    transform: translate(-50%);
    height: 30px;
    border-radius: var(--btn-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    color: var(--btn-text2);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-12fa86a1] {
    margin-top: 20px;
    width: 100%
}

.van-radio-group .van-radio[data-v-12fa86a1] {
    margin-bottom: 8px
}

.van-radio-group .van-radio[data-v-12fa86a1] .van-radio__label {
    color: var(--btn-text)
}

.recharge-wrap .copy-address[data-v-95cf4eaa] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-95cf4eaa] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: var(--btn-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--btn-bg3);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-95cf4eaa] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-0a85b03a] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-0a85b03a] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: var(--btn-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--btn-bg3);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-0a85b03a] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-a7620060] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input);
    color: #fff
}

.recharge-wrap .btn[data-v-a7620060] {
    max-width: 100px;
    margin-left: 50%;
    margin-top: 10px;
    transform: translate(-50%);
    height: 30px;
    border-radius: var(--btn-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    color: var(--btn-text2);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-a7620060] {
    margin-top: 20px;
    width: 100%
}

.van-radio-group .van-radio[data-v-a7620060] {
    margin-bottom: 8px
}

.van-radio-group .van-radio[data-v-a7620060] .van-radio__label {
    color: var(--btn-text)
}

.recharge-wrap .copy-address[data-v-71baea12] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-71baea12] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: var(--btn-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--btn-bg3);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-71baea12] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-c4863888] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-c4863888] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #425b8d;
    font-size: 13px;
    color: #fff
}

.recharge-wrap .base-main-btn[data-v-c4863888] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-cda5815c] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input);
    color: #fff
}

.recharge-wrap .btn[data-v-cda5815c] {
    max-width: 100px;
    margin-left: 50%;
    margin-top: 10px;
    transform: translate(-50%);
    height: 30px;
    border-radius: var(--btn-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    color: var(--btn-text2);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-cda5815c] {
    margin-top: 20px;
    width: 100%
}

.van-radio-group .van-radio[data-v-cda5815c] {
    margin-bottom: 8px
}

.van-radio-group .van-radio[data-v-cda5815c] .van-radio__label {
    color: var(--btn-text)
}

.recharge-wrap[data-v-d84ddd44] {
    --vv: 4.12px
}

.recharge-wrap .qrcode-bg[data-v-d84ddd44] {
    width: calc(38.66667 * var(--vv));
    height: calc(36.53333 * var(--vv));
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAS0AAAEdCAMAAABuR8FxAAAANlBMVEVHcEwCTLICTLICTLICTLICTLICTLICTLL///8CTLICTLICTLICTLICTLICTLLD1e1oldG90OsrMjE+AAAAEnRSTlMAFAsZLiYyB4AeDxIiKTdfSl1lL+HKAAADe0lEQVR42u3a0Y6iMBiA0QFECoVx9v1fdtuCo6ijXEx2EzznriZc9EtRiP/Hx6Lb4mNnuo1urqrrYYixeibGYajrHQXbsukH+86XVU3Tv9I0cdhPrq4e4oZNl31Xl17lsn4c2xfGsc+XdbuJVW3Z9bLx73OSLxvbaTq8ME1tumo/tdIR2bDreeNjPifny8Z00fGVdFnb7+Vw5aOVYm3Y9rzzcTkn9ZBiHU9hk3Evh6uckbDV6ZhylcNVp8aHjbHetVb4c0i3VarV5aN1COHrM3En3slZvkLI9+LQzbWOIZRYvuXvlFwhHJdaMd2Ic61jOjyeINamkivVSrdivK6VYo2eTm+MJdd9rRyr8eZzoym5LrWqudZx/h7zVr1WfgOPc63qulZZctNznUcttdRSSy211FJLLbXUUksttdRSSy211FILtdT6h7XiZRnVuqu1zpOWZQ4i//Wq1qNa13nOUyPLWAQ3tdZ50rJvpxDySIhaj2qt8pRZkxDK/Iw6d27yLLMm/XmyknWtdZ48a1I1TbWn+ZnfvBVv8uRZkxj3NT/zq7nWebr0QVqI9UOu2zx7nDb61V7yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAv6xLVNiWp+vqRK8fW13nSYshxiF9oMyjWKs8XVpUTVOlD+R6FGuVpx6qph/HvqmGWpw7N3nq2PRtCG3fRLUe1Frl6Ya0mkKY0npwK97diOs8aTlOhxAO06jWw1rXebrYn5d9VOuu1jpPWraHYwjHQ6vWw1rXebrqsqzUuqu1zqOWWmqppZZaaqmlllpqqaWWWmqppZZaaqmFWmr9j1rlH7PndtfipfJ34lWt5S+gz5Kr+lmMw77mcPLwzBBj9VSJ9Xn5h+xcq+Tqn2maPc3h5OGZpulfKLEe1cq52ieWQZNuN7HK8Ez7XIl1VSvfmXOtlOuZaSqDJruplYdnpunwQo6Vay1zEMtYxFfJ9Uzqlb7pdnK48tFKsVKNF3KWr8tQTZ1/FE9hm3EvhysfrTFs9if/JJZpt3IrntR64lRuxPp83YYj+aZ34rLz72OSfxzGDd937/ktP298/J7KLQ8er39L3/MJ4rzxy5NmfqitXj+oveXT6bzvavUWs+Ul4D3ffH7Yd7fF+71Vr/f9F5ava7GYRP1RAAAAAElFTkSuQmCC) no-repeat 0 0/contain
}

.recharge-wrap .copy-address[data-v-d84ddd44] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 30px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-d84ddd44] {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    border-radius: 0 12px 12px 0;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    font-size: 13px;
    color: var(--btn-text)
}

.recharge-wrap .base-main-btn[data-v-d84ddd44] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-ae0ab464] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input);
    color: #fff
}

.recharge-wrap .copy-address .btn[data-v-ae0ab464] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: var(--btn-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
    color: var(--primary);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-ae0ab464] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-01a624ea] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-01a624ea] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--btn-bg3);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-01a624ea] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-917d1c7e] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-917d1c7e] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: var(--btn-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--btn-bg3);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-917d1c7e] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap[data-v-eb990080] {
    --vv: 4.12px
}

.recharge-wrap .qrcode-bg[data-v-eb990080] {
    width: calc(38.66667 * var(--vv));
    height: calc(36.53333 * var(--vv));
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAS0AAAEdCAMAAABuR8FxAAAANlBMVEVHcEwCTLICTLICTLICTLICTLICTLICTLL///8CTLICTLICTLICTLICTLICTLLD1e1oldG90OsrMjE+AAAAEnRSTlMAFAsZLiYyB4AeDxIiKTdfSl1lL+HKAAADe0lEQVR42u3a0Y6iMBiA0QFECoVx9v1fdtuCo6ijXEx2EzznriZc9EtRiP/Hx6Lb4mNnuo1urqrrYYixeibGYajrHQXbsukH+86XVU3Tv9I0cdhPrq4e4oZNl31Xl17lsn4c2xfGsc+XdbuJVW3Z9bLx73OSLxvbaTq8ME1tumo/tdIR2bDreeNjPifny8Z00fGVdFnb7+Vw5aOVYm3Y9rzzcTkn9ZBiHU9hk3Evh6uckbDV6ZhylcNVp8aHjbHetVb4c0i3VarV5aN1COHrM3En3slZvkLI9+LQzbWOIZRYvuXvlFwhHJdaMd2Ic61jOjyeINamkivVSrdivK6VYo2eTm+MJdd9rRyr8eZzoym5LrWqudZx/h7zVr1WfgOPc63qulZZctNznUcttdRSSy211FJLLbXUUksttdRSSy211FILtdT6h7XiZRnVuqu1zpOWZQ4i//Wq1qNa13nOUyPLWAQ3tdZ50rJvpxDySIhaj2qt8pRZkxDK/Iw6d27yLLMm/XmyknWtdZ48a1I1TbWn+ZnfvBVv8uRZkxj3NT/zq7nWebr0QVqI9UOu2zx7nDb61V7yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAv6xLVNiWp+vqRK8fW13nSYshxiF9oMyjWKs8XVpUTVOlD+R6FGuVpx6qph/HvqmGWpw7N3nq2PRtCG3fRLUe1Frl6Ya0mkKY0npwK97diOs8aTlOhxAO06jWw1rXebrYn5d9VOuu1jpPWraHYwjHQ6vWw1rXebrqsqzUuqu1zqOWWmqppZZaaqmlllpqqaWWWmqppZZaaqmFWmr9j1rlH7PndtfipfJ34lWt5S+gz5Kr+lmMw77mcPLwzBBj9VSJ9Xn5h+xcq+Tqn2maPc3h5OGZpulfKLEe1cq52ieWQZNuN7HK8Ez7XIl1VSvfmXOtlOuZaSqDJruplYdnpunwQo6Vay1zEMtYxFfJ9Uzqlb7pdnK48tFKsVKNF3KWr8tQTZ1/FE9hm3EvhysfrTFs9if/JJZpt3IrntR64lRuxPp83YYj+aZ34rLz72OSfxzGDd937/ktP298/J7KLQ8er39L3/MJ4rzxy5NmfqitXj+oveXT6bzvavUWs+Ul4D3ffH7Yd7fF+71Vr/f9F5ava7GYRP1RAAAAAElFTkSuQmCC) no-repeat 0 0/contain
}

.recharge-wrap .copy-address[data-v-eb990080] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 30px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-eb990080] {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    border-radius: 0 12px 12px 0;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    font-size: 13px;
    color: #000
}

.recharge-wrap .base-main-btn[data-v-eb990080] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-0a73916f] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-0a73916f] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--btn-bg3);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-0a73916f] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-fa6bde1c] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-fa6bde1c] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: var(--btn-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--btn-bg3);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-fa6bde1c] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-268b6236] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-268b6236] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    font-size: 13px;
    color: #000
}

.recharge-wrap .base-main-btn[data-v-268b6236] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .container-card[data-v-43a05fd6] {
    margin-top: var(--mg);
    background: var(--bg-card);
    margin-right: 0
}

.recharge-wrap .small-logo[data-v-43a05fd6] {
    width: 100%!important
}

.recharge-wrap .copy-address[data-v-43a05fd6] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input);
    border: 1px solid var(--border-color)
}

.recharge-wrap .copy-address .btn[data-v-43a05fd6] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 25px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--btn-bg5);
    color: var(--btn-text5);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-43a05fd6] {
    margin-top: 20px;
    width: 100%
}

.van-radio-group .van-radio[data-v-43a05fd6] {
    margin-bottom: 8px
}

.van-radio-group .van-radio[data-v-43a05fd6] .van-radio__label {
    color: var(--btn-text)
}

.recharge-wrap .container-card[data-v-5433536d] {
    margin-top: var(--mg);
    background: var(--text-white)
}

.recharge-wrap .copy-address[data-v-5433536d] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input);
    border: 1px solid var(--border-color)
}

.recharge-wrap .copy-address .btn[data-v-5433536d] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 25px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    color: var(--btn-text2);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-5433536d] {
    margin-top: 20px;
    width: 100%
}

.van-radio-group .van-radio[data-v-5433536d] {
    margin-bottom: 8px
}

.van-radio-group .van-radio[data-v-5433536d] .van-radio__label {
    color: var(--btn-text)
}

.recharge-wrap .copy-address[data-v-f40ae9be] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-f40ae9be] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: var(--btn-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--btn-bg3);
    color: var(--btn-text2);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-f40ae9be] {
    margin-top: 20px;
    width: 100%
}

.van-radio-group .van-radio[data-v-f40ae9be] {
    margin-bottom: 8px
}

.van-radio-group .van-radio[data-v-f40ae9be] .van-radio__label {
    color: var(--btn-text)
}

.recharge-wrap .copy-address[data-v-ac1b66bc] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-ac1b66bc] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--btn-bg3);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-ac1b66bc] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-5976583d] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-5976583d] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-5976583d] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-306a3809] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-306a3809] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    font-size: 13px;
    color: #000
}

.recharge-wrap .base-main-btn[data-v-306a3809] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap[data-v-f17bab10] {
    --vv: 4.12px
}

.recharge-wrap .qrcode-bg[data-v-f17bab10] {
    width: calc(38.66667 * var(--vv));
    height: calc(36.53333 * var(--vv));
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAS0AAAEdCAMAAABuR8FxAAAANlBMVEVHcEwCTLICTLICTLICTLICTLICTLICTLL///8CTLICTLICTLICTLICTLICTLLD1e1oldG90OsrMjE+AAAAEnRSTlMAFAsZLiYyB4AeDxIiKTdfSl1lL+HKAAADe0lEQVR42u3a0Y6iMBiA0QFECoVx9v1fdtuCo6ijXEx2EzznriZc9EtRiP/Hx6Lb4mNnuo1urqrrYYixeibGYajrHQXbsukH+86XVU3Tv9I0cdhPrq4e4oZNl31Xl17lsn4c2xfGsc+XdbuJVW3Z9bLx73OSLxvbaTq8ME1tumo/tdIR2bDreeNjPifny8Z00fGVdFnb7+Vw5aOVYm3Y9rzzcTkn9ZBiHU9hk3Evh6uckbDV6ZhylcNVp8aHjbHetVb4c0i3VarV5aN1COHrM3En3slZvkLI9+LQzbWOIZRYvuXvlFwhHJdaMd2Ic61jOjyeINamkivVSrdivK6VYo2eTm+MJdd9rRyr8eZzoym5LrWqudZx/h7zVr1WfgOPc63qulZZctNznUcttdRSSy211FJLLbXUUksttdRSSy211FILtdT6h7XiZRnVuqu1zpOWZQ4i//Wq1qNa13nOUyPLWAQ3tdZ50rJvpxDySIhaj2qt8pRZkxDK/Iw6d27yLLMm/XmyknWtdZ48a1I1TbWn+ZnfvBVv8uRZkxj3NT/zq7nWebr0QVqI9UOu2zx7nDb61V7yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAv6xLVNiWp+vqRK8fW13nSYshxiF9oMyjWKs8XVpUTVOlD+R6FGuVpx6qph/HvqmGWpw7N3nq2PRtCG3fRLUe1Frl6Ya0mkKY0npwK97diOs8aTlOhxAO06jWw1rXebrYn5d9VOuu1jpPWraHYwjHQ6vWw1rXebrqsqzUuqu1zqOWWmqppZZaaqmlllpqqaWWWmqppZZaaqmFWmr9j1rlH7PndtfipfJ34lWt5S+gz5Kr+lmMw77mcPLwzBBj9VSJ9Xn5h+xcq+Tqn2maPc3h5OGZpulfKLEe1cq52ieWQZNuN7HK8Ez7XIl1VSvfmXOtlOuZaSqDJruplYdnpunwQo6Vay1zEMtYxFfJ9Uzqlb7pdnK48tFKsVKNF3KWr8tQTZ1/FE9hm3EvhysfrTFs9if/JJZpt3IrntR64lRuxPp83YYj+aZ34rLz72OSfxzGDd937/ktP298/J7KLQ8er39L3/MJ4rzxy5NmfqitXj+oveXT6bzvavUWs+Ul4D3ffH7Yd7fF+71Vr/f9F5ava7GYRP1RAAAAAElFTkSuQmCC) no-repeat 0 0/contain
}

.recharge-wrap .copy-address[data-v-f17bab10] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 30px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-f17bab10] {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    border-radius: 0 12px 12px 0;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    font-size: 13px;
    color: var(--btn-text)
}

.recharge-wrap .base-main-btn[data-v-f17bab10] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-6bf37a77] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-6bf37a77] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--btn-bg3);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-6bf37a77] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-6e94b69c] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-6e94b69c] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    font-size: 13px;
    color: #000
}

.recharge-wrap .base-main-btn[data-v-6e94b69c] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-c267b504] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-c267b504] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    font-size: 13px;
    color: #fff
}

.recharge-wrap .base-main-btn[data-v-c267b504] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-0e014810] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden
}

.recharge-wrap .copy-address .btn[data-v-0e014810] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    font-size: 13px;
    color: #fff
}

.recharge-wrap .base-main-btn[data-v-0e014810] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-9b14de32] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-9b14de32] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #425b8d;
    font-size: 13px;
    color: #fff
}

.recharge-wrap .copy-address .btn[data-v-88888888] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(17, 36, 40, 0.1);
    font-size: 13px;
    color: #fff
}

.recharge-wrap .base-main-btn[data-v-9b14de32] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-db381402] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-db381402] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 25px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    color: var(--btn-text2);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-db381402] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-98983600] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-98983600] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    font-size: 13px;
    color: #fff
}

.recharge-wrap .base-main-btn[data-v-98983600] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-4d747011] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-4d747011] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--btn-bg3);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-4d747011] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-5fc5f54c] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-5fc5f54c] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: var(--btn-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    font-size: 13px;
    color: #000
}

.recharge-wrap .base-main-btn[data-v-5fc5f54c] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-4c559795] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-4c559795] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: var(--btn-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--btn-bg3);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-4c559795] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-5b85d5f7] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-5b85d5f7] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    font-size: 13px;
    color: #fff
}

.recharge-wrap .base-main-btn[data-v-5b85d5f7] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-9d8e0f06] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-9d8e0f06] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary);
    font-size: 13px;
    color: #fff
}

.recharge-wrap .base-main-btn[data-v-9d8e0f06] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-caed0d2c] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-caed0d2c] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #003682;
    font-size: 13px;
    color: #fff
}

.recharge-wrap .base-main-btn[data-v-caed0d2c] {
    margin-top: 20px;
    width: 100%
}

.recharge-wrap .copy-address[data-v-3b73bb83] {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 16px;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-input)
}

.recharge-wrap .copy-address .btn[data-v-3b73bb83] {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    border-radius: var(--btn-radius);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--btn-bg3);
    font-size: 13px
}

.recharge-wrap .base-main-btn[data-v-3b73bb83] {
    margin-top: 20px;
    width: 100%
}


.custom-popup {
    
    background-color: rgba(17, 36, 40, 0.5);
    color: #fff;
  }



  .timeline-item[data-v-1c384de3] {
    position: relative
}

.timeline-item[data-v-1c384de3]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-2d18e412] {
    position: relative
}

.timeline-item[data-v-2d18e412]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-6c252db4] {
    position: relative
}

.timeline-item[data-v-6c252db4]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-d4ef6620] {
    position: relative
}

.timeline-item[data-v-d4ef6620]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-c31c6d5f] {
    position: relative
}

.timeline-item[data-v-c31c6d5f]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-21266854] {
    position: relative
}

.timeline-item[data-v-21266854]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-b6533c3e] {
    position: relative
}

.timeline-item[data-v-b6533c3e]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-29f94be4] {
    position: relative
}

.timeline-item[data-v-29f94be4]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-915e1ec3] {
    position: relative
}

.timeline-item[data-v-915e1ec3]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-81fe69ed] {
    position: relative
}

.timeline-item[data-v-81fe69ed]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-5fbe1653] {
    position: relative
}

.timeline-item[data-v-5fbe1653]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-df3c9bd0] {
    position: relative
}

.timeline-item[data-v-df3c9bd0]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--primary);
    border-left: 2px dashed var(--bg-card)
}

.timeline-item[data-v-95828479] {
    position: relative
}

.timeline-item[data-v-95828479]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-0a93a65a] {
    position: relative
}

.timeline-item[data-v-0a93a65a]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-4b2ef895] {
    position: relative
}

.timeline-item[data-v-4b2ef895]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-0ea24947] {
    position: relative
}

.timeline-item[data-v-0ea24947]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed #f59a23
}

.timeline-item[data-v-e5cf5d12] {
    position: relative
}

.timeline-item[data-v-e5cf5d12]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-0b7abde3] {
    position: relative
}

.timeline-item[data-v-0b7abde3]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-75c604e8] {
    position: relative
}

.timeline-item[data-v-75c604e8]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-c1a62393] {
    position: relative
}

.timeline-item[data-v-c1a62393]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--main-text)
}

.timeline-item[data-v-b73425b2] {
    position: relative
}

.timeline-item[data-v-b73425b2]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--bg-weight)
}

.timeline-item[data-v-a88e33d5] {
    position: relative
}

.timeline-item[data-v-a88e33d5]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-facc9e0d] {
    position: relative
}

.timeline-item[data-v-facc9e0d]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-048a6934] {
    position: relative
}

.timeline-item[data-v-048a6934]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-02958e15] {
    position: relative
}

.timeline-item[data-v-02958e15]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-f2586940] {
    position: relative
}

.timeline-item[data-v-f2586940]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-9afc9a12] {
    position: relative
}

.timeline-item[data-v-9afc9a12]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-668623a8] {
    position: relative
}

.timeline-item[data-v-668623a8]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-43ffc65d] {
    position: relative
}

.timeline-item[data-v-43ffc65d]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-cbe89f80] {
    position: relative
}

.timeline-item[data-v-cbe89f80]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-6c5fe8f5] {
    position: relative
}

.timeline-item[data-v-6c5fe8f5]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-aaed0fea] {
    position: relative
}

.timeline-item[data-v-aaed0fea]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-1e58eda3] {
    position: relative
}

.timeline-item[data-v-1e58eda3]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-37338317] {
    position: relative
}

.timeline-item[data-v-37338317]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-d81191de] {
    position: relative
}

.timeline-item[data-v-d81191de]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-c9d5c37f] {
    position: relative
}

.timeline-item[data-v-c9d5c37f]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-7857ebb2] {
    position: relative
}

.timeline-item[data-v-7857ebb2]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-0ac3c403] {
    position: relative
}

.timeline-item[data-v-0ac3c403]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-8dfbe0c0] {
    position: relative
}

.timeline-item[data-v-8dfbe0c0]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-7faf3621] {
    position: relative
}

.timeline-item[data-v-7faf3621]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-241053be] {
    position: relative
}

.timeline-item[data-v-241053be]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-21dd63e1] {
    position: relative
}

.timeline-item[data-v-21dd63e1]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-d440168c] {
    position: relative
}

.timeline-item[data-v-d440168c]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}

.timeline-item[data-v-03ea76c3] {
    position: relative
}

.timeline-item[data-v-03ea76c3]:not(:last-of-type):before {
    content: "";
    position: absolute;
    top: 30px;
    left: 9px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--bg);
    border-left: 2px dashed var(--primary)
}
