@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 */main.training-wrapper {
  padding-top: 2rem;
  margin: 0 auto;
  min-height: 100vh;
  font-size: 16px;
  color: #400E0E;
}
@media (max-width: 768px) {
  main.training-wrapper {
    padding-top: 0;
  }
}

.training-main {
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 7.2rem);
}
@media (max-width: 768px) {
  .training-main {
    flex-direction: column-reverse;
  }
}

.train-left {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 0.4rem;
  margin-right: 0.6em;
}
@media (max-width: 768px) {
  .train-left {
    margin: 1rem;
  }
}
.train-left .train-left-top {
  width: 100%;
  height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2em;
}
@media (max-width: 768px) {
  .train-left .train-left-top {
    justify-content: start;
    height: 1.4em;
  }
}
@media (min-width: 768px) {
  [data-theme=light] .train-left .train-left-top {
    background-color: rgba(255, 255, 255, 0.3921568627);
    border: 1px solid transparent;
  }
  [data-theme=black] .train-left .train-left-top {
    background-color: rgba(248, 239, 231, 0.3921568627);
    border: 1px solid rgba(203, 177, 141, 0.3921568627);
  }
}
.train-left .train-left-top {
  text-align: center;
  border-radius: 0.6em;
}
.train-left .train-left-top i {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("/static/101/images/training-b.png");
}
@media (max-width: 768px) {
  .train-left .main-btn {
    width: 80%;
  }
}

.train-right {
  margin-left: 1em;
}
@media (max-width: 768px) {
  .train-right {
    margin: 1rem;
  }
}
[data-theme=light] .train-right {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(183, 216, 166, 0.4) 100%);
}
[data-theme=black] .train-right {
  background: linear-gradient(180deg, rgba(255, 247, 234, 0.4) 0%, rgba(199, 167, 126, 0.4) 100%);
}
.train-right .nav-title {
  color: #BDFFB8;
  cursor: pointer;
}

.btn-wrapper {
  padding: 2em 1em;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12em, 1fr));
}
@media (max-width: 768px) {
  .btn-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(8em, 1fr));
  }
}
.btn-wrapper {
  grid-row-gap: 1.5em;
  grid-column-gap: 1em;
}
@media (max-width: 768px) {
  .btn-wrapper.sub-wp {
    padding: 0;
  }
}
.btn-wrapper .btn-desc {
  position: absolute;
  bottom: 0.8em;
  padding-top: 0.4em;
  padding-left: 0.8em;
  padding-right: 0.8em;
  width: 100%;
  font-size: 14px;
}
.btn-wrapper .btn-desc.hastext {
  border-top: 1px dashed #C1B5AE;
}
.btn-wrapper .btn-desc.isfinish {
  width: 80%;
}
.btn-wrapper .btn-desc.color-true {
  color: #400E0E;
}
.btn-wrapper .btn-desc.color-false {
  color: #400E0E;
}
.btn-wrapper .btn-desc i {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  top: 0.2em;
}
.btn-wrapper .btn-desc .icon-do {
  background-image: url("/static/101/images/train-icon-do.png");
}
.btn-wrapper .btn-desc .icon-rate {
  background-image: url("/static/101/images/train-icon-rate.png");
}

.main-btn {
  width: 100%;
  height: 6.5em;
  padding: 1em 0 0.4em;
}
[data-theme=light] .main-btn {
  background: #FFFFFF;
  color: #00A47C;
}
[data-theme=black] .main-btn {
  background: rgba(255, 255, 255, 0.4980392157);
  color: #307236;
}
.main-btn {
  text-align: center;
  cursor: pointer;
  border-radius: 0.6em;
  position: relative;
  overflow: hidden;
}
.main-btn .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 100%;
}
[data-theme=light] .main-btn .progress-bar {
  background-color: #00A47C;
}
[data-theme=black] .main-btn .progress-bar {
  background-color: #307236;
}
.main-btn .result-img {
  position: absolute;
  bottom: 0.65em;
  right: 0.65em;
  width: 1.2em;
  height: 1.2em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
[data-theme=light] .main-btn .result-img.result-t {
  background-image: url("/static/101/images/rok.png");
}
[data-theme=black] .main-btn .result-img.result-t {
  background-image: url("/static/101/images/rok-d.png");
}
[data-theme=light] .main-btn .result-img.result-f {
  background-image: url("/static/101/images/rerr.png");
}
[data-theme=black] .main-btn .result-img.result-f {
  background-image: url("/static/101/images/rerr-d.png");
}
[data-theme=light] .main-btn:hover {
  background-color: #E4FAD7;
}
[data-theme=black] .main-btn:hover {
  background-color: #F4ECC6;
}
.main-btn.no-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-btn-left {
  width: 100%;
  height: 6.5em;
  padding: 0.8em;
  color: #400E0E;
}
[data-theme=light] .main-btn-left {
  border: 1px solid #95B897;
  background: #FFFFFF;
}
[data-theme=black] .main-btn-left {
  border: 1px solid #B1937F;
  background: rgba(255, 255, 255, 0.4980392157);
}
.main-btn-left {
  border-radius: 0.6em;
  cursor: pointer;
}
[data-theme=light] .main-btn-left:hover {
  background-color: #E4FAD7;
}
[data-theme=black] .main-btn-left:hover {
  background-color: #F4ECC6;
}

.mb1 {
  margin-bottom: 1rem;
}

[data-theme=light] .train-tab {
  background-color: #006C56;
}
[data-theme=black] .train-tab {
  background-color: #400E0E;
}
.train-tab {
  display: flex;
  height: 2.8em;
  color: #FFFFFF;
  line-height: 2.8em;
  cursor: pointer;
}

[data-theme=light] .train-nav {
  background-color: #00A47C;
}
[data-theme=black] .train-nav {
  background-color: #307236;
}
.train-nav {
  display: flex;
  height: 2.8em;
  color: #FFFFFF;
  line-height: 2.8em;
  padding-left: 1em;
}
.train-nav .separator {
  margin: 0 1em;
}

[data-theme=light] .train-bottom {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(183, 216, 166, 0.4) 100%);
}
[data-theme=black] .train-bottom {
  background: linear-gradient(180deg, rgba(255, 247, 234, 0.4) 0%, rgba(199, 167, 126, 0.4) 100%);
}
.train-bottom {
  margin-top: 1em;
  font-size: 0.8rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  align-items: center;
  border-radius: 0.6em;
}
.train-bottom .bottom-btn {
  width: 6.4em;
  height: 2.6em;
}
.train-bottom .bottom-btn.train-btn {
  width: 7.2em;
}

.bottom-btn {
  width: 7em;
  height: 2.6em;
}
[data-theme=light] .bottom-btn {
  background-image: url("/static/101/images/btn-main-bg-light.png");
}
[data-theme=black] .bottom-btn {
  background-image: url("/static/101/images/btn-main-bg.png");
}
.bottom-btn {
  background-repeat: no-repeat;
  background-size: auto 100%;
  line-height: 2.4em;
  text-align: center;
  color: white;
  cursor: pointer;
}
@media (max-width: 768px) {
  .bottom-btn {
    line-height: 2.6em;
  }
}

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

.flex1 {
  flex: 1;
  text-align: center;
}

.flex3 {
  flex: 3;
  text-align: center;
}

[data-theme=light] .bg-active {
  background-color: #00A47C;
}
[data-theme=black] .bg-active {
  background-color: #307236;
}
.bg-active {
  color: #FFFFFF;
}

.width100 {
  width: 100%;
}

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

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

.status-bar {
  min-height: 2.4rem;
  padding-top: 0.6rem;
  width: 100%;
  color: #400E0E;
  padding-left: 3rem;
}
[data-theme=light] .status-bar {
  border-bottom: 1px solid #B6C8D0;
}
[data-theme=black] .status-bar {
  border-bottom: 1px solid #CABCB3;
}
.status-bar {
  position: relative;
  font-size: 18px;
}
.status-bar .back {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  background-image: url("/static/101/images/btn-back.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.status-bar .pay-btn {
  text-align: center;
  width: 4rem;
  height: 1.5rem;
  line-height: 1.5rem;
  color: #FFFFFF;
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.status-bar .pay-btn .pay-img {
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
[data-theme=light] .status-bar .pay-btn .pay-img {
  background-image: url("/static/101/images/wallet-l.png");
}
[data-theme=black] .status-bar .pay-btn .pay-img {
  background-image: url("/static/101/images/wallet-b.png");
}
[data-theme=light] .status-bar .pay-btn {
  background-color: #00A47C;
}
[data-theme=black] .status-bar .pay-btn {
  background-color: #307236;
}

.popup-wrapper {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(54, 34, 28, 0.3490196078);
}

.popup {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
}

.popup.show {
  display: block;
  animation: popupAnimation 0.2s ease-out;
}

.popup-wrapper.show {
  display: block;
}

.train-pop {
  width: 18rem;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1rem;
  font-size: 16px;
}
@media (max-width: 768px) {
  .train-pop {
    width: 100vw;
  }
}
[data-theme=light] .train-pop {
  background-image: url("/static/101/images/bg.jpg");
}
[data-theme=black] .train-pop {
  background-image: url("/static/101/images/bg.jpeg");
}
.train-pop .pop-img {
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 5rem;
  height: 6rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/static/101/images/train-pop.png");
}
.train-pop .pop-content {
  text-align: center;
  font-size: 17px;
  padding: 3rem 0.2rem 12px 0;
}
.train-pop .pop-content span {
  color: #914828;
}
.train-pop .pop-bottom {
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
[data-theme=light] .train-pop .pop-bottom {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(183, 216, 166, 0.4) 100%);
}
[data-theme=black] .train-pop .pop-bottom {
  background: linear-gradient(180deg, rgba(255, 247, 234, 0.4) 0%, rgba(199, 167, 126, 0.4) 100%);
}
.train-pop .pop-bottom .bottom-btn {
  position: relative;
  top: 0.1rem;
  height: 1.5rem;
  width: 4rem;
  line-height: 1.4rem;
}

.none {
  display: none !important;
}

[data-theme=light] .btn {
  color: white;
  box-shadow: 0px 2px 3px rgba(84, 116, 87, 0.37);
  border: 1px solid #00a47c;
  background-color: #00a47c;
  border-radius: 2rem;
  font-size: 0.7rem;
  width: 5rem;
  height: 1.75rem;
  line-height: 1.75rem;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 768px) {
  [data-theme=light] .btn {
    width: 4.6rem;
  }
}
[data-theme=light] .btn.btn-color {
  background-color: #6f5caa;
  border: 1px solid #6f5caa;
}
[data-theme=black] .btn {
  color: white;
  box-shadow: 0px 2px 3px rgba(84, 116, 87, 0.37);
  border: 1px solid #226C2F;
  background-color: #226C2F;
  border-radius: 2rem;
  font-size: 0.7rem;
  width: 5rem;
  height: 1.75rem;
  line-height: 1.75rem;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 768px) {
  [data-theme=black] .btn {
    width: 4.6rem;
  }
}
[data-theme=black] .btn.btn-color {
  background-color: #655B81;
  border: 1px solid #655B81;
}
.btn.sm {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.5rem;
}/*# sourceMappingURL=training.css.map */