<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* æ¸…é™¤é»˜è®¤æ&nbsp;·å¼ */
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
input,
button {
  padding: 0;
  margin: 0;
}
html,
body {
  width: 100%;
  height: 100%;
}
/*ç½‘ç«™ç°æš—æ¨¡å¼ï¼Œæ‚¼å¿µæ—¥*/
.grayMode {
  filter: grayscale(100%);
  filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
}
/* å›¾ç‰‡æ¶ˆé™¤åº•ä¾§çš„å°ç©ºéš™ */
img {
  vertical-align: middle;
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
}
#app {
  height: 100%;
  width: 100%;
  font-size: 16px;
  font-family: "Microsoft YaHei","Source Han Sans CN", sans-serif;
}
/* ä¸‡èƒ½æ¸…é™¤æµ®åŠ¨ */
.clearfix:after {
  content: '';
  display: block;
  clear: both;
  /* visibility: hidden;
  font-size: 0;
  height: 0; */
}
.fl {
  float: left;
}
.fr {
  float: right;
}
/*æº¢å‡ºæ–‡æœ¬æ˜¾ç¤ºçœç•¥*/
.textFlow{
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.app-loading {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #f4f7f9;
}

.app-loading .app-loading-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.app-loading .app-loading-title {
  display: flex;
  margin-top: 24px;
  font-size: 24px;
  color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}
/* ç°æš—æ¨¡å¼ */
.grayMode {
  filter: grayscale(100%);
  filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
}

/* åŠ&nbsp;è½½åŠ¨ç”»*/
#logo-part {
  width: 20vw;
  display: grid;
  grid-template-rows: 100%;
  grid-template-columns: 100%;
  align-items: center;
}

#waitLogo {
  grid-column: 1;
  grid-row: 1;
  margin: auto;
  width: 40%;
  height: 40%;
}
#waitSpinner {
  grid-column: 1;
  grid-row: 1;
  -webkit-animation: spin1 0.5s infinite linear;
  -moz-animation: spin1 0.5s infinite linear;
  -o-animation: spin1 0.5s infinite linear;
  -ms-animation: spin1 0.5s infinite linear;
  animation: spin1 0.5s infinite linear;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

@-webkit-keyframes spin1 {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes spin1 {
  0% {
    -moz-transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(360deg);
  }
}

@-o-keyframes spin1 {
  0% {
    -o-transform: rotate(0deg);
  }

  100% {
    -o-transform: rotate(360deg);
  }
}

@-ms-keyframes spin1 {
  0% {
    -ms-transform: rotate(0deg);
  }

  100% {
    -ms-transform: rotate(360deg);
  }
}

@keyframes spin1 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/* ç”¨æˆ·ç™»å½•ç•Œé¢ */
.container {
  width: 100%;
  height: 100%;
  position: relative;
  background-image: url(../img/login/background.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.login-logo {
  position: absolute;
  top: 20px;
  left: 40px;
}
.login-logo &gt; img {
  width: 30px;
  margin-top: -15px;
}
.login-title {
  font-size: 22px;
  font-weight: bold;
  color: #cccccc;
  margin-left: 8px;
}
.login {
  z-index: 2;
  position: absolute;
  width: 350px;
  border-radius: 5px;
  height: 400px;
  background: white;
  box-shadow: 0px 0px 5px #333333;
  top: 50%;
  left: 75%;
  margin-top: -200px;
  margin-left: -175px;
  transition: all 1s;
  -moz-transition: all 1s;
  /* Firefox 4 */
  -webkit-transition: all 1s;
  /* Safari éœï¿½ Chrome */
  -o-transition: all 1s;
  /* Opera */
}
.login-top {
  font-size: 24px;
  margin-top: 50px;
  padding-left: 40px;
  box-sizing: border-box;
  color: #333333;
  margin-bottom: 50px;
}
.login-center {
  width: 100%;
  box-sizing: border-box;
  padding: 0 40px;
  margin-bottom: 30px;
}
.login-center-img {
  width: 20px;
  height: 20px;
  float: left;
  margin-top: 5px;
}
.login-center-img &gt; img {
  width: 100%;
}
.login-center-input {
  float: left;
  width: 230px;
  margin-left: 15px;
  height: 30px;
  position: relative;
}
.login-center-input input {
  z-index: 2;
  transition: all 0.5s;
  padding-left: 10px;
  color: #333333;
  width: 100%;
  height: 30px;
  border: 0;
  border-bottom: 1px solid #cccccc;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  box-sizing: border-box;
  outline: none;
  position: relative;
}
.login-center-input input:focus {
  border: 1px solid dodgerblue;
}
.login-center-input-text {
  background: white;
  padding: 0 5px;
  position: absolute;
  z-index: 0;
  opacity: 0;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  font-size: 14px;
  left: 5px;
  color: dodgerblue;
  line-height: 20px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  /* Firefox 4 */
  -webkit-transition: all 0.5s;
  /* Safari  Chrome */
  -o-transition: all 0.5s;
  /* Opera */
}
.login-center-input input:focus ~ .login-center-input-text {
  top: 0;
  z-index: 3;
  opacity: 1;
  margin-top: -15px;
}
.login.active {
  -webkit-animation: login-small 0.8s;
  animation: login-small 0.8s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.login-button {
  cursor: pointer;
  width: 250px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  background-color: dodgerblue;
  border-radius: 5px;
  margin: 0 auto;
  margin-top: 50px;
  color: white;
}
.login-copyright
{
  position:absolute;
  left:0;
  bottom: 5px;
  width:100%;
  z-index: 10;
  text-align: center;
  color:#fff;
  font-size:14px;
}
  </pre></body></html>