@charset "UTF-8";
:root {
  --vh: 1vh;
}

body.loading * {
  pointer-events: none;
}

body {
  text-size-adjust: 100% !important;
  -webkit-text-size-adjust: 100% !important;
  -moz-text-size-adjust: 100% !important;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

h1, h2, a {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

:root {
  font-size: 24px;
}

html,
:root,
body {
  min-height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "微软雅黑", Verdana, Arial, sans-serif;
}

.base-ctn {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
[data-theme=light] .base-ctn {
  background-image: url("/static/101/images/bg.jpg");
}
[data-theme=black] .base-ctn {
  background-image: url("/static/101/images/bg.jpeg");
}
@media (max-width: 768px) {
  [data-theme=light] .base-ctn {
    background-image: url("/static/101/images/bg-mobile-light.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  [data-theme=black] .base-ctn {
    background-image: url("/static/101/images/bg.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.base-ctn.no-bg {
  background-image: none;
}
.base-ctn .menu-ctn {
  height: 100vh;
  height: 100dvh;
  position: fixed;
  z-index: 999999;
}
[data-theme=black] .base-ctn .menu-ctn {
  background-image: url("/static/101/images/menu-bg1.jpg");
}
@media (max-width: 768px) {
  .base-ctn .menu-ctn {
    display: none;
  }
}
.base-ctn .main-ctn {
  min-height: 100vh;
  min-height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  overflow: auto;
}
@media (max-width: 768px) {
  .base-ctn .main-ctn {
    min-height: calc(100vh - 48px);
    min-height: calc(100dvh - 48px);
  }
}
.base-ctn .main-ctn .content-ctn {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .base-ctn .main-ctn .content-ctn {
    padding-top: 48px;
  }
}
.base-ctn .main-ctn .content-ctn.fullscreen {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.base-ctn .main-ctn.main-ctn-margin-none {
  margin-left: 0 !important;
}
.base-ctn header {
  z-index: 9;
  display: none;
}
@media (max-width: 768px) {
  .base-ctn header {
    display: block;
  }
}
.base-ctn header nav {
  position: absolute;
  z-index: inherit;
  height: 48px;
  width: 100%;
}
[data-theme=light] .base-ctn header nav {
  background-color: #FFFFFF;
}
[data-theme=black] .base-ctn header nav {
  background-color: rgba(255, 255, 255, 0.3490196078);
}
.base-ctn header nav {
  padding: 0 0.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.base-ctn header nav i {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
.base-ctn header nav .nav-logos {
  display: flex;
  align-items: center;
}
.base-ctn header nav .nav-logos > i {
  background-image: url("/static/101/images/menu-mobile.png");
  z-index: 100;
}
.base-ctn header nav .nav-right {
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 6px;
}
.base-ctn header nav .header-icon {
  background-image: url("/static/101/images/book7.png");
}
.base-ctn header nav .lang-dropdown {
  position: relative;
  background-color: #F3F3F3;
  z-index: inherit;
}
[data-theme=light] .base-ctn header nav .lang-dropdown {
  color: #400E0E;
}
[data-theme=black] .base-ctn header nav .lang-dropdown {
  color: #400E0E;
}
.base-ctn header nav .lang-dropdown {
  width: 5rem;
  text-align: center;
  padding: 0.2rem 0;
  border-radius: 10em;
  font-size: 0.65rem;
  font-weight: bold;
  cursor: pointer;
}
.base-ctn header nav .lang-dropdown .options {
  font-size: 0.65rem;
  background-color: #F3F3F3;
  border-radius: 1em;
  position: absolute;
  width: 100%;
  top: 0;
  overflow: hidden;
}
.base-ctn header nav .lang-dropdown .options .option {
  display: block;
  text-decoration: none;
  height: 1.35rem;
  line-height: 1.35rem;
}
[data-theme=light] .base-ctn header nav .lang-dropdown .options .option {
  color: #400E0E;
}
[data-theme=black] .base-ctn header nav .lang-dropdown .options .option {
  color: #400E0E;
}
.base-ctn header nav .lang-dropdown .options .option:hover {
  background-color: #F8F8F8;
}

[data-theme=light] .base-ctn:has(.home-main) {
  background-color: url("/static/101/images/bg.jpg");
}

[data-theme=black] .base-ctn:has(.home-main) {
  background-image: url("/static/101/images/bg.jpeg");
}

.nav-logo {
  height: 32px;
  margin: 0 5px;
}
.nav-logo img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.nav-logo img.logo-w {
  padding: 0 0.5rem;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
}

a:link, a:active, a:hover, a:visited {
  text-decoration: none;
}

header .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 3rem;
  font-size: 0.75rem;
}
header .content .logo {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("/static/101/images/chessboard-light.png");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(0, 0.375rem);
}
header h1 {
  font-size: 1rem;
  line-height: 3rem;
  display: inline-block;
}
header .menu {
  display: none;
  cursor: pointer;
}
header .header-links {
  display: flex;
  gap: 0.875rem;
  align-items: center;
  justify-content: center;
}
header .header-links .header-link {
  font-weight: bold;
}
[data-theme=light] header .header-links .header-link.login {
  color: #400E0E;
}
[data-theme=black] header .header-links .header-link.login {
  color: #400E0E;
}
header .header-links .header-link.signup {
  padding: 0 0.75rem;
  height: 1.75rem;
  line-height: 1.75rem;
}
[data-theme=light] header .header-links .header-link.signup {
  background-color: #02B3F7;
}
[data-theme=black] header .header-links .header-link.signup {
  background-color: #226C2F;
}
header .header-links .header-link.signup {
  color: white;
  border-radius: 10em;
  text-align: center;
  cursor: pointer;
}

.topic-layout.mobile .content {
  margin-top: 0px;
}

footer {
  margin-top: 2rem;
}
footer .content {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.583rem;
}
footer .content .time {
  color: #414141;
}
footer .content .bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.25em;
  padding: 0 0.5em 0 0;
}
footer .content .info {
  display: flex;
  gap: 2rem;
}
footer .content .info .company-name {
  color: #414141;
}
footer .content .info .icp {
  color: #45487E;
}
footer .content .about-links {
  display: flex;
  gap: 0.5rem;
  color: #45487E;
  font-weight: bold;
}
footer .content .about-links > a:hover {
  text-decoration: underline;
}

.bottom-bar {
  display: none;
  z-index: 8;
  background-color: white;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  padding: 0.5rem 1rem;
  bottom: 0;
  left: 0;
  right: 0;
}
.bottom-bar .button {
  color: #5C617A;
  font-size: 0.75rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.bottom-bar .button .button-icon {
  width: 1rem;
  height: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.drawer {
  display: none;
  z-index: 9;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.drawer .drawer-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 20vw;
  background-color: white;
  padding: 0.5rem;
}
.drawer .drawer-content .drawer-nav {
  font-weight: bold;
  color: #45487E;
}
.drawer .drawer-content .drawer-nav li {
  margin: 0.5rem 0;
  cursor: pointer;
}

@media (max-width: 1100px) {
  :root {
    font-size: 20px;
  }
}
@media (max-width: 960px) {
  header h1 {
    display: none;
  }
  header .menu {
    display: inline-block;
    line-height: 3rem;
  }
  .drawer {
    display: block;
  }
  .bottom-bar {
    display: flex;
  }
}
.my-2 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.my-3 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.mx-3 {
  margin-right: 8px;
  margin-left: 8px;
}

.mx-4 {
  margin-right: 16px;
  margin-left: 16px;
}

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

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

.gap-s {
  gap: 4px;
}

.gap {
  gap: 20px;
}

.gap-6 {
  gap: 32px;
}

.submit {
  display: inline-block;
  border-radius: 10em;
}
[data-theme=light] .submit {
  background-color: #5A45B0;
  color: white;
}
[data-theme=black] .submit {
  background-color: #226C2F;
  color: white;
}
.submit {
  cursor: pointer;
  font-weight: bold;
  padding: 0.2em 1.5em;
  font-size: 14px;
  margin-bottom: 4px;
}

/**new**/
.p-0 {
  padding: 0;
}

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

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

.m-0 {
  margin: 0;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.text-0 {
  font-size: 0;
}

.gap-0 {
  gap: 0;
}

.p-xss {
  padding: 0.167rem;
}

.py-xss {
  padding-top: 0.167rem;
  padding-bottom: 0.167rem;
}

.px-xss {
  padding-left: 0.167rem;
  padding-right: 0.167rem;
}

.m-xss {
  margin: 0.167rem;
}

.my-xss {
  margin-top: 0.167rem;
  margin-bottom: 0.167rem;
}

.mx-xss {
  margin-left: 0.167rem;
  margin-right: 0.167rem;
}

.text-xss {
  font-size: 0.167rem;
}

.gap-xss {
  gap: 0.167rem;
}

.p-xs {
  padding: 0.25rem;
}

.py-xs {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.px-xs {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.m-xs {
  margin: 0.25rem;
}

.my-xs {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.mx-xs {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.text-xs {
  font-size: 0.25rem;
}

.gap-xs {
  gap: 0.25rem;
}

.p-sm {
  padding: 0.25rem;
}

.py-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.px-sm {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.m-sm {
  margin: 0.25rem;
}

.my-sm {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.mx-sm {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.text-sm {
  font-size: 0.25rem;
}

.gap-sm {
  gap: 0.25rem;
}

.p-md {
  padding: 0.5rem;
}

.py-md {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-md {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.m-md {
  margin: 0.5rem;
}

.my-md {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.mx-md {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.text-md {
  font-size: 0.5rem;
}

.gap-md {
  gap: 0.5rem;
}

.p-lg {
  padding: 0.75rem;
}

.py-lg {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.px-lg {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.m-lg {
  margin: 0.75rem;
}

.my-lg {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.mx-lg {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.text-lg {
  font-size: 0.75rem;
}

.gap-lg {
  gap: 0.75rem;
}

.p-xl {
  padding: 1rem;
}

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

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

.m-xl {
  margin: 1rem;
}

.my-xl {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

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

.text-xl {
  font-size: 1rem;
}

.gap-xl {
  gap: 1rem;
}

.p-2xl {
  padding: 1.5rem;
}

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

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

.m-2xl {
  margin: 1.5rem;
}

.my-2xl {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.mx-2xl {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

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

.gap-2xl {
  gap: 1.5rem;
}

.p-3xl {
  padding: 1.75rem;
}

.py-3xl {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

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

.m-3xl {
  margin: 1.75rem;
}

.my-3xl {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.mx-3xl {
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}

.text-3xl {
  font-size: 1.75rem;
}

.gap-3xl {
  gap: 1.75rem;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

.pt-xss {
  padding-top: 0.167rem;
}

.pb-xss {
  padding-bottom: 0.167rem;
}

.pl-xss {
  padding-left: 0.167rem;
}

.pr-xss {
  padding-right: 0.167rem;
}

.mt-xss {
  margin-top: 0.167rem;
}

.mb-xss {
  margin-bottom: 0.167rem;
}

.ml-xss {
  margin-left: 0.167rem;
}

.mr-xss {
  margin-right: 0.167rem;
}

.pt-xs {
  padding-top: 0.25rem;
}

.pb-xs {
  padding-bottom: 0.25rem;
}

.pl-xs {
  padding-left: 0.25rem;
}

.pr-xs {
  padding-right: 0.25rem;
}

.mt-xs {
  margin-top: 0.25rem;
}

.mb-xs {
  margin-bottom: 0.25rem;
}

.ml-xs {
  margin-left: 0.25rem;
}

.mr-xs {
  margin-right: 0.25rem;
}

.pt-sm {
  padding-top: 0.25rem;
}

.pb-sm {
  padding-bottom: 0.25rem;
}

.pl-sm {
  padding-left: 0.25rem;
}

.pr-sm {
  padding-right: 0.25rem;
}

.mt-sm {
  margin-top: 0.25rem;
}

.mb-sm {
  margin-bottom: 0.25rem;
}

.ml-sm {
  margin-left: 0.25rem;
}

.mr-sm {
  margin-right: 0.25rem;
}

.pt-md {
  padding-top: 0.5rem;
}

.pb-md {
  padding-bottom: 0.5rem;
}

.pl-md {
  padding-left: 0.5rem;
}

.pr-md {
  padding-right: 0.5rem;
}

.mt-md {
  margin-top: 0.5rem;
}

.mb-md {
  margin-bottom: 0.5rem;
}

.ml-md {
  margin-left: 0.5rem;
}

.mr-md {
  margin-right: 0.5rem;
}

.pt-lg {
  padding-top: 0.75rem;
}

.pb-lg {
  padding-bottom: 0.75rem;
}

.pl-lg {
  padding-left: 0.75rem;
}

.pr-lg {
  padding-right: 0.75rem;
}

.mt-lg {
  margin-top: 0.75rem;
}

.mb-lg {
  margin-bottom: 0.75rem;
}

.ml-lg {
  margin-left: 0.75rem;
}

.mr-lg {
  margin-right: 0.75rem;
}

.pt-xl {
  padding-top: 1rem;
}

.pb-xl {
  padding-bottom: 1rem;
}

.pl-xl {
  padding-left: 1rem;
}

.pr-xl {
  padding-right: 1rem;
}

.mt-xl {
  margin-top: 1rem;
}

.mb-xl {
  margin-bottom: 1rem;
}

.ml-xl {
  margin-left: 1rem;
}

.mr-xl {
  margin-right: 1rem;
}

.pt-2xl {
  padding-top: 1.5rem;
}

.pb-2xl {
  padding-bottom: 1.5rem;
}

.pl-2xl {
  padding-left: 1.5rem;
}

.pr-2xl {
  padding-right: 1.5rem;
}

.mt-2xl {
  margin-top: 1.5rem;
}

.mb-2xl {
  margin-bottom: 1.5rem;
}

.ml-2xl {
  margin-left: 1.5rem;
}

.mr-2xl {
  margin-right: 1.5rem;
}

.pt-3xl {
  padding-top: 1.75rem;
}

.pb-3xl {
  padding-bottom: 1.75rem;
}

.pl-3xl {
  padding-left: 1.75rem;
}

.pr-3xl {
  padding-right: 1.75rem;
}

.mt-3xl {
  margin-top: 1.75rem;
}

.mb-3xl {
  margin-bottom: 1.75rem;
}

.ml-3xl {
  margin-left: 1.75rem;
}

.mr-3xl {
  margin-right: 1.75rem;
}

[data-theme=light] .text-title {
  color: #2B0B0B;
}
[data-theme=black] .text-title {
  color: #2B0B0B;
}

[data-theme=light] .text-info {
  color: #129A00;
}
[data-theme=black] .text-info {
  color: #400E0E;
}

[data-theme=light] .text-info2 {
  color: #00A47C;
}
[data-theme=black] .text-info2 {
  color: #400E0E;
}

[data-theme=light] .text-error {
  color: #FF6133;
}
[data-theme=black] .text-error {
  color: #400E0E;
}

[data-theme=light] .text-content {
  color: #5A45B0;
}
[data-theme=black] .text-content {
  color: #400E0E;
}

.text-content2 {
  color: white;
}

[data-theme=light] .text-link2 {
  color: #5A45B0;
}
[data-theme=light] .text-link2:hover {
  color: #5A45B0;
}
[data-theme=black] .text-link2 {
  color: #400E0E;
}
[data-theme=black] .text-link2:hover {
  color: #5A45B0;
}

[data-theme=light] .text-link {
  color: #5A45B0;
}
[data-theme=black] .text-link {
  color: #5A45B0;
}

.text-big {
  font-size: 16px;
}

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

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

[data-theme=light] .text-color-cancel {
  color: #00A47C;
}
[data-theme=black] .text-color-cancel {
  color: #00A47C;
}

[data-theme=light] .text-warning {
  color: #FF8E6D;
}
[data-theme=black] .text-warning {
  color: #924547;
}

.text-strong {
  color: #2B0B0B;
}

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

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

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

[data-theme=light] .bg-aqua {
  background-color: rgba(255, 255, 255, 0.4);
}
[data-theme=black] .bg-aqua {
  background-color: rgba(255, 255, 255, 0.4);
}

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

[data-theme=light] .bg-grey {
  background-color: rgba(205, 223, 205, 0.55);
}
[data-theme=black] .bg-grey {
  background-color: rgba(214, 212, 203, 0.55);
}

[data-theme=light] .bg {
  background-color: #00A47C;
}
[data-theme=black] .bg {
  background-color: #400E0E;
}

.flex {
  display: flex;
}

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

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

h1.title {
  font-size: 1.083rem;
}
[data-theme=light] h1.title {
  color: #2B0B0B;
}
[data-theme=black] h1.title {
  color: #2B0B0B;
}

.bg-aqua {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 1px;
}

.cursor-pointer {
  cursor: pointer;
}

.hover-underline:hover {
  text-decoration: underline;
}

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

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

.basis-fit {
  flex-basis: fit-content;
}

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

.inline-flex {
  display: inline-flex;
}

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

.inline {
  display: inline;
}

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

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

.flex-3 {
  flex: 3;
}

.relative {
  position: relative;
}

.nowrap {
  white-space: nowrap;
}

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

.max-w-full {
  max-width: 100%;
}

.hidden {
  overflow: hidden;
}

.ellipsis {
  text-overflow: ellipsis;
}

.bold {
  font-weight: bold;
}

.icon-label {
  display: flex;
  gap: 4px;
  cursor: pointer;
}
[data-theme=light] .icon-label {
  color: #2B0B0B;
}
[data-theme=black] .icon-label {
  color: #2B0B0B;
}

.space {
  margin: 0 4px;
}

.none {
  display: none;
}

.noshow-destop {
  display: none !important;
  z-index: -1;
}
@media (max-width: 768px) {
  .noshow-destop {
    display: block !important;
    z-index: auto;
  }
}

@media (max-width: 768px) {
  .noshow-mobile {
    display: none;
    z-index: -1;
  }
}

.icon-font {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}
[data-theme=light] .icon-font {
  background-color: #00a47c;
}
[data-theme=black] .icon-font {
  background-color: #226C2F;
}
.icon-font {
  background-image: url("/static/101/images/add.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  cursor: pointer;
}

.icon-75p {
  background-size: 75%;
}

[data-theme=light] .icon-rect {
  background-color: transparent;
}
[data-theme=black] .icon-rect {
  background-color: transparent;
}

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

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

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.absolute {
  position: absolute;
}

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.trigger-open-icon {
  background-image: url("/static/101/images/toggle-1.png");
}

.trigger-open-p-icon {
  background-image: url("/static/101/images/toggle-1-p.png");
  width: 18px;
  height: 18px;
  background-color: #5a43b1 !important;
  border-color: #5a43b1 !important;
}

.trigger-close-icon {
  background-image: url("/static/101/images/toggle-2.png");
}

[data-theme=light] .trash-icon {
  background-image: url("/static/101/images/chat-trash.png");
  color: #2B0B0B;
}
[data-theme=black] .trash-icon {
  background-image: url("/static/101/images/chat-trash.png");
  color: #2B0B0B;
}

[data-theme=light] .block-icon {
  background-image: url("/static/101/images/chat-block.png");
  color: #2B0B0B;
}
[data-theme=black] .block-icon {
  background-image: url("/static/101/images/chat-block.png");
  color: #2B0B0B;
}

.blocked-icon {
  background-image: url("/static/101/images/blocked.png");
}

[data-theme=light] .search-icon {
  background-image: url("/static/101/images/search-icon.png");
}
[data-theme=black] .search-icon {
  background-image: url("/static/101/images/search-d-icon.png");
}

[data-theme=light] .mark-right-icon {
  background-image: url("/static/101/images/card-r-light.png");
}
[data-theme=black] .mark-right-icon {
  background-image: url("/static/101/images/card-r.png");
}

.no-bg {
  background-color: #FCFCFC !important;
}

.font-bold {
  font-weight: bold;
}

.sidebar.menu-open {
  width: 170px;
}
.sidebar {
  transition: width 0.3s ease;
  height: 100vh;
  height: 100dvh; /* 使用动态视口高度，解决移动端状态栏滑动隐藏问题 */
  height: calc(var(--vh, 1vh) * 100); /* 回退方案：使用自定义属性 */
  font-weight: bold;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
[data-theme=light] .sidebar {
  color: #400E0E;
  background-color: #FFFFFF;
}
[data-theme=light] .sidebar a {
  color: #400E0E;
}
[data-theme=black] .sidebar {
  color: #400E0E;
  background-color: rgba(193, 181, 174, 0.4);
}
[data-theme=black] .sidebar a {
  color: #400E0E;
}
.sidebar .menu-button {
  margin: 0.5rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  border-radius: 0.3rem;
  cursor: pointer;
}
.sidebar .menu-button.color-sub {
  background-color: #EDF1F5;
}
.sidebar .menu-button.color-main {
  color: #FFFFFF;
}
[data-theme=light] .sidebar .menu-button.color-main {
  background-color: #00A47C;
}
[data-theme=black] .sidebar .menu-button.color-main {
  background-color: #226C2F;
}
.sidebar .menu-button.color-main a {
  color: #FFFFFF;
}
.sidebar .menu-button-m {
  display: block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/static/101/images/regi-m-b.png");
  margin: 0 auto;
}
[data-theme=light] .sidebar .menu-button-m.menu-button-reg {
  background-image: url("/static/101/images/regi-m.png");
}
[data-theme=black] .sidebar .menu-button-m.menu-button-reg {
  background-image: url("/static/101/images/regi-m-b.png");
}
[data-theme=light] .sidebar .menu-button-m.menu-button-login {
  background-image: url("/static/101/images/login-m.png");
}
[data-theme=black] .sidebar .menu-button-m.menu-button-login {
  background-image: url("/static/101/images/login-m-b.png");
}
.sidebar .username {
  cursor: pointer;
  position: relative;
}
.sidebar .username p {
  margin: 0.5rem;
  padding: 0.5rem;
}
[data-theme=light] .sidebar .username p {
  background-color: #EDF0F3;
}
[data-theme=black] .sidebar .username p {
  background-color: rgba(236, 231, 227, 0.4705882353);
}
.sidebar .username p {
  border-radius: 0.25rem;
  overflow: hidden;
  text-align: center;
}
.sidebar .username .avatar {
  margin: 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-size: cover;
}

@keyframes menu-mask-show {
  from {
    display: block;
    transform: translateX(0);
  }
  to {
    display: none;
    transform: translateX(-9999px);
  }
}
.menu {
  list-style-type: none;
  padding: 0;
  font-weight: bold;
  position: relative;
}
.menu .menu-mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9998;
  animation: menu-mask-show 1s steps(1);
  animation-fill-mode: forwards;
}
.menu .menu-title {
  width: 100%;
  padding: 1rem 0.2rem 0.5rem 0.5rem;
  display: flex;
  align-items: center;
}
.menu .menu-title .menu-heading {
  flex: 1;
}
.menu .menu-title i {
  flex: 0 0 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/static/101/images/logo-m.png");
}
.menu .menu-title h1 {
  font-size: 19px;
  white-space: nowrap;
}
.menu h1, .menu h2, .menu h3, .menu h4, .menu h5, .menu h6, .menu a {
  margin: 0;
}
.menu h1:hover, .menu h2:hover, .menu h3:hover, .menu h4:hover, .menu h5:hover, .menu h6:hover, .menu a:hover {
  text-decoration: none;
}

.menu-item {
  padding: 0.25rem 0.2rem 0.25rem 0.5rem;
  cursor: pointer;
  position: relative;
}
@media (max-height: 600px) {
  .menu-item {
    padding: 0.1rem 0.2rem 0.1rem 0.5rem;
  }
}
.menu-item i {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-height: 600px) {
  .menu-item i {
    width: 1.3rem;
    height: 1.3rem;
  }
}
.menu-item .menu-text {
  margin: 0;
  padding: 0;
}
.menu-item .submenu-title, .menu-item .signup {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.menu-item .submenu-title .menu-0, .menu-item .signup .menu-0 {
  background-image: url("/static/101/images/menu-0.png");
}
.menu-item .submenu-title .menu-1, .menu-item .signup .menu-1 {
  background-image: url("/static/101/images/menu-1.png");
}
.menu-item .submenu-title .menu-2, .menu-item .signup .menu-2 {
  background-image: url("/static/101/images/menu-2.png");
}
.menu-item .submenu-title .menu-3, .menu-item .signup .menu-3 {
  background-image: url("/static/101/images/menu-3.png");
}
.menu-item .submenu-title .menu-4, .menu-item .signup .menu-4 {
  background-image: url("/static/101/images/menu-4.png");
}
.menu-item .submenu-title .menu-5, .menu-item .signup .menu-5 {
  background-image: url("/static/101/images/menu-5.png");
}
.menu-item .submenu-title .menu-6, .menu-item .signup .menu-6 {
  background-image: url("/static/101/images/menu-6.png");
}
.menu-item .submenu-title .menu-7, .menu-item .signup .menu-7 {
  background-image: url("/static/101/images/menu-7.png");
}
.menu-item .submenu-title .menu-8, .menu-item .signup .menu-8 {
  background-image: url("/static/101/images/menu-8.png");
}
.menu-item .submenu-title h2, .menu-item .signup h2 {
  font-size: 15px;
  white-space: nowrap;
}
.menu-item .submenu-title a, .menu-item .signup a {
  display: none;
}
@media (min-width: 768px) or ((pointer: fine) and (hover: hover)) {
  .menu-item .submenu-title, .menu-item .signup {
    position: relative;
  }
  .menu-item .submenu-title a, .menu-item .signup a {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99;
    pointer-events: all;
  }
}
.menu-item.sidebar-menu-close {
  text-align: left;
  margin-top: 0.2rem;
}
.menu-item.sidebar-menu-close i {
  width: 1rem;
  height: 1rem;
  background-image: url("/static/101/images/close.png");
}
[data-theme=light] .menu-item.hv {
  background-color: #C2E7FF;
}
[data-theme=black] .menu-item.hv {
  background-color: rgba(171, 153, 144, 0.5019607843);
}
.menu-item.hover .submenu {
  display: block;
}
[data-theme=light] .menu-item.hover {
  background-color: #C2E7FF;
}
[data-theme=black] .menu-item.hover {
  background-color: rgba(171, 153, 144, 0.5019607843);
}

.menu-item:hover .submenu {
  display: block;
}
[data-theme=light] .menu-item:hover {
  background-color: #C2E7FF;
}
[data-theme=black] .menu-item:hover {
  background-color: rgba(171, 153, 144, 0.5019607843);
}

.submenu {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 170px;
  z-index: 9999;
}
[data-theme=light] .submenu {
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("");
}
[data-theme=black] .submenu {
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/static/101/images/menu-bg2.jpg");
}
.submenu {
  width: 200px;
}
.submenu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  height: 100%;
}
[data-theme=light] .submenu ul {
  background-color: #F9FAFD;
  border-right: 1px solid #CFD8E1;
}
[data-theme=black] .submenu ul {
  background-color: rgba(167, 153, 146, 0.2470588235);
  border-right: 1px solid #BCAFA3;
}
.submenu li {
  flex: 1;
  padding: 15px 15px 15px 0;
  cursor: pointer;
}
@media (max-height: 600px) {
  .submenu li {
    padding: 8px 15px 8px 0;
  }
}
.submenu .signup i {
  margin-left: 10px;
}
.submenu .menu-0-0 {
  background-image: url("/static/101/images/menu-0-0.png");
}
.submenu .menu-0-1 {
  background-image: url("/static/101/images/menu-0-1.png");
}
.submenu .menu-0-2 {
  background-image: url("/static/101/images/menu-0-2.png");
}
.submenu .menu-0-3 {
  background-image: url("/static/101/images/menu-0-3.png");
}
.submenu .menu-0-4 {
  background-image: url("/static/101/images/menu-0-4.png");
}
.submenu .menu-0-5 {
  background-image: url("/static/101/images/menu-0-5.png");
}
.submenu .menu-0-6 {
  background-image: url("/static/101/images/menu-0-6.png");
}
.submenu .menu-0-7 {
  background-image: url("/static/101/images/menu-0-7.png");
}
.submenu .menu-0-8 {
  background-image: url("/static/101/images/menu-0-8.png");
}
.submenu .menu-0-9 {
  background-image: url("/static/101/images/menu-0-9.png");
}
.submenu .menu-0-10 {
  background-image: url("/static/101/images/menu-0-10.png");
}
.submenu .menu-0-11 {
  background-image: url("/static/101/images/menu-0-11.png");
}
.submenu .menu-0-12 {
  background-image: url("/static/101/images/menu-0-12.png");
}
.submenu .menu-1-0 {
  background-image: url("/static/101/images/menu-1-0.png");
}
.submenu .menu-1-1 {
  background-image: url("/static/101/images/menu-1-1.png");
}
.submenu .menu-1-2 {
  background-image: url("/static/101/images/menu-1-2.png");
}
.submenu .menu-1-3 {
  background-image: url("/static/101/images/menu-1-3.png");
}
.submenu .menu-1-4 {
  background-image: url("/static/101/images/menu-1-4.png");
}
.submenu .menu-1-5 {
  background-image: url("/static/101/images/menu-1-5.png");
}
.submenu .menu-1-6 {
  background-image: url("/static/101/images/menu-1-6.png");
}
.submenu .menu-1-7 {
  background-image: url("/static/101/images/menu-1-7.png");
}
.submenu .menu-1-8 {
  background-image: url("/static/101/images/menu-1-8.png");
}
.submenu .menu-1-9 {
  background-image: url("/static/101/images/menu-1-9.png");
}
.submenu .menu-1-10 {
  background-image: url("/static/101/images/menu-1-10.png");
}
.submenu .menu-1-11 {
  background-image: url("/static/101/images/menu-1-11.png");
}
.submenu .menu-1-12 {
  background-image: url("/static/101/images/menu-1-12.png");
}
.submenu .menu-2-0 {
  background-image: url("/static/101/images/menu-2-0.png");
}
.submenu .menu-2-1 {
  background-image: url("/static/101/images/menu-2-1.png");
}
.submenu .menu-2-2 {
  background-image: url("/static/101/images/menu-2-2.png");
}
.submenu .menu-2-3 {
  background-image: url("/static/101/images/menu-2-3.png");
}
.submenu .menu-2-4 {
  background-image: url("/static/101/images/menu-2-4.png");
}
.submenu .menu-2-5 {
  background-image: url("/static/101/images/menu-2-5.png");
}
.submenu .menu-2-6 {
  background-image: url("/static/101/images/menu-2-6.png");
}
.submenu .menu-2-7 {
  background-image: url("/static/101/images/menu-2-7.png");
}
.submenu .menu-2-8 {
  background-image: url("/static/101/images/menu-2-8.png");
}
.submenu .menu-2-9 {
  background-image: url("/static/101/images/menu-2-9.png");
}
.submenu .menu-2-10 {
  background-image: url("/static/101/images/menu-2-10.png");
}
.submenu .menu-2-11 {
  background-image: url("/static/101/images/menu-2-11.png");
}
.submenu .menu-2-12 {
  background-image: url("/static/101/images/menu-2-12.png");
}
.submenu .menu-3-0 {
  background-image: url("/static/101/images/menu-3-0.png");
}
.submenu .menu-3-1 {
  background-image: url("/static/101/images/menu-3-1.png");
}
.submenu .menu-3-2 {
  background-image: url("/static/101/images/menu-3-2.png");
}
.submenu .menu-3-3 {
  background-image: url("/static/101/images/menu-3-3.png");
}
.submenu .menu-3-4 {
  background-image: url("/static/101/images/menu-3-4.png");
}
.submenu .menu-3-5 {
  background-image: url("/static/101/images/menu-3-5.png");
}
.submenu .menu-3-6 {
  background-image: url("/static/101/images/menu-3-6.png");
}
.submenu .menu-3-7 {
  background-image: url("/static/101/images/menu-3-7.png");
}
.submenu .menu-3-8 {
  background-image: url("/static/101/images/menu-3-8.png");
}
.submenu .menu-3-9 {
  background-image: url("/static/101/images/menu-3-9.png");
}
.submenu .menu-3-10 {
  background-image: url("/static/101/images/menu-3-10.png");
}
.submenu .menu-3-11 {
  background-image: url("/static/101/images/menu-3-11.png");
}
.submenu .menu-3-12 {
  background-image: url("/static/101/images/menu-3-12.png");
}
.submenu .menu-4-0 {
  background-image: url("/static/101/images/menu-4-0.png");
}
.submenu .menu-4-1 {
  background-image: url("/static/101/images/menu-4-1.png");
}
.submenu .menu-4-2 {
  background-image: url("/static/101/images/menu-4-2.png");
}
.submenu .menu-4-3 {
  background-image: url("/static/101/images/menu-4-3.png");
}
.submenu .menu-4-4 {
  background-image: url("/static/101/images/menu-4-4.png");
}
.submenu .menu-4-5 {
  background-image: url("/static/101/images/menu-4-5.png");
}
.submenu .menu-4-6 {
  background-image: url("/static/101/images/menu-4-6.png");
}
.submenu .menu-4-7 {
  background-image: url("/static/101/images/menu-4-7.png");
}
.submenu .menu-4-8 {
  background-image: url("/static/101/images/menu-4-8.png");
}
.submenu .menu-4-9 {
  background-image: url("/static/101/images/menu-4-9.png");
}
.submenu .menu-4-10 {
  background-image: url("/static/101/images/menu-4-10.png");
}
.submenu .menu-4-11 {
  background-image: url("/static/101/images/menu-4-11.png");
}
.submenu .menu-4-12 {
  background-image: url("/static/101/images/menu-4-12.png");
}
.submenu .menu-5-0 {
  background-image: url("/static/101/images/menu-5-0.png");
}
.submenu .menu-5-1 {
  background-image: url("/static/101/images/menu-5-1.png");
}
.submenu .menu-5-2 {
  background-image: url("/static/101/images/menu-5-2.png");
}
.submenu .menu-5-3 {
  background-image: url("/static/101/images/menu-5-3.png");
}
.submenu .menu-5-4 {
  background-image: url("/static/101/images/menu-5-4.png");
}
.submenu .menu-5-5 {
  background-image: url("/static/101/images/menu-5-5.png");
}
.submenu .menu-5-6 {
  background-image: url("/static/101/images/menu-5-6.png");
}
.submenu .menu-5-7 {
  background-image: url("/static/101/images/menu-5-7.png");
}
.submenu .menu-5-8 {
  background-image: url("/static/101/images/menu-5-8.png");
}
.submenu .menu-5-9 {
  background-image: url("/static/101/images/menu-5-9.png");
}
.submenu .menu-5-10 {
  background-image: url("/static/101/images/menu-5-10.png");
}
.submenu .menu-5-11 {
  background-image: url("/static/101/images/menu-5-11.png");
}
.submenu .menu-5-12 {
  background-image: url("/static/101/images/menu-5-12.png");
}
.submenu .menu-6-0 {
  background-image: url("/static/101/images/menu-6-0.png");
}
.submenu .menu-6-1 {
  background-image: url("/static/101/images/menu-6-1.png");
}
.submenu .menu-6-2 {
  background-image: url("/static/101/images/menu-6-2.png");
}
.submenu .menu-6-3 {
  background-image: url("/static/101/images/menu-6-3.png");
}
.submenu .menu-6-4 {
  background-image: url("/static/101/images/menu-6-4.png");
}
.submenu .menu-6-5 {
  background-image: url("/static/101/images/menu-6-5.png");
}
.submenu .menu-6-6 {
  background-image: url("/static/101/images/menu-6-6.png");
}
.submenu .menu-6-7 {
  background-image: url("/static/101/images/menu-6-7.png");
}
.submenu .menu-6-8 {
  background-image: url("/static/101/images/menu-6-8.png");
}
.submenu .menu-6-9 {
  background-image: url("/static/101/images/menu-6-9.png");
}
.submenu .menu-6-10 {
  background-image: url("/static/101/images/menu-6-10.png");
}
.submenu .menu-6-11 {
  background-image: url("/static/101/images/menu-6-11.png");
}
.submenu .menu-6-12 {
  background-image: url("/static/101/images/menu-6-12.png");
}
.submenu .menu-7-0 {
  background-image: url("/static/101/images/menu-7-0.png");
}
.submenu .menu-7-1 {
  background-image: url("/static/101/images/menu-7-1.png");
}
.submenu .menu-7-2 {
  background-image: url("/static/101/images/menu-7-2.png");
}
.submenu .menu-7-3 {
  background-image: url("/static/101/images/menu-7-3.png");
}
.submenu .menu-7-4 {
  background-image: url("/static/101/images/menu-7-4.png");
}
.submenu .menu-7-5 {
  background-image: url("/static/101/images/menu-7-5.png");
}
.submenu .menu-7-6 {
  background-image: url("/static/101/images/menu-7-6.png");
}
.submenu .menu-7-7 {
  background-image: url("/static/101/images/menu-7-7.png");
}
.submenu .menu-7-8 {
  background-image: url("/static/101/images/menu-7-8.png");
}
.submenu .menu-7-9 {
  background-image: url("/static/101/images/menu-7-9.png");
}
.submenu .menu-7-10 {
  background-image: url("/static/101/images/menu-7-10.png");
}
.submenu .menu-7-11 {
  background-image: url("/static/101/images/menu-7-11.png");
}
.submenu .menu-7-12 {
  background-image: url("/static/101/images/menu-7-12.png");
}
.submenu .menu-8-0 {
  background-image: url("/static/101/images/menu-8-0.png");
}
.submenu .menu-8-1 {
  background-image: url("/static/101/images/menu-8-1.png");
}
.submenu .menu-8-2 {
  background-image: url("/static/101/images/menu-8-2.png");
}
.submenu .menu-8-3 {
  background-image: url("/static/101/images/menu-8-3.png");
}
.submenu .menu-8-4 {
  background-image: url("/static/101/images/menu-8-4.png");
}
.submenu .menu-8-5 {
  background-image: url("/static/101/images/menu-8-5.png");
}
.submenu .menu-8-6 {
  background-image: url("/static/101/images/menu-8-6.png");
}
.submenu .menu-8-7 {
  background-image: url("/static/101/images/menu-8-7.png");
}
.submenu .menu-8-8 {
  background-image: url("/static/101/images/menu-8-8.png");
}
.submenu .menu-8-9 {
  background-image: url("/static/101/images/menu-8-9.png");
}
.submenu .menu-8-10 {
  background-image: url("/static/101/images/menu-8-10.png");
}
.submenu .menu-8-11 {
  background-image: url("/static/101/images/menu-8-11.png");
}
.submenu .menu-8-12 {
  background-image: url("/static/101/images/menu-8-12.png");
}
.submenu .signup:hover {
  text-decoration: none;
}
[data-theme=light] .submenu .signup:hover {
  background-color: #C2E7FF;
}
[data-theme=black] .submenu .signup:hover {
  background-color: rgba(157, 141, 133, 0.5019607843);
}

.show-submenu {
  display: block;
}

.modal-show .submenu {
  width: 100%;
}

.sidebar-bottom {
  padding-left: 0.5rem;
  padding-bottom: 0.5rem;
  width: 100%;
}
.sidebar-bottom .settings .setting-btn {
  display: flex;
  align-items: center;
  padding-bottom: 0.8rem;
  cursor: pointer;
}
.sidebar-bottom .settings .setting-btn i {
  width: 1rem;
  height: 1rem;
  margin: 0 0.5rem;
  background-repeat: no-repeat;
  background-size: cover;
}
.sidebar-bottom .settings .setting-btn .hide-icon {
  background-image: url("/static/101/images/menu-hide.png");
}
.sidebar-bottom .settings .setting-btn .open-icon {
  background-image: url("/static/101/images/menu-open.png");
}
.sidebar-bottom .settings .setting-btn .language-icon {
  background-image: url("/static/101/images/menu-lng.png");
}
.sidebar-bottom .settings .setting-btn .help-icon {
  background-image: url("/static/101/images/menu-help.png");
}
.sidebar-bottom .settings .setting-btn span {
  font-size: 15px;
  white-space: nowrap;
}
.sidebar-bottom .settings .setting-btn span a {
  font-weight: bold;
}
.sidebar-bottom p {
  font-size: 12px;
  font-weight: 400;
  color: #414141;
}

.menu-close .menu-heading, .menu-close .menu-input {
  display: none;
}
.menu-close.sidebar {
  width: 2.8rem;
}
.menu-close .setting-btn span {
  display: none;
}
.menu-close .setting-btn {
  justify-content: center;
}
.menu-close .sidebar-bottom {
  padding-left: 0;
}
.menu-close .sidebar-bottom p {
  display: none;
}
.menu-close .submenu, .menu-close .popmenu {
  left: 2.8rem;
}

.menu-close-main {
  margin-left: 2.8rem !important;
}
@media (max-width: 768px) {
  .menu-close-main {
    margin-left: 0 !important;
  }
}

.menu-open-main {
  margin-left: 170px;
}
@media (max-width: 768px) {
  .menu-open-main {
    margin-left: 0;
  }
}

.fullscreen .menu-ctn {
  display: none;
}

.menu-modal {
  display: none !important;
  z-index: 10002;
  background-color: white;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-modal .center-layout {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  overflow-y: auto;
  background-repeat: no-repeat;
  background-size: cover;
}
[data-theme=light] .menu-modal .center-layout {
  background-image: url("/static/101/images/bg.jpg");
}
[data-theme=black] .menu-modal .center-layout {
  background-image: url("/static/101/images/bg.jpeg");
}

.modal-show {
  display: block !important;
}

[data-theme=light] .username .lang-dropdown {
  background-color: #F9FAFD;
}
[data-theme=black] .username .lang-dropdown {
  background-color: rgba(167, 153, 146, 0.2470588235);
}

[data-theme=light] .popmenu-ctn {
  background-color: #F9FAFD;
}
[data-theme=black] .popmenu-ctn {
  background-color: rgba(167, 153, 146, 0.2470588235);
}

.popmenu {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 170px;
  width: 160px;
  border-radius: 20px;
  font-size: 14px;
  z-index: 1000000;
}
[data-theme=light] .popmenu {
  background-image: url("");
}
[data-theme=black] .popmenu {
  background-image: url("/static/101/images/menu-bg2.jpg");
}
.popmenu {
  background-color: #EDF1F5;
}
.popmenu > div, .popmenu > a {
  display: block;
  text-align: center;
  padding: 15px;
  cursor: pointer;
  margin: 0;
}
[data-theme=light] .popmenu > div, [data-theme=light] .popmenu > a {
  background-color: #FFFFFF;
}
[data-theme=black] .popmenu > div, [data-theme=black] .popmenu > a {
  background-color: #DCD4CE;
}
.popmenu > div:nth-child(1), .popmenu > a:nth-child(1) {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.popmenu > div:nth-last-child(1), .popmenu > a:nth-last-child(1) {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
[data-theme=light] .popmenu > div:nth-child(even), [data-theme=light] .popmenu > a:nth-child(even) {
  background-color: #f8f9fb;
}
[data-theme=black] .popmenu > div:nth-child(even), [data-theme=black] .popmenu > a:nth-child(even) {
  background-color: #E7E1DB;
}
[data-theme=light] .popmenu div:hover, [data-theme=light] .popmenu a:hover {
  background-color: #C2E7FF;
}
[data-theme=black] .popmenu div:hover, [data-theme=black] .popmenu a:hover {
  background-color: rgba(157, 141, 133, 0.5019607843);
}

.setting-btn:hover .popmenu {
  display: block !important;
}

.username:hover .popmenu {
  display: block !important;
  position: absolute;
  top: 0;
  left: 60%;
  bottom: unset;
  width: 160px;
}

.setting-btn .popmenu {
  transform: translate(-20%, 0);
}

.username-top:hover .popmenu {
  display: block !important;
  position: absolute;
  right: 0;
  left: unset;
  bottom: unset;
  width: 160px;
}

.submenu .username:hover {
  visibility: hidden;
}

.pre-white {
  white-space: pre-wrap;
}

.ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
}

.triangle {
  margin-left: 4px;
  display: inline-block;
  width: 14px;
  height: 12px;
  background-size: cover;
  background-repeat: no-repeat;
}
[data-theme=light] .triangle {
  background-image: url("/static/101/images/triangle-l.png");
}
[data-theme=black] .triangle {
  background-image: url("/static/101/images/triangle.png");
}

.hover-container {
  position: relative;
  z-index: 99;
}
.hover-container .trigger-div {
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  cursor: pointer;
}
.hover-container .header-popup {
  position: absolute;
  top: 85%;
  right: -0.3rem;
  width: 400px;
  z-index: 10000;
}
@media (max-width: 400px) {
  .hover-container .header-popup {
    width: 100vw;
  }
}
.hover-container .header-popup {
  margin-top: 10px;
  border: 1px solid #ddd;
  display: none;
}
.hover-container .header-popup[x-show=open] {
  display: block;
}
.hover-container .avatar {
  z-index: 99;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .hover-container .avatar {
    margin-right: 0.4rem;
  }
}

.profile-container {
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 10px 0;
  font-family: Arial, sans-serif;
  color: #400E0E;
}
.profile-container .close-button {
  background-image: url("/static/101/images/modal-close.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.profile-container .header {
  text-align: left;
  margin-bottom: 10px;
  padding: 2px 20px;
  font-size: 14px;
}
.profile-container .header .username {
  font-size: 16px;
  font-weight: bold;
  top: auto;
}
[data-theme=light] .profile-container .header .username {
  color: #00A47C;
}
[data-theme=black] .profile-container .header .username {
  color: #226C2F;
}
.profile-container .header .stats {
  color: #666;
  margin-left: 5px;
}
.profile-container .header .membership {
  color: #A79873;
  margin: 5px 5px 0 5px;
}
.profile-container .tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  padding: 8px 20px;
}
[data-theme=light] .profile-container .tabs {
  border-top: 1px solid #C4D3DD;
  border-bottom: 1px solid #C4D3DD;
}
[data-theme=black] .profile-container .tabs {
  border-top: 1px solid #CDBBB6;
  border-bottom: 1px solid #CDBBB6;
}
.profile-container .tabs .tab {
  padding: 5px 10px;
  font-size: 14px;
  color: #6F5CCA;
  cursor: pointer;
  border-radius: 5px;
}
.profile-container .tabs .tab.active {
  padding: 5px 15px;
  background-color: #50C062;
  color: #fff;
  border-radius: 15px;
}
.profile-container .popup-content .record-title {
  font-size: 14px;
  margin: 6px 0;
  padding: 0 20px;
}
.profile-container .popup-content .record {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 0 20px;
  gap: 22px;
}
.profile-container .popup-content .record .record-item {
  text-align: center;
}
[data-theme=light] .profile-container .popup-content .record .record-item {
  background-color: #F6F9FB;
}
[data-theme=black] .profile-container .popup-content .record .record-item {
  background-color: #EBEAE7;
}
.profile-container .popup-content .record .record-item {
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  width: 100%;
}
.profile-container .popup-content .record .record-item .record-value {
  font-size: 18px;
  font-weight: bold;
  color: #6F5CCA;
}
.profile-container .popup-content .record .record-item .record-label {
  font-size: 12px;
}
.profile-container .popup-content .links {
  padding: 0 20px;
}
.profile-container .popup-content .links .link-row {
  display: flex;
  gap: 10px;
  justify-content: space-evenly;
  padding: 8px 0;
  text-align: left;
  font-size: 14px;
}
.profile-container .popup-content .links .link-row a {
  display: inline-block;
  width: 100%;
}
.profile-container .popup-content .links .link-row.row1 {
  background-color: #F6F6F6;
  padding-left: 10px;
}
.profile-container .popup-content .links .link-row.row2 {
  background-color: #FFFFFF;
  padding-left: 10px;
}
.profile-container .popup-content .links .link-row.row3 {
  background-color: #F6F6F6;
  padding-left: 10px;
}
.profile-container .popup-content .links .link {
  color: #6F5CCA;
  text-decoration: none;
}
.profile-container .popup-content .links .link:hover {
  color: #7b6ad0;
}
.profile-container .footer {
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 0 20px;
}
.profile-container .footer .footer-icon {
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-bottom: 6px;
}
.profile-container .footer .footer-icon::before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}
[data-theme=light] .profile-container .footer .footer-icon.certificate-icon::before {
  background-image: url("/static/101/images/status-bar4.png");
}
[data-theme=black] .profile-container .footer .footer-icon.certificate-icon::before {
  background-image: url("/static/101/images/status-bar4.png");
}
[data-theme=light] .profile-container .footer .footer-icon.settings-icon::before {
  background-image: url("/static/101/images/status-bar5.png");
}
[data-theme=black] .profile-container .footer .footer-icon.settings-icon::before {
  background-image: url("/static/101/images/status-bar5.png");
}
.profile-container .logout {
  display: inline-block;
  padding: 8px 40px;
  margin: auto;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #ddd;
}
[data-theme=light] .profile-container .logout {
  border: 1px solid #C4D3DD;
}
[data-theme=black] .profile-container .logout {
  border: 1px solid #CDBBB6;
}
.profile-container .logout {
  border-radius: 30px;
  cursor: pointer;
}
.profile-container .logout:hover {
  background-color: #f0f0f0;
}

.dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  font-size: 16px;
  overflow: hidden;
  min-width: 240px;
  max-width: 100%;
  background-color: white;
  color: #400E0E;
}
[data-theme=light] .dialog {
  background-color: white;
}
[data-theme=black] .dialog {
  background-color: #ede9e0;
}
.dialog .center-content {
  text-align: center;
  padding: 1.75em 1em;
}
[data-theme=light] .dialog .center-content {
  background-color: white;
}
[data-theme=black] .dialog .center-content {
  background-color: #ede9e0;
}
.dialog .dialog-bottom {
  display: flex;
}
[data-theme=light] .dialog .dialog-bottom {
  background-color: rgba(232, 232, 232, 0.42);
}
[data-theme=black] .dialog .dialog-bottom {
  background-color: #dbd7cc;
}
.dialog .dialog-bottom {
  border-top: 1px solid #CFC7B8;
}
.dialog .dialog-bottom .dialog-text {
  flex: 1;
  padding: 1em 0;
  cursor: pointer;
  text-align: center;
}
.dialog .dialog-bottom .dialog-text:first-child {
  border-right: 1px solid #CFC7B8;
}
[data-theme=light] .dialog .dialog-bottom .dialog-text.confirm {
  color: #02a47b;
}
[data-theme=black] .dialog .dialog-bottom .dialog-text.confirm {
  color: #696161;
}

[x-cloak] {
  display: none !important;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropdown-trigger {
  padding: 3px 2em 3px 12px;
  border-radius: 5px;
  border: 1px solid #400e0e;
  cursor: pointer;
  min-width: 120px;
  text-align: center;
  position: relative;
  background-color: transparent;
}
.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  width: 100%;
  right: 0;
  margin-top: 4px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}
.dropdown .dropdown-item {
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.dropdown .dropdown-item:hover {
  background-color: #f3f4f6;
}
.dropdown .dropdown-item.active {
  background-color: #e5e7eb;
}
.dropdown .dropdown-item .preview-img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
}
.dropdown .dropdown-item .item-name {
  font-size: 14px;
}

.ad-wrapper {
  text-align: center;
  font-size: 14px;
  padding-top: 1rem;
}
[data-theme=light] .ad-wrapper {
  color: #00A47C;
}
[data-theme=black] .ad-wrapper {
  color: #226C2F;
}
@media (max-width: 768px) {
  .ad-wrapper {
    width: 100%;
  }
}
.ad-wrapper a {
  color: #5D49B0 !important;
  cursor: pointer;
}
.ad-wrapper .ad {
  background-color: #655B81;
  margin-top: 0.2rem;
  height: 3rem;
}

.top-login-btn {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  width: 3rem;
  z-index: 10001;
  font-size: 16px;
  text-align: center;
  border-radius: 20px;
}
[data-theme=light] .top-login-btn {
  color: #00A47C;
  background-color: #EBEBEB;
}
[data-theme=black] .top-login-btn {
  color: #226C2F;
  background-color: #EBEBEB;
}

[data-theme=light] .green-text {
  color: #00A47C;
}
[data-theme=black] .green-text {
  color: #226C2F;
}

input, select {
  font-size: 14px;
  font-family: "微软雅黑", Verdana, Arial, sans-serif;
}

#__vconsole {
  position: fixed;
  z-index: 9999999999 !important;
}

.min-w-0 {
  min-width: 0;
}

.no-border {
  border: none !important;
}

.flex .mixed-text, .inline-flex .mixed-text {
  vertical-align: baseline;
  align-self: center;
}/*# sourceMappingURL=base.css.map */a {
  text-decoration: none;
  outline: none;
  color: inherit;
}

a:hover, a:visited, a:active, a:link {
  text-decoration: none;
  color: inherit;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 0px 24px 24px 24px;
}
@media only screen and (max-width: 768px) {
  .wrapper {
    padding-left: 0.25em;
    padding-right: 0.25em;
    padding: 0px 12px 12px 12px;
  }
}
@media (max-width: 768px) {
  .wrapper .header {
    flex-direction: column;
    gap: 1em;
  }
  .wrapper .header > *:nth-child(2) {
    align-self: flex-end;
  }
}
.wrapper .header.header-visit {
  flex-direction: row;
  align-items: center !important;
}

[data-theme=light] .btn {
  color: white;
  box-shadow: 0px 2px 3px rgba(84, 116, 87, 0.37);
  padding: 0 1rem;
  border-radius: 2rem;
  font-size: 0.7rem;
  height: 1.54rem;
  line-height: 1.54rem;
  cursor: pointer;
  background-color: #00a47c;
}
[data-theme=light] .btn.active {
  background-color: #6f5cca;
  border-color: #5947B2;
}
[data-theme=light] .btn.cancel {
  background-color: transparent;
  color: #400E0E !important;
  box-shadow: none;
  border: none;
}
[data-theme=light] .btn.cancel-with-border {
  background-color: transparent;
  color: #400E0E !important;
  box-shadow: none;
}
[data-theme=black] .btn {
  color: white;
  box-shadow: 0px 2px 3px rgba(84, 116, 87, 0.37);
  padding: 0 1rem;
  border-radius: 2rem;
  font-size: 0.7rem;
  height: 1.54rem;
  line-height: 1.54rem;
  cursor: pointer;
  background-color: #400E0E;
}
[data-theme=black] .btn.active {
  background-color: #226C2F;
  border-color: #226C2F;
}
[data-theme=black] .btn.cancel {
  background-color: transparent;
  color: #400E0E !important;
  box-shadow: none;
  border: none;
}
[data-theme=black] .btn.cancel-with-border {
  background-color: transparent;
  color: #400E0E !important;
  box-shadow: none;
}

h1 {
  color: #2B0B0B;
  font-size: 20px;
}

.back-btn {
  width: 34px;
  height: 34px;
  border-radius: 10em;
}
[data-theme=light] .back-btn {
  background-image: url("/static/101/images/btn-back-l.png");
}
[data-theme=black] .back-btn {
  background-image: url("/static/101/images/btn-back.png");
}
.back-btn {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  cursor: pointer;
}

.mbtn {
  background-color: #6F5CCA;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
}
.mbtn a:link {
  color: white;
}

[data-theme=light] .card {
  border: #A5C0CF 1px solid;
  background-color: rgba(255, 255, 255, 0.4);
}
[data-theme=black] .card {
  border: #CBB18D 1px solid;
  background-color: rgba(242, 232, 223, 0.5019607843);
}
.card {
  color: #400E0E;
  border-radius: 4px;
}

.grids {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  align-items: center;
  padding: 1.5em 2em;
  gap: 1em 2em;
}
@media (max-width: 800px) {
  .grids {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 600px) {
  .grids {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tblock {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  justify-self: center;
  align-self: center;
}
.tblock .img-wp {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}
.tblock img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.tblock .tblock-label {
  color: #708F61;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
}

.tab-header-item {
  color: #400E0E;
  padding: 10px 20px;
  background-color: white;
}
.tab-header-item.active {
  background-color: #C1B5AE;
}
.tab-header-item:first-child {
  border-top-left-radius: 6px;
}
.tab-header-item:last-child {
  border-top-right-radius: 6px;
}

[data-theme=light] .tab-item {
  background-color: #EEF3F8;
}
[data-theme=black] .tab-item {
  background-color: rgba(226, 220, 220, 0.4588235294);
}
.tab-item {
  color: #400E0E;
}
[data-theme=light] .tab-item:nth-child(odd) {
  background-color: #FFFFFF;
}
[data-theme=black] .tab-item:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.3490196078);
}
.tab-item .flex-1 {
  flex: 1 1 auto;
  min-width: 150px;
}
.tab-item .flex-1 a {
  display: block;
  word-wrap: break-word;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tab-item .number-col, .tab-item .race-col {
  flex-shrink: 0;
}

.race-col {
  text-align: right;
  width: 7.8em;
  white-space: nowrap;
  flex-shrink: 0;
}

.number-col {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 6em;
}
@media (max-width: 768px) {
  .number-col {
    width: 3em;
  }
}

.school-item {
  color: #400E0E;
}
.school-item .flex-1 {
  flex: 1;
}
.school-item .flex-2 {
  flex: 2;
}
.school-item .flex-3 {
  flex: 3;
}

[data-theme=light] .school-phone {
  color: #00a47c;
}
[data-theme=black] .school-phone {
  color: #226C2F;
}

.t2 {
  font-size: 16px;
  margin: 0.5em 0;
  color: #400E0E !important;
}

.class-list {
  padding: 1.75em 1em;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 968px) {
  .class-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 776px) {
  .class-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .class-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.teacher-area-title {
  margin: 0.75em 0;
}

.teacher-card {
  padding: 1em;
}

.t-name {
  font-size: 16px;
  color: #2B0B0B;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}

[data-theme=light] .done-text {
  color: #00A47C;
}
[data-theme=black] .done-text {
  color: #226C2F;
}

.fixed-width-col {
  width: 7.5em;
  text-align: center;
}

.no-col {
  width: 2em;
}

.info-table {
  border: none;
}
.info-table th {
  border: none;
}
.info-table td {
  border: none;
}

.search {
  width: 7em;
  border-radius: 10em;
  border: 1px solid #2B0B0B;
  background-color: transparent;
}

[data-theme=light] .race-state-playing {
  color: #00A47C;
}
[data-theme=black] .race-state-playing {
  color: #226C2F;
}

[data-theme=light] .status-created {
  color: #6F5CCA;
}
[data-theme=black] .status-created {
  color: #400E0E;
}

.status-in-progress {
  color: #E76C37;
}

[data-theme=light] .status-finished {
  color: #00A47C;
}
[data-theme=black] .status-finished {
  color: #226C2F;
}

.mini-icon {
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.t-icon {
  width: 1.15em;
  height: 1.15em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.person-icon {
  background-image: url("/static/101/images/org_person.png");
}

.charge-icon {
  background-image: url("/static/101/images/org_charge.png");
}

.icon-org {
  background-image: url("/static/101/images/org_charge.png");
}

.icon-class {
  background-image: url("/static/101/images/org_charge.png");
}

.icon-trophy {
  background-image: url("/static/101/images/org_charge.png");
}

[data-theme=light] .classtask-icon {
  background-image: url("/static/101/images/class-task-light.png");
}
[data-theme=black] .classtask-icon {
  background-image: url("/static/101/images/class-task.png");
}

[data-theme=light] .classcamp-icon {
  background-image: url("/static/101/images/class-camp-light.png");
}
[data-theme=black] .classcamp-icon {
  background-image: url("/static/101/images/class-camp.png");
}

[data-theme=light] .classlist-icon {
  background-image: url("/static/101/images/class-list-light.png");
}
[data-theme=black] .classlist-icon {
  background-image: url("/static/101/images/class-list.png");
}

.classgame-icon {
  background-image: url("/static/101/images/trophy.png");
}

.classlist-delete {
  background-image: url("/static/101/images/classlist-delete.png");
}

.classlist-rename {
  background-image: url("/static/101/images/classlist-rename.png");
}

[data-theme=light] .classmember-icon {
  background-image: url("/static/101/images/class-member-light.png");
}
[data-theme=black] .classmember-icon {
  background-image: url("/static/101/images/class-member.png");
}

[data-theme=light] .chat-icon {
  background-image: url("/static/101/images/class-chat-light.png");
}
[data-theme=black] .chat-icon {
  background-image: url("/static/101/images/class-chat.png");
}

.modal-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99999;
}
.modal-wrapper .modal {
  padding: 12px;
  border-radius: 8px;
  overflow: hidden;
  max-height: 95vh;
  z-index: 999999;
  position: relative;
}
.modal-wrapper .modal.modal-flex {
  display: flex;
  flex-direction: column;
}
.modal-wrapper .modal.nopadding {
  padding: 0;
}
.modal-wrapper .modal .modal-content {
  overflow: auto;
}
.modal-wrapper .modal .modal-content2 {
  font-size: 18px;
  color: #2B0B0B;
}
[data-theme=light] .modal-wrapper .modal {
  background-color: white;
  background-image: url(none);
}
[data-theme=black] .modal-wrapper .modal {
  background-color: white;
  background-image: url("/static/101/images/modal-bg.jpg");
}
.modal-wrapper .modal .modal-title {
  color: #400E0E;
  font-size: 22px;
  white-space: pre;
  margin-top: 0.5rem;
}
.modal-wrapper .modal .modal-b-title {
  font-size: 20px;
}
[data-theme=light] .modal-wrapper .modal .modal-b-title {
  background-color: #00A47C;
}
[data-theme=black] .modal-wrapper .modal .modal-b-title {
  background-color: #400E0E;
}
.modal-wrapper .modal .modal-b-title {
  padding: 0.5em 1em;
  text-align: center;
  color: white;
}
.modal-wrapper .modal .modal-label {
  color: #2B0B0B;
  font-size: 12px;
}
.modal-wrapper .modal .modal-label .tt {
  font-size: 12px;
  color: #6e6e6e;
}
.modal-wrapper .modal .modal-h1 {
  font-size: 16px;
  color: #2B0B0B;
}
.modal-wrapper .modal .modal-input {
  border: 1px solid #3C1513;
  border-radius: 4px;
  height: 1.5em;
  font-size: 20px;
  line-height: 1.5em;
  background-color: transparent;
  padding: 8px;
  width: 20em;
}
.modal-wrapper .modal .modal-footer {
  gap: 2rem;
}

.error-tip {
  color: #9C595A;
  font-size: 12px;
  padding: 1em 0;
  padding-left: 1em;
  min-height: 1.7em;
  box-sizing: content-box;
}

.recent-title {
  font-size: 14px;
  padding: 2rem 1rem;
  color: #400E0E;
}

.adjust-content {
  font-size: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  border-bottom: 1px solid rgba(203, 177, 141, 0.5);
}

.reqs-box {
  margin-bottom: 1em;
}
.reqs-box .center-title {
  justify-content: start;
  font-size: 16px;
  font-weight: normal;
  margin-left: 1.6rem;
}
.reqs-box .center-title .classtask-icon {
  display: none;
}

.req-col {
  display: flex;
  padding: 12px;
}
[data-theme=light] .req-col {
  background-color: #FFFFFF;
}
[data-theme=black] .req-col {
  background-color: rgba(255, 255, 255, 0.3490196078);
}
.req-col {
  font-size: 14px;
  color: #400E0E;
}
.req-col .wf {
  width: 4em;
}
.req-col .flex-1 a {
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
}
[data-theme=light] .req-col:nth-child(even) {
  background-color: #EEF3F8;
}
[data-theme=black] .req-col:nth-child(even) {
  background-color: rgba(226, 220, 220, 0.4588235294);
}
.req-col.req-head {
  color: #7D5F5E;
}
.req-col.req-head > div {
  font-weight: bold;
}
[data-theme=light] .req-col .agree {
  color: #00A47C;
}
[data-theme=black] .req-col .agree {
  color: #226C2F;
}
.req-col .agree {
  cursor: pointer;
}
.req-col .reject {
  color: #9C595A;
  cursor: pointer;
}

.checkbox {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.checkbox .checkbox-icon {
  width: 1em;
  height: 1em;
}
[data-theme=light] .checkbox .checkbox-icon {
  border: 2px solid #00a47c;
}
[data-theme=black] .checkbox .checkbox-icon {
  border: 2px solid #226C2F;
}
.checkbox .checkbox-icon {
  border-radius: 4px;
}
[data-theme=light] .checkbox .checkbox-icon.ok {
  background-color: #00a47c;
}
[data-theme=black] .checkbox .checkbox-icon.ok {
  background-color: #226C2F;
}
.checkbox .checkbox-icon.ok {
  background-image: url("/static/101/images/toggle-3.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 600px) {
  .req-time-col {
    display: none;
  }
}
.search-wp {
  width: 5em;
  display: inline-flex;
  padding: 4px;
  align-items: center;
  border-radius: 10em;
  border: 1px solid #2B0B0B;
  background-color: transparent;
}
.search-wp .input-wp {
  flex: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.search-wp input.text {
  border: none;
  background-color: transparent;
  outline: none;
  width: 100%;
}

.toggle-box {
  display: flex;
  color: #34170F;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  font-size: 14px;
  cursor: pointer;
}
.toggle-box .toggle-icon {
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
}
[data-theme=light] .toggle-box .toggle-icon {
  border: 2px solid #00a47c;
}
[data-theme=black] .toggle-box .toggle-icon {
  border: 2px solid #226C2F;
}
.toggle-box .toggle-icon {
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.toggle-box .toggle-icon .toggle-active-point {
  display: none;
  width: 8px;
  height: 8px;
}
[data-theme=light] .toggle-box .toggle-icon .toggle-active-point {
  background-color: #00a47c;
}
[data-theme=black] .toggle-box .toggle-icon .toggle-active-point {
  background-color: #226C2F;
}
.toggle-box .toggle-icon .toggle-active-point {
  border-radius: 100px;
}
.toggle-box.active .toggle-icon .toggle-active-point {
  display: block;
}
.toggle-box .tip {
  color: #400E0E;
}

.mclose {
  font-size: 16px;
  position: absolute;
  right: 0.5em;
  top: 0.5em;
  cursor: pointer;
  background-image: url("/static/101/images/modal-close.png");
}

.scroll-view {
  overflow-y: auto;
  padding: 1rem;
  padding-bottom: 0.25rem;
}
@media (min-width: 800px) {
  .scroll-view {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}

.class-list-title {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
}

[data-theme=light] a.text-link2 {
  color: #655B81;
}
[data-theme=black] a.text-link2 {
  color: #6f5caa;
}

.manage-box {
  font-size: 14px;
  color: #6F5CCA;
}
.manage-box .manage-section {
  margin-bottom: 1rem;
}
.manage-box .manage-section .section-title {
  color: #400E0E;
  display: flex;
  align-items: center;
  padding: 12px 1rem;
}
[data-theme=light] .manage-box .manage-section .section-title {
  background-color: #FFFFFF;
}
[data-theme=black] .manage-box .manage-section .section-title {
  background-color: rgba(193, 181, 174, 0.5019607843);
}
.manage-box .manage-section .section-title i {
  margin-right: 0.2rem;
}
.manage-box .manage-section .section-title .more-link {
  font-size: 12px;
  margin-left: auto;
}
.manage-box .manage-section .section-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.manage-box .manage-section .section-content > div {
  display: flex;
  flex: 0 0 100%;
  padding: 12px 0 12px 1rem;
}
[data-theme=light] .manage-box .manage-section .section-content > div:nth-child(odd) {
  background-color: #EEF3F8;
}
[data-theme=black] .manage-box .manage-section .section-content > div:nth-child(odd) {
  background-color: rgba(226, 220, 220, 0.4588235294);
}
[data-theme=light] .manage-box .manage-section .section-content > div:nth-child(even) {
  background-color: #FFFFFF;
}
[data-theme=black] .manage-box .manage-section .section-content > div:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.3490196078);
}
.manage-box .manage-section .section-content a, .manage-box .manage-section .section-content span {
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  cursor: pointer;
  color: #337ab7;
}
[data-theme=light] .manage-box .manage-section a:hover, [data-theme=light] .manage-box .manage-section span:hover {
  color: #5A45B0;
}
[data-theme=black] .manage-box .manage-section a:hover, [data-theme=black] .manage-box .manage-section span:hover {
  color: #5A45B0;
}
.manage-box .manage-section.plain-section .section-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 4px;
}
[data-theme=light] .manage-box .manage-section.plain-section .section-content {
  background-color: #FFFFFF;
}
[data-theme=black] .manage-box .manage-section.plain-section .section-content {
  background-color: rgba(255, 255, 255, 0.4980392157);
}
.manage-box .manage-section.plain-section .section-content a {
  padding: 12px 0 12px 1rem;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
[data-theme=light] .manage-box .manage-section.plain-section .section-content a {
  border-bottom: 1px dashed #C5DBEB;
}
[data-theme=black] .manage-box .manage-section.plain-section .section-content a {
  border-bottom: 1px dashed #C1B5AE;
}
[data-theme=light] .manage-box .manage-section.plain-section .section-content a:hover {
  color: #5A45B0;
}
[data-theme=black] .manage-box .manage-section.plain-section .section-content a:hover {
  color: #5A45B0;
}

.org-icon {
  background-image: url("/static/101/images/org-icon.png");
}

.class-icon {
  background-image: url("/static/101/images/class-icon.png");
}

.competition-icon {
  background-image: url("/static/101/images/competition-icon.png");
}

.flex-1 {
  flex: 1 1 0%;
  min-width: 0;
}

.flex-3 {
  flex: 3 3 0%;
  min-width: 0;
}

.gap-xl {
  gap: 2rem;
}

.class-item {
  color: #400E0E !important;
  background-color: #fffef7;
  border-radius: 12px;
  border: 1px solid #DCDCCF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
}
.class-item .class-name {
  padding: 0.4rem 1rem;
}
[data-theme=light] .class-item .class-name {
  color: #00A47C;
}
[data-theme=black] .class-item .class-name {
  color: #226C2F;
}
.class-item .class-name {
  font-size: 16px;
  border-bottom: 1px solid #E5EDD6;
}
.class-item .class-info {
  padding: 0.4rem 1rem;
  font-size: 14px;
}
.class-item .class-info .class-teacher {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.2;
}
.class-item .class-info .homework-btn {
  background-color: #50C062;
  height: 1.2rem;
  width: 3.8rem;
  line-height: 1.2rem;
  border-radius: 0.6rem;
}
.class-item .class-info .homework-btn a {
  color: white !important;
}
.class-item .class-info .homework-btn {
  padding: 0 0.5rem;
  text-align: center;
}

[data-theme=light] .class-grid {
  background-color: #FFFFFF;
}
[data-theme=black] .class-grid {
  background-color: rgba(255, 255, 255, 0.3490196078);
}
.class-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0.6rem 1rem;
}

@media (max-width: 960px) {
  .class-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .class-grid {
    grid-template-columns: 1fr;
  }
}
.game-table {
  border-radius: 8px;
  overflow: hidden;
  font-size: 14px;
  color: #400E0E;
}
.game-table .table-header {
  color: #7D5F5E;
  display: flex;
}
[data-theme=light] .game-table .table-header {
  background-color: #FFFFFF;
}
[data-theme=black] .game-table .table-header {
  background-color: rgba(255, 255, 255, 0.3490196078);
}
.game-table .table-header {
  padding: 0.8rem 1rem;
}
.game-table .table-body .table-row {
  display: flex;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #eee;
}
[data-theme=light] .game-table .table-body .table-row:nth-child(odd) {
  background-color: #EEF3F8;
}
[data-theme=black] .game-table .table-body .table-row:nth-child(odd) {
  background-color: rgba(226, 220, 220, 0.4588235294);
}
[data-theme=light] .game-table .table-body .table-row:nth-child(even) {
  background-color: #FFFFFF;
}
[data-theme=black] .game-table .table-body .table-row:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.3490196078);
}
.game-table .table-body .table-row:last-child {
  border-bottom: none;
}
.game-table .table-body .table-row:hover {
  background: #f9f9f9;
}
.game-table .col {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-table .col:nth-child(1) {
  flex: 0.8;
}
.game-table .col:nth-child(4) {
  flex: 0.5;
}
.game-table .col:nth-child(6) {
  flex: 1;
}

.topic-table {
  font-size: 14px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1rem;
  color: #400E0E;
}
.topic-table .table-header {
  color: #7D5F5E;
  display: flex;
}
[data-theme=light] .topic-table .table-header {
  background-color: #FFFFFF;
}
[data-theme=black] .topic-table .table-header {
  background-color: rgba(255, 255, 255, 0.3490196078);
}
.topic-table .table-header {
  padding: 0.8rem 1rem;
  font-weight: 500;
}
.topic-table .table-body .table-row {
  display: flex;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #eee;
  align-items: center;
}
[data-theme=light] .topic-table .table-body .table-row:nth-child(odd) {
  background-color: #EEF3F8;
}
[data-theme=black] .topic-table .table-body .table-row:nth-child(odd) {
  background-color: rgba(226, 220, 220, 0.4588235294);
}
[data-theme=light] .topic-table .table-body .table-row:nth-child(even) {
  background-color: #FFFFFF;
}
[data-theme=black] .topic-table .table-body .table-row:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.3490196078);
}
.topic-table .table-body .table-row:last-child {
  border-bottom: none;
}
.topic-table .table-body .table-row:hover {
  background: #f9f9f9;
}
.topic-table .col-topic {
  flex: 2;
}
.topic-table .col-topic .topic-link {
  color: #6F5CCA;
}
.topic-table .col-author {
  flex: 0.8;
}
.topic-table .col-replies {
  flex: 0.5;
  text-align: center;
}
.topic-table .col-last-reply {
  flex: 0.8;
}
.topic-table .col-time {
  flex: 1;
}

.btn-new-topic {
  background: #6F5CCA;
  color: white !important;
  padding: 0.2rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  cursor: pointer;
  font-size: 14px;
}

.color-link {
  color: #6F5CCA !important;
}

.color-main {
  color: #2B0B0B;
}

@media (max-width: 768px) {
  main {
    flex-direction: column;
  }
  .reqs-box, .manage-box {
    width: 100%;
  }
  .school-contacts {
    position: absolute;
    bottom: 0.5rem;
    right: 0;
    min-width: 100px !important;
  }
  .school-item {
    flex-direction: column;
  }
}
.activity-table {
  border-radius: 8px;
  overflow: hidden;
  font-size: 14px;
  color: #400E0E;
  margin-bottom: 0.4rem;
}
.activity-table .table-header {
  color: #7D5F5E;
  display: flex;
}
[data-theme=light] .activity-table .table-header {
  background-color: #FFFFFF;
}
[data-theme=black] .activity-table .table-header {
  background-color: rgba(255, 255, 255, 0.3490196078);
}
.activity-table .table-header {
  padding: 0.8rem 1rem;
  font-weight: 500;
}
.activity-table .table-body .table-row {
  display: flex;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #eee;
  align-items: center;
}
[data-theme=light] .activity-table .table-body .table-row:nth-child(odd) {
  background-color: #FFFFFF;
}
[data-theme=black] .activity-table .table-body .table-row:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.3490196078);
}
[data-theme=light] .activity-table .table-body .table-row:nth-child(even) {
  background-color: #EEF3F8;
}
[data-theme=black] .activity-table .table-body .table-row:nth-child(even) {
  background-color: rgba(226, 220, 220, 0.4588235294);
}
.activity-table .table-body .table-row:last-child {
  border-bottom: none;
}
.activity-table .table-body .table-row:hover {
  background: rgba(255, 255, 255, 0.35);
}
.activity-table .col {
  width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.activity-table .col a {
  color: #6F5CCA;
}
.activity-table .col a:hover {
  text-decoration: underline;
}
.activity-table .col-content {
  flex: 1;
  padding: 0 16px;
  line-height: 1.4;
}

.map-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 400px;
  overflow: hidden;
}

#map {
  position: absolute;
  height: 100%; /* The height is 400 pixels */
  width: 100%; /* The width is the width of the web page */
}

body {
  height: 100%;
}

.nav {
  position: absolute;
  box-sizing: border-box;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 99999;
  pointer-events: none;
}

.map-sidebar {
  padding: 12px 0 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  overflow: hidden;
}

.tip {
  color: #4c4c4c;
  font-size: 12px;
  padding: 0.3em 1em;
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  pointer-events: all;
}

.jiao {
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.jiao > .back-icon {
  transform: rotate(180deg);
}

.boards {
  flex: 1;
  overflow-y: auto;
  width: 100%;
  pointer-events: none;
}

.board-content {
  box-shadow: 2px 4px 2px rgba(0, 0, 0, 0.15);
  padding: 12px;
  background-color: white;
  pointer-events: all;
}

.map-card {
  font-size: 14px;
  display: flex;
  border-bottom: rgb(221, 221, 221) dashed 1px;
  margin-bottom: 12px;
  cursor: pointer;
}

.map-card:hover,
.map-card.single {
  background-color: #f6f6f6;
}

.sub-title {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
  position: relative;
}

.desc-content {
  color: #4c4c4c;
  font-size: 12px;
  padding: 12px;
}

.rlink {
  font-style: italic;
  color: #337ab7;
}

.log {
  background-color: #fd7e2b;
  border-radius: 100px;
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.no {
  padding: 0 12px;
}

.no-img {
  background-color: transparent;
  background-image: url(https://www.101weiqi.com/static/images/101markets_more.png);
  width: 18px;
  height: 27px;
  display: inline-block;
  background-position-y: -139px;
  z-index: 9;
}

.info {
  flex: 1;
  color: #333;
  line-height: 1.2;
  font-size: 12px;
}

.info > div:not(:first-child) {
  padding: 5px 0;
}

.bottom-tip {
  font-size: 12px;
  color: #333;
  text-align: center;
}

.SchoolArea a:not(.a-btn), .wrapper a:not(.a-btn) {
  color: #337ab7;
  text-decoration: none;
}
.SchoolArea a:not(.a-btn):visited, .wrapper a:not(.a-btn):visited {
  color: #337ab7;
}
.SchoolArea a:not(.a-btn):hover:hover, .wrapper a:not(.a-btn):hover:hover {
  color: #5A45B0;
}
.SchoolArea a:not(.a-btn):link, .wrapper a:not(.a-btn):link {
  color: #337ab7;
}
.SchoolArea a:not(.a-btn):active, .wrapper a:not(.a-btn):active {
  color: #337ab7;
}

.link {
  cursor: pointer;
}

.back {
  cursor: pointer;
  color: #3385ff;
}

.search-input {
  display: flex;
  padding: 12px 12px 0 12px;
  display: flex;
  padding-right: 0;
  pointer-events: all;
}

.search-input > input {
  background-color: white;
  border: none;
  padding: 0.75em;
  flex: 1;
  box-shadow: 2px 4px 2px rgba(0, 0, 0, 0.15);
}

.search-button {
  background: url(https://www.101weiqi.com/static/images/searchbox.png) no-repeat 0 -76px #3385ff;
  pointer-events: auto;
  width: 57px;
  height: 38px;
  cursor: pointer;
}

.clear-button {
  background: url(https://www.101weiqi.com/static/images/searchbox.png) no-repeat 0 -38px #fff;
  pointer-events: auto;
  width: 57px;
  height: 38px;
  cursor: pointer;
}

.cur-img {
  background-image: url(https://www.101weiqi.com/static/images/101markets_more.png);
  width: 25px;
  height: 38px;
  display: inline-block;
  margin-left: 6px;
  margin-top: 4px;
  background-position: 0 -233px;
}

.swiper {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  background-color: #d9edf7;
}

.swiper-content {
  display: flex;
  font-size: 22px;
  overflow: auto;
  width: -moz-max-content;
  width: max-content;
}

.swiper-content::-webkit-scrollbar {
  display: none;
}

.s-card {
  width: 100vw;
  max-width: 100vw;
  min-width: 100vw;
  display: inline-block;
  width: 100%;
  font-size: 28px;
  display: flex;
  padding: 12px;
  gap: 10vw;
}

.info-item {
  display: flex;
  gap: 12px;
}

.avatar-icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADIBAMAAABfdrOtAAAAG1BMVEUAAABITExIS0tITExISFBIS0xISk1IS0tIS0zEu3RTAAAACHRSTlMAgN9AIL9gn+8XvYEAAAMGSURBVHja7do7j9pAFAVgg42hdB5ILiEvKK1sCkqzm2woiZSCkmgjlBJppSTlYh57f3aq6CoCYo/PnJEXzfcHjux7r2dsT+B5nuc9AR9vrlaru6s8oIn78tfbX6sPAcNU/vXqZ2Y9I5YjxejOcshvOWW0tJnRkdOKLxZv2kTOKRJrIXJecU8o+7GhnZCuOEjpCZCCh2gKP0QSFyFFwgtRGzhkIeUG+EOlXEG8ELXmjaI6QCE/pJICWZZDUbT71ZaKDtiiSL9foVS2hoeEOo8TqWzLm0S155VEFRlv3FUCTAm98j0xsEUeXOyZT8XAHn2oMBeusZioGSJGchch9aYxchESi5ElEEJ+rrTEyNpFyBwIIT8huw0MmfuQCwlp4pxcTki9Z1fYwJDExcq4bO7ya7glyl2EZM1dtHpiZMvbb6uCWBKVAbNIHZRYDCW85lJz3sKoBk0NAW4XMWTd1BaOiCFqIWZyFyH4JzXWF/uZGNkBXyDJm7uwgbuV3MFXosegnpmLL3ddoO6comTA3xNWSdQnYBQZk5I4+H+yD+q75jWwisa83lIz3oWomFh2lfKGRLWIjxSVGvQvc+oHcEi04PWvuub1rwqJ/atSuOx46XdWQkJ4K4RvinknvNSBd1ZNPVgKicGXOHzpygNLUugpj1d+Yy1kxmsu1ebNu+rwOli1eB2sQug5j79DLC8mJCMcfT5yb+s6+vIfw8zKZeiaRTrPG33TiPMx0MHx276UQA+O35Ql4Ee6p6kYG3231lC2Wm0qdRUvq2Z8ljJ4Qz8XyNBg10BNeS+w1xW28Liv5Wsgrkh4BVEb4s1Sb6A3Xfxo70yseQd82MTPqnZE0aqiFeFVpSNWDYCfMuCsjEWxSt8Rywa8u6UOQG8hRw1CsW4JlAQoSk+s25b/K8HtgboDlReC7OhLEEFi/icOb6+2EOx4Hay25ss7HjIRgs2JWfQhPoQQwmrhg4th3PFWX/XgImTOe21QmYM1/hE4PwJsiaJULNsAb6XYC110+8yiF4HneZ7XDH8AqDDmeWF+2EUAAAAASUVORK5CYII=);
  width: 1em;
  height: 1em;
  display: inline-block;
  background-size: contain;
}

.phone-icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADIBAMAAABfdrOtAAAAG1BMVEUAAAADAAAAAAAEAAADAAADAAADAAAEAAADAAABXuQNAAAACHRSTlMAnyCA379gQLs52wUAAAGWSURBVHja7dw/a8JAGIDxNFGz1qU4SinUUZC2jtKhZCy2lIz2n3QU+wmiib2PXYSEDInx8l5OVJ5n9AV/npc4eXGIiM4xfz7a08PS1PhWGr31jYwvpdWTidJWmk3lhhvqIrF8KTdKu0cxEuojiXQpnqrRUIgM6iArITKug6yFSFAHSWSGq2ol2/lO8dN+XKfdFlc5a+jimuTD1p7LS44Mq5Z5KUIuqr4RzxoyzYdta0jUz386LSDFQEBAQCRI0tUsNEBWjmYDEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQUyTqatY79r+8g5wEEs1/X20j0XbSs4vEi+3ED6wif+mZTXtI/k6eTSTOZoFFJMlmoUVknc16FpFNNvs5KcQruxXTxk2dk+7ob7wc8XefIHZLR4KqboZ2cRI3d+B7XTGR1VLFZjt2S00aPISf9NPzuMV9FxaUKS/vZS/Hh3gwwkSMuIGuES8c+0t5PsBjNzaOUXeBhnHlGOZ/jvZ0v3SIiM6wf9ddPOioc1ipAAAAAElFTkSuQmCC);
  width: 1em;
  height: 1em;
  display: inline-block;
  background-size: contain;
}

.back-icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eAAAAAXNSR0IArs4c6QAAB51JREFUeF7t3d+RFEcQxOEZT4QTXNyb8EARnAGSHyBWcfIDDAAFJugN4cUaAqxCB4e4P7vb3TPTnVX50/PMTVdWftFIQGie+IcESOBoAjPZkAAJHE8AILSDBE4kABDqQQIAoQMk0JYAN0hbbrxlkgBATBbNmG0JAKQtN94ySQAgJotmzLYEANKWG2+ZJAAQk0UzZlsCAGnLjbdMEgCIyaIZsy0BgLTlxlsmCQDEZNGM2ZYAQNpy4y2TBABismjGbEsAIG25PXjr6vrDz29fXv690o/jx4gkAJAVFvH8z39eT4f513ma/nj78mK3wo/kR4gkAJCFi7jFcftjQLIwULHXAbJgIfdxgGRBmKKvAqRxMcdwgKQxUNHXANKwmHM4QNIQqugrAKlcTCkOkFQGK/o4QCoWU4sDJBXhij4KkMLFtOIASWHAoo8BpGAxS3GApCBk0UcAcmYxa+EAiaiAM8cCyImA1sYBknhIAHJkZ1vhAEksJAB5ZF9b4wBJHCQAuberXjhAEgMJQH7YU28cN5+ep/27FxdPYtTF75QA+bZzcPiVv2RigEzTBI6Sqng+Yw8EHJ7FL53aGgg4Smvi+5wtEHD4lr5mcksg4KipiPezdkDA4V342umtgICjth48bwMEHJS9JQELIOBoqQbvfP2DDsn/AUfyBW88Xmog4Ni4PQY/Pi0QcBi0t8OIKYGAo0NzTD6RDgg4TJrbacxUQMDRqTVGn0kDBBxGre04agog4OjYGLNPhQcCDrPGdh43NBBwdG6L4efCAgGHYVsHjBwSCDgGNMX0k+GAgMO0qYPGDgUEHINaYvzZMEDAYdzSgaOHAAKOgQ0x/7Q8EHCYN3Tw+NJAwDG4HXxe928UgoN2KiQgeYOAQ6EanOG/BOSAgINiKiUgBQQcStXgLFI3CDgopGICEjcIOBSrwZkkbhBwUETlBIbeIOBQrgZnG3qDgIMCRkhgyA0CjgjV4IxDbhBwULxICXS9QcARqRqctesNAg4KFzGBLjcIOCJWgzN3uUHAQdEiJ7DpDQKOyNXg7JveIOCgYBkS2OQGAUeGajDDJjcIOChWpgRWvUHAkakazLLqDQIOCpUxgVVuEHBkrAYzrXKDgIMiZU5g0Q0CjszVYLZFNwg4KJBDAk03CDgcqsGMTTcIOCiOUwJVNwg4nKrBrFU3CDgojGMCRTcIOByrwcxFNwg4KIpzAidvEHA4V4PZT94g4KAgJHDkf38ADqpBAl8TePBLLHBQDRL4P4E7QMBBNUjgbgLfgYCDapDAwwRugICDapDA4wnM4KAaJHA8gfnq+uPuME2vuoY0T/vPn748e7+73Hf9Lh8jgcoEbn6JBZLK1HjcJoHv/5IOEpudM2hFAnf+My9IKpLjUYsEHvxGIUgs9s6QhQk8+ocVQVKYHo+lT+Don+YFSfrdM2BBAif/uDtIChLkkdQJnP0bhSBJvX+GO5PAWSD8Pgkdck6gCAhInCviPXsxEJB4F8V1+iogIHGtie/c1UBA4lsWx8mbgIDEsSqeMzcDAYlnYdymXgQEJG518Zt3MRCQ+JXGaeJVgIDEqTJes64GBCRexXGZdlUgIHGpjc+cqwMBiU95HCbdBAhIHKrjMeNmQEDiUaDsU24KBCTZ65N/vs2BgCR/iTJP2AUISDJXKPds3YCAJHeRsk7XFQhIstYo71zdgYAkb5kyTjYECEgyVinnTMOAgCRnobJNNRQISLLVKd88w4GAJF+pMk0kAQQkmSqVaxYZICDJVaws00gBAUmWWuWZQw4ISPKUK8MkkkBAkqFaOWaQBQKSHAWLPoU0EJBEr1f888sDAUn8kkWeIAQQkESuWOyzhwECkthFi3r6UEBAErVmcc8dDghI4pYt4slDAgFJxKrFPHNYICCJWbhopw4NBCTR6hbvvOGBgCRe6SKdOAUQkESqXKyzpgECkljFi3LaVEBAEqV2cc6ZDghI4pQvwklTAgFJhOrFOGNaICCJUUD1U6YGAhL1+umfLz0QkOiXUPmEFkBAolxB7bPZAAGJdhFVT2cFBCSqNdQ9lx0QkOiWUfFklkBAolhFzTPZAgGJZiHVTmUNBCRqddQ7jz0QkOiVUulEAPm2javrj7vDNL3qupx52n/+9OXZ+93lvut3+VhxAgD5IapRSN69uHhSvDEe7JoAQO7F3RvJ4TD/9tfvT9903TofK04AII9E1QsJOIp7OuxBgByJfmsk4BjW+aoPA+REXFshAUdVR4c+DJAz8a+NBBxD+179cYAURLYWEnAUhC32CEAKF7IUCTgKgxZ7DCAVC2lFAo6KkMUeBUjlQmqRgKMyYLHHAdKwkFIk4GgIV+wVgDQu5BwScDQGK/YaQBYs5BgScCwIVexVgCxcyH0k4FgYqNjrAFlhIbdIwLFCmGI/AiArLeSX3Yef+HsdK4Up9GMAIrQMjqKXAED0dsKJhBIAiNAyOIpeAgDR2wknEkoAIELL4Ch6CQBEbyecSCgBgAgtg6PoJQAQvZ1wIqEEACK0DI6ilwBA9HbCiYQSAIjQMjiKXgIA0dsJJxJKACBCy+AoegkARG8nnEgoAYAILYOj6CUAEL2dcCKhBAAitAyOopfAv3alCRRLu5CsAAAAAElFTkSuQmCC);
  width: 1em;
  height: 1em;
  display: inline-block;
  background-size: contain;
}

.contacts {
  display: flex;
  gap: 12px;
}

.c-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.info-window {
  padding: 0;
  border: #cfcfcf 1px solid;
  background-color: white;
}

.info-window-h1 {
  font-weight: bold;
  padding: 8px;
  padding-right: 30px;
  font-size: 14px;
  border-bottom: #cfcfcf 1px solid;
  background-color: #f9f9f9;
}

.info-window-h2 {
  font-size: 12px;
  padding: 12px;
}

.tdt-infowindow-content-wrapper {
  background-color: transparent !important;
}

.tdt-infowindow-content {
  margin: 0 !important;
  background-color: transparent !important;
}

.tdt-infowindow-close-button {
  width: 24px !important;
  height: 20px !important;
  transform: translate(-6px, 8px);
}

.info-name {
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-link {
  color: #598ab2;
}

.detail-content {
  position: absolute;
  bottom: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 12px;
  overflow-y: auto;
  max-height: 300px;
}

.daijiao::-webkit-scrollbar {
  width: 6px;
}
.daijiao::-webkit-scrollbar-thumb {
  background-color: #D1D1D1;
  width: 3px;
  border-radius: 3px;
}

[data-theme=light] .text-link {
  color: #5A45B0 !important;
}
[data-theme=black] .text-link {
  color: #5A45B0 !important;
}

.class-ctn {
  padding-bottom: 0.6rem;
}
[data-theme=light] .class-ctn {
  background-color: #FFFFFF;
}
[data-theme=black] .class-ctn {
  background-color: rgba(255, 255, 255, 0.3490196078);
}

.teacher-section .teacher-name {
  font-size: 14px;
  padding-left: 1rem;
}
.icon-gray {
  filter: grayscale(100%) brightness(1.4) contrast(0.85);
}/*# sourceMappingURL=org.css.map */