@import url("../../systhemes/css/awesome.css");
html {
  height: 100%;
}

body {
  margin: 0;
  background: #0099ff;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.userlogin {
  position: absolute;
  top: 50%;
  margin-top: -200px;
  right: 300px;
  width: 300px;
  height: 300px;
  background: rgba(0, 0, 0, 0.5);
  padding: 50px 68px;
  border-radius: 18px;
  box-shadow: 2px 2px 5px #333333;
}

input {
  border: 0;
  width: 230px;
  height: 40px;
  line-height: 40px;
  margin: 0;
  padding: 0 10px;
  font-size: 18px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
input[name=user], input[name=pwd] {
  background: #ffff00;
}
input::-webkit-input-placeholder {
  font-size: 16px;
}

dt {
  float: left;
  display: block;
  width: 50px;
  text-indent: 50px;
  background: #00AAEE;
  height: 40px;
  line-height: 40px;
  text-align: center;
  overflow: hidden;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

div i {
  font-size: 34px;
  color: #fff;
  text-indent: -50px;
}

dd {
  position: relative;
}
dd img {
  position: absolute;
  z-index: 10;
  top: 5px;
  right: 15px;
  width: 80px;
  height: 30px;
}

.link {
  text-align: right;
  color: #fff;
  font-size: 12px;
}

.row {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.row a {
  color: #fff;
  font-size: 12px;
}

input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  vertical-align: middle;
  margin-bottom: 2px;
}
input[name=user], input[name=pwd] {
  color: #aa0;
}
input[name=code] {
  color: #aaa;
}
input[type=submit] {
  width: 100%;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  background: #00AAEE;
  color: #fff;
}

fix {
  position: absolute;
  top: 50%;
  margin-top: -150px;
  left: 180px;
}

.fly1 {
  float: right;
  font-size: 50px;
  width: 80px;
  line-height: 1.2em;
  color: rgba(255, 255, 255, 0.8);
  font-family: brush;
}
.fly1:first-letter {
  font-size: 168px;
  margin-left: -66px;
  line-height: 100px;
}

.fly2 {
  float: right;
  font-size: 50px;
  width: 80px;
  line-height: 1.2em;
  color: rgba(255, 255, 255, 0.8);
  font-family: brush;
  margin-top: 158px;
  margin-right: -20px;
}

power {
  position: fixed;
  bottom: 20px;
  right: 50px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
}
power i {
  font-size: 18px;
  margin-right: 10px;
  vertical-align: middle;
}

[cursor=pointer] {
  cursor: pointer;
}

@keyframes slideFromTop {
  0% {
    top: 0;
  }
  100% {
    top: 50%;
  }
}
@keyframes hideFromTop {
  0% {
    top: 50%;
  }
  100% {
    top: 0;
    opacity: 0;
  }
}
@keyframes slideFromBottom {
  0% {
    top: 80%;
  }
  100% {
    top: 50%;
  }
}
@keyframes hideFromBottom {
  0% {
    top: 50%;
  }
  100% {
    top: 80%;
    opacity: 0;
  }
}
@keyframes showSweetAlert {
  0% {
    transform: scale(0.5);
  }
  45% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes layerFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes hideFadeIn {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes layer-fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hide-fadeInUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
@keyframes layer-rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }
}
@keyframes hide-rollIn {
  0% {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
}
@keyframes layer-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hide-fadeIn {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes layer-shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
@keyframes hide-shake {
  0%, 100% {
    transform: translateX(10px);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
  }
}
@keyframes layer-spread {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes hide-spread {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0.5);
  }
  100% {
    transformX: scaleX(0);
    opacity: 0;
  }
}