:root {
  font-size: 24px;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

@font-face {
  font-family: "CustomFont";
  src: url("/static/101/font/MKRB.TTF") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
main.level-test {
  padding-top: 1rem;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
}
@media (max-width: 768px) {
  main.level-test {
    padding-top: 0;
    min-height: calc(100vh - 48px);
  }
}

.home-header {
  height: 100px;
  line-height: 100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .home-header {
    width: 100%;
    height: 3em;
    line-height: 3em;
  }
  [data-theme=light] .home-header {
    border-bottom: 1px solid #B6C8D0;
  }
  [data-theme=black] .home-header {
    border-bottom: 1px solid #CABCB3;
  }
}

.main-title {
  color: #400E0E;
  font-size: 28px;
}
@media (max-width: 768px) {
  .main-title {
    font-size: 22px;
  }
}

[data-theme=light] .icon-btn {
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  background-image: url("/static/101/images/btn-back-l.png");
}
[data-theme=light] .icon-btn.back-icon {
  background-image: url("/static/101/images/btn-back-l.png");
}
[data-theme=light] .icon-btn.qipu-icon {
  background-image: url("/static/101/images/btn-qipu-l.png");
}
[data-theme=black] .icon-btn {
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  background-image: url("/static/101/images/btn-back.png");
}
[data-theme=black] .icon-btn.back-icon {
  background-image: url("/static/101/images/btn-back.png");
}
[data-theme=black] .icon-btn.qipu-icon {
  background-image: url("/static/101/images/btn-qipu.png");
}

[data-theme=light] .btn {
  color: white;
  box-shadow: 0px 2px 3px rgba(84, 116, 87, 0.37);
  border: 1px solid #00a47c;
  background-color: #00a47c;
  border-radius: 2rem;
  font-size: 0.7rem;
  width: 5rem;
  height: 1.75rem;
  line-height: 1.7rem;
  cursor: pointer;
  text-align: center;
}
@media (max-width: 768px) {
  [data-theme=light] .btn {
    width: 4.6rem;
  }
}
[data-theme=light] .btn.btn-color {
  background-color: #6f5caa;
  border: 1px solid #6f5caa;
}
[data-theme=black] .btn {
  color: white;
  box-shadow: 0px 2px 3px rgba(84, 116, 87, 0.37);
  border: 1px solid #226C2F;
  background-color: #226C2F;
  border-radius: 2rem;
  font-size: 0.7rem;
  width: 5rem;
  height: 1.75rem;
  line-height: 1.7rem;
  cursor: pointer;
  text-align: center;
}
@media (max-width: 768px) {
  [data-theme=black] .btn {
    width: 4.6rem;
  }
}
[data-theme=black] .btn.btn-color {
  background-color: #655B81;
  border: 1px solid #655B81;
}

.header-btn {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
}
@media (max-width: 768px) {
  .header-btn {
    height: 3em;
  }
}

.header-left {
  width: 5em;
  left: 1.4em;
}
@media (max-width: 768px) {
  .header-left {
    width: 100%;
    padding: 0 0.8rem;
    left: 0;
  }
}

.header-right {
  width: 12em;
  right: 1.4em;
  top: 0;
}
@media (max-width: 768px) {
  .header-right {
    z-index: 3;
    position: fixed;
    bottom: 0;
    right: 0;
    top: auto;
    width: 100%;
    display: flex;
    justify-content: space-around;
  }
  [data-theme=light] .header-right {
    background-color: #FFFFFF;
  }
  [data-theme=black] .header-right {
    background-color: #D1C8C2;
  }
}

.card-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(6em, 1fr));
  grid-row-gap: 1em;
  grid-column-gap: 1.5em;
  place-items: center;
  padding: 0 1em;
}
@media (max-width: 768px) {
  .card-wrapper {
    width: 100%;
    padding-left: 0.35em;
    padding-right: 0.35em;
    padding-bottom: 4em;
    grid-column-gap: 0.6em;
    margin-top: 0.5em;
    grid-template-columns: repeat(auto-fill, minmax(5em, 1fr));
  }
}
@media (max-width: 410px) {
  .card-wrapper {
    padding-bottom: 4em;
    grid-template-columns: repeat(auto-fill, minmax(3.5em, 1fr));
  }
}

.card {
  width: 5.4em;
  height: 7.2em;
}
@media (max-width: 768px) {
  .card {
    width: 5em;
    height: 6.67em;
  }
}
@media (max-width: 410px) {
  .card {
    width: 3.9em;
    height: 5.2em;
  }
}
.card {
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: contain;
}
[data-theme=light] .card.active {
  background-image: url("/static/101/images/levelcard-a-l.png");
}
[data-theme=black] .card.active {
  background-image: url("/static/101/images/levelcard-a.png");
}
.card.active {
  color: #400E0E;
}
.card {
  position: relative;
}
.card .circle {
  background-size: 100% 100%;
  width: 3.35em;
  height: 3.35em;
  margin: 0.9em auto 0;
  font-family: "CustomFont";
}
@media (max-width: 768px) {
  .card .circle {
    width: 2.7em;
    height: 2.7em;
    margin: 0.95em auto 0;
  }
}
@media (max-width: 410px) {
  .card .circle {
    width: 2.2em;
    height: 2.2em;
    margin: 0.82em auto 0;
  }
}
.card .circle {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card .circle .cardname {
  color: white;
  text-align: center;
}
@media (max-width: 410px) {
  .card .circle .cardname {
    line-height: 1em;
    font-size: 18px;
  }
}
.card .circle .rank {
  width: 18px;
  height: 18px;
  background-image: url("/static/101/images/btn-rank.png");
  background-size: 100% 100%;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  z-index: 2;
}
@media (max-width: 768px) {
  .card .circle .rank {
    width: 14px;
    height: 14px;
    top: 0.3em;
    right: 0.3em;
  }
}
[data-theme=light] .card .circle .rank {
  background-image: url("/static/101/images/class-rank-light.png");
}
[data-theme=black] .card .circle .rank {
  background-image: url("/static/101/images/class-rank.png");
}
.card .r-w-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 3px;
  padding-left: 34px;
}
@media (max-width: 768px) {
  .card .r-w-container {
    padding-top: 6px;
    padding-left: 28px;
  }
}
@media (max-width: 410px) {
  .card .r-w-container {
    padding-top: 0;
    padding-left: 24px;
  }
}
.card .r-w-container.showmy {
  flex-direction: row;
  gap: 10px;
  padding-left: 3px;
}
.card .right {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 2px;
}
@media (max-width: 768px) {
  .card .right {
    bottom: 3.5em;
  }
}
.card .right .icon {
  display: block;
  width: 12px;
  height: 8.7px;
}
[data-theme=light] .card .right .icon {
  background-image: url("/static/101/images/card-r-l.png");
}
[data-theme=black] .card .right .icon {
  background-image: url("/static/101/images/card-r.png");
}
.card .right .icon {
  background-repeat: no-repeat;
  background-size: cover;
}
.card .wrong {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.card .wrong .icon {
  display: block;
  width: 12px;
  height: 12px;
}
[data-theme=light] .card .wrong .icon {
  background-image: url("/static/101/images/card-w-l.png");
}
[data-theme=black] .card .wrong .icon {
  background-image: url("/static/101/images/card-w.png");
}
.card .wrong .icon {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: 0.05em;
}
.card .wrong.wrong-my {
  left: 5em;
  bottom: 4.5em;
  align-items: normal;
}
@media (max-width: 768px) {
  .card .wrong.wrong-my {
    bottom: 3.5em;
  }
}
.card .wrong.wrong-my .icon {
  top: 0.17em;
}
.card .passrate {
  font-size: 12px;
  width: 100%;
  text-align: center;
}
.card .finish-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1em;
  font-size: 12px;
  text-align: center;
  width: 110%;
}
.card.disabled {
  cursor: default !important;
}
[data-theme=light] .card.disabled {
  background-image: url("/static/101/images/levelcard-l.png");
}
[data-theme=black] .card.disabled {
  background-image: url("/static/101/images/levelcard.png");
}
.card.disabled .rank, .card.disabled .r-w-container {
  filter: grayscale(1);
}
.card.disabled .rank:hover, .card.disabled .r-w-container:hover {
  filter: none;
}

.show-my {
  font-size: 16px;
}
.show-my label {
  cursor: pointer;
  color: #400E0E;
}
.show-my {
  margin: 1rem;
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .show-my {
    margin: 0 0 4rem 0.8rem;
  }
}

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

.table-title {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #8C7B7B;
  font-size: 14px;
}
[data-theme=light] .table-title:nth-child(odd) {
  background-color: #F6F9FB;
}
[data-theme=black] .table-title:nth-child(odd) {
  background-color: rgba(220, 212, 206, 0.4509803922);
}
[data-theme=light] .table-title:nth-child(even) {
  background-color: #FFFFFF;
}
[data-theme=black] .table-title:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.3490196078);
}
[data-theme=light] .table-title:hover {
  background-color: #C7E1F5;
}
[data-theme=black] .table-title:hover {
  background-color: rgba(174, 168, 194, 0.5019607843);
}

.rank-table-title {
  background-color: #FFFFFF;
}

.table-title-left {
  color: #400E0E;
}
.table-title-left:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.35);
}
.table-title-left:nth-child(even) {
  background-color: rgba(193, 181, 174, 0.45);
}
[data-theme=light] .table-title-left.active {
  background-color: #C7E1F5 !important;
}
[data-theme=black] .table-title-left.active {
  background-color: rgba(34, 108, 47, 0.4509803922) !important;
}
@media (max-width: 768px) {
  .table-title-left {
    background: #00A47C !important;
    color: #FFFFFF !important;
  }
}

.table-content {
  color: #400E0E;
}
[data-theme=light] .table-content .success {
  color: #00A47C;
}
[data-theme=black] .table-content .success {
  color: #226C2F;
}
[data-theme=light] .table-content .fail {
  color: #F9754E;
}
[data-theme=black] .table-content .fail {
  color: #924547;
}

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

.flex2 {
  flex: 2;
  text-align: center;
}

.flex05 {
  flex: 0.8;
  text-align: center;
}

.flex15 {
  flex: 1.7;
  text-align: center;
}

.right-icon {
  width: 34px;
  height: 34px;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: -4px;
  bottom: 0;
}
@media (max-width: 768px) {
  .right-icon {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 410px) {
  .right-icon {
    width: 26px;
    height: 26px;
    right: -6px;
  }
}

[data-theme=light] .color-my {
  background-color: #DEF0DA !important;
}
[data-theme=black] .color-my {
  background-color: rgba(153, 191, 160, 0.5019607843) !important;
}

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

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

.ht2 {
  height: 2rem;
}

.record-wrapper {
  color: #34170F;
  overflow-y: scroll;
  font-size: 16px;
  margin: 0 auto;
  display: flex;
}
.record-wrapper .record-left {
  width: 20%;
  margin-right: 1rem;
}
@media (max-width: 768px) {
  .record-wrapper .record-left {
    margin-right: 0;
    position: fixed;
    top: 2.6rem;
    right: 0.5em;
    width: 4.5rem;
    height: 60vh;
    overflow: auto;
    border-radius: 1.4em;
  }
}
.record-wrapper .record-right {
  flex: 1;
}
.record-wrapper .record-right .right-row {
  width: 100%;
}
@media (max-width: 768px) {
  .record-wrapper {
    height: calc(100vh - 9.5rem);
    overflow: auto;
    width: 100%;
  }
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-self: center;
  background-color: #000000;
  opacity: 0.1;
}

.img-loading {
  width: 1rem;
  height: 1rem;
  margin: 0 auto;
}

.record-header {
  width: 7em;
  font-size: 20px;
  color: #400E0E;
}
@media (max-width: 768px) {
  .record-header span {
    display: none;
  }
}

.ka-left {
  cursor: pointer;
}

.colorblue {
  color: #5D4A93;
}

.record-choose {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 768px) {
  .record-choose {
    display: none;
  }
}
@media (max-width: 768px) {
  .record-choose {
    display: block;
    position: absolute;
    right: 0.8rem;
    top: 0.8rem;
    background-color: #00A47C;
    color: #ffffff;
    cursor: pointer;
    height: 1.5rem;
    width: 3.5rem;
    line-height: 1.5rem;
    border-radius: 0.75rem;
    font-size: 18px;
  }
}

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

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

.sub-title {
  height: 2em;
  line-height: 2em;
  font-size: 16px;
  text-align: center;
}
[data-theme=light] .sub-title {
  color: #00A47C;
}
[data-theme=black] .sub-title {
  color: #226C2F;
}
@media (min-width: 768px) {
  .sub-title {
    position: relative;
    top: -2em;
  }
}

@media (max-width: 768px) {
  .dp-none {
    display: none;
  }
}

.guan-triangle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 0.3rem solid transparent;
  border-bottom: 0.3rem solid transparent;
  border-right: 0.4rem solid #ffffff;
  margin-left: 0.2rem;
}

.task-status {
  color: #ffffff;
}
[data-theme=light] .task-status {
  background-color: #75CA5C;
}
[data-theme=black] .task-status {
  background-color: #42912C;
}
.task-status {
  margin-bottom: 1rem;
  text-align: center;
  height: 1.8rem;
  line-height: 1.8rem;
  font-size: 18px;
}

.task-subtitle {
  font-size: 17px;
  color: #400E0E;
  text-align: center;
  margin-bottom: 1rem;
}
.task-subtitle > span {
  margin-right: 1rem;
}
@media (max-width: 768px) {
  .task-subtitle > span {
    margin-right: 0.2rem;
  }
}

.thumbnail-ctn {
  color: #400E0E;
  font-size: 16px;
  width: 6rem;
  height: 8rem;
}
.thumbnail-ctn > img {
  width: 6rem;
  height: 6.05rem;
}
.thumbnail-ctn .thumbnail-txt {
  display: flex;
  justify-content: space-between;
}

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

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

.result-btn-ctn {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  padding-bottom: 0.8rem;
}
[data-theme=light] .result-btn-ctn {
  background-color: rgba(255, 255, 255, 0.4470588235);
}
[data-theme=black] .result-btn-ctn {
  background-color: rgba(242, 232, 223, 0.462745098);
}

.result-header-r {
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  z-index: 1;
}
.result-header-r div:first-child {
  margin-right: 0.5rem;
}

.cursor-p {
  cursor: pointer;
}

.img-rank {
  width: 0.8rem;
  height: 0.8rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
[data-theme=light] .img-rank {
  background-image: url("/static/101/images/class-rank-light.png");
}
[data-theme=light] .img-rank.img-print {
  background-image: url("/static/101/images/btn-print-l.png");
}
@media (max-width: 768px) {
  [data-theme=light] .img-rank.img-print {
    width: 1.1rem;
    height: 1.1rem;
    position: absolute;
    top: 0.7rem;
    right: 1.5rem;
  }
}
[data-theme=black] .img-rank {
  background-image: url("/static/101/images/class-rank.png");
}
[data-theme=black] .img-rank.img-print {
  background-image: url("/static/101/images/btn-print.png");
}
@media (max-width: 768px) {
  [data-theme=black] .img-rank.img-print {
    width: 1.1rem;
    height: 1.1rem;
    position: absolute;
    top: 0.7rem;
    right: 1.5rem;
  }
}

.img-rank-mobile {
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  right: 0.5rem;
  top: 0.7rem;
}

.result-card-wrapper {
  min-height: calc(100vh - 16.5rem);
  padding-top: 0.6rem;
}
[data-theme=light] .result-card-wrapper {
  background-color: rgba(255, 255, 255, 0.4470588235);
}
[data-theme=black] .result-card-wrapper {
  background-color: rgba(242, 232, 223, 0.462745098);
}
@media (max-width: 768px) {
  .result-card-wrapper .card-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(6.1em, 1fr));
  }
}

.result-icon {
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-size: cover;
}
[data-theme=light] .result-icon.result-ok {
  background-image: url("/static/101/images/rok.png");
}
[data-theme=light] .result-icon.result-err {
  background-image: url("/static/101/images/rerr.png");
}
[data-theme=black] .result-icon.result-ok {
  background-image: url("/static/101/images/rok-d.png");
}
[data-theme=black] .result-icon.result-err {
  background-image: url("/static/101/images/rerr-d.png");
}

[data-theme=light] .fail-bg {
  background-color: #F9754E !important;
}
[data-theme=black] .fail-bg {
  background-color: #924547 !important;
}

.mr1 {
  margin-right: 1rem;
}

.rank-tab {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
[data-theme=light] .rank-tab {
  background-color: #C7E1F5;
}
[data-theme=black] .rank-tab {
  background-color: rgba(193, 181, 174, 0.5019607843);
}
.rank-tab {
  color: #400E0E;
  font-size: 14px;
  cursor: pointer;
}
.rank-tab > div {
  height: 2rem;
  line-height: 2rem;
}
[data-theme=light] .rank-tab > div:not(:last-child) {
  border-right: 2px solid #9FBED6;
}
[data-theme=black] .rank-tab > div:not(:last-child) {
  border-right: 2px solid #A77B7B;
}
@media (max-width: 768px) {
  .rank-tab {
    font-size: 16px;
  }
}

.rank-wrapper {
  padding-bottom: 4rem;
}

.rank-bottom {
  width: 100%;
  height: 3rem;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #400E0E;
  background-color: rgba(255, 255, 255, 0.35);
}
[data-theme=light] .rank-bottom {
  background-color: #FFFFFF;
}
[data-theme=black] .rank-bottom {
  background-color: #D1C8C2;
}
.rank-bottom {
  font-size: 20px;
}
.rank-bottom > span {
  margin-left: 0.5rem;
}

[data-theme=light] .tab-active {
  background-color: #75CA5C;
}
[data-theme=black] .tab-active {
  background-color: rgba(34, 108, 47, 0.4470588235);
}

.rank-img {
  width: 1rem;
  height: 1rem;
  background-image: url("/static/101/images/my.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.text-break {
  overflow: hidden;
  white-space: nowrap;
}

.top-rank {
  display: inline-block;
  position: relative;
  width: 1rem;
  height: 1rem;
  line-height: 1rem;
  text-align: center;
  border-radius: 0.5rem;
}

.top1 {
  background-color: #D89A28;
}

.top2 {
  background-color: #D84128;
}

.top3 {
  background-color: #96A751;
}

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

.height-auto {
  height: auto;
}

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

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

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

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

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

.hidden {
  display: none !important;
}/*# sourceMappingURL=leveltest.css.map */