@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)
}

: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-9a7c3f43] {
    display: flex;
    justify-content: center;
    align-items: center
}

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

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

.base-dialog .dialog-wrap .dialog-content .dialog-title[data-v-9a7c3f43] {
    width: 100%;
    font-size: 24px;
    text-align: center;
    padding: 16px 0 10px;
    font-weight: 700;
    color: var(--btn-text)
}

.container-card {
    background: var(--bg-weight)
}

.rich-text[data-v-556e09d3] {
    color: var(--btn-text)
}

.rich-text[data-v-556e09d3] table {
    max-width: 100% !important;
    border: 1px solid #ccc;
    margin: 10px 0
}

.rich-text[data-v-556e09d3] table th,
.rich-text[data-v-556e09d3] table td {
    border: 1px solid #ccc
}

.rich-text[data-v-556e09d3] table td {
    padding: 0 5px;
    word-break: break-all
}

.rich-text[data-v-556e09d3] p {
    font-size: 14px;
    line-height: 1.6
}

.rich-text[data-v-556e09d3] h1 {
    font-size: 32px;
    font-weight: 700
}

.rich-text[data-v-556e09d3] h2 {
    font-size: 24px;
    font-weight: 700
}

.rich-text[data-v-556e09d3] a {
    color: var(--primary);
    text-decoration: underline
}

.rich-text[data-v-556e09d3] a:hover {
    text-decoration: none
}

.rich-text[data-v-556e09d3] p>img {
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto
}

.rich-text[data-v-556e09d3] p>video {
    max-width: 100% !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-5c932015] {
    animation: shakebox-5c932015 .4s linear infinite
}

@keyframes shakebox-5c932015 {
    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-5c932015] {
    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-5c932015] {
    position: relative;
    width: 100%
}

.overlay[data-v-5c932015] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 9999;
    display: block
}

.draw-box-wrap[data-v-5c932015] {
    position: relative;
    width: 375px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important
}

.draw-wheel-box[data-v-5c932015] {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    overflow: hidden
}

@keyframes rotate-5c932015 {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.draw-wheel[data-v-5c932015] {
    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(/assets/bg1-REg-Mwk9.png)
}

.prize[data-v-5c932015] {
    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-5c932015] {
    color: #cc4e01
}

.roulette-bg[data-v-5c932015] {
    width: 250px;
    height: 250px
}

.roulette-pointer[data-v-5c932015] {
    width: 40px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0)
}

.lottery-tip[data-v-5c932015] {
    color: #fff;
    position: absolute;
    top: 120px
}

.lottery-tip2[data-v-5c932015] {
    color: #fff;
    position: absolute;
    bottom: 100px;
    text-align: center
}

.icon-close[data-v-5c932015] {
    position: absolute;
    top: 20px;
    right: 50px
}

.btn-invite[data-v-5c932015] {
    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-5c932015] {
    position: absolute;
    width: 62px;
    height: 62px;
    background: red;
    opacity: 0;
    border-radius: 50%;
    cursor: pointer
}

.shake[data-v-4fb4aab6] {
    animation: shakebox-4fb4aab6 .4s linear infinite
}

@keyframes shakebox-4fb4aab6 {
    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-4fb4aab6] {
    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-4fb4aab6] {
    position: relative;
    width: 100%
}

.overlay[data-v-4fb4aab6] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 9999;
    display: block
}

.draw-box-wrap[data-v-4fb4aab6] {
    position: relative;
    width: 375px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important
}

.draw-wheel-box[data-v-4fb4aab6] {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    overflow: hidden
}

@keyframes rotate-4fb4aab6 {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.draw-wheel[data-v-4fb4aab6] {
    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(/assets/bg2-P-e6B7MY.png)
}

.prize[data-v-4fb4aab6] {
    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-4fb4aab6] {
    color: #cc4e01
}

.roulette-bg[data-v-4fb4aab6] {
    width: 250px;
    height: 250px
}

.roulette-pointer[data-v-4fb4aab6] {
    position: absolute;
    width: 62px;
    height: auto;
    top: 49%;
    left: 49%;
    transform: translate(-50%, -50%) rotate(0)
}

.lottery-tip[data-v-4fb4aab6] {
    color: #fff;
    position: absolute;
    top: 120px
}

.lottery-tip2[data-v-4fb4aab6] {
    color: #fff;
    position: absolute;
    bottom: 100px;
    text-align: center
}

.icon-close[data-v-4fb4aab6] {
    position: absolute;
    top: 20px;
    right: 50px
}

.btn-invite[data-v-4fb4aab6] {
    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-4fb4aab6] {
    position: absolute;
    width: 62px;
    height: 62px;
    background: red;
    opacity: 0;
    border-radius: 50%;
    cursor: pointer
}

.shake[data-v-9a30175e] {
    animation: shakebox-9a30175e .4s linear infinite
}

@keyframes shakebox-9a30175e {
    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-9a30175e] {
    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-9a30175e] {
    position: relative;
    width: 100%
}

.overlay[data-v-9a30175e] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 9999;
    display: block
}

.draw-box-wrap[data-v-9a30175e] {
    position: relative;
    width: 375px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important
}

.draw-wheel-box[data-v-9a30175e] {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    overflow: hidden
}

@keyframes rotate-9a30175e {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.draw-wheel[data-v-9a30175e] {
    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(/assets/bg3-DmCthyKX.png)
}

.prize[data-v-9a30175e] {
    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-9a30175e] {
    color: #cc4e01
}

.roulette-bg[data-v-9a30175e] {
    width: 250px;
    height: 250px
}

.roulette-pointer[data-v-9a30175e] {
    position: absolute;
    width: 62px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0)
}

.lottery-tip[data-v-9a30175e] {
    color: #fff;
    position: absolute;
    top: 120px
}

.lottery-tip2[data-v-9a30175e] {
    color: #fff;
    position: absolute;
    bottom: 100px;
    text-align: center
}

.icon-close[data-v-9a30175e] {
    position: absolute;
    top: 20px;
    right: 50px
}

.btn-invite[data-v-9a30175e] {
    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-9a30175e] {
    position: absolute;
    width: 62px;
    height: 62px;
    background: red;
    opacity: 0;
    border-radius: 50%;
    cursor: pointer
}

.shake[data-v-094e33d3] {
    animation: shakebox-094e33d3 .4s linear infinite
}

@keyframes shakebox-094e33d3 {
    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-094e33d3] {
    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-094e33d3] {
    position: relative;
    width: 100%
}

.overlay[data-v-094e33d3] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 9999;
    display: block
}

.draw-box-wrap[data-v-094e33d3] {
    position: relative;
    width: 375px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important
}

.draw-wheel-box[data-v-094e33d3] {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    overflow: hidden
}

@keyframes rotate-094e33d3 {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.draw-wheel[data-v-094e33d3] {
    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(/assets/bg4-Bj8sR95Y.png)
}

.prize[data-v-094e33d3] {
    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-094e33d3] {
    color: #cc4e01
}

.roulette-bg[data-v-094e33d3] {
    width: 250px;
    height: 250px
}

.roulette-pointer[data-v-094e33d3] {
    position: absolute;
    width: 62px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0)
}

.lottery-tip[data-v-094e33d3] {
    color: #fff;
    position: absolute;
    top: 120px
}

.lottery-tip2[data-v-094e33d3] {
    color: #fff;
    position: absolute;
    bottom: 100px;
    text-align: center
}

.icon-close[data-v-094e33d3] {
    position: absolute;
    top: 20px;
    right: 50px
}

.btn-invite[data-v-094e33d3] {
    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-094e33d3] {
    position: absolute;
    width: 62px;
    height: 62px;
    background: red;
    opacity: 0;
    border-radius: 50%;
    cursor: pointer
}

.shake[data-v-3852448b] {
    animation: shakebox-3852448b .4s linear infinite
}

@keyframes shakebox-3852448b {
    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-3852448b] {
    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-3852448b] {
    position: relative;
    width: 100%
}

.overlay[data-v-3852448b] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 9999;
    display: block
}

.draw-box-wrap[data-v-3852448b] {
    position: relative;
    width: 375px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important
}

.draw-wheel-box[data-v-3852448b] {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    overflow: hidden
}

@keyframes rotate-3852448b {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.draw-wheel[data-v-3852448b] {
    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(/assets/bg5-CVHG0crr.png)
}

.prize[data-v-3852448b] {
    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-3852448b] {
    color: #cc4e01
}

.roulette-bg[data-v-3852448b] {
    width: 250px;
    height: 250px
}

.roulette-pointer[data-v-3852448b] {
    position: absolute;
    width: 62px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0)
}

.lottery-tip[data-v-3852448b] {
    color: #fff;
    position: absolute;
    top: 120px
}

.lottery-tip2[data-v-3852448b] {
    color: #fff;
    position: absolute;
    bottom: 100px;
    text-align: center
}

.icon-close[data-v-3852448b] {
    position: absolute;
    top: 20px;
    right: 50px
}

.btn-invite[data-v-3852448b] {
    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-3852448b] {
    position: absolute;
    width: 62px;
    height: 62px;
    background: red;
    opacity: 0;
    border-radius: 50%;
    cursor: pointer
}

.shake[data-v-5afefea7] {
    animation: shakebox-5afefea7 .4s linear infinite
}

@keyframes shakebox-5afefea7 {
    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-5afefea7] {
    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-5afefea7] {
    position: relative;
    width: 100%
}

.overlay[data-v-5afefea7] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 9999;
    display: block
}

.draw-box-wrap[data-v-5afefea7] {
    position: relative;
    width: 375px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important
}

.draw-wheel-box[data-v-5afefea7] {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    overflow: hidden
}

@keyframes rotate-5afefea7 {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.draw-wheel[data-v-5afefea7] {
    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(/assets/bg6-0DObFxvt.png)
}

.prize[data-v-5afefea7] {
    position: absolute;
    width: 90px;
    height: 125px;
    top: 1px;
    transform: translate(50%);
    transform-origin: bottom center;
    padding-top: 24px;
    box-sizing: border-box
}

.prize-color[data-v-5afefea7] {
    color: #cc4e01
}

.roulette-bg[data-v-5afefea7] {
    width: 250px;
    height: 250px
}

.roulette-pointer[data-v-5afefea7] {
    position: absolute;
    width: 62px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0)
}

.lottery-tip[data-v-5afefea7] {
    color: #fff;
    position: absolute;
    top: 120px
}

.lottery-tip2[data-v-5afefea7] {
    color: #fff;
    position: absolute;
    bottom: 100px;
    text-align: center
}

.icon-close[data-v-5afefea7] {
    position: absolute;
    top: 20px;
    right: 50px
}

.btn-invite[data-v-5afefea7] {
    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-5afefea7] {
    position: absolute;
    width: 62px;
    height: 62px;
    background: red;
    opacity: 0;
    border-radius: 50%;
    cursor: pointer
}

.shake[data-v-03bfc1b8] {
    animation: shakebox-03bfc1b8 .4s linear infinite
}

@keyframes shakebox-03bfc1b8 {
    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-03bfc1b8] {
    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-03bfc1b8] {
    position: relative;
    width: 100%
}

.overlay[data-v-03bfc1b8] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 9999;
    display: block
}

.draw-box-wrap[data-v-03bfc1b8] {
    position: relative;
    width: 375px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important
}

.draw-wheel-box[data-v-03bfc1b8] {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    overflow: hidden
}

@keyframes rotate-03bfc1b8 {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.draw-wheel[data-v-03bfc1b8] {
    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(/assets/bg7-CykANF2F.png)
}

.prize[data-v-03bfc1b8] {
    position: absolute;
    width: 90px;
    height: 125px;
    top: 1px;
    transform: translate(50%);
    transform-origin: bottom center;
    padding-top: 24px;
    box-sizing: border-box
}

.prize-color[data-v-03bfc1b8] {
    color: #cc4e01
}

.roulette-bg[data-v-03bfc1b8] {
    width: 250px;
    height: 250px
}

.roulette-pointer[data-v-03bfc1b8] {
    position: absolute;
    width: 62px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0)
}

.lottery-tip[data-v-03bfc1b8] {
    color: #fff;
    position: absolute;
    top: 120px
}

.lottery-tip2[data-v-03bfc1b8] {
    color: #fff;
    position: absolute;
    bottom: 100px;
    text-align: center
}

.icon-close[data-v-03bfc1b8] {
    position: absolute;
    top: 20px;
    right: 50px
}

.btn-invite[data-v-03bfc1b8] {
    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-03bfc1b8] {
    position: absolute;
    width: 62px;
    height: 62px;
    background: red;
    opacity: 0;
    border-radius: 50%;
    cursor: pointer
}

.shake[data-v-39e8f41c] {
    animation: shakebox-39e8f41c .4s linear infinite
}

@keyframes shakebox-39e8f41c {
    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-39e8f41c] {
    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-39e8f41c] {
    position: relative;
    width: 100%
}

.overlay[data-v-39e8f41c] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 9999;
    display: block
}

.draw-box-wrap[data-v-39e8f41c] {
    position: relative;
    width: 375px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important
}

.draw-wheel-box[data-v-39e8f41c] {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    overflow: hidden
}

@keyframes rotate-39e8f41c {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.draw-wheel[data-v-39e8f41c] {
    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(/assets/bg7-CykANF2F.png)
}

.prize[data-v-39e8f41c] {
    position: absolute;
    width: 90px;
    height: 125px;
    top: 1px;
    transform: translate(50%);
    transform-origin: bottom center;
    padding-top: 24px;
    box-sizing: border-box
}

.prize-color[data-v-39e8f41c] {
    color: #cc4e01
}

.roulette-bg[data-v-39e8f41c] {
    width: 250px;
    height: 250px
}

.roulette-pointer[data-v-39e8f41c] {
    position: absolute;
    width: 62px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0)
}

.lottery-tip[data-v-39e8f41c] {
    color: #fff;
    position: absolute;
    top: 120px
}

.lottery-tip2[data-v-39e8f41c] {
    color: #fff;
    position: absolute;
    bottom: 100px;
    text-align: center
}

.icon-close[data-v-39e8f41c] {
    position: absolute;
    top: 20px;
    right: 50px
}

.btn-invite[data-v-39e8f41c] {
    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-39e8f41c] {
    position: absolute;
    width: 62px;
    height: 62px;
    background: red;
    opacity: 0;
    border-radius: 50%;
    cursor: pointer
}

.shake[data-v-50575e6d] {
    animation: shakebox-50575e6d .4s linear infinite
}

@keyframes shakebox-50575e6d {
    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-50575e6d] {
    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-50575e6d] {
    position: relative;
    width: 100%
}

.overlay[data-v-50575e6d] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 9999;
    display: block
}

.draw-box-wrap[data-v-50575e6d] {
    position: relative;
    width: 375px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important
}

.draw-wheel-box[data-v-50575e6d] {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    overflow: hidden
}

@keyframes rotate-50575e6d {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.draw-wheel[data-v-50575e6d] {
    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(/assets/bg1-REg-Mwk9.png)
}

.prize[data-v-50575e6d] {
    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-50575e6d] {
    color: #cc4e01
}

.roulette-bg[data-v-50575e6d] {
    width: 250px;
    height: 250px
}

.roulette-pointer[data-v-50575e6d] {
    width: 40px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0)
}

.lottery-tip[data-v-50575e6d] {
    color: #fff;
    position: absolute;
    top: 120px
}

.lottery-tip2[data-v-50575e6d] {
    color: #fff;
    position: absolute;
    bottom: 100px;
    text-align: center
}

.icon-close[data-v-50575e6d] {
    position: absolute;
    top: 20px;
    right: 50px
}

.btn-invite[data-v-50575e6d] {
    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-50575e6d] {
    position: absolute;
    width: 62px;
    height: 62px;
    background: red;
    opacity: 0;
    border-radius: 50%;
    cursor: pointer
}

.shake[data-v-34c3186c] {
    animation: shakebox-34c3186c .4s linear infinite
}

@keyframes shakebox-34c3186c {
    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-34c3186c] {
    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-34c3186c] {
    position: relative;
    width: 100%
}

.overlay[data-v-34c3186c] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 9999;
    display: block
}

.draw-box-wrap[data-v-34c3186c] {
    position: relative;
    width: 375px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important
}

.draw-wheel-box[data-v-34c3186c] {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    overflow: hidden
}

@keyframes rotate-34c3186c {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.draw-wheel[data-v-34c3186c] {
    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(/assets/bg6-0DObFxvt.png)
}

.prize[data-v-34c3186c] {
    position: absolute;
    width: 90px;
    height: 125px;
    top: 1px;
    transform: translate(50%);
    transform-origin: bottom center;
    padding-top: 24px;
    box-sizing: border-box
}

.prize-color[data-v-34c3186c] {
    color: #cc4e01
}

.roulette-bg[data-v-34c3186c] {
    width: 250px;
    height: 250px
}

.roulette-pointer[data-v-34c3186c] {
    position: absolute;
    width: 62px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0)
}

.lottery-tip[data-v-34c3186c] {
    color: #fff;
    position: absolute;
    top: 120px
}

.lottery-tip2[data-v-34c3186c] {
    color: #fff;
    position: absolute;
    bottom: 100px;
    text-align: center
}

.icon-close[data-v-34c3186c] {
    position: absolute;
    top: 20px;
    right: 50px
}

.btn-invite[data-v-34c3186c] {
    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-34c3186c] {
    position: absolute;
    width: 62px;
    height: 62px;
    background: red;
    opacity: 0;
    border-radius: 50%;
    cursor: pointer
}

.shake[data-v-c5d1397b] {
    animation: shakebox-c5d1397b .4s linear infinite
}

@keyframes shakebox-c5d1397b {
    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-c5d1397b] {
    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-c5d1397b] {
    position: relative;
    width: 100%
}

.overlay[data-v-c5d1397b] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 9999;
    display: block
}

.draw-box-wrap[data-v-c5d1397b] {
    position: relative;
    width: 375px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important
}

.draw-wheel-box[data-v-c5d1397b] {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    overflow: hidden
}

@keyframes rotate-c5d1397b {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.draw-wheel[data-v-c5d1397b] {
    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(/assets/bg7-CykANF2F.png)
}

.prize[data-v-c5d1397b] {
    position: absolute;
    width: 90px;
    height: 125px;
    top: 1px;
    transform: translate(50%);
    transform-origin: bottom center;
    padding-top: 24px;
    box-sizing: border-box
}

.prize-color[data-v-c5d1397b] {
    color: #cc4e01
}

.roulette-bg[data-v-c5d1397b] {
    width: 250px;
    height: 250px
}

.roulette-pointer[data-v-c5d1397b] {
    position: absolute;
    width: 62px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0)
}

.lottery-tip[data-v-c5d1397b] {
    color: #fff;
    position: absolute;
    top: 120px
}

.lottery-tip2[data-v-c5d1397b] {
    color: #fff;
    position: absolute;
    bottom: 100px;
    text-align: center
}

.icon-close[data-v-c5d1397b] {
    position: absolute;
    top: 20px;
    right: 50px
}

.btn-invite[data-v-c5d1397b] {
    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-c5d1397b] {
    position: absolute;
    width: 62px;
    height: 62px;
    background: red;
    opacity: 0;
    border-radius: 50%;
    cursor: pointer
}

.shake[data-v-5e246d93] {
    animation: shakebox-5e246d93 .4s linear infinite
}

@keyframes shakebox-5e246d93 {
    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-5e246d93] {
    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-5e246d93] {
    position: relative;
    width: 100%
}

.overlay[data-v-5e246d93] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 9999;
    display: block
}

.draw-box-wrap[data-v-5e246d93] {
    position: relative;
    width: 375px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important
}

.draw-wheel-box[data-v-5e246d93] {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    overflow: hidden
}

@keyframes rotate-5e246d93 {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.draw-wheel[data-v-5e246d93] {
    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(0);
    overflow: hidden;
    background-image: url(/assets/bg23-NQ3nwUFj.png)
}

.prize[data-v-5e246d93] {
    position: absolute;
    width: 90px;
    height: 125px;
    top: 6px;
    transform: translate(50%);
    transform-origin: bottom center;
    padding-top: 20px;
    box-sizing: border-box
}

.prize-color[data-v-5e246d93] {
    color: #cc4e01
}

.roulette-bg[data-v-5e246d93] {
    width: 250px;
    height: 250px
}

.roulette-pointer[data-v-5e246d93] {
    position: absolute;
    width: 62px;
    height: auto;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0)
}

.lottery-tip[data-v-5e246d93] {
    color: #fff;
    position: absolute;
    top: 120px
}

.lottery-tip2[data-v-5e246d93] {
    color: #fff;
    position: absolute;
    bottom: 100px;
    text-align: center
}

.icon-close[data-v-5e246d93] {
    position: absolute;
    top: 20px;
    right: 50px
}

.btn-invite[data-v-5e246d93] {
    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-5e246d93] {
    position: absolute;
    width: 62px;
    height: 62px;
    background: red;
    opacity: 0;
    border-radius: 50%;
    cursor: pointer
}

.shake[data-v-9e1fa036] {
    animation: shakebox-9e1fa036 .4s linear infinite
}

@keyframes shakebox-9e1fa036 {
    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-9e1fa036] {
    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-9e1fa036] {
    position: relative;
    width: 100%
}

.overlay[data-v-9e1fa036] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 9999;
    display: block
}

.draw-box-wrap[data-v-9e1fa036] {
    position: relative;
    width: 375px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important
}

.draw-wheel-box[data-v-9e1fa036] {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    overflow: hidden
}

@keyframes rotate-9e1fa036 {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.draw-wheel[data-v-9e1fa036] {
    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(/assets/bg6-0DObFxvt.png)
}

.prize[data-v-9e1fa036] {
    position: absolute;
    width: 90px;
    height: 125px;
    top: 1px;
    transform: translate(50%);
    transform-origin: bottom center;
    padding-top: 24px;
    box-sizing: border-box
}

.prize-color[data-v-9e1fa036] {
    color: #cc4e01
}

.roulette-bg[data-v-9e1fa036] {
    width: 250px;
    height: 250px
}

.roulette-pointer[data-v-9e1fa036] {
    position: absolute;
    width: 62px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0)
}

.lottery-tip[data-v-9e1fa036] {
    color: #fff;
    position: absolute;
    top: 120px
}

.lottery-tip2[data-v-9e1fa036] {
    color: #fff;
    position: absolute;
    bottom: 100px;
    text-align: center
}

.icon-close[data-v-9e1fa036] {
    position: absolute;
    top: 20px;
    right: 50px
}

.btn-invite[data-v-9e1fa036] {
    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-9e1fa036] {
    position: absolute;
    width: 62px;
    height: 62px;
    background: red;
    opacity: 0;
    border-radius: 50%;
    cursor: pointer
}

.shake[data-v-c0c8aa34] {
    animation: shakebox-c0c8aa34 .4s linear infinite
}

@keyframes shakebox-c0c8aa34 {
    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-c0c8aa34] {
    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-c0c8aa34] {
    position: relative;
    width: 100%
}

.overlay[data-v-c0c8aa34] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 9999;
    display: block
}

.draw-box-wrap[data-v-c0c8aa34] {
    position: relative;
    width: 375px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important
}

.draw-wheel-box[data-v-c0c8aa34] {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    overflow: hidden
}

@keyframes rotate-c0c8aa34 {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.draw-wheel[data-v-c0c8aa34] {
    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(/assets/bg7-CykANF2F.png)
}

.prize[data-v-c0c8aa34] {
    position: absolute;
    width: 90px;
    height: 125px;
    top: 1px;
    transform: translate(50%);
    transform-origin: bottom center;
    padding-top: 24px;
    box-sizing: border-box
}

.prize-color[data-v-c0c8aa34] {
    color: #cc4e01
}

.roulette-bg[data-v-c0c8aa34] {
    width: 250px;
    height: 250px
}

.roulette-pointer[data-v-c0c8aa34] {
    position: absolute;
    width: 62px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0)
}

.lottery-tip[data-v-c0c8aa34] {
    color: #fff;
    position: absolute;
    top: 120px
}

.lottery-tip2[data-v-c0c8aa34] {
    color: #fff;
    position: absolute;
    bottom: 100px;
    text-align: center
}

.icon-close[data-v-c0c8aa34] {
    position: absolute;
    top: 20px;
    right: 50px
}

.btn-invite[data-v-c0c8aa34] {
    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-c0c8aa34] {
    position: absolute;
    width: 62px;
    height: 62px;
    background: red;
    opacity: 0;
    border-radius: 50%;
    cursor: pointer
}

.base-lottery-wrap[data-v-6d217948] {
    background: transparent !important;
    display: flex;
    justify-content: center;
    align-items: center
}

.base-lottery-wrap .container-wrap[data-v-6d217948] {
    position: relative;
    box-sizing: border-box;
    padding: 0 20px;
    overflow: hidden
}

.rich-text[data-v-dcbf79d9] table {
    max-width: 100% !important;
    border: 1px solid #ccc;
    margin: 10px 0
}

.rich-text[data-v-dcbf79d9] table th,
.rich-text[data-v-dcbf79d9] table td {
    border: 1px solid #ccc
}

.rich-text[data-v-dcbf79d9] table td {
    padding: 0 5px;
    word-break: break-all
}

.rich-text[data-v-dcbf79d9] p {
    font-size: 14px;
    line-height: 1.6
}

.rich-text[data-v-dcbf79d9] h1 {
    font-size: 32px;
    font-weight: 700
}

.rich-text[data-v-dcbf79d9] h2 {
    font-size: 24px;
    font-weight: 700
}

.rich-text[data-v-dcbf79d9] a {
    color: var(--primary);
    text-decoration: underline
}

.rich-text[data-v-dcbf79d9] a:hover {
    text-decoration: none
}

.rich-text[data-v-dcbf79d9] p>img {
    max-width: 90% !important;
    height: auto !important;
    margin: 0 auto
}

: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%
}

.announce-wrap[data-v-83164500] {
    margin: 0 auto;
    height: 650px;
    opacity: 1;
    box-sizing: border-box;
    position: relative
}

.announce-wrap .announce-wrap-bg3[data-v-83164500] {
    position: relative;
    background: url(/assets/announce-bg3-U3bHMqPm.png) no-repeat;
    background-size: 100% 100%;
    z-index: 100
}

.announce-wrap .announce-wrap-bg3[data-v-83164500] .van-swipe__indicators {
    background: #00000080;
    padding: 4px 10px;
    border-radius: 10px;
    bottom: 0
}

.announce-wrap .rich-text[data-v-83164500] {
    border: 1px solid #ccc;
    border-radius: 5px;
    direction: var(--86d85970)
}

.announce-wrap .rich-text[data-v-83164500] table {
    max-width: 100% !important;
    border: 1px solid #ccc;
    margin: 10px 0
}

.announce-wrap .rich-text[data-v-83164500] table th,
.announce-wrap .rich-text[data-v-83164500] table td {
    border: 1px solid #ccc
}

.announce-wrap .rich-text[data-v-83164500] table td {
    padding: 0 5px;
    word-break: break-all
}

.announce-wrap .rich-text[data-v-83164500] p {
    font-size: 14px;
    line-height: 1.6
}

.announce-wrap .rich-text[data-v-83164500] h1 {
    font-size: 32px;
    font-weight: 700
}

.announce-wrap .rich-text[data-v-83164500] h2 {
    font-size: 24px;
    font-weight: 700
}

.announce-wrap .rich-text[data-v-83164500] a {
    color: var(--primary);
    text-decoration: underline
}

.announce-wrap .rich-text[data-v-83164500] a:hover {
    text-decoration: none
}

.announce-wrap .rich-text[data-v-83164500] p>img {
    max-width: 90% !important;
    height: auto !important;
    margin: 0 auto;
    -webkit-user-drag: none
}

: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)
}

*,
: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 Mono;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/dmmono/v14/aFTU7PB1QTsUX8KYthSQBLyM.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 Mono;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/dmmono/v14/aFTU7PB1QTsUX8KYthqQBA.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 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: 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: 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
}

.i-akar-icons\: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='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 12h16m-7-7l7 7l-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-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-bi\:toggle2-off {
    --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='M9 11c.628-.836 1-1.874 1-3a4.98 4.98 0 0 0-1-3h4a3 3 0 1 1 0 6z'/%3E%3Cpath d='M5 12a4 4 0 1 1 0-8a4 4 0 0 1 0 8m0 1A5 5 0 1 0 5 3a5 5 0 0 0 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-bi\:toggle2-on {
    --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='M7 5H3a3 3 0 0 0 0 6h4a5 5 0 0 1-.584-1H3a2 2 0 1 1 0-4h3.416q.235-.537.584-1'/%3E%3Cpath d='M16 8A5 5 0 1 1 6 8a5 5 0 0 1 10 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-bx\:bxs-info-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 d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z' 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\:task {
    --un-icon: url("data:image/svg+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 22h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2h-2a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1H5c-1.103 0-2 .897-2 2v15c0 1.103.897 2 2 2M5 5h2v2h10V5h2v15H5z'/%3E%3Cpath fill='currentColor' d='m11 13.586l-1.793-1.793l-1.414 1.414L11 16.414l5.207-5.207l-1.414-1.414z'/%3E%3C/svg%3E");
    -webkit-mask: var(--un-icon) no-repeat;
    mask: 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\:clean {
    --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='M26 20h-6v-2h6zm4 8h-6v-2h6zm-2-4h-6v-2h6z'/%3E%3Cpath fill='currentColor' d='M17.003 20a4.9 4.9 0 0 0-2.404-4.173L22 3l-1.73-1l-7.577 13.126a5.7 5.7 0 0 0-5.243 1.503C3.706 20.24 3.996 28.682 4.01 29.04a1 1 0 0 0 1 .96h14.991a1 1 0 0 0 .6-1.8c-3.54-2.656-3.598-8.146-3.598-8.2m-5.073-3.003A3.11 3.11 0 0 1 15.004 20c0 .038.002.208.017.469l-5.9-2.624a3.8 3.8 0 0 1 2.809-.848M15.45 28A5.2 5.2 0 0 1 14 25h-2a6.5 6.5 0 0 0 .968 3h-2.223A16.6 16.6 0 0 1 10 24H8a17.3 17.3 0 0 0 .665 4H6c.031-1.836.29-5.892 1.803-8.553l7.533 3.35A13 13 0 0 0 17.596 28Z'/%3E%3C/svg%3E");
    -webkit-mask: var(--un-icon) no-repeat;
    mask: 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-entypo\:video {
    --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='M20 5V3.799A.8.8 0 0 0 19.201 3H.801A.8.8 0 0 0 0 3.799V5h2v2H0v2h2v2H0v2h2v2H0v1.199A.8.8 0 0 0 .801 17h18.4a.8.8 0 0 0 .799-.801V15h-2v-2h2v-2h-2V9h2V7h-2V5zM8 13V7l5 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-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-fluent\:video-clip-28-filled {
    --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='M5.75 4A3.75 3.75 0 0 0 2 7.75v12.5A3.75 3.75 0 0 0 5.75 24h16.5A3.75 3.75 0 0 0 26 20.25V7.75A3.75 3.75 0 0 0 22.25 4zM10 10.251a1 1 0 0 1 1.472-.881l7 3.75a1 1 0 0 1 0 1.763l-7 3.75A1 1 0 0 1 10 17.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-hugeicons\:bank {
    --un-icon: url("data: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='M2 8.57c0-1.197.482-1.93 1.48-2.486l4.11-2.287C9.743 2.6 10.82 2 12 2s2.257.6 4.41 1.797l4.11 2.287C21.517 6.64 22 7.373 22 8.57c0 .324 0 .487-.035.62c-.186.7-.821.811-1.434.811H3.469c-.613 0-1.247-.11-1.434-.811C2 9.056 2 8.893 2 8.569M11.996 7h.009M4 10v8.5M8 10v8.5m8-8.5v8.5m4-8.5v8.5m-1 0H5a3 3 0 0 0-3 3a.5.5 0 0 0 .5.5h19a.5.5 0 0 0 .5-.5a3 3 0 0 0-3-3' color='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-hugeicons\:chart-histogram {
    --un-icon: 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%3Cpath d='M21 21H10c-3.3 0-4.95 0-5.975-1.025S3 17.3 3 14V3m10 7v11m5-8v8M8 13v7'/%3E%3Cpath d='M21 7.987c-1.84 0-3.808.256-5.123-1.494c-1.497-1.99-4.257-1.99-5.754 0C8.808 8.243 6.84 7.987 5 7.987H3'/%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\:copy-01 {
    --un-icon: 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%3Cpath d='M9 15c0-2.828 0-4.243.879-5.121C10.757 9 12.172 9 15 9h1c2.828 0 4.243 0 5.121.879C22 10.757 22 12.172 22 15v1c0 2.828 0 4.243-.879 5.121C20.243 22 18.828 22 16 22h-1c-2.828 0-4.243 0-5.121-.879C9 20.243 9 18.828 9 16z'/%3E%3Cpath d='M17 9c-.003-2.957-.047-4.489-.908-5.538a4 4 0 0 0-.554-.554C14.43 2 12.788 2 9.5 2c-3.287 0-4.931 0-6.038.908a4 4 0 0 0-.554.554C2 4.57 2 6.212 2 9.5c0 3.287 0 4.931.908 6.038a4 4 0 0 0 .554.554c1.05.86 2.58.906 5.538.908'/%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\:document-attachment {
    --un-icon: 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%3Cpath d='M21 11v-1c0-3.771 0-5.657-1.24-6.828C18.519 2 16.522 2 12.53 2h-1.06C7.479 2 5.482 2 4.24 3.172C3 4.343 3 6.229 3 10v4c0 3.771 0 5.657 1.24 6.828C5.481 22 7.478 22 11.47 22H12M8 7h8m-8 5h5'/%3E%3Cpath d='M21 20.647V17c0-1.43-1.343-3-3-3s-3 1.57-3 3v3.5c0 .78.733 1.5 1.636 1.5c.904 0 1.637-.72 1.637-1.5v-2.735'/%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\:folder-music {
    --un-icon: url("data: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='M7 6.5h9.75c2.107 0 3.16 0 3.917.506a3 3 0 0 1 .827.827c.464.694.503 1.427.506 3.167M12 6.5l-.633-1.267c-.525-1.05-1.005-2.106-2.168-2.542C8.69 2.5 8.108 2.5 6.944 2.5c-1.816 0-2.724 0-3.406.38A3 3 0 0 0 2.38 4.038C2 4.72 2 5.628 2 7.444V10.5c0 4.714 0 7.071 1.464 8.535C4.822 20.394 6.944 20.493 11 20.5m7.375-1.25c0 1.243-.98 2.25-2.187 2.25c-1.209 0-2.188-1.007-2.188-2.25S14.98 17 16.188 17s2.187 1.007 2.187 2.25m0 0V12.5c.292.45.525 2.34 2.625 2.7' color='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-hugeicons\:folder-shared-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%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M7.011 6.5h9.772c2.111 0 3.167 0 3.925.506c.329.219.61.5.83.828c.281.42.406.933.462 1.667m-9.978-3l-.635-1.268c-.526-1.05-1.006-2.106-2.172-2.542c-.51-.191-1.093-.191-2.26-.191c-1.82 0-2.73 0-3.414.38a3 3 0 0 0-1.16 1.158C2 4.72 2 5.628 2 7.445V10.5c0 4.715 0 7.072 1.468 8.536c1.302 1.3 3.293 1.447 7.032 1.463h.5m8.158-5.828a1.5 1.5 0 1 0 2.683-1.342a1.5 1.5 0 0 0-2.683 1.342m0 0l-3.316 1.658m0 0a1.5 1.5 0 1 0 0 1.342m0-1.342a1.5 1.5 0 0 1 0 1.342m3.316 1.658a1.5 1.5 0 1 0 2.684 1.342a1.5 1.5 0 0 0-2.684-1.342m0 0l-3.316-1.658' color='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-hugeicons\:home-08 {
    --un-icon: 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%3Cpath d='m7.088 4.762l-1 .781c-1.516 1.184-2.275 1.776-2.681 2.61C3 8.988 3 9.952 3 11.88v2.092c0 3.784 0 5.676 1.172 6.852S7.229 22 11 22h2c3.771 0 5.657 0 6.828-1.176S21 17.756 21 13.971v-2.09c0-1.929 0-2.893-.407-3.728c-.407-.834-1.165-1.426-2.681-2.61l-1-.78C14.552 2.92 13.372 2 12 2s-2.552.92-4.912 2.762'/%3E%3Cpath d='M15 16.5h2v2m-2-2v2h2m-2-2l2 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-hugeicons\:language-skill {
    --un-icon: url("data: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='M2 12c0 1.052.18 2.062.512 3m10.502-6h8.488M11 15H2.512m18.99-6a9 9 0 0 0-8.488-6c1.6 0 2.909 3.762 2.995 8.5M21.502 9c.278.789.45 1.628.498 2.5M2.512 15A9 9 0 0 0 11 21c-1.544 0-2.816-3.5-2.982-8M2 5.297C2 4.2 2 3.65 2.187 3.224c.2-.452.542-.815.968-1.025C3.557 2 4.075 2 5.11 2H6c1.886 0 2.828 0 3.414.62C10 3.243 10 4.24 10 6.24v2.259c0 .871 0 1.307-.264 1.457s-.606-.092-1.29-.576l-.105-.073c-.5-.354-.75-.53-1.034-.621c-.283-.091-.584-.091-1.185-.091h-1.01c-1.037 0-1.555 0-1.957-.199a2.06 2.06 0 0 1-.968-1.025C2 6.945 2 6.396 2 5.297m20 12c0-1.098 0-1.647-.187-2.073a2.06 2.06 0 0 0-.968-1.025C20.443 14 19.925 14 18.89 14H18c-1.886 0-2.828 0-3.414.62C14 15.243 14 16.24 14 18.24v2.259c0 .871 0 1.307.264 1.457s.606-.092 1.29-.576l.105-.073c.5-.354.75-.53 1.034-.621c.283-.091.584-.091 1.185-.091h1.01c1.037 0 1.555 0 1.957-.199c.426-.21.769-.573.968-1.025c.187-.426.187-.975.187-2.074' color='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-hugeicons\:notification-01 {
    --un-icon: 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%3Cpath d='M5.158 11.491c-.073 1.396.011 2.882-1.236 3.817A2.3 2.3 0 0 0 3 17.153C3 18.15 3.782 19 4.8 19h14.4c1.018 0 1.8-.85 1.8-1.847c0-.726-.342-1.41-.922-1.845c-1.247-.935-1.163-2.421-1.236-3.817a6.851 6.851 0 0 0-13.684 0'/%3E%3Cpath d='M10.5 3.125C10.5 3.953 11.172 5 12 5s1.5-1.047 1.5-1.875S12.828 2 12 2s-1.5.297-1.5 1.125M15 19a3 3 0 1 1-6 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-hugeicons\:play-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%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='M15.453 12.395c-.151.627-.867 1.07-2.3 1.955c-1.383.856-2.075 1.285-2.633 1.113a1.4 1.4 0 0 1-.61-.393c-.41-.45-.41-1.324-.41-3.07s0-2.62.41-3.07c.17-.186.38-.321.61-.392c.558-.173 1.25.256 2.634 1.112c1.432.886 2.148 1.329 2.3 1.955a1.7 1.7 0 0 1 0 .79'/%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\:play-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='1.5' color='currentColor'%3E%3Cpath d='M2.5 7.5h19m-4.5-5l-3 5m-4-5l-3 5M2.5 12c0-4.478 0-6.718 1.391-8.109S7.521 2.5 12 2.5c4.478 0 6.718 0 8.109 1.391S21.5 7.521 21.5 12c0 4.478 0 6.718-1.391 8.109S16.479 21.5 12 21.5c-4.478 0-6.718 0-8.109-1.391S2.5 16.479 2.5 12'/%3E%3Cpath d='M14.953 14.895c-.151.627-.867 1.07-2.3 1.955c-1.383.856-2.075 1.285-2.633 1.112a1.4 1.4 0 0 1-.61-.392C9 17.12 9 16.247 9 14.5s0-2.62.41-3.07c.17-.186.38-.321.61-.393c.558-.172 1.25.257 2.634 1.113c1.432.886 2.148 1.329 2.3 1.955a1.7 1.7 0 0 1 0 .79'/%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\:promotion {
    --un-icon: 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%3Cpath d='M14.926 2.911L8.274 6.105a2.43 2.43 0 0 1-1.617.182a8 8 0 0 0-.695-.14C4.137 5.94 3 7.384 3 9.045v.912c0 1.66 1.137 3.105 2.962 2.896a7 7 0 0 0 .695-.139a2.43 2.43 0 0 1 1.617.183l6.652 3.193c1.527.733 2.291 1.1 3.142.814c.852-.286 1.144-.899 1.728-2.125a12.17 12.17 0 0 0 0-10.556c-.584-1.226-.876-1.84-1.728-2.125c-.851-.286-1.615.08-3.142.814'/%3E%3Cpath d='M11.458 20.77L9.967 22c-3.362-2.666-2.951-3.937-2.951-9H8.15c.46 2.86 1.545 4.216 3.043 5.197c.922.604 1.112 1.876.265 2.574M7.5 12.5v-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-hugeicons\:reverse-withdrawal-01 {
    --un-icon: 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%3Cpath d='m18.935 13.945l-.67-3.648c-.29-1.576-.435-2.364-1.008-2.83S15.86 7 14.213 7H9.787c-1.647 0-2.47 0-3.044.467c-.573.466-.718 1.254-1.008 2.83l-.67 3.648c-.6 3.271-.901 4.907.024 5.98C6.014 21 7.724 21 11.142 21h1.716c3.418 0 5.128 0 6.053-1.074s.625-2.71.024-5.98'/%3E%3Cpath d='M12 10.5V17m-2.5-2l2.5 2.5l2.5-2.5m6.5-4a1.5 1.5 0 0 0 .414-.305C22 10.089 22 9.11 22 7.152s0-2.936-.586-3.544S19.886 3 18 3H6c-1.886 0-2.828 0-3.414.608S2 5.195 2 7.152s0 2.936.586 3.543q.18.188.414.305'/%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\:smart-phone-01 {
    --un-icon: 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%3Cpath d='M5 9c0-3.3 0-4.95 1.025-5.975S8.7 2 12 2s4.95 0 5.975 1.025S19 5.7 19 9v6c0 3.3 0 4.95-1.025 5.975S15.3 22 12 22s-4.95 0-5.975-1.025S5 18.3 5 15zm6 10h2'/%3E%3Cpath d='m9 2l.089.534c.193 1.157.29 1.736.686 2.088C10.19 4.989 10.776 5 12 5s1.81-.01 2.225-.378c.397-.352.493-.93.686-2.088L15 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-hugeicons\:user {
    --un-icon: url("data: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='M6.578 15.482c-1.415.842-5.125 2.562-2.865 4.715C4.816 21.248 6.045 22 7.59 22h8.818c1.546 0 2.775-.752 3.878-1.803c2.26-2.153-1.45-3.873-2.865-4.715a10.66 10.66 0 0 0-10.844 0M16.5 6.5a4.5 4.5 0 1 1-9 0a4.5 4.5 0 0 1 9 0' color='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-hugeicons\:user-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='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M20.774 18c.75 0 1.345-.471 1.88-1.13c1.096-1.35-.703-2.43-1.389-2.957c-.697-.537-1.476-.842-2.265-.913m-1-2a2.5 2.5 0 0 0 0-5M3.226 18c-.75 0-1.345-.471-1.88-1.13c-1.096-1.35.703-2.43 1.389-2.957C3.432 13.376 4.21 13.07 5 13m.5-2a2.5 2.5 0 0 1 0-5m2.584 9.111c-1.022.632-3.701 1.922-2.07 3.536C6.813 19.436 7.7 20 8.817 20h6.368c1.117 0 2.004-.564 2.801-1.353c1.632-1.614-1.047-2.904-2.069-3.536a7.46 7.46 0 0 0-7.832 0M15.5 7.5a3.5 3.5 0 1 1-7 0a3.5 3.5 0 0 1 7 0' color='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-hugeicons\:video-replay {
    --un-icon: 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%3Cpath d='M17.7 21.335c-1.172.165-2.7.165-4.75.165h-1.9c-4.03 0-6.046 0-7.298-1.252S2.5 16.98 2.5 12.95v-1.9c0-4.03 0-6.046 1.252-7.298S7.02 2.5 11.05 2.5h1.9c4.03 0 6.046 0 7.298 1.252S21.5 7.019 21.5 11.05v1.9c0 1.208 0 2.235-.034 3.115c-.027.705-.04 1.057-.307 1.19c-.267.13-.566-.08-1.163-.503L18.65 15.8'/%3E%3Cpath d='M14.945 12.395c-.176.627-1.012 1.07-2.682 1.955c-1.615.856-2.422 1.285-3.073 1.113a1.66 1.66 0 0 1-.712-.393C8 14.62 8 13.746 8 12s0-2.62.478-3.07c.198-.186.443-.321.712-.392c.65-.173 1.458.256 3.073 1.112c1.67.886 2.506 1.329 2.682 1.955c.073.259.073.531 0 .79'/%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\:outline-arrow-back-ios-new {
    --un-icon: url("data:image/svg+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.77 3.77L16 2L6 12l10 10l1.77-1.77L9.54 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\:round-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='M8.12 9.29L12 13.17l3.88-3.88a.996.996 0 1 1 1.41 1.41l-4.59 4.59a.996.996 0 0 1-1.41 0L6.7 10.7a.996.996 0 0 1 0-1.41c.39-.38 1.03-.39 1.42 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-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-icon-park-outline\:clear {
    --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='M20 5.914h8v8h15v8H5v-8h15z' clip-rule='evenodd'/%3E%3Cpath d='M8 40h32V22H8z'/%3E%3Cpath stroke-linecap='round' d='M16 39.898v-5.984m8 5.984v-6m8 6v-5.984M12 40h24'/%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-iconamoon\:arrow-up-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='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m17 14l-5-5m0 0l-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-iconoir\:piggy-bank {
    --un-icon: 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-linejoin='round' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' d='M14.5 8.5c-.78-.202-1.866-.5-2.735-.5C7.476 8 4 10.668 4 13.958c0 1.891 1.148 3.577 2.938 4.668l-.485 1.6a.6.6 0 0 0 .574.774h1.764a.6.6 0 0 0 .36-.12l1.395-1.047h2.437l1.395 1.047a.6.6 0 0 0 .36.12h1.764a.6.6 0 0 0 .574-.774l-.485-1.6c1.067-.65 1.905-1.511 2.409-2.501M14.5 8.5L19 7l-.084 3.628L21 11.5V15l-1.926 1'/%3E%3Cpath fill='currentColor' stroke-linecap='round' d='M15.5 13a.5.5 0 1 1 0-1a.5.5 0 0 1 0 1'/%3E%3Cpath stroke-linecap='round' d='M2 10s0 2.4 2 3'/%3E%3Cpath d='M12.8 7.753c.13-.372.2-.772.2-1.188C13 4.596 11.433 3 9.5 3S6 4.596 6 6.565c0 .941.358 1.798.944 2.435'/%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-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 {
    --un-icon: 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\:chevron-triple-left {
    --un-icon: 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-dasharray='12' stroke-dashoffset='12' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M2 12l7 -7M2 12l7 7'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='0.3s' values='12;0'/%3E%3C/path%3E%3Cpath d='M8 12l7 -7M8 12l7 7'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='0.3s' dur='0.3s' values='12;0'/%3E%3C/path%3E%3Cpath d='M14 12l7 -7M14 12l7 7'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='0.6s' dur='0.3s' values='12;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\:cookie-check-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%3Cmask id='lineMdCookieCheckTwotone0'%3E%3Cg fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath fill='%23fff' fill-opacity='0' stroke-dasharray='56' stroke-dashoffset='56' d='M12 4c-4.42 0 -8 3.58 -8 8c0 4.42 3.58 8 8 8c4.42 0 8 -3.58 8 -8v-1h-2c-0.55 0 -1 -0.45 -1 -1v-1h-2c-0.55 0 -1 -0.45 -1 -1v-1h-1c-0.55 0 -1 -0.45 -1 -1Z'%3E%3Canimate fill='freeze' attributeName='fill-opacity' begin='0.7s' dur='0.15s' values='0;0.3'/%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='0.6s' values='56;0'/%3E%3C/path%3E%3Cg fill='%23fff' fill-opacity='0' stroke='none'%3E%3Ccircle cx='9.5' cy='7.5' r='1.5'%3E%3Canimate fill='freeze' attributeName='fill-opacity' begin='0.9s' dur='0.2s' values='0;1'/%3E%3C/circle%3E%3Ccircle cx='11' cy='17.5' r='1.5'%3E%3Canimate fill='freeze' attributeName='fill-opacity' begin='1s' dur='0.2s' values='0;1'/%3E%3C/circle%3E%3Ccircle cx='6.5' cy='11.5' r='1.5'%3E%3Canimate fill='freeze' attributeName='fill-opacity' begin='1.1s' dur='0.2s' values='0;1'/%3E%3C/circle%3E%3Ccircle cx='16.5' cy='14.5' r='1.5'%3E%3Canimate fill='freeze' attributeName='fill-opacity' begin='1.2s' dur='0.2s' values='0;1'/%3E%3C/circle%3E%3Ccircle cx='11.5' cy='12.5' r='1.5'%3E%3Canimate fill='freeze' attributeName='fill-opacity' begin='1.3s' dur='0.2s' values='0;1'/%3E%3C/circle%3E%3C/g%3E%3Cpath fill='%23000' fill-opacity='0' stroke='none' d='M19 13c3.31 0 6 2.69 6 6c0 3.31 -2.69 6 -6 6c-3.31 0 -6 -2.69 -6 -6c0 -3.31 2.69 -6 6 -6Z'%3E%3Cset fill='freeze' attributeName='fill-opacity' begin='1.6s' to='1'/%3E%3C/path%3E%3Cpath stroke-dasharray='10' stroke-dashoffset='10' d='M16 19l1.75 1.75l3.75 -3.75'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='1.6s' dur='0.2s' values='10;0'/%3E%3C/path%3E%3C/g%3E%3C/mask%3E%3Crect width='24' height='24' fill='currentColor' mask='url(%23lineMdCookieCheckTwotone0)'/%3E%3C/svg%3E");
    -webkit-mask: var(--un-icon) no-repeat;
    mask: 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-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-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\:recommend {
    --un-icon: url("data:image/svg+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.27 16.423h5.269q.251 0 .44-.107q.19-.107.283-.347l1.715-3.977q.07-.183.104-.346q.035-.163.035-.308v-.454q0-.213-.125-.337q-.124-.124-.337-.124h-5.177l.565-2.898q.047-.214-.028-.4t-.212-.323l-.186-.187L8.477 10q-.104.112-.156.252t-.052.325v4.846q0 .413.294.706t.706.294M12.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\:arrow-back-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='m3.55 12l7.35 7.35q.375.375.363.875t-.388.875t-.875.375t-.875-.375l-7.7-7.675q-.3-.3-.45-.675T.825 12t.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-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\: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\: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\:check-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='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 22m0-2q3.35 0 5.675-2.325T20 12t-2.325-5.675T12 4T6.325 6.325T4 12t2.325 5.675T12 20m0-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\:content-copy-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='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 20V7q0-.425.288-.712T4 6t.713.288T5 7v13h10q.425 0 .713.288T16 21t-.288.713T15 22zm4-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\:double-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='m6.05 19l5-7l-5-7H8.5l5 7l-5 7zM12 19l5-7l-5-7h2.45l5 7l-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-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\: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 17q.425 0 .713-.288T9 16t-.288-.712T8 15t-.712.288T7 16t.288.713T8 17m0-4q.425 0 .713-.288T9 12t-.288-.712T8 11t-.712.288T7 12t.288.713T8 13m0-4q.425 0 .713-.288T9 8t-.288-.712T8 7t-.712.288T7 8t.288.713T8 9m3 8h6v-2h-6zm0-4h6v-2h-6zm0-4h6V7h-6zM5 21q-.825 0-1.412-.587T3 19V5q0-.825.588-1.412T5 3h14q.825 0 1.413.588T21 5v14q0 .825-.587 1.413T19 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\:music-video-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 17q1.05 0 1.775-.725T13 14.5V9h2q.425 0 .713-.288T16 8t-.288-.712T15 7h-2q-.425 0-.712.288T12 8v4.5q-.325-.225-.7-.363T10.5 12q-1.05 0-1.775.725T8 14.5t.725 1.775T10.5 17M4 20q-.825 0-1.412-.587T2 18V6q0-.825.588-1.412T4 4h16q.825 0 1.413.588T22 6v12q0 .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\:notifications-unread {
    --un-icon: url("data:image/svg+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-.825 0-1.412-.587T10 20h4q0 .825-.587 1.413T12 22m-8-3v-2h2v-7q0-2.075 1.25-3.687T10.5 4.2v-.7q0-.625.438-1.062T12 2t1.063.438T13.5 3.5v.325q-.25.5-.375 1.05T13 6q0 2.075 1.463 3.538T18 11v6h2v2zM18 9q-1.25 0-2.125-.875T15 6t.875-2.125T18 3t2.125.875T21 6t-.875 2.125T18 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-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\:storefront {
    --un-icon: url("data:image/svg+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.06 3c-.43 0-.84.14-1.22.42s-.6.64-.7 1.08L2.11 8.91c-.25 1.09-.05 2.01.58 2.82c.12.12.24.24.35.34c.59.57 1.24.93 2.18.93s1.69-.41 2.25-.95c.63.62 1.39.95 2.33.95c.84 0 1.64-.37 2.2-.93c.68.63 1.45.93 2.3.93c.87 0 1.61-.33 2.24-.95c.57.57 1.32.95 2.27.95s1.62-.35 2.19-.94c.09-.09.18-.19.28-.29c.66-.82.86-1.77.61-2.86L20.86 4.5c-.13-.44-.36-.8-.73-1.08A1.88 1.88 0 0 0 18.94 3m-.05 1.97l1.08 4.41c.09.43 0 .82-.28 1.17c-.25.31-.56.45-.94.45c-.31 0-.58-.1-.8-.34c-.22-.23-.34-.5-.37-.82L16.97 5M5.06 5h1.97l-.61 4.84C6.3 10.63 5.91 11 5.25 11c-.41 0-.72-.14-.94-.45c-.28-.35-.37-.74-.28-1.17M9.05 5H11v4.7c0 .35-.11.65-.36.92c-.25.26-.56.38-.94.38c-.34 0-.63-.12-.86-.41S8.5 10 8.5 9.66V9.5M13 5h1.95l.55 4.5c.08.42 0 .77-.29 1.07c-.26.3-.6.43-1.01.43c-.31 0-.59-.12-.84-.38A1.3 1.3 0 0 1 13 9.7M3 14.03V19c0 1.11.89 2 2 2h14a2 2 0 0 0 2-2v-4.95c-.55.58-1.25.91-2 .95c-1 .03-1.75-.26-2.46-.95c-.6.6-1.4.95-2.24.95c-.9 0-1.7-.36-2.3-.93c-.57.57-1.35.93-2.22.93c-.91 0-1.71-.35-2.31-.95c-.58.59-1.37.95-2.24.95c-.9 0-1.57-.35-2.23-.97'/%3E%3C/svg%3E");
    -webkit-mask: var(--un-icon) no-repeat;
    mask: 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\:storefront-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.06 3c-.43 0-.84.14-1.22.42s-.6.64-.7 1.08L2.11 8.91c-.25 1.09-.05 2.04.61 2.86l.28.28V19c0 .5.2 1 .61 1.39S4.5 21 5 21h14c.5 0 1-.2 1.39-.61S21 19.5 21 19v-6.95l.28-.28c.66-.82.86-1.77.61-2.86L20.86 4.5c-.13-.44-.36-.8-.73-1.08A1.88 1.88 0 0 0 18.94 3zm13.83 1.97l1.08 4.41c.09.43 0 .82-.28 1.17c-.25.31-.56.45-.94.45c-.31 0-.58-.1-.8-.34c-.22-.23-.34-.5-.37-.82L16.97 5zM5.06 5h1.97l-.61 4.84C6.3 10.63 5.91 11 5.25 11c-.41 0-.72-.14-.94-.45c-.28-.35-.37-.74-.28-1.17zm3.99 0H11v4.7c0 .35-.11.65-.36.92c-.25.26-.56.38-.94.38c-.34 0-.63-.12-.86-.41S8.5 10 8.5 9.66V9.5zM13 5h1.95l.55 4.5c.08.42 0 .77-.29 1.07c-.26.3-.6.43-1.01.43c-.31 0-.59-.12-.84-.38A1.3 1.3 0 0 1 13 9.7zm-5.55 7.05c.63.62 1.41.95 2.35.95c.84 0 1.58-.33 2.2-.95c.69.62 1.45.95 2.3.95c.87 0 1.62-.33 2.25-.95c.56.62 1.31.95 2.25.95h.23v6H5v-6h.25c.91 0 1.64-.33 2.2-.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-meteocons\:clear-day-fill {
    background: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cdefs%3E%3ClinearGradient id='meteoconsClearDayFill0' x1='150' x2='234' y1='119.2' y2='264.8' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23fbbf24'/%3E%3Cstop offset='.5' stop-color='%23fbbf24'/%3E%3Cstop offset='1' stop-color='%23f59e0b'/%3E%3C/linearGradient%3E%3Csymbol id='meteoconsClearDayFill1' viewBox='0 0 384 384'%3E%3Ccircle cx='192' cy='192' r='84' fill='url(%23meteoconsClearDayFill0)' stroke='%23f8af18' stroke-miterlimit='10' stroke-width='6'/%3E%3Cpath fill='none' stroke='%23fbbf24' stroke-linecap='round' stroke-miterlimit='10' stroke-width='24' d='M192 61.7V12m0 360v-49.7m92.2-222.5l35-35M64.8 319.2l35.1-35.1m0-184.4l-35-35m254.5 254.5l-35.1-35.1M61.7 192H12m360 0h-49.7'%3E%3CanimateTransform additive='sum' attributeName='transform' dur='6s' repeatCount='indefinite' type='rotate' values='0 192 192; 45 192 192'/%3E%3C/path%3E%3C/symbol%3E%3C/defs%3E%3Cuse width='384' height='384' href='%23meteoconsClearDayFill1' transform='translate(64 64)'/%3E%3C/svg%3E") no-repeat;
    background-size: 100% 100%;
    background-color: transparent;
    width: 1em;
    height: 1em
}

.i-meteocons\:clear-night-fill {
    background: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cdefs%3E%3ClinearGradient id='meteoconsClearNightFill0' x1='54.3' x2='187.2' y1='29' y2='259.1' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%2386c3db'/%3E%3Cstop offset='.5' stop-color='%2386c3db'/%3E%3Cstop offset='1' stop-color='%235eafcf'/%3E%3C/linearGradient%3E%3Csymbol id='meteoconsClearNightFill1' viewBox='0 0 270 270'%3E%3Cpath fill='url(%23meteoconsClearNightFill0)' stroke='%2372b9d5' stroke-linecap='round' stroke-linejoin='round' stroke-width='6' d='M252.3 168.6A133.4 133.4 0 0 1 118 36.2A130.5 130.5 0 0 1 122.5 3A133 133 0 0 0 3 134.6C3 207.7 63 267 137.2 267c62.5 0 114.8-42.2 129.8-99.2a135.6 135.6 0 0 1-14.8.8Z'%3E%3CanimateTransform additive='sum' attributeName='transform' dur='6s' repeatCount='indefinite' type='rotate' values='-15 135 135; 9 135 135; -15 135 135'/%3E%3C/path%3E%3C/symbol%3E%3C/defs%3E%3Cuse width='270' height='270' href='%23meteoconsClearNightFill1' transform='translate(121 121)'/%3E%3C/svg%3E") no-repeat;
    background-size: 100% 100%;
    background-color: transparent;
    width: 1em;
    height: 1em
}

.i-mingcute\: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%3Cg fill='none'%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='M9.5 12a4.5 4.5 0 1 0 0-9a4.5 4.5 0 0 0 0 9M21 9a3 3 0 1 1-6 0a3 3 0 0 1 6 0M9.5 13c1.993 0 3.805.608 5.137 1.466c.667.43 1.238.937 1.653 1.49c.407.545.71 1.2.71 1.901c0 .755-.35 1.36-.864 1.797c-.485.41-1.117.676-1.77.859c-1.313.367-3.05.487-4.866.487s-3.553-.12-4.865-.487c-.654-.183-1.286-.449-1.77-.859C2.349 19.218 2 18.612 2 17.857c0-.702.303-1.356.71-1.9c.415-.554.986-1.062 1.653-1.49C5.695 13.607 7.507 13 9.5 13m8.5 0c1.32 0 2.518.436 3.4 1.051c.822.573 1.6 1.477 1.6 2.52c0 .587-.253 1.073-.638 1.426c-.357.328-.809.528-1.244.66c-.87.263-1.99.343-3.118.343h-.203c.13-.348.203-.73.203-1.143c0-.99-.423-1.85-.91-2.5c-.486-.649-1.13-1.22-1.849-1.691A6.06 6.06 0 0 1 18 13'/%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\:group-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.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='M5 7.5a4.5 4.5 0 1 1 9 0a4.5 4.5 0 0 1-9 0M9.5 5a2.5 2.5 0 1 0 0 5a2.5 2.5 0 0 0 0-5m0 8c1.993 0 3.805.608 5.137 1.466c.667.43 1.238.937 1.653 1.49c.407.545.71 1.2.71 1.901c0 .755-.35 1.36-.864 1.797c-.485.41-1.117.676-1.77.859c-1.313.367-3.05.487-4.866.487s-3.553-.12-4.865-.487c-.654-.183-1.286-.449-1.77-.859C2.349 19.218 2 18.612 2 17.857c0-.702.303-1.356.71-1.9c.415-.554.986-1.062 1.653-1.49C5.695 13.607 7.507 13 9.5 13m0 2c-1.597 0-3.035.492-4.055 1.148c-.51.328-.89.682-1.134 1.007c-.25.334-.311.576-.311.702c0 .074.015.15.157.27c.173.148.494.314 1.016.46c1.04.29 2.553.413 4.327.413s3.287-.123 4.327-.413c.522-.146.843-.312 1.016-.46c.142-.12.157-.196.157-.27c0-.126-.061-.368-.311-.702c-.244-.325-.624-.679-1.134-1.007C12.535 15.492 11.097 15 9.5 15m8.5-2c1.32 0 2.518.436 3.4 1.051c.822.573 1.6 1.477 1.6 2.52c0 .587-.253 1.073-.638 1.426c-.357.328-.809.528-1.244.66c-.87.263-1.99.343-3.118.343h-.203c.13-.348.203-.73.203-1.143q-.002-.336-.06-.65L17.893 17H18c1.081 0 1.96-.082 2.539-.257c.262-.08.397-.16.455-.206c-.029-.118-.185-.46-.738-.845a4 4 0 0 0-3.331-.546a7.5 7.5 0 0 0-1.684-1.48A6.06 6.06 0 0 1 18 13m-3-4a3 3 0 1 1 6 0a3 3 0 0 1-6 0m3-1a1 1 0 1 0 0 2a1 1 0 0 0 0-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\:home-4-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='M13.2 2.65a2 2 0 0 0-2.4 0l-7 5.25A2 2 0 0 0 3 9.5V19a2 2 0 0 0 2 2h3.9a1.1 1.1 0 0 0 1.1-1.1V15a2 2 0 1 1 4 0v4.9a1.1 1.1 0 0 0 1.1 1.1H19a2 2 0 0 0 2-2V9.5a2 2 0 0 0-.8-1.6z'/%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-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' d='M10.8 2.65a2 2 0 0 1 2.4 0l7 5.25a2 2 0 0 1 .8 1.6V19a2 2 0 0 1-2 2h-4.9a1.1 1.1 0 0 1-1.1-1.1V14a1 1 0 1 0-2 0v5.9A1.1 1.1 0 0 1 9.9 21H5a2 2 0 0 1-2-2V9.5a2 2 0 0 1 .8-1.6zm1.2 1.6L5 9.5V19h4v-5a3 3 0 1 1 6 0v5h4V9.5z'/%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\:invite-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 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 3zm3 9.539l-7.188 3.194a2 2 0 0 1-1.624 0L4 12.54V19h16zM17 5H7a1 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\:record-mail-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='M11.084 13.5a5 5 0 1 0-4.584 3h11a5 5 0 1 0-4.584-3zM6.5 9.5a2 2 0 1 0 0 4a2 2 0 0 0 0-4m11 4a2 2 0 1 0 0-4a2 2 0 0 0 0 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-mingcute\:record-mail-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='M10.242 14A4.5 4.5 0 1 0 6.5 16h11a4.5 4.5 0 1 0-3.742-2zM6.5 9a2.5 2.5 0 1 0 0 5a2.5 2.5 0 0 0 0-5m11 5a2.5 2.5 0 1 0 0-5a2.5 2.5 0 0 0 0 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-mingcute\:user-5-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='M9.586 15a2 2 0 0 1 1.284.467l.13.119l1 1l1-1a2 2 0 0 1 1.238-.578l.176-.008h4.024a3 3 0 0 1 2.862 2.1l.049.172l.466 1.864a1.5 1.5 0 0 1-1.324 1.858L20.36 21H3.64a1.5 1.5 0 0 1-1.481-1.735l.026-.129l.466-1.864a3 3 0 0 1 2.732-2.267L5.562 15zM12 2c.784 0 1.661.19 2.38.391c1.596.445 2.542 1.896 2.615 3.415l.005.19v4.007c0 1.588-.957 3.143-2.62 3.606c-.719.2-1.596.391-2.38.391s-1.661-.19-2.38-.391c-1.596-.445-2.542-1.896-2.615-3.415L7 10.004V5.996c0-1.587.957-3.143 2.62-3.606C10.339 2.191 11.216 2 12 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\:user-5-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='M9.586 15a2 2 0 0 1 1.414.586l1 1l1-1A2 2 0 0 1 14.414 15h4.024a3 3 0 0 1 2.91 2.272l.622 2.486a1 1 0 1 1-1.94.485l-.621-2.485a1 1 0 0 0-.97-.758h-4.025l-1 1a2 2 0 0 1-2.828 0l-1-1H5.562a1 1 0 0 0-.97.758l-.622 2.485a1 1 0 1 1-1.94-.485l.621-2.486A3 3 0 0 1 5.561 15ZM12 2c.784 0 1.661.19 2.38.391C16.043 2.854 17 4.41 17 5.997v4.006c0 1.588-.957 3.143-2.62 3.606c-.719.2-1.596.391-2.38.391s-1.661-.19-2.38-.391C7.957 13.146 7 11.591 7 10.003V5.997c0-1.587.957-3.143 2.62-3.606C10.339 2.191 11.216 2 12 2m0 2c-.509 0-1.177.132-1.843.318C9.489 4.504 9 5.165 9 5.997v4.006c0 .832.489 1.493 1.157 1.68c.666.185 1.334.317 1.843.317s1.177-.132 1.843-.318c.668-.186 1.157-.847 1.157-1.679V5.997c0-.832-.489-1.493-1.157-1.68C13.177 4.133 12.51 4 12 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-mingcute\:vip-4-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='M11.2 1.401a1 1 0 0 1 1.6 0L15.5 5h4.645a1.5 1.5 0 0 1 1.308 2.235L13.09 22.103a1.25 1.25 0 0 1-2.18 0L2.549 7.235A1.5 1.5 0 0 1 3.855 5H8.5zm.797 2.266L9.33 7.222l2.667 4.445l2.666-4.445z'/%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-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.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='M11.2 1.401a1 1 0 0 1 1.516-.1l.085.1L15.5 5h4.645a1.5 1.5 0 0 1 1.367 2.119l-.06.116l-8.363 14.868a1.25 1.25 0 0 1-2.105.115l-.073-.115L2.548 7.235a1.5 1.5 0 0 1 1.177-2.23L3.855 5H8.5zM8.433 7H4.71L12 19.96L19.29 7h-3.724l-2.623 4.371a1.1 1.1 0 0 1-1.886 0zM12 3.667l-1.796 2.395L12 9.056l1.797-2.994z'/%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-pajamas\:task-done {
    --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' fill-rule='evenodd' d='M3 13.5a.5.5 0 0 1-.5-.5V3a.5.5 0 0 1 .5-.5h9.25a.75.75 0 0 0 0-1.5H3a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V9.75a.75.75 0 0 0-1.5 0V13a.5.5 0 0 1-.5.5zm12.78-8.82a.75.75 0 0 0-1.06-1.06L9.162 9.177L7.289 7.241a.75.75 0 1 0-1.078 1.043l2.403 2.484a.75.75 0 0 0 1.07.01z' 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-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\:books {
    --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.65 194.55l-33.19-157.8a16 16 0 0 0-19-12.39l-46.81 10.06a16.08 16.08 0 0 0-12.3 19l33.19 157.8A16 16 0 0 0 169.16 224a16.3 16.3 0 0 0 3.38-.36l46.81-10.06a16.09 16.09 0 0 0 12.3-19.03M136 50.15v-.09l46.8-10l3.33 15.87L139.33 66Zm6.62 31.47l46.82-10.05l3.34 15.9L146 97.53Zm6.64 31.57l46.82-10.06l13.3 63.24l-46.82 10.06ZM216 197.94l-46.8 10l-3.33-15.87l46.8-10.07l3.33 15.85zM104 32H56a16 16 0 0 0-16 16v160a16 16 0 0 0 16 16h48a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16M56 48h48v16H56Zm0 32h48v96H56Zm48 128H56v-16h48z'/%3E%3C/svg%3E");
    -webkit-mask: var(--un-icon) no-repeat;
    mask: 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\:flower-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='M206.35 136.29c-8.87-5.13-24.46-7.38-39.4-8.29c14.94-.91 30.53-3.16 39.4-8.29a32 32 0 1 0-32-55.42c-8.87 5.12-18.61 17.48-26.87 30C154.17 80.87 160 66.25 160 56a32 32 0 0 0-64 0c0 10.25 5.83 24.87 12.52 38.26c-8.26-12.49-18-24.85-26.87-30a32 32 0 1 0-32 55.42c8.87 5.13 24.46 7.38 39.4 8.29c-14.94.91-30.53 3.16-39.4 8.29a32 32 0 1 0 32 55.42c8.87-5.12 18.61-17.48 26.87-30C101.83 175.13 96 189.75 96 200a32 32 0 0 0 64 0c0-10.25-5.83-24.87-12.52-38.26c8.26 12.49 18 24.85 26.87 30a32 32 0 1 0 32-55.42ZM155.71 144a32 32 0 1 1 4.29-16a31.74 31.74 0 0 1-4.29 16' opacity='.2'/%3E%3Cpath d='M210.35 129.36c-.81-.47-1.7-.92-2.62-1.36c.92-.44 1.81-.89 2.62-1.36a40 40 0 1 0-40-69.28c-.81.47-1.65 1-2.48 1.59c.08-1 .13-2 .13-3a40 40 0 0 0-80 0c0 .94 0 1.94.13 3c-.83-.57-1.67-1.12-2.48-1.59a40 40 0 1 0-40 69.28c.81.47 1.7.92 2.62 1.36c-.92.44-1.81.89-2.62 1.36a40 40 0 1 0 40 69.28c.81-.47 1.65-1 2.48-1.59c-.08 1-.13 2-.13 2.95a40 40 0 0 0 80 0c0-.94-.05-1.94-.13-2.95c.83.57 1.67 1.12 2.48 1.59a39.8 39.8 0 0 0 19.94 5.36a40.4 40.4 0 0 0 10.42-1.38a40 40 0 0 0 9.64-73.28ZM104 128a24 24 0 1 1 24 24a24 24 0 0 1-24-24m74.35-56.79a24 24 0 1 1 24 41.57c-6.27 3.63-18.61 6.13-35.16 7.19a40 40 0 0 0-12.66-21.87c9.2-13.82 17.55-23.26 23.82-26.89M128 32a24 24 0 0 1 24 24c0 7.24-4 19.19-11.36 34.06a39.8 39.8 0 0 0-25.28 0C108 75.19 104 63.24 104 56a24 24 0 0 1 24-24M44.86 80a24 24 0 0 1 32.79-8.79c6.27 3.63 14.62 13.07 23.82 26.89A40 40 0 0 0 88.81 120c-16.55-1.06-28.89-3.56-35.16-7.18A24 24 0 0 1 44.86 80m32.79 104.79a24 24 0 1 1-24-41.57c6.27-3.63 18.61-6.13 35.16-7.19a40 40 0 0 0 12.66 21.87c-9.2 13.82-17.55 23.26-23.82 26.89M128 224a24 24 0 0 1-24-24c0-7.24 4-19.19 11.36-34.06a39.8 39.8 0 0 0 25.28 0C148 180.81 152 192.76 152 200a24 24 0 0 1-24 24m83.14-48a24 24 0 0 1-32.79 8.79c-6.27-3.63-14.62-13.07-23.82-26.89a40 40 0 0 0 12.66-21.9c16.55 1.06 28.89 3.56 35.16 7.18a24 24 0 0 1 8.79 32.82'/%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\:flower-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='M210.35 129.36c-.81-.47-1.7-.92-2.62-1.36c.92-.44 1.81-.89 2.62-1.36a40 40 0 1 0-40-69.28c-.81.47-1.65 1-2.48 1.59c.08-1 .13-2 .13-3a40 40 0 0 0-80 0c0 .94 0 1.94.13 3c-.83-.57-1.67-1.12-2.48-1.59a40 40 0 1 0-40 69.28c.81.47 1.7.92 2.62 1.36c-.92.44-1.81.89-2.62 1.36a40 40 0 1 0 40 69.28c.81-.47 1.65-1 2.48-1.59c-.08 1-.13 2-.13 2.95a40 40 0 0 0 80 0c0-.94-.05-1.94-.13-2.95c.83.57 1.67 1.12 2.48 1.59a39.8 39.8 0 0 0 19.94 5.36a40.4 40.4 0 0 0 10.42-1.38a40 40 0 0 0 9.64-73.28ZM128 156a28 28 0 1 1 28-28a28 28 0 0 1-28 28'/%3E%3C/svg%3E");
    -webkit-mask: var(--un-icon) no-repeat;
    mask: 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 {
    --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='m219.31 108.68l-80-80a16 16 0 0 0-22.62 0l-80 80A15.87 15.87 0 0 0 32 120v96a8 8 0 0 0 8 8h64a8 8 0 0 0 8-8v-56h32v56a8 8 0 0 0 8 8h64a8 8 0 0 0 8-8v-96a15.87 15.87 0 0 0-4.69-11.32M208 208h-48v-56a8 8 0 0 0-8-8h-48a8 8 0 0 0-8 8v56H48v-88l80-80l80 80Z'/%3E%3C/svg%3E");
    -webkit-mask: var(--un-icon) no-repeat;
    mask: 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\:scroll-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='M200 176h-96s8 6 8 16a24 24 0 0 1-48 0V64a24 24 0 0 0-24-24h136a24 24 0 0 1 24 24Z' opacity='.2'/%3E%3Cpath d='M96 104a8 8 0 0 1 8-8h64a8 8 0 0 1 0 16h-64a8 8 0 0 1-8-8m8 40h64a8 8 0 0 0 0-16h-64a8 8 0 0 0 0 16m128 48a32 32 0 0 1-32 32H88a32 32 0 0 1-32-32V64a16 16 0 0 0-32 0c0 5.74 4.83 9.62 4.88 9.66A8 8 0 0 1 24 88a7.9 7.9 0 0 1-4.79-1.61C18.05 85.54 8 77.61 8 64a32 32 0 0 1 32-32h136a32 32 0 0 1 32 32v104h8a8 8 0 0 1 4.8 1.6c1.2.86 11.2 8.79 11.2 22.4M96.26 173.48A8.07 8.07 0 0 1 104 168h88V64a16 16 0 0 0-16-16H67.69A31.7 31.7 0 0 1 72 64v128a16 16 0 0 0 32 0c0-5.74-4.83-9.62-4.88-9.66a7.82 7.82 0 0 1-2.86-8.86M216 192a12.58 12.58 0 0 0-3.23-8h-94a27 27 0 0 1 1.21 8a31.8 31.8 0 0 1-4.29 16H200a16 16 0 0 0 16-16'/%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\:scroll-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='M220.8 169.6a8 8 0 0 0-4.8-1.6h-8V64a32 32 0 0 0-32-32H40A32 32 0 0 0 8 64c0 13.61 10.05 21.54 11.2 22.4A7.9 7.9 0 0 0 24 88a8 8 0 0 0 4.87-14.33C28.83 73.62 24 69.74 24 64a16 16 0 0 1 32 0v128a32 32 0 0 0 32 32h112a32 32 0 0 0 32-32c0-13.61-10-21.54-11.2-22.4M104 96h64a8 8 0 0 1 0 16h-64a8 8 0 0 1 0-16m-8 40a8 8 0 0 1 8-8h64a8 8 0 0 1 0 16h-64a8 8 0 0 1-8-8m104 72h-92.29a31.8 31.8 0 0 0 4.29-16a27 27 0 0 0-1.21-8h102a12.58 12.58 0 0 1 3.23 8A16 16 0 0 1 200 208'/%3E%3C/svg%3E");
    -webkit-mask: var(--un-icon) no-repeat;
    mask: 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\:star-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='M243 96a20.33 20.33 0 0 0-17.74-14l-56.59-4.57l-21.84-52.81a20.36 20.36 0 0 0-37.66 0L87.35 77.44L30.76 82a20.45 20.45 0 0 0-11.66 35.88l43.18 37.24l-13.2 55.7A20.37 20.37 0 0 0 79.57 233L128 203.19L176.43 233a20.39 20.39 0 0 0 30.49-22.15l-13.2-55.7l43.18-37.24A20.43 20.43 0 0 0 243 96m-70.47 45.7a12 12 0 0 0-3.84 11.86L181.58 208l-47.29-29.08a12 12 0 0 0-12.58 0L74.42 208l12.89-54.4a12 12 0 0 0-3.84-11.86l-42.27-36.5l55.4-4.47a12 12 0 0 0 10.13-7.38L128 41.89l21.27 51.5a12 12 0 0 0 10.13 7.38l55.4 4.47Z'/%3E%3C/svg%3E");
    -webkit-mask: var(--un-icon) no-repeat;
    mask: 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\:star-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='m234.29 114.85l-45 38.83L203 211.75a16.4 16.4 0 0 1-24.5 17.82L128 198.49l-50.53 31.08A16.4 16.4 0 0 1 53 211.75l13.76-58.07l-45-38.83A16.46 16.46 0 0 1 31.08 86l59-4.76l22.76-55.08a16.36 16.36 0 0 1 30.27 0l22.75 55.08l59 4.76a16.46 16.46 0 0 1 9.37 28.86Z'/%3E%3C/svg%3E");
    -webkit-mask: var(--un-icon) no-repeat;
    mask: 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\:user {
    --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='M230.92 212c-15.23-26.33-38.7-45.21-66.09-54.16a72 72 0 1 0-73.66 0c-27.39 8.94-50.86 27.82-66.09 54.16a8 8 0 1 0 13.85 8c18.84-32.56 52.14-52 89.07-52s70.23 19.44 89.07 52a8 8 0 1 0 13.85-8M72 96a56 56 0 1 1 56 56a56.06 56.06 0 0 1-56-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\:user-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='M230.93 220a8 8 0 0 1-6.93 4H32a8 8 0 0 1-6.92-12c15.23-26.33 38.7-45.21 66.09-54.16a72 72 0 1 1 73.66 0c27.39 8.95 50.86 27.83 66.09 54.16a8 8 0 0 1 .01 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-ph\:users-three {
    --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='M244.8 150.4a8 8 0 0 1-11.2-1.6A51.6 51.6 0 0 0 192 128a8 8 0 0 1-7.37-4.89a8 8 0 0 1 0-6.22A8 8 0 0 1 192 112a24 24 0 1 0-23.24-30a8 8 0 1 1-15.5-4A40 40 0 1 1 219 117.51a67.94 67.94 0 0 1 27.43 21.68a8 8 0 0 1-1.63 11.21M190.92 212a8 8 0 1 1-13.84 8a57 57 0 0 0-98.16 0a8 8 0 1 1-13.84-8a72.06 72.06 0 0 1 33.74-29.92a48 48 0 1 1 58.36 0A72.06 72.06 0 0 1 190.92 212M128 176a32 32 0 1 0-32-32a32 32 0 0 0 32 32m-56-56a8 8 0 0 0-8-8a24 24 0 1 1 23.24-30a8 8 0 1 0 15.5-4A40 40 0 1 0 37 117.51a67.94 67.94 0 0 0-27.4 21.68a8 8 0 1 0 12.8 9.61A51.6 51.6 0 0 1 64 128a8 8 0 0 0 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-ph\:users-three-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='M64.12 147.8a4 4 0 0 1-4 4.2H16a8 8 0 0 1-7.8-6.17a8.35 8.35 0 0 1 1.62-6.93A67.8 67.8 0 0 1 37 117.51a40 40 0 1 1 66.46-35.8a3.94 3.94 0 0 1-2.27 4.18A64.08 64.08 0 0 0 64 144c0 1.28 0 2.54.12 3.8m182-8.91A67.76 67.76 0 0 0 219 117.51a40 40 0 1 0-66.46-35.8a3.94 3.94 0 0 0 2.27 4.18A64.08 64.08 0 0 1 192 144c0 1.28 0 2.54-.12 3.8a4 4 0 0 0 4 4.2H240a8 8 0 0 0 7.8-6.17a8.33 8.33 0 0 0-1.63-6.94Zm-89 43.18a48 48 0 1 0-58.37 0A72.13 72.13 0 0 0 65.07 212A8 8 0 0 0 72 224h112a8 8 0 0 0 6.93-12a72.15 72.15 0 0 0-33.74-29.93Z'/%3E%3C/svg%3E");
    -webkit-mask: var(--un-icon) no-repeat;
    mask: 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-si\:user-alt-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='M7.25 6a4.75 4.75 0 0 1 9.5 0v1a4.75 4.75 0 1 1-9.5 0zm3.85 7C6.086 13 2 17.018 2 22a1 1 0 1 0 2 0c0-3.854 3.167-7 7.1-7h1.8c3.933 0 7.1 3.146 7.1 7a1 1 0 1 0 2 0c0-4.982-4.086-9-9.1-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-si\:user-alt-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='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M21 22c0-4.418-3.626-8-8.1-8h-1.8C6.626 14 3 17.582 3 22m9-11a4 4 0 0 1-4-4V6a4 4 0 1 1 8 0v1a4 4 0 0 1-4 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-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\: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\:bill-list-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='M10.5 11H17M7 11h.5M7 7.5h.5m-.5 7h.5m9.5 0h-1m-5.5 0h3m3.5-7h-3m-3.5 0h1M21 7v-.63c0-1.193 0-1.79-.158-2.27a3.05 3.05 0 0 0-1.881-1.937C18.493 2 17.914 2 16.755 2h-9.51c-1.159 0-1.738 0-2.206.163a3.05 3.05 0 0 0-1.881 1.936C3 4.581 3 5.177 3 6.37V15m18-4v9.374c0 .858-.985 1.314-1.608.744a.946.946 0 0 0-1.284 0l-.483.442a1.657 1.657 0 0 1-2.25 0a1.657 1.657 0 0 0-2.25 0a1.657 1.657 0 0 1-2.25 0a1.657 1.657 0 0 0-2.25 0a1.657 1.657 0 0 1-2.25 0l-.483-.442a.946.946 0 0 0-1.284 0c-.623.57-1.608.114-1.608-.744V19'/%3E%3C/svg%3E");
    -webkit-mask: var(--un-icon) no-repeat;
    mask: 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-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='M10.944 1.25h2.112c1.838 0 3.294 0 4.433.153c1.172.158 2.121.49 2.87 1.238c.748.749 1.08 1.698 1.238 2.87c.153 1.14.153 2.595.153 4.433v4.112c0 1.838 0 3.294-.153 4.433c-.158 1.172-.49 2.121-1.238 2.87c-.749.748-1.698 1.08-2.87 1.238c-1.14.153-2.595.153-4.433.153h-2.112c-1.838 0-3.294 0-4.433-.153c-1.172-.158-2.121-.49-2.87-1.238c-.748-.749-1.08-1.698-1.238-2.87c-.153-1.14-.153-2.595-.153-4.433V9.944c0-1.838 0-3.294.153-4.433c.158-1.172.49-2.121 1.238-2.87c.749-.748 1.698-1.08 2.87-1.238c1.14-.153 2.595-.153 4.433-.153M6.71 2.89c-1.006.135-1.586.389-2.01.812c-.422.423-.676 1.003-.811 2.009c-.138 1.028-.14 2.382-.14 4.289v4c0 1.907.002 3.262.14 4.29c.135 1.005.389 1.585.812 2.008s1.003.677 2.009.812c1.028.138 2.382.14 4.289.14h2c1.907 0 3.262-.002 4.29-.14c1.005-.135 1.585-.389 2.008-.812s.677-1.003.812-2.009c.138-1.027.14-2.382.14-4.289v-4c0-1.907-.002-3.261-.14-4.29c-.135-1.005-.389-1.585-.812-2.008s-1.003-.677-2.009-.812c-1.027-.138-2.382-.14-4.289-.14h-2c-1.907 0-3.261.002-4.29.14M7.25 10A.75.75 0 0 1 8 9.25h8a.75.75 0 0 1 0 1.5H8a.75.75 0 0 1-.75-.75m0 4a.75.75 0 0 1 .75-.75h5a.75.75 0 0 1 0 1.5H8a.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\: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\: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\:home-smile-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.447 15.398a.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'/%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M12 1.25c-.708 0-1.351.203-2.05.542c-.674.328-1.454.812-2.427 1.416L5.456 4.491c-.92.572-1.659 1.03-2.227 1.465c-.589.45-1.041.91-1.368 1.507c-.326.595-.472 1.229-.543 1.978c-.068.725-.068 1.613-.068 2.726v1.613c0 1.904 0 3.407.153 4.582c.156 1.205.486 2.178 1.23 2.947c.747.773 1.697 1.119 2.875 1.282c1.14.159 2.598.159 4.434.159h4.116c1.836 0 3.294 0 4.434-.159c1.177-.163 2.128-.509 2.876-1.282c.743-.769 1.073-1.742 1.23-2.947c.152-1.175.152-2.678.152-4.582v-1.613c0-1.113 0-2-.068-2.726c-.07-.75-.217-1.383-.543-1.978c-.327-.597-.78-1.056-1.368-1.507c-.568-.436-1.306-.893-2.227-1.465l-2.067-1.283c-.973-.604-1.753-1.088-2.428-1.416c-.697-.34-1.34-.542-2.049-.542M8.28 4.504c1.015-.63 1.73-1.072 2.327-1.363c.581-.283.993-.391 1.393-.391s.812.108 1.393.391c.598.29 1.312.733 2.327 1.363l2 1.241c.961.597 1.636 1.016 2.14 1.402c.489.375.77.684.963 1.036c.193.353.306.766.365 1.398c.061.648.062 1.465.062 2.623v1.521c0 1.97-.002 3.376-.14 4.443c-.136 1.048-.393 1.656-.82 2.099c-.425.439-1.003.7-2.004.839c-1.026.142-2.379.144-4.286.144h-4c-1.908 0-3.26-.002-4.286-.144c-1.001-.14-1.579-.4-2.003-.84c-.428-.442-.685-1.05-.82-2.098c-.14-1.067-.141-2.472-.141-4.443v-1.521c0-1.158 0-1.975.062-2.623c.059-.632.172-1.045.365-1.398c.193-.352.474-.661.964-1.036c.503-.386 1.178-.805 2.139-1.402z' 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\:lock-password-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'%3E%3Cpath stroke-width='1.5' d='M2 16c0-2.828 0-4.243.879-5.121C3.757 10 5.172 10 8 10h8c2.828 0 4.243 0 5.121.879C22 11.757 22 13.172 22 16s0 4.243-.879 5.121C20.243 22 18.828 22 16 22H8c-2.828 0-4.243 0-5.121-.879C2 20.243 2 18.828 2 16Z'/%3E%3Cpath stroke-linecap='round' stroke-width='1.5' d='M6 10V8a6 6 0 1 1 12 0v2'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 16h.009m3.982 0H12m3.991 0H16'/%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\:lock-password-unlocked-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='M2 16c0-2.828 0-4.243.879-5.121C3.757 10 5.172 10 8 10h8c2.828 0 4.243 0 5.121.879C22 11.757 22 13.172 22 16s0 4.243-.879 5.121C20.243 22 18.828 22 16 22H8c-2.828 0-4.243 0-5.121-.879C2 20.243 2 18.828 2 16' opacity='.5'/%3E%3Cpath fill='currentColor' d='M8 17a1 1 0 1 0 0-2a1 1 0 0 0 0 2m4 0a1 1 0 1 0 0-2a1 1 0 0 0 0 2m5-1a1 1 0 1 1-2 0a1 1 0 0 1 2 0M6.75 8a5.25 5.25 0 0 1 10.335-1.313a.75.75 0 0 0 1.452-.374A6.75 6.75 0 0 0 5.25 8v2.055a24 24 0 0 1 1.5-.051z'/%3E%3C/svg%3E");
    -webkit-mask: var(--un-icon) no-repeat;
    mask: 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\:money-bag-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.052 1.25h-.104c-.899 0-1.648 0-2.242.08c-.628.084-1.195.27-1.65.725c-.456.456-.642 1.023-.726 1.65c-.057.427-.074 1.446-.078 2.32c-2.022.067-3.237.303-4.08 1.147C2 8.343 2 10.229 2 14s0 5.657 1.172 6.828S6.229 22 10 22h4c3.771 0 5.657 0 6.828-1.172S22 17.771 22 14s0-5.657-1.172-6.828c-.843-.844-2.058-1.08-4.08-1.146c-.004-.875-.02-1.894-.078-2.32c-.084-.628-.27-1.195-.726-1.65c-.455-.456-1.022-.642-1.65-.726c-.594-.08-1.344-.08-2.242-.08m3.196 4.752c-.005-.847-.019-1.758-.064-2.097c-.063-.461-.17-.659-.3-.789s-.328-.237-.79-.3c-.482-.064-1.13-.066-2.094-.066s-1.612.002-2.095.067c-.461.062-.659.169-.789.3s-.237.327-.3.788c-.045.34-.06 1.25-.064 2.097Q9.34 5.999 10 6h4q.662 0 1.248.002M12 9.25a.75.75 0 0 1 .75.75v.01c1.089.274 2 1.133 2 2.323a.75.75 0 0 1-1.5 0c0-.384-.426-.916-1.25-.916s-1.25.532-1.25.916s.426.917 1.25.917c1.385 0 2.75.96 2.75 2.417c0 1.19-.911 2.048-2 2.323V18a.75.75 0 0 1-1.5 0v-.01c-1.089-.274-2-1.133-2-2.323a.75.75 0 0 1 1.5 0c0 .384.426.916 1.25.916s1.25-.532 1.25-.916s-.426-.917-1.25-.917c-1.385 0-2.75-.96-2.75-2.417c0-1.19.911-2.049 2-2.323V10a.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\:money-bag-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='M11.948 1.25h.104c.899 0 1.648 0 2.242.08c.628.084 1.195.27 1.65.725c.456.456.642 1.023.726 1.65c.06.44.075.964.079 1.57c.648.021 1.226.06 1.74.128c1.172.158 2.121.49 2.87 1.238c.748.749 1.08 1.698 1.238 2.87c.153 1.14.153 2.595.153 4.433v.112c0 1.838 0 3.294-.153 4.433c-.158 1.172-.49 2.121-1.238 2.87c-.749.748-1.698 1.08-2.87 1.238c-1.14.153-2.595.153-4.433.153H9.944c-1.838 0-3.294 0-4.433-.153c-1.172-.158-2.121-.49-2.87-1.238c-.748-.749-1.08-1.698-1.238-2.87c-.153-1.14-.153-2.595-.153-4.433v-.112c0-1.838 0-3.294.153-4.433c.158-1.172.49-2.121 1.238-2.87c.749-.748 1.698-1.08 2.87-1.238a18 18 0 0 1 1.74-.128c.004-.606.02-1.13.079-1.57c.084-.627.27-1.194.725-1.65c.456-.455 1.023-.64 1.65-.725c.595-.08 1.345-.08 2.243-.08M8.752 5.252q.567-.003 1.192-.002h4.112q.625 0 1.192.002c-.004-.57-.018-1-.064-1.347c-.063-.461-.17-.659-.3-.789s-.328-.237-.79-.3c-.482-.064-1.13-.066-2.094-.066s-1.612.002-2.095.067c-.461.062-.659.169-.789.3s-.237.327-.3.788c-.046.346-.06.776-.064 1.347M5.71 6.89c-1.006.135-1.586.389-2.01.812c-.422.423-.676 1.003-.811 2.009c-.138 1.027-.14 2.382-.14 4.289s.002 3.262.14 4.29c.135 1.005.389 1.585.812 2.008s1.003.677 2.009.812c1.028.138 2.382.14 4.289.14h4c1.907 0 3.262-.002 4.29-.14c1.005-.135 1.585-.389 2.008-.812s.677-1.003.812-2.009c.138-1.027.14-2.382.14-4.289s-.002-3.261-.14-4.29c-.135-1.005-.389-1.585-.812-2.008s-1.003-.677-2.009-.812c-1.027-.138-2.382-.14-4.289-.14h-4c-1.907 0-3.261.002-4.29.14M12 9.25a.75.75 0 0 1 .75.75v.01c1.089.274 2 1.133 2 2.323a.75.75 0 0 1-1.5 0c0-.384-.426-.916-1.25-.916s-1.25.532-1.25.916s.426.917 1.25.917c1.385 0 2.75.96 2.75 2.417c0 1.19-.911 2.048-2 2.323V18a.75.75 0 0 1-1.5 0v-.01c-1.089-.274-2-1.133-2-2.323a.75.75 0 0 1 1.5 0c0 .384.426.916 1.25.916s1.25-.532 1.25-.916s-.426-.917-1.25-.917c-1.385 0-2.75-.96-2.75-2.417c0-1.19.911-2.049 2-2.323V10a.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\:music-notes-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='m12.75 12.508l8.5-3.4v5.653a3.25 3.25 0 1 0 1.5 2.74V7.945c0-1.143 0-2.101-.08-2.865a8 8 0 0 0-.04-.315c-.078-.522-.214-1.008-.479-1.415a2.2 2.2 0 0 0-.62-.63l-.007-.005c-.708-.47-1.503-.437-2.322-.228c-.792.202-1.774.613-2.978 1.117l-2.094.876c-.565.236-1.043.437-1.418.644c-.4.22-.743.48-1.001.868s-.366.805-.415 1.259c-.046.426-.046.945-.046 1.557v7.952a3.25 3.25 0 1 0 1.5 2.74z'/%3E%3Cpath fill='currentColor' d='M7.75 2a.75.75 0 0 0-1.5 0v5.76a3.25 3.25 0 1 0 1.5 2.74V5.005c.699.504 1.53.745 2.25.745a.75.75 0 0 0 0-1.5a2.44 2.44 0 0 1-1.488-.552c-.434-.357-.762-.9-.762-1.698' 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\:password-minimalistic-input-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 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 2v20m7-10c0 3.771 0 5.657-1.172 6.828C19.765 19.892 18.114 19.99 15 20M12 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.172c.654.653.943 1.528 1.07 2.828'/%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\:planet-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='M12 20a8 8 0 0 0 7.992-8.357q.384-.344.72-.682a.75.75 0 0 0-1.004-1.111a8 8 0 0 0-1.546-2.953q.449-.076.847-.113a.75.75 0 0 0-.138-1.494q-.637.06-1.345.2a.75.75 0 0 0-.472.309a8 8 0 0 0-13.013 7.024a.75.75 0 0 0-.73.193q-.503.505-.896.995a.75.75 0 1 0 1.172.937q.303-.38.707-.792a8 8 0 0 0 1.6 3.014a.75.75 0 0 0 .591 1.34a18 18 0 0 0 .666-.146A7.97 7.97 0 0 0 12 20m-4.849-1.636a8 8 0 0 1-1.256-1.194a.75.75 0 0 1 .3-.132c.996-.198 2.136-.53 3.36-.99a.75.75 0 0 1 .528 1.405c-1.03.387-2.018.693-2.932.91M19.708 9.85l-.06.054c-.687.692-1.568 1.43-2.61 2.171a.75.75 0 0 0 .871 1.222a24 24 0 0 0 2.083-1.654a8 8 0 0 0-.284-1.793m1.229-4.47a.75.75 0 1 0-.346 1.459c.394.093.546.232.602.322c.063.102.133.366-.157.948a.75.75 0 0 0 1.343.67c.378-.759.563-1.65.086-2.413c-.344-.55-.923-.843-1.528-.987M2.815 16.25a.75.75 0 0 0-1.43-.455c-.191.601-.211 1.262.15 1.84c.453.724 1.307 1.006 2.154 1.087a.75.75 0 1 0 .143-1.493c-.694-.066-.948-.267-1.025-.39c-.05-.08-.102-.244.008-.589m12.935-1.546a.75.75 0 1 0-.77-1.287a35 35 0 0 1-3.092 1.645a.75.75 0 0 0 .638 1.357a37 37 0 0 0 3.224-1.715' 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\:question-square-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 7.75c-.621 0-1.125.504-1.125 1.125a.75.75 0 0 1-1.5 0a2.625 2.625 0 1 1 3.96 2.26a1.9 1.9 0 0 0-.465.369c-.102.12-.12.2-.12.246V13a.75.75 0 0 1-1.5 0v-1.25c0-.506.222-.916.477-1.217c.252-.297.566-.524.845-.689A1.124 1.124 0 0 0 12 7.75M12 17a1 1 0 1 0 0-2a1 1 0 0 0 0 2'/%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M11.943 1.25h.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.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.494c-1.411.19-3.22.19-5.529.19h-.114c-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-.19m-5.33 1.676c-1.278.172-2.049.5-2.618 1.069c-.57.57-.897 1.34-1.069 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.176s4.086-.002 5.386-.176c1.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.068c-1.3-.174-3.008-.176-5.386-.176s-4.086.002-5.386.176' 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\:round-alt-arrow-right-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 10M9.97 8.47a.75.75 0 0 1 1.06 0l3 3a.75.75 0 0 1 0 1.06l-3 3a.75.75 0 1 1-1.06-1.06L12.44 12L9.97 9.53a.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\: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-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%3Cpath 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.5Z'/%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-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='9.001' cy='6' r='4' fill='currentColor'/%3E%3Cellipse cx='9.001' cy='17.001' fill='currentColor' rx='7' ry='4'/%3E%3Cpath fill='currentColor' d='M21 17c0 1.657-2.036 3-4.521 3c.732-.8 1.236-1.805 1.236-2.998c0-1.195-.505-2.2-1.239-3.001C18.962 14 21 15.344 21 17M18 6a3 3 0 0 1-4.029 2.82A5.7 5.7 0 0 0 14.714 6c0-1.025-.27-1.987-.742-2.819A3 3 0 0 1 18 6.001'/%3E%3C/svg%3E");
    -webkit-mask: var(--un-icon) no-repeat;
    mask: 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-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='9' cy='6' r='4'/%3E%3Cpath stroke-linecap='round' d='M15 9a3 3 0 1 0 0-6'/%3E%3Cellipse cx='9' cy='17' rx='7' ry='4'/%3E%3Cpath stroke-linecap='round' d='M18 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-solar\:video-frame-play-horizontal-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='M11.25 2c-1.366.001-2.519.01-3.5.068V6.25h3.5zm-5 .221c-1.223.195-2.101.56-2.786 1.243c-.684.684-1.048 1.563-1.242 2.786H6.25z'/%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M2 12c0-1.7 0-3.094.069-4.25H21.93C22 8.906 22 10.3 22 12s0 3.094-.069 4.25H2.07C2 15.094 2 13.7 2 12m10.411-1.596C13.471 11.116 14 11.472 14 12s-.53.884-1.589 1.596c-1.073.721-1.61 1.082-2.01.817C10 14.148 10 13.433 10 12s0-2.148.4-2.413s.938.096 2.011.817' clip-rule='evenodd'/%3E%3Cpath fill='currentColor' d='M21.778 6.25c-.194-1.223-.558-2.102-1.242-2.786s-1.563-1.048-2.786-1.243V6.25zM12.75 2c1.366.001 2.519.01 3.5.068V6.25h-3.5zm9.028 15.75H17.75v4.028c1.223-.194 2.102-.559 2.785-1.243c.685-.684 1.05-1.562 1.243-2.785m-5.528 0v4.181c-.981.058-2.134.067-3.5.069v-4.25zm-5 4.25v-4.25h-3.5v4.181c.981.058 2.134.067 3.5.069m-5-4.25v4.028c-1.223-.194-2.101-.559-2.786-1.243c-.684-.684-1.048-1.562-1.242-2.785z'/%3E%3C/svg%3E");
    -webkit-mask: var(--un-icon) no-repeat;
    mask: 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\:video-frame-play-horizontal-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='M11.943 1.25h.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.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.494c-1.411.19-3.22.19-5.529.19h-.114c-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-.19M6.25 2.982c-1.065.183-1.742.5-2.255 1.013c-.514.513-.83 1.19-1.013 2.255H6.25zm1.5-.162v3.43h3.5v-3.5c-1.395.002-2.54.011-3.5.07m5-.07v3.5h3.5V2.82c-.96-.059-2.105-.068-3.5-.07m5 .232V6.25h3.268c-.183-1.065-.5-1.742-1.013-2.255c-.513-.514-1.19-.83-2.255-1.013m3.43 4.768H2.82c-.07 1.126-.07 2.508-.07 4.25s0 3.124.07 4.25h18.36c.07-1.126.07-2.508.07-4.25s0-3.124-.07-4.25m-.162 10H17.75v3.268c1.065-.183 1.742-.5 2.255-1.013c.514-.513.83-1.19 1.013-2.255m-4.768 3.43v-3.43h-3.5v3.5c1.395-.002 2.54-.011 3.5-.07m-5 .07v-3.5h-3.5v3.43c.96.059 2.105.068 3.5.07m-5-.232V17.75H2.982c.183 1.065.5 1.742 1.013 2.255c.513.514 1.19.83 2.255 1.013m6.53-11.27l.05.034l.046.031c.49.33.927.623 1.235.907c.334.307.639.714.639 1.28s-.305.973-.639 1.28c-.308.284-.745.578-1.235.907l-.046.031l-.05.034c-.494.332-.938.63-1.312.803c-.392.181-.949.336-1.482-.016c-.49-.324-.624-.866-.68-1.3c-.056-.439-.056-1.016-.056-1.688v-.102c0-.672 0-1.25.056-1.688c.056-.434.19-.976.68-1.3c.533-.352 1.09-.198 1.482-.016c.373.173.818.471 1.311.803m-1.96.55l.018.008c.251.116.595.344 1.155.72c.55.371.89.601 1.102.797a.8.8 0 0 1 .154.177l-.003.007a.8.8 0 0 1-.151.17c-.213.196-.551.426-1.102.796c-.56.377-.904.605-1.155.72l-.019.01a2 2 0 0 1-.025-.154c-.043-.332-.044-.811-.044-1.549s.002-1.217.044-1.55q.012-.094.025-.152' 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\:video-frame-play-vertical-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='M3.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.465C22 19.072 22 16.714 22 12s0-7.071-1.465-8.536C19.072 2 16.714 2 12 2S4.929 2 3.464 3.464' clip-rule='evenodd' opacity='.5'/%3E%3Cpath fill='currentColor' d='M14 12c0-.528-.53-.884-1.589-1.596c-1.073-.721-1.61-1.082-2.01-.817C10 9.852 10 10.567 10 12s0 2.148.4 2.413s.938-.096 2.011-.817C13.471 12.884 14 12.528 14 12M6.25 6.25H2.22c.195-1.223.56-2.101 1.243-2.785c.684-.685 1.563-1.05 2.786-1.243zm15.528 0c-.194-1.223-.559-2.101-1.243-2.785s-1.562-1.05-2.785-1.243V6.25zm.222 5c-.002-1.366-.01-2.519-.069-3.5H17.75v3.5zm-1.465 9.286c-.684.684-1.562 1.048-2.785 1.242V17.75h4.028c-.194 1.223-.559 2.102-1.243 2.786M22 12.75c-.002 1.366-.01 2.519-.069 3.5H17.75v-3.5zm-15.75 5v4.028c-1.223-.194-2.102-.558-2.786-1.242s-1.048-1.563-1.243-2.786zm0-1.5H2.069C2.01 15.269 2 14.116 2 12.75h4.25zm0-5H2c.001-1.366.01-2.519.068-3.5H6.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-solar\:videocamera-record-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='m17 9.5l.658-.329c1.946-.973 2.92-1.46 3.63-1.02c.712.44.712 1.528.712 3.703v.292c0 2.176 0 3.263-.711 3.703c-.712.44-1.685-.047-3.63-1.02L17 14.5z'/%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M2.908 5.462C2 6.57 2 8.212 2 11.5v1c0 3.287 0 4.931.908 6.038a4 4 0 0 0 .554.554C4.57 20 6.212 20 9.5 20c3.287 0 4.931 0 6.038-.908q.304-.25.554-.554C17 17.43 17 15.788 17 12.5v-1c0-3.287 0-4.931-.908-6.038a4 4 0 0 0-.554-.554C14.43 4 12.788 4 9.5 4c-3.287 0-4.931 0-6.038.908a4 4 0 0 0-.554.554' clip-rule='evenodd' opacity='.5'/%3E%3Cpath fill='currentColor' d='M14 8.5a1.5 1.5 0 1 1-3 0a1.5 1.5 0 0 1 3 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-streamline\:download-computer {
    --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 .5v6m-2-2l2 2l2-2'/%3E%3Cpath d='M9.5 2H13a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-.5.5H1a.5.5 0 0 1-.5-.5v-8A.5.5 0 0 1 1 2h3.5M6 11l-1 2.5M8 11l1 2.5m-5 0h6'/%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\:information-circle-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='M7 14A7 7 0 1 0 7 0a7 7 0 0 0 0 14M5.5 9.375a.625.625 0 1 0 0 1.25h3a.625.625 0 1 0 0-1.25h-.875V6.5A.625.625 0 0 0 7 5.875H6a.625.625 0 1 0 0 1.25h.375v2.25zM8 4a1 1 0 1 1-2 0a1 1 0 0 1 2 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-tabler\:world {
    --un-icon: 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='M3 12a9 9 0 1 0 18 0a9 9 0 0 0-18 0m.6-3h16.8M3.6 15h16.8'/%3E%3Cpath d='M11.5 3a17 17 0 0 0 0 18m1-18a17 17 0 0 1 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-tdesign\:service {
    --un-icon: url("data:image/svg+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 11C2 5.477 6.477 1 12 1s10 4.477 10 10v5.154C22 17.8 20.58 19 19 19h-3v-8h4a8 8 0 1 0-16 0h4v8H6.063A2 2 0 0 0 8 20.5h1.564c.316-.453.841-.75 1.436-.75h2a1.75 1.75 0 1 1 0 3.5h-2c-.595 0-1.12-.297-1.436-.75H8a4 4 0 0 1-3.986-3.66C2.874 18.463 2 17.446 2 16.155zm4 6v-4H4v3.154c0 .393.37.846 1 .846zm14-4h-2v4h1c.63 0 1-.453 1-.846z'/%3E%3C/svg%3E");
    -webkit-mask: var(--un-icon) no-repeat;
    mask: 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
}

.container {
    width: 100%
}

@media (min-width: 640px) {
    .container {
        max-width: 640px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px
    }
}

.invisible\ ! {
    visibility: hidden !important
}

.absolute {
    position: absolute
}

.absolute\ ! {
    position: absolute !important
}

.fixed {
    position: fixed
}

.fixed\ ! {
    position: fixed !important
}

.relative {
    position: relative
}

.sticky {
    position: sticky
}

.sticky\ ! {
    position: sticky !important
}

.-right-12 {
    right: -3rem
}

.bottom-\$mg\ ! {
    bottom: var(--mg) !important
}

.bottom-0px {
    bottom: 0
}

.bottom-100px {
    bottom: 100px
}

.bottom-14px\ ! {
    bottom: 14px !important
}

.bottom-18px {
    bottom: 18px
}

.bottom-20px {
    bottom: 20px
}

.left-0 {
    left: 0
}

.left-10px {
    left: 10px
}

.left-30px {
    left: 30px
}

.left-50\% {
    left: 50%
}

.left-50\%\ ! {
    left: 50% !important
}

.left-60px {
    left: 60px
}

.left-65px {
    left: 65px
}

.right-0 {
    right: 0
}

.right-24px {
    right: 24px
}

.top-0,
.top-0px,
[top-0=""] {
    top: 0
}

.top-100px {
    top: 100px
}

.top-114px {
    top: 114px
}

.top-130px {
    top: 130px
}

.top-45px\ ! {
    top: 45px !important
}

.top-48px {
    top: 48px
}

.top-492px {
    top: 492px
}

.top-50px {
    top: 50px
}

.top-54px {
    top: 54px
}

.top-68px {
    top: 68px
}

.top-8 {
    top: 2rem
}

.top-80px {
    top: 80px
}

.z-1,
[z-1=""] {
    z-index: 1
}

.z-10000 {
    z-index: 10000
}

.z-2 {
    z-index: 2
}

.z-5 {
    z-index: 5
}

.z-99 {
    z-index: 99
}

.grid {
    display: grid
}

.grid-cols-1 {
    grid-template-columns: repeat(1, 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-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-cols-3\ ! {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important
}

.m-10px {
    margin: 10px
}

.mx-\$mg {
    margin-left: var(--mg);
    margin-right: var(--mg)
}

.mx-10px {
    margin-left: 10px;
    margin-right: 10px
}

.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem
}

.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 {
    margin-left: auto;
    margin-right: auto
}

.my-\$mg\ ! {
    margin-top: var(--mg) !important;
    margin-bottom: var(--mg) !important
}

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

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

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

.my-15px\ ! {
    margin-top: 15px !important;
    margin-bottom: 15px !important
}

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

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

.mb-\$mg {
    margin-bottom: var(--mg)
}

.mb-1 {
    margin-bottom: .25rem
}

.mb-10px {
    margin-bottom: 10px
}

.mb-12px,
[mb-12px=""] {
    margin-bottom: 12px
}

.mb-15px {
    margin-bottom: 15px
}

.mb-16px,
[mb-16px=""] {
    margin-bottom: 16px
}

.mb-20px {
    margin-bottom: 20px
}

.mb-3px {
    margin-bottom: 3px
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-4px {
    margin-bottom: 4px
}

.mb-5px {
    margin-bottom: 5px
}

.mb-8 {
    margin-bottom: 2rem
}

.mb-8px {
    margin-bottom: 8px
}

.ml-\[calc\(-1\*var\(--mg\)\)\] {
    margin-left: calc(-1 * var(--mg))
}

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

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

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

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

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

.ml-50\% {
    margin-left: 50%
}

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

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

.ml-auto {
    margin-left: auto
}

.mr-10px,
[mr-10px=""] {
    margin-right: 10px
}

.mr-12px {
    margin-right: 12px
}

.mr-2 {
    margin-right: .5rem
}

.mr-2px {
    margin-right: 2px
}

.mr-3px {
    margin-right: 3px
}

.mr-4px {
    margin-right: 4px
}

.mr-5px {
    margin-right: 5px
}

.mr-6px {
    margin-right: 6px
}

.mr-7px {
    margin-right: 7px
}

.mr-8px {
    margin-right: 8px
}

.ms {
    margin-inline-start: 1rem
}

.mt-\[-10px\] {
    margin-top: -10px
}

.mt-\[-120px\] {
    margin-top: -120px
}

.mt-\$mg {
    margin-top: var(--mg)
}

.mt-\$mg\ ! {
    margin-top: var(--mg) !important
}

.mt-0\ ! {
    margin-top: 0 !important
}

.mt-1 {
    margin-top: .25rem
}

.mt-10px {
    margin-top: 10px
}

.mt-10px\ ! {
    margin-top: 10px !important
}

.mt-12px,
[mt-12px=""] {
    margin-top: 12px
}

.mt-12px\ ! {
    margin-top: 12px !important
}

.mt-14px {
    margin-top: 14px
}

.mt-15px {
    margin-top: 15px
}

.mt-16px {
    margin-top: 16px
}

.mt-2 {
    margin-top: .5rem
}

.mt-20px {
    margin-top: 20px
}

.mt-20px\ ! {
    margin-top: 20px !important
}

.mt-22px\ ! {
    margin-top: 22px !important
}

.mt-24px {
    margin-top: 24px
}

.mt-24px\ ! {
    margin-top: 24px !important
}

.mt-290px {
    margin-top: 290px
}

.mt-2px {
    margin-top: 2px
}

.mt-30px {
    margin-top: 30px
}

.mt-4 {
    margin-top: 1rem
}

.mt-40px {
    margin-top: 40px
}

.mt-40px\ ! {
    margin-top: 40px !important
}

.mt-4px {
    margin-top: 4px
}

.mt-5px {
    margin-top: 5px
}

.mt-6px {
    margin-top: 6px
}

.mt-7px {
    margin-top: 7px
}

.mt-8px {
    margin-top: 8px
}

.mt-9px {
    margin-top: 9px
}

[last\:mb-0~="default:"]:last-child:default {
    margin-bottom: 0
}

.last\:mb-0:last-child {
    margin-bottom: 0
}

[last\:mb-0=""]:last-child {
    margin-bottom: 0
}

.box-border {
    box-sizing: border-box
}

.inline {
    display: inline
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.hidden {
    display: none
}

.hidden\ ! {
    display: none !important
}

[size~="12"] {
    width: 3rem;
    height: 3rem
}

[size~="13px"] {
    width: 13px;
    height: 13px
}

[size~="15px"] {
    width: 15px;
    height: 15px
}

[size~="20"] {
    width: 5rem;
    height: 5rem
}

[size~="25"] {
    width: 6.25rem;
    height: 6.25rem
}

.h-100px {
    height: 100px
}

.h-100vh {
    height: 100vh
}

.h-12px {
    height: 12px
}

.h-13\.78px {
    height: 13.78px
}

.h-132px {
    height: 132px
}

.h-13px {
    height: 13px
}

.h-14px {
    height: 14px
}

.h-15px {
    height: 15px
}

.h-164px {
    height: 164px
}

.h-167px {
    height: 167px
}

.h-16px {
    height: 16px
}

.h-17px {
    height: 17px
}

.h-18px {
    height: 18px
}

.h-1px {
    height: 1px
}

.h-2,
.h2 {
    height: .5rem
}

.h-200px {
    height: 200px
}

.h-20px {
    height: 20px
}

.h-22px {
    height: 22px
}

.h-24 {
    height: 6rem
}

.h-24\.28px {
    height: 24.28px
}

.h-24px {
    height: 24px
}

.h-25px {
    height: 25px
}

.h-26\.48px {
    height: 26.48px
}

.h-26px {
    height: 26px
}

.h-28px {
    height: 28px
}

.h-300px {
    height: 300px
}

.h-30px {
    height: 30px
}

.h-31px {
    height: 31px
}

.h-320px {
    height: 320px
}

.h-32px {
    height: 32px
}

.h-340px {
    height: 340px
}

.h-350px {
    height: 350px
}

.h-36px {
    height: 36px
}

.h-375px {
    height: 375px
}

.h-38px {
    height: 38px
}

.h-4 {
    height: 1rem
}

.h-40px {
    height: 40px
}

.h-40px\ !,
[h-40px\ !=""] {
    height: 40px !important
}

.h-450px {
    height: 450px
}

.h-474px {
    height: 474px
}

.h-494px {
    height: 494px
}

.h-50px {
    height: 50px
}

.h-550px {
    height: 550px
}

.h-60px {
    height: 60px
}

.h-60px\ ! {
    height: 60px !important
}

.h-62px {
    height: 62px
}

.h-64px {
    height: 64px
}

.h-67px {
    height: 67px
}

.h-70px {
    height: 70px
}

.h-70px\ ! {
    height: 70px !important
}

.h-80px {
    height: 80px
}

.h-80px\ ! {
    height: 80px !important
}

.h-84px {
    height: 84px
}

.h-90\% {
    height: 90%
}

.h-92px\ ! {
    height: 92px !important
}

.h-96px\ ! {
    height: 96px !important
}

.h-auto {
    height: auto
}

.h-auto\ ! {
    height: auto !important
}

.h-full {
    height: 100%
}

.h1 {
    height: .25rem
}

.h3 {
    height: .75rem
}

.max-h-1000px\ ! {
    max-height: 1000px !important
}

.max-h-100px {
    max-height: 100px
}

.max-h-150px {
    max-height: 150px
}

.max-h-160px\ ! {
    max-height: 160px !important
}

.max-h-280px {
    max-height: 280px
}

.max-w-\$maxWidth {
    max-width: var(--maxWidth)
}

.max-w-300px\ ! {
    max-width: 300px !important
}

.max-w-383px {
    max-width: 383px
}

.max-w-720px {
    max-width: 720px
}

.max-w-sm {
    max-width: 24rem
}

.min-h-40px {
    min-height: 40px
}

.min-h-70px {
    min-height: 70px
}

.min-w-40px {
    min-width: 40px
}

.w-\[calc\(100\%-180px\)\] {
    width: calc(100% - 180px)
}

.w-\[calc\(100\%-40px\)\] {
    width: calc(100% - 40px)
}

.w-\[calc\(100\%\+2\*var\(--mg\)\)\] {
    width: calc(100% + 2 * var(--mg))
}

.w-1 {
    width: .25rem
}

.w-100\%,
.w-full {
    width: 100%
}

.w-100px {
    width: 100px
}

.w-12px {
    width: 12px
}

.w-13\.78px {
    width: 13.78px
}

.w-13px {
    width: 13px
}

.w-142px {
    width: 142px
}

.w-14px {
    width: 14px
}

.w-150px {
    width: 150px
}

.w-15px {
    width: 15px
}

.w-16\.5px {
    width: 16.5px
}

.w-164px {
    width: 164px
}

.w-167px {
    width: 167px
}

.w-17px {
    width: 17px
}

.w-18px {
    width: 18px
}

.w-200px {
    width: 200px
}

.w-20px {
    width: 20px
}

.w-22px {
    width: 22px
}

.w-24 {
    width: 6rem
}

.w-24\.78px {
    width: 24.78px
}

.w-24px {
    width: 24px
}

.w-25px {
    width: 25px
}

.w-26\.48px {
    width: 26.48px
}

.w-26px {
    width: 26px
}

.w-280px {
    width: 280px
}

.w-28px {
    width: 28px
}

.w-30\% {
    width: 30%
}

.w-30px {
    width: 30px
}

.w-31px {
    width: 31px
}

.w-32\.5px {
    width: 32.5px
}

.w-320px {
    width: 320px
}

.w-32px {
    width: 32px
}

.w-336px {
    width: 336px
}

.w-383px {
    width: 383px
}

.w-38px {
    width: 38px
}

.w-40\% {
    width: 40%
}

.w-40px {
    width: 40px
}

.w-40px\ !,
[w-40px\ !=""] {
    width: 40px !important
}

.w-4px {
    width: 4px
}

.w-50\% {
    width: 50%
}

.w-50px {
    width: 50px
}

.w-60\% {
    width: 60%
}

.w-60px {
    width: 60px
}

.w-60px\ ! {
    width: 60px !important
}

.w-62px {
    width: 62px
}

.w-64px {
    width: 64px
}

.w-70\% {
    width: 70%
}

.w-70px {
    width: 70px
}

.w-80\% {
    width: 80%
}

.w-80px {
    width: 80px
}

.w-80px\ ! {
    width: 80px !important
}

.w-90\% {
    width: 90%
}

.w-90\%\ ! {
    width: 90% !important
}

.w-92px\ ! {
    width: 92px !important
}

.w-95\% {
    width: 95%
}

.w-96px\ ! {
    width: 96px !important
}

.w-99px {
    width: 99px
}

.w-auto {
    width: auto
}

.w-full\ ! {
    width: 100% !important
}

.w\[t\] {
    width: t
}

[w-full~="default:"]:default {
    width: 100%
}

.flex,
[flex=""] {
    display: flex
}

.flex-1 {
    flex: 1 1 0%
}

.flex-shrink,
[shrink-0\ !~="_createElementVNode("],
[shrink-0\ !~="}),"] {
    flex-shrink: 1
}

.flex-shrink-0,
.shrink-0 {
    flex-shrink: 0
}

.shrink-0\ ! {
    flex-shrink: 0 !important
}

.flex-grow {
    flex-grow: 1
}

.flex-col {
    flex-direction: column
}

.flex-wrap {
    flex-wrap: wrap
}

.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-\[-50\%\]\ ! {
    --un-translate-x: -50% !important;
    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)) !important
}

.translate-x-2px {
    --un-translate-x: 2px;
    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-180,
.rotate-180deg {
    --un-rotate-x: 0;
    --un-rotate-y: 0;
    --un-rotate-z: 0;
    --un-rotate: 180deg;
    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-45 {
    --un-rotate-x: 0;
    --un-rotate-y: 0;
    --un-rotate-z: 0;
    --un-rotate: 45deg;
    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: 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)
    }
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.animate-bounce {
    animation: bounce 1s linear infinite
}

.animate-spin {
    animation: spin 1s linear infinite
}

.cursor-pointer,
[cursor-pointer=""] {
    cursor: pointer
}

.resize {
    resize: both
}

.items-center,
[items-center=""] {
    align-items: center
}

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

.justify-center {
    justify-content: center
}

.justify-between,
[justify-between=""] {
    justify-content: space-between
}

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

.gap-1 {
    gap: .25rem
}

.gap-10px {
    gap: 10px
}

.gap-16px {
    gap: 16px
}

.gap-2 {
    gap: .5rem
}

.gap-3 {
    gap: .75rem
}

.gap-4 {
    gap: 1rem
}

.gap-4px {
    gap: 4px
}

.gap-8px {
    gap: 8px
}

[gap~="10"] {
    gap: 2.5rem
}

.gap-x-2 {
    column-gap: .5rem
}

.gap-y-10px {
    row-gap: 10px
}

.gap-y-6 {
    row-gap: 1.5rem
}

.space-y-1>:not([hidden])~:not([hidden]) {
    --un-space-y-reverse: 0;
    margin-top: calc(.25rem * calc(1 - var(--un-space-y-reverse)));
    margin-bottom: calc(.25rem * 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))
}

.overflow-hidden {
    overflow: hidden
}

.overflow-x-hidden {
    overflow-x: hidden
}

.overflow-y-auto {
    overflow-y: auto
}

.overflow-y-auto\ ! {
    overflow-y: auto !important
}

.overflow-y-hidden {
    overflow-y: hidden
}

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

.break-words {
    overflow-wrap: break-word
}

.break-all {
    word-break: break-all
}

.b,
.border,
.border-1px {
    border-width: 1px
}

.border-2px {
    border-width: 2px
}

.border-b,
[border-b=""] {
    border-bottom-width: 1px
}

.border-l-2 {
    border-left-width: 2px
}

.border-l-4 {
    border-left-width: 4px
}

.border-t {
    border-top-width: 1px
}

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

.border-\#362f4f {
    --un-border-opacity: 1;
    border-color: rgb(54 47 79 / var(--un-border-opacity))
}

.border-\#86909C {
    --un-border-opacity: 1;
    border-color: rgb(134 144 156 / var(--un-border-opacity))
}

.border-\$border-color {
    border-color: var(--border-color)
}

.border-\$border-color2 {
    border-color: var(--border-color2)
}

.border-\$btn-bg {
    border-color: var(--btn-bg)
}

.border-\$primary {
    border-color: var(--primary)
}

.border-\$radius {
    border-color: var(--radius)
}

.border-\$text-gray6 {
    border-color: var(--text-gray6)
}

.border-purple-600 {
    --un-border-opacity: 1;
    border-color: rgb(147 51 234 / var(--un-border-opacity))
}

.border-slate-300 {
    --un-border-opacity: 1;
    border-color: rgb(203 213 225 / var(--un-border-opacity))
}

.rd,
.rounded {
    border-radius: .25rem
}

.rd-\$card-radius,
.rounded-\[var\(--card-radius\)\],
.rounded-\$card-radius {
    border-radius: var(--card-radius)
}

.rd-\$radius {
    border-radius: var(--radius)
}

.rd-\$radius\ ! {
    border-radius: var(--radius) !important
}

.rd-0\ ! {
    border-radius: 0 !important
}

.rd-10px {
    border-radius: 10px
}

.rd-5px {
    border-radius: 5px
}

.rd-8px,
[rd-8px=""] {
    border-radius: 8px
}

.rd-full,
.rounded-full {
    border-radius: 9999px
}

.rounded-\$card-radius\ ! {
    border-radius: var(--card-radius) !important
}

.rounded-12px {
    border-radius: 12px
}

.rounded-12px\ ! {
    border-radius: 12px !important
}

.rounded-22px {
    border-radius: 22px
}

.rounded-2xl {
    border-radius: 1rem
}

.rounded-lg {
    border-radius: .5rem
}

.border-dashed {
    border-style: dashed
}

.border-dashed\ ! {
    border-style: dashed !important
}

.border-none {
    border-style: none
}

.border-none\ ! {
    border-style: none !important
}

.border-solid,
[border-solid=""] {
    border-style: solid
}

.last\:b-none:last-child {
    border-style: none
}

.bg-\[\#7D3232\] {
    --un-bg-opacity: 1;
    background-color: rgb(125 50 50 / 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-\#084527 {
    --un-bg-opacity: 1;
    background-color: rgb(8 69 39 / var(--un-bg-opacity))
}

.bg-\#09c497\ ! {
    --un-bg-opacity: 1 !important;
    background-color: rgb(9 196 151 / var(--un-bg-opacity)) !important
}

.bg-\#1f212c\ ! {
    --un-bg-opacity: 1 !important;
    background-color: rgb(31 33 44 / var(--un-bg-opacity)) !important
}

.bg-\#343844 {
    --un-bg-opacity: 1;
    background-color: rgb(52 56 68 / var(--un-bg-opacity))
}

.bg-\#501a17 {
    --un-bg-opacity: 1;
    background-color: rgb(80 26 23 / var(--un-bg-opacity))
}

.bg-\#7e2b26 {
    --un-bg-opacity: 1;
    background-color: rgb(126 43 38 / var(--un-bg-opacity))
}

.bg-\#ce4040\ ! {
    --un-bg-opacity: 1 !important;
    background-color: rgb(206 64 64 / var(--un-bg-opacity)) !important
}

.bg-\#D3CBFF {
    --un-bg-opacity: 1;
    background-color: rgb(211 203 255 / var(--un-bg-opacity))
}

.bg-\#e9ebea {
    --un-bg-opacity: 1;
    background-color: rgb(233 235 234 / var(--un-bg-opacity))
}

.bg-\#F7F8FA {
    --un-bg-opacity: 1;
    background-color: rgb(247 248 250 / var(--un-bg-opacity))
}

.bg-\#facc15\ ! {
    --un-bg-opacity: 1 !important;
    background-color: rgb(250 204 21 / var(--un-bg-opacity)) !important
}

.bg-\#ffe3f9 {
    --un-bg-opacity: 1;
    background-color: rgb(255 227 249 / var(--un-bg-opacity))
}

.bg-\#ffe3f9\ ! {
    --un-bg-opacity: 1 !important;
    background-color: rgb(255 227 249 / var(--un-bg-opacity)) !important
}

.bg-\#fff,
.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-weight {
    background-color: var(--bg-weight)
}

.bg-\$bg-weight\ ! {
    background-color: var(--bg-weight) !important
}

.bg-\$border-color {
    background-color: var(--border-color)
}

.bg-\$primary {
    background-color: var(--primary)
}

.bg-\$text-gray {
    background-color: var(--text-gray)
}

.bg-\$text-gray\ ! {
    background-color: var(--text-gray) !important
}

.bg-black\ ! {
    --un-bg-opacity: 1 !important;
    background-color: rgb(0 0 0 / var(--un-bg-opacity)) !important
}

.bg-gray-300 {
    --un-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--un-bg-opacity))
}

.bg-gray-50 {
    --un-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--un-bg-opacity))
}

.bg-gray-500 {
    --un-bg-opacity: 1;
    background-color: rgb(107 114 128 / var(--un-bg-opacity))
}

.bg-purple-100 {
    --un-bg-opacity: 1;
    background-color: rgb(243 232 255 / var(--un-bg-opacity))
}

.bg-red-500 {
    --un-bg-opacity: 1;
    background-color: rgb(239 68 68 / var(--un-bg-opacity))
}

.bg-slate-200 {
    --un-bg-opacity: 1;
    background-color: rgb(226 232 240 / var(--un-bg-opacity))
}

.bg-transparent\ ! {
    background-color: transparent !important
}

.hover\:bg-red-600:hover {
    --un-bg-opacity: 1;
    background-color: rgb(220 38 38 / var(--un-bg-opacity))
}

.bg-op-8,
.bg-opacity-8 {
    --un-bg-opacity: .08
}

.bg-opacity-80 {
    --un-bg-opacity: .8
}

.from-purple-500 {
    --un-gradient-from-position: 0%;
    --un-gradient-from: rgb(168 85 247 / var(--un-from-opacity, 1)) var(--un-gradient-from-position);
    --un-gradient-to-position: 100%;
    --un-gradient-to: rgb(168 85 247 / 0) var(--un-gradient-to-position);
    --un-gradient-stops: var(--un-gradient-from), var(--un-gradient-to)
}

.hover\:from-purple-600:hover {
    --un-gradient-from-position: 0%;
    --un-gradient-from: rgb(147 51 234 / var(--un-from-opacity, 1)) var(--un-gradient-from-position);
    --un-gradient-to-position: 100%;
    --un-gradient-to: rgb(147 51 234 / 0) var(--un-gradient-to-position);
    --un-gradient-stops: var(--un-gradient-from), var(--un-gradient-to)
}

.to-purple-600 {
    --un-gradient-to-position: 100%;
    --un-gradient-to: rgb(147 51 234 / var(--un-to-opacity, 1)) var(--un-gradient-to-position)
}

.hover\:to-purple-700:hover {
    --un-gradient-to-position: 100%;
    --un-gradient-to: rgb(126 34 206 / var(--un-to-opacity, 1)) var(--un-gradient-to-position)
}

.bg-gradient-to-r,
.hover\:bg-gradient-to-r:hover {
    --un-gradient-shape: to right;
    --un-gradient: var(--un-gradient-shape), var(--un-gradient-stops);
    background-image: linear-gradient(var(--un-gradient))
}

[fill~="#f9d423"] {
    --un-fill-opacity: 1;
    fill: rgb(249 212 35 / var(--un-fill-opacity))
}

[stroke-width~="2"] {
    stroke-width: 2px
}

[stroke-width~="3"] {
    stroke-width: 3px
}

[stroke~="#f83600"] {
    --un-stroke-opacity: 1;
    stroke: rgb(248 54 0 / var(--un-stroke-opacity))
}

[stroke~="#f9d423"] {
    --un-stroke-opacity: 1;
    stroke: rgb(249 212 35 / var(--un-stroke-opacity))
}

.p-\$mg {
    padding: var(--mg)
}

.p-\$mg\ ! {
    padding: var(--mg) !important
}

.p-0 {
    padding: 0
}

.p-0\ ! {
    padding: 0 !important
}

.p-10px {
    padding: 10px
}

.p-10px\ ! {
    padding: 10px !important
}

.p-12px {
    padding: 12px
}

.p-12px\ ! {
    padding: 12px !important
}

.p-14px {
    padding: 14px
}

.p-14px\ ! {
    padding: 14px !important
}

.p-2 {
    padding: .5rem
}

.p-3 {
    padding: .75rem
}

.p-4px {
    padding: 4px
}

.p-5 {
    padding: 1.25rem
}

.p-5px {
    padding: 5px
}

.p-6 {
    padding: 1.5rem
}

.p-8px {
    padding: 8px
}

.p-8px\ ! {
    padding: 8px !important
}

[p-10px~="default:"]:default {
    padding: 10px
}

.px {
    padding-left: 1rem;
    padding-right: 1rem
}

.px-\$mg {
    padding-left: var(--mg);
    padding-right: var(--mg)
}

.px-10px {
    padding-left: 10px;
    padding-right: 10px
}

.px-12 {
    padding-left: 3rem;
    padding-right: 3rem
}

.px-12px {
    padding-left: 12px;
    padding-right: 12px
}

.px-13px {
    padding-left: 13px;
    padding-right: 13px
}

.px-14px {
    padding-left: 14px;
    padding-right: 14px
}

.px-20px {
    padding-left: 20px;
    padding-right: 20px
}

.px-3 {
    padding-left: .75rem;
    padding-right: .75rem
}

.px-4px {
    padding-left: 4px;
    padding-right: 4px
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.px-8px {
    padding-left: 8px;
    padding-right: 8px
}

.py-\$mg {
    padding-top: var(--mg);
    padding-bottom: var(--mg)
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0
}

.py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem
}

.py-10px {
    padding-top: 10px;
    padding-bottom: 10px
}

.py-11px {
    padding-top: 11px;
    padding-bottom: 11px
}

.py-12px {
    padding-top: 12px;
    padding-bottom: 12px
}

.py-14px {
    padding-top: 14px;
    padding-bottom: 14px
}

.py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.py-20px {
    padding-top: 20px;
    padding-bottom: 20px
}

.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-7px {
    padding-top: 7px;
    padding-bottom: 7px
}

.py-8px {
    padding-top: 8px;
    padding-bottom: 8px
}

.py-9px {
    padding-top: 9px;
    padding-bottom: 9px
}

.pb-3 {
    padding-bottom: .75rem
}

.pl-10px {
    padding-left: 10px
}

.pl-16px {
    padding-left: 16px
}

.pl-28px {
    padding-left: 28px
}

.pl-4 {
    padding-left: 1rem
}

.pr {
    padding-right: 1rem
}

.pt-0\ ! {
    padding-top: 0 !important
}

.pt-120px {
    padding-top: 120px
}

.pt-12px {
    padding-top: 12px
}

.pie {
    padding-inline-end: 1rem
}

.text-center,
[text-center=""] {
    text-align: center
}

.text-center\ ! {
    text-align: center !important
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-10px {
    font-size: 10px
}

.text-12px {
    font-size: 12px
}

.text-12px\ ! {
    font-size: 12px !important
}

.text-13px {
    font-size: 13px
}

.text-14px {
    font-size: 14px
}

.text-14px\ !,
[text-14px\ !=""] {
    font-size: 14px !important
}

.text-15px {
    font-size: 15px
}

.text-16px,
[font-size~="16px"] {
    font-size: 16px
}

.text-16px\ ! {
    font-size: 16px !important
}

.text-18px {
    font-size: 18px
}

.text-20px {
    font-size: 20px
}

.text-24px {
    font-size: 24px
}

.text-28px {
    font-size: 28px
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}

.text-30px {
    font-size: 30px
}

.text-36px {
    font-size: 36px
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

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

.text-xs {
    font-size: .75rem;
    line-height: 1rem
}

.text-\[var\(--primary-color\)\] {
    color: var(--primary-color)
}

.text-\[var\(--primary-color\)\]\ ! {
    color: var(--primary-color) !important
}

.text-\[var\(--primary\)\]\ !,
.text-\$primary\ ! {
    color: var(--primary) !important
}

.text-\[var\(--text-gray\)\],
.text-\$text-gray {
    color: var(--text-gray)
}

.text-\#000,
.text-black,
[color~="#000"] {
    --un-text-opacity: 1;
    color: rgb(0 0 0 / var(--un-text-opacity))
}

.text-\#00fc83 {
    --un-text-opacity: 1;
    color: rgb(0 252 131 / var(--un-text-opacity))
}

.text-\#1d2129 {
    --un-text-opacity: 1;
    color: rgb(29 33 41 / var(--un-text-opacity))
}

.text-\#5799ef {
    --un-text-opacity: 1;
    color: rgb(87 153 239 / var(--un-text-opacity))
}

.text-\#5a43eb {
    --un-text-opacity: 1;
    color: rgb(90 67 235 / var(--un-text-opacity))
}

.text-\#5bcb9a {
    --un-text-opacity: 1;
    color: rgb(91 203 154 / var(--un-text-opacity))
}

.text-\#86909c,
.text-\#86909C {
    --un-text-opacity: 1;
    color: rgb(134 144 156 / var(--un-text-opacity))
}

.text-\#EF0091\ ! {
    --un-text-opacity: 1 !important;
    color: rgb(239 0 145 / var(--un-text-opacity)) !important
}

.text-\#ff7d74 {
    --un-text-opacity: 1;
    color: rgb(255 125 116 / var(--un-text-opacity))
}

.text-\#ff7d74\ ! {
    --un-text-opacity: 1 !important;
    color: rgb(255 125 116 / var(--un-text-opacity)) !important
}

.text-\#ffc837 {
    --un-text-opacity: 1;
    color: rgb(255 200 55 / var(--un-text-opacity))
}

.text-\#fff,
.text-white,
[color~="#fff"] {
    --un-text-opacity: 1;
    color: rgb(255 255 255 / var(--un-text-opacity))
}

.c-\$btn-text,
.text-\$btn-text {
    color: var(--btn-text)
}

.text-\$btn-text\ ! {
    color: var(--btn-text) !important
}

.text-\$primary {
    color: var(--primary)
}

.text-\$text-gray6 {
    color: var(--text-gray6)
}

.text-\$text-white {
    color: var(--text-white)
}

.text-black\ ! {
    --un-text-opacity: 1 !important;
    color: rgb(0 0 0 / var(--un-text-opacity)) !important
}

.text-emerald {
    --un-text-opacity: 1;
    color: rgb(52 211 153 / var(--un-text-opacity))
}

.text-gray {
    --un-text-opacity: 1;
    color: rgb(156 163 175 / var(--un-text-opacity))
}

.text-gray-300 {
    --un-text-opacity: 1;
    color: rgb(209 213 219 / var(--un-text-opacity))
}

.text-gray-500 {
    --un-text-opacity: 1;
    color: rgb(107 114 128 / var(--un-text-opacity))
}

.text-gray-600 {
    --un-text-opacity: 1;
    color: rgb(75 85 99 / var(--un-text-opacity))
}

.text-gray-700 {
    --un-text-opacity: 1;
    color: rgb(55 65 81 / var(--un-text-opacity))
}

.text-gray-800 {
    --un-text-opacity: 1;
    color: rgb(31 41 55 / 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))
}

.text-purple-200 {
    --un-text-opacity: 1;
    color: rgb(233 213 255 / var(--un-text-opacity))
}

.text-purple-600 {
    --un-text-opacity: 1;
    color: rgb(147 51 234 / var(--un-text-opacity))
}

.c-red,
.text-red {
    --un-text-opacity: 1;
    color: rgb(248 113 113 / var(--un-text-opacity))
}

.text-red-500 {
    --un-text-opacity: 1;
    color: rgb(239 68 68 / var(--un-text-opacity))
}

.text-red-6 {
    --un-text-opacity: 1;
    color: rgb(220 38 38 / var(--un-text-opacity))
}

.text-red\ ! {
    --un-text-opacity: 1 !important;
    color: rgb(248 113 113 / var(--un-text-opacity)) !important
}

.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))
}

.hover\:text-white:hover {
    --un-text-opacity: 1;
    color: rgb(255 255 255 / var(--un-text-opacity))
}

[color~="#ababb3"] {
    --un-text-opacity: 1;
    color: rgb(171 171 179 / var(--un-text-opacity))
}

.font-500,
.font-medium {
    font-weight: 500
}

.font-600 {
    font-weight: 600
}

.font-700,
.font-bold {
    font-weight: 700
}

.font-bold\ ! {
    font-weight: 700 !important
}

.leading-28px {
    line-height: 28px
}

.leading-36px {
    line-height: 36px
}

.font-mono {
    font-family: DM Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace
}

.uppercase {
    text-transform: uppercase
}

.line-through {
    text-decoration-line: line-through
}

.underline {
    text-decoration-line: underline
}

.tab {
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4
}

.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)
}

.shadow,
[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-lg {
    --un-shadow: var(--un-shadow-inset) 0 10px 15px -3px var(--un-shadow-color, rgb(0 0 0 / .1)), var(--un-shadow-inset) 0 4px 6px -4px var(--un-shadow-color, rgb(0 0 0 / .1));
    box-shadow: var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow)
}

.shadow-xl,
.hover\:shadow-xl:hover {
    --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)
}

.grayscale-100 {
    --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)
}

.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-colors {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

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

[placeholder~="$t("]::placeholder {
    color: var(--t\()
}

@media (min-width: 768px) {
    .md\:max-h-220px\ ! {
        max-height: 220px !important
    }
}

: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-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: 8px;
    --btn-radius: 38px;
    --card-radius: 8px;
    --padding: 30px;
    --mg: 14px;
    --tabbar-height: 70px;
    --navbar-height: 50px;
    --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-text: #fff;
    --border-color: hsla(0, 0%, 100%, .08);
    --text-gray: hsla(0, 0%, 100%, .6);
    --text-gray6: hsla(0, 0%, 100%, .5);
    --btn-bg2: linear-gradient(113.99deg, #114fee 6.12%, #b654fd 83.22%);
    --van-image-placeholder-background: hsla(0, 0%, 100%, .1)
}

.a-t-1 .base-logo {
    width: 70px;
    height: 70px
}

.a-t-1 .base-lang-wrap {
    padding: 0
}

.a-t-1 .base-input {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px
}

.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: 48px;
    border-radius: 8px;
    background: var(--bg-input);
    border: 1px solid hsla(0, 0%, 100%, .2);
    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: 100%;
    margin: 0 auto;
    font-size: 16px;
    height: 44px;
    border-radius: 40px
}

.a-t-1 .base-main-btn-content {
    border-radius: 40px;
    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(--btn-text)
}

.a-t-1 .base-user-tab {
    position: relative;
    border-radius: 40px;
    border: 1px solid hsla(0, 0%, 100%, .1);
    min-height: 40px;
    padding: 4px;
    margin: 12px 0
}

.a-t-1 .base-user-tab .tab-item {
    color: var(--btn-text);
    background: transparent;
    border-radius: 40px;
    text-align: center;
    font-size: 14px
}

.a-t-1 .base-user-tab .tab-item.active {
    background: linear-gradient(90deg, #1b5bff, #c029ff)
}

.a-t-1 .container-login {
    background: url(/assets/bg_login-DtIqy2n1.png) no-repeat top;
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto;
    padding-bottom: 20px
}

.a-t-1 .container-login .top-info {
    position: relative
}

.a-t-1 .container-login .top-info .top-tools {
    height: 42px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 11px 14px
}

.a-t-1 .container-login .login-content .login-tools {
    margin-top: 32px
}

.a-t-1 .container-login .login-content .login-rules {
    position: fixed;
    bottom: var(--mg);
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.a-t-1 .container-form {
    background: transparent;
    padding: 0 var(--mg)
}

.a-t-1 .container-card-info {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px
}

.a-t-1 .container-card-info .label {
    color: var(--text-gray)
}

.a-t-1 .container-card-info .value {
    font-size: 14px;
    color: var(--btn-text)
}

.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 .second-wrap {
    padding-top: 46px;
    padding-bottom: 46px
}

.a-t-1 .bg-wrap {
    background: url(/assets/bg_1-CXVUQEx-.png) no-repeat top;
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto
}

.a-t-1 .nav-bar-wrap {
    overflow: hidden
}

.a-t-1 .nav-bar-wrap:before {
    content: "";
    background: url(/assets/bg_1-CXVUQEx-.png) no-repeat top;
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    pointer-events: none
}

.a-t-1 .navigation-content {
    background: url(/assets/bg_1-CXVUQEx-.png) no-repeat top !important
}

.a-t-2 {
    --radius: 8px;
    --btn-radius: 38px;
    --card-radius: 8px;
    --padding: 30px;
    --mg: 14px;
    --tabbar-height: 70px;
    --navbar-height: 50px;
    --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-text: #fff;
    --border-color: hsla(0, 0%, 100%, .08);
    --text-gray: hsla(0, 0%, 100%, .6);
    --text-gray6: hsla(0, 0%, 100%, .5);
    --btn-bg2: linear-gradient(113.99deg, #114fee 6.12%, #b654fd 83.22%);
    --van-image-placeholder-background: hsla(0, 0%, 100%, .1)
}

.a-t-2 .base-logo {
    width: 70px;
    height: 70px
}

.a-t-2 .base-lang-wrap {
    padding: 0
}

.a-t-2 .base-input {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px
}

.a-t-2 .base-input.is-textarea .input-box {
    padding: 16px;
    min-height: 52px;
    height: auto
}

.a-t-2 .base-input .label {
    margin-bottom: 12px
}

.a-t-2 .base-input .input-box {
    padding: 0 16px;
    box-sizing: border-box;
    min-height: 48px;
    border-radius: 8px;
    background: var(--bg-input);
    border: 1px solid hsla(0, 0%, 100%, .2);
    position: relative;
    display: flex;
    align-items: center
}

.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: 100%;
    margin: 0 auto;
    font-size: 16px;
    height: 44px;
    border-radius: 40px
}

.a-t-2 .base-main-btn-content {
    border-radius: 40px;
    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(--btn-text)
}

.a-t-2 .base-user-tab {
    position: relative;
    border-radius: 40px;
    border: 1px solid hsla(0, 0%, 100%, .1);
    min-height: 40px;
    padding: 4px;
    margin: 12px 0
}

.a-t-2 .base-user-tab .tab-item {
    color: var(--btn-text);
    background: transparent;
    border-radius: 40px;
    text-align: center;
    font-size: 14px
}

.a-t-2 .base-user-tab .tab-item.active {
    background: linear-gradient(90deg, #1b5bff, #c029ff)
}

.a-t-2 .container-login {
    background: url(/assets/bg_login-DtIqy2n1.png) no-repeat top;
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto;
    padding-bottom: 20px
}

.a-t-2 .container-login .top-info {
    position: relative
}

.a-t-2 .container-login .top-info .top-tools {
    height: 42px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 11px 14px
}

.a-t-2 .container-login .login-content .login-tools {
    margin-top: 32px
}

.a-t-2 .container-login .login-content .login-rules {
    position: fixed;
    bottom: var(--mg);
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.a-t-2 .container-form {
    background: transparent;
    padding: 0 var(--mg)
}

.a-t-2 .container-card-info {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px
}

.a-t-2 .container-card-info .label {
    color: var(--text-gray)
}

.a-t-2 .container-card-info .value {
    font-size: 14px;
    color: var(--btn-text)
}

.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 .second-wrap {
    padding-top: 46px;
    padding-bottom: 46px
}

.a-t-2 .bg-wrap {
    background: url(/assets/bg_1-CXVUQEx-.png) no-repeat top;
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto
}

.a-t-2 .nav-bar-wrap {
    overflow: hidden
}

.a-t-2 .nav-bar-wrap:before {
    content: "";
    background: url(/assets/bg_1-CXVUQEx-.png) no-repeat top;
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    pointer-events: none
}

.a-t-2 .navigation-content {
    background: url(/assets/bg_1-CXVUQEx-.png) no-repeat top !important
}

.a-t-3 {
    --radius: 8px;
    --btn-radius: 38px;
    --card-radius: 8px;
    --padding: 30px;
    --mg: 14px;
    --tabbar-height: 70px;
    --navbar-height: 50px;
    --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-text: #fff;
    --border-color: rgba(255, 255, 255, .2);
    --text-gray: hsla(0, 0%, 100%, .6);
    --text-gray6: hsla(0, 0%, 100%, .5);
    --btn-bg2: linear-gradient(113.99deg, #114fee 6.12%, #b654fd 83.22%);
    --van-image-placeholder-background: hsla(0, 0%, 100%, .1)
}

.a-t-3 .base-logo {
    width: 70px;
    height: 70px
}

.a-t-3 .base-lang-wrap {
    padding: 0
}

.a-t-3 .base-input {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px
}

.a-t-3 .base-input.is-textarea .input-box {
    padding: 16px;
    min-height: 52px;
    height: auto
}

.a-t-3 .base-input .label {
    margin-bottom: 12px
}

.a-t-3 .base-input .input-box {
    padding: 0 16px;
    box-sizing: border-box;
    min-height: 52px;
    border-radius: 12px;
    background: var(--bg-input);
    position: relative;
    display: flex;
    align-items: center
}

.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: 100%;
    margin: 0 auto;
    font-size: 16px;
    height: 44px;
    border-radius: 40px
}

.a-t-3 .base-main-btn-content {
    border-radius: 40px;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    text-align: center;
    color: var(--btn-text)
}

.a-t-3 .base-user-tab {
    position: relative;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: 54px;
    padding: 7px
}

.a-t-3 .base-user-tab .tab-item {
    color: #ffffff80
}

.a-t-3 .base-user-tab .tab-item.active {
    color: #fff;
    border-radius: 12px;
    background: var(--primary)
}

.a-t-3 .base-dialog .dialog-wrap .dialog-content .dialog-body .setting-pop-wrap .input-box {
    border: 1px solid var(--border-color)
}

.a-t-3 .container-login {
    background: var(--bg);
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto;
    padding-bottom: 20px;
    padding-left: var(--mg);
    padding-right: var(--mg)
}

.a-t-3 .container-login:before {
    position: fixed;
    background: url(data:image/png;base64,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);
    background-size: 100% 100%;
    width: 334px;
    height: 334px;
    content: "";
    top: 82px;
    left: -142px;
    pointer-events: none
}

.a-t-3 .container-login:after {
    position: fixed;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAU4AAAFOBAMAAAAbfelaAAAAD1BMVEUAAAD///////////////+PQt5oAAAABXRSTlMAFAkFDogOJLQAAA78SURBVHjazJphUuMwDEY7ERfoDAfwSj2AR9oDQPH9z7QEFgQosewqpta/7Qb76X2WgQynAwtkLUZEkrVOExaIIDL+KJF8mqjgU6J+BvBf7TSoKw7tmHtjpQlOwJtKkeoTiHhvqaK2HOP3dCrcKgruSAqMlKNPjy/pnQ/hOyiFWzaVAUqH7Ai/rPRzu6mVAq97TQ8KsZ2AcSyoChlwagZgyhRr+FtMs0p1gzxRuwMxdRgVdGLMr6BTYw4EBcwTt/21/6nz+cDk42PiAaBIp+OLaf4VhywrpAlNfOi/j/q0K3+foXmTaj1FIoIfJSKBxce1DIK2JAfCGnCEQH46zCJiUMceURbXCO68vpG3/8m/krxQA6VCWlSflGV46uBj+I8A5sGpiyJE3oJJOPmFqh6w0QQ4/bAMTF0cS+bhQPKBUWSjyFU6auaBcve2tzUGHBGKNcz+hQUrC1JEZwCz98s4Hz9EoAmGQeOjxLSPOeBtHVNYZxxTy4BGhTJ1YcZBmQI6HcwoaFwoO5iBwj1QCtxJsXcDfb1yjuv0MeOgQAfpXBQzCJqOEcrZWX7MLAHFdfozBMJY3gtJsgN6hFBOztq2BMvPIul+sbZQ5O70Dye/WxTRP2u5lFKulJ0jGrpDmboOJ/CKZIIGWVGV1LYd/abUtwIrzWYH1GcjMEW11OGiJDtdXHMl+cAkce648SqU6rTjNgYK6WTalmlk9TzFFBHKuTX1xZWp1nPrdAMFdGJydncKtjta8HahTK3rmTTr2bf2z6kjdj8fLi+nnrro8/WVgTpidxX/7cPUr/CX5hzQGbGpoCGhvs4gpoKmuFDl9FteHEwH1A0r3xI727W7MXWYbM9UkdWl094x125ABTUf3SKUk/ORSrmtoFyPEMq5qlMPWQD0yRcK1B07p/YZEizP57Uey/5b7oeSfKGcwzrLzuHky/l7XWlv6MNCLSeT2WWzVX5eNX78PgSMZf339m4mEKY+TiD3dltK2qS0UMDFfmjXsLv4wbN/uW3+MPFKufmjE1xeSXND8pwcZR4nZrOD3VUpN0lf/OQBeziBrE43dfhzftQPN2U/Zjd5TtZZTaeTx+VlA8P75rTVyN+rdzVBcjgrcSxm1pfzuRKQHoxkbvvkXE1A7bFzcoZoUYJage3moRihrcEvyZmih2IwzdHbO6Smn/LkTNKSW2NfyCzdj6mgdaGcWoNHG3v1TgIH0wEtT17w/9gzl+Q4YSiKBsECELAAQfcCBJUFgM3+15TKIHXdHCHxUccTv1HaLsPV/T3ZidiTUtD6evNhmDwVQzl46HtJ9mpTJX0qQjBzg5I7Kzxx8oDrxgVWuh2byrYbQiEfcJ6UnXQa2wbvdqv9O+E/JI8bBZ7zeeGJ07iI7culCV/tNCvp6K1H5PFCNFNSdj6TbyRKTQeJbIOznxV+guwRjcw2Q0YoY0grmZpeovCPM7LT81T9affmw0MHZFOvTBu0dJCddCoQuCfvDO7Jih+vTeTKR+1J2cvVv6i+MUF8Hq/KOz5X3KR//Y2WfPX5Il4DmNHhD4vQOSp8+ve7CT4CJYAZB0ox6HuiSOCU7Hza0gLmGaBjt5+kAQYlcMoeVqey/izM19u0CIWjkBI2QOxK9+L2pWbS0/PlCUX3kiTQA5lhWCaPdVzZlzo8Op0HoWw8rqQpaU8+inSO9vg0JJQkUFeP5bP/eQWdNGd6ZhCqCo0BiR8DViedpT03noRSeBg02vKQXRTCnBeUL63bE35gcNKnoOx9e0F1ltPYQPg9ZWM4jYPsJEKVdD7z5mtPPR1eDdzxb6rkycNoz08LXeB/SOsiZA8oeQS1tFdG2DpWvd5N3Ok2NR9I0Xk6SaidITw4Q5Ci9vzywL6+SCe7qWgofNiD4A/LXYdVikTnVUKZpPIDYoJfeRXLHeYpOtB5ndB+RgTC3ePxTy13aCLZRedVQin8bxcJkgO1OlGwlUrrReflwdNERgrNFIqRJCEDxQ2ctYSHuYJBEs6gc/UEyr7cwNnh2AmDTvoGYyRFArIbe2dmPA8GBW1yKmIEe1bduYtS8tq0zKRDOJlyE4nR00P2iyliNRUtGjQYJBe729Oe1t1KEZNkLAwqAOANOCeH5a6n3pCdSbIuaNASOCO+xXIv2pspovBjjRcJGItJXxZsHrOfb+4iCl81UisSpAnw8XH1aKXL5UnhS4sgBI3od+3AnzZ6+O3RkR0ZIU7jES99lBqyp9J+c2YZlA5j4F0q7tVMe/YZcDY0aDWfxemDMbJest8fGRTS7SZmYty1jdCeJgtOp9NjIzHwj80X8XGVLK1aKcPUvNutKZwkmWeU45csODulk9rRintmoGeWOYM9aVDTIAvByBCnCcVdRqoy4XQKUjjwxMn65BFLm8WeNOjiKR4r3Qex0zIquj4TzkZBQhjCGht6gbusqP/pn2v0YASemXH07BDc7qNilGm8+k6sEIVgE2dAiSVPjLjiTSeXJXAeqaXMMVKQSsvUsujjOCt5vMsUIwZp8XgdRX4E1xF/JzZNpm3EjdS7Azgn4ER9yu2KUZZRQtMFOkXX0RO1ZDLidHo0YstSP4JTh64y4pwllWowjVNfQfHKREVGnLWsHyp64ARynE+hHDPibFUlKvpTOOkXm72WVEyWPmNqvJzAdfSJ+lwy4ux0Y2TRl8M2NQZrEz2h5WZzjjyVXEhlDGclnI3qM994ZVR75QrOWTWfvT5VoKNeE8M5+fR6L9rs9akCHesITsEiTtqlqN+Bs9bDZTT1zmmckqZ4C85Wwc2Ec3wHzuogzv1rndfafAfOdvu3sPIazidw9llxNio9LEBelKcD16XFvxNnlx3nkhVnp6UcuYCmca7/C6feeA0nrkvvwan/6c6F0+Yd4TzA5/DdOH8dwTn84PzB+Ye9s8ttHIaBsGDlAEacA6jZCwhGDmBs7n+nfSuxGcWj0dKxtOhTWxQJaJPUL/nNj50/dnZn5yjjfEfzZrOdH1yH4Pw+xrruP1knd7zvyBX7uO2QfRzY2ee+eGH7Yt3O+ZBzBi877XzpEDs3+/I2O/EcbO7tHKzfc8Xxz2k7O/dO3M54xELkhnbm9wUNw9zLDHHPNQ10b/iLHoQdfw/L74vPu9fO+/faY9QJrMROmDg/WXcB07v9eV4dyyLWsWCZarkuyDPh5bqg+jqrdH6dVYd1axHs3K8DDIfXAdrqM5I6wHPqKhetrlKoU/VNpG//VNWpKnW/vjPSptX9VtdRfyXfAIVeNlJHLdSlewboDdKI1qWHtarO/+oWoHqd/72+byJ+sm8iwnSk9KE4Bqg9tNCHAu2Gx/f1LLZerO/rmbLQJ+Uzxc9Sn9SUhuo7I318FqBOjud9fHfIGKkv0mVkauyLtJ+8z9TL8eaZuj7T+0442GP69+1eLZSKaI7pNRAH64NmfeUwiPyjnd9fKPWVI5aj1z79ctxiHjpxD5KNSkXWT4T+8cE4EozLYY735XLMApdD5Jw4ZFIwt6uckymTAIU30P5C5yI3ZqPcGPuVB+jFjcNj4DYMT0h3hhLCfYsr16iMogoTGMM4UeiTr8WBE4XEtcu2g3teT+ZupTfcrTukkcIxwymkyU7AH2ocsylzLpwlaXvKzzB0UC7clNg/zfFunL1Q5uxttSi9ANxCYPL6cwstsHaJlK0cyOzOgXwSDmQ1V/M3QHSbUglQujpXE/Gg4Hij6DZ6PgH+sOT2siH8MZD7urRxXxd4nUW3g2PbObo5NOT8NThwdDUu8RJ09Ost4+vUucRoZ6zkPEc9OOMe5zmBGQT87MvNTo3c7DW7ccgvipk6h5xy3VPATDI0u2Rogg9DFpnbIb3dOPmRmenGyedk8sfzb92B3Kg7EG0cxSyKBOsu6ziEVwmWx1szX8VebkHScWjXxTDP81dqglempyHpYgysMxIT020Bz4PGKVoJXodn527318GJq+ngBFcdHF1XyPZHT1lX6OmgK0R1mh7uOk0b02ly0b0KoLjFdK+Ci+5VIPJxFvY2D0k6YhnE6IreM8O9dNniObpssUXnLh2nc5fadQO3SnlDLi/40HQDdR1GiFE+PK1/qjuj3MZhGAoG8Q32BIXkAwhmLtDA9z/TwgGSt+vIndhPQRV+trE4HNJ20x+22cMoDN5rea109A8M6VgZ45H3WmZjT6g0KL71hqwWr0JWjaE9oR+/d/Vj9thae4HnXNY/tPYC23uWT5t7luf02LM8fm/uWR6cPcv+3up4dW/1aO2t5j3gWjhu7QG/GHvAQSgsHIeAdeeg01j7f3n7nvpz9vb+a0SPxngt9t5/FiopRzHnYqz9J6EFhmwH5nPNqJM59XhrA3qZMx8uTm48l3wBUMTU2eBqp1AfdNQVrNMXKtDrTswK0nm3Tl1aPa5W0KxnDMZQxTylry3FfCKeJ9C5vPwWqmJOiRrKjefOn4Z6dq5Ip7InFsrNGEbuvT7Fh7JOFvq1ZSoXlFlXdCadLJQPlSxh1CklE0pHnfSXgZpUJ9l0Oiy/27wuV+GBjU5Q+XWaa6xRhxhVQSUJ2KDQfcidF+m4oKa4w0akeX52yWUrB4b+lOOnnSKmeR0pflKR+SVTD77pEny7iindEfNqDKhmvovg8yCBAoaT/bBQHlEOvgFYDwtlDxzQF5xOFgqgHqapk69JqbTHlE5/hJTFxUwFMzovJYG2xOSELJRBfUzOx0Ihl4EJ6XyhDMqYnM1/NjEoY/rPJL5WGePAyzIXcHJUaPkp6X7M7UyGTpjtadVE7nnmRE1uJc4MVUEeI0IktWa9OqUBJWHX2UNQfqWAesiG23nqZw6kzEYOu/PCSFG2jUs598y955k0V1CHmIASTDTsvKwtrBEPxBuj5hLP9yPAiNytI165ELresvOSGCnd1Rb/cI72JXOz2o9otyevqu63U48p6vzYYTmxf8z7l7eO7yGBRmvMdMPsHVS3etf1q+yuQf/F7BgUMH3Q+ATMG2g3p1CKLs7ACPuBPwFmuzdTsd7AzW5GzhTGxdtVdgSKU9N8SMt7CuxB6bHqfKX7SMOQaSrN5S2fbq9UuYFyt/32pPFKx9/dchZF//aIWy3l9OsR0wIS9SpiuhnvI4aFZmENaRtiYexE5X/m0nNEX5AaxYfExW1Lxr+rMEkUsuAcBgAAAABJRU5ErkJggg==);
    background-size: 100% 100%;
    width: 334px;
    height: 334px;
    content: "";
    top: 320px;
    right: -129px;
    pointer-events: none
}

.a-t-3 .container-login .top-info {
    position: relative
}

.a-t-3 .container-login .top-info .top-tools {
    height: 42px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 11px 14px
}

.a-t-3 .container-login .login-content .login-tools {
    margin-top: 32px
}

.a-t-3 .container-login .login-content .login-rules {
    position: fixed;
    bottom: var(--mg);
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.a-t-3 .container-form {
    border: 1px solid rgba(255, 255, 255, .2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    margin: var(--mg) auto 0;
    padding: var(--padding);
    border-radius: 30px
}

.a-t-3 .container-card-info {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px
}

.a-t-3 .container-card-info .label {
    color: var(--text-gray)
}

.a-t-3 .container-card-info .value {
    font-size: 14px;
    color: var(--btn-text)
}

.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 .second-wrap {
    padding-top: 46px;
    padding-bottom: 46px
}

.a-t-3 .bg-wrap {
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto
}

.a-t-3 .nav-bar-wrap {
    overflow: hidden
}

.a-t-3 .nav-bar-wrap:before {
    content: "";
    background: #344e4f;
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    pointer-events: none
}

.a-t-3 .navigation-content {
    background: #004b50 !important
}

.a-t-4 {
    --radius: 8px;
    --btn-radius: 38px;
    --card-radius: 8px;
    --padding: 30px;
    --mg: 12px;
    --tabbar-height: 70px;
    --navbar-height: 61px;
    --bg-card: rgba(255, 255, 255, .1);
    --bg-weight: hsla(0, 0%, 100%, .08);
    --btn-text: #fff;
    --border-color: rgba(255, 255, 255, .2);
    --text-gray: #f1f1f1;
    --text-gray6: hsla(0, 0%, 100%, .5);
    --btn-bg2: linear-gradient(113.99deg, #114fee 6.12%, #b654fd 83.22%);
    --van-image-placeholder-background: hsla(0, 0%, 100%, .1)
}

.a-t-4 .base-logo {
    width: 70px;
    height: 70px
}

.a-t-4 .base-lang-wrap {
    padding: 0
}

.a-t-4 .base-input {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px
}

.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: 48px;
    border-radius: 8px;
    background: var(--bg-input);
    border: 1px solid hsla(0, 0%, 100%, .2);
    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: 100%;
    margin: 0 auto;
    font-size: 16px;
    height: 44px;
    border-radius: var(--radius)
}

.a-t-4 .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;
    font-weight: 700;
    color: var(--btn-text)
}

.a-t-4 .base-user-tab {
    position: relative;
    min-height: 40px;
    padding: 4px;
    margin: 12px 0;
    gap: 10px
}

.a-t-4 .base-user-tab .tab-item {
    color: var(--btn-text);
    background: var(--bg-card);
    border-radius: var(--radius);
    text-align: center;
    font-size: 14px
}

.a-t-4 .base-user-tab .tab-item.active {
    background: #fff;
    color: #0f0f0f;
    font-weight: 700
}

.a-t-4 .container-login {
    background: url(/assets/login-bg-CSGb-KAz.jpeg) no-repeat top;
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto;
    padding-bottom: 20px
}

.a-t-4 .container-login .top-info {
    position: relative
}

.a-t-4 .container-login .top-info .top-tools {
    height: 42px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 11px 14px
}

.a-t-4 .container-login .login-content {
    background: var(--bg-card);
    margin: 0 var(--mg);
    padding: var(--mg);
    border-radius: var(--card-radius)
}

.a-t-4 .container-login .login-content .login-tools {
    margin-top: 32px
}

.a-t-4 .container-form {
    background: transparent;
    padding: 0 var(--mg)
}

.a-t-4 .container-card-info {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px
}

.a-t-4 .container-card-info .label {
    color: var(--text-gray)
}

.a-t-4 .container-card-info .value {
    font-size: 14px;
    color: var(--btn-text)
}

.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 .second-wrap {
    padding-top: 46px;
    padding-bottom: 46px
}

.a-t-4 .bg-wrap {
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto;
    padding-top: calc(var(--navbar-height))
}

.a-t-4 .nav-bar-wrap {
    overflow: hidden;
    border-bottom: 1px solid var(--border-color)
}

.a-t-4 .nav-bar-wrap:before {
    content: "";
    background: var(--bg-tab);
    background-size: cover;
    pointer-events: none
}

.a-t-4 .navigation-content {
    background: var(--bg-tab);
    border-bottom: 1px solid var(--border-color)
}

.a-t-4 .tab-bar-wrap .tab-bar {
    background: var(--bg-tab);
    border-top: 1px solid var(--border-color)
}

.a-t-5 {
    --radius: 12px;
    --btn-radius: 38px;
    --card-radius: 15px;
    --padding: 30px;
    --mg: 20px;
    --tabbar-height: 70px;
    --navbar-height: 80px;
    --bg-card: #0c071a;
    --bg-weight: #141329;
    --btn-text: #fff;
    --border-color: rgba(170, 114, 206, .12);
    --border-color2: #362f4f;
    --border-color3: #353554;
    --text-gray: #9093ab;
    --text-gray6: #8e88a4;
    --btn-bg2: linear-gradient( to right, rgb(138 88 164) 10%, rgba(114, 113, 185, 1) 95%);
    --van-image-placeholder-background: hsla(0, 0%, 100%, .1)
}

.a-t-5 .base-logo {
    width: 70px;
    height: 70px
}

.a-t-5 .base-lang-wrap {
    padding: 0
}

.a-t-5 .base-input {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px
}

.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: 48px;
    border-radius: var(--card-radius);
    background: var(--bg-card);
    border: 2px solid var(--border-color2);
    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-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-5 .base-alarm-logo-btn .alarm-icon {
    width: 20px;
    height: 20px
}

.a-t-5 .base-main-btn {
    position: relative;
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
    height: 44px;
    border-radius: var(--radius)
}

.a-t-5 .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;
    font-weight: 700;
    color: var(--btn-text)
}

.a-t-5 .base-user-tab {
    position: relative;
    border-bottom: 2px solid rgba(170, 114, 206, .12);
    min-height: 40px;
    padding: 4px;
    margin-bottom: 20px
}

.a-t-5 .base-user-tab .tab-item {
    color: var(--btn-text);
    text-align: center;
    font-size: 14px;
    font-weight: 700 !important
}

.a-t-5 .base-user-tab .tab-item.active {
    position: relative;
    color: var(--primary);
    background: transparent
}

.a-t-5 .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-5 .container-login {
    background: linear-gradient(to right, #141329 10%, #1c112a 95%);
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto;
    padding-bottom: 20px
}

.a-t-5 .container-login .top-info {
    position: relative
}

.a-t-5 .container-login .top-info .top-tools {
    height: 42px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 11px 14px
}

.a-t-5 .container-login .login-content .login-tools {
    margin-top: 32px
}

.a-t-5 .container-login .login-content .login-rules {
    position: fixed;
    bottom: var(--mg);
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.a-t-5 .container-form {
    background: transparent;
    padding: 0 var(--mg)
}

.a-t-5 .container-card {
    border-radius: var(--card-radius) !important
}

.a-t-5 .container-card-info {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px
}

.a-t-5 .container-card-info .label {
    color: var(--text-gray)
}

.a-t-5 .container-card-info .value {
    font-size: 14px;
    color: var(--btn-text)
}

.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 .second-wrap {
    padding-top: 65px;
    padding-bottom: 46px
}

.a-t-5 .bg-wrap {
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto
}

.a-t-5 .nav-bar-wrap {
    overflow: hidden
}

.a-t-5 .nav-bar-wrap:before {
    content: "";
    background: var(--bg);
    height: 100%;
    pointer-events: none
}

.a-t-5 .navigation-content {
    border-bottom: 1px soild var(--border-color)
}

.a-t-6 {
    --radius: 4px;
    --btn-radius: 4px;
    --card-radius: 15px;
    --padding: 30px;
    --mg: 16px;
    --tabbar-height: 70px;
    --navbar-height: 80px;
    --bg-card: #000;
    --bg-weight: rgba(0, 0, 0, .7);
    --bg3: linear-gradient(180deg, #29a869 .66%, #16181d 99.34%);
    --btn-text: #fff;
    --border-color: #fff;
    --border-color2: #19d076;
    --border-color3: #353554;
    --text-gray: hsla(0, 0%, 100%, .6);
    --text-gray6: #60eea8;
    --btn-bg2: var(--primary);
    --van-image-placeholder-background: hsla(0, 0%, 100%, .1)
}

.a-t-6 .base-logo {
    width: 70px;
    height: 70px
}

.a-t-6 .base-lang-wrap {
    padding: 0
}

.a-t-6 .base-input {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px
}

.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: 48px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color2);
    position: relative;
    display: flex;
    align-items: center
}

.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%;
    font-weight: 700;
    background: #ffffff4d
}

.a-t-6 .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-6 .base-alarm-logo-btn .alarm-icon {
    width: 20px;
    height: 20px
}

.a-t-6 .base-main-btn {
    position: relative;
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
    height: 44px;
    border-radius: var(--btn-radius)
}

.a-t-6 .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-6 .base-user-tab {
    position: relative;
    border-bottom: 2px solid rgba(170, 114, 206, .12);
    min-height: 40px;
    padding: 4px;
    margin-bottom: 20px
}

.a-t-6 .base-user-tab .tab-item {
    color: var(--btn-text);
    text-align: center;
    font-size: 14px;
    font-weight: 700 !important
}

.a-t-6 .base-user-tab .tab-item.active {
    position: relative;
    color: var(--primary);
    background: transparent
}

.a-t-6 .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-6 .container-login {
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto;
    padding-bottom: 20px
}

.a-t-6 .container-login .top-info {
    position: relative
}

.a-t-6 .container-login .top-info .top-tools {
    height: 42px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 11px 14px
}

.a-t-6 .container-login .login-content .login-tools {
    margin-top: 32px
}

.a-t-6 .container-login .login-content .login-rules {
    position: fixed;
    bottom: var(--mg);
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.a-t-6 .container-form {
    background: transparent;
    padding: 0 var(--mg)
}

.a-t-6 .container-card {
    border-radius: var(--card-radius) !important
}

.a-t-6 .container-card-info {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px
}

.a-t-6 .container-card-info .label {
    color: var(--text-gray)
}

.a-t-6 .container-card-info .value {
    font-size: 14px;
    color: var(--btn-text)
}

.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 .second-wrap {
    padding-top: 65px;
    padding-bottom: 46px
}

.a-t-6 .bg-wrap {
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto
}

.a-t-6 .nav-bar-wrap {
    overflow: hidden
}

.a-t-6 .nav-bar-wrap:before {
    content: "";
    background: var(--bg);
    height: 100%;
    pointer-events: none
}

.a-t-6 .navigation-content {
    border-bottom: 1px soild var(--border-color)
}



#app.a-t-6.no-2 {
    background: var(--bg) url(/assets/bg2-CzaikUoL.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-6.no-3 {
    background: var(--bg) url(/assets/bg3-Cp_k95BQ.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-6.no-4 {
    background: var(--bg) url(/assets/bg4-uogV1dVe.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-6.no-5 {
    background: var(--bg) url(/assets/bg5-DGUeXbGd.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-6.no-6 {
    background: var(--bg) url(/assets/bg6-Ch8Yt8SU.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-6.no-7 {
    background: var(--bg) url(/assets/bg7-ylG9Z1UW.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-6.no-8 {
    background: var(--bg) url(/assets/bg8-DNyBwh1Y.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-6.no-9 {
    background: url(/assets/bg9-DAWLbKEt.png);
    background-size: 100% 100%;
    background-attachment: fixed !important
}

#app.a-t-6.no-10 {
    background: var(--bg) url(/assets/bg10-DSAXehj2.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-6.no-11 {
    background: url(/assets/bg11-Ds0C8KY0.png);
    background-size: 100% 100%;
    background-attachment: fixed !important
}

#app.a-t-6.no-12 {
    background: var(--bg) url(/assets/bg12-CFZHmxSV.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-6.no-13 {
    background: var(--bg) url(/assets/bg13-CtId3XDk.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-6.no-14 {
    background: var(--bg) url(/assets/bg14-CvO0Fsoy.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-6.no-15 {
    background: var(--bg) url(/assets/bg15-BfYrorY_.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-6.no-16 {
    background: var(--bg) url(/assets/bg16-DNUXKQXB.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-6.no-17 {
    background: var(--bg) url(/assets/bg17-CacYiHHL.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-6.no-18 {
    background: var(--bg) url(/assets/bg18-C2xSzyoB.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-6.no-19 {
    background: var(--bg) url(/assets/bg19-BozZNou0.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-6.no-20 {
    background: url(/assets/bg20-mKK6fGpE.png);
    background-size: 100% 100%;
    background-attachment: fixed !important
}

#app.a-t-6.no-21 {
    background: url(/assets/bg21-Cs3ivd4q.png);
    background-size: 100% 100%;
    background-attachment: fixed !important
}

.a-t-7 {
    --radius: 2px;
    --btn-radius: 2px;
    --card-radius: 2px;
    --padding: 30px;
    --mg: 14px;
    --tabbar-height: 70px;
    --navbar-height: 50px;
    --bg-card: #fff;
    --bg-weight: hsla(0, 0%, 100%, .08);
    --btn-text: #222;
    --border-color: #ebebeb;
    --text-gray: #8f9aae;
    --text-gray6: hsla(0, 0%, 100%, .5);
    --btn-bg2: linear-gradient(113.99deg, #114fee 6.12%, #b654fd 83.22%);
    --van-image-placeholder-background: hsla(0, 0%, 100%, .1)
}

.a-t-7 .base-logo {
    width: 70px;
    height: 70px
}

.a-t-7 .base-lang-wrap {
    padding: 0
}

.a-t-7 .base-input {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px
}

.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: var(--radius);
    background: var(--bg);
    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: 16px;
    height: 44px;
    border-radius: var(--btn-radius)
}

.a-t-7 .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: #020202
}

.a-t-7 .base-user-tab {
    position: relative;
    border-radius: var(--radius);
    min-height: 40px;
    padding: 4px;
    border: 1px solid var(--border-color);
    margin: 12px 0
}

.a-t-7 .base-user-tab .tab-item {
    color: var(--btn-text);
    background: transparent;
    border-radius: var(--radius);
    text-align: center;
    font-size: 14px
}

.a-t-7 .base-user-tab .tab-item.active {
    color: #fff;
    background: #5a43eb
}

.a-t-7 .container-login {
    background: #fff url(/assets/bg_login-D2XaSynl.png) no-repeat top;
    background-size: 100% auto;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto;
    padding-bottom: 20px
}

.a-t-7 .container-login .top-info {
    position: relative
}

.a-t-7 .container-login .top-info .top-tools {
    height: 42px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 11px 14px
}

.a-t-7 .container-login .login-content .login-tools {
    margin-top: 32px
}

.a-t-7 .container-login .login-content .login-rules {
    position: fixed;
    bottom: var(--mg);
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.a-t-7 .container-form {
    background: transparent;
    padding: 0 var(--mg)
}

.a-t-7 .container-card {
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    background: var(--bg-card)
}

.a-t-7 .container-card-info {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px
}

.a-t-7 .container-card-info .label {
    color: var(--text-gray)
}

.a-t-7 .container-card-info .value {
    font-size: 14px;
    color: var(--btn-text)
}

.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 .second-wrap {
    padding-top: 46px;
    padding-bottom: 46px
}

.a-t-7 .bg-wrap {
    background: url(/assets/bg_1-BljEl3gm.png) no-repeat top;
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto
}

.a-t-7 .tab-bar {
    border-top: 1px solid var(--border-color)
}

.a-t-7 .nav-bar-wrap {
    overflow: hidden
}

.a-t-7 .nav-bar-wrap:before {
    content: "";
    background: url(/assets/bg_1-BljEl3gm.png) no-repeat top;
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    pointer-events: none
}

.a-t-7 .navigation-content {
    background: var(--text-white) !important
}

.a-t-7 .lang-wrap,
.a-t-7 .help-wrap,
.a-t-7 .article-wrap,
.a-t-7 .announceDetail-wrap {
    background: transparent !important
}

.a-t-8 {
    --radius: 2px;
    --btn-radius: 2px;
    --card-radius: 2px;
    --padding: 30px;
    --mg: 14px;
    --tabbar-height: 70px;
    --navbar-height: 50px;
    --bg-card: #fff;
    --bg-weight: hsla(0, 0%, 100%, .08);
    --btn-text: #222;
    --border-color: #ebebeb;
    --text-gray: #8f9aae;
    --text-gray6: hsla(0, 0%, 100%, .5);
    --btn-bg2: linear-gradient(113.99deg, #114fee 6.12%, #b654fd 83.22%);
    --van-image-placeholder-background: hsla(0, 0%, 100%, .1)
}

.a-t-8 .base-logo {
    width: 70px;
    height: 70px
}

.a-t-8 .base-lang-wrap {
    padding: 0
}

.a-t-8 .base-input {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px
}

.a-t-8 .base-input.is-textarea .input-box {
    padding: 16px;
    min-height: 52px;
    height: auto
}

.a-t-8 .base-input .label {
    margin-bottom: 12px
}

.a-t-8 .base-input .input-box {
    padding: 0 16px;
    box-sizing: border-box;
    min-height: 52px;
    border-radius: var(--radius);
    background: var(--bg);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    align-items: center
}

.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: 100%;
    margin: 0 auto;
    font-size: 16px;
    height: 44px;
    border-radius: var(--btn-radius)
}

.a-t-8 .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: #020202
}

.a-t-8 .base-user-tab {
    position: relative;
    border-radius: var(--radius);
    min-height: 40px;
    padding: 4px;
    border: 1px solid var(--border-color);
    margin: 12px 0
}

.a-t-8 .base-user-tab .tab-item {
    color: var(--btn-text);
    background: transparent;
    border-radius: var(--radius);
    text-align: center;
    font-size: 14px
}

.a-t-8 .base-user-tab .tab-item.active {
    color: #fff;
    background: #5a43eb
}

.a-t-8 .container-login {
    background: #fff url(/assets/bg_login-D2XaSynl.png) no-repeat top;
    background-size: 100% auto;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto;
    padding-bottom: 20px
}

.a-t-8 .container-login .top-info {
    position: relative
}

.a-t-8 .container-login .top-info .top-tools {
    height: 42px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 11px 14px
}

.a-t-8 .container-login .login-content .login-tools {
    margin-top: 32px
}

.a-t-8 .container-login .login-content .login-rules {
    position: fixed;
    bottom: var(--mg);
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.a-t-8 .container-form {
    background: transparent;
    padding: 0 var(--mg)
}

.a-t-8 .container-card {
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    background: var(--bg-card)
}

.a-t-8 .container-card-info {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px
}

.a-t-8 .container-card-info .label {
    color: var(--text-gray)
}

.a-t-8 .container-card-info .value {
    font-size: 14px;
    color: var(--btn-text)
}

.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 .second-wrap {
    padding-top: 46px;
    padding-bottom: 46px
}

.a-t-8 .bg-wrap {
    background: url(/assets/bg_1-BljEl3gm.png) no-repeat top;
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto
}

.a-t-8 .tab-bar {
    border-top: 1px solid var(--border-color)
}

.a-t-8 .nav-bar-wrap {
    overflow: hidden
}

.a-t-8 .nav-bar-wrap:before {
    content: "";
    background: url(/assets/bg_1-BljEl3gm.png) no-repeat top;
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    pointer-events: none
}

.a-t-8 .navigation-content {
    background: var(--text-white) !important
}

.a-t-8 .lang-wrap,
.a-t-8 .help-wrap,
.a-t-8 .article-wrap,
.a-t-8 .announceDetail-wrap {
    background: transparent !important
}

.a-t-9 {
    --radius: 8px;
    --btn-radius: 38px;
    --card-radius: 8px;
    --padding: 30px;
    --mg: 14px;
    --tabbar-height: 70px;
    --navbar-height: 50px;
    --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-text: #fff;
    --border-color: hsla(0, 0%, 100%, .08);
    --text-gray: hsla(0, 0%, 100%, .6);
    --text-gray6: hsla(0, 0%, 100%, .5);
    --btn-bg2: linear-gradient(113.99deg, #114fee 6.12%, #b654fd 83.22%);
    --van-image-placeholder-background: hsla(0, 0%, 100%, .1);
    --notice-bg: transparent
}

.a-t-9 .base-logo {
    width: 70px;
    height: 70px
}

.a-t-9 .base-lang-wrap {
    padding: 0
}

.a-t-9 .base-help-btn {
    background-color: var(--bg-weight);
    padding: 4px 10px;
    border-radius: 4px
}

.a-t-9 .base-input {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px
}

.a-t-9 .base-input.is-textarea .input-box {
    padding: 16px;
    min-height: 52px;
    height: auto
}

.a-t-9 .base-input .label {
    margin-bottom: 12px
}

.a-t-9 .base-input .input-box {
    padding: 0 16px;
    box-sizing: border-box;
    min-height: 48px;
    border-radius: 8px;
    background: var(--bg-input);
    border: 1px solid hsla(0, 0%, 100%, .2);
    position: relative;
    display: flex;
    align-items: center
}

.a-t-9 .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-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: 44px;
    border-radius: 40px
}

.a-t-9 .base-main-btn-content {
    border-radius: 40px;
    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(--btn-text)
}

.a-t-9 .base-user-tab {
    position: relative;
    border-radius: 40px;
    border: 1px solid hsla(0, 0%, 100%, .1);
    min-height: 40px;
    padding: 4px;
    margin: 12px 0
}

.a-t-9 .base-user-tab .tab-item {
    color: var(--btn-text);
    background: transparent;
    border-radius: 40px;
    text-align: center;
    font-size: 14px
}

.a-t-9 .base-user-tab .tab-item.active {
    background: linear-gradient(90deg, #1b5bff, #c029ff)
}

.a-t-9 .container-login {
    background: url(/assets/login-bg-D4AlTixt.avif) no-repeat top;
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto;
    padding-bottom: 20px
}

.a-t-9 .container-login .top-info {
    position: relative
}

.a-t-9 .container-login .top-info .top-tools {
    height: 42px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 11px 14px
}

.a-t-9 .container-login .login-content {
    margin: 0 var(--mg)
}

.a-t-9 .container-login .login-content .login-tools {
    margin-top: 32px
}

.a-t-9 .container-login .login-content .login-rules {
    position: fixed;
    bottom: var(--mg);
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.a-t-9 .container-form {
    background: transparent;
    padding: var(--mg) 20px
}

.a-t-9 .container-card-info {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px
}

.a-t-9 .container-card-info .label {
    color: var(--text-gray)
}

.a-t-9 .container-card-info .value {
    font-size: 14px;
    color: var(--btn-text)
}

.a-t-9 .small-logo {
    width: 100%;
    height: 30px;
    display: flex
}

.a-t-9 .small-logo .site-img {
    width: 30px;
    height: 30px
}

.a-t-9 .small-logo .site-name {
    font-size: 14px
}

.a-t-9 .second-wrap {
    padding-top: 46px;
    padding-bottom: 46px
}

.a-t-9 .bg-wrap {
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto
}

.a-t-9 .nav-bar-wrap {
    overflow: hidden
}

.a-t-9 .nav-bar-wrap:before {
    content: "";
    background: var(--bg);
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    pointer-events: none
}

.a-t-9 .navigation-content {
    background: var(--bg) !important
}

.light:has(.a-t-9) {
    --primary: #c029ff;
    --bg: #fff !important;
    --bg-tab: transparent;
    --bg-tabbar: #f7f7f7 !important;
    --bg-input: #fff;
    --btn-bg: linear-gradient(113.99deg, #114fee 6.12%, #b654fd 83.22%)
}

.light:has(.a-t-9) .a-t-9 {
    --bg-card: #f7f7f7;
    --bg-weight: hsla(0, 6%, 79%, .416);
    --btn-text: #111840;
    --border-color: #e5e7eb;
    --text-gray: #1c253d;
    --text-gray6: hsla(0, 0%, 100%, .5);
    --bg-input: #fff;
    --btn-bg2: linear-gradient(113.99deg, #114fee 6.12%, #b654fd 83.22%);
    --van-image-placeholder-background: hsla(0, 0%, 100%, .1);
    --notice-bg: var(--bg-card)
}

.light:has(.a-t-9) .a-t-9 .base-lang-wrap {
    background: var(--bg-card) !important
}

.light:has(.a-t-9) .a-t-9 .base-main-btn-content {
    color: #fff
}

.light:has(.a-t-9) .a-t-9 .base-user-tab .active {
    color: #fff
}

.light:has(.a-t-9) .a-t-9 .container-card {
    background: var(--bg-card)
}

.light:has(.a-t-9) .a-t-9 .container-login {
    --bg-input: transparent;
    --text-gray: hsla(0, 0%, 100%, .6);
    --btn-text: #fff;
    color: #fff
}

.light:has(.a-t-9) .a-t-9 .container-login .base-user-tab .tab-item {
    color: #fff
}

.light:has(.a-t-9) .a-t-9 .bg-wrap {
    background: transparent
}

.light:has(.a-t-9) .a-t-9 .nav-bar-wrap:before {
    background: transparent
}

.light:has(.a-t-9) .a-t-9 .nav-bar-wrap.is-scroll-state {
    background: var(--bg-card)
}

.light:has(.a-t-9) .a-t-9 .navigation-content {
    background: var(--bg) !important
}

.light:has(.a-t-9) .a-t-9 #tabItem.active {
    color: var(--btn-text)
}

.a-t-10 {
    --radius: 4px;
    --btn-radius: 4px;
    --card-radius: 15px;
    --padding: 30px;
    --mg: 16px;
    --tabbar-height: 70px;
    --navbar-height: 80px;
    --bg-card: #000;
    --bg-weight: rgba(0, 0, 0, .7);
    --bg3: linear-gradient(180deg, #29a869 .66%, #16181d 99.34%);
    --btn-text: #fff;
    --border-color: #fff;
    --border-color2: #19d076;
    --border-color3: #353554;
    --text-gray: hsla(0, 0%, 100%, .6);
    --text-gray6: #60eea8;
    --btn-bg2: var(--primary);
    --van-image-placeholder-background: hsla(0, 0%, 100%, .1)
}

.a-t-10 .base-logo {
    width: 70px;
    height: 70px
}

.a-t-10 .base-lang-wrap {
    padding: 0
}

.a-t-10 .base-input {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px
}

.a-t-10 .base-input.is-textarea .input-box {
    padding: 16px;
    min-height: 52px;
    height: auto
}

.a-t-10 .base-input .label {
    margin-bottom: 12px
}

.a-t-10 .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-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%;
    font-weight: 700;
    background: #ffffff4d
}

.a-t-10 .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-10 .base-alarm-logo-btn .alarm-icon {
    width: 20px;
    height: 20px
}

.a-t-10 .base-main-btn {
    position: relative;
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
    height: 44px;
    border-radius: var(--btn-radius)
}

.a-t-10 .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-10 .base-user-tab {
    position: relative;
    border-bottom: 2px solid rgba(170, 114, 206, .12);
    min-height: 40px;
    padding: 4px;
    margin-bottom: 20px
}

.a-t-10 .base-user-tab .tab-item {
    color: var(--btn-text);
    text-align: center;
    font-size: 14px;
    font-weight: 700 !important
}

.a-t-10 .base-user-tab .tab-item.active {
    position: relative;
    color: var(--primary);
    background: transparent
}

.a-t-10 .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-10 .container-login {
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto;
    padding-bottom: 20px
}

.a-t-10 .container-login .top-info {
    position: relative
}

.a-t-10 .container-login .top-info .top-tools {
    height: 42px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 11px 14px
}

.a-t-10 .container-login .login-content .login-tools {
    margin-top: 32px
}

.a-t-10 .container-login .login-content .login-rules {
    position: fixed;
    bottom: var(--mg);
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.a-t-10 .container-form {
    background: transparent;
    padding: 0 var(--mg)
}

.a-t-10 .container-card {
    border-radius: var(--card-radius) !important
}

.a-t-10 .container-card-info {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px
}

.a-t-10 .container-card-info .label {
    color: var(--text-gray)
}

.a-t-10 .container-card-info .value {
    font-size: 14px;
    color: var(--btn-text)
}

.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 .second-wrap {
    padding-top: 65px;
    padding-bottom: 46px
}

.a-t-10 .bg-wrap {
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto
}

.a-t-10 .nav-bar-wrap {
    overflow: hidden
}

.a-t-10 .nav-bar-wrap:before {
    content: "";
    background: var(--bg);
    height: 100%;
    pointer-events: none
}

.a-t-10 .navigation-content {
    border-bottom: 1px soild var(--border-color)
}



#app.a-t-10.no-2 {
    background: var(--bg) url(/assets/bg2-CzaikUoL.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-10.no-3 {
    background: var(--bg) url(/assets/bg3-Cp_k95BQ.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-10.no-4 {
    background: var(--bg) url(/assets/bg4-uogV1dVe.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-10.no-5 {
    background: var(--bg) url(/assets/bg5-DGUeXbGd.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-10.no-6 {
    background: var(--bg) url(/assets/bg6-Ch8Yt8SU.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-10.no-7 {
    background: var(--bg) url(/assets/bg7-ylG9Z1UW.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-10.no-8 {
    background: var(--bg) url(/assets/bg8-DNyBwh1Y.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-10.no-9 {
    background: url(/assets/bg9-DAWLbKEt.png);
    background-size: 100% 100%;
    background-attachment: fixed !important
}

#app.a-t-10.no-10 {
    background: var(--bg) url(/assets/bg10-DSAXehj2.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-10.no-11 {
    background: url(/assets/bg11-Ds0C8KY0.png);
    background-size: 100% 100%;
    background-attachment: fixed !important
}

#app.a-t-10.no-12 {
    background: var(--bg) url(/assets/bg12-CFZHmxSV.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-10.no-13 {
    background: var(--bg) url(/assets/bg13-CtId3XDk.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-10.no-14 {
    background: var(--bg) url(/assets/bg14-CvO0Fsoy.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-10.no-15 {
    background: var(--bg) url(/assets/bg15-BfYrorY_.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-10.no-16 {
    background: var(--bg) url(/assets/bg16-DNUXKQXB.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-10.no-17 {
    background: var(--bg) url(/assets/bg17-CacYiHHL.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-10.no-18 {
    background: var(--bg) url(/assets/bg18-C2xSzyoB.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-10.no-19 {
    background: var(--bg) url(/assets/bg19-BozZNou0.jpeg) no-repeat top !important;
    background-attachment: fixed !important
}

#app.a-t-10.no-20 {
    background: url(/assets/bg20-mKK6fGpE.png);
    background-size: 100% 100%;
    background-attachment: fixed !important
}

#app.a-t-10.no-21 {
    background: url(/assets/bg21-Cs3ivd4q.png);
    background-size: 100% 100%;
    background-attachment: fixed !important
}

.a-t-11 {
    --radius: 2px;
    --btn-radius: 2px;
    --card-radius: 8px;
    --padding: 30px;
    --mg: 14px;
    --tabbar-height: 70px;
    --navbar-height: 50px;
    --bg-card: #fff;
    --bg-weight: hsla(0, 0%, 100%, .08);
    --btn-text: #222;
    --border-color: #ebebeb;
    --text-gray: #8f9aae;
    --text-gray6: hsla(0, 0%, 100%, .5);
    --btn-bg2: linear-gradient(113.99deg, #114fee 6.12%, #b654fd 83.22%);
    --van-image-placeholder-background: hsla(0, 0%, 100%, .1)
}

.a-t-11 .base-logo {
    width: 70px;
    height: 70px
}

.a-t-11 .base-lang-wrap {
    padding: 0
}

.a-t-11 .base-input {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px
}

.a-t-11 .base-input.is-textarea .input-box {
    padding: 16px;
    min-height: 52px;
    height: auto
}

.a-t-11 .base-input .label {
    margin-bottom: 12px
}

.a-t-11 .base-input .input-box {
    padding: 0 16px;
    box-sizing: border-box;
    min-height: 52px;
    border-radius: var(--radius);
    background: var(--bg);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    align-items: center
}

.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: 100%;
    margin: 0 auto;
    font-size: 16px;
    height: 44px;
    border-radius: var(--btn-radius)
}

.a-t-11 .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: #fff
}

.a-t-11 .base-user-tab {
    position: relative;
    border-radius: var(--radius);
    min-height: 40px;
    padding: 4px;
    border: 1px solid var(--border-color);
    margin: 12px 0
}

.a-t-11 .base-user-tab .tab-item {
    color: var(--btn-text);
    background: transparent;
    border-radius: var(--radius);
    text-align: center;
    font-size: 14px
}

.a-t-11 .base-user-tab .tab-item.active {
    color: #fff;
    background: var(--primary)
}

.a-t-11 .container-login {
    background: #fff url(/assets/bg_login-D2XaSynl.png) no-repeat top;
    background-size: 100% auto;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto;
    padding-bottom: 20px;
    position: relative
}

.a-t-11 .container-login .top-info {
    position: relative
}

.a-t-11 .container-login .top-info .top-tools {
    height: 42px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 11px 14px
}

.a-t-11 .container-login .login-content .login-tools {
    margin-top: 32px
}

.a-t-11 .container-login .login-content .login-rules {
    margin-top: 20px;
    bottom: var(--mg);
    left: 50%;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.a-t-11 .container-form {
    background: transparent;
    padding: 0 var(--mg)
}

.a-t-11 .container-card {
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    background: var(--bg-card)
}

.a-t-11 .container-card-info {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px
}

.a-t-11 .container-card-info .label {
    color: var(--text-gray)
}

.a-t-11 .container-card-info .value {
    font-size: 14px;
    color: var(--btn-text)
}

.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 .second-wrap {
    padding-top: 46px;
    padding-bottom: 46px
}

.a-t-11 .bg-wrap {
    background: url(/assets/bg-BFRT9cbO.png) no-repeat top;
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto
}

.a-t-11 .tab-bar {
    border-top: 1px solid var(--border-color)
}

.a-t-11 .nav-bar-wrap {
    overflow: hidden
}

.a-t-11 .nav-bar-wrap:before {
    content: "";
    background: url(/assets/bg-BFRT9cbO.png) no-repeat top;
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    pointer-events: none
}

.a-t-11 .navigation-content {
    background: var(--text-white) !important
}

.a-t-11 .lang-wrap,
.a-t-11 .help-wrap,
.a-t-11 .article-wrap,
.a-t-11 .announceDetail-wrap {
    background: transparent !important
}

.a-t-12 {
    --radius: 4px;
    --btn-radius: 16px;
    --card-radius: 15px;
    --padding: 30px;
    --mg: 12px;
    --tabbar-height: 70px;
    --navbar-height: 80px;
    --bg-card: #fff;
    --bg-weight: #fff;
    --bg3: linear-gradient( 226.74deg, rgba(234, 79, 124, 1) 19.02%, rgba(204, 72, 210, 1) 85.93%);
    --btn-text: #000;
    --border-color: #fff;
    --border-color2: var(--primary);
    --border-color3: #353554;
    --text-gray: #5d5d5d;
    --text-gray6: rgba(0, 0, 0, .1);
    --btn-bg2: var(--primary);
    --van-image-placeholder-background: hsla(0, 0%, 100%, .1)
}

.a-t-12 .base-logo {
    width: 70px;
    height: 70px
}

.a-t-12 .base-lang-wrap {
    padding: 0
}

.a-t-12 .base-input {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px
}

.a-t-12 .base-input.is-textarea .input-box {
    padding: 16px;
    min-height: 52px;
    height: auto
}

.a-t-12 .base-input .label {
    margin-bottom: 12px
}

.a-t-12 .base-input .input-box {
    padding: 0 16px;
    box-sizing: border-box;
    min-height: 48px;
    border-radius: var(--card-radius);
    border: 1px solid var(--border-color2);
    position: relative;
    display: flex;
    align-items: center
}

.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%;
    font-weight: 700;
    background: #ffffff4d
}

.a-t-12 .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-12 .base-alarm-logo-btn .alarm-icon {
    width: 20px;
    height: 20px
}

.a-t-12 .base-main-btn {
    position: relative;
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
    height: 44px;
    border-radius: var(--btn-radius)
}

.a-t-12 .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;
    font-weight: 700;
    color: #fff
}

.a-t-12 .base-user-tab {
    position: relative;
    border-bottom: 2px solid rgba(170, 114, 206, .12);
    min-height: 40px;
    padding: 4px;
    margin-bottom: 20px
}

.a-t-12 .base-user-tab .tab-item {
    color: var(--btn-text);
    text-align: center;
    font-size: 14px;
    font-weight: 700 !important
}

.a-t-12 .base-user-tab .tab-item.active {
    position: relative;
    color: var(--primary);
    background: transparent
}

.a-t-12 .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-12 .container-login {
    background: var(--bg);
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto;
    padding-bottom: 20px
}

.a-t-12 .container-login .top-info {
    position: relative
}

.a-t-12 .container-login .top-info .top-tools {
    height: 42px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 11px 14px
}

.a-t-12 .container-login .login-content .login-tools {
    margin-top: 32px
}

.a-t-12 .container-login .login-content .login-rules {
    position: fixed;
    bottom: var(--mg);
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.a-t-12 .container-form {
    background: transparent;
    padding: 0 var(--mg)
}

.a-t-12 .container-card {
    border-radius: var(--card-radius) !important;
    background: var(--bg-card);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px #0000001a
}

.a-t-12 .container-card-info {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px
}

.a-t-12 .container-card-info .label {
    color: var(--text-gray)
}

.a-t-12 .container-card-info .value {
    font-size: 14px;
    color: var(--btn-text)
}

.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 .second-wrap {
    padding-top: 65px;
    padding-bottom: 46px
}

.a-t-12 .bg-wrap {
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto
}

.a-t-12 .nav-bar-wrap {
    overflow: hidden;
    padding: 6px 0
}

.a-t-12 .nav-bar-wrap:before {
    content: "";
    background: var(--bg);
    height: 100%;
    pointer-events: none
}

.a-t-12 .navigation-content {
    border-bottom: 1px soild var(--border-color);
    background: var(--bg) !important
}

.a-t-12 .tab-bar-wrap-12 .tab-bar {
    border-radius: 20px 20px 0 0
}

#app.a-t-12.no-1 {
    background-attachment: fixed !important
}

.a-t-13 {
    --radius: 4px;
    --btn-radius: 40px;
    --card-radius: .5rem;
    --padding: 30px;
    --mg: 16px;
    --tabbar-height: 70px;
    --navbar-height: 80px;
    --bg-card: #0000004d;
    --bg-weight: #0000004d;
    --bg3: linear-gradient(180deg, #29a869 .66%, #16181d 99.34%);
    --btn-text: #fff;
    --border-color: #fff;
    --border-color2: #ffffffcc;
    --border-color3: #353554;
    --text-gray: #ffffff99;
    --text-gray6: #ffffffcc;
    --btn-bg2: var(--primary);
    --van-image-placeholder-background: hsla(0, 0%, 100%, .1)
}

.a-t-13 .base-logo {
    width: 70px;
    height: 70px
}

.a-t-13 .base-lang-wrap {
    padding: 0
}

.a-t-13 .base-input {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px
}

.a-t-13 .base-input.is-textarea .input-box {
    padding: 16px;
    min-height: 52px;
    height: auto
}

.a-t-13 .base-input .label {
    margin-bottom: 12px
}

.a-t-13 .base-input .input-box {
    padding: 0 16px;
    box-sizing: border-box;
    min-height: 48px;
    border-radius: 48px;
    border: 1px solid var(--border-color2);
    position: relative;
    display: flex;
    align-items: center
}

.a-t-13 .base-input .input-box input::placeholder,
.a-t-13 .base-input .input-box textarea::-webkit-input-placeholder {
    color: var(--text-gray6)
}

.a-t-13 .base-input .input-box input::-webkit-input-placeholder,
.a-t-13 .base-input .input-box textarea::-webkit-input-placeholder {
    color: var(--text-gray6)
}

.a-t-13 .base-input .input-box input:-moz-placeholder,
.a-t-13 .base-input .input-box textarea::-webkit-input-placeholder {
    color: var(--text-gray6);
    opacity: 1
}

.a-t-13 .base-input .input-box input::-moz-placeholder,
.a-t-13 .base-input .input-box textarea::-webkit-input-placeholder {
    color: var(--text-gray6);
    opacity: 1
}

.a-t-13 .base-input .input-box input:-ms-input-placeholder,
.a-t-13 .base-input .input-box textarea::-webkit-input-placeholder {
    color: var(--text-gray6)
}

.a-t-13 .base-input .input-box input::-ms-input-placeholder,
.a-t-13 .base-input .input-box textarea::-webkit-input-placeholder {
    color: var(--text-gray6)
}

.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%;
    font-weight: 700;
    background: #ffffff4d
}

.a-t-13 .base-alarm-logo-btn {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.a-t-13 .base-alarm-logo-btn .alarm-icon {
    width: 24px;
    height: 24px
}

.a-t-13 .base-main-btn {
    position: relative;
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
    height: 44px;
    border-radius: var(--btn-radius)
}

.a-t-13 .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: #fff;
    text-align: center;
    font-weight: 700;
    color: #000
}

.a-t-13 .base-user-tab {
    position: relative;
    border-bottom: 2px solid rgba(170, 114, 206, .12);
    min-height: 40px;
    padding: 4px;
    margin-bottom: 20px
}

.a-t-13 .base-user-tab .tab-item {
    color: var(--btn-text);
    text-align: center;
    font-size: 14px;
    font-weight: 700 !important
}

.a-t-13 .base-user-tab .tab-item.active {
    position: relative;
    color: var(--primary);
    background: transparent
}

.a-t-13 .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-13 .container-login {
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto;
    padding-bottom: 20px
}

.a-t-13 .container-login .top-info {
    position: relative
}

.a-t-13 .container-login .top-info .top-tools {
    height: 42px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 11px 14px
}

.a-t-13 .container-login .login-content .login-tools {
    margin-top: 32px
}

.a-t-13 .container-login .login-content .login-rules {
    position: fixed;
    bottom: var(--mg);
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.a-t-13 .container-login .login-tabs-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px
}

.a-t-13 .container-login .login-tabs-wrap .tab-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 6px;
    color: #fff;
    background: transparent;
    box-sizing: border-box;
    border: 1px solid #eff0f6;
    border-radius: 10px;
    font-size: 12px
}

.a-t-13 .container-login .login-tabs-wrap .tab-item.active {
    background: #fff;
    color: #000;
    border: none
}

.a-t-13 .container-form {
    background: transparent;
    padding: 0 var(--mg)
}

.a-t-13 .container-card {
    border-radius: var(--card-radius) !important
}

.a-t-13 .container-card-info {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px
}

.a-t-13 .container-card-info .label {
    color: var(--text-gray)
}

.a-t-13 .container-card-info .value {
    font-size: 14px;
    color: var(--btn-text)
}

.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 .second-wrap {
    padding-top: 65px;
    padding-bottom: 46px
}

.a-t-13 .bg-wrap {
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto
}

.a-t-13 .nav-bar-wrap {
    overflow: hidden
}

.a-t-13 .nav-bar-wrap:before {
    content: "";
    background-image: linear-gradient(90deg, #501a17 0, transparent 70%), linear-gradient(90deg, transparent 30%, #792620 100%);
    background-color: #000;
    height: 100%;
    pointer-events: none
}

.a-t-13 .tab-bar-wrap-13 .tab-bar {
    border-top: 1px solid rgba(255, 255, 255, .6)
}

.a-t-13 .navigation-content {
    border-bottom: 1px soild var(--border-color)
}

#app.a-t-13 {
    background: var(--bg) !important;
    background-attachment: fixed !important
}

.a-t-14 {
    --radius: 4px;
    --btn-radius: 24px;
    --card-radius: 12px;
    --padding: 24px;
    --mg: 12px;
    --tabbar-height: 70px;
    --navbar-height: 56px;
    --bg-card: #121212;
    --bg-weight: #121212;
    --bg3: linear-gradient(180deg, #29a869 .66%, #16181d 99.34%);
    --btn-text: #fff;
    --border-color: #fff;
    --border-color2: #ffffffcc;
    --border-color3: #353554;
    --text-gray: #ffffffb3;
    --text-gray6: #ffffffcc;
    --btn-bg2: var(--primary);
    --van-image-placeholder-background: hsla(0, 0%, 100%, .1)
}

.a-t-14 .base-logo {
    width: 70px;
    height: 70px
}

.a-t-14 .base-lang-wrap {
    padding: 0
}

.a-t-14 .base-input {
    font-size: 16px;
    line-height: 22px;
    margin-top: 16px
}

.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: 48px;
    border-radius: 48px;
    border: 2px solid var(--text-gray);
    position: relative;
    display: flex;
    align-items: center
}

.a-t-14 .base-input .input-box input::placeholder,
.a-t-14 .base-input .input-box textarea::-webkit-input-placeholder {
    color: var(--text-gray6)
}

.a-t-14 .base-input .input-box input::-webkit-input-placeholder,
.a-t-14 .base-input .input-box textarea::-webkit-input-placeholder {
    color: var(--text-gray6)
}

.a-t-14 .base-input .input-box input:-moz-placeholder,
.a-t-14 .base-input .input-box textarea::-webkit-input-placeholder {
    color: var(--text-gray6);
    opacity: 1
}

.a-t-14 .base-input .input-box input::-moz-placeholder,
.a-t-14 .base-input .input-box textarea::-webkit-input-placeholder {
    color: var(--text-gray6);
    opacity: 1
}

.a-t-14 .base-input .input-box input:-ms-input-placeholder,
.a-t-14 .base-input .input-box textarea::-webkit-input-placeholder {
    color: var(--text-gray6)
}

.a-t-14 .base-input .input-box input::-ms-input-placeholder,
.a-t-14 .base-input .input-box textarea::-webkit-input-placeholder {
    color: var(--text-gray6)
}

.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%;
    font-weight: 700;
    background: #ffffff4d
}

.a-t-14 .base-alarm-logo-btn {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.a-t-14 .base-alarm-logo-btn .alarm-icon {
    width: 24px;
    height: 24px
}

.a-t-14 .base-main-btn {
    position: relative;
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
    height: 44px;
    border-radius: var(--btn-radius)
}

.a-t-14 .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;
    font-weight: 700;
    color: #000
}

.a-t-14 .base-user-tab {
    position: relative;
    border-bottom: 2px solid rgba(170, 114, 206, .12);
    min-height: 40px;
    padding: 4px;
    margin-bottom: 20px
}

.a-t-14 .base-user-tab .tab-item {
    color: var(--btn-text);
    text-align: center;
    font-size: 14px;
    font-weight: 700 !important
}

.a-t-14 .base-user-tab .tab-item.active {
    position: relative;
    color: var(--primary);
    background: transparent
}

.a-t-14 .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-14 .container-login {
    background-size: cover;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto;
    padding-bottom: 80px
}

.a-t-14 .container-login .top-info {
    position: relative
}

.a-t-14 .container-login .top-info .top-tools {
    height: 42px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 11px 14px
}

.a-t-14 .container-login .login-content .login-tools {
    margin-top: 32px
}

.a-t-14 .container-login .login-content .login-rules {
    position: fixed;
    bottom: var(--mg);
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.a-t-14 .container-login .login-tabs-wrap {
    display: flex;
    align-items: center;
    gap: 8px
}

.a-t-14 .container-login .login-tabs-wrap .tab-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 6px;
    color: #fff;
    background: transparent;
    box-sizing: border-box;
    border: 1px solid var(--text-gray);
    border-radius: 10px;
    font-size: 12px;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer
}

.a-t-14 .container-login .login-tabs-wrap .tab-item.active {
    background: var(--primary);
    color: #000;
    border: none
}

.a-t-14 .container-form {
    background: transparent;
    padding: 0 var(--mg)
}

.a-t-14 .container-card {
    border-radius: 0 !important
}

.a-t-14 .container-card-info {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px
}

.a-t-14 .container-card-info .label {
    color: var(--text-gray)
}

.a-t-14 .container-card-info .value {
    font-size: 14px;
    color: var(--btn-text)
}

.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 .second-wrap {
    padding-top: 65px;
    padding-bottom: 46px
}

.a-t-14 .bg-wrap {
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: auto
}

.a-t-14 .nav-bar-wrap {
    overflow: hidden;
    padding: 8px 0
}

.a-t-14 .nav-bar-wrap:before {
    content: "";
    background-color: var(--bg-tab);
    height: 100%;
    pointer-events: none
}

.a-t-14 .tab-bar-wrap-13 .tab-bar {
    border-top: 1px solid rgba(255, 255, 255, .6)
}

.a-t-14 .navigation-content {
    border-bottom: 1px soild var(--border-color)
}

#app.a-t-14 {
    background: var(--bg) !important;
    background-attachment: fixed !important
}

@font-face {
    font-family: AlibabaPuHuiTi;
    src: url(/assets/AlibabaPuHuiTi-DQU-DIIV.woff2);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: PingFangSC;
    src: url(/assets/PingFangSC-8v0bLMRu.woff2);
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: Anton;
    src: url(/assets/Anton-k9gHWZqM.woff2);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: GoodTime;
    src: url(/assets/GoodTimesRg-Regular-CqM0oCiJ.woff2);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: CrafterPiecesRegular;
    src: url(/assets/CrafterPiecesRegular-BPkTgT94.woff2);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Playgram;
    src: url(/assets/Playgram-DdRocnnB.woff2);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: DM Sans;
    src: url(/assets/DMSans-DuwDb0Vm.woff2);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: SpaceGrotesk;
    src: url(/assets/SpaceGrotesk-Medium-imQ4O87Q.woff2);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Lexend;
    src: url(/assets/Lexend-Bold-53JcxQPQ.woff2);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: ZRGatha;
    src: url(/assets/ZTGatha-BrsmtBvO.woff2);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: ZilapGlobal;
    src: url(/assets/ZilapGlobalLight-8MOyXyFJ.woff2);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Victor Mono;
    src: url(/assets/VictorMono-SemiBold-BiT3PZsV.otf);
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: Alimama FangYuanTi VF;
    src: url(/assets/AlimamaFangYuanTiVF-Thin-D8k61_hk.woff2);
    font-weight: 400;
    font-style: normal
}

.font-ali {
    font-family: AlibabaPuHuiTi, Helvetica Neue, Helvetica, sans-serif
}

.font-anton {
    font-family: Anton, Helvetica Neue, Helvetica, sans-serif
}

.font-good {
    font-family: GoodTime, Helvetica Neue, Helvetica, sans-serif
}

.font-crafter {
    font-family: CrafterPiecesRegular, Helvetica Neue, Helvetica, sans-serif
}

.font-playgram {
    font-family: Playgram, Helvetica Neue, Helvetica, sans-serif
}

.font-dm {
    font-family: DM Sans, Helvetica Neue, Helvetica, sans-serif
}

.font-space {
    font-family: SpaceGrotesk, Helvetica Neue, Helvetica, sans-serif
}

.font-lexend {
    font-family: Lexend, Helvetica Neue, Helvetica, sans-serif
}

.font-zr {
    font-family: ZRGatha, Helvetica Neue, Helvetica, sans-serif
}

.font-zilap {
    font-family: ZilapGlobal, Helvetica Neue, Helvetica, sans-serif
}

.font-victor {
    font-family: Victor Mono, Helvetica Neue, Helvetica, sans-serif
}

.font-ali-fang {
    font-family: Alimama FangYuanTi VF, Helvetica Neue, Helvetica, sans-serif
}

html,
body {
    background: var(--bg);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    --van-dialog-confirm-button-text-color: var(--primary)
}

:root {
    --maxWidth: 425px
}

#app {
    position: relative;
    margin: 0 auto;
    max-width: var(--maxWidth);
    color: var(--btn-text);
    background: var(--bg);
    font-size: 14px;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100)
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px
}

.van-popup-customer {
    background: none !important
}

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