/* purgecss start ignore */

.td-combined-avatar {
  position: relative;
  overflow: hidden;
}

.td-combined-avatar-2::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: white;
  left: 50%;
  top: 0;
  z-index: 1;
}

.td-combined-avatar-3::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 1px;
  background-color: white;
  right: 0;
  top: 50%;
  z-index: 1;
}

.td-combined-avatar-3::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: white;
  left: 50%;
  top: 0;
  z-index: 1;
}

.td-combined-avatar-4::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: white;
  left: 0;
  top: 50%;
  z-index: 1;
}

.td-combined-avatar-4::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: white;
  left: 50%;
  top: 0;
  z-index: 1;
}

.td-combined-avatar__item {
  position: absolute;
  border-radius: 0;
}

/* purgecss end ignore */

/* purgecss start ignore */

._-packages-design-components-Highlight-index-module__highLight--33iPN {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* purgecss end ignore */

/* purgecss start ignore */

.modal-anim-appear {
  opacity: 0;
}

.modal-anim-appear .modal-inner {
  margin-top: -40px;
}

.modal-anim-appear-active,
.modal-anim-appear-done {
  opacity: 1;
  transition: opacity 200ms;
}

.modal-anim-appear-active .modal-inner,
.modal-anim-appear-done .modal-inner {
  transition: margin-top 200ms;
  margin-top: 0px;
}

.modal-anim-exit {
  opacity: 1;
}

.modal-anim-exit .modal-inner {
  margin-top: 0px;
}

.modal-anim-exit-active,
.modal-anim-exit-done {
  opacity: 0;
  transition: opacity 200ms;
}

.modal-anim-exit-active .modal-inner,
.modal-anim-exit-done .modal-inner {
  transition: margin-top 200ms;
  margin-top: -40px;
}

/* purgecss end ignore */

/*purgecss start ignore
 */

/**
 * 这里主要是
 * - 处理tailwindcss与 antd 一起用的时候的兼容问题
 * - 与重写部分antd的样式
 */

.ant-message .anticon {
  vertical-align: text-top;
}

.ant-typography-expand,
.ant-typography-copy {
  vertical-align: text-bottom;
}

.ant-input:hover,
.ant-input:focus,
.ant-input-focused {
  border-right-width: inherit !important;
}

.ant-tooltip .ant-tooltip-inner {
  background-color: black;
}

.ant-image .ant-image-mask {
  overflow: hidden;
}

.ant-image-preview-img {
  display: inline;
}

.ant-dropdown-menu {
  padding: 6px 8px;
  min-width: 200px;
  max-width: none;
}

.ant-dropdown-menu .ant-dropdown-menu-item {
  padding: 6px 8px;
  min-height: 32px;
}

.ant-table .ant-table-content {
  overflow: auto;
}

.ant-table .ant-table-content .ant-table-tbody {
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
}

.ant-pagination .ant-pagination-item-link > .anticon {
  vertical-align: text-top;
}

.ant-popover .ant-popover-inner-content {
  background-color: inherit;
}

.tailchat-app {
  --tc-primary-color: #1890ff;
}

.tailchat-app .ant-btn-primary {
  background: var(--tc-primary-color);
  border-color: var(--tc-primary-color);
}

.tailchat-app .ant-btn-primary[disabled],
.tailchat-app .ant-btn-primary[disabled]:hover,
.tailchat-app .ant-btn-primary[disabled]:focus,
.tailchat-app .ant-btn-primary[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  background: #f5f5f5;
  text-shadow: none;
  box-shadow: none;
}

.dark {
  --antd-primary-border: #165996;
  --antd-primary-color: #177ddc;
  --antd-primary-color-hover: #095cb5;
  --antd-primary-dangerous-color: #a61d24;
  --antd-primary-dangerous-color-hover: #800f19;
}

.dark .ant-btn {
  color: rgba(255, 255, 255, 0.65);
  border-color: #434343;
  background: transparent;
}

.dark .ant-btn:hover,
.dark .ant-btn:focus {
  color: var(--antd-primary-border);
  border-color: var(--antd-primary-border);
}

.dark .ant-btn.ant-btn-primary {
  color: #fff;
  border-color: var(--antd-primary-color);
  background: var(--antd-primary-color);
}

.dark .ant-btn.ant-btn-primary:hover {
  border-color: var(--antd-primary-color-hover);
  background: var(--antd-primary-color-hover);
}

.dark .ant-btn.ant-btn-primary.ant-btn-dangerous {
  border-color: var(--antd-primary-dangerous-color);
  background: var(--antd-primary-dangerous-color);
}

.dark .ant-btn.ant-btn-primary.ant-btn-dangerous:hover {
  border-color: var(--antd-primary-dangerous-color-hover);
  background: var(--antd-primary-dangerous-color-hover);
}

.dark .ant-btn.ant-btn-primary[disabled],
.dark .ant-btn.ant-btn-primary[disabled]:hover,
.dark .ant-btn.ant-btn-primary[disabled]:focus,
.dark .ant-btn.ant-btn-primary[disabled]:active {
  color: rgba(255, 255, 255, 0.3);
  border-color: #434343;
  background: #555;
}

.dark .ant-btn.ant-btn-link {
  border-color: transparent;
}

.dark .ant-btn.ant-btn-link[disabled],
.dark .ant-btn.ant-btn-link[disabled]:hover,
.dark .ant-btn.ant-btn-link[disabled]:focus,
.dark .ant-btn.ant-btn-link[disabled]:active {
  color: rgba(255, 255, 255, 0.25);
  border-color: transparent;
  background-color: transparent;
}

.dark .ant-form .ant-form-item-label > label {
  color: white;
}

.dark .ant-form .ant-form-item-has-error .ant-input:not(.ant-input-disabled) {
  background-color: transparent;
  border-color: var(--antd-primary-dangerous-color);
}

.dark .ant-form .ant-form-item-has-error .ant-input:not(.ant-input-disabled):hover {
  background-color: transparent;
}

.dark .ant-form .ant-input-affix-wrapper-status-error:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper,
.dark .ant-form .ant-input-affix-wrapper-status-error:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover {
  background: transparent;
  border-color: var(--antd-primary-dangerous-color);
}

.dark .anticon {
  color: rgba(255, 255, 255, 0.45);
}

.dark .ant-divider {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.dark .ant-dropdown-menu-item-divider,
.dark .ant-dropdown-menu-submenu-title-divider {
  background-color: rgba(255, 255, 255, 0.12);
}

.dark .ant-typography {
  color: rgba(255, 255, 255, 0.65);
}

.dark .ant-input {
  color: rgba(255, 255, 255, 0.85);
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}

.dark .ant-input:hover {
  border-color: #165996;
  border-right-width: 1px !important;
}

.dark .ant-input:focus,
.dark .ant-input.ant-input-focused {
  border-color: #177ddc;
  border-right-width: 1px !important;
  box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
}

.dark .ant-input.border-0 {
  border-width: 0 !important;
}

.dark .ant-input-affix-wrapper {
  color: rgba(255, 255, 255, 0.65);
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}

.dark .ant-checkbox-wrapper {
  color: white;
}

.dark .ant-carousel {
  color: rgba(255, 255, 255, 0.65);
}

.dark .ant-dropdown,
.dark .ant-dropdown-menu-submenu {
  color: rgba(255, 255, 255, 0.65);
}

.dark .ant-dropdown .ant-dropdown-menu,
.dark .ant-dropdown-menu-submenu .ant-dropdown-menu {
  background-color: #1f1f1f;
}

.dark .ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item,
.dark .ant-dropdown-menu-submenu .ant-dropdown-menu .ant-dropdown-menu-item,
.dark .ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-submenu-title,
.dark .ant-dropdown-menu-submenu .ant-dropdown-menu .ant-dropdown-menu-submenu-title {
  color: rgba(255, 255, 255, 0.65);
  background-color: transparent;
}

.dark .ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item:hover,
.dark .ant-dropdown-menu-submenu .ant-dropdown-menu .ant-dropdown-menu-item:hover,
.dark .ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-submenu-title:hover,
.dark .ant-dropdown-menu-submenu .ant-dropdown-menu .ant-dropdown-menu-submenu-title:hover {
  color: rgba(255, 255, 255, 0.85);
  background-color: rgba(255, 255, 255, 0.08);
}

.dark .ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item:hover .ant-dropdown-menu-submenu-arrow-icon,
.dark .ant-dropdown-menu-submenu .ant-dropdown-menu .ant-dropdown-menu-item:hover .ant-dropdown-menu-submenu-arrow-icon,
.dark .ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-submenu-title:hover .ant-dropdown-menu-submenu-arrow-icon,
.dark .ant-dropdown-menu-submenu .ant-dropdown-menu .ant-dropdown-menu-submenu-title:hover .ant-dropdown-menu-submenu-arrow-icon {
  color: rgba(255, 255, 255, 0.85);
}

.dark .ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger,
.dark .ant-dropdown-menu-submenu .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger,
.dark .ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger,
.dark .ant-dropdown-menu-submenu .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger {
  color: #a61d24;
}

.dark .ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger:hover,
.dark .ant-dropdown-menu-submenu .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger:hover,
.dark .ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger:hover,
.dark .ant-dropdown-menu-submenu .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger:hover {
  color: white;
  background-color: #a61d24;
}

.dark .ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow-icon,
.dark .ant-dropdown-menu-submenu .ant-dropdown-menu .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow-icon,
.dark .ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon,
.dark .ant-dropdown-menu-submenu .ant-dropdown-menu .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon {
  color: rgba(255, 255, 255, 0.65);
}

.dark .ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item-disabled,
.dark .ant-dropdown-menu-submenu .ant-dropdown-menu .ant-dropdown-menu-item-disabled,
.dark .ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-submenu-title-disabled,
.dark .ant-dropdown-menu-submenu .ant-dropdown-menu .ant-dropdown-menu-submenu-title-disabled {
  color: rgba(255, 255, 255, 0.25);
}

.dark .ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item-disabled:hover,
.dark .ant-dropdown-menu-submenu .ant-dropdown-menu .ant-dropdown-menu-item-disabled:hover,
.dark .ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-submenu-title-disabled:hover,
.dark .ant-dropdown-menu-submenu .ant-dropdown-menu .ant-dropdown-menu-submenu-title-disabled:hover {
  color: rgba(255, 255, 255, 0.25);
  background-color: transparent;
}

.dark .ant-menu {
  background-color: #222222;
  color: rgba(255, 255, 255, 0.85);
  border-right: 1px solid #333333;
}

.dark .ant-tree {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.85);
}

.dark .ant-tree .ant-tree-node-content-wrapper:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.dark .ant-badge {
  color: rgba(255, 255, 255, 0.65);
}

.dark .ant-badge .ant-badge-count {
  color: #fff;
  background: var(--antd-primary-dangerous-color);
  box-shadow: 0 0 0 1px #141414;
}

.dark .ant-empty.ant-empty-normal {
  color: rgba(255, 255, 255, 0.65);
}

.dark .ant-empty .ant-empty-img-default-ellipse {
  fill: #fff;
  fill-opacity: 0.08;
}

.dark .ant-empty .ant-empty-img-default-path-1 {
  fill: #262626;
}

.dark .ant-empty .ant-empty-img-default-path-2 {
  fill: url(#linearGradient-1);
}

.dark .ant-empty .ant-empty-img-default-path-3 {
  fill: #595959;
}

.dark .ant-empty .ant-empty-img-default-path-4 {
  fill: #434343;
}

.dark .ant-empty .ant-empty-img-default-path-5 {
  fill: #595959;
}

.dark .ant-empty .ant-empty-img-default-g {
  fill: #434343;
}

.dark .ant-empty .ant-empty-img-simple-ellipse {
  fill: #fff;
  fill-opacity: 0.08;
}

.dark .ant-empty .ant-empty-img-simple-g {
  stroke: #434343;
}

.dark .ant-empty .ant-empty-img-simple-path {
  fill: #262626;
  stroke: #434343;
}

.dark .ant-modal .ant-modal-content {
  background-color: #222222;
}

.dark .ant-modal .ant-modal-content .ant-modal-confirm-content {
  color: rgba(255, 255, 255, 0.85);
}

.dark .ant-result .ant-result-title {
  color: #fff;
}

.dark .ant-table {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.2);
}

.dark .ant-table .ant-table-thead > tr > th {
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid #303030;
}

.dark .ant-table .ant-table-tbody > tr > td {
  border-bottom: 1px solid #303030;
}

.dark .ant-table .ant-table-tbody > tr.ant-table-placeholder:hover > td {
  background-color: rgba(255, 255, 255, 0.2);
}

.dark .ant-table .ant-table-tbody tr.ant-table-row:hover > td,
.dark .ant-table .ant-table-tbody tr > td.ant-table-cell-row-hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.dark .ant-select .ant-select-selector {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.12);
}

.dark .ant-select .ant-select-arrow {
  color: rgba(0, 0, 0, 0.3);
}

.dark .ant-select-dropdown {
  background-color: #1f1f1f;
}

.dark .ant-select-dropdown .ant-select-item {
  color: rgba(255, 255, 255, 0.85);
  background-color: transparent;
}

.dark .ant-select-dropdown .ant-select-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.dark .ant-select-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  background-color: #111b26;
}

.dark .ant-pagination {
  color: rgba(255, 255, 255, 0.85);
}

.dark .ant-pagination .ant-pagination-prev .ant-pagination-item-link,
.dark .ant-pagination .ant-pagination-next .ant-pagination-item-link {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
}

.dark .ant-pagination .ant-pagination-prev .ant-pagination-item-link:hover,
.dark .ant-pagination .ant-pagination-next .ant-pagination-item-link:hover {
  border-color: #177ddc;
  color: #177ddc;
}

.dark .ant-pagination .ant-pagination-disabled .ant-pagination-item-link {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.3);
}

.dark .ant-pagination .ant-pagination-disabled:hover .ant-pagination-item-link {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.3);
}

.dark .ant-pagination .ant-pagination-item {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark .ant-pagination .ant-pagination-item:hover {
  border-color: #177ddc;
  color: #177ddc;
}

.dark .ant-pagination .ant-pagination-item > a {
  color: rgba(255, 255, 255, 0.85);
}

.dark .ant-pagination .ant-pagination-item-active {
  border-color: #177ddc;
}

.dark .ant-popover .ant-popover-arrow > .ant-popover-arrow-content,
.dark .ant-popover .ant-popover-arrow > .ant-popover-arrow-content::before,
.dark .ant-popover .ant-popover-inner {
  background-color: #1f1f1f;
}

.dark .ant-popover .ant-popover-inner-content {
  color: rgba(255, 255, 255, 0.85);
}

.dark .ant-tag.ant-tag-processing {
  color: #177ddc;
  background: #111b26;
  border-color: #153450;
}

/*purgecss end ignore
 */

/*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
::before,
::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

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

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='reset'] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

fieldset {
  margin: 0;
  padding: 0;
}

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

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button {
  cursor: pointer;
}

/**
 * Override legacy focus reset from Normalize with modern Firefox focus styles.
 *
 * This is actually an improvement over the new defaults in Firefox in our testing,
 * as it triggers the better focus styles even for links, which still use a dotted
 * outline in Firefox by default.
 */

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * 1. Make replaced elements `display: block` by default as that's
 *    the behavior you want almost all of the time. Inspired by
 *    CSS Remedy, with `svg` added as well.
 *
 *    https://github.com/mozdevs/cssremedy/issues/14
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
video {
  max-width: 100%;
  height: auto;
}

/**
 * Ensure the default browser behavior of the `hidden` attribute.
 */

[hidden] {
  display: none;
}

*, ::before, ::after{
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}

body {
  font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, PingFang SC, Microsoft YaHei, Source Han Sans SC, Noto Sans CJK SC, WenQuanYi Micro Hei, sans-serif;
}

h1 {
  font-size: 1.5rem;
  line-height: 2rem;
}

h2 {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

h3 {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

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

#app .pointer-events-none{
  pointer-events: none;
}

#app .visible{
  visibility: visible;
}

#app .static{
  position: static;
}

#app .fixed{
  position: fixed;
}

#app .absolute{
  position: absolute;
}

#app .relative{
  position: relative;
}

#app .inset-0{
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

#app .top-0{
  top: 0px;
}

#app .top-3{
  top: 0.75rem;
}

#app .top-8{
  top: 2rem;
}

#app .top-0\.5{
  top: 0.125rem;
}

#app .top-3\.5{
  top: 0.875rem;
}

#app .-top-3{
  top: -0.75rem;
}

#app .right-0{
  right: 0px;
}

#app .right-1{
  right: 0.25rem;
}

#app .right-2{
  right: 0.5rem;
}

#app .right-8{
  right: 2rem;
}

#app .right-2\.5{
  right: 0.625rem;
}

#app .bottom-0{
  bottom: 0px;
}

#app .bottom-4{
  bottom: 1rem;
}

#app .left-0{
  left: 0px;
}

#app .z-10{
  z-index: 10;
}

#app .focus\:z-10:focus{
  z-index: 10;
}

#app .float-right{
  float: right;
}

#app .m-auto{
  margin: auto;
}

#app .mx-2{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

#app .mx-auto{
  margin-left: auto;
  margin-right: auto;
}

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

#app .my-1{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

#app .my-2{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

#app .my-3{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

#app .-my-3{
  margin-top: -0.75rem;
  margin-bottom: -0.75rem;
}

#app .mt-0{
  margin-top: 0px;
}

#app .mt-1{
  margin-top: 0.25rem;
}

#app .mt-2{
  margin-top: 0.5rem;
}

#app .mt-4{
  margin-top: 1rem;
}

#app .mt-8{
  margin-top: 2rem;
}

#app .mt-10{
  margin-top: 2.5rem;
}

#app .mt-0\.5{
  margin-top: 0.125rem;
}

#app .-mt-11{
  margin-top: -2.75rem;
}

#app .mr-1{
  margin-right: 0.25rem;
}

#app .mr-2{
  margin-right: 0.5rem;
}

#app .mr-3{
  margin-right: 0.75rem;
}

#app .mb-0{
  margin-bottom: 0px;
}

#app .mb-1{
  margin-bottom: 0.25rem;
}

#app .mb-2{
  margin-bottom: 0.5rem;
}

#app .mb-3{
  margin-bottom: 0.75rem;
}

#app .mb-4{
  margin-bottom: 1rem;
}

#app .mb-0\.5{
  margin-bottom: 0.125rem;
}

#app .mb-2\.5{
  margin-bottom: 0.625rem;
}

#app .ml-0{
  margin-left: 0px;
}

#app .ml-1{
  margin-left: 0.25rem;
}

#app .ml-2{
  margin-left: 0.5rem;
}

#app .ml-3{
  margin-left: 0.75rem;
}

#app .ml-0\.5{
  margin-left: 0.125rem;
}

#app .block{
  display: block;
}

#app .inline-block{
  display: inline-block;
}

#app .inline{
  display: inline;
}

#app .flex{
  display: flex;
}

#app .table{
  display: table;
}

#app .hidden{
  display: none;
}

#app .group:hover .group-hover\:block{
  display: block;
}

#app .group:hover .group-hover\:inline-block{
  display: inline-block;
}

#app .h-1{
  height: 0.25rem;
}

#app .h-2{
  height: 0.5rem;
}

#app .h-6{
  height: 1.5rem;
}

#app .h-8{
  height: 2rem;
}

#app .h-10{
  height: 2.5rem;
}

#app .h-11{
  height: 2.75rem;
}

#app .h-12{
  height: 3rem;
}

#app .h-14{
  height: 3.5rem;
}

#app .h-24{
  height: 6rem;
}

#app .h-32{
  height: 8rem;
}

#app .h-36{
  height: 9rem;
}

#app .h-full{
  height: 100%;
}

#app .group:hover .group-hover\:h-5{
  height: 1.25rem;
}

#app .max-h-44{
  max-height: 11rem;
}

#app .max-h-72{
  max-height: 18rem;
}

#app .max-h-80{
  max-height: 20rem;
}

#app .min-h-full{
  min-height: 100%;
}

#app .w-0{
  width: 0px;
}

#app .w-2{
  width: 0.5rem;
}

#app .w-6{
  width: 1.5rem;
}

#app .w-8{
  width: 2rem;
}

#app .w-12{
  width: 3rem;
}

#app .w-18{
  width: 4.5rem;
}

#app .w-24{
  width: 6rem;
}

#app .w-32{
  width: 8rem;
}

#app .w-40{
  width: 10rem;
}

#app .w-60{
  width: 15rem;
}

#app .w-80{
  width: 20rem;
}

#app .w-96{
  width: 24rem;
}

#app .w-142{
  width: 35.5rem;
}

#app .w-1\/3{
  width: 33.333333%;
}

#app .w-2\/3{
  width: 66.666667%;
}

#app .w-full{
  width: 100%;
}

#app .max-w-lg{
  max-width: 32rem;
}

#app .flex-1{
  flex: 1 1 0%;
}

#app .flex-auto{
  flex: 1 1 auto;
}

#app .flex-shrink-0{
  flex-shrink: 0;
}

#app .transform{
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

#app .rotate-180{
  --tw-rotate: 180deg;
}

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

@keyframes ping{
  75%, 100%{
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse{
  50%{
    opacity: .5;
  }
}

@keyframes bounce{
  0%, 100%{
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50%{
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

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

#app .cursor-pointer{
  cursor: pointer;
}

#app .select-none{
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#app .select-text{
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
}

#app .resize{
  resize: both;
}

#app .list-inside{
  list-style-position: inside;
}

#app .list-disc{
  list-style-type: disc;
}

#app .appearance-none{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

#app .flex-row{
  flex-direction: row;
}

#app .flex-col{
  flex-direction: column;
}

#app .flex-col-reverse{
  flex-direction: column-reverse;
}

#app .flex-wrap{
  flex-wrap: wrap;
}

#app .items-start{
  align-items: flex-start;
}

#app .items-end{
  align-items: flex-end;
}

#app .items-center{
  align-items: center;
}

#app .justify-start{
  justify-content: flex-start;
}

#app .justify-end{
  justify-content: flex-end;
}

#app .justify-center{
  justify-content: center;
}

#app .justify-between{
  justify-content: space-between;
}

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

#app .space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

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

#app .space-y-0 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0px * var(--tw-space-y-reverse));
}

#app .space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

#app .space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

#app .space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.125rem * var(--tw-space-y-reverse));
}

#app .space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.625rem * var(--tw-space-y-reverse));
}

#app .overflow-auto{
  overflow: auto;
}

#app .overflow-hidden{
  overflow: hidden;
}

#app .overflow-y-auto{
  overflow-y: auto;
}

#app .overflow-y-scroll{
  overflow-y: scroll;
}

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

#app .overflow-ellipsis{
  text-overflow: ellipsis;
}

#app .break-words{
  overflow-wrap: break-word;
}

#app .break-all{
  word-break: break-all;
}

#app .rounded-sm{
  border-radius: 0.125rem;
}

#app .rounded{
  border-radius: 0.25rem;
}

#app .rounded-md{
  border-radius: 0.375rem;
}

#app .rounded-lg{
  border-radius: 0.5rem;
}

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

#app .rounded-full{
  border-radius: 9999px;
}

#app .rounded-1\/2{
  border-radius: 50%;
}

#app .hover\:rounded-lg:hover{
  border-radius: 0.5rem;
}

#app .rounded-t-md{
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

#app .border-0{
  border-width: 0px;
}

#app .border-2{
  border-width: 2px;
}

#app .border{
  border-width: 1px;
}

#app .last\:border-0:last-child{
  border-width: 0px;
}

#app .border-r{
  border-right-width: 1px;
}

#app .border-b{
  border-bottom-width: 1px;
}

#app .border-l-2{
  border-left-width: 2px;
}

#app .border-l-4{
  border-left-width: 4px;
}

#app .border-l{
  border-left-width: 1px;
}

#app .border-none{
  border-style: none;
}

#app .border-transparent{
  border-color: transparent;
}

#app .border-black{
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
}

#app .border-white{
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}

#app .border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}

#app .border-gray-500{
  --tw-border-opacity: 1;
  border-color: rgba(107, 114, 128, var(--tw-border-opacity));
}

#app .border-gray-900{
  --tw-border-opacity: 1;
  border-color: rgba(17, 24, 39, var(--tw-border-opacity));
}

#app .focus\:border-indigo-500:focus{
  --tw-border-opacity: 1;
  border-color: rgba(99, 102, 241, var(--tw-border-opacity));
}

#app .dark .dark\:border-gray-100{
  --tw-border-opacity: 1;
  border-color: rgba(243, 244, 246, var(--tw-border-opacity));
}

#app .border-opacity-20{
  --tw-border-opacity: 0.2;
}

#app .border-opacity-30{
  --tw-border-opacity: 0.3;
}

#app .border-opacity-40{
  --tw-border-opacity: 0.4;
}

#app .border-opacity-50{
  --tw-border-opacity: 0.5;
}

#app .bg-transparent{
  background-color: transparent;
}

#app .bg-black{
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

#app .bg-white{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

#app .bg-gray-400{
  --tw-bg-opacity: 1;
  background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
}

#app .bg-gray-600{
  --tw-bg-opacity: 1;
  background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
}

#app .bg-gray-700{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
}

#app .bg-red-600{
  --tw-bg-opacity: 1;
  background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
}

#app .bg-green-500{
  --tw-bg-opacity: 1;
  background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
}

#app .bg-green-600{
  --tw-bg-opacity: 1;
  background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
}

#app .bg-indigo-400{
  --tw-bg-opacity: 1;
  background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
}

#app .bg-indigo-600{
  --tw-bg-opacity: 1;
  background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
}

#app .bg-inherit{
  background-color: inherit;
}

#app .bg-navbar-light{
  --tw-bg-opacity: 1;
  background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
}

#app .bg-sidebar-light{
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
}

#app .bg-content-light{
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}

#app .hover\:bg-black:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

#app .hover\:bg-white:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

#app .hover\:bg-indigo-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
}

#app .dark .dark\:bg-black{
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

#app .dark .dark\:bg-white{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

#app .dark .dark\:bg-gray-600{
  --tw-bg-opacity: 1;
  background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
}

#app .dark .dark\:bg-gray-800{
  --tw-bg-opacity: 1;
  background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
}

#app .dark .dark\:bg-navbar-dark{
  --tw-bg-opacity: 1;
  background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
}

#app .dark .dark\:bg-sidebar-dark{
  --tw-bg-opacity: 1;
  background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
}

#app .dark .dark\:bg-content-dark{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
}

#app .dark .dark\:hover\:bg-white:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

#app .bg-opacity-0{
  --tw-bg-opacity: 0;
}

#app .bg-opacity-10{
  --tw-bg-opacity: 0.1;
}

#app .bg-opacity-20{
  --tw-bg-opacity: 0.2;
}

#app .bg-opacity-30{
  --tw-bg-opacity: 0.3;
}

#app .bg-opacity-40{
  --tw-bg-opacity: 0.4;
}

#app .bg-opacity-50{
  --tw-bg-opacity: 0.5;
}

#app .bg-opacity-60{
  --tw-bg-opacity: 0.6;
}

#app .bg-opacity-80{
  --tw-bg-opacity: 0.8;
}

#app .bg-opacity-100{
  --tw-bg-opacity: 1;
}

#app .hover\:bg-opacity-10:hover{
  --tw-bg-opacity: 0.1;
}

#app .hover\:bg-opacity-20:hover{
  --tw-bg-opacity: 0.2;
}

#app .hover\:bg-opacity-40:hover{
  --tw-bg-opacity: 0.4;
}

#app .hover\:bg-opacity-60:hover{
  --tw-bg-opacity: 0.6;
}

#app .hover\:bg-opacity-100:hover{
  --tw-bg-opacity: 1;
}

#app .dark .dark\:bg-opacity-0{
  --tw-bg-opacity: 0;
}

#app .dark .dark\:bg-opacity-20{
  --tw-bg-opacity: 0.2;
}

#app .dark .dark\:bg-opacity-30{
  --tw-bg-opacity: 0.3;
}

#app .dark .dark\:bg-opacity-40{
  --tw-bg-opacity: 0.4;
}

#app .dark .dark\:hover\:bg-opacity-10:hover{
  --tw-bg-opacity: 0.1;
}

#app .dark .dark\:hover\:bg-opacity-20:hover{
  --tw-bg-opacity: 0.2;
}

#app .bg-repeat-y{
  background-repeat: repeat-y;
}

#app .p-1{
  padding: 0.25rem;
}

#app .p-2{
  padding: 0.5rem;
}

#app .p-4{
  padding: 1rem;
}

#app .p-2\.5{
  padding: 0.625rem;
}

#app .px-0{
  padding-left: 0px;
  padding-right: 0px;
}

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

#app .px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

#app .px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

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

#app .px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

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

#app .px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}

#app .px-10{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

#app .px-0\.5{
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}

#app .px-1\.5{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

#app .px-2\.5{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

#app .py-0{
  padding-top: 0px;
  padding-bottom: 0px;
}

#app .py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

#app .py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

#app .py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

#app .py-20{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

#app .py-0\.5{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

#app .py-2\.5{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

#app .pt-0{
  padding-top: 0px;
}

#app .pt-4{
  padding-top: 1rem;
}

#app .pt-24{
  padding-top: 6rem;
}

#app .pt-40{
  padding-top: 10rem;
}

#app .pt-0\.5{
  padding-top: 0.125rem;
}

#app .pr-2{
  padding-right: 0.5rem;
}

#app .pb-2{
  padding-bottom: 0.5rem;
}

#app .pb-4{
  padding-bottom: 1rem;
}

#app .pb-6{
  padding-bottom: 1.5rem;
}

#app .pb-20{
  padding-bottom: 5rem;
}

#app .pb-2\.5{
  padding-bottom: 0.625rem;
}

#app .pl-2{
  padding-left: 0.5rem;
}

#app .text-left{
  text-align: left;
}

#app .text-center{
  text-align: center;
}

#app .text-right{
  text-align: right;
}

#app .align-top{
  vertical-align: top;
}

#app .align-middle{
  vertical-align: middle;
}

#app .text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}

#app .text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}

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

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

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

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

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

#app .text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}

#app .text-5xl{
  font-size: 3rem;
  line-height: 1;
}

#app .text-6xl{
  font-size: 3.75rem;
  line-height: 1;
}

#app .text-8xl{
  font-size: 6rem;
  line-height: 1;
}

#app .text-9xl{
  font-size: 8rem;
  line-height: 1;
}

#app .font-normal{
  font-weight: 400;
}

#app .font-medium{
  font-weight: 500;
}

#app .font-semibold{
  font-weight: 600;
}

#app .font-bold{
  font-weight: 700;
}

#app .font-extrabold{
  font-weight: 800;
}

#app .uppercase{
  text-transform: uppercase;
}

#app .leading-6{
  line-height: 1.5rem;
}

#app .leading-9{
  line-height: 2.25rem;
}

#app .text-black{
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

#app .text-white{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

#app .text-gray-200{
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, var(--tw-text-opacity));
}

#app .text-gray-400{
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-text-opacity));
}

#app .text-gray-500{
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-text-opacity));
}

#app .text-gray-600{
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, var(--tw-text-opacity));
}

#app .text-gray-700{
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-text-opacity));
}

#app .text-gray-900{
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, var(--tw-text-opacity));
}

#app .text-red-500{
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, var(--tw-text-opacity));
}

#app .text-green-400{
  --tw-text-opacity: 1;
  color: rgba(52, 211, 153, var(--tw-text-opacity));
}

#app .text-indigo-700{
  --tw-text-opacity: 1;
  color: rgba(67, 56, 202, var(--tw-text-opacity));
}

#app .text-typography-light{
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-text-opacity));
}

#app .hover\:text-gray-800:hover{
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, var(--tw-text-opacity));
}

#app .dark .dark\:text-white{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

#app .dark .dark\:text-gray-300{
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, var(--tw-text-opacity));
}

#app .dark .dark\:text-typography-dark{
  color: rgba(255, 255, 255, 0.85);
}

#app .dark .dark\:hover\:text-gray-200:hover{
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, var(--tw-text-opacity));
}

#app .text-opacity-50{
  --tw-text-opacity: 0.5;
}

#app .text-opacity-60{
  --tw-text-opacity: 0.6;
}

#app .text-opacity-80{
  --tw-text-opacity: 0.8;
}

#app .hover\:text-opacity-100:hover{
  --tw-text-opacity: 1;
}

#app .dark .dark\:text-opacity-50{
  --tw-text-opacity: 0.5;
}

#app .dark .dark\:text-opacity-80{
  --tw-text-opacity: 0.8;
}

#app .placeholder-gray-500::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
}

#app .placeholder-gray-500::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
}

#app .opacity-0{
  opacity: 0;
}

#app .opacity-30{
  opacity: 0.3;
}

#app .opacity-40{
  opacity: 0.4;
}

#app .opacity-60{
  opacity: 0.6;
}

#app .opacity-70{
  opacity: 0.7;
}

#app .opacity-80{
  opacity: 0.8;
}

#app .opacity-100{
  opacity: 1;
}

#app .group:hover .group-hover\:opacity-100{
  opacity: 1;
}

#app .hover\:opacity-80:hover{
  opacity: 0.8;
}

#app .hover\:opacity-100:hover{
  opacity: 1;
}

#app .disabled\:opacity-50:disabled{
  opacity: 0.5;
}

#app .disabled\:opacity-80:disabled{
  opacity: 0.8;
}

*, ::before, ::after{
  --tw-shadow: 0 0 #0000;
}

#app .shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

#app .shadow{
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

#app .shadow-md{
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

#app .shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

#app .shadow-none{
  --tw-shadow: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

#app .outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

#app .focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

*, ::before, ::after{
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

#app .focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

#app .focus\:ring-indigo-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity));
}

#app .focus\:ring-offset-2:focus{
  --tw-ring-offset-width: 2px;
}

#app .filter{
  --tw-blur: var(--tw-empty,/*!*/ /*!*/);
  --tw-brightness: var(--tw-empty,/*!*/ /*!*/);
  --tw-contrast: var(--tw-empty,/*!*/ /*!*/);
  --tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
  --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
  --tw-invert: var(--tw-empty,/*!*/ /*!*/);
  --tw-saturate: var(--tw-empty,/*!*/ /*!*/);
  --tw-sepia: var(--tw-empty,/*!*/ /*!*/);
  --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

#app .transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

#app .transition{
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

#app .transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

#app .transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

#app .transition-width{
  transition-property: width;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

#app .duration-100{
  transition-duration: 100ms;
}

#app .duration-300{
  transition-duration: 300ms;
}

#app .thin-line-bottom::after{
  content: " ";
  position: absolute;
  display: block;
  bottom: 1px;
  left: 0;
  right: 0;
  height: 1px;
  box-shadow: 0 1px 0 rgba(4,4,5,0.2),0 1.5px 0 rgba(6,6,7,0.05),0 2px 0 rgba(4,4,5,0.05);
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 640px){
  #app .sm\:w-full{
    width: 100%;
  }
}

@media (min-width: 768px){
  #app .md\:w-full{
    width: 100%;
  }
}

@media (min-width: 1024px){
  #app .lg\:w-1\/2{
    width: 50%;
  }
}

@media (min-width: 1280px){
  #app .xl\:w-1\/3{
    width: 33.333333%;
  }
}

@media (min-width: 1536px){
  #app .\32xl\:w-1\/4{
    width: 25%;
  }
}

@media (max-width: 639px){
  #app .mobile\:mb-1{
    margin-bottom: 0.25rem;
  }

  #app .mobile\:hidden{
    display: none;
  }

  #app .mobile\:w-full{
    width: 100%;
  }

  #app .mobile\:flex-col{
    flex-direction: column;
  }

  #app .mobile\:items-start{
    align-items: flex-start;
  }

  #app .mobile\:overflow-auto{
    overflow: auto;
  }

  #app .mobile\:py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  #app .mobile\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 640px){
  #app .desktop\:overflow-auto{
    overflow: auto;
  }
}

/* purgecss start ignore */

body {
  overflow: hidden;
}

#tailchat-app {
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-text-opacity));
  --tc-background-image: url(/assets/bg.7550497.webp);
  --tc-content-background-image: '';
  --tc-content-background-image-opacity: 0.2;
  --tc-content-background-color: #f3f4f6;
  /* 滚动条 */
}

#tailchat-app .tc-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: var(--tc-background-image);
}

#tailchat-app .tc-content-background {
  pointer-events: none;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  display: block;
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: var(--tc-content-background-image);
  opacity: var(--tc-content-background-image-opacity);
}

#tailchat-app ::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}

#tailchat-app ::-webkit-scrollbar-corner {
  background-color: transparent;
}

#tailchat-app ::-webkit-scrollbar-thumb {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  --tw-bg-opacity: 0.1;
  border-color: transparent;
  background-clip: padding-box;
  border-width: 4px;
  border-style: solid;
  border-radius: 8px;
}

#tailchat-app ::-webkit-scrollbar-thumb:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  --tw-bg-opacity: 0.2;
}

#tailchat-app ::-webkit-scrollbar-track {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  --tw-bg-opacity: 0.05;
  border-color: transparent;
  background-clip: padding-box;
  border-width: 4px;
  border-style: solid;
  border-radius: 8px;
}

#tailchat-app.dark {
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
  color: rgba(255, 255, 255, 0.85);
  --tc-content-background-color: #374151;
}

#tailchat-app.dark h1, #tailchat-app.dark h2, #tailchat-app.dark h3, #tailchat-app.dark h4, #tailchat-app.dark h5, #tailchat-app.dark h6 {
  color: rgba(255, 255, 255, 0.85);
}

#tailchat-app.dark ::-webkit-scrollbar-corner {
  background-color: transparent;
}

#tailchat-app.dark ::-webkit-scrollbar-thumb {
  background-color: #202225;
}

#tailchat-app.dark ::-webkit-scrollbar-thumb:hover {
  background-color: #202225;
}

#tailchat-app.dark ::-webkit-scrollbar-track {
  background-color: #2f3136;
}

/* purgecss end ignore */

