:root {
  font-size: 24px;
}

body {
  background-color: #f0f2f5;
}

main.login-frame {
  position: relative;
  padding: 1rem;
  padding-top: 2rem;
  margin: 0 auto;
  min-height: 100vh;
}
@media (min-width: 660px) {
  main.login-frame {
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    min-height: 100vh;
  }
}

.login-modes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.login-title {
  font-size: 1rem;
  display: block;
  text-align: left;
  margin-bottom: 2rem;
}

.title-center {
  margin-top: 1rem;
  text-align: center;
}

.login-button {
  border-radius: 2em;
  border: 1px solid #400E0E;
  height: 2.5em;
  line-height: 2.5em;
  color: #400E0E;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-button.active {
  color: white;
}
[data-theme=light] .login-button.active {
  border: 1px solid #00A47C;
  background-color: #00A47C;
}
[data-theme=black] .login-button.active {
  border: 1px solid #226C2F;
  background-color: #226C2F;
}
@media screen and (min-width: 660px) {
  .login-button.active {
    border: none;
  }
}
.login-button.disable {
  background-color: #D1D1D1;
  border: none;
  cursor: unset;
}
@media screen and (min-width: 660px) {
  .login-button {
    border: 1px solid #400E0E;
    color: #400E0E;
  }
}

.img-loading {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.4rem;
}

.login-icon {
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 0.2rem;
}

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

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

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

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

.tip {
  font-size: 12px;
  color: #5C617A;
  margin: 0.5rem 0;
}

.register {
  color: #3C92CB;
}

.big-tip {
  font-size: 0.9rem;
  font-weight: bold;
  margin: 1rem 0;
}

.input-wrapper {
  margin: 2em 0 1em 0;
}

.normal-tip {
  font-size: 0.76rem;
  margin: 1rem 0;
}

.space {
  position: relative;
  text-align: center;
  font-size: 0.75rem;
  margin: 1.5rem 0;
}
.space > span {
  padding: 0 0.5em;
}
.space .hr {
  width: 45%;
  position: absolute;
  top: 50%;
  border-top: 1px solid #400E0E;
}
@media screen and (min-width: 660px) {
  .space .hr {
    border-top: 1px solid #400E0E;
  }
}
.space .hr-left {
  left: 0;
}
.space .hr-right {
  right: 0;
}

.login-input-wrapper {
  margin: 1em 0;
}
.login-input-wrapper .login-input {
  background-color: transparent;
  border-radius: 2em;
  border: 1px solid #400E0E;
  height: 2.5em;
  line-height: 2.5em;
  font-size: 16px;
  outline: none;
  padding: 0 1em;
  width: 100%;
}
.login-input-wrapper .login-input::-moz-placeholder {
  color: #400E0E;
}
.login-input-wrapper .login-input::placeholder {
  color: #400E0E;
}
@media screen and (min-width: 660px) {
  .login-input-wrapper .login-input::-moz-placeholder {
    color: #400E0E;
  }
  .login-input-wrapper .login-input::placeholder {
    color: #400E0E;
  }
}
@media screen and (min-width: 660px) {
  .login-input-wrapper .login-input {
    border: 1px solid #400E0E;
  }
}
.login-input-wrapper .login-input-error {
  font-size: 0.66em;
  color: #EA4513;
  height: 0.66em;
  margin-top: 0.15em;
}
@media screen and (min-width: 660px) {
  .login-input-wrapper .login-input-error {
    color: #924547;
  }
}

.login-error {
  font-size: 0.66em;
  color: #EA4513;
  height: 0.66em;
  position: relative;
  top: -1.2em;
}
@media screen and (min-width: 660px) {
  .login-error {
    color: #924547;
  }
}

.spacer {
  margin: 1em 0;
}

.spacer-b {
  margin: 0 0 1em 0;
}

.bigspacer {
  margin-bottom: 4em;
}
@media screen and (max-height: 660px) {
  .bigspacer {
    margin-bottom: 1em;
  }
}
@media screen and (min-height: 660px) and (max-height: 800px) {
  .bigspacer {
    margin-bottom: 2em;
  }
}

.register-modal {
  z-index: 99;
  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;
}
[data-theme=light] .register-modal .center-layout {
  background-image: url(none);
}
[data-theme=black] .register-modal .center-layout {
  background-image: url("/static/101/images/modal-bg.jpg");
}
.register-modal .center-layout {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-color: white;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.register-modal .center-layout .center-content::-webkit-scrollbar {
  width: 6px;
}
.register-modal .center-layout .center-content::-webkit-scrollbar-thumb {
  background-color: #D1D1D1;
  width: 3px;
  border-radius: 3px;
}
.register-modal .center-layout .center-content-top {
  height: calc(100% - 6rem);
  padding: 0 4rem 1rem;
  margin-top: 2rem;
  overflow-y: auto;
}
.register-modal .center-layout .center-content-bottom {
  position: absolute;
  bottom: 1rem;
  left: 4rem;
  right: 4rem;
}

.dropdown {
  color: #400E0E;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  max-height: 2rem;
  overflow-y: visible;
}
.dropdown .options-btn {
  border: 1px solid #400E0E;
  padding: 0.428rem 0;
  border-radius: 10em;
}
.dropdown .options {
  font-size: 16px;
  background-color: #F8F8F8;
  border-radius: 1em;
  position: absolute;
  height: 7rem;
  width: 100%;
  top: 2.2rem;
  left: 0;
  right: 4rem;
  bottom: 3rem;
  overflow-y: auto;
  z-index: 999;
  border: 1px solid #400E0E;
}
@media screen and (min-width: 660px) {
  .dropdown .options {
    border: 1px solid #400E0E;
  }
}
.dropdown .options .option {
  display: block;
  text-decoration: none;
  height: 2rem;
  line-height: 2rem;
}
.dropdown .options .option:hover {
  background-color: #F3F3F3;
}
.dropdown .options .option:not(:last-child) {
  border-bottom: 1px solid #400E0E;
}

.success-tip {
  color: #226C2F;
}

.close-wrapper {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  border-radius: 10em;
  left: 0.5rem;
  top: 0.4rem;
  cursor: pointer;
  z-index: 20;
}
.close-wrapper:hover {
  background-color: rgba(15, 20, 25, 0.1);
}

.close {
  width: 0.8rem;
  height: 0.8rem;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (min-width: 660px) {
  .register-modal {
    padding: 2rem 0;
  }
  [data-theme=light] .register-modal .center-layout {
    background-image: url(none);
  }
  [data-theme=black] .register-modal .center-layout {
    background-image: url("/static/101/images/modal-bg.jpg");
  }
  .register-modal .center-layout {
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: start;
    width: 540px;
    border-radius: 12px;
    height: 80vh;
  }
  .register-modal .center-layout .login-title {
    position: absolute;
    top: 0.5rem;
    left: 0;
    right: 0;
    padding: 0;
    text-align: center;
    margin: auto;
  }
  .register-modal .center-layout .next-step {
    margin-top: 1rem;
  }
  .close {
    left: 1rem;
    top: 0.5rem;
  }
}
.t-mask {
  background-color: transparent !important;
}

.tooltip .tooltiptext {
  visibility: hidden;
  font-size: 12px;
  background-color: rgba(0, 0, 0, 0.57);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  transform: translateY(1.4rem);
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.cursor-p {
  cursor: pointer;
}

.button-margin {
  margin-bottom: 1rem;
}

.color-link {
  color: #4294CB;
  cursor: pointer;
  margin: 0 0.2em;
}

.color-error {
  color: #954B4D;
}

.color-success {
  color: #236B30;
}

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

.t-a-c {
  text-align: center;
}

@media screen and (min-width: 660px) {
  .login-left {
    height: 10rem;
  }
  .login-right {
    max-width: 480px;
    min-width: 16rem;
  }
  .login-right2 {
    max-width: 380px;
    min-width: 16rem;
    margin-bottom: 6rem;
  }
  .img-left {
    width: 80%;
    max-width: 21rem;
  }
  .main-color {
    color: #400E0E;
  }
}
@media screen and (max-width: 660px) {
  .login-left {
    display: none;
  }
  .main-color {
    color: #400E0E;
  }
}
#loginwx_container {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.modal-wp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.dialog-2 {
  width: 300px;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.center-content-2 {
  font-weight: bold;
  font-size: 14px;
  color: #565776;
  margin: 1.75rem 0 1.75rem 0;
  text-align: center;
}

.dialog-bottom-2 {
  padding: 16px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7f7f7;
}
.dialog-bottom-2 .submit {
  margin-bottom: 0;
}/*# sourceMappingURL=login.css.map */