/* /Components/Gallery/PhotoQuickModal.razor.rz.scp.css */
/* === PHOTO QUICK MODAL - FASE 3 === */

.photo-quick-modal .ant-modal-content[b-92a1aqf6sr] {
    padding: 0;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.photo-quick-modal .ant-modal-body[b-92a1aqf6sr] {
    padding: 0;
}

/* Header do modal */
.modal-header[b-92a1aqf6sr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    position: relative;
    z-index: 10;
}

.photo-counter[b-92a1aqf6sr] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.photo-counter .anticon[b-92a1aqf6sr] {
    color: #1890ff;
}

.header-controls[b-92a1aqf6sr] {
    display: flex;
    gap: 8px;
}

.header-controls .ant-btn[b-92a1aqf6sr] {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-controls .ant-btn:hover[b-92a1aqf6sr] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Corpo do modal */
.modal-body[b-92a1aqf6sr] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    max-height: 80vh;
    background: #000;
    overflow: hidden;
}

/* Container da imagem */
.image-container[b-92a1aqf6sr] {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-media[b-92a1aqf6sr] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    user-select: none;
}

.gallery-media.zoomed[b-92a1aqf6sr] {
    transform: scale(1.5);
    cursor: zoom-out;
}

/* Indicador de zoom */
.zoom-indicator[b-92a1aqf6sr] {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .zoom-indicator[b-92a1aqf6sr] {
    opacity: 1;
}

/* Botões de navegação */
.nav-button[b-92a1aqf6sr] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-button:hover[b-92a1aqf6sr] {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
    color: white;
}

.nav-button.nav-previous[b-92a1aqf6sr] {
    left: 20px;
}

.nav-button.nav-next[b-92a1aqf6sr] {
    right: 20px;
}

/* Footer do modal */
.modal-footer[b-92a1aqf6sr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 16px;
}

.photo-tags[b-92a1aqf6sr] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.footer-actions[b-92a1aqf6sr] {
    display: flex;
    gap: 12px;
}

.footer-actions .ant-btn-primary[b-92a1aqf6sr] {
    background: #1890ff;
    border-color: #1890ff;
}

.footer-actions .ant-btn-primary:hover[b-92a1aqf6sr] {
    background: #40a9ff;
    border-color: #40a9ff;
}

/* Responsividade */
@media (max-width: 768px) {
    .photo-quick-modal .ant-modal-content[b-92a1aqf6sr] {
        margin: 8px;
        border-radius: 8px;
    }
    
    .modal-header[b-92a1aqf6sr] {
        padding: 12px 16px;
    }
    
    .photo-counter[b-92a1aqf6sr] {
        font-size: 12px;
    }
    
    .header-controls .ant-btn[b-92a1aqf6sr] {
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .modal-body[b-92a1aqf6sr] {
        min-height: 50vh;
        max-height: 70vh;
    }
    
    .nav-button[b-92a1aqf6sr] {
        width: 40px;
        height: 40px;
    }
    
    .nav-button.nav-previous[b-92a1aqf6sr] {
        left: 12px;
    }
    
    .nav-button.nav-next[b-92a1aqf6sr] {
        right: 12px;
    }
    
    .modal-footer[b-92a1aqf6sr] {
        padding: 12px 16px;
        flex-direction: column;
        gap: 12px;
    }
    
    .photo-tags[b-92a1aqf6sr] {
        justify-content: center;
    }
    
    .footer-actions[b-92a1aqf6sr] {
        width: 100%;
        justify-content: center;
    }
    
    .zoom-indicator[b-92a1aqf6sr] {
        bottom: 12px;
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* Animações */
@keyframes fadeIn-b-92a1aqf6sr {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.photo-quick-modal .ant-modal-content[b-92a1aqf6sr] {
    animation: fadeIn-b-92a1aqf6sr 0.3s ease;
}

/* Estados de loading */
.gallery-media[b-92a1aqf6sr] {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-media[src=""][b-92a1aqf6sr] {
    opacity: 0;
}

/* Melhorias de acessibilidade */
.nav-button:focus[b-92a1aqf6sr] {
    outline: 2px solid #1890ff;
    outline-offset: 2px;
}

.modal-header .ant-btn:focus[b-92a1aqf6sr] {
    outline: 2px solid #1890ff;
    outline-offset: 2px;
}

/* Touch gestures para mobile */
@media (pointer: coarse) {
    .image-container[b-92a1aqf6sr] {
        touch-action: pan-x pan-y pinch-zoom;
    }
    
    .gallery-media[b-92a1aqf6sr] {
        max-width: none;
        max-height: none;
        width: 100%;
        height: auto;
    }
}
/* /Layouts/UserLayout.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.container__b__0[b-d0pa8aq04a] {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: auto;
  background: #f0f2f5;
}
.container__b__0 .lang[b-d0pa8aq04a] {
  width: 100%;
  height: 40px;
  line-height: 44px;
  text-align: right;
}
.container__b__0 .lang :global(.ant-dropdown-trigger)[b-d0pa8aq04a] {
  margin-right: 24px;
}
.container__b__0 .content[b-d0pa8aq04a] {
  flex: 1;
  padding: 32px 0;
}
.container__b__0 .top[b-d0pa8aq04a] {
  text-align: center;
}
.container__b__0 .header[b-d0pa8aq04a] {
  height: 44px;
  line-height: 44px;
}
.container__b__0 .header a[b-d0pa8aq04a] {
  text-decoration: none;
}
.container__b__0 .logo[b-d0pa8aq04a] {
  height: 44px;
  margin-right: 16px;
  vertical-align: top;
}
.container__b__0 .title[b-d0pa8aq04a] {
  position: relative;
  top: 2px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600;
  font-size: 33px;
  font-family: Avenir, 'Helvetica Neue', Arial, Helvetica, sans-serif;
}
.container__b__0 .desc[b-d0pa8aq04a] {
  margin-top: 12px;
  margin-bottom: 40px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
@media (min-width: 768px) {
  .container__b__0[b-d0pa8aq04a] {
  background-image: url('/assets/portal_background.svg');
    background-repeat: no-repeat;
    background-position: center 110px;
    background-size: 100%;
  }
  .container__b__0 .content[b-d0pa8aq04a] {
    padding: 32px 0 24px;
  }
}
/* /Pages/Account/Center/Components/Applications/Applications.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.filterCardList[b-91acrkrfno] {
  margin-bottom: -24px;
}
.filterCardList :global .ant-card-meta-content[b-91acrkrfno] {
  margin-top: 0;
}
.filterCardList :global .ant-card-meta-avatar[b-91acrkrfno] {
  font-size: 0;
}
.filterCardList :global .ant-list .ant-list-item-content-single[b-91acrkrfno] {
  max-width: 100%;
}
.filterCardList .cardInfo[b-91acrkrfno] {
  margin-top: 16px;
  margin-left: 40px;
  zoom: 1;
}
.filterCardList .cardInfo[b-91acrkrfno]::before,
.filterCardList .cardInfo[b-91acrkrfno]::after {
  display: table;
  content: ' ';
}
.filterCardList .cardInfo[b-91acrkrfno]::after {
  clear: both;
  height: 0;
  font-size: 0;
  visibility: hidden;
}
.filterCardList .cardInfo > div[b-91acrkrfno] {
  position: relative;
  float: left;
  width: 50%;
  text-align: left;
}
.filterCardList .cardInfo > div p[b-91acrkrfno] {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
}
.filterCardList .cardInfo > div p:first-child[b-91acrkrfno] {
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  line-height: 20px;
}
/* /Pages/Account/Center/Components/ArticleListContent/ArticleListContent.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.listContent .description[b-85lfmucr94] {
  max-width: 720px;
  line-height: 22px;
}
.listContent .extra[b-85lfmucr94] {
  margin-top: 16px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 22px;
}
.listContent .extra > :global(.ant-avatar)[b-85lfmucr94] {
  position: relative;
  top: 1px;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: top;
}
.listContent .extra > em[b-85lfmucr94] {
  margin-left: 16px;
  color: rgba(0, 0, 0, 0.25);
  font-style: normal;
}
@media screen and (max-width: 480px) {
  .listContent .extra > em[b-85lfmucr94] {
    display: block;
    margin-top: 8px;
    margin-left: 0;
  }
}
/* /Pages/Account/Center/Components/Articles/Articles.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.articleList :global .ant-list-item:first-child[b-f6vuu84lka] {
  padding-top: 0;
}
a.listItemMetaTitle[b-f6vuu84lka] {
  color: rgba(0, 0, 0, 0.85);
}
/* /Pages/Account/Center/Components/AvatarList/AvatarList.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.avatarList[b-rwoov3rkbp] {
  display: inline-block;
}
.avatarList ul[b-rwoov3rkbp] {
  display: inline-block;
  margin-left: 8px;
  font-size: 0;
}
.avatarItem[b-rwoov3rkbp] {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-left: -8px;
  font-size: 14px;
}
.avatarItem :global .ant-avatar[b-rwoov3rkbp] {
  border: 1px solid #d9d9d9;
}
.avatarItemLarge[b-rwoov3rkbp] {
  width: 40px;
  height: 40px;
}
.avatarItemSmall[b-rwoov3rkbp] {
  width: 24px;
  height: 24px;
}
.avatarItemMini[b-rwoov3rkbp] {
  width: 20px;
  height: 20px;
}
.avatarItemMini :global .ant-avatar[b-rwoov3rkbp] {
  width: 20px;
  height: 20px;
  line-height: 20px;
}
.avatarItemMini :global .ant-avatar .ant-avatar-string[b-rwoov3rkbp] {
  font-size: 12px;
  line-height: 18px;
}
/* /Pages/Account/Center/Components/Projects/Projects.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.coverCardList .card .ant-card-meta-title[b-32vcmiybbb] {
  margin-bottom: 4px;
}
.coverCardList .card .ant-card-meta-title > a[b-32vcmiybbb] {
  display: inline-block;
  max-width: 100%;
  color: rgba(0, 0, 0, 0.85);
}
.coverCardList .card .ant-card-meta-description[b-32vcmiybbb] {
  height: 44px;
  overflow: hidden;
  line-height: 22px;
}
.coverCardList .card:hover .ant-card-meta-title > a[b-32vcmiybbb] {
  color: #1890ff;
}
.coverCardList .cardItemContent[b-32vcmiybbb] {
  display: flex;
  height: 20px;
  margin-top: 16px;
  margin-bottom: -4px;
  line-height: 20px;
}
.coverCardList .cardItemContent > span[b-32vcmiybbb] {
  flex: 1;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
}
.coverCardList .cardItemContent .avatarList[b-32vcmiybbb] {
  flex: 0 1 auto;
}
.coverCardList .cardList[b-32vcmiybbb] {
  margin-top: 24px;
}
.coverCardList .ant-list .ant-list-item-content-single[b-32vcmiybbb] {
  max-width: 100%;
}
/* /Pages/Account/Center/Index.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.avatarHolder[b-iwlp1g9nvk] {
  margin-bottom: 24px;
  text-align: center;
}
.avatarHolder > img[b-iwlp1g9nvk] {
  width: 104px;
  height: 104px;
  margin-bottom: 20px;
}
.avatarHolder .name[b-iwlp1g9nvk] {
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
}
.detail p[b-iwlp1g9nvk] {
  position: relative;
  margin-bottom: 8px;
  padding-left: 26px;
}
.detail p:last-child[b-iwlp1g9nvk] {
  margin-bottom: 0;
}
.detail i[b-iwlp1g9nvk] {
  position: absolute;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
}
.tagsTitle[b-iwlp1g9nvk],
.teamTitle[b-iwlp1g9nvk] {
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
}
.tags .ant-tag[b-iwlp1g9nvk] {
  margin-bottom: 8px;
}
.team .ant-avatar[b-iwlp1g9nvk] {
  margin-right: 12px;
}
.team a[b-iwlp1g9nvk] {
  display: block;
  margin-bottom: 24px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.85);
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  transition: color 0.3s;
}
.team a:hover[b-iwlp1g9nvk] {
  color: #1890ff;
}
.tabsCard .ant-card-head[b-iwlp1g9nvk] {
  padding: 0 16px;
}
/* /Pages/Account/Settings/Components/BaseView.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.baseView[b-56tsfx5cmd] {
  display: flex;
  padding-top: 12px;
}
.baseView :global .ant-legacy-form-item .ant-legacy-form-item-control-wrapper[b-56tsfx5cmd] {
  width: 100%;
}
.baseView .left[b-56tsfx5cmd] {
  min-width: 224px;
  max-width: 448px;
}
.baseView .right__b__1[b-56tsfx5cmd] {
  flex: 1;
  padding-left: 104px;
}
.baseView .right__b__1 .avatar_title[b-56tsfx5cmd] {
  height: 22px;
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  line-height: 22px;
}
.baseView .right__b__1 .avatar[b-56tsfx5cmd] {
  width: 144px;
  height: 144px;
  margin-bottom: 12px;
  overflow: hidden;
}
.baseView .right__b__1 .avatar img[b-56tsfx5cmd] {
  width: 100%;
}
.baseView .right__b__1 .button_view[b-56tsfx5cmd] {
  width: 144px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .baseView[b-56tsfx5cmd] {
    flex-direction: column-reverse;
  }
  .baseView .right__b__1[b-56tsfx5cmd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 448px;
    padding: 20px;
  }
  .baseView .right__b__1 .avatar_title[b-56tsfx5cmd] {
    display: none;
  }
}
/* /Pages/Account/Settings/Components/GeographicView.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.row .item[b-ce98wl8oxx] {
  width: 50%;
  max-width: 220px;
}
.row .item:first-child[b-ce98wl8oxx] {
  width: calc(50% - 8px);
  margin-right: 8px;
}
@media screen and (max-width: 576px) {
  .item:first-child[b-ce98wl8oxx] {
    margin: 0;
    margin-bottom: 8px;
  }
}
/* /Pages/Account/Settings/Components/PhoneView.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.area_code[b-f405fam6pf] {
  width: 30%;
  max-width: 128px;
  margin-right: 8px;
}
.phone_number[b-f405fam6pf] {
  width: calc(70% - 8px);
  max-width: 312px;
}
/* /Pages/Account/Settings/Index.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.main__b__2[b-16omp1na59] {
  display: flex;
  width: 100%;
  height: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  overflow: auto;
  background-color: #fff;
}
.main__b__2 .leftMenu[b-16omp1na59] {
  width: 224px;
  border-right: 1px solid #f0f0f0;
}
.main__b__2 .leftMenu :global .ant-menu-inline[b-16omp1na59] {
  border: none;
}
.main__b__2 .leftMenu :global .ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected[b-16omp1na59] {
  font-weight: bold;
}
.main__b__2 .right__b__0[b-16omp1na59] {
  flex: 1;
  padding-top: 8px;
  padding-right: 40px;
  padding-bottom: 8px;
  padding-left: 40px;
}
.main__b__2 .right__b__0 .title[b-16omp1na59] {
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
}
.main__b__2 .ant-list-split .ant-list-item:last-child[b-16omp1na59] {
  border-bottom: 1px solid #f0f0f0;
}
.main__b__2 .ant-list-item[b-16omp1na59] {
  padding-top: 14px;
  padding-bottom: 14px;
}
.ant-list-item-meta .taobao[b-16omp1na59] {
  display: block;
  color: #ff4000;
  font-size: 48px;
  line-height: 48px;
  border-radius: 2px;
}
.ant-list-item-meta .dingding[b-16omp1na59] {
  margin: 2px;
  padding: 6px;
  color: #fff;
  font-size: 32px;
  line-height: 32px;
  background-color: #2eabff;
  border-radius: 2px;
}
.ant-list-item-meta .alipay[b-16omp1na59] {
  color: #2eabff;
  font-size: 48px;
  line-height: 48px;
  border-radius: 2px;
}
font.strong[b-16omp1na59] {
  color: #52c41a;
}
font.medium[b-16omp1na59] {
  color: #faad14;
}
font.weak[b-16omp1na59] {
  color: #ff4d4f;
}
@media screen and (max-width: 768px) {
  .main__b__2[b-16omp1na59] {
    flex-direction: column;
  }
  .main__b__2 .leftMenu[b-16omp1na59] {
    width: 100%;
    border: none;
  }
  .main__b__2 .right__b__0[b-16omp1na59] {
    padding: 40px;
  }
}
/* /Pages/Dashboard/Analysis/Components/Charts/ChartCard/ChartCard.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.chartCard[b-0gl8j2ybjn] {
  position: relative;
}
.chartCard .chartTop[b-0gl8j2ybjn] {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.chartCard .chartTopMargin[b-0gl8j2ybjn] {
  margin-bottom: 12px;
}
.chartCard .chartTopHasMargin[b-0gl8j2ybjn] {
  margin-bottom: 20px;
}
.chartCard .metaWrap[b-0gl8j2ybjn] {
  float: left;
}
.chartCard .avatar[b-0gl8j2ybjn] {
  position: relative;
  top: 4px;
  float: left;
  margin-right: 20px;
}
.chartCard .avatar img[b-0gl8j2ybjn] {
  border-radius: 100%;
}
.chartCard .meta[b-0gl8j2ybjn] {
  height: 22px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 22px;
}
.chartCard .action[b-0gl8j2ybjn] {
  position: absolute;
  top: 4px;
  right: 0;
  line-height: 1;
  cursor: pointer;
}
.chartCard .total[b-0gl8j2ybjn] {
  height: 38px;
  margin-top: 4px;
  margin-bottom: 0;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.85);
  font-size: 30px;
  line-height: 38px;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
}
.chartCard .content[b-0gl8j2ybjn] {
  position: relative;
  width: 100%;
  margin-bottom: 12px;
}
.chartCard .contentFixed[b-0gl8j2ybjn] {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.chartCard .footer[b-0gl8j2ybjn] {
  margin-top: 8px;
  padding-top: 9px;
  border-top: 1px solid #f0f0f0;
}
.chartCard .footer > *[b-0gl8j2ybjn] {
  position: relative;
}
.chartCard .footerMargin[b-0gl8j2ybjn] {
  margin-top: 20px;
}
/* /Pages/Dashboard/Analysis/Components/Charts/Field/Field.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.field[b-7ue8jvbe7t] {
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.field .label[b-7ue8jvbe7t],
.field .number[b-7ue8jvbe7t] {
  font-size: 14px;
  line-height: 22px;
}
.field .number[b-7ue8jvbe7t] {
  margin-left: 8px;
  color: rgba(0, 0, 0, 0.85);
}
/* /Pages/Dashboard/Analysis/Components/Charts/MiniProgress/MiniProgress.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.miniProgress[b-7kszomnipl] {
  position: relative;
  width: 100%;
  padding: 5px 0;
}
.miniProgress .progressWrap[b-7kszomnipl] {
  position: relative;
  background-color: #f5f5f5;
}
.miniProgress .progress[b-7kszomnipl] {
  width: 0;
  height: 100%;
  background-color: #1890ff;
  border-radius: 1px 0 0 1px;
  transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s;
}
.miniProgress .target[b-7kszomnipl] {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 9;
  width: 20px;
}
.miniProgress .target span[b-7kszomnipl] {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 4px;
  border-radius: 100px;
}
.miniProgress .target span:last-child[b-7kszomnipl] {
  top: auto;
  bottom: 0;
}
/* /Pages/Dashboard/Analysis/Components/Charts/Pie/Pie.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.pie[b-m7io9rjvup] {
  position: relative;
}
.pie .chart[b-m7io9rjvup] {
  position: relative;
}
.pie.hasLegend .chart[b-m7io9rjvup] {
  width: calc(100% - 240px);
}
.pie .legend[b-m7io9rjvup] {
  position: absolute;
  top: 50%;
  right: 0;
  min-width: 200px;
  margin: 0 20px;
  padding: 0;
  list-style: none;
  transform: translateY(-50%);
}
.pie .legend li[b-m7io9rjvup] {
  height: 22px;
  margin-bottom: 16px;
  line-height: 22px;
  cursor: pointer;
}
.pie .legend li:last-child[b-m7io9rjvup] {
  margin-bottom: 0;
}
.pie .dot[b-m7io9rjvup] {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 8px;
}
.pie .line[b-m7io9rjvup] {
  display: inline-block;
  width: 1px;
  height: 16px;
  margin-right: 8px;
  background-color: #f0f0f0;
}
.pie .legendTitle[b-m7io9rjvup] {
  color: rgba(0, 0, 0, 0.85);
}
.pie .percent[b-m7io9rjvup] {
  color: rgba(0, 0, 0, 0.45);
}
.pie .value[b-m7io9rjvup] {
  position: absolute;
  right: 0;
}
.pie .title[b-m7io9rjvup] {
  margin-bottom: 8px;
}
.pie .total[b-m7io9rjvup] {
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: 62px;
  text-align: center;
  transform: translate(-50%, -50%);
}
.pie .total > h4[b-m7io9rjvup] {
  height: 22px;
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.45);
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
}
.pie .total > p[b-m7io9rjvup] {
  display: block;
  height: 32px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 1.2em;
  line-height: 32px;
  white-space: nowrap;
}
.legendBlock.hasLegend .chart[b-m7io9rjvup] {
  width: 100%;
  margin: 0 0 32px 0;
}
.legendBlock .legend[b-m7io9rjvup] {
  position: relative;
  transform: none;
}
/* /Pages/Dashboard/Analysis/Components/Charts/TagCloud/TagCloud.razor.rz.scp.css */
.tagCloud[b-yjgewugs1p] {
  overflow: hidden;
}
.tagCloud canvas[b-yjgewugs1p] {
  transform-origin: 0 0;
}
/* /Pages/Dashboard/Analysis/Components/Charts/TimelineChart/TimelineChart.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.timelineChart[b-6gqyv45vre] {
  background: #fff;
}
/* /Pages/Dashboard/Analysis/Components/Charts/WaterWave/WaterWave.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.waterWave[b-2kw35ol392] {
  position: relative;
  display: inline-block;
  transform-origin: left;
}
.waterWave .text[b-2kw35ol392] {
  position: absolute;
  top: 32px;
  left: 0;
  width: 100%;
  text-align: center;
}
.waterWave .text span[b-2kw35ol392] {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 22px;
}
.waterWave .text h4[b-2kw35ol392] {
  color: rgba(0, 0, 0, 0.85);
  font-size: 24px;
  line-height: 32px;
}
.waterWave .waterWaveCanvasWrapper[b-2kw35ol392] {
  transform: scale(0.5);
  transform-origin: 0 0;
}
/* /Pages/Dashboard/Analysis/Components/NumberInfo/NumberInfo.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.numberInfo .suffix[b-bia6shhz00] {
  margin-left: 4px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
  font-style: normal;
}
.numberInfo .numberInfoTitle[b-bia6shhz00] {
  margin-bottom: 16px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
  transition: all 0.3s;
}
.numberInfo .numberInfoSubTitle[b-bia6shhz00] {
  height: 22px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
}
.numberInfo .numberInfoValue[b-bia6shhz00] {
  margin-top: 4px;
  overflow: hidden;
  font-size: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
}
.numberInfo .numberInfoValue > span[b-bia6shhz00] {
  display: inline-block;
  height: 32px;
  margin-right: 32px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 24px;
  line-height: 32px;
}
.numberInfo .numberInfoValue .subTotal[b-bia6shhz00] {
  margin-right: 0;
  color: rgba(0, 0, 0, 0.45);
  font-size: 16px;
  vertical-align: top;
}
.numberInfo .numberInfoValue .subTotal .anticon[b-bia6shhz00] {
  margin-left: 4px;
  font-size: 12px;
  transform: scale(0.82);
}
.numberInfo .numberInfoValue .subTotal :global .anticon-caret-up[b-bia6shhz00] {
  color: #f5222d;
}
.numberInfo .numberInfoValue .subTotal :global .anticon-caret-down[b-bia6shhz00] {
  color: #52c41a;
}
.numberInfolight .numberInfoValue > span[b-bia6shhz00] {
  color: rgba(0, 0, 0, 0.85);
}
/* /Pages/Dashboard/Analysis/Components/Trend/Trend.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.trendItem[b-84pb3y7o96] {
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
}
.trendItem .up[b-84pb3y7o96],
.trendItem .down[b-84pb3y7o96] {
  position: relative;
  top: 1px;
  margin-left: 4px;
}
.trendItem .up span[b-84pb3y7o96],
.trendItem .down span[b-84pb3y7o96] {
  font-size: 12px;
  transform: scale(0.83);
}
.trendItem .up[b-84pb3y7o96] {
  color: #f5222d;
}
.trendItem .down[b-84pb3y7o96] {
  top: -1px;
  color: #52c41a;
}
.trendItem.trendItemGrey .up[b-84pb3y7o96],
.trendItem.trendItemGrey .down[b-84pb3y7o96] {
  color: rgba(0, 0, 0, 0.85);
}
.trendItem.reverseColor .up[b-84pb3y7o96] {
  color: #52c41a;
}
.trendItem.reverseColor .down[b-84pb3y7o96] {
  color: #f5222d;
}
/* /Pages/Dashboard/Analysis/Index.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.iconGroup span.anticon[b-saeh90cyq8] {
  margin-left: 16px;
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: color 0.32s;
}
.iconGroup span.anticon:hover[b-saeh90cyq8] {
  color: rgba(0, 0, 0, 0.85);
}
.rankingList[b-saeh90cyq8] {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}
.rankingList li[b-saeh90cyq8] {
  display: flex;
  align-items: center;
  margin-top: 16px;
  zoom: 1;
}
.rankingList li[b-saeh90cyq8]::before,
.rankingList li[b-saeh90cyq8]::after {
  display: table;
  content: ' ';
}
.rankingList li[b-saeh90cyq8]::after {
  clear: both;
  height: 0;
  font-size: 0;
  visibility: hidden;
}
.rankingList li span[b-saeh90cyq8] {
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  line-height: 22px;
}
.rankingList li .rankingItemNumber[b-saeh90cyq8] {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-top: 1.5px;
  margin-right: 16px;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  background-color: #fafafa;
  border-radius: 20px;
}
.rankingList li .rankingItemNumber.active[b-saeh90cyq8] {
  color: #fff;
  background-color: #314659;
}
.rankingList li .rankingItemTitle[b-saeh90cyq8] {
  flex: 1;
  margin-right: 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.salesExtra[b-saeh90cyq8] {
  display: inline-block;
  margin-right: 24px;
}
.salesExtra a[b-saeh90cyq8] {
  margin-left: 24px;
  color: rgba(0, 0, 0, 0.85);
}
.salesExtra a:hover[b-saeh90cyq8] {
  color: #1890ff;
}
.salesExtra a.currentDate[b-saeh90cyq8] {
  color: #1890ff;
}
.salesCard .salesBar[b-saeh90cyq8] {
  padding: 0 0 32px 32px;
}
.salesCard .salesRank[b-saeh90cyq8] {
  padding: 0 32px 32px 72px;
}
.salesCard :global .ant-tabs-bar[b-saeh90cyq8],
.salesCard :global .ant-tabs-nav-wrap[b-saeh90cyq8] {
  padding-left: 16px;
}
.salesCard :global .ant-tabs-bar .ant-tabs-nav .ant-tabs-tab[b-saeh90cyq8],
.salesCard :global .ant-tabs-nav-wrap .ant-tabs-nav .ant-tabs-tab[b-saeh90cyq8] {
  padding-top: 16px;
  padding-bottom: 14px;
  line-height: 24px;
}
.salesCard :global .ant-tabs-extra-content[b-saeh90cyq8] {
  padding-right: 24px;
  line-height: 55px;
}
.salesCard :global .ant-card-head[b-saeh90cyq8] {
  position: relative;
}
.salesCard :global .ant-card-head-title[b-saeh90cyq8] {
  align-items: normal;
}
.salesCardExtra[b-saeh90cyq8] {
  height: inherit;
}
.salesTypeRadio[b-saeh90cyq8] {
  position: absolute;
  right: 54px;
  bottom: 12px;
}
.offlineCard :global .ant-tabs-ink-bar[b-saeh90cyq8] {
  bottom: auto;
}
.offlineCard :global .ant-tabs-bar[b-saeh90cyq8] {
  border-bottom: none;
}
.offlineCard :global .ant-tabs-nav-container-scrolling[b-saeh90cyq8] {
  padding-right: 40px;
  padding-left: 40px;
}
.offlineCard :global .ant-tabs-tab-prev-icon[b-saeh90cyq8]::before {
  position: relative;
  left: 6px;
}
.offlineCard :global .ant-tabs-tab-next-icon[b-saeh90cyq8]::before {
  position: relative;
  right: 6px;
}
.offlineCard :global .ant-tabs-tab-active h4[b-saeh90cyq8] {
  color: #1890ff;
}
.trendText[b-saeh90cyq8] {
  margin-left: 8px;
  color: rgba(0, 0, 0, 0.85);
}
@media screen and (max-width: 992px) {
  .salesExtra[b-saeh90cyq8] {
    display: none;
  }
  .rankingList li span:first-child[b-saeh90cyq8] {
    margin-right: 8px;
  }
}
@media screen and (max-width: 768px) {
  .rankingTitle[b-saeh90cyq8] {
    margin-top: 16px;
  }
  .salesCard .salesBar[b-saeh90cyq8] {
    padding: 16px;
  }
}
@media screen and (max-width: 576px) {
  .salesExtraWrap[b-saeh90cyq8] {
    display: none;
  }
  .salesCard :global .ant-tabs-content[b-saeh90cyq8] {
    padding-top: 30px;
  }
}
/* /Pages/Dashboard/Monitor/Components/ActiveChart/ActiveChart.razor.rz.scp.css */
.activeChart[b-lhvmr1qcdb] {
  position: relative;
}
.activeChartGrid p[b-lhvmr1qcdb] {
  position: absolute;
  top: 80px;
}
.activeChartGrid p:last-child[b-lhvmr1qcdb] {
  top: 115px;
}
.activeChartLegend[b-lhvmr1qcdb] {
  position: relative;
  height: 20px;
  margin-top: 8px;
  font-size: 0;
  line-height: 20px;
}
.activeChartLegend span[b-lhvmr1qcdb] {
  display: inline-block;
  width: 33.33%;
  font-size: 12px;
  text-align: center;
}
.activeChartLegend span:first-child[b-lhvmr1qcdb] {
  text-align: left;
}
.activeChartLegend span:last-child[b-lhvmr1qcdb] {
  text-align: right;
}
.dashedLine[b-lhvmr1qcdb] {
  position: relative;
  top: -70px;
  left: -3px;
  height: 1px;
}
.dashedLine .line[b-lhvmr1qcdb] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, transparent 50%, #e9e9e9 50%);
  background-size: 6px;
}
.dashedLine:last-child[b-lhvmr1qcdb] {
  top: -36px;
}
/* /Pages/Dashboard/Monitor/Index.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.mapChart[b-c83ud9xqke] {
  height: 452px;
  padding-top: 24px;
}
.mapChart img[b-c83ud9xqke] {
  display: inline-block;
  max-width: 100%;
  max-height: 437px;
}
.pieCard :global(.pie-stat)[b-c83ud9xqke] {
  font-size: 24px !important;
}
@media screen and (max-width: 992px) {
  .mapChart[b-c83ud9xqke] {
    height: auto;
  }
}
/* /Pages/Dashboard/Workplace/Components/EditableLinkGroup/EditableLinkGroup.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.linkGroup[b-d1ofa0azix] {
  padding: 20px 0 8px 24px;
  font-size: 0;
}
.linkGroup > a[b-d1ofa0azix] {
  display: inline-block;
  width: 25%;
  margin-bottom: 13px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
}
.linkGroup > a:hover[b-d1ofa0azix] {
  color: #1890ff;
}
/* /Pages/Dashboard/Workplace/Components/Radar/Radar.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.radar .legend[b-ohu42nwmmh] {
  margin-top: 16px;
}
.radar .legend .legendItem[b-ohu42nwmmh] {
  position: relative;
  color: rgba(0, 0, 0, 0.45);
  line-height: 22px;
  text-align: center;
  cursor: pointer;
}
.radar .legend .legendItem p[b-ohu42nwmmh] {
  margin: 0;
}
.radar .legend .legendItem h6[b-ohu42nwmmh] {
  margin-top: 4px;
  margin-bottom: 0;
  padding-left: 16px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 24px;
  line-height: 32px;
}
.radar .legend .legendItem[b-ohu42nwmmh]::after {
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: 40px;
  background-color: #f0f0f0;
  content: '';
}
.radar .legend > :last-child .legendItem[b-ohu42nwmmh]::after {
  display: none;
}
.radar .legend .dot[b-ohu42nwmmh] {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 6px;
}
/* /Pages/Dashboard/Workplace/Index.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.activitiesList[b-sp1j5f6qwg] {
  padding: 0 24px 8px 24px;
}
.activitiesList .username[b-sp1j5f6qwg] {
  color: rgba(0, 0, 0, 0.85);
}
.activitiesList .event[b-sp1j5f6qwg] {
  font-weight: normal;
}
.pageHeaderContent__b__0[b-sp1j5f6qwg] {
  display: flex;
}
.pageHeaderContent__b__0 .avatar[b-sp1j5f6qwg] {
  flex: 0 1 72px;
}
.pageHeaderContent__b__0 .avatar > span[b-sp1j5f6qwg] {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 72px;
}
.pageHeaderContent__b__0 .content[b-sp1j5f6qwg] {
  position: relative;
  top: 4px;
  flex: 1 1 auto;
  margin-left: 24px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 22px;
}
.pageHeaderContent__b__0 .content .contentTitle[b-sp1j5f6qwg] {
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
}
.extraContent[b-sp1j5f6qwg] {
  zoom: 1;
  float: right;
  white-space: nowrap;
}
.extraContent[b-sp1j5f6qwg]::before,
.extraContent[b-sp1j5f6qwg]::after {
  display: table;
  content: ' ';
}
.extraContent[b-sp1j5f6qwg]::after {
  clear: both;
  height: 0;
  font-size: 0;
  visibility: hidden;
}
.extraContent .statItem[b-sp1j5f6qwg] {
  position: relative;
  display: inline-block;
  padding: 0 32px;
}
.extraContent .statItem > p:first-child[b-sp1j5f6qwg] {
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 22px;
}
.extraContent .statItem > p[b-sp1j5f6qwg] {
  margin: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 30px;
  line-height: 38px;
}
.extraContent .statItem > p > span[b-sp1j5f6qwg] {
  color: rgba(0, 0, 0, 0.45);
  font-size: 20px;
}
.extraContent .statItem[b-sp1j5f6qwg]::after {
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: 40px;
  background-color: #f0f0f0;
  content: '';
}
.extraContent .statItem:last-child[b-sp1j5f6qwg] {
  padding-right: 0;
}
.extraContent .statItem:last-child[b-sp1j5f6qwg]::after {
  display: none;
}
.members a[b-sp1j5f6qwg] {
  display: block;
  height: 24px;
  margin: 12px 0;
  color: rgba(0, 0, 0, 0.85);
  transition: all 0.3s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
}
.members a .member[b-sp1j5f6qwg] {
  margin-left: 12px;
  font-size: 14px;
  line-height: 24px;
  vertical-align: top;
}
.members a:hover[b-sp1j5f6qwg] {
  color: #1890ff;
}
.projectList .ant-card-meta-description[b-sp1j5f6qwg] {
  height: 44px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.45);
  line-height: 22px;
}
.projectList .cardTitle[b-sp1j5f6qwg] {
  font-size: 0;
}
.projectList .cardTitle a[b-sp1j5f6qwg] {
  display: inline-block;
  height: 24px;
  margin-left: 12px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  line-height: 24px;
  vertical-align: top;
}
.projectList .cardTitle a:hover[b-sp1j5f6qwg] {
  color: #1890ff;
}
.projectList .projectGrid[b-sp1j5f6qwg] {
  width: 33.33%;
}
.projectList .projectItemContent[b-sp1j5f6qwg] {
  display: flex;
  height: 20px;
  margin-top: 8px;
  font-size: 12px;
  line-height: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
}
.projectList .projectItemContent a[b-sp1j5f6qwg] {
  display: inline-block;
  flex: 1 1 0;
  color: rgba(0, 0, 0, 0.45);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
}
.projectList .projectItemContent a:hover[b-sp1j5f6qwg] {
  color: #1890ff;
}
.projectList .projectItemContent .datetime[b-sp1j5f6qwg] {
  flex: 0 0 auto;
  float: right;
  color: rgba(0, 0, 0, 0.25);
}
.datetime[b-sp1j5f6qwg] {
  color: rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1200px) and (min-width: 992px) {
  .activeCard[b-sp1j5f6qwg] {
    margin-bottom: 24px;
  }
  .members[b-sp1j5f6qwg] {
    margin-bottom: 0;
  }
  .extraContent[b-sp1j5f6qwg] {
    margin-left: -44px;
  }
  .extraContent .statItem[b-sp1j5f6qwg] {
    padding: 0 16px;
  }
}
@media screen and (max-width: 992px) {
  .activeCard[b-sp1j5f6qwg] {
    margin-bottom: 24px;
  }
  .members[b-sp1j5f6qwg] {
    margin-bottom: 0;
  }
  .extraContent[b-sp1j5f6qwg] {
    float: none;
    margin-right: 0;
  }
  .extraContent .statItem[b-sp1j5f6qwg] {
    padding: 0 16px;
    text-align: left;
  }
  .extraContent .statItem[b-sp1j5f6qwg]::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .extraContent[b-sp1j5f6qwg] {
    margin-left: -16px;
  }
  .projectList .projectGrid[b-sp1j5f6qwg] {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .pageHeaderContent[b-sp1j5f6qwg] {
    display: block;
  }
  .pageHeaderContent .content[b-sp1j5f6qwg] {
    margin-left: 0;
  }
  .extraContent .statItem[b-sp1j5f6qwg] {
    float: none;
  }
}
@media screen and (max-width: 480px) {
  .projectList .projectGrid[b-sp1j5f6qwg] {
    width: 100%;
  }
}
/* /Pages/Form/AdvancedForm/AdvancedForm.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.card[b-edf1agfgo2] {
  margin-bottom: 24px;
}
.card :global .ant-legacy-form-item .ant-legacy-form-item-control-wrapper[b-edf1agfgo2] {
  width: 100%;
}
.errorIcon[b-edf1agfgo2] {
  margin-right: 24px;
  color: #ff4d4f;
  cursor: pointer;
}
.errorIcon span.anticon[b-edf1agfgo2] {
  margin-right: 4px;
}
.errorPopover :global .ant-popover-inner-content[b-edf1agfgo2] {
  min-width: 256px;
  max-height: 290px;
  padding: 0;
  overflow: auto;
}
.errorListItem[b-edf1agfgo2] {
  padding: 8px 16px;
  list-style: none;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: all 0.3s;
}
.errorListItem:hover[b-edf1agfgo2] {
  background: #e6f7ff;
}
.errorListItem:last-child[b-edf1agfgo2] {
  border: 0;
}
.errorListItem .errorIcon[b-edf1agfgo2] {
  float: left;
  margin-top: 4px;
  margin-right: 12px;
  padding-bottom: 22px;
  color: #ff4d4f;
}
.errorListItem .errorField[b-edf1agfgo2] {
  margin-top: 2px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
}
.editable td[b-edf1agfgo2] {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
/* /Pages/Form/BasicForm/BasicForm.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.card[b-5at1xz18pl] {
  margin-bottom: 24px;
}
.card :global .ant-legacy-form-item .ant-legacy-form-item-control-wrapper[b-5at1xz18pl] {
  width: 100%;
}
.errorIcon[b-5at1xz18pl] {
  margin-right: 24px;
  color: #ff4d4f;
  cursor: pointer;
}
.errorIcon span.anticon[b-5at1xz18pl] {
  margin-right: 4px;
}
.errorPopover :global .ant-popover-inner-content[b-5at1xz18pl] {
  min-width: 256px;
  max-height: 290px;
  padding: 0;
  overflow: auto;
}
.errorListItem[b-5at1xz18pl] {
  padding: 8px 16px;
  list-style: none;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: all 0.3s;
}
.errorListItem:hover[b-5at1xz18pl] {
  background: #e6f7ff;
}
.errorListItem:last-child[b-5at1xz18pl] {
  border: 0;
}
.errorListItem .errorIcon[b-5at1xz18pl] {
  float: left;
  margin-top: 4px;
  margin-right: 12px;
  padding-bottom: 22px;
  color: #ff4d4f;
}
.errorListItem .errorField[b-5at1xz18pl] {
  margin-top: 2px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
}
.editable td[b-5at1xz18pl] {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
/* /Pages/Form/StepForm/Components/Step1/Step1.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.stepForm[b-pyd7613i81] {
  max-width: 500px;
  margin: 40px auto 0;
}
.stepFormText[b-pyd7613i81] {
  margin-bottom: 24px;
}
.stepFormText :global .ant-form-item-label[b-pyd7613i81],
.stepFormText :global .ant-form-item-control[b-pyd7613i81] {
  line-height: 22px;
}
.result[b-pyd7613i81] {
  max-width: 560px;
  margin: 0 auto;
  padding: 24px 0 8px;
}
.desc[b-pyd7613i81] {
  padding: 0 56px;
  color: rgba(0, 0, 0, 0.45);
}
.desc h3[b-pyd7613i81] {
  margin: 0 0 12px 0;
  color: rgba(0, 0, 0, 0.45);
  font-size: 16px;
  line-height: 32px;
}
.desc h4[b-pyd7613i81] {
  margin: 0 0 4px 0;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 22px;
}
.desc p[b-pyd7613i81] {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 22px;
}
@media screen and (max-width: 768px) {
  .desc[b-pyd7613i81] {
    padding: 0;
  }
}
.information[b-pyd7613i81] {
  line-height: 22px;
}
.information :global .ant-row:not(:last-child)[b-pyd7613i81] {
  margin-bottom: 24px;
}
.information .label[b-pyd7613i81] {
  padding-right: 8px;
  color: rgba(0, 0, 0, 0.85);
  text-align: right;
}
@media screen and (max-width: 576px) {
  .information .label[b-pyd7613i81] {
    text-align: left;
  }
}
.money[b-pyd7613i81] {
  font-weight: 500;
  font-size: 20px;
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 14px;
}
.uppercase[b-pyd7613i81] {
  font-size: 12px;
}
/* /Pages/Form/StepForm/Components/Step2/Step2.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.stepForm[b-wu6781ou9o] {
  max-width: 500px;
  margin: 40px auto 0;
}
.stepFormText[b-wu6781ou9o] {
  margin-bottom: 24px;
}
.stepFormText :global .ant-form-item-label[b-wu6781ou9o],
.stepFormText :global .ant-form-item-control[b-wu6781ou9o] {
  line-height: 22px;
}
.result[b-wu6781ou9o] {
  max-width: 560px;
  margin: 0 auto;
  padding: 24px 0 8px;
}
.desc[b-wu6781ou9o] {
  padding: 0 56px;
  color: rgba(0, 0, 0, 0.45);
}
.desc h3[b-wu6781ou9o] {
  margin: 0 0 12px 0;
  color: rgba(0, 0, 0, 0.45);
  font-size: 16px;
  line-height: 32px;
}
.desc h4[b-wu6781ou9o] {
  margin: 0 0 4px 0;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 22px;
}
.desc p[b-wu6781ou9o] {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 22px;
}
@media screen and (max-width: 768px) {
  .desc[b-wu6781ou9o] {
    padding: 0;
  }
}
.information[b-wu6781ou9o] {
  line-height: 22px;
}
.information :global .ant-row:not(:last-child)[b-wu6781ou9o] {
  margin-bottom: 24px;
}
.information .label[b-wu6781ou9o] {
  padding-right: 8px;
  color: rgba(0, 0, 0, 0.85);
  text-align: right;
}
@media screen and (max-width: 576px) {
  .information .label[b-wu6781ou9o] {
    text-align: left;
  }
}
.money[b-wu6781ou9o] {
  font-weight: 500;
  font-size: 20px;
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 14px;
}
.uppercase[b-wu6781ou9o] {
  font-size: 12px;
}
/* /Pages/Form/StepForm/Components/Step3/Step3.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.stepForm[b-enaorjfwc6] {
  max-width: 500px;
  margin: 40px auto 0;
}
.stepFormText[b-enaorjfwc6] {
  margin-bottom: 24px;
}
.stepFormText :global .ant-form-item-label[b-enaorjfwc6],
.stepFormText :global .ant-form-item-control[b-enaorjfwc6] {
  line-height: 22px;
}
.result[b-enaorjfwc6] {
  max-width: 560px;
  margin: 0 auto;
  padding: 24px 0 8px;
}
.desc[b-enaorjfwc6] {
  padding: 0 56px;
  color: rgba(0, 0, 0, 0.45);
}
.desc h3[b-enaorjfwc6] {
  margin: 0 0 12px 0;
  color: rgba(0, 0, 0, 0.45);
  font-size: 16px;
  line-height: 32px;
}
.desc h4[b-enaorjfwc6] {
  margin: 0 0 4px 0;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 22px;
}
.desc p[b-enaorjfwc6] {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 22px;
}
@media screen and (max-width: 768px) {
  .desc[b-enaorjfwc6] {
    padding: 0;
  }
}
.information[b-enaorjfwc6] {
  line-height: 22px;
}
.information :global .ant-row:not(:last-child)[b-enaorjfwc6] {
  margin-bottom: 24px;
}
.information .label[b-enaorjfwc6] {
  padding-right: 8px;
  color: rgba(0, 0, 0, 0.85);
  text-align: right;
}
@media screen and (max-width: 576px) {
  .information .label[b-enaorjfwc6] {
    text-align: left;
  }
}
.uppercase[b-enaorjfwc6] {
  font-size: 12px;
}
/* /Pages/Form/StepForm/StepForm.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.card[b-umi3pwdvtw] {
  margin-bottom: 24px;
}
.heading[b-umi3pwdvtw] {
  margin: 0 0 16px 0;
  font-size: 14px;
  line-height: 22px;
}
.steps.ant-steps[b-umi3pwdvtw] {
  max-width: 750px;
  margin: 16px auto;
}
.errorIcon[b-umi3pwdvtw] {
  margin-right: 24px;
  color: #ff4d4f;
  cursor: pointer;
}
.errorIcon span.anticon[b-umi3pwdvtw] {
  margin-right: 4px;
}
.errorPopover :global .ant-popover-inner-content[b-umi3pwdvtw] {
  min-width: 256px;
  max-height: 290px;
  padding: 0;
  overflow: auto;
}
.errorListItem[b-umi3pwdvtw] {
  padding: 8px 16px;
  list-style: none;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: all 0.3s;
}
.errorListItem:hover[b-umi3pwdvtw] {
  background: #e6f7ff;
}
.errorListItem:last-child[b-umi3pwdvtw] {
  border: 0;
}
.errorListItem .errorIcon[b-umi3pwdvtw] {
  float: left;
  margin-top: 4px;
  margin-right: 12px;
  padding-bottom: 22px;
  color: #ff4d4f;
}
.errorListItem .errorField[b-umi3pwdvtw] {
  margin-top: 2px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
}
.editable td[b-umi3pwdvtw] {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.advancedForm + div[b-umi3pwdvtw] {
  padding-bottom: 64px;
}
.advancedForm :global .ant-form .ant-row:last-child .ant-form-item[b-umi3pwdvtw] {
  margin-bottom: 24px;
}
.advancedForm :global .ant-table td[b-umi3pwdvtw] {
  transition: none !important;
}
.optional[b-umi3pwdvtw] {
  color: rgba(0, 0, 0, 0.45);
  font-style: normal;
}
/* /Pages/Index.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.iconGroup span.anticon[b-ns4ybwlblz] {
  margin-left: 16px;
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: color 0.32s;
}
.iconGroup span.anticon:hover[b-ns4ybwlblz] {
  color: rgba(0, 0, 0, 0.85);
}
.rankingList[b-ns4ybwlblz] {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}
.rankingList li[b-ns4ybwlblz] {
  display: flex;
  align-items: center;
  margin-top: 16px;
  zoom: 1;
}
.rankingList li[b-ns4ybwlblz]::before,
.rankingList li[b-ns4ybwlblz]::after {
  display: table;
  content: ' ';
}
.rankingList li[b-ns4ybwlblz]::after {
  clear: both;
  height: 0;
  font-size: 0;
  visibility: hidden;
}
.rankingList li span[b-ns4ybwlblz] {
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  line-height: 22px;
}
.rankingList li .rankingItemNumber[b-ns4ybwlblz] {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-top: 1.5px;
  margin-right: 16px;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  background-color: #fafafa;
  border-radius: 20px;
}
.rankingList li .rankingItemNumber.active[b-ns4ybwlblz] {
  color: #fff;
  background-color: #314659;
}
.rankingList li .rankingItemTitle[b-ns4ybwlblz] {
  flex: 1;
  margin-right: 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.salesExtra[b-ns4ybwlblz] {
  display: inline-block;
  margin-right: 24px;
}
.salesExtra a[b-ns4ybwlblz] {
  margin-left: 24px;
  color: rgba(0, 0, 0, 0.85);
}
.salesExtra a:hover[b-ns4ybwlblz] {
  color: #1890ff;
}
.salesExtra a.currentDate[b-ns4ybwlblz] {
  color: #1890ff;
}
.salesCard .salesBar[b-ns4ybwlblz] {
  padding: 0 0 32px 32px;
}
.salesCard .salesRank[b-ns4ybwlblz] {
  padding: 0 32px 32px 72px;
}
.salesCard :global .ant-tabs-bar[b-ns4ybwlblz],
.salesCard :global .ant-tabs-nav-wrap[b-ns4ybwlblz] {
  padding-left: 16px;
}
.salesCard :global .ant-tabs-bar .ant-tabs-nav .ant-tabs-tab[b-ns4ybwlblz],
.salesCard :global .ant-tabs-nav-wrap .ant-tabs-nav .ant-tabs-tab[b-ns4ybwlblz] {
  padding-top: 16px;
  padding-bottom: 14px;
  line-height: 24px;
}
.salesCard :global .ant-tabs-extra-content[b-ns4ybwlblz] {
  padding-right: 24px;
  line-height: 55px;
}
.salesCard :global .ant-card-head[b-ns4ybwlblz] {
  position: relative;
}
.salesCard :global .ant-card-head-title[b-ns4ybwlblz] {
  align-items: normal;
}
.salesCardExtra[b-ns4ybwlblz] {
  height: inherit;
}
.salesTypeRadio[b-ns4ybwlblz] {
  position: absolute;
  right: 54px;
  bottom: 12px;
}
.offlineCard :global .ant-tabs-ink-bar[b-ns4ybwlblz] {
  bottom: auto;
}
.offlineCard :global .ant-tabs-bar[b-ns4ybwlblz] {
  border-bottom: none;
}
.offlineCard :global .ant-tabs-nav-container-scrolling[b-ns4ybwlblz] {
  padding-right: 40px;
  padding-left: 40px;
}
.offlineCard :global .ant-tabs-tab-prev-icon[b-ns4ybwlblz]::before {
  position: relative;
  left: 6px;
}
.offlineCard :global .ant-tabs-tab-next-icon[b-ns4ybwlblz]::before {
  position: relative;
  right: 6px;
}
.offlineCard :global .ant-tabs-tab-active h4[b-ns4ybwlblz] {
  color: #1890ff;
}
.trendText[b-ns4ybwlblz] {
  margin-left: 8px;
  color: rgba(0, 0, 0, 0.85);
}
@media screen and (max-width: 992px) {
  .salesExtra[b-ns4ybwlblz] {
    display: none;
  }
  .rankingList li span:first-child[b-ns4ybwlblz] {
    margin-right: 8px;
  }
}
@media screen and (max-width: 768px) {
  .rankingTitle[b-ns4ybwlblz] {
    margin-top: 16px;
  }
  .salesCard .salesBar[b-ns4ybwlblz] {
    padding: 16px;
  }
}
@media screen and (max-width: 576px) {
  .salesExtraWrap[b-ns4ybwlblz] {
    display: none;
  }
  .salesCard :global .ant-tabs-content[b-ns4ybwlblz] {
    padding-top: 30px;
  }
}
/* /Pages/List/BasicList/BasicList.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardList .ant-card-head[b-asupd26b1w] {
  border-bottom: none;
}
.standardList .ant-card-head-title[b-asupd26b1w] {
  padding: 24px 0;
  line-height: 32px;
}
.standardList .ant-card-extra[b-asupd26b1w] {
  padding: 24px 0;
}
.standardList .ant-list-pagination[b-asupd26b1w] {
  margin-top: 24px;
  text-align: right;
}
.standardList .ant-avatar-lg[b-asupd26b1w] {
  width: 48px;
  height: 48px;
  line-height: 48px;
}
.standardList .headerInfo[b-asupd26b1w] {
  position: relative;
  text-align: center;
}
.standardList .headerInfo > span[b-asupd26b1w] {
  display: inline-block;
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 22px;
}
.standardList .headerInfo > p[b-asupd26b1w] {
  margin: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 24px;
  line-height: 32px;
}
.standardList .headerInfo > em[b-asupd26b1w] {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 56px;
  background-color: #f0f0f0;
}
.standardList .listContent[b-asupd26b1w] {
  font-size: 0;
}
.standardList .listContent .listContentItem[b-asupd26b1w] {
  display: inline-block;
  margin-left: 40px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  vertical-align: middle;
}
.standardList .listContent .listContentItem > span[b-asupd26b1w] {
  line-height: 20px;
}
.standardList .listContent .listContentItem > p[b-asupd26b1w] {
  margin-top: 4px;
  margin-bottom: 0;
  line-height: 22px;
}
.standardList .extraContentSearch[b-asupd26b1w] {
  width: 272px;
  margin-left: 16px;
}
@media screen and (max-width: 480px) {
  .standardList .ant-list-item-content[b-asupd26b1w] {
    display: block;
    flex: none;
    width: 100%;
  }
  .standardList .ant-list-item-action[b-asupd26b1w] {
    margin-left: 0;
  }
  .standardList .listContent[b-asupd26b1w] {
    margin-left: 0;
  }
  .standardList .listContent > div[b-asupd26b1w] {
    margin-left: 0;
  }
  .standardList .listCard .ant-card-head-title[b-asupd26b1w] {
    overflow: visible;
  }
}
@media screen and (max-width: 576px) {
  .standardList .extraContentSearch[b-asupd26b1w] {
    width: 100%;
    margin-left: 0;
  }
  .standardList .headerInfo[b-asupd26b1w] {
    margin-bottom: 16px;
  }
  .standardList .headerInfo > em[b-asupd26b1w] {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .standardList .listContent > div[b-asupd26b1w] {
    display: block;
  }
  .standardList .listContent > div:last-child[b-asupd26b1w] {
    top: 0;
    width: 100%;
  }
  .listCard .ant-radio-group[b-asupd26b1w] {
    display: block;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 992px) and (min-width: 768px) {
  .standardList .listContent > div[b-asupd26b1w] {
    display: block;
  }
  .standardList .listContent > div:last-child[b-asupd26b1w] {
    top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .standardList .listContent > div[b-asupd26b1w] {
    margin-left: 24px;
  }
  .standardList .listContent > div:last-child[b-asupd26b1w] {
    top: 0;
  }
}
@media screen and (max-width: 1400px) {
  .standardList .listContent[b-asupd26b1w] {
    text-align: right;
  }
  .standardList .listContent > div:last-child[b-asupd26b1w] {
    top: 0;
  }
}
.standardListForm .ant-form-item[b-asupd26b1w] {
  margin-bottom: 12px;
}
.standardListForm .ant-form-item:last-child[b-asupd26b1w] {
  margin-bottom: 32px;
  padding-top: 4px;
}
.formResult[b-asupd26b1w] {
  width: 100%;
}
.formResult [class^='title'][b-asupd26b1w] {
  margin-bottom: 8px;
}
/* /Pages/List/CardList/CardList.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.cardList .card .ant-card-meta-title[b-bzb3vfrkcy] {
  margin-bottom: 12px;
}
.cardList .card .ant-card-meta-title > a[b-bzb3vfrkcy] {
  display: inline-block;
  max-width: 100%;
  color: rgba(0, 0, 0, 0.85);
}
.cardList .card .ant-card-body:hover .ant-card-meta-title > a[b-bzb3vfrkcy] {
  color: #1890ff;
}
.cardList .item[b-bzb3vfrkcy] {
  height: 64px;
}
.cardList .ant-list .ant-list-item-content-single[b-bzb3vfrkcy] {
  max-width: 100%;
}
.extraImg[b-bzb3vfrkcy] {
  width: 155px;
  margin-top: -20px;
  text-align: center;
}
.extraImg img[b-bzb3vfrkcy] {
  width: 100%;
}
.newButton[b-bzb3vfrkcy] {
  width: 100%;
  height: 201px;
  color: rgba(0, 0, 0, 0.45);
  background-color: #fff;
  border-color: #d9d9d9;
}
.cardAvatar[b-bzb3vfrkcy] {
  width: 48px;
  height: 48px;
  border-radius: 48px;
}
.cardDescription[b-bzb3vfrkcy] {
  position: relative;
  max-height: 4.5em;
  margin-right: -1em;
  padding-right: 1em;
  overflow: hidden;
  line-height: 1.5em;
  text-align: justify;
}
.cardDescription[b-bzb3vfrkcy]::before {
  position: absolute;
  right: 14px;
  bottom: 0;
  padding: 0 1px;
  background: #fff;
  content: '...';
}
.cardDescription[b-bzb3vfrkcy]::after {
  position: absolute;
  right: 14px;
  width: 1em;
  height: 1em;
  margin-top: 0.2em;
  background: white;
  content: '';
}
.pageHeaderContent__b__1[b-bzb3vfrkcy] {
  position: relative;
}
.contentLink[b-bzb3vfrkcy] {
  margin-top: 16px;
}
.contentLink a[b-bzb3vfrkcy] {
  margin-right: 32px;
}
.contentLink a img[b-bzb3vfrkcy] {
  width: 24px;
}
.contentLink img[b-bzb3vfrkcy] {
  margin-right: 8px;
  vertical-align: middle;
}
@media screen and (max-width: 992px) {
  .contentLink a[b-bzb3vfrkcy] {
    margin-right: 16px;
  }
}
@media screen and (max-width: 768px) {
  .extraImg[b-bzb3vfrkcy] {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .pageHeaderContent__b__1[b-bzb3vfrkcy] {
    padding-bottom: 30px;
  }
  .contentLink[b-bzb3vfrkcy] {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 1000px;
  }
  .contentLink a[b-bzb3vfrkcy] {
    margin-right: 16px;
  }
  .contentLink img[b-bzb3vfrkcy] {
    margin-right: 4px;
  }
}
/* /Pages/List/Search/Applications/Applications.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.filterCardList .ant-card-meta-content[b-5c99oc8phz] {
  margin-top: 0;
}
.filterCardList .ant-card-meta-avatar[b-5c99oc8phz] {
  font-size: 0;
}
.filterCardList .ant-list .ant-list-item-content-single[b-5c99oc8phz] {
  max-width: 100%;
}
.filterCardList .cardInfo[b-5c99oc8phz] {
  margin-top: 16px;
  margin-left: 40px;
  zoom: 1;
}
.filterCardList .cardInfo[b-5c99oc8phz]::before,
.filterCardList .cardInfo[b-5c99oc8phz]::after {
  display: table;
  content: ' ';
}
.filterCardList .cardInfo[b-5c99oc8phz]::after {
  clear: both;
  height: 0;
  font-size: 0;
  visibility: hidden;
}
.filterCardList .cardInfo > div[b-5c99oc8phz] {
  position: relative;
  float: left;
  width: 50%;
  text-align: left;
}
.filterCardList .cardInfo > div p[b-5c99oc8phz] {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
}
.filterCardList .cardInfo > div p:first-child[b-5c99oc8phz] {
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  line-height: 20px;
}
/* /Pages/List/Search/Applications/Components/StandardFormRow/StandardFormRow.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardFormRow[b-1kxtv33jml] {
  display: flex;
  width: 100%;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #f0f0f0;
}
.standardFormRow .ant-form-item[b-1kxtv33jml],
.standardFormRow .ant-legacy-form-item[b-1kxtv33jml] {
  margin-right: 24px;
}
.standardFormRow .ant-form-item-label label[b-1kxtv33jml],
.standardFormRow .ant-legacy-form-item-label label[b-1kxtv33jml] {
  margin-right: 0;
  color: rgba(0, 0, 0, 0.85);
}
.standardFormRow .ant-form-item-label[b-1kxtv33jml],
.standardFormRow .ant-legacy-form-item-label[b-1kxtv33jml],
.standardFormRow .ant-form-item-control[b-1kxtv33jml],
.standardFormRow .ant-legacy-form-item-control[b-1kxtv33jml] {
  padding: 0;
  line-height: 32px;
}
.standardFormRow .label[b-1kxtv33jml] {
  flex: 0 0 auto;
  margin-right: 24px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  text-align: right;
}
.standardFormRow .label > span[b-1kxtv33jml] {
  display: inline-block;
  height: 32px;
  line-height: 32px;
}
.standardFormRow .label > span[b-1kxtv33jml]::after {
  content: '：';
}
.standardFormRow .content[b-1kxtv33jml] {
  flex: 1 1 0;
}
.standardFormRow .content :global .ant-form-item:last-child[b-1kxtv33jml],
.standardFormRow .content :global .ant-legacy-form-item:last-child[b-1kxtv33jml] {
  display: block;
  margin-right: 0;
}
.standardFormRowLast[b-1kxtv33jml] {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.standardFormRowBlock :global .ant-form-item[b-1kxtv33jml],
.standardFormRowBlock :global .ant-legacy-form-item[b-1kxtv33jml],
.standardFormRowBlock :global div.ant-form-item-control-wrapper[b-1kxtv33jml],
.standardFormRowBlock :global div.ant-legacy-form-item-control-wrapper[b-1kxtv33jml] {
  display: block;
}
.standardFormRowGrid .ant-form-item[b-1kxtv33jml],
.standardFormRowGrid .ant-legacy-form-item[b-1kxtv33jml],
.standardFormRowGrid div.ant-form-item-control-wrapper[b-1kxtv33jml],
.standardFormRowGrid div.ant-legacy-form-item-control-wrapper[b-1kxtv33jml] {
  display: block;
}
.standardFormRowGrid .ant-form-item-label[b-1kxtv33jml],
.standardFormRowGrid .ant-legacy-form-item-label[b-1kxtv33jml] {
  float: left;
}
/* /Pages/List/Search/Applications/Components/TagSelect/TagSelect.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.tagSelect[b-1m75mpg7ap] {
  position: relative;
  max-height: 32px;
  margin-left: -8px;
  overflow: hidden;
  line-height: 32px;
  transition: all 0.3s;
  user-select: none;
}
.tagSelect .ant-tag[b-1m75mpg7ap] {
  margin-right: 24px;
  padding: 0 8px;
  font-size: 14px;
}
.tagSelect.expanded[b-1m75mpg7ap] {
  max-height: 200px;
  transition: all 0.3s;
}
.tagSelect .trigger[b-1m75mpg7ap] {
  position: absolute;
  top: 0;
  right: 0;
}
.tagSelect .trigger span.anticon[b-1m75mpg7ap] {
  font-size: 12px;
}
.tagSelect.hasExpandTag[b-1m75mpg7ap] {
  padding-right: 50px;
}
/* /Pages/List/Search/Articles/Articles.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
a.listItemMetaTitle[b-k2gormhrue] {
  color: rgba(0, 0, 0, 0.85);
}
.listItemExtra[b-k2gormhrue] {
  width: 272px;
  height: 1px;
}
.selfTrigger[b-k2gormhrue] {
  margin-left: 12px;
}
@media screen and (max-width: 480px) {
  .selfTrigger[b-k2gormhrue] {
    display: block;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .selfTrigger[b-k2gormhrue] {
    display: block;
    margin-left: 0;
  }
}
@media screen and (max-width: 992px) {
  .listItemExtra[b-k2gormhrue] {
    width: 0;
    height: 1px;
  }
}
/* /Pages/List/TableList/TableList.razor.rz.scp.css */
/* /Pages/Login.razor.rz.scp.css */
.login-page[b-fspv0jmpuc] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.login-page-c1[b-fspv0jmpuc] {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 50px;
    border: 1px solid whitesmoke;
    border-radius: 10px;
}
.login-page-c2[b-fspv0jmpuc] {
    padding: 20px;
    background-image: url("/assets/login-img.png");
    background-size: 500px;
    background-repeat: no-repeat;
    background-position: center;
    min-width: 500px;
    min-height: 400px;
}

.login-page-es-background[b-fspv0jmpuc] {
    background-image: url("/assets/login-img-es-cl.png") !important;
}

.login-container[b-fspv0jmpuc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-logo[b-fspv0jmpuc] {
    display: flex;
    justify-content: center;
}

    .form-logo img[b-fspv0jmpuc] {
        width: 160px;
        margin-bottom: 40px;
    }

.form-container[b-fspv0jmpuc] {
    /*  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10%;*/
    width: 400px;
    padding: 0px 50px 0px 50px;
}
/* /Pages/Management/ListForm.razor.rz.scp.css */
/* Estilos baseados no FormSubmissions-Preview.html */

.container[b-cd18u76t0u] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
}

.page-header[b-cd18u76t0u] {
    background: white;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-title[b-cd18u76t0u] {
    font-size: 24px;
    font-weight: 600;
    color: #262626;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb[b-cd18u76t0u] {
    color: #8c8c8c;
    margin-bottom: 16px;
    font-size: 14px;
}

.card[b-cd18u76t0u] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 24px;
    border: 1px solid #f0f0f0;
}

.card-header[b-cd18u76t0u] {
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-body[b-cd18u76t0u] {
    padding: 24px;
}

/* Layout com sidebar lateral */
#sidebarLayout[b-cd18u76t0u] {
    width: 100%;
    min-height: 100px;
}

#sidebarLayout .main-layout[b-cd18u76t0u] {
    display: flex;
    width: 100%;
    gap: 20px;
    min-height: 500px;
}

#sidebarLayout .filters-sidebar[b-cd18u76t0u] {
    width: 280px;
    min-width: 280px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: fit-content;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 140px);
    position: sticky;
    top: 24px;
    overflow: hidden;
}

.filters-sidebar.collapsed[b-cd18u76t0u] {
    display: none;
}

.sidebar-header[b-cd18u76t0u] {
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}

.sidebar-body[b-cd18u76t0u] {
    padding: 16px;
    overflow: auto;
    flex: 1;
}

.sidebar-footer[b-cd18u76t0u] {
    padding: 12px 16px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 8px;
    flex-direction: column;
    background: #fff;
}

.content-area[b-cd18u76t0u] {
    flex: 1;
    min-width: 0;
}

.layout-toggle[b-cd18u76t0u] {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: auto;
}

/* Mobile responsive */
@media (max-width: 992px) {
    .main-layout[b-cd18u76t0u] {
        flex-direction: column;
    }
    
    .filters-sidebar[b-cd18u76t0u] {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 280px;
        max-height: none;
        border-radius: 0 8px 8px 0;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
    }
    
    .filters-sidebar:not(.collapsed)[b-cd18u76t0u] {
        transform: translateX(0);
    }
}

.filter-group[b-cd18u76t0u] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.filter-label[b-cd18u76t0u] {
    font-weight: 500;
    color: #262626;
    font-size: 14px;
}

.filter-input[b-cd18u76t0u], .filter-select[b-cd18u76t0u], .filter-date[b-cd18u76t0u] {
    padding: 8px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.filter-input:focus[b-cd18u76t0u], .filter-select:focus[b-cd18u76t0u], .filter-date:focus[b-cd18u76t0u] {
    border-color: #1890ff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

/* Multiselect (dropdown com multi seleção) */
.multiselect[b-cd18u76t0u] { 
    position: relative; 
}

.multiselect-display[b-cd18u76t0u] {
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 8px;
    padding: 8px 12px; 
    border: 1px solid #d9d9d9; 
    border-radius: 6px; 
    background: #fff; 
    cursor: pointer;
    transition: all 0.2s ease;
}

.multiselect-display:hover[b-cd18u76t0u] { 
    border-color: #40a9ff; 
}

.multiselect.open .multiselect-display[b-cd18u76t0u] { 
    border-color: #1890ff; 
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2); 
}

.multiselect-display i[b-cd18u76t0u] { 
    color: #8c8c8c; 
    font-size: 12px; 
}

.multiselect-tags[b-cd18u76t0u] { 
    display: flex; 
    gap: 6px; 
    flex-wrap: wrap; 
}

.multiselect-tags .placeholder[b-cd18u76t0u] { 
    color: #8c8c8c; 
}

.tag[b-cd18u76t0u] { 
    background: #f0f0f0; 
    color: #595959; 
    border-radius: 12px; 
    padding: 2px 8px; 
    font-size: 12px; 
    display: inline-flex; 
    align-items: center; 
    gap: 6px; 
}

.tag .remove[b-cd18u76t0u] { 
    cursor: pointer; 
    color: #8c8c8c; 
}

.tag .remove:hover[b-cd18u76t0u] { 
    color: #262626; 
}

.multiselect-panel[b-cd18u76t0u] {
    position: absolute; 
    left: 0; 
    right: 0; 
    top: calc(100% + 6px);
    background: #fff; 
    border: 1px solid #f0f0f0; 
    border-radius: 8px; 
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    padding: 8px; 
    z-index: 1000; 
    display: none;
    max-height: 320px; 
    overflow: hidden;
}

.multiselect.open .multiselect-panel[b-cd18u76t0u] { 
    display: block; 
}

.multiselect-search[b-cd18u76t0u] { 
    width: 100%; 
    padding: 6px 10px; 
    border: 1px solid #d9d9d9; 
    border-radius: 6px; 
    margin-bottom: 8px; 
}

.multiselect-options[b-cd18u76t0u] { 
    max-height: 220px; 
    overflow: auto; 
    padding-right: 4px; 
}

.option-item[b-cd18u76t0u] { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    padding: 6px 4px; 
    font-size: 14px; 
    color: #262626; 
    cursor: pointer;
}

.option-item:hover[b-cd18u76t0u] { 
    background: #fafafa; 
    border-radius: 6px; 
}

/* Presets de período */
.period-presets[b-cd18u76t0u] {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4px; 
    margin-bottom: 8px;
}

.period-preset[b-cd18u76t0u] {
    padding: 4px 8px; 
    border: 1px solid #d9d9d9; 
    background: #fff; 
    border-radius: 4px; 
    cursor: pointer; 
    font-size: 12px;
    transition: all 0.2s;
}

.period-preset:hover[b-cd18u76t0u] { 
    border-color: #40a9ff; 
}

.period-preset.active[b-cd18u76t0u] { 
    border-color: #1890ff; 
    color: #1890ff; 
    background: #f0f8ff; 
}

.date-range[b-cd18u76t0u] {
    display: flex; 
    flex-direction: column; 
    gap: 8px;
}

.btn[b-cd18u76t0u] {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary[b-cd18u76t0u] {
    background: #1890ff;
    color: white;
}

.btn-primary:hover[b-cd18u76t0u] {
    background: #40a9ff;
}

.btn-default[b-cd18u76t0u] {
    background: white;
    color: #262626;
    border: 1px solid #d9d9d9;
}

.btn-default:hover[b-cd18u76t0u] {
    border-color: #40a9ff;
    color: #40a9ff;
}

.btn-icon[b-cd18u76t0u] {
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 4px;
    color: #8c8c8c;
    transition: all 0.2s;
}

.btn-icon:hover[b-cd18u76t0u] {
    background: #f5f5f5;
    color: #1890ff;
}

.table-container[b-cd18u76t0u] {
    overflow-x: auto;
}

.table[b-cd18u76t0u] {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.table th[b-cd18u76t0u] {
    background: #fafafa;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
}

.table td[b-cd18u76t0u] {
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.table tr:hover[b-cd18u76t0u] {
    background: #fafafa;
    cursor: pointer;
}

.status-badge[b-cd18u76t0u] {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.status-complete[b-cd18u76t0u] { 
    background: #f6ffed; 
    color: #52c41a; 
}

.status-partial[b-cd18u76t0u] { 
    background: #fff7e6; 
    color: #fa8c16; 
}

.status-draft[b-cd18u76t0u] { 
    background: #f0f0f0; 
    color: #8c8c8c; 
}

/* Badges de Seção */
.section-badge[b-cd18u76t0u] {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid;
}

.section-tactical[b-cd18u76t0u] {
    background: linear-gradient(135deg, #e6f7ff 0%, #bae7ff 100%);
    color: #1890ff;
    border-color: #91d5ff;
    box-shadow: 0 2px 4px rgba(24, 144, 255, 0.1);
}

.section-strategic[b-cd18u76t0u] {
    background: linear-gradient(135deg, #f9f0ff 0%, #efdbff 100%);
    color: #722ed1;
    border-color: #b37feb;
    box-shadow: 0 2px 4px rgba(114, 46, 209, 0.1);
}

.section-operational[b-cd18u76t0u] {
    background: linear-gradient(135deg, #fff7e6 0%, #ffd591 100%);
    color: #fa8c16;
    border-color: #ffb347;
    box-shadow: 0 2px 4px rgba(250, 140, 22, 0.1);
}

.file-count[b-cd18u76t0u] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1890ff;
}

.pagination[b-cd18u76t0u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.pagination-info[b-cd18u76t0u] {
    color: #8c8c8c;
    font-size: 14px;
}

.pagination-controls[b-cd18u76t0u] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.page-btn[b-cd18u76t0u] {
    padding: 8px 12px;
    border: 1px solid #d9d9d9;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.page-btn:hover:not(.disabled)[b-cd18u76t0u] {
    border-color: #1890ff;
    color: #1890ff;
}

.page-btn.active[b-cd18u76t0u] {
    background: #1890ff;
    color: white;
    border-color: #1890ff;
}

.page-btn.disabled[b-cd18u76t0u] {
    color: #bfbfbf;
    cursor: not-allowed;
}

/* Cards de Estatísticas */
.stats-grid[b-cd18u76t0u] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card[b-cd18u76t0u] {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover[b-cd18u76t0u] {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.stat-card[b-cd18u76t0u]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1890ff, #40a9ff);
}

.stat-value[b-cd18u76t0u] {
    font-size: 28px;
    font-weight: 700;
    color: #262626;
    line-height: 1;
}

.stat-label[b-cd18u76t0u] {
    font-size: 14px;
    color: #8c8c8c;
    margin-top: 4px;
    font-weight: 500;
}

.stat-icon[b-cd18u76t0u] {
    font-size: 32px;
    color: #d9d9d9;
    opacity: 0.7;
}

.stat-icon.success[b-cd18u76t0u] {
    color: #52c41a;
}

.stat-icon.warning[b-cd18u76t0u] {
    color: #fa8c16;
}

.stat-icon.info[b-cd18u76t0u] {
    color: #1890ff;
}
/* /Pages/PasswordNew.razor.rz.scp.css */
.login-container[b-rwwjcgl8l9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-logo[b-rwwjcgl8l9] {
    display: flex;
    justify-content: center;
}

    .form-logo img[b-rwwjcgl8l9] {
        width: 160px;
        margin-bottom: 40px;
    }

.form-container[b-rwwjcgl8l9] {
    /*  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10%;*/
    width: 400px;
    background-color: white;
    padding: 50px;
    border: 1px solid whitesmoke;
    border-radius: 10px;
}
/* /Pages/PasswordRecovery.razor.rz.scp.css */
.login-container[b-b66celkjfn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-logo[b-b66celkjfn] {
    display: flex;
    justify-content: center;
}

    .form-logo img[b-b66celkjfn] {
        width: 160px;
        margin-bottom: 40px;
    }

.form-container[b-b66celkjfn] {
    /*  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10%;*/
    width: 400px;
    background-color: white;
    padding: 50px;
    border: 1px solid whitesmoke;
    border-radius: 10px;
}
/* /Pages/Profile/Advanced/Advanced.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.main__b__3 .ant-descriptions-row > td[b-64grzn0m1l] {
  padding-bottom: 8px;
}
.main__b__3 .ant-page-header-heading-extra[b-64grzn0m1l] {
  flex-direction: column;
}
.headerList[b-64grzn0m1l] {
  margin-bottom: 4px;
}
.headerList .ant-descriptions-row > td[b-64grzn0m1l] {
  padding-bottom: 8px;
}
.headerList .stepDescription[b-64grzn0m1l] {
  position: relative;
  left: 38px;
  padding-top: 8px;
  font-size: 14px;
  text-align: left;
}
.headerList .stepDescription > div[b-64grzn0m1l] {
  margin-top: 8px;
  margin-bottom: 4px;
}
.pageHeader .ant-page-header-heading-extra > * + *[b-64grzn0m1l] {
  margin-left: 8px;
}
.pageHeader .moreInfo[b-64grzn0m1l] {
  display: flex;
  justify-content: space-between;
  width: 200px;
}
@media screen and (max-width: 576px) {
  .stepDescription[b-64grzn0m1l] {
    left: 8px;
  }
  .pageHeader .ant-pro-page-header-wrap-row[b-64grzn0m1l] {
    flex-direction: column;
  }
}
/* /Pages/Profile/Basic/Basic.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.title[b-81rbsze33q] {
  margin-bottom: 16px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
}
/* /Pages/Result/Fail/Fail.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.error_icon[b-x2poj2j4ic] {
  color: #ff4d4f;
}
.title__b__0[b-x2poj2j4ic] {
  margin-bottom: 16px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
}
/* /Pages/Result/Success/Success.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.title__b__1[b-hg7yf1jasa] {
  position: relative;
  color: rgba(0, 0, 0, 0.85);
  font-size: 12px;
  text-align: center;
}
.head-title[b-hg7yf1jasa] {
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500px;
  font-size: 16px;
}
/* /Pages/Teia.razor.rz.scp.css */
.chat-container[b-szxlv8xfl1] {
    display: flex;
    flex-direction: column;
    height: 80vh; /* Ajuste conforme necess�rio */
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    overflow: hidden;
}

.messages[b-szxlv8xfl1] {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px;
    background: #f0f2f5; /* Cor de fundo semelhante ao ChatGPT */
}

.container-message[b-szxlv8xfl1] {
    display: flex;
    align-items: start;
    gap: 5px;
}

.user-message[b-szxlv8xfl1], .ai-message[b-szxlv8xfl1] {
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 10px;
    display: inline-block;
}

.user-message[b-szxlv8xfl1] {
    background-color: #1890ff; /* Cor de fundo para mensagens do usu�rio */
    color: white;
   
    /* margin-left: auto; */ /* Alinha � direita */
}

.ai-message[b-szxlv8xfl1] {
    background-color: #ffffff; /* Cor de fundo para mensagens da AI */
    color: rgba(0, 0, 0, 0.65);
    margin-right: auto; /* Alinha � esquerda */
}

.input-area[b-szxlv8xfl1] {
    display: flex;
    padding: 10px;
    background: #fff;
    border-top: 1px solid #d9d9d9;
}

.send-button[b-szxlv8xfl1] {
    margin-left: 10px;
}

.message-text[b-szxlv8xfl1] {
    margin: 0; /* Remove margens padr�o do <p> para melhor alinhamento */
    text-wrap: wrap;

}
/* /Pages/User/Login/Login.razor.rz.scp.css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
/*此处为了解决样式冲突, 在pro样式的基础上包了一层main, 原始样式从.login开始*/
.main__b__0[b-34pyhpvq8i]  {
  width: 368px;
  margin: 0 auto;
}
@media screen and (max-width: 576px) {
  .main__b__0[b-34pyhpvq8i]  {
    width: 95%;
  }
}
.main__b__0[b-34pyhpvq8i]  .login :global .ant-tabs .ant-tabs-nav {
  margin-bottom: 24px;
  text-align: center;
  border-bottom: 0;
}
.main__b__0[b-34pyhpvq8i]  .login .getCaptcha {
  display: block;
  width: 100%;
}
.main__b__0[b-34pyhpvq8i]  .login .icon {
  color: #1890ff;
}
.main__b__0[b-34pyhpvq8i]  .login .other {
  margin-top: 24px;
  line-height: 22px;
  text-align: left;
}
.main__b__0[b-34pyhpvq8i]  .login .other .icon {
  margin-left: 16px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 24px;
  vertical-align: middle;
  cursor: pointer;
  transition: color 0.3s;
}
.main__b__0[b-34pyhpvq8i]  .login .other .icon:hover {
  color: #1890ff;
}
.main__b__0[b-34pyhpvq8i]  .login .other .register {
  float: right;
}
.main__b__0[b-34pyhpvq8i]  .login .prefixIcon {
  color: rgba(0, 0, 0, 0.25);
  font-size: 14px;
}
.main__b__0[b-34pyhpvq8i]  .login .submit {
  width: 100%;
  margin-top: 24px;
}
/* /Pages/User/Register/Register.razor.rz.scp.css */
.login-page[b-8mb5za0o67] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.login-page-c1[b-8mb5za0o67] {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 50px;
  border: 1px solid whitesmoke;
  border-radius: 10px;
}
.login-page-c2[b-8mb5za0o67] {
  padding: 20px;
  background-image: url("/assets/login-img.png");
  background-size: 500px;
  background-repeat: no-repeat;
  background-position: center;
  min-width: 500px;
  min-height: 400px;
}

.login-page-es-background[b-8mb5za0o67] {
  background-image: url("/assets/login-img-es-cl.png") !important;
}

.login-container[b-8mb5za0o67] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.register[b-8mb5za0o67]{
  width: 500px;
}

.form-logo[b-8mb5za0o67] {
  display: flex;
  justify-content: center;
}

.form-logo img[b-8mb5za0o67] {
  width: 160px;
  margin-bottom: 40px;
}

.form-container[b-8mb5za0o67] {
  /*  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10%;*/
  width: 400px;
  padding: 0px 50px 0px 50px;
}
/* /Pages/User/RegisterResult/RegisterResult.razor.rz.scp.css */
.registerResult[b-4e4308wx9q] {
  width: 800px;
  min-height: 400px;
  margin: auto;
  padding: 80px;
  background: none;
}
.registerResult :global .anticon[b-4e4308wx9q] {
  font-size: 64px;
}
.registerResult .title[b-4e4308wx9q] {
  margin-top: 32px;
  font-size: 20px;
  line-height: 28px;
}
.registerResult .actions[b-4e4308wx9q] {
  margin-top: 40px;
}
.registerResult .actions a + a[b-4e4308wx9q] {
  margin-left: 8px;
}
