html {
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  margin: .67em 0;
  font-size: 2em;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

a {
  background-color: #0000;
}

abbr[title] {
  border-bottom: none;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="button"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="reset"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring {
  outline: 1px dotted buttontext;
}

[type="button"]:-moz-focusring {
  outline: 1px dotted buttontext;
}

[type="reset"]:-moz-focusring {
  outline: 1px dotted buttontext;
}

[type="submit"]:-moz-focusring {
  outline: 1px dotted buttontext;
}

fieldset {
  padding: .35em .75em .625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  white-space: normal;
  max-width: 100%;
  padding: 0;
  display: table;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button {
  height: auto;
}

[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template, [hidden] {
  display: none;
}

.main-layout {
  min-height: 100vh;
}

.main-header {
  background: #fff;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  padding: 0 24px;
  line-height: 64px;
  display: flex;
  box-shadow: 0 1px 4px #00152914;
}

.header-left, .logo {
  align-items: center;
  display: flex;
}

.logo img {
  object-fit: contain;
  height: 40px;
}

.header-right {
  align-items: center;
  display: flex;
}

.user-info {
  padding: 0 12px;
}

.main-content {
  background: #fff;
  border-radius: 8px;
  min-height: calc(100vh - 88px);
  margin: 12px;
  padding: 12px;
  overflow: auto;
}

.login {
  background: #f0f2f5;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
}

.login .login-content {
  width: 100%;
  height: 100%;
  position: relative;
}

.login .login-content .login-bg {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.login .login-content .login-logo {
  position: absolute;
  top: 50px;
  left: 100px;
}

.login .login-content .login-logo img {
  width: 210px;
  height: 36px;
}

.login .login-card {
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 550px;
  padding: 50px 0;
  display: flex;
  position: absolute;
  right: 15%;
}

.login .login-card .login-tip {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.login .login-card .login-tip .login-title {
  color: #333;
  font-size: 65px;
  font-weight: 600;
}

.login .login-card .login-tip .login-desc {
  color: #333;
  margin: -15px 0 0 5px;
  font-size: 24px;
  font-weight: 400;
}

.login .login-card .login-form {
  width: 350px;
  margin-top: 40px;
}

.login .login-card .login-form .login-organize {
  justify-content: center;
  align-items: center;
  display: flex;
}

.login .login-card .login-form .login-organize .login-organize-item {
  cursor: pointer;
  border: 1px solid #ebeef5;
  border-radius: 4px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 40px;
  margin-right: 20px;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.login .login-card .login-form .login-organize .login-organize-item:hover {
  border-color: #409eff;
}

.login .login-card .login-form .login-organize .login-organize-item .login-organize-logo {
  width: 20px;
  height: 20px;
}

.login .login-card .login-form .login-organize .login-organize-item .login-organize-logo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.login .login-card .login-form .login-organize .login-organize-item .login-organize-text {
  color: #666;
  margin-left: 5px;
  font-size: 16px;
  font-weight: 400;
}

.login .login-card .login-form .login-organize .login-organize-item .login-organize-badge {
  color: #fff;
  white-space: nowrap;
  text-align: center;
  background: #409eff;
  width: 60px;
  height: 15px;
  font-size: 9px;
  line-height: 15px;
  position: absolute;
  top: 9px;
  left: -13px;
  overflow: hidden;
  transform: rotate(-45deg);
}

.login .login-card .login-form .login-organize .login-organize-item-selected {
  background: #ecf5ff;
  border: 1px solid #ecf5ff;
}

.login .login-card .login-form .login-qr {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 260px;
  margin: 20px 0;
  display: flex;
}

.login .login-card .login-form .login-qr-tip {
  color: #666;
  text-align: center;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 400;
}

.login .login-card .login-form .login-buttons {
  width: 100%;
}

.login-spin {
  background: #f7f9fe;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}



