  :root {
      --theme-color: #1F2323;
      --title-color: #051b35;
      --text-color: #333333;
  }

  /* reset code */
  html {
      scroll-behavior: smooth;
  }

  body,
  html {
      margin: 0;
      padding: 0;
      color: #585858;
  }

  * {
      box-sizing: border-box;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  }

  .wrapper {
      width: 100%;
      padding-right: 15px;
      padding-left: 15px;
      margin-right: auto;
      margin-left: auto;
  }
  @media (min-width: 400px) {
      .wrapper {
          max-width: 360px;
      }
	  .tabs{right:10px;}
  }
  @media (min-width: 576px) {
      .wrapper {
          max-width: 540px;
      }
	  .tabs{right:10px;}
  }

  @media (min-width: 768px) {
      .wrapper {
          max-width: 720px;
      }
  }

  @media (min-width: 992px) {
      .wrapper {
          max-width: 960px;
      }
  }

  @media (min-width: 1200px) {
      .wrapper {
          max-width: 1140px;
      }
  }

  .d-grid {
      display: grid;
  }

  .d-flex {
      display: flex;
      display: -webkit-flex;
      flex-wrap: wrap;
  }

  .text-center {
      text-align: center;
  }

  .text-left {
      text-align: left;
  }

  .text-right {
      text-align: right;
  }

  button,
  input,
  select {
      -webkit-appearance: none;
      outline: none;
  }

  button,
  .btn,
  select {
      cursor: pointer;
  }

  a {
      text-decoration: none;
  }


  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  ul,
  ol {
      margin: 0;
      padding: 0;
  }

  .theme-button {
      width:100%;
      cursor: pointer;
      text-decoration: none;
      -webkit-appearance: none;
      display: inline-block;
      font-style: normal;
      font-weight: normal;
      font-size: 15px;
      text-align: center;
      color: #fff;
      background: #188d8d;
      padding: 12px 20px;
      border-radius: 50px;
      transition: 0.3s ease;
      border: 1px solid #188d8d;
  }

  .theme-button:hover {
      background: #ffffff;
      color: #000000;
  }

  .form-36-mian {
      background-size: cover;
      background-image: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(255, 255, 255, 0)), url(../images/qdj_bg.jpg);
      background-attachment: fixed;
      min-height: 100vh;
      display: grid;
      align-items: center;
      padding: 2rem 0;
  }

  .form-inner-cont {
      max-width: 380px;
      margin-right: auto;
      background: #fff;
      padding: 3rem 3rem;
      border-radius: 8px;
	  position:relative;
	  box-shadow: 2px 2px 2px rgba(0, 0, 0, .8);
	  border:1px solid #ddd;
  }
  .tabs{position:absolute;width:40px;z-index:100;right:-30px;top:40px;padding:0 10px;}
  .tab-item{width:40px;font-size:18px;color:#fff;height:120px;line-height:25px;padding:20px 10px;background:#188d8d;opacity:0.4;cursor:pointer;}
  .tab-item:nth-child(1){border-radius:0 8px 0 0;}
  .tab-item:nth-child(2){border-radius:0 0 8px 0;}
  .current{opacity:1;font-weight:600;}
  .signin-form{margin-top:40px;height:280px;}
  .qdj .signin-form{margin:20px 0;}
  .form-inner-cont h3 {
      font-size: 25px;
      line-height: 30px;
      color: var(--title-color);
	  text-align:center;
  }
  .form-input span.fa {
      color: var(--title-color);
      font-size: 14px;
      border-right: 1px solid #eee;
      margin-right: 5px;
  }

  .form-input input[type="text"],
  .form-input input[type="email"],
  .form-input input[type="password"] {
      background: transparent;
      border: none;
      outline: none;
      width: 100%;
      font-size: 16px;
      padding: 0px 12px 0px 0px;
      color: var(--title-color);
      height: 45px;
      -webkit-appearance: none;
  }

  .form-input {
      margin-top: 20px;
      background: rgba(24,101,104, 0.03);
      display: grid;
      grid-template-columns: .1fr 1fr;
      align-items: center;
      padding-left: 15px;
      border: 1px solid rgba(24,141,141, 0.22);
      border-radius: 4px;
  }

  .login-remember {
      grid-template-columns: auto auto;
      justify-content: space-between;
      align-items: center;
      margin-top: 2rem;
  }

  .checkbox {
      width: 16px;
      height: 16px;
      color: #F5F9FC;
      background: #304659;
      float: left;
  }

  p.remember {
      font-size: 13px;
      line-height: 18px;
      color: var(--text-color);
  }

  .new-signup a {
      font-size: 14px;
      margin-top: 25px;
      display: block;
      color: #ff0000;
      text-decoration: underline;
  }
  /* The container */
  .check-remaind {
      display: block;
      position: relative;
      padding-left: 25px;
      cursor: pointer;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
  }

  /* Hide the browser's default checkbox */
  .check-remaind input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0;
  }

  /* Create a custom checkbox */
  .checkmark {
      position: absolute;
      top: 0px;
      left: 0;
      height: 17px;
      width: 17px;
      background-color: #E1E9F0;
  }

  /* On mouse-over, add a grey background color */
  .check-remaind:hover input~.checkmark {
      background-color: #E1E9F0;
  }

  /* When the checkbox is checked, add a blue background */
  .check-remaind input:checked~.checkmark {
      background-color: var(--theme-color);
  }

  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
      content: "";
      position: absolute;
      display: none;
  }

  /* Show the checkmark when checked */
  .check-remaind input:checked~.checkmark:after {
      display: block;
  }

  /* Style the checkmark/indicator */
  .check-remaind .checkmark:after {
      left: 5px;
      top: 2px;
      width: 4px;
      height: 9px;
      border: solid white;
      border-width: 0 2px 2px 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  }
  
  .scan_login{
		display:block;
	}
	.scan_login .qrcode{
		position:relative;
		width:250px;
		height:240px;
		margin:5px auto;
		overflow:hidden;
	}
	.scan_login .qrcode .timeout{
		position:absolute;
		z-index:100;
		width:250px;
		height:240px;
		top:0;
		text-align:center;
		display:none;
	}
	.scan_login .qrcode .qrcode-error-mask{
		position:absolute;
		z-index:101;
		background:#000;
		width:250px;
		height:240px;
		opacity:.6;
		top:0;
	}
	.scan_login .qrcode .error-con {
		position: absolute;
		left: 0;
		top: 50px;
		width: 100%;
		z-index: 103;
		font-weight: 700;
		font-size:15px;
		color:#fff;
	}
	.scan_login .qrcode .refresh-btn {
		display: block;
		background: #e4393c;
		width: 80px;
		height: 30px;
		position: absolute;
		top: 105px;
		left: 80px;
		line-height: 30px;
		opacity: 1;
		z-index: 103;
		color: #fff;
		text-decoration: none;
	}
	.scan_login .qrcode img{
		width:250px;
	}
	.scan_login .login-tips{
		padding:10px 30px;
		text-align:center;
	}
	.scan_login .login-tips span{
		padding:0 8px;
		color:#ccc;
	}