.loginbody {
  background: url(./images/login-bg1.png) no-repeat !important;
  background-size: 100% 100% !important;
}

.login-info {
  width: 450px;
  height: 450px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid #419ff3;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.login-btn {
  width: 180px;
  border-radius: 25px;
}

.login-user,
.login-pwd,
.login-code {
  background: transparent;
  color: #fff;
  border-radius: 20px;
}

.codedetail {
  background: transparent;
}

.login-info .title {
  font-size: 22px;
  color: #419ff3;
  margin-top: 40px;
}

.title-warp {
  position: fixed;
  left: 10%;
  top: 30%;
  text-align: center;
}

.systemname {
  font-size: 40px;
  color: #89c4ff;
  letter-spacing: 2px;
  /* font-family: "方正舒体", Geneva, Arial, Helvetica, sans-serif;
  ; */
}

.systemname-tip {
  font-size: 30px;
  color: #3c8fe1;
  letter-spacing: 2px;
  font-family: "方正舒体", Geneva, Arial, Helvetica, sans-serif;
  font-style: oblique;
}

/* 登录框动画 */
.login-info::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: conic-gradient(transparent, #305962, transparent 30%);
  -webkit-animation: rotate 4s linear infinite;
  animation: rotate 4s linear infinite
}

.login-info::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 6px;
  top: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  background: transparent;
  border-radius: 5px;
  -webkit-animation: opacityChange 5s infinite linear;
  animation: opacityChange 5s infinite linear
}

@-webkit-keyframes rotate {
  100% {
    transform: rotate(1turn)
  }
}

@keyframes rotate {
  100% {
    transform: rotate(1turn)
  }
}

@-webkit-keyframes opacityChange {
  50% {
    opacity: .5
  }

  100% {
    opacity: 1
  }
}

@keyframes opacityChange {
  50% {
    opacity: .5
  }

  100% {
    opacity: 1
  }
}
