@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 */@charset "UTF-8";
@media not all and (platform: ios) {
  .base-ctn:not(.is-mobile) {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: overlay;
    background-color: transparent;
    scrollbar-gutter: stable;
  }
}
.base-ctn::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}

.base-ctn::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.base-ctn::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.35);
}

.base-ctn::-webkit-scrollbar-track {
  background: transparent;
}

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

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

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

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

.ai-solve-btn {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none;
}
[data-theme=light] .ai-solve-btn {
  color: rgb(0, 200, 243);
}
[data-theme=black] .ai-solve-btn {
  color: rgb(0, 169, 205);
}

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

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

.icon-font.mofang-play-stop-icon {
  background-color: transparent;
  background-image: url("/static/101/images/mofang-play-stop.png");
}

.icon-font.mofang-dotry-icon {
  background-color: transparent;
}
[data-theme=light] .icon-font.mofang-dotry-icon {
  background-image: url("/static/101/images/mofang-try-light-stop.png");
}
[data-theme=black] .icon-font.mofang-dotry-icon {
  background-image: url("/static/101/images/mofang-try-stop.png");
}

.icon-font.mofang-doplay-icon {
  background-color: transparent;
  background-image: url("/static/101/images/mofang-doplay.png");
}

.icon-font.mofang-try-stop-icon {
  background-color: transparent;
  background-image: url("/static/101/images/mofang-try.png");
}

/**特定**/
#app {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  background-attachment: fixed;
  padding-top: 1px;
}

.topic-manager .m-content {
  display: flex;
  gap: 1em;
}
.topic-manager .btn.save-btn {
  font-size: 14px;
  padding: 4px 1em;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 1;
  display: inline-block;
}
.topic-manager .open-link {
  cursor: pointer;
  margin: 8px 0;
}

.books-footer {
  border-top: 1px solid #e3e3e3;
  padding: 12px 0;
  margin-top: 4px;
}
.books-footer .books-footer-inner {
  display: flex;
  gap: 2em;
  align-items: center;
  justify-content: space-between;
}
.books-footer .r-ok {
  color: #00a47c;
}
.books-footer .r-fail {
  color: #9C595A;
}

.books-container .btn-box {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.books-container .books-grid {
  display: grid;
  gap: 0.5em;
  grid-template-columns: repeat(1, 1fr);
}
.books-container .books-item-grid {
  display: grid;
  gap: 0.5em;
  grid-template-columns: repeat(3, 1fr);
  margin: 0.5em 0;
}
.books-container .trigger-btn {
  transform: none;
}
.books-container .book-content {
  padding-left: 2em;
}
.books-container .book-content .chapter-content {
  padding-left: 1.25em;
}
.books-container .book-content .chapter-content .sub {
  margin: 0.25em 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  gap: 4px;
}

[data-theme=light] .btn.topic-btn {
  padding: 0 12px;
  font-size: 14px;
  height: 1.25rem;
  line-height: 1.25rem;
  position: relative;
  background-color: #00A47C;
  border-color: #008D65;
  overflow: hidden;
}
[data-theme=light] .btn.topic-btn .loading-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00A47C;
  background-image: url("/static/101/images/loading.gif");
  background-size: 1em;
  background-repeat: no-repeat;
  background-position: center;
}
[data-theme=black] .btn.topic-btn {
  padding: 0 12px;
  font-size: 14px;
  height: 1.25rem;
  line-height: 1.25rem;
  position: relative;
  background-color: #226C2F;
  border-color: #226C2F;
  overflow: hidden;
}
[data-theme=black] .btn.topic-btn .loading-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #226C2F;
  background-image: url("/static/101/images/loading.gif");
  background-size: 1em;
  background-repeat: no-repeat;
  background-position: center;
}

.loading-btn2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/static/101/images/circle-loading.gif ");
  background-size: 1em;
  background-repeat: no-repeat;
  background-position: center;
}

/** prev btn **/
.mobile .prev-btn {
  display: inline-flex;
  margin: 0 auto;
  width: 6em;
  max-width: 6em;
  justify-content: center;
  align-items: center;
}

[data-theme=light] .btn {
  color: white;
  box-shadow: 0px 2px 3px rgba(84, 116, 87, 0.37);
  padding: 0 1rem;
  border: 1px solid #00a47c;
  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;
  border: none;
  color: #400E0E !important;
  box-shadow: none;
}
[data-theme=light] .btn.putOk {
  border: none;
  white-space: nowrap;
}
[data-theme=black] .btn {
  color: white;
  box-shadow: 0px 2px 3px rgba(84, 116, 87, 0.37);
  padding: 0 1rem;
  border: 1px solid #400E0E;
  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;
  border: none;
  color: #400E0E !important;
  box-shadow: none;
}
[data-theme=black] .btn.putOk {
  border: none;
  white-space: nowrap;
}

.mobile .btn {
  color: white;
  font-size: 14px;
  padding: 0 0.5em;
  height: 2em;
  line-height: 2em;
  text-anchor: middle;
  flex: 1;
  text-align: center;
}
.mobile .btn.putOk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

[data-theme=light] .btn.putOk {
  background-color: #00A47C;
  border-color: #008D65;
}
[data-theme=black] .btn.putOk {
  background-color: #226C2F;
  border-color: #226C2F;
}

.btn.mofang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  font-size: 14px;
  height: 1.25rem;
  line-height: 1.25rem;
}
[data-theme=light] .btn.mofang-btn {
  background-color: #00A47C;
  border-color: #008D65;
}
[data-theme=light] .btn.mofang-btn.active {
  background-color: #2FCFA8;
  border-color: #2FCFA8;
}
[data-theme=black] .btn.mofang-btn {
  background-color: #226C2F;
  border-color: #226C2F;
}
[data-theme=black] .btn.mofang-btn.active {
  background-color: #42912C;
  border-color: #42912C;
}

.full-mofang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 2em;
  color: white;
}
[data-theme=light] .full-mofang-btn {
  background-color: #00A47C;
  border-color: #008D65;
}
[data-theme=light] .full-mofang-btn.active {
  background-color: #2FCFA8;
  border-color: #2FCFA8;
}
[data-theme=black] .full-mofang-btn {
  background-color: #226C2F;
  border-color: #226C2F;
}
[data-theme=black] .full-mofang-btn.active {
  background-color: #42912C;
  border-color: #42912C;
}

.topic-card-no-padding {
  margin-bottom: 0;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 1px;
}

.topic-card {
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.25rem;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 1px;
}
.topic-card .status-col {
  font-size: 14px;
  display: flex;
  color: #34170F;
  gap: 1rem;
  margin-bottom: 3px;
}
.topic-card .status-col .topic-saved-status {
  color: #FF8E6D;
}

.card {
  font-size: 14px;
}
[data-theme=light] .card {
  background-color: rgba(255, 255, 255, 0.4);
}
[data-theme=black] .card {
  background-color: rgba(255, 255, 255, 0.4);
}
.card {
  border-radius: 1px;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.5rem;
}

[data-theme=light] .spread {
  color: #5A45B0;
  font-weight: normal;
}
[data-theme=black] .spread {
  color: #400E0E;
  font-weight: bold;
}

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

.timu-control {
  display: flex;
  border-radius: 3px;
  border: 1px solid #BBB4AF;
}
.timu-control .step-wp {
  padding: 2px 8px;
  cursor: pointer;
}
.timu-control .step-wp:nth-child(1), .timu-control .step-wp:nth-child(2), .timu-control .step-wp:nth-child(3) {
  border-right: 1px solid #BBB4AF;
}
.timu-control .step-wp:hover {
  background-color: rgba(205, 197, 186, 0.5294117647);
}
.timu-control .step-wp:active, .timu-control .step-wp:focus, .timu-control .step-wp:focus-within {
  box-shadow: 0 0 0 1px #826666 !important;
  background-color: rgba(205, 197, 186, 0.5294117647);
  box-sizing: border-box;
  z-index: 99;
}
.timu-control .step-wp.nonborder {
  border: none;
}
.timu-control .step-btn {
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.timu-control .first-step-btn {
  background-image: url("/static/101/images/steps.png");
  background-position: -16px 0;
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
}
.timu-control .prev-step-btn {
  background-image: url("/static/101/images/steps.png");
  background-position: 0 0;
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
}
.timu-control .next-step-btn {
  background-image: url("/static/101/images/steps.png");
  background-position: 0px 0;
  width: 16px;
  height: 16px;
}
.timu-control .last-step-btn {
  background-image: url("/static/101/images/steps.png");
  background-position: -14px 0;
  width: 16px;
  height: 16px;
}
@media (max-width: 1280px) {
  .timu-control.w .step-btn {
    width: 0.75em;
    height: 0.75em;
    background-size: cover;
  }
}
.timu-control.w .step-wp:nth-child(1) {
  padding: 0 1em 0 2em;
}
@media (max-width: 1280px) {
  .timu-control.w .step-wp:nth-child(1) {
    padding: 0 0.5em 0 0.5em;
  }
}
.timu-control.w .step-wp:nth-child(4) {
  padding: 0 2em 0 1em;
}
@media (max-width: 1280px) {
  .timu-control.w .step-wp:nth-child(4) {
    padding: 0 0.5em 0 0.5em;
  }
}
.timu-control.w .step-wp.active {
  box-shadow: none !important;
}
.timu-control.w .step-wp:active {
  box-shadow: none !important;
  background-color: transparent;
}
.timu-control.w .step-wp:nth-child(2), .timu-control.w .step-wp:nth-child(3) {
  padding: 0 1em;
}
@media (max-width: 1280px) {
  .timu-control.w .step-wp:nth-child(2), .timu-control.w .step-wp:nth-child(3) {
    padding: 0 0.5em;
  }
}
.timu-control.w .first-step-btn {
  background-image: url("/static/101/images/white-steps.png");
  background-position: 0px 0;
  transform: rotate(0);
}
.timu-control.w .prev-step-btn {
  background-image: url("/static/101/images/white-steps.png");
  background-position: -1em 0;
}
@media (max-width: 1280px) {
  .timu-control.w .prev-step-btn {
    background-position: -0.75em 0;
  }
}
.timu-control.w .prev-step-btn {
  transform: rotate(0);
}
.timu-control.w .next-step-btn {
  background-image: url("/static/101/images/white-steps.png");
  background-position: -1em 0;
  transform: rotate(180deg);
}
@media (max-width: 1280px) {
  .timu-control.w .next-step-btn {
    background-position: -0.75em 0;
  }
}
.timu-control.w .last-step-btn {
  background-image: url("/static/101/images/white-steps.png");
  background-position: 0 0;
  transform: rotate(180deg);
}

[data-theme=light] .steps-bar {
  background-color: #00A47C;
  border: 4px solid #00A47C;
}
[data-theme=black] .steps-bar {
  background-color: #400E0E;
  border: 4px solid #400E0E;
}
.steps-bar {
  border-radius: 10em;
  overflow: hidden;
}
.steps-bar .first-step-btn,
.steps-bar .prev-step-btn,
.steps-bar .next-step-btn,
.steps-bar .last-step-btn {
  background-size: 2em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
}

.fullscreen.mobile .bruce {
  display: block;
}
.fullscreen.mobile .left-btns {
  display: flex;
  flex-direction: row;
}

.mobile .left-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#side-control .direction-control-pane .left-btns {
  flex-direction: row;
}

.left-btns {
  display: flex;
  gap: 4px;
  flex-direction: column;
  align-items: center;
}

.rounded-btn {
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  -o-object-fit: contain;
     object-fit: contain;
  background-size: contain;
  background-repeat: no-repeat;
}

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

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

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

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

/**answer area**/
.ok-title {
  display: inline-block;
  cursor: auto;
}
[data-theme=light] .ok-title {
  color: #159ADA;
}
[data-theme=black] .ok-title {
  color: #1C569A;
}
.ok-title {
  font-size: 14px;
  padding: 12px 17px;
  padding-bottom: 4px;
}

.fail-title {
  display: inline-block;
  cursor: auto;
  font-size: 14px;
  padding: 12px 17px;
  padding-bottom: 4px;
}
[data-theme=light] .fail-title {
  color: #F9754E;
}
[data-theme=black] .fail-title {
  color: #924547;
}

.change-title {
  display: inline-block;
  cursor: auto;
  font-size: 14px;
  padding: 12px 17px;
  padding-bottom: 4px;
}
[data-theme=light] .change-title {
  color: #129A00;
}
[data-theme=black] .change-title {
  color: #226C2F;
}

.section-card {
  margin-bottom: 0.5rem;
}
[data-theme=light] .section-card {
  background-color: white;
}
[data-theme=black] .section-card {
  background-color: rgba(255, 255, 255, 0.35);
}

.answer-item {
  margin: 4px 0;
}

.share-answer-item {
  padding: 0;
  margin: 4px 0;
}

.evaluation-text {
  white-space: nowrap;
}
[data-theme=light] .evaluation-text {
  color: #129A00;
}
[data-theme=black] .evaluation-text {
  color: #226C2F;
}

.best-answer-toggle {
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
[data-theme=light] .best-answer-toggle {
  color: #129A00;
}
[data-theme=black] .best-answer-toggle {
  color: #226C2F;
}
.best-answer-toggle.is-active {
  color: #22c55e;
  font-weight: 600;
}

.answer-item-content {
  padding: 4px 17px;
  font-size: 14px;
  color: #34170F;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em;
}
.answer-item-content .ctrls {
  display: inline-block;
}

.evaluation-area {
  white-space: nowrap;
  background-color: transparent;
  padding: 0 3.4em;
}
.evaluation-area .submit-evaluation-btn {
  display: inline-block;
  padding: 0.25rem 1rem;
  border: 2px solid #5A45B0;
  color: #5A45B0;
  font-weight: bold;
  border-radius: 2em;
  cursor: pointer;
}

.mobile .answer-item-content .contribute {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 20px;
  text-align: left;
}
.mobile .answer-item-content .contribute .uname {
  color: #5A45B0;
  font-weight: bold;
}
.mobile .answer-item-content .seq {
  width: -moz-fit-content;
  width: fit-content;
}
.mobile .answer-item-content .ctrls {
  grid-column-start: 2;
  grid-column-end: 3;
}
.mobile .answer-item-content .control-wp {
  clear: right;
}

.answer-mark-tip {
  font-size: 14px;
  color: #129A00;
}

.stepcounter {
  min-width: 3em;
  text-align: center;
}

.contribute {
  display: inline;
  padding: 0 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.interrupt {
  display: none;
}

.mobile .interrupt {
  display: block;
}

/**题目审核*/
.score-star-icon {
  width: 16px;
  height: 16px;
  background-image: url("/static/101/images/score-star.png");
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.score-star-fill-icon, .active-score-5 .score-star-icon:nth-child(-n+5), .active-score-4 .score-star-icon:nth-child(-n+4), .active-score-3 .score-star-icon:nth-child(-n+3), .active-score-2 .score-star-icon:nth-child(-n+2), .active-score-1 .score-star-icon:nth-child(-n+1) {
  background-image: url("/static/101/images/score-star-fill.png");
}

/**剩余部分**/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  font-size: 24px;
}

:root, html, body {
  overscroll-behavior-y: none;
}

:root, html, body {
  width: 100%;
  height: auto;
  min-height: auto;
}

.app {
  width: 100%;
  overflow: auto;
  overscroll-behavior-y: none;
}

.topic-layout {
  max-width: min(1200px, 100vw - 200px);
  margin: 0 auto;
}
.topic-layout.mobile {
  padding: 0;
  max-width: 100%;
  width: 100%;
}
.topic-layout.fullscreen {
  max-width: -moz-max-content;
  max-width: max-content;
}
.topic-layout.fullscreen .content {
  gap: 12px;
}
.topic-layout .topic-header-wp {
  padding: 1px 0;
}
.topic-layout .topic-header {
  width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0 8px 0;
  min-height: 1.25rem;
  position: relative;
}
.topic-layout .topic-header .title {
  font-size: 0.75rem;
  color: #34170F;
  font-weight: bold;
}
.topic-layout .topic-header .do-work-title {
  font-size: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 4px;
  gap: 4px;
}
[data-theme=light] .topic-layout .topic-header .do-work-title .link {
  color: #5A45B0;
}
[data-theme=light] .topic-layout .topic-header .do-work-title .link:hover {
  -webkit-text-decoration: #5A45B0;
          text-decoration: #5A45B0;
}
[data-theme=black] .topic-layout .topic-header .do-work-title .link {
  color: #5A45B0;
}
[data-theme=black] .topic-layout .topic-header .do-work-title .link:hover {
  -webkit-text-decoration: #5A45B0;
          text-decoration: #5A45B0;
}
[data-theme=light] .topic-layout .topic-header .do-work-title {
  color: #2B0B0B;
}
[data-theme=black] .topic-layout .topic-header .do-work-title {
  color: #2B0B0B;
}
.topic-layout .topic-header .topic-switch {
  display: flex;
  gap: 1.34rem;
}
.topic-layout .content {
  display: flex;
  gap: 0.5em;
  width: 100%;
}

.menu-close.topic-layout:not(.mobile):not(.fullscreen) {
  max-width: min(1200px, 100vw - 3.2rem - 12px);
  width: min(1200px, 100vw - 3.2rem - 12px);
}

.mobile .topic-header {
  margin: 8px 0;
}
.mobile .topic-header.topic-center {
  justify-content: center;
}

.ios-switch {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: all 100ms;
  border-radius: 31px;
  width: 2rem;
  height: 1rem;
  background-color: #e9e9eb;
}
.ios-switch::before {
  position: absolute;
  content: "";
  transition: all 300ms cubic-bezier(0.45, 1, 0.4, 1);
  border-radius: 31px;
  width: 2rem;
  height: 1rem;
  background-color: #ffffff;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.ios-switch::after {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 27px;
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  content: "";
  transition: all 300ms cubic-bezier(0.4, 0.4, 0.25, 1.35);
}
.ios-switch.mini-switch {
  width: 1rem;
  height: 0.4rem;
}
.ios-switch.mini-switch::before {
  width: 0.8rem;
  height: 0.4rem;
}
.ios-switch.mini-switch::after {
  width: 0.4rem;
  height: 0.4rem;
}
[data-theme=light] .ios-switch:checked {
  background-color: #00A47C;
}
[data-theme=black] .ios-switch:checked {
  background-color: #226C2F;
}
.ios-switch:checked::before {
  transform: scale(0);
}
.ios-switch:checked::after {
  transform: translateX(1.15rem);
}
.ios-switch.mini-switch:checked::after {
  transform: translateX(0.6rem);
}

.ios-switch.vertical {
  transform: rotate(90deg);
  margin: 0.5rem 0;
}
.ios-switch.vertical::after {
  transform: rotate(0deg);
}
.ios-switch.vertical:checked::after {
  transform: translateX(1.15rem) rotate(0deg);
}
.ios-switch.vertical.mini-switch:checked::after {
  transform: translateX(0.6rem) rotate(0deg);
}

.move-item {
  display: flex;
  align-items: center;
  margin-top: 0.25rem;
}
.move-item .qizi {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  border-radius: 100%;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
}
.move-item .qizi.black {
  background-color: black;
  color: white;
}
.move-item .qizi.white {
  border: 1px solid #34170F;
  color: #34170F;
}
.move-item .pt {
  margin-left: 0.2rem;
  color: #34170F;
  font-size: 14px;
  width: 2rem;
}
.move-item .qizi-comment-input {
  border-radius: 2em;
}
[data-theme=light] .move-item .qizi-comment-input {
  border: 1px solid #129A00;
}
[data-theme=black] .move-item .qizi-comment-input {
  border: 1px solid #400E0E;
}
.move-item .qizi-comment-input {
  line-height: 1.7em;
  max-width: 12rem;
  margin: 0 0.5rem;
  padding: 0 0.5em;
}
.move-item .qizi-comment-input:hover {
  outline: none;
}
.move-item .delete-link {
  color: #5A45B0;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.qipan-sticky {
  position: sticky !important;
  top: 0;
  z-index: 99999;
}

.qipan-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  transform: translateZ(0);
}

.qipan {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.qipan.fullscreen {
  width: auto;
  flex-direction: row;
}

.qipan-wwp {
  flex: 1;
}

.fullscreen .qipan-wwp {
  flex: auto;
}

.mobile .qipan-wwp {
  flex: auto;
}

.qipan-wp {
  display: flex;
  justify-content: center;
  border-radius: 14px;
}

.qipan-shadow {
  box-shadow: 0 4px 0 rgba(188, 176, 168, 0.48);
  border-radius: 14px;
}

.qipan-content {
  position: relative;
}
[data-theme=light] .qipan-content {
  box-shadow: 0 6px 0 #AE7B32;
}
[data-theme=black] .qipan-content {
  box-shadow: 0 6px 0 #8E7F77;
}
.qipan-content {
  margin-bottom: 6px;
  border-radius: 14px;
  will-change: contents;
  transform: translateZ(0);
  overflow: hidden;
  box-shadow: 0px 0px 4px 1px rgba(106, 112, 116, 0.3);
}

.topic-side {
  display: flex;
  flex: 0;
  flex-grow: 0;
  flex-direction: column;
  position: relative;
  max-width: 20em;
  width: 20em;
  margin-top: 5px;
}
@media (max-width: 1180px) {
  .topic-side {
    width: 15em;
  }
}

.mobile .topic-side {
  max-width: unset;
  width: 100%;
}

.fullscreen .topic-side {
  width: 100%;
  height: 100%;
}

.answer-control {
  font-size: 14px;
  color: #5A45B0;
}

.seq {
  height: 1.25em;
  padding: 0 6px;
  background-color: #400E0E;
  border-radius: 10em;
  color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

[data-theme=light] .highlight .answer-item-content {
  background-color: rgba(189, 239, 186, 0.9);
}
[data-theme=black] .highlight .answer-item-content {
  background-color: rgba(66, 145, 44, 0.21);
}
.highlight .answer-item-content .seq, .highlight .answer-item-content .stepcounter, .highlight .answer-item-content .contribute, .highlight .answer-item-content .evaluation {
  font-weight: bold;
}

[data-theme=light] .correct-highlight {
  background-color: rgba(189, 239, 186, 0.9);
}
[data-theme=black] .correct-highlight {
  background-color: rgba(66, 145, 44, 0.21);
}
.correct-highlight .seq, .correct-highlight .stepcounter, .correct-highlight .contribute, .correct-highlight .evaluation {
  font-weight: bold;
}

.toggle-box {
  display: flex;
  color: #34170F;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
  font-size: 14px;
  cursor: pointer;
}
.toggle-box .a2-tip {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  border-radius: 5rem;
}
[data-theme=light] .toggle-box.active .a2-tip {
  background-color: rgba(189, 239, 186, 0.9);
}
[data-theme=black] .toggle-box.active .a2-tip {
  background-color: rgba(66, 145, 44, 0.21);
}
.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: #34170F;
}

.qizi-mark {
  margin: 1rem 0 1rem 1rem;
  color: #34170F;
}

.dir-control-wp {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 0;
  font-size: 14px;
  height: 2rem;
}
.dir-control-wp .dir-control {
  display: flex;
  z-index: 9999;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  padding: 4px 2em;
  margin: auto;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2em;
}
.dir-control-wp .dir-control .putOk {
  height: 1.2rem;
  line-height: 1.2rem;
  font-size: 14px !important;
}
.dir-control-wp .dir-control .dir-btn {
  cursor: pointer;
  height: 1rem;
  width: 1rem;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
[data-theme=light] .dir-control-wp .dir-control .dir-btn.left-btn, [data-theme=light] .dir-control-wp .dir-control .dir-btn.right-btn, [data-theme=light] .dir-control-wp .dir-control .dir-btn.up-btn, [data-theme=light] .dir-control-wp .dir-control .dir-btn.down-btn {
  background-image: url("/static/101/images/arrow.png");
}
[data-theme=black] .dir-control-wp .dir-control .dir-btn.left-btn, [data-theme=black] .dir-control-wp .dir-control .dir-btn.right-btn, [data-theme=black] .dir-control-wp .dir-control .dir-btn.up-btn, [data-theme=black] .dir-control-wp .dir-control .dir-btn.down-btn {
  background-image: url("/static/101/images/arrow-dark.png");
}
.dir-control-wp .dir-control .dir-btn.up-btn {
  transform: rotate(270deg);
}
.dir-control-wp .dir-control .dir-btn.down-btn {
  transform: rotate(90deg);
}
.dir-control-wp .dir-control .dir-btn.left-btn {
  transform: rotate(180deg);
}

.mobile .dir-control-wp {
  padding: 0;
  margin: 4px 0;
  height: auto;
}
.mobile .dir-control-wp .dir-control {
  padding: 4px 12px;
}
.mobile .dir-control-wp .dir-btn {
  height: 1.25rem;
  width: 1.25rem;
  white-space: nowrap;
}

.topic-controls-wp {
  position: relative;
  z-index: 9999;
  pointer-events: all;
}

.topic-controls {
  position: relative;
  justify-content: center;
  align-items: center;
  display: none;
}
.topic-controls.hidden-compact {
  position: fixed;
  left: -999999px;
}
.topic-controls .topic-controls-content {
  display: inline-flex;
  gap: 0.67rem;
  margin: 0.25rem 0;
  justify-content: center;
  align-items: center;
}

.mobile .topic-controls-content {
  display: flex;
  width: 100%;
}

.direction-control-pane {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.25rem;
  position: relative;
}

.mobile-musthide-side-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.mobile-musthide-side-center .musthide-countdown {
  margin-top: 0;
}
.mobile-musthide-side-center .musthide-countdown.mobile {
  padding: 0;
}
.mobile-musthide-side-center .musthide-countdown-mobile {
  width: 5.5em;
  max-width: 5.5em;
  min-width: 5.5em;
  height: 1.54rem;
  position: relative;
}
.mobile-musthide-side-center .musthide-countdown-mobile-pill {
  width: 100%;
  height: 100%;
  display: block;
}
.mobile-musthide-side-center .musthide-countdown-mobile-track,
.mobile-musthide-side-center .musthide-countdown-mobile-progress {
  stroke-width: 2.8;
}
.mobile-musthide-side-center .musthide-countdown-mobile-time {
  min-width: 0;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2px;
}

.fullscreen .topic-controls {
  display: none;
}

@media (max-width: 768px) {
  .topic-layout .content {
    flex-direction: column;
  }
  .topic-layout .content .qipan {
    position: relative;
  }
}
.submit-wp {
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.submit-wp .submit-result {
  color: #129A00;
  font-size: 14px;
  animation: slideIn 0.2s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(200px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.put-tip {
  font-size: 14px;
}

.qipan-result-wp {
  z-index: 9999;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.qipan-result-wp .qipan-result {
  width: 100%;
  height: 2.5rem;
  text-align: center;
}
[data-theme=light] .qipan-result-wp .qipan-result {
  background-color: rgba(255, 255, 255, 0.74);
  color: #159ADA;
}
[data-theme=black] .qipan-result-wp .qipan-result {
  background-color: rgba(237, 233, 233, 0.7);
  color: #1C569A;
}
.qipan-result-wp .qipan-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
[data-theme=light] .qipan-result-wp .qipan-result.error {
  color: #FF6133;
}
[data-theme=black] .qipan-result-wp .qipan-result.error {
  color: #400E0E;
}
.qipan-result-wp .result-content {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: 0 auto;
}
.qipan-result-wp .result-content .icon {
  width: 1.25em;
  height: 1.25em;
  cursor: pointer;
  background-size: cover;
}
[data-theme=light] .qipan-result-wp .result-content .icon.ok {
  background-image: url("/static/101/images/rok.png");
}
[data-theme=light] .qipan-result-wp .result-content .icon.fail {
  background-image: url("/static/101/images/rerr.png");
}
[data-theme=black] .qipan-result-wp .result-content .icon.ok {
  background-image: url("/static/101/images/rok-d.png");
}
[data-theme=black] .qipan-result-wp .result-content .icon.fail {
  background-image: url("/static/101/images/rerr-d.png");
}
.qipan-result-wp .close-wp {
  display: inline-flex;
  align-items: center;
  margin-right: 0.4em;
  z-index: 9;
}
.qipan-result-wp .close-wp .close {
  width: 1.5em;
  height: 1.5em;
  cursor: pointer;
}

.diagram-map {
  padding: 0.5rem;
  font-size: 14px;
}
.diagram-map.second {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.diagram-map .dm-header {
  font-weight: bold;
}
.diagram-map .dm-header .dm-title {
  color: #34170F;
}
.diagram-map .dm-header .dm-link {
  color: #5A45B0;
  cursor: pointer;
}
.diagram-map .dm-content {
  margin-top: 0.5em;
}

.dm-step {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 8px 0;
}
.dm-step .icon-wp {
  width: 2.5em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.dm-step .icon-wp .trigger-btn {
  transform: translateY(0);
}
.dm-step .dm-point {
  margin: 0 0.5em;
  width: 0.9em;
  height: 0.9em;
  border-radius: 100%;
}
.dm-step .dm-point.c {
  background-color: #008300;
}
.dm-step .dm-point.f {
  background-color: #FF0000;
}
.dm-step .dm-point.o {
  background-color: #0300FF;
}
.dm-step .dm-label {
  color: #34170F;
  width: 4em;
}

.topic-side .taskdo-info {
  color: #34170F;
  font-size: 14px;
}
.topic-side .f-title {
  font-size: 14px;
  color: #34170F;
}

.myan-success {
  color: #FF6133;
}

.myan-fail {
  color: #75CA5C;
}

.myan-success-bg {
  background-color: #75CA5C;
}

.myan-fail-bg {
  background-color: #FF6133;
}

.topic-fullscreen-section {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  align-self: center;
  width: 100%;
}
.topic-fullscreen-section .my-card {
  margin: 1rem 0;
}
.topic-fullscreen-section .my-card .my-content {
  background-color: rgba(255, 255, 255, 0.45);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.topic-fullscreen-section .my-card .my-content .my-answer-info {
  font-size: 0.75rem;
  display: flex;
  gap: 1em;
}
.topic-fullscreen-section .my-card .my-content .my-answer-board {
  color: #5A45B0;
  font-weight: bold;
}
.topic-fullscreen-section .my-card .my-content .my-answer-state.fail {
  color: #FF6133;
}
.topic-fullscreen-section .my-card .my-content .my-answer-state.ok {
  color: #75CA5C;
}
.topic-fullscreen-section .my-card .my-content .my-date {
  color: #5A45B0;
}
.topic-fullscreen-section .my-card .my-content .my-control {
  font-size: 0.75rem;
  display: flex;
  gap: 0.5em;
}
.topic-fullscreen-section .my-card .my-content .my-control .my-step {
  color: #5A45B0;
}

.mobile.qipan-sticky {
  top: 0;
}
.mobile.qipan-wrap {
  overflow: hidden;
  margin-bottom: 0;
}
.mobile.qipan-wrap .topic-controls {
  margin: 0;
}
.mobile.qipan-wrap .topic-controls .btn {
  margin: 4px 0;
}
.mobile > .content {
  gap: 0;
}

.qipan-bg {
  display: none;
}

.mobile {
  box-sizing: content-box;
}
.mobile .topic-controls {
  padding: 0 4px;
  white-space: nowrap;
  display: flex;
}
.mobile .dir-control {
  position: relative;
  top: 0;
}
.mobile .qipan-bg {
  display: block;
}
[data-theme=light] .mobile .qipan-bg {
  background-image: url("/static/101/images/bg.jpg");
}
[data-theme=black] .mobile .qipan-bg {
  background-image: url("/static/101/images/bg.jpeg");
}
.mobile .qipan-bg {
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.fullscreen-prev-btn-wp {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

#side-control .direction-control-pane {
  padding: 0 6px;
}

.chart-container {
  position: relative;
  width: 100%;
  height: 300px;
}

.mk, .mobile .prev-btn-container {
  transform: translateZ(0);
}
.mk.stk, .mobile .stk.prev-btn-container {
  padding: 4px 0;
  pointer-events: none;
}
.mk.stk .prev-btn, .mobile .stk.prev-btn-container .prev-btn {
  pointer-events: all;
}
.mk.prev-btn-bg, .mobile .prev-btn-bg.prev-btn-container {
  background-image: url("/static/101/images/prev-btn-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 9;
}

.mobile .stk {
  position: absolute;
  left: 0;
  right: 0;
}

.prev-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  gap: 4px;
}
.prev-btn-container .btn {
  font-size: 14px;
  padding: 0 1.25em;
}

.mobile-header {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding: 4px;
  color: #34170F;
  gap: 4px;
}
.mobile-header .mobile-topic-title {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.mobile-header .mobile-topic-title h1 {
  font-size: 18px;
}

.mobile-topic-desc {
  font-size: 14px;
  color: #129A00;
  background-color: rgba(255, 255, 255, 0.45);
  padding: 4px;
  text-align: center;
}

.float-input-wp {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: all;
  z-index: 99999999;
  font-size: 28px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.float-input-wp .float-input {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-color: white;
  width: 100%;
  padding: 0.7em;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.float-input-wp .float-input .my-comment-title {
  font-size: 14px;
}
.float-input-wp .float-input .btn {
  width: -moz-fit-content;
  width: fit-content;
}
.float-input-wp .float-input .comment-addit, .float-input-wp .float-input .comment-errors {
  font-size: 14px;
}
.float-input-wp .float-input .textarea {
  border: none;
  flex: 1;
  border-radius: 12px;
  background-color: #F6F6F6;
  overflow: hidden;
}
.float-input-wp .float-input .textarea textarea {
  outline: none;
  border: none;
  background-color: transparent;
  width: 100%;
  font-size: 20px;
  height: 1.25em;
  line-height: 1.25em;
  display: flex;
  justify-content: center;
  padding: 0;
  padding: 0 6px;
  height: 5em;
  align-items: center;
}
.float-input-wp .float-input .textarea textarea::-webkit-scrollbar {
  display: none;
}
.float-input-wp .float-input .btn {
  padding-left: 1em;
  padding-right: 1em;
}
.float-input-wp .float-input .close-btn {
  background-image: url("/static/101/images/close.png");
  width: 0.75em;
  height: 0.75em;
  position: absolute;
  right: 16px;
  top: 16px;
  background-size: cover;
}

.timu-switch-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  padding: 12px;
  padding-bottom: 56px;
}

.timu-switch {
  display: flex;
  gap: 1em;
  color: white;
  justify-content: center;
}
.timu-switch .btn.topic-btn {
  height: 1.54rem;
  line-height: 1.54rem;
  width: 8em;
  text-align: center;
}
[data-theme=light] .timu-switch .btn.topic-btn {
  background-color: #00A47C;
  border-color: #008D65;
}
[data-theme=black] .timu-switch .btn.topic-btn {
  background-color: #226C2F;
  border-color: #226C2F;
}

#sider-end {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.fulllscreen-sider {
  display: flex;
  flex-direction: column;
  padding-top: 32px;
}
@media (min-width: 1280px) {
  .fulllscreen-sider {
    width: min(26vw, 420px);
  }
}
.fulllscreen-sider .topic-header-title, .fulllscreen-sider .topic-info-wp {
  margin-bottom: 14px;
}
.fulllscreen-sider .topic-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 32px;
}
.fulllscreen-sider .guan-title, .fulllscreen-sider .f-guan-title {
  font-size: 18px;
  transform-origin: left;
}
@media (max-width: 1230px) {
  .fulllscreen-sider .guan-title, .fulllscreen-sider .f-guan-title {
    font-size: 14px;
  }
}
@media (max-width: 1100px) {
  .fulllscreen-sider .guan-title, .fulllscreen-sider .f-guan-title {
    font-size: 12px;
  }
}
.fulllscreen-sider .timu-switch-container .timu-switch {
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .fulllscreen-sider .timu-switch-container .timu-switch .topic-btn {
    height: 2em;
    line-height: 2em;
    font-size: 12px;
  }
}
.fulllscreen-sider .full-mofang-btn {
  margin: 0 auto;
  margin-top: 8px;
  font-size: 18px;
}
@media (max-width: 1280px) {
  .fulllscreen-sider .full-mofang-btn {
    height: 2em;
    font-size: 12px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 1280px) {
  .fulllscreen-sider .dir-control-wp .dir-control {
    padding: 4px 0.5em;
    gap: 0.5em;
  }
  .fulllscreen-sider .dir-control-wp .dir-control .dir-control .putOk {
    font-size: 12px !important;
  }
}

.my-tag-label {
  color: #34170F;
}

.blue-text {
  color: #5A45B0;
}

.toggle-btn {
  display: inline-block;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 4px;
}
[data-theme=light] .toggle-btn {
  border: 2px solid #00a47c;
}
[data-theme=black] .toggle-btn {
  border: 2px solid #226C2F;
}
.toggle-btn {
  cursor: pointer;
}
[data-theme=light] .toggle-btn.active {
  background-color: #00a47c;
}
[data-theme=black] .toggle-btn.active {
  background-color: #226C2F;
}
.toggle-btn.active {
  background-image: url("/static/101/images/ok.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.toggle-btn.book {
  background-color: transparent;
}
[data-theme=light] .toggle-btn.book {
  background-image: url("/static/101/images/card-r-light.png");
}
[data-theme=black] .toggle-btn.book {
  background-image: url("/static/101/images/card-r.png");
}
.toggle-btn.book {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border: none;
}

.book-modal-wp {
  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;
  z-index: 999999999;
}
.book-modal-wp .center-layout, .book-modal-wp .tags-modal-content {
  padding: 48px 0;
  background-color: rgba(255, 255, 255, 0.79);
  background-size: cover;
}
[data-theme=light] .book-modal-wp .center-layout, [data-theme=light] .book-modal-wp .tags-modal-content {
  background-image: url(none);
}
[data-theme=black] .book-modal-wp .center-layout, [data-theme=black] .book-modal-wp .tags-modal-content {
  background-image: url("/static/101/images/modal-bg.jpg");
}
.book-modal-wp .center-layout .close-btn, .book-modal-wp .tags-modal-content .close-btn {
  background-image: url("/static/101/images/close.png");
  width: 20px;
  height: 20px;
  position: absolute;
  right: 16px;
  top: 16px;
  background-size: cover;
  cursor: pointer;
}
.book-modal-wp .center-layout .center-content, .book-modal-wp .tags-modal-content .center-content {
  color: #400E0E;
  font-weight: bold;
  font-size: 16px;
  margin: 48px 0;
}
.book-modal-wp .center-layout .btn, .book-modal-wp .tags-modal-content .btn {
  font-size: 16px;
}
.book-modal-wp .center-layout, .book-modal-wp .tags-modal-content {
  background-repeat: no-repeat;
  width: 300px;
  height: 200px;
  flex-direction: column;
  background-color: white;
  padding: 1em;
  border-radius: 12px;
  box-sizing: border-box;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

[data-theme=light] .review-card {
  background-color: white;
}
[data-theme=black] .review-card {
  background-color: rgba(255, 255, 255, 0.35);
}
.review-card {
  width: 100%;
  margin: 8px 0;
}
.review-card .m-item {
  height: 1.5em;
}
.review-card {
  padding: 8px;
}
.review-card .common-area {
  display: flex;
  gap: 14px;
}
.review-card .common-area .score-label {
  white-space: nowrap;
}
.review-card .common-area .vote {
  width: 2em;
}

.inner-link, .hover-link:hover {
  cursor: pointer;
  color: #129A00;
}

.od-tag {
  border-radius: 10em;
  color: white;
  padding: 8px 16px;
}
[data-theme=light] .od-tag {
  background-color: #A2CD91;
}
[data-theme=black] .od-tag {
  background-color: #A2CD91;
}
.od-tag {
  font-size: 14px;
  cursor: pointer;
}

.book-modal-wp .tags-modal-content {
  width: 622px;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 94vw;
  align-items: flex-start;
  padding: 0;
}
.book-modal-wp .tags-modal-content .topic-label {
  padding: 24px;
  padding-bottom: 0;
}
.book-modal-wp .tags-modal-content .tags-inner {
  width: 100%;
}
[data-theme=light] .book-modal-wp .tags-modal-content .tags-inner {
  background-color: white;
}
[data-theme=black] .book-modal-wp .tags-modal-content .tags-inner {
  background-color: #EEE9E0;
}
.book-modal-wp .tags-modal-content .tags-footer {
  width: 100%;
  padding: 16px;
}
[data-theme=light] .book-modal-wp .tags-modal-content .tags-footer {
  background-color: #E8E8E8;
}
[data-theme=black] .book-modal-wp .tags-modal-content .tags-footer {
  background-color: #DDD7CB;
}
.book-modal-wp .tags-modal-content .tags-list {
  padding: 0 24px;
  max-height: min(300px, 100vh - 200px);
  overflow: auto;
}
.book-modal-wp .tags-modal-content .input-wp {
  width: 100%;
  padding: 0 24px;
}
.book-modal-wp .tags-modal-content .input-wp input {
  text-indent: 0.5em;
  width: 100%;
  border: 1px solid #D6C8C7;
  background-color: transparent;
  border-radius: 8px;
  height: 40px;
  font-size: 14px;
}
.book-modal-wp .tags-modal-content .btn {
  font-size: 18px;
}
[data-theme=light] .book-modal-wp .tags-modal-content .btn.mofang {
  border: 1px solid #00A47C;
  background-color: #00A47C;
}
[data-theme=black] .book-modal-wp .tags-modal-content .btn.mofang {
  border: 1px solid #226C2F;
  background-color: #226C2F;
}
.book-modal-wp .tags-modal-content .btn.mofang {
  box-sizing: 0 2px 3px 0 #7F7873;
}
.book-modal-wp .tags-modal-content .close-btn {
  background-image: url("/static/101/images/close_tag.png");
  width: 16px;
  height: 16px;
}

.topic-label {
  font-size: 22px;
  color: #400E0E;
  font-weight: bold;
  margin-bottom: 21px;
}

.topic-info-wp {
  padding: 0 4px;
}
.topic-info-wp .title {
  font-size: 18px;
}
@media (max-width: 1230px) {
  .topic-info-wp .title {
    font-size: 14px;
  }
}
@media (max-width: 1100px) {
  .topic-info-wp .title {
    font-size: 12px;
  }
}

.topic-title-content {
  display: inline-flex;
}

.timu-card-wp {
  position: relative;
  width: 100%;
}
.timu-card-wp.showbg {
  background: url("/static/101/images/fullscreen-bg.png") no-repeat;
  background-size: 80%;
  background-position: center;
}
.timu-card-wp .timu-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.timu-card-wp .timu-card .timu-card-inner {
  border-radius: 14px;
  width: 60%;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5em 0;
}
.timu-card-wp .timu-card .rounded-btn-groups {
  width: 80%;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 8px;
}
.timu-card-wp .timu-card .rounded-btn-groups .btn {
  width: 100%;
  height: 2.5em;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
@media (max-width: 1280px) {
  .timu-card-wp .timu-card .rounded-btn-groups .btn {
    font-size: 12px;
  }
}
.timu-card-wp .timu-card .rounded-btn-groups .answer-btn {
  width: 100%;
  height: 2.5em;
  text-align: center;
  position: relative;
  gap: 1em;
}
.timu-card-wp .timu-card .rounded-btn-groups .answer-btn .float-status {
  position: absolute;
  left: 2em;
  width: 1.25em;
  height: 1.25em;
  top: 0;
  bottom: 0;
  margin: auto;
  background-position: center;
  background-size: contain;
}
[data-theme=light] .timu-card-wp .timu-card .rounded-btn-groups .answer-btn .float-status.fail {
  background-image: url("/static/101/images/full-fail.png");
}
[data-theme=light] .timu-card-wp .timu-card .rounded-btn-groups .answer-btn .float-status.timeout {
  background-image: url("/static/101/images/full-timeout.png");
}
[data-theme=light] .timu-card-wp .timu-card .rounded-btn-groups .answer-btn .float-status.ok {
  background-image: url("/static/101/images/full-ok.png");
}
[data-theme=black] .timu-card-wp .timu-card .rounded-btn-groups .answer-btn .float-status.fail {
  background-image: url("/static/101/images/full-fail-d.png");
}
[data-theme=black] .timu-card-wp .timu-card .rounded-btn-groups .answer-btn .float-status.timeout {
  background-image: url("/static/101/images/full-timeout-d.png");
}
[data-theme=black] .timu-card-wp .timu-card .rounded-btn-groups .answer-btn .float-status.ok {
  background-image: url("/static/101/images/full-ok-d.png");
}

.header-control-pane {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}

.topic-header-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topic-layout .topic-in-qipan {
  padding-top: 16px;
}
.topic-layout .topic-in-qipan .topic-header-title {
  width: 100%;
}
.topic-layout:not(.mobile) .qipan, .topic-layout:not(.fullscreen) .qipan {
  padding-top: 10px;
}

.steps-control-wp {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
}

.w-18 {
  width: 18em;
}

/**guan style**/
.guan-title, .f-guan-title {
  font-size: 14px;
  display: flex;
  color: #34170F;
  padding: 0 4px;
}
[data-theme=light] .guan-title .guan-sec a, [data-theme=light] .f-guan-title .guan-sec a {
  color: #5A45B0;
}
[data-theme=black] .guan-title .guan-sec a, [data-theme=black] .f-guan-title .guan-sec a {
  color: #5A45B0;
}
.guan-title .spera, .f-guan-title .spera {
  padding: 0 4px;
}

.sider-topic-control-musthide-anchor {
  position: relative;
}

.sider-topic-control-musthide-float {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 3;
  background-color: #fff;
  pointer-events: none;
}
.sider-topic-control-musthide-float .musthide-countdown {
  margin-top: 0;
}

.musthide-countdown {
  margin-top: 8px;
}
.musthide-countdown.desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px 20px;
  background-color: transparent;
}
.musthide-countdown.mobile {
  padding: 0;
  border-radius: 0;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.musthide-countdown-desktop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.musthide-countdown-desktop-title {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: #34170F;
}

.musthide-countdown-desktop-ring {
  position: relative;
  width: 208px;
  height: 208px;
}

.musthide-countdown-desktop-track {
  stroke: #d4d4d4;
  stroke-width: 10;
  fill: transparent;
}

.musthide-countdown-desktop-progress {
  stroke-width: 10;
  fill: transparent;
  stroke-linecap: round;
  stroke-dashoffset: 0;
  animation: musthide-progress-drain 5s linear forwards;
  transition: stroke 0.3s ease;
}
.musthide-countdown-desktop-progress.no-transition {
  transition: none !important;
  animation: none !important;
  stroke-dashoffset: 0 !important;
}

.musthide-countdown-desktop-time {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: color 0.3s ease;
}

.musthide-countdown-mobile {
  position: relative;
  width: 124px;
  min-width: 124px;
  height: 40px;
}

.musthide-countdown-mobile-pill {
  width: 100%;
  height: 100%;
  display: block;
}

.musthide-countdown-mobile-track {
  stroke: #d4d4d4;
  stroke-width: 4;
  fill: rgba(255, 255, 255, 0.72);
}

.musthide-countdown-mobile-progress {
  stroke-width: 4;
  fill: transparent;
  stroke-linecap: round;
  stroke-dashoffset: 0;
  animation: musthide-progress-drain 5s linear forwards;
  transition: stroke 0.3s ease;
}
.musthide-countdown-mobile-progress.no-transition {
  transition: none !important;
  animation: none !important;
  stroke-dashoffset: 0 !important;
}

@keyframes musthide-progress-drain {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: 100;
  }
}
.musthide-countdown-mobile-time {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #63BD59;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.counter-box {
  background-color: rgba(255, 255, 255, 0.35);
  padding: 0.75rem;
  width: 100%;
  position: relative;
}
.counter-box .info {
  font-size: 14px;
  color: #34170F;
  font-weight: bold;
}
.counter-box .info .user {
  color: #5A45B0;
}
.counter-box .counter-wp {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  gap: 14px;
}
.counter-box .counter-wp .counter {
  width: 9rem;
  height: 9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
}
[data-theme=light] .counter-box .counter-wp .counter {
  background-image: url("/static/101/images/counter-bg.png");
}
[data-theme=black] .counter-box .counter-wp .counter {
  background-image: url("/static/101/images/counter-dark-bg.png");
}
.counter-box .counter-wp .counter {
  color: white;
  gap: 4px;
}
.counter-box .counter-wp .counter .rest {
  font-weight: lighter;
  font-size: 0.75rem;
  vertical-align: bottom;
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-end;
  transform: translateY(0.2rem);
}
.counter-box .counter-wp .counter .seconds {
  font-size: 1.7rem;
}

.overlay-counter-musthide-countdown {
  position: absolute;
  inset: 0;
  z-index: 999999 !important;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.counter-area {
  position: relative;
}

.overlay-counter-musthide-countdown.full-timu-card-area {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  border-radius: 0;
  z-index: 999999 !important;
  background: #fff;
  align-items: flex-start;
  justify-content: center;
  padding: 16px 0 20px;
}

.overlay-counter-musthide-countdown.full-timu-card-area.full-timu-card-cover {
  position: absolute;
  inset: 0;
  height: 100%;
}

.overlay-counter-total-time {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #00A47C;
  background-color: #f5f5f5;
  padding: 8px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-counter-musthide-countdown .musthide-countdown-desktop-title {
  color: #00A47C;
}

.fullscreen .counter-box {
  background-color: transparent;
}
.fullscreen .counter {
  background-size: contain;
}

.wait-time {
  font-size: 0.9rem;
  color: #129A00;
}
.wait-time .time-label {
  border: 2px solid #008D65;
  background-color: #00A47C;
  padding: 0 8px;
  border-radius: 10em;
  color: white;
}

.mobile .counter-box {
  background-color: transparent;
  padding: 12px;
}
.mobile .overlay-counter-musthide-countdown {
  padding: 8px 12px;
}
.mobile .wait-time {
  font-size: 0.75rem;
  text-align: center;
}

.fullscreen:not(.mobile) .counter-box {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.counter-info {
  font-size: 14px;
  flex: 1;
}

.counter-btn {
  width: 50vw;
  flex-shrink: 0;
  display: inline-flex;
  justify-content: stretch;
}
.counter-btn .counter {
  margin: 0 auto;
  width: 16.55em;
  height: 5em;
  text-align: center;
}
[data-theme=light] .counter-btn .counter {
  background-image: url("/static/101/images/mobile-counter.png");
}
[data-theme=black] .counter-btn .counter {
  background-image: url("/static/101/images/mobile-counter-dark.png");
}
.counter-btn .counter {
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 12px;
  gap: 0.25em;
}
.counter-btn .counter .rest {
  transform: translateY(-0.15em);
}
.counter-btn .counter .seconds {
  transform: translateY(-0.15em);
  font-size: 2em;
}

.counter-mobile-container {
  padding: 4px;
  left: 0;
  right: 0;
  z-index: 99999;
}

.counter-info {
  color: #34170F;
  font-weight: bold;
}
.counter-info .user {
  color: #5A45B0;
}

.f-guan-title {
  font-weight: normal;
  margin-bottom: 12px;
}

.book-topic-title {
  white-space: nowrap;
  flex-wrap: wrap;
}

.topic-options-wp {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.topic-options {
  width: 16em;
  display: grid;
  grid-template-columns: 12em;
  justify-content: center;
  grid-auto-flow: column;
  gap: 0 8px;
  grid-template-rows: repeat(4, auto);
}
.topic-options.two {
  grid-template-columns: repeat(2, 1fr);
}
.topic-options .toggle-box {
  width: 100%;
  border: 1px solid #C4DEC5;
  padding: 14px 2em;
  border-radius: 2rem;
  color: #34170F;
  font-weight: bold;
  margin: 0.4em 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.topic-options .toggle-box.error {
  background-color: #F9754E;
}
.topic-options .toggle-box.error .tip {
  color: white;
}
.topic-options .toggle-box.ok {
  background-color: #7BCC64;
}
.topic-options .toggle-box.ok .tip {
  color: white;
}

[data-theme=light] .toggle-box.option-highlight .tip {
  background-color: #c3e3b2;
}
[data-theme=black] .toggle-box.option-highlight .tip {
  background-color: #b4c8ac;
}
.toggle-box.option-highlight .tip {
  border-radius: 12px;
  padding: 0 4px;
  transform: translateX(-4px);
}

.tip-h {
  color: #400E0E;
  font-weight: bold;
}

.tip-d {
  color: #775656;
}

.select-title {
  color: #34170F;
  font-size: 14px;
  margin-bottom: 14px;
}

.option-alpha {
  color: #129A00;
  font-weight: bold;
  margin: 0 4px;
}

.option-title {
  color: #34170F;
}

.option-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 18em;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.25em 2em;
  font-size: 0.8rem;
}
.option-result .time {
  font-size: 0.75em;
}

.full-option {
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
[data-theme=light] .full-option.active {
  background-color: #c3e3b2;
}
[data-theme=black] .full-option.active {
  background-color: #b4c8ac;
}
.full-option.option-highlight .status-icon {
  display: block;
}
[data-theme=light] .full-option.option-highlight {
  background-color: #c3e3b2;
}
[data-theme=black] .full-option.option-highlight {
  background-color: #b4c8ac;
}
.full-option.option-highlight.active.fail {
  color: white;
}
[data-theme=light] .full-option.option-highlight.active.fail {
  background-color: #F9754E;
}
[data-theme=black] .full-option.option-highlight.active.fail {
  background-color: #924547;
}

.status-icon {
  width: 1.5em;
  height: 1.5em;
  background-position: center;
  background-size: contain;
  display: none;
}
.status-icon.fail {
  background-image: url("/static/101/images/full-fail.png");
}
.status-icon.timeout {
  background-image: url("/static/101/images/full-timeout.png");
}
.status-icon.ok {
  background-image: url("/static/101/images/full-ok.png");
}

[data-theme=light] .option-result.fail {
  border: 1px solid #8E7F77;
}
[data-theme=black] .option-result.fail {
  border: 1px solid #8E7F77;
}
[data-theme=light] .option-result.ok {
  border: 1px solid #159ADA;
}
[data-theme=black] .option-result.ok {
  border: 1px solid #1C569A;
}

.option-result-info {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
.option-result-info.fail {
  color: white;
}
[data-theme=light] .option-result-info.fail {
  color: #F9754E;
}
[data-theme=black] .option-result-info.fail {
  color: #924547;
}
.option-result-info.ok {
  color: white;
}
[data-theme=light] .option-result-info.ok {
  color: #159ADA;
}
[data-theme=black] .option-result-info.ok {
  color: #1C569A;
}

.result-icon {
  width: 0.7rem;
  height: 0.7rem;
}

.setting-layout {
  background-repeat: repeat;
  background-size: cover;
  flex-direction: column;
  background-color: white;
  border-radius: 12px;
  box-sizing: border-box;
  overflow-y: auto;
  position: relative;
}
[data-theme=light] .setting-layout {
  background-image: url(none);
}
[data-theme=black] .setting-layout {
  background-image: url("/static/101/images/modal-bg.jpg");
}
.setting-layout .close-btn {
  cursor: pointer;
  font-size: 16px;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 1em;
  margin: auto;
  right: 1em;
  color: white;
  background-size: cover;
}
.setting-layout .s-title {
  position: relative;
  color: white;
  font-size: 14px;
  text-align: center;
  padding: 8px 0;
  font-weight: bold;
}
[data-theme=light] .setting-layout .s-title {
  background-color: #00A47C;
}
[data-theme=black] .setting-layout .s-title {
  background-color: #400E0E;
}
.setting-layout .s-content {
  padding: 1em 3em;
  display: grid;
  gap: 2em;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.setting-layout .s-content .proj {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.setting-layout .s-content .tab-title {
  font-size: 14px;
  font-weight: bold;
}

.mobile .setting-layout .s-content {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.checkbox {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  font-size: 14px;
}
.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;
}
.checkbox .checkbox-icon.disabled {
  background-color: #C8C8C8 !important;
  border-color: #C8C8C8;
}

.s-btn {
  border-radius: 2em;
  padding: 4px 1.5em;
}
[data-theme=light] .s-btn {
  border: 1px solid #129A00;
}
[data-theme=black] .s-btn {
  border: 1px solid #226C2F;
}
.s-btn {
  font-weight: bold;
}

.chart-area {
  max-width: 100%;
}

.answer-msg {
  border: 1px solid rgba(140, 163, 177, 0.52);
  background-color: rgba(214, 229, 240, 0.52);
  color: #2B0B0B;
  border-radius: 8px;
}
.answer-msg .corner {
  width: 8px;
  height: 8px;
  position: absolute;
  left: -4px;
  top: 0;
  bottom: 0;
  border-left: 1px solid rgba(140, 163, 177, 0.52);
  border-bottom: 1px solid rgba(140, 163, 177, 0.52);
  background-color: rgba(214, 229, 240, 0.52);
  margin: auto;
  transform: rotate(45deg);
}

.mobile .answer-msg {
  margin-left: 4px;
  margin-right: 4px;
}

/** selection qizi **/
.qizi-tabs {
  border-radius: 2px;
}
[data-theme=light] .qizi-tabs {
  border: 1px solid rgba(169, 169, 169, 0.35);
}
[data-theme=black] .qizi-tabs {
  border: 1px solid #B7A8A3;
}
.qizi-tabs {
  cursor: pointer;
}
.qizi-tabs .active {
  background-color: rgba(75, 190, 43, 0.21);
  color: #400E0E;
}
[data-theme=light] .qizi-tabs > div:nth-child(2) {
  border-left: 1px solid rgba(169, 169, 169, 0.35);
  border-right: 1px solid rgba(169, 169, 169, 0.35);
}
[data-theme=black] .qizi-tabs > div:nth-child(2) {
  border-left: 1px solid #B7A8A3;
  border-right: 1px solid #B7A8A3;
}

.selection-qizi-item {
  border-bottom: 1px solid rgba(169, 169, 169, 0.5);
  color: #400E0E;
}
.selection-qizi-item .toggle-box {
  margin-bottom: 0;
}
.selection-qizi-item .toggle-box .tip {
  color: #400E0E;
}
.selection-qizi-item .place-seq {
  width: 2em;
}
.selection-qizi-item .pt {
  width: 3em;
}
.selection-qizi-item .left {
  gap: 45px;
}
.selection-qizi-item .left .qizi-score-input {
  width: 4em;
  height: 1.7em;
  text-align: left;
  line-height: 1.7em;
  padding: 0 8px;
  border-radius: 10em;
  border: 1px solid #400E0E;
  color: #400E0E;
}
.selection-qizi-item .left .qizi-score-input::-webkit-outer-spin-button, .selection-qizi-item .left .qizi-score-input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
}
.selection-qizi-item .left .qizi-score-input[type=" number"] {
  -moz-appearance: textfield;
}
.selection-qizi-item .qizi-desc-input {
  width: 15em;
  height: 1.75em;
  line-height: 1.5em;
  border-radius: 10em;
  border: 1px solid #400E0E;
  padding: 4px;
}

/** correct_task **/
.correct {
  border-color: #400E0E;
}
.correct .step-btn {
  width: 1.25rem;
}

[data-theme=light] .right-link {
  color: #129A00;
}
[data-theme=black] .right-link {
  color: #129A00;
}

[data-theme=light] .fail-link {
  color: #F9754E;
}
[data-theme=black] .fail-link {
  color: #F9754E;
}

.arrow-icon {
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(270deg);
}
[data-theme=light] .arrow-icon {
  background-image: url("/static/101/images/arrow.png");
}
[data-theme=black] .arrow-icon {
  background-image: url("/static/101/images/arrow-dark.png");
}
.arrow-icon.top {
  transform: rotate(90deg);
}
.arrow-icon {
  width: 1em;
  height: 1em;
}

.taskdo-setting {
  padding: 1em;
  max-height: 80vh;
  overflow: auto;
  width: 30em;
  max-width: 95vw;
}

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

.taskdo-item {
  border-radius: 12px;
  border: 1px solid #DBDBDB;
  padding: 14px;
  margin-top: 1em;
}
[data-theme=light] .taskdo-item {
  border-color: #DBDBDB;
}
[data-theme=black] .taskdo-item {
  border-color: #BBACAC;
}
[data-theme=light] .taskdo-item .title {
  color: #00A47C;
}
[data-theme=black] .taskdo-item .title {
  color: #655B81;
}
[data-theme=light] .taskdo-item .warning {
  color: #71A83D;
}
[data-theme=black] .taskdo-item .warning {
  color: #226C2F;
}

.mobile .taskdo.setting-layout {
  height: 90vh;
}
.mobile .taskdo-setting {
  padding: 20px 10px;
  border-radius: 0;
}
.mobile .taskdo-item {
  margin-top: 14px;
  padding: 8px;
}
.mobile .do-title {
  font-size: 14px;
  color: #400E0E;
  font-weight: bold;
}
.mobile .taskdo-submit {
  padding-left: 20px;
  padding-right: 20px;
}

.dropdown {
  font-size: 14px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  color: #400E0E;
  min-width: 8em;
}
.dropdown .active-value {
  padding: 4px 20px;
  border-radius: 10em;
  border: 1px solid #400E0E;
  text-align: center;
}
.dropdown .active-value.open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom: 0;
  padding-bottom: 5px;
}
.dropdown .active-value.open .trigger-arrow-icon {
  transform: rotate(180deg) translateY(50%);
}
[data-theme=light] .dropdown .options {
  background-image: url(none);
}
[data-theme=black] .dropdown .options {
  background-image: url("/static/101/images/modal-bg.jpg");
}
.dropdown .options {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 999;
}
.dropdown .options::-webkit-scrollbar {
  width: 0;
}
.dropdown .options {
  overflow: auto;
  max-height: 120px;
  border: 1px solid #400E0E;
  border-top: none;
  padding-top: 1px;
  position: absolute;
  top: 100%;
  background-color: white;
  width: 100%;
}
.dropdown .options .option {
  padding: 6px 0;
  text-align: center;
  overflow: hidden;
}
[data-theme=light] .dropdown .options .option {
  background-color: #EDEFF0;
}
[data-theme=light] .dropdown .options .option:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.35);
}
[data-theme=black] .dropdown .options .option {
  background-color: rgba(255, 255, 255, 0.35);
}
[data-theme=black] .dropdown .options .option:nth-child(odd) {
  background-color: rgba(226, 220, 220, 0.45);
}
[data-theme=light] .dropdown .options .option:hover {
  background-color: #D0E5F7;
}
[data-theme=black] .dropdown .options .option:hover {
  background-color: rgba(255, 255, 255, 0.69);
}

.trigger-arrow-icon {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #400e0e;
  position: absolute;
  right: 1em;
  top: 1em;
  transform: translateY(-50%);
}

.control-group {
  border: 1px solid #BBB4AF;
  box-shadow: 0px 1px 2px 1px rgba(127, 120, 115, 0.2);
  border-radius: 4px;
  overflow: hidden;
  font-size: 14px;
}

.cbtn {
  padding: 4px 8px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.4);
}
[data-theme=light] .cbtn {
  color: #2B0B0B;
}
[data-theme=black] .cbtn {
  color: #400E0E;
}
.cbtn:not(:first-child) {
  border-left: 1px solid #BBB4AF;
}
.cbtn.active {
  background-color: #FFBE59;
}
.cbtn.active:hover {
  background-color: #FFBE59;
}
.cbtn:hover {
  background-color: rgba(205, 197, 186, 0.5294117647);
}

.gap-2 {
  gap: 2px;
}

.control-link {
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}
[data-theme=light] .control-link {
  color: #2B0B0B;
}
[data-theme=black] .control-link {
  color: #400E0E;
}

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

.finish-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  animation: fadeIn 0.5s ease-in-out forwards;
  pointer-events: all;
}
.finish-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes fadeIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.duan-label {
  left: 46%;
  position: absolute;
  z-index: 9999;
  top: 77%;
  color: #a64142;
}

.duan-button {
  display: block;
  position: absolute;
  left: 36%;
  top: 86%;
  width: 28.5%;
  height: 8%;
  cursor: pointer;
  z-index: 9999;
}

.finish-close {
  position: absolute;
  right: 3%;
  top: 2%;
  width: 6%;
  height: 6%;
  cursor: pointer;
}

.score-label {
  left: 40%;
  position: absolute;
  z-index: 9999;
  top: 83%;
  color: #a64142;
}

.score-label2 {
  z-index: 9999;
  color: #a64142;
}

.qipao {
  background-repeat: no-repeat;
  background-size: contain;
  padding: 10px;
}
[data-theme=light] .qipao {
  border-image-source: url("/static/101/images/qipao-light.png");
}
[data-theme=black] .qipao {
  border-image-source: url("/static/101/images/qipao.png");
}
.qipao {
  border-image-slice: 20 20 20 20 fill;
  border-image-width: 10px 10px 10px 10px;
  border-image-repeat: stretch;
  color: #2B0B0B;
  padding-left: 20px;
  word-break: break-all;
}
[data-theme=light] .qipao.qipao-fail {
  border-image-source: url("/static/101/images/qipao-light-fail.png");
}
[data-theme=black] .qipao.qipao-fail {
  border-image-source: url("/static/101/images/qipao-fail.png");
}
.qipao.qipao-fail {
  color: whitesmoke;
}

[data-theme=light] .qipao-simple-fail {
  border-image-source: url("/static/101/images/qipao-light-fail.png");
}
[data-theme=black] .qipao-simple-fail {
  border-image-source: url("/static/101/images/qipao-fail.png");
}
.qipao-simple-fail {
  color: white !important;
  display: flex;
  padding: 4px 0;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.qipao-simple-success {
  display: flex;
  padding: 4px 0;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.zuoyiti {
  font-size: 14px;
}

.mobile .zuoyiti-sub-title {
  font-size: 12px;
}

.share-title {
  font-size: 18px;
}
[data-theme=light] .share-title {
  color: #2B0B0B;
}
[data-theme=black] .share-title {
  color: #2B0B0B;
}

.finish-img-wp {
  position: relative;
}

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

.share-section {
  padding: 12px;
}
[data-theme=light] .share-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.71) 0%, rgba(210, 236, 196, 0.71) 100%);
  border-radius: 1px;
  border: 1px solid rgba(149, 184, 151, 0.71);
}
[data-theme=light] .share-section .input-wp input {
  width: 4em;
  border: 1px solid #00A47C;
  border-radius: 10em;
  padding: 4px 8px;
}
[data-theme=light] .share-section .tip {
  color: #00A47C;
}
[data-theme=light] .share-section .share-hr {
  width: 100%;
  border-bottom: 1px rgba(134, 109, 109, 0.42) dashed;
}
[data-theme=black] .share-section {
  background: linear-gradient(180deg, rgba(255, 247, 234, 0.42) 0%, rgba(199, 167, 126, 0.42) 100%);
  border-radius: 1px;
  border: 1px solid rgba(177, 147, 127, 0.42);
}
[data-theme=black] .share-section .input-wp input {
  width: 4em;
  border: 1px solid #226C2F;
  border-radius: 10em;
  padding: 4px 8px;
}
[data-theme=black] .share-section .tip {
  color: #226C2F;
}
[data-theme=black] .share-section .share-hr {
  width: 100%;
  border-bottom: 1px rgba(134, 109, 109, 0.42) dashed;
}

.full-qipan-side {
  position: absolute;
  right: -2rem;
  bottom: 0;
  z-index: 9999999;
}

.base-ctn {
  background-attachment: fixed;
}
.base-ctn .main-ctn {
  min-height: unset !important;
  max-height: unset !important;
  height: auto !important;
  overflow: visible !important;
}

.result-text {
  overflow: hidden;
}

.answer-remaining-time {
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 1.5em;
  padding: 0 10px;
  background-color: #E8F5FF;
  border-radius: 14px;
  border: 1px solid #E8F5FF;
  color: #2B0B0B;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
[data-theme=light] .answer-remaining-time.fail {
  background: #FFC7B6;
}
[data-theme=black] .answer-remaining-time.fail {
  background: #D6BFBF;
}
.answer-remaining-time.fail {
  border: none;
}

.myan {
  padding: 5px 10px;
  text-align: center;
  color: whitesmoke;
}

.book-float {
  position: sticky;
  padding: 12px 12px;
  bottom: 0;
  background-color: rgb(205, 223, 205);
}/*# sourceMappingURL=topic.css.map */@charset "UTF-8";
.forum {
  font-size: 14px;
  color: #5A45B0;
}
.forum .trans-loading {
  background-image: url("/static/101/images/trans-loading.gif");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  transform: translateX(-18px);
  margin-bottom: 6px;
  height: 1em;
}
.forum .comment {
  display: flex;
  padding: 0.25rem 0.25rem;
  gap: 1rem;
  border-bottom: 1px solid #C9C9C9;
}
.forum .comment:hover {
  background-color: rgba(255, 255, 255, 0.6);
}
.forum .comment:last-child {
  border-bottom: none;
}
.forum .comment .avatar-wp img {
  width: 2.5rem;
  height: 2.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
.forum .comment .comment-body {
  color: #34170F;
  flex: 1;
  width: 0;
  padding-top: 10px;
}
.forum .comment .comment-body .comment-status {
  font-size: 14px;
  display: flex;
  gap: 8px;
  position: relative;
}
.forum .comment .translate-btn {
  display: none;
  font-size: 12px;
}
.forum .comment .translate-close-btn {
  font-size: 12px;
  display: inline-block;
}
.forum .comment:hover .translate-btn {
  display: inline-block;
}
.forum .deleted-tip {
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
  margin: 1rem 0;
}
.forum .deleted-tip .success-tip {
  color: #129A00;
  margin-right: 1rem;
}
.forum .deleted-tip .spacer {
  border-left: 2px solid #C9C9C9;
  margin: 0 0.25rem;
}

.comment-content {
  margin-top: 4px;
  color: #34170F;
  line-height: 1.5em;
}
.comment-content .comment-content-inner {
  white-space: pre-wrap;
  overflow-wrap: break-word;
  word-break: break-all;
}
[data-theme=light] .comment-content.trans-text {
  color: #129A00;
}
[data-theme=black] .comment-content.trans-text {
  color: #226C2F;
}
[data-theme=light] .comment-content a {
  color: #5A45B0;
}
[data-theme=black] .comment-content a {
  color: #5A45B0;
}

.my-comment {
  color: #34170F;
}
.my-comment .my-comment-title {
  margin: 0.5rem 0;
  font-weight: bold;
}
.my-comment .comment-textarea {
  display: block;
  height: 6.58rem;
  border: 1px solid #129A00;
  padding: 3px;
  width: 100%;
  line-height: 25px;
  font-family: "微软雅黑", Verdana, Arial, sans-serif;
}
.my-comment .comment-textarea:hover {
  outline: none;
}
.my-comment .textarea-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  z-index: 999;
}
.my-comment .comment-addit {
  margin: 0.5rem 0;
}
.my-comment .comment-errors {
  color: orangered;
  margin: 0.5rem 0;
}
.my-comment .checkbox {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.my-comment .checkbox .checkbox-icon {
  width: 1em;
  height: 1em;
}
[data-theme=light] .my-comment .checkbox .checkbox-icon {
  border: 2px solid #00a47c;
}
[data-theme=black] .my-comment .checkbox .checkbox-icon {
  border: 2px solid #226C2F;
}
.my-comment .checkbox .checkbox-icon {
  border-radius: 4px;
}
[data-theme=light] .my-comment .checkbox .checkbox-icon.ok {
  background-color: #00a47c;
}
[data-theme=black] .my-comment .checkbox .checkbox-icon.ok {
  background-color: #226C2F;
}
.my-comment .checkbox .checkbox-icon.ok {
  background-image: url("/static/101/images/toggle-3.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.my-comment .dou-input {
  width: 3em;
  border-radius: 10em;
  border: 1px solid #129A00;
  color: #129A00;
  text-align: center;
}
.my-comment .dou-input::-webkit-inner-spin-button, .my-comment .dou-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.my-comment .dou-input {
  -moz-appearance: textfield;
}
.my-comment .comment-addit {
  display: flex;
  justify-content: space-between;
}

.dou-sheet {
  position: fixed;
  top: 100%;
  right: 0;
  width: -moz-max-content;
  width: max-content;
  padding: 12px 20px;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 5px 0;
  margin: 2px 0 0;
  text-align: left;
  z-index: 999999;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  overflow-y: auto;
}
.dou-sheet .dou-item {
  padding: 2px 15px;
  cursor: pointer;
}
.dou-sheet .dou-item:hover {
  background-color: #f5f5f5;
}

.dou-label {
  cursor: pointer;
  color: #4f9533;
  font-size: 12px;
}

.comment-deletion {
  display: none;
}

.group:hover .comment-deletion {
  display: block;
}/*# sourceMappingURL=forum.css.map */