@charset "utf-8";

html {
  height: 100%;
}

body {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(#F9FAFE, #D9E7FF);
  --width: 1024px;
  min-width: var(--width);
}

.head {
  display: flex;
  justify-content: center;
}

.headwrap {
  display: flex;
  justify-content: space-between;
  height: 70px;
  width: var(--width);
}

.head-left,
.head-right {
  display: flex;
  align-items: center;
}

.head-left {
  font-size: 22px;
  color: #2281C7;
  column-gap: 12px;
}

#register {
  padding: 3px 6px;
}

.wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wrap {
  width: var(--width);
  display: flex;
  column-gap: 100px;
}

.wrap .info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.funs {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.funs ul {
  display: block;
}

.funs ul li {
  display: inline-block;
  margin-right: 15px;
  color: #999;
}

.tip {
  color: #999;
}

.loginwrap {
  display: flex;
  flex-direction: column;
  width: 380px;
  min-width: 380px;
  height: 415px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 12px #dfeaff;
  padding: 40px 0 0 0;
  --margin: 40px;
}

ul#logintab {
  display: flex;
  margin-left: var(--margin);
  margin-right: var(--margin);
}

ul#logintab li {
  flex-grow: 1;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  font-size: 17px;
}

ul#logintab li:not(.sel) {
  border-bottom-color: #E5E5E5;
}

ul#logintab li.sel {
  color: #457EFD;
  border-bottom-color: #00A4FF;
}

.tab-qrcode {
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 28px;
  background-image: url(../../image/qrcode-angle.png);
}

.login-account {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin-top: 35px;
}

#form {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  padding-left: var(--margin);
  padding-right: var(--margin);
}

input[type=text],
input[type=password] {
  width: 100%;
  height: 38px;
  text-indent: 6px;
  font-size: 15px;
  border: solid #CCC 1px;
  border-radius: 4px;
}

.account-option {
  display: flex;
  justify-content: space-between;
}

.checkboxwrap {
  display: flex;
  align-items: center;
}

input[type=checkbox] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

input[type=checkbox] {
  position: relative;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background-color: #FFFFFF;
  border-radius: 2px;
  overflow: hidden;
}

input[type=checkbox] {
  border: none;
  box-shadow: 0 0 0 1px #aeaeae inset;
}

input[type=checkbox]::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 12px;
  line-height: 16px;
  color: #FFF;
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input[type=checkbox]:checked {
  background-color: #0d9cf6;
  box-shadow: 0 0 0 1px #0d9cf6 inset;
}

input[type=checkbox]:checked::before {
  content: "\e64d";
}

input[type=checkbox][indeterminate='true'] {
  box-shadow: 0 0 0 1px #0d9cf6 inset;
  background-color: #FFF;
}

input[type=checkbox][indeterminate='true']::before {
  content: "\e650";
  color: #0d9cf6;
}

input[type=checkbox][disabled] {
  opacity: 0.5;
  box-shadow: 0 0 0 1px #a5a5a5 inset;
  background-color: #d2d2d2;
}

input[type=checkbox][disabled]:checked {
  background-color: #999;
}

input[type=checkbox]:not([disabled]):hover {
  box-shadow: 0 0 0 2px #0d9cf6 inset;
}

.login-qrcode {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 35px;
  row-gap: 15px;
}

.login-qrcodetip {
  text-align: center;
}

.login-qrcodetip span {
  color: #666;
}

#refreshcode {
  color: #00A4FF;
  cursor: pointer;
  margin-left: 12px;
}

.login-qrcodewrap {
  position: relative;
  width: 190px;
  height: 190px;
  border: solid #dddddd 1px;
  margin: 0 auto;
}

.login-qrcodewrap img {
  width: 100%;
  height: 100%;
  border: 0;
}

.login-qrcodemessage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 4px;
  overflow: hidden;
}

.login-qrcodemessage::before {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #FF0000;
  color: #FFFFFF;
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e63d";
  font-size: 16px;
  margin-right: 3px;
}

.login-qrcodemessage::after {
  content: attr(data-message);
}

#retrpassword,
#demo,
#register {
  color: #3388FF;
}

.registerwrap {
  background-color: #F5F9FC;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  color: #999;
}

button {
  outline: none;
  background-color: #0d9cf6;
  color: #FFF;
  border: 0;
  border-radius: 4px;
}

button[type=submit] {
  width: 100%;
  height: 40px;
  font-size: 16px;
}

button:hover,
button:focus {
  background-color: #41aaf7;
}

button:active {
  background-color: #0288dd;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  color: #999;
}

input[type=text]:hover,
input[type=password]:hover,
input[type=text]:focus,
input[type=password]:focus {
  border: solid 1px #3388FF;
  box-shadow: 0px 0px 3px #41aaf7;
}

/*输入框占位文本颜色*/
input::-webkit-input-placeholder {
  color: #ccc;
}

input:-moz-placeholder {
  color: #ccc;
}

input::-moz-placeholder {
  color: #ccc;
}

input:-ms-input-placeholder {
  color: #ccc;
}

/* 多用户切换 */
.switchwrap {
  display: flex;
  flex-direction: column;
  width: 380px;
  min-width: 380px;
  height: 415px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 12px #dfeaff;
  padding: 40px;
  row-gap: 35px;
}

.switchtitle {
  text-align: center;
  line-height: 45px;
  font-size: 17px;
  color: #457EFD;
  border-bottom: solid 3px #00A4FF;
}

.login-switch {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border: solid #F0F0F0 1px;
  overflow-y: auto;
  padding: 6px;
  row-gap: 6px;
}

.login-switch li {
  min-height: 63px;
  display: flex;
  flex-direction: column;
  padding: 8px 12px;
  row-gap: 3px;
  background-color: #F5F6FA;
  border: solid 1px #F5F6FA;
  cursor: default;
  overflow: hidden;
}

.login-switch li:hover {
  background-color: #EDF3FF;
  border: solid 1px #3388FF;
  box-shadow: 0px 0px 3px #41aaf7;
}

.userlist-info {
  display: flex;
  flex-direction: row;
  column-gap: 4px;
  align-items: center;
  justify-content: space-between;
}

.userlist-user {
  flex-grow: 1;
  width: 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.userlist-name {
  overflow: hidden;
  word-break: keep-all;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.userlist-role {
  font-size: 12px;
  padding: 1px 5px;
  border-radius: 3px;
  background-color: rgba(218, 220, 253, 0.6);
  color: #0052d9;
  margin-left: 4px;
  word-break: keep-all;
  white-space: nowrap;
}

.userlist-currenttag {
  padding: 1px 5px;
  border-radius: 3px;
  background-color: rgba(211, 248, 220, 0.9);
  color: #2ba471;
}

.userlist-unit {
  overflow: hidden;
  word-break: keep-all;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #999999;
}