@charset "UTF-8";
:root,
:host {
    --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: .6;
    --van-disabled-opacity: .5;
    --van-background: var(--van-gray-1);
    --van-background-2: var(--van-white);
    --van-background-3: var(--van-white);
    --van-padding-base: 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: .3s;
    --van-duration-fast: .2s;
    --van-ease-out: ease-out;
    --van-ease-in: ease-in;
    --van-border-color: var(--van-gray-3);
    --van-border-width: 1px;
    --van-radius-sm: 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
}

body {
    margin: 0;
    font-family: var(--van-base-font)
}

a {
    text-decoration: none
}

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

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

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

@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(.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, .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-2d11f47c] {
    display: flex;
    justify-content: center;
    align-items: center
}

.base-dialog .dialog-wrap[data-v-2d11f47c] {
    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-2d11f47c] {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-gray)
}

.base-dialog .dialog-wrap .dialog-content[data-v-2d11f47c] {
    padding: 10px;
    height: 100%;
    border-radius: var(--card-radius)
}

.base-dialog .dialog-wrap .dialog-content .dialog-title[data-v-2d11f47c] {
    width: 100%;
    font-size: 24px;
    text-align: center;
    padding: 16px 0 10px;
    font-weight: 700;
    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
}

.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: .8
}

.base-main-btn.disable {
    filter: grayscale(100%);
    color: #ccc
}

.shake[data-v-68d3b47c] {
    animation: shakebox-68d3b47c .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(./Ce1nAspUgtREg-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 .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(./RdkjKo0sxdP-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 .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(./HiCboWkoslUm-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 .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(./3tS2LyUEDPBj8sR95Y.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 .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(./EnNuOGSDxaBkL35qKR.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 .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(./BqamOVxvSw0DObFxvt.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 .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(./FDdJgYzWuFMD4bahoq.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 .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(./Ce1nAspUgtREg-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 .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(./A9Vfgd0wfCOqOKcFkJ.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 .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(./Ce1nAspUgtREg-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 .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(./e5hVxF91yFCQhfMzSM.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 .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(./duiaAIgEFhBtjeoFVX.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 .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(./AuIWCOadVFy3iTPcYj.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 .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(./Ce1nAspUgtREg-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 .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(./Atv8uHJkPvaN4Cm4rv.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 .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(./AuIWCOadVFy3iTPcYj.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 .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(./U5iDHPxOa3Ba81qGS8.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 .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(./Ce1nAspUgtREg-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 .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(./4RDq15x0WhDgjL10TI.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 .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(./KIIJst8iCHDzttodGV.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 .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(./pQ8XxMtwcsDnBfZ659.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 .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(./uVELdjDpkwCldVBypg.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 .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(./AuzTF9KmrlBYz2uGci.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 .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(./kAWWpCIXLgCTunODXZ.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 .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(./7uss0CvkWmlBFlctdY.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 .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(./LqvRLDfDFXCW5s5ZkS.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 .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(./s3DC5nhU4fC2tcaz6k.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 .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(./9KoHdHvEIkYXKxU-_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 .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(./Atv8uHJkPvaN4Cm4rv.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 .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(./TMX6dMuhxoBAVtvxt-.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 .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(./Ce1nAspUgtREg-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 .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(./eMpkY3OKzQCrAijcHD.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 .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(./Ce1nAspUgtREg-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 .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(./LqvRLDfDFXCW5s5ZkS.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 .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(./eMpkY3OKzQCrAijcHD.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 .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(./BqamOVxvSw0DObFxvt.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 .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(./3tS2LyUEDPBj8sR95Y.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 .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(./BqamOVxvSw0DObFxvt.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 .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(./Ce1nAspUgtREg-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 .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(./Ce1nAspUgtREg-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 .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(./BqamOVxvSw0DObFxvt.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 .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(./HiCboWkoslUm-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 .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(./RdkjKo0sxdP-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 .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(./duiaAIgEFhBtjeoFVX.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 .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(./AuIWCOadVFy3iTPcYj.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 .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(./AuIWCOadVFy3iTPcYj.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: .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(./ruyGk7baEIB_iwAnHR.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(./4qbqzITv8VqWK_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(./GQLT8gAUOA3Mu53U62.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(./4qbqzITv8VqWK_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: -.25em
}

sup {
    top: -.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 / .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 / .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\: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 22q-3.475-.875-5.738-3.988T4 11.1V5l8-3l8 3v6.1q0 3.8-2.262 6.913T12 22m0-2.1q2.425-.75 4.05-2.963T17.95 12H12V4.125l-6 2.25v5.175q0 .175.05.45H12z'/%3E%3C/svg%3E");
    -webkit-mask: var(--un-icon) no-repeat;
    mask: 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-proicons\:google-chrome {
    --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='M12 8.25a3.75 3.75 0 0 0-3.747 3.904M12 8.25a3.75 3.75 0 0 1 3.608 4.775M12 8.25h8.458m-4.85 4.775a3.752 3.752 0 0 1-7.355-.871m7.355.871l-3.08 8.21m7.93-12.985A9.252 9.252 0 0 0 4.6 6.45m15.858 1.8q.085.19.161.386a9.25 9.25 0 0 1-8.09 12.599m0 0A9.25 9.25 0 0 1 2.75 12c0-2.083.688-4.004 1.85-5.55m3.653 5.704L4.6 6.45'/%3E%3C/svg%3E");
    -webkit-mask: var(--un-icon) no-repeat;
    mask: 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-10px {
    left: 10px
}

.left-13px {
    left: 13px
}

.left-60px {
    left: 60px
}

.left-65px {
    left: 65px
}

.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-130px {
    top: 130px
}

.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-48px {
    top: 48px
}

.top-4px {
    top: 4px
}

.top-50px {
    top: 50px
}

.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: .75rem;
    margin-right: .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: .25rem;
    margin-bottom: .25rem
}

.my-10px,
[my-10px=""] {
    margin-top: 10px;
    margin-bottom: 10px
}

.my-11px {
    margin-top: 11px;
    margin-bottom: 11px
}

.my-12px {
    margin-top: 12px;
    margin-bottom: 12px
}

.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: .5rem;
    margin-bottom: .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: -.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: .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: -.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: .25rem
}

.ml-10px {
    margin-left: 10px
}

.ml-11px {
    margin-left: 11px
}

.ml-16px {
    margin-left: 16px
}

.ml-2 {
    margin-left: .5rem
}

.ml-20px {
    margin-left: 20px
}

.ml-22px {
    margin-left: 22px
}

.ml-2px {
    margin-left: 2px
}

.ml-3 {
    margin-left: .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: -.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: .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: .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: .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: .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: .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: .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: .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: .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: .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: .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: .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(.8, 0, 1, 1)
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(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: .5rem
}

.gap-20px {
    gap: 20px
}

.gap-21px {
    gap: 21px
}

.gap-3,
[gap-3=""] {
    gap: .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: .5rem
}

.gap-row-4 {
    row-gap: 1rem
}

.space-x-1>:not([hidden])~:not([hidden]) {
    --un-space-x-reverse: 0;
    margin-left: calc(.25rem * calc(1 - var(--un-space-x-reverse)));
    margin-right: calc(.25rem * var(--un-space-x-reverse))
}

.space-y-3>:not([hidden])~:not([hidden]) {
    --un-space-y-reverse: 0;
    margin-top: calc(.75rem * calc(1 - var(--un-space-y-reverse)));
    margin-bottom: calc(.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: .2;
    border-color: hsla(0, 0%, 100%, var(--un-border-opacity))
}

.border-\[rgba\(255\,
255\,
255\,
0\.05\)\] {
    --un-border-opacity: .05;
    border-color: rgba(255, 255, 255, var(--un-border-opacity))
}

.border-\[rgba\(255\,
255\,
255\,
0\.16\)\] {
    --un-border-opacity: .16;
    border-color: rgba(255, 255, 255, var(--un-border-opacity))
}

.border-\[rgba\(255\,
255\,
255\,
0\.3\)\] {
    --un-border-opacity: .3;
    border-color: rgba(255, 255, 255, var(--un-border-opacity))
}

.border-\[rgba\(255\,
255\,
255\,
0\.5\)\] {
    --un-border-opacity: .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: .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: .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: .5rem
}

.rounded-md,
[rounded-md=""] {
    border-radius: .375rem
}

.rounded-xl {
    border-radius: .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: .75rem;
    border-bottom-right-radius: .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, .08)
}

.bg-\[rbga\(255\,
255\,
255\,
0\.09\)\] {
    background-color: rbga(255, 255, 255, .09)
}

.bg-\[rbga\(255\,
255\,
255\,
0\.1\)\] {
    background-color: rbga(255, 255, 255, .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: .05;
    background-color: rgba(0, 0, 0, var(--un-bg-opacity))
}

.bg-\[rgba\(0\,
0\,
0\,
\.2\)\] {
    --un-bg-opacity: .2;
    background-color: rgba(0, 0, 0, var(--un-bg-opacity))
}

.bg-\[rgba\(0\,
0\,
0\,
\.81\)\] {
    --un-bg-opacity: .81;
    background-color: rgba(0, 0, 0, var(--un-bg-opacity))
}

.bg-\[rgba\(0\,
0\,
0\,
0\.05\)\] {
    --un-bg-opacity: .05;
    background-color: rgba(0, 0, 0, var(--un-bg-opacity))
}

.bg-\[rgba\(243\,
243\,
243\,
0\.1\)\] {
    --un-bg-opacity: .1;
    background-color: rgba(243, 243, 243, var(--un-bg-opacity))
}

.bg-\[rgba\(255\,
255\,
255\,
\.05\)\] {
    --un-bg-opacity: .05;
    background-color: rgba(255, 255, 255, var(--un-bg-opacity))
}

.bg-\[rgba\(255\,
255\,
255\,
0\.08\)\] {
    --un-bg-opacity: .08;
    background-color: rgba(255, 255, 255, var(--un-bg-opacity))
}

.bg-\[rgba\(255\,
255\,
255\,
0\.12\)\] {
    --un-bg-opacity: .12;
    background-color: rgba(255, 255, 255, var(--un-bg-opacity))
}

.bg-\[rgba\(255\,
255\,
255\,
0\.13\)\] {
    --un-bg-opacity: .13;
    background-color: rgba(255, 255, 255, var(--un-bg-opacity))
}

.bg-\[rgba\(255\,
255\,
255\,
0\.24\)\] {
    --un-bg-opacity: .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-\#e9ebea {
    --un-bg-opacity: 1;
    background-color: rgb(233 235 234 / 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: .1
}

.bg-opacity-12,
[bg-opacity-12=""] {
    --un-bg-opacity: .12
}

.bg-opacity-16 {
    --un-bg-opacity: .16
}

.bg-opacity-20 {
    --un-bg-opacity: .2
}

.bg-opacity-5 {
    --un-bg-opacity: .05
}

.bg-opacity-50 {
    --un-bg-opacity: .5
}

.bg-opacity-55,
[bg-opacity-55=""] {
    --un-bg-opacity: .55
}

.bg-opacity-6,
[bg-opacity-6=""] {
    --un-bg-opacity: .06
}

.bg-opacity-9 {
    --un-bg-opacity: .09
}

.bg-cover {
    background-size: cover
}

.bg-no-repeat {
    background-repeat: no-repeat
}

[fill-opacity~="0.18"] {
    --un-fill-opacity: .0018
}

[fill-opacity~="0.5"] {
    --un-fill-opacity: .005
}

[fill-opacity~="0.8"] {
    --un-fill-opacity: .008
}

[fill-opacity~="1"] {
    --un-fill-opacity: .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: .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: .5rem
}

.p-2\ !,
[p-2\ !=""] {
    padding: .5rem !important
}

.p-3 {
    padding: .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: .5rem;
    padding-right: .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: .75rem;
    padding-right: .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: .25rem;
    padding-bottom: .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: .5rem;
    padding-bottom: .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: .75rem;
    padding-bottom: .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: .5rem;
    padding-bottom: .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: .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: .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-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: .875rem;
    line-height: 1.25rem
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.text-xs,
[text-xs=""] {
    font-size: .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: .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 / .2)), 0 0 1px var(--un-text-shadow-color, rgb(1 0 5 / .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: .3 !important
}

.opacity-60 {
    opacity: .6
}

.opacity-70 {
    opacity: .7
}

.opacity-80 {
    opacity: .8
}

.shadow {
    --un-shadow: var(--un-shadow-inset) 0 1px 3px 0 var(--un-shadow-color, rgb(0 0 0 / .1)), var(--un-shadow-inset) 0 1px 2px -1px var(--un-shadow-color, rgb(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 / .1)), var(--un-shadow-inset) 0 8px 10px -6px var(--un-shadow-color, rgb(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 / .1)), var(--un-shadow-inset) 0 1px 2px -1px var(--un-shadow-color, rgb(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(.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(.4, 0, .2, 1);
    transition-duration: .15s
}

.transition-all,
[transition-all=""] {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.ease,
.ease-in-out {
    transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.ease-in {
    transition-timing-function: cubic-bezier(.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: .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: .9375
}

.van-loading__line--3 {
    transform: rotate(90deg);
    opacity: .875
}

.van-loading__line--4 {
    transform: rotate(120deg);
    opacity: .8125
}

.van-loading__line--5 {
    transform: rotate(150deg);
    opacity: .75
}

.van-loading__line--6 {
    transform: rotate(180deg);
    opacity: .6875
}

.van-loading__line--7 {
    transform: rotate(210deg);
    opacity: .625
}

.van-loading__line--8 {
    transform: rotate(240deg);
    opacity: .5625
}

.van-loading__line--9 {
    transform: rotate(270deg);
    opacity: .5
}

.van-loading__line--10 {
    transform: rotate(300deg);
    opacity: .4375
}

.van-loading__line--11 {
    transform: rotate(330deg);
    opacity: .375
}

.van-loading__line--12 {
    transform: rotate(360deg);
    opacity: .3125
}

:root,
: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, .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: .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(.7);
    opacity: 0
}

.van-dialog-bounce-leave-active {
    transform: translate3d(0, -50%, 0) scale(.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: .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, .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, .19);
    --golden-gradient: linear-gradient(60deg, #fcecb9, #efc26f);
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(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: .5rem;
    --padding: 30px;
    --mg: 12px;
    --bg-card: linear-gradient(180deg, rgba(255, 255, 255, .3) 0%, rgba(255, 255, 255, .12) 100%);
    --bg-weight: rgb(31 43 48);
    --btn-bg3: #44454b;
    --btn-text: #fff;
    --btn-text2: #f9b44b;
    --border-color: rgba(255, 255, 255, .2);
    --text-gray: #a5b1b9;
    --text-gray6: #aaa;
    --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, .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(./24yDrmsruaCT5B4LjW.png);
    background-size: 100% 100%;
    width: 100%;
    height: 192px;
    content: "";
    top: 0;
    right: 0
}

.a-t-1 .container-login:after {
    position: fixed;
    background: url(./BqMVW5nkDTDGo-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(./24yDrmsruaCT5B4LjW.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: .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, .8);
    --text-gray: #cbe7f4;
    --text-gray6: #aaa;
    --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, .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(./2IeqbNS5LVDzBzGV0v.png) no-repeat 30px 20px/250px 250px, url(./2IeqbNS5LVDzBzGV0v.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(./2IeqbNS5LVDzBzGV0v.png) no-repeat calc(50% - 165px) 25px/350px 350px, url(./2IeqbNS5LVDzBzGV0v.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: .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(./2IeqbNS5LVDzBzGV0v.png) no-repeat 30px 20px/250px 250px, url(./2IeqbNS5LVDzBzGV0v.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(./2IeqbNS5LVDzBzGV0v.png) no-repeat calc(50% - 165px) 25px/350px 350px, url(./2IeqbNS5LVDzBzGV0v.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, .6);
    --text-gray6: #aaa;
    --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, .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 .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: .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: .5rem;
    --padding: 30px;
    --mg: 12px;
    --bg-weight: #1f2230;
    --btn-bg3: #44454b;
    --btn-text: #fff;
    --btn-text2: #f9b44b;
    --border-color: rgba(255, 255, 255, .2);
    --text-gray: #a5b1b9;
    --text-gray6: #aaa;
    --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, .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(./edGaw5gtA0BENgVx7b.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: .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, .3) 0%, rgba(255, 255, 255, .12) 100%);
    --bg-weight: rgba(255, 255, 255, .12);
    --btn-bg3: #44454b;
    --btn-text: #fff;
    --btn-text2: #f9b44b;
    --border-color: rgba(255, 255, 255, .2);
    --text-gray: #a5b1b9;
    --text-gray6: #aaa;
    --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, .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: .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(./6Ag3YLjs56CgSUmFoM.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, .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: .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, .3) 0%, rgba(255, 255, 255, .12) 100%);
    --bg-weight: #1e1f23;
    --btn-bg3: #44454b;
    --btn-text: var(--primary);
    --btn-text2: #f9b44b;
    --border-color: rgba(255, 255, 255, .2);
    --text-gray: rgba(239, 201, 157, .5);
    --text-gray6: #aaa;
    --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, .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(./82fWaqtBctDVFdPvfU.png);
    background-size: 100% 100%
}

.a-t-6 .container-login:after {
    position: fixed;
    background: url(./RVdxat3418fh9Tsh5W.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, .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: .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, .3) 0%, rgba(255, 255, 255, .12) 100%);
    --bg-weight: rgba(255, 255, 255, .08);
    --btn-bg3: #44454b;
    --btn-text: #fff;
    --btn-text2: #f9b44b;
    --border-color: rgba(255, 255, 255, .16);
    --border-color2: rgba(255, 255, 255, .1);
    --text-gray: #9b9b9b;
    --text-gray6: #aaa;
    --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, .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, .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(./Tu9ybqBWgGDrWrGT6Z.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, .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: .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(./5GlIMtifm7CKgnJ2eU.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(./RTg6nLQVFnDkycj9oz.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(./ohL1gWtfcED9ykxEAj.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, .2))
}

.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 .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-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 .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: url(./cVqiUCpXuzBBa4cqgJ.png) no-repeat 30px 20px/140px 140px, url(./cVqiUCpXuzBBa4cqgJ.png) no-repeat 250px 450px/140px 140px, #112528;
    background-attachment: fixed
}

.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: .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(./cVqiUCpXuzBBa4cqgJ.png) no-repeat 30px 20px/140px 140px, url(./cVqiUCpXuzBBa4cqgJ.png) no-repeat 250px 450px/140px 140px, #112528;
    background-attachment: fixed
}

.a-t-9 {
    --radius: 15px;
    --btn-radius: 16px;
    --card-radius: 15px;
    --padding: 23px;
    --mg: 16px;
    --bg-weight: rgba(255, 255, 255, .19);
    --btn-text2: #fff;
    --text-gray: rgba(0, 0, 0, .5);
    --text-gray6: rgba(1, 11, 46, .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(./tOg02im8CBl_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(./CaF3F70p5nDAcOMQ-q.png) no-repeat;
    background-size: cover
}

.a-t-9 .container-login.c-1:after {
    content: "";
    background: url(./CaF3F70p5nDAcOMQ-q.png) no-repeat;
    background-size: cover
}

.a-t-9 .container-login.c-2:after {
    content: "";
    background: url(./Y80veEIKbQDuBFs_By.png) no-repeat;
    background-size: cover
}

.a-t-9 .container-login.c-3:after {
    content: "";
    background: url(./eJztkm7u2hDswiCSxK.png) no-repeat;
    background-size: cover
}

.a-t-9 .container-login.c-4:after {
    content: "";
    background: url(./H9V8R3W0Yvq5k41L9r.png) no-repeat;
    background-size: cover
}

.a-t-9 .container-login.c-5:after {
    content: "";
    background: url(./8WjmEtVBQC3UHt5KjI.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: .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, .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 .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: .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(./pIQUofanhbk9gHWZqM.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, .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 .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: .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(./q3tKjv9TGBDS6JmEkZ.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, .12);
    --text-gray: #12575f;
    --text-gray6: #12575f;
    --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, .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 .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: .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, .8);
    --text-gray6: #3a3a3c;
    --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, .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 .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: .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, .3) 0%, rgba(255, 255, 255, .12) 100%);
    --bg-weight: rgba(255, 255, 255, .08);
    --btn-bg3: #44454b;
    --btn-text: #fff;
    --btn-text2: #f9b44b;
    --border-color: rgba(255, 255, 255, .16);
    --border-color2: rgba(255, 255, 255, .1);
    --text-gray: rgba(255, 255, 255, .5);
    --text-gray6: #aaa;
    --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, .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, .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, .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, .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: .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(./R52NUeMY8AipIJojdx.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, .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 .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: .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, .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 .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: .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, .1);
    --btn-bg3: #1e3360;
    --btn-text: #fff;
    --btn-text2: #f9b44b;
    --border-color: rgba(38, 62, 108, .7);
    --border-color2: rgba(255, 255, 255, .1);
    --text-gray: #687697;
    --text-gray6: #5d6b8c;
    --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, .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(./HMxAALbp5HD9Ht3XxL.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(./R52NUeMY8AipIJojdx.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, .19);
    --shadow: rgba(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(./8EgTPyeCUNF130gw3O.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(./3ngtuyWbJuMyNaSiIN.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(./N3dzI1pTiiBe_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(./N3dzI1pTiiBe_v_oKC.png) no-repeat;
    background-size: 100% 100%
}

.a-t-18 .container-login .decor.color-2:after {
    content: "";
    background: url(./sfC5c7r3tMD2zk8QX2.png) no-repeat;
    background-size: 100% 100%
}

.a-t-18 .container-login .decor.color-3:after {
    content: "";
    background: url(./CwhN1pNiFEeWlXbOnG.png) no-repeat;
    background-size: 100% 100%
}

.a-t-18 .container-login .decor.color-4:after {
    content: "";
    background: url(./wmfo4FXAHwDmeuwHK2.png) no-repeat;
    background-size: 100% 100%
}

.a-t-18 .container-login .decor.color-5:after {
    content: "";
    background: url(./69IIptZ5jQCLHz3zUe.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, .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: .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, .08);
    --bg-card: #fff;
    --bg-weight: rgba(255, 255, 255, .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, .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: -.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(./flRmyfeCOhCPuDx_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: .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, .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(./TXxEWKpatrcZTY1IbN.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(./TXxEWKpatrcZTY1IbN.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: .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(./vfGeZe8OFDDuwDb0Vm.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(./phN9mrJ3EmCnlLAmwc.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(./NbBiC2471SDClE_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(./4MbpnaOyQFCim5-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(./RvdBlG8Ko9tXiThDw8.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: .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, .8);
    --text-gray6: #3a3a3c;
    --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, .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 .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: .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, .3) 0%, rgba(255, 255, 255, .12) 100%);
    --bg-weight: hsla(0, 0%, 100%, .08);
    --btn-bg3: #44454b;
    --btn-text: #fff;
    --btn-text2: #f9b44b;
    --border-color: rgba(255, 255, 255, .2);
    --text-gray: #a5b1b9;
    --text-gray6: #aaa;
    --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, .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(./6Ag3YLjs56CgSUmFoM.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, .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: .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(./8cj8FCxobmCXVUQEx-.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, .3) 0%, rgba(255, 255, 255, .12) 100%);
    --bg-weight: rgba(255, 255, 255, .08);
    --btn-bg3: #44454b;
    --btn-text: #fff;
    --btn-text2: #f9b44b;
    --border-color: rgba(255, 255, 255, .16);
    --border-color2: rgba(255, 255, 255, .1);
    --text-gray: rgba(255, 255, 255, .5);
    --text-gray6: #aaa;
    --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, .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, .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, .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: .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, .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 .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: .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, .3) 0%, rgba(255, 255, 255, .12) 100%);
    --bg-weight: rgba(255, 255, 255, .12);
    --btn-bg3: #44454b;
    --btn-text: #fff;
    --btn-text2: #f9b44b;
    --border-color: rgba(255, 255, 255, .2);
    --text-gray: #a5b1b9;
    --text-gray6: #aaa;
    --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, .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: .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(./6Ag3YLjs56CgSUmFoM.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, .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: .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, .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, .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, .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: .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, .8);
    --bg-weight: rgba(255, 255, 255, .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, .2));
    --box-shadow: 0px 2px 4px 0px rgba(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(./naTIqRZNVUBW90mx3F.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: .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: .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, .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 .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(./oPZ1dW68f8Bjdcn4Vi.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(./ORThwwgjZLCSC0DTVF.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: .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(./ORThwwgjZLCSC0DTVF.png) no-repeat 0 0/contain #32211b;
    background-attachment: fixed
}

@media screen and (min-width: 720px) {
    #app.a-t-29 {
        background: url(./ORThwwgjZLCSC0DTVF.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, .08);
    --bg-card: rgba(167, 167, 167, .1);
    --bg-weight: rgba(255, 255, 255, .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, .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(./Nm2vdKG3czBz-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(./Wpe2PYuqPIDI5L6M6y.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(./hXU6lPgUKmDnqhz8na.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(./GupCmGGP5ODtdwUHRm.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(./U6N5Z4KhneD_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: .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(./SaWU1PFoE2WCrzcCXC.png) no-repeat;
    background-size: 100% auto
}

.a-t-30.no-2 .container-card:after {
    background: url(./776kto88FDCw3DAO6e.png) no-repeat;
    background-size: 100% auto
}

.a-t-30.no-3 .container-card:after {
    background: url(./TiqtDs1IeHvk47F4Oa.png) no-repeat;
    background-size: 100% auto
}

.a-t-30.no-4 .container-card:after {
    background: url(./CMz1xHJPj9Cn50wudP.png) no-repeat;
    background-size: 100% auto
}

.a-t-30.no-5 .container-card:after {
    background: url(./TiqtDs1IeHvk47F4Oa.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, .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 .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: .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, .3) 0%, rgba(255, 255, 255, .12) 100%);
    --bg-weight: rgba(255, 255, 255, .12);
    --btn-bg3: #44454b;
    --btn-text: #fff;
    --btn-text2: #f9b44b;
    --border-color: rgba(255, 255, 255, .2);
    --text-gray: #a5b1b9;
    --text-gray6: #aaa;
    --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, .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, .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: .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, .08);
    --bg-weight: hsla(0, 0%, 100%, .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(./HsGYLfZtm4Cy1yfHpk.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: .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(./HsGYLfZtm4Cy1yfHpk.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, .3) 0%, rgba(255, 255, 255, .12) 100%);
    --bg-weight: rgba(255, 255, 255, .12);
    --btn-bg3: #44454b;
    --btn-text: #fff;
    --btn-text2: #f9b44b;
    --border-color: rgba(255, 255, 255, .2);
    --text-gray: #a5b1b9;
    --text-gray6: #aaa;
    --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, .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: .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(./6Ag3YLjs56CgSUmFoM.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, .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: .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, .3) 0%, rgba(255, 255, 255, .12) 100%);
    --bg-weight: rgba(255, 255, 255, .12);
    --btn-bg3: #44454b;
    --btn-text: #fff;
    --btn-text2: #f9b44b;
    --border-color: rgba(255, 255, 255, .2);
    --text-gray: #a5b1b9;
    --text-gray6: #aaa;
    --btn-light: linear-gradient(180deg, #f8feff, rgba(255, 255, 255, .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, .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: .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, .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, .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(./KzAND3Ur70D357tqis.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(./Gh5el087FeDp2Ahl3m.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(./16nlO7bCZ0DsBqYleR.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(./5dtpEqB7xK_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(./k4SJMc5xTSC4Mq6RC7.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(./QY8Dm920Pc-C4Bvc6t.png) no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 100%
}

.a-t-36 .container-login.c-2 {
    background: url(./ASd6TOr7mfDCluxvhr.png) no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 100%
}

.a-t-36 .container-login.c-3 {
    background: url(./9f0Giz0umnDJDXjn9v.png) no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 100%
}

.a-t-36 .container-login.c-4 {
    background: url(./ucxiAajyDmBOhOJ6yG.png) no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 100%
}

.a-t-36 .container-login.c-5 {
    background: url(./3NmNS9j9u5BjszLrmi.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: .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(./nTy7yRrjv3CO-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, .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, .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: -.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(./xZa4MYMKoRDHKDK2F1.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, .08);
    --bg-card: rgba(255, 255, 255, .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, .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: .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(./KzAND3Ur70D357tqis.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(./Gh5el087FeDp2Ahl3m.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(./16nlO7bCZ0DsBqYleR.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(./5dtpEqB7xK_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(./k4SJMc5xTSC4Mq6RC7.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: .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, .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, .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(./B02QJWjcBo3otEhofc.png);
    background-size: 100% auto;
    width: 100%;
    height: 100%
}

.a-t-39 .container-login.c-2 {
    background: url(./b0U5hcXowvD-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(./SOlEMm5XD8DH0G-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, .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(./HVEoUMcP24BvJ9ra7g.png);
    background-size: 100% auto;
    width: 100%;
    height: 100%
}

.a-t-40 .container-login.c-2 {
    background: url(./r6Ts9v8zcVCeQd6KTQ.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(./PctY8TefajCZzeMOD5.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, .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, .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: -.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: .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, .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, .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: .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, .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: -.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: .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, .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: .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, .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 .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: .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, .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, .2));
    --bg3: linear-gradient(180deg, #29a869 .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, .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: .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(./BGVtHo0zRABoneekOX.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

html,
body {
    background: #f5f5f5;
    --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
}

#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
}