/**
* File: assets/css/login.css
* Version: 2.0.0
*/

/*--------------------------------------------------------------
# 通用主体样式，与 main.css 同步修改
--------------------------------------------------------------*/
:root {
  --color-primary: #0d42ff;
  --color-primary-hover: #2756ff;
}

.nodrag {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.isshadow {
  box-shadow: var(--box-shadow);
}

::-webkit-selection {
	color: var(--selection-color);
	background: #36aaf190;
}

::-moz-selection {
	color: var(--selection-color);
	background: #36aaf190;
}

::selection {
	color: var(--selection-color);
	background: #36aaf190;
}

/*=======================================================================
Typography
=========================================================================*/
html {
  height: 100%;
}
body {
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  height: 100%;
  line-height: 1.7;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #646464;
  background-color: var(--body-bg);
}
p {
  margin: 0 0 20px 0;
  color: #646464;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  margin: 0 0 20px 0;
  color: #111;
}
h1,
h2 {
  line-height: 1.2;
}
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}
h1 {
  font-size: 36px;
}
@media only screen and (max-width: 1199px) {
  h1 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
  }
}
h2 {
  font-size: 28px;
}
@media only screen and (max-width: 1199px) {
  h2 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 991px) {
  h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 22px;
  }
}
h3 {
  font-size: 22px;
}
@media only screen and (max-width: 991px) {
  h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 18px;
  }
}
h4 {
  font-size: 20px;
}
@media only screen and (max-width: 991px) {
  h4 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  h4 {
    font-size: 16px;
  }
}
h5 {
  font-size: 18px;
}
@media only screen and (max-width: 991px) {
  h5 {
    font-size: 16px;
  }
}

/*=======================================================================
Default Style
=========================================================================*/
a {
  text-decoration: none;
}
a:active,
a:hover,
a:focus {
  text-decoration: none;
}
a:active,
a:hover,
a:focus {
  outline: 0 none;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.fxt-content-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .fxt-none-767 {
    display: none !important;
  }
}
@media only screen and (max-width: 991px) {
  .fxt-none-991 {
    display: none !important;
  }
}

/*Preloader Styles Start*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--body-bg);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*========================================================================
Animation
=========================================================================*/
.fxt-template-animation {
  position: relative;
  z-index: 1;
  width: 100%;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fxt-template-animation .fxt-opacity {
  opacity: 0;
}
.fxt-template-animation .fxt-transformY-50 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}
.fxt-template-animation .fxt-transformX-L-50 {
  opacity: 0;
  -webkit-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  transform: translateX(-50px);
}
.fxt-template-animation .fxt-transformX-R-50 {
  opacity: 0;
  -webkit-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(50px);
}
.loaded.fxt-template-animation {
  opacity: 1;
}
.loaded.fxt-template-animation .fxt-opacity {
  opacity: 1;
  -webkit-transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.loaded.fxt-template-animation .fxt-transformY-50 {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.loaded.fxt-template-animation .fxt-transformX-L-50 {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.loaded.fxt-template-animation .fxt-transformX-R-50 {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.loaded.fxt-template-animation .fxt-transition-delay-1 {
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.loaded.fxt-template-animation .fxt-transition-delay-2 {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.loaded.fxt-template-animation .fxt-transition-delay-3 {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.loaded.fxt-template-animation .fxt-transition-delay-4 {
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.loaded.fxt-template-animation .fxt-transition-delay-5 {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.loaded.fxt-template-animation .fxt-transition-delay-6 {
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.loaded.fxt-template-animation .fxt-transition-delay-7 {
  -webkit-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.loaded.fxt-template-animation .fxt-transition-delay-8 {
  -webkit-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.loaded.fxt-template-animation .fxt-transition-delay-9 {
  -webkit-transition-delay: 0.9s;
  -o-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.loaded.fxt-template-animation .fxt-transition-delay-10 {
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
.loaded.fxt-template-animation .fxt-transition-delay-11 {
  -webkit-transition-delay: 1.1s;
  -o-transition-delay: 1.1s;
  transition-delay: 1.1s;
}
.loaded.fxt-template-animation .fxt-transition-delay-12 {
  -webkit-transition-delay: 1.2s;
  -o-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.loaded.fxt-template-animation .fxt-transition-delay-13 {
  -webkit-transition-delay: 1.3s;
  -o-transition-delay: 1.3s;
  transition-delay: 1.3s;
}
.loaded.fxt-template-animation .fxt-transition-delay-14 {
  -webkit-transition-delay: 1.4s;
  -o-transition-delay: 1.4s;
  transition-delay: 1.4s;
}
.loaded.fxt-template-animation .fxt-transition-delay-15 {
  -webkit-transition-delay: 1.5s;
  -o-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
.loaded.fxt-template-animation .fxt-transition-delay-16 {
  -webkit-transition-delay: 1.6s;
  -o-transition-delay: 1.6s;
  transition-delay: 1.6s;
}
.loaded.fxt-template-animation .fxt-transition-delay-17 {
  -webkit-transition-delay: 1.7s;
  -o-transition-delay: 1.7s;
  transition-delay: 1.7s;
}
.loaded.fxt-template-animation .fxt-transition-delay-18 {
  -webkit-transition-delay: 1.8s;
  -o-transition-delay: 1.8s;
  transition-delay: 1.8s;
}
.loaded.fxt-template-animation .fxt-transition-delay-19 {
  -webkit-transition-delay: 1.9s;
  -o-transition-delay: 1.9s;
  transition-delay: 1.9s;
}
.loaded.fxt-template-animation .fxt-transition-delay-20 {
  -webkit-transition-delay: 2s;
  -o-transition-delay: 2s;
  transition-delay: 2s;
}

/*=======================================================================
Layout33
=========================================================================*/
.fxt-template-layout33 {
  background-color: var(--body-bg);
  width: 100%;
  min-height: 100vh;
  display: -ms-grid;
  display: grid;
  position: relative;
  z-index: 1;
}
.fxt-template-layout33 .fxt-content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 991px) {
  .fxt-template-layout33 .fxt-content-wrap {
    display: block;
  }
}
.fxt-template-layout33 .fxt-heading-content {
  padding: 30px;
  position: relative;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .fxt-template-layout33 .fxt-heading-content {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .fxt-template-layout33 .fxt-heading-content {
    padding: 15px;
  }
}
.fxt-template-layout33 .fxt-heading-content:before {
  content: "";
  border-radius: 0 100px 100px 0;
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/login-bg.png");
  box-shadow: var(--box-shadow);
  top: 0;
  left: 0;
}
@media only screen and (max-width: 991px) {
  .fxt-template-layout33 .fxt-heading-content:before {
    border-radius: 0;
  }
}
.fxt-template-layout33 .fxt-heading-content .fxt-inner-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-height: 680px;
  height: 100%;
  padding: 60px 50px;
  border-radius: 30px;
  max-width: 515px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
@media only screen and (max-width: 575px) {
  .fxt-template-layout33 .fxt-heading-content .fxt-inner-wrap {
    padding: 40px 30px;
    border-radius: 15px;
  }
}
.fxt-template-layout33 .fxt-heading-content .fxt-logo {
  margin-bottom: 30px;
  display: block;
  /*max-width:75vw;*/
}
.fxt-template-layout33 .fxt-heading-content .fxt-sub-title {
  color: #ffffff;
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .fxt-template-layout33 .fxt-heading-content .fxt-sub-title {
    font-size: 22px;
  }
}
.fxt-template-layout33 .fxt-heading-content .fxt-main-title {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 300;
}
@media only screen and (max-width: 991px) {
  .fxt-template-layout33 .fxt-heading-content .fxt-main-title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .fxt-template-layout33 .fxt-heading-content .fxt-main-title {
    font-size: 28px;
  }
}
.fxt-template-layout33 .fxt-heading-content .fxt-description {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  max-width: 390px;
  width: 100%;
}
.fxt-template-layout33 .fxt-heading-content .fxt-switcher-description {
  font-size: 16px;
  font-weight: 300;
  color: #ffffff;
}
.fxt-template-layout33 .fxt-heading-content .fxt-switcher-description .fxt-switcher-text {
  display: table;
  color: #ffffff;
  font-weight: 500;
}
.fxt-template-layout33 .fxt-heading-content .fxt-switcher-description .fxt-switcher-text:hover {
  text-decoration: underline;
}
.fxt-template-layout33 .fxt-form-content {
  width: 50%;
}
@media only screen and (max-width: 991px) {
  .fxt-template-layout33 .fxt-form-content {
    width: 100%;
  }
}
.fxt-template-layout33 .fxt-form-content .fxt-page-title {
  margin-bottom: 15px;
  font-size: 36px;
  font-weight: 700;
  color: var(--title-color);
}
@media only screen and (max-width: 1199px) {
  .fxt-template-layout33 .fxt-form-content .fxt-page-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 991px) {
  .fxt-template-layout33 .fxt-form-content .fxt-page-title {
    font-size: 30px;
  }
  .fxt-description {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .fxt-template-layout33 .fxt-form-content .fxt-page-title {
    font-size: 28px;
  }
  .fxt-description {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .fxt-template-layout33 .fxt-form-content .fxt-page-title {
    font-size: 26px;
  }
  .fxt-description {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  .fxt-template-layout33 .fxt-form-content .fxt-page-title {
    font-size: 24px;
  }
  .fxt-description {
    display: none;
  }
}
.fxt-template-layout33 .fxt-form-content .fxt-description {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 30px;
}
.fxt-template-layout33 .fxt-form-content .fxt-label {
  color: var(--title-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.fxt-template-layout33 .fxt-form-content .fxt-main-form {
  padding: 50px 65px 40px 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .fxt-template-layout33 .fxt-form-content .fxt-main-form {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 575px) {
  .fxt-template-layout33 .fxt-form-content .fxt-main-form {
    padding: 40px 15px 30px;
  }
}
.fxt-template-layout33 .fxt-form-content .fxt-inner-wrap {
  max-width: 454px;
  width: 100%;
}
.fxt-template-layout33 .fxt-form-content .form-group {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.fxt-template-layout33 .fxt-form-content .form-control {
  min-height: 50px;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border: 1px solid #e7e7e7;
  padding: 10px 15px;
  color: #111;
}
.fxt-template-layout33 .fxt-form-content input::-webkit-input-placeholder {
  color: #acacac;
  font-size: 17px;
  font-weight: 400;
}
.fxt-template-layout33 .fxt-form-content input::-moz-placeholder {
  color: #acacac;
  font-size: 17px;
  font-weight: 400;
}
.fxt-template-layout33 .fxt-form-content input:-moz-placeholder {
  color: #acacac;
  font-size: 17px;
  font-weight: 400;
}
.fxt-template-layout33 .fxt-form-content input:-ms-input-placeholder {
  color: #acacac;
  font-size: 17px;
  font-weight: 400;
}
.fxt-template-layout33 .fxt-form-content .fxt-otp-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.fxt-template-layout33 .fxt-form-content .fxt-otp-row .fxt-otp-col {
  padding: 10px 5px;
  text-align: center;
  margin-right: 30px;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.fxt-template-layout33 .fxt-form-content .fxt-otp-row .fxt-otp-col:last-child {
  margin-right: 0;
}
.fxt-template-layout33 .fxt-form-content .fxt-otp-btn {
  margin-bottom: 20px;
}
.fxt-template-layout33 .fxt-form-content .fxt-switcher-description {
  text-align: center;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #646464;
}
.fxt-template-layout33 .fxt-form-content .fxt-switcher-text {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  color: #39a688;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fxt-template-layout33 .fxt-form-content .fxt-switcher-text:hover {
  color: #099e74;
  text-decoration: underline;
}
.fxt-template-layout33 .fxt-form-content .fxt-switcher-text:focus {
  outline: none;
}
.fxt-template-layout33 .fxt-form-content .fxt-checkbox-box {
  margin-bottom: 25px;
}
.fxt-template-layout33 .fxt-form-content .fxt-checkbox-box label {
  color: var(--title-color);
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.fxt-template-layout33 .fxt-form-content .fxt-checkbox-box label:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 5px;
  left: 0;
  right: 0;
  border: 1px solid;
  border-color: #dcdcdc;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.fxt-template-layout33 .fxt-form-content .fxt-checkbox-box label:after {
  position: absolute;
  font-size: 10px;
  color: #555555;
}
.fxt-template-layout33 .fxt-form-content .fxt-checkbox-box input[type="checkbox"] {
  display: none;
}
.fxt-template-layout33 .fxt-form-content .fxt-checkbox-box input[type="checkbox"]:checked + label::after {
  font-family: 'Font Awesome 5 Free';
  content: "\f00c";
  font-weight: 900;
  color: #ffffff;
  left: 0;
  right: 0;
  top: 5px;
  width: 16px;
  text-align: center;
}
.fxt-template-layout33 .fxt-form-content .fxt-checkbox-box input[type="checkbox"]:checked + label::before {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.fxt-template-layout33 .fxt-form-content .fxt-btn-fill {
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: 1px solid;
  border-color: var(--color-primary);
  color: #fff;
  border-radius: 10px;
  background-color: var(--color-primary);
  padding: 9px 36px;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fxt-template-layout33 .fxt-form-content .fxt-btn-fill:disabled {
  background-color: #6c757d;
  border-color: #6c757d;
  cursor: no-drop;
}
.fxt-template-layout33 .fxt-form-content .fxt-btn-fill:disabled:hover {
  background-color: #6c757d;
  border-color: #6c757d;
  cursor: no-drop;
}
.fxt-template-layout33 .fxt-form-content .fxt-btn-fill:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}
.fxt-template-layout33 .fxt-form-content .fxt-btn-fill:focus {
  outline: none;
}
@media only screen and (max-width: 767px) {
  .fxt-template-layout33 .fxt-form-content .fxt-btn-fill {
    font-size: 16px;
  }
}
.fxt-template-layout33 .fxt-form-content .fxt-divider-text {
  text-align: center;
  margin-bottom: 20px;
}
.fxt-template-layout33 .fxt-form-content .fxt-login-option ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: -5px;
  margin-right: -5px;
}
@media only screen and (max-width: 575px) {
  .fxt-template-layout33 .fxt-form-content .fxt-login-option ul {
    display: block;
  }
}
.fxt-template-layout33 .fxt-form-content .fxt-login-option ul li {
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 10px;
  width: auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 575px) {
  .fxt-template-layout33 .fxt-form-content .fxt-login-option ul li {
    width: 100%;
  }
}
.fxt-template-layout33 .fxt-form-content .fxt-login-option ul li a {
  padding: 10px 15px;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 50px;
  width: 50px;
  border-radius: 10px;
  font-size: 15px;
}
@media only screen and (max-width: 767px) {
  .fxt-template-layout33 .fxt-form-content .fxt-login-option ul li a {
    min-height: 47px;
  }
}
@media only screen and (max-width: 575px) {
  .fxt-template-layout33 .fxt-form-content .fxt-login-option ul li a {
    width: 100%;
  }
}
.fxt-template-layout33 .fxt-form-content .fxt-login-option ul li a .fxt-option-icon {
  display: inline-block;
}
.fxt-template-layout33 .fxt-form-content .fxt-login-option ul li a .fxt-option-text {
  display: inline-block;
  display: none;
}
@media only screen and (max-width: 575px) {
  .fxt-template-layout33 .fxt-form-content .fxt-login-option ul li a .fxt-option-text {
    display: block;
    padding-left: 10px;
  }
}
.fxt-template-layout33 .fxt-form-content .fxt-login-option ul li.fxt-register a {
  background-color: #999;
}
.fxt-template-layout33 .fxt-form-content .fxt-login-option ul li.fxt-register a:hover {
  background-color: #009147;
}
.fxt-template-layout33 .fxt-form-content .fxt-login-option ul li.fxt-fpsw a {
  background-color: #999;
}
.fxt-template-layout33 .fxt-form-content .fxt-login-option ul li.fxt-fpsw a:hover {
  background-color: #a00407;
}
.fxt-template-layout33 .fxt-form-content .fxt-login-option ul li.active {
  width: 100%;
}
.fxt-template-layout33 .fxt-form-content .fxt-login-option ul li.active a {
  width: 100%;
}
.fxt-template-layout33 .fxt-form-content .fxt-login-option ul li.active a .fxt-option-text {
  display: block;
  padding-left: 10px;
}
.fxt-template-layout33.fxt-template-animation .fxt-heading-content:before {
  opacity: 0;
  visibility: hidden;
}
.fxt-template-layout33.loaded.fxt-template-animation .fxt-heading-content:before {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 1.5s ease-in-out;
  -o-transition: opacity 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

/*--------------------------------------------------------------
# 登陆切换 Toggle Button
--------------------------------------------------------------*/
.button-con {
  cursor: default;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -76px;
  margin-top: -18px;
}

.toggle {
  display: none;
}

.toggle,
.toggle:after,
.toggle:before,
.toggle *,
.toggle *:after,
.toggle *:before,
.toggle+.toggle-button {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.toggle::-moz-selection,
.toggle:after::-moz-selection,
.toggle:before::-moz-selection,
.toggle *::-moz-selection,
.toggle *:after::-moz-selection,
.toggle *:before::-moz-selection,
.toggle+.toggle-button::-moz-selection {
  background: none;
}

.toggle::selection,
.toggle:after::selection,
.toggle:before::selection,
.toggle *::selection,
.toggle *:after::selection,
.toggle *:before::selection,
.toggle+.toggle-button::selection {
  background: none;
}

.toggle+.toggle-button {
  outline: 0;
  display: inline-block;
  width: 4em;
  height: 2em;
  position: relative;
  cursor: pointer;
  border: 2px solid #333;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: top;
}

.toggle+.toggle-button:after,
.toggle+.toggle-button:before {
  position: relative;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
}

.toggle+.toggle-button:after {
  left: 0;
}

.toggle+.toggle-button:before {
  display: none;
}

.toggle:checked+.toggle-button:after {
  left: 50%;
}

.toggle+.toggle-button {
  padding: 2px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  border: 2px solid rgba(79, 251, 148, 0.27);
  border-radius: 2em;
}

.toggle+.toggle-button:after {
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  background: rgba(46, 241, 124, 0.27);
  content: "";
  border-radius: 1em;
}

.toggle:checked+.toggle-button:after {
  left: 50%;
}

.fxt-transition-delay-13 .busuanzi {
  text-align: left;
  margin-top: 30px;
  color: var(--main-theme-color);
  font-size: 16px;
  /* display: none; */
}